@charset "UTF-8";
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-size: 16px;
  line-height: 1.6;
  background: white;
  font-family: "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  background: #f3f3f3;
  color: #3e3e3e;
}

img {
  max-width: 100%;
  height: auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

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

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

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

.section {
  margin: 120px auto 0;
  max-width: 100%;
}
@media (max-width: 767px) {
  .section {
    margin: 40px auto 60px;
  }
}

.inner {
  width: 1200px;
  max-width: 100%;
  margin: 0 auto;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
}

.util-title {
  font-size: 36px;
  font-weight: 600;
  font-family: "Montserrat", sans-serif;
}
@media (max-width: 767px) {
  .util-title {
    font-size: 30px;
  }
}

@media (max-width: 767px) {
  .util-link_box {
    text-align: center;
    margin: 0 auto;
  }
}

.util-link {
  font-size: 20px;
  position: relative;
  color: #fff;
  font-family: "Montserrat", sans-serif;
  padding: 16px 0;
  text-align: center;
  border: 1px solid #fff;
  display: block;
  letter-spacing: 4px;
  font-weight: 600;
}
@media (max-width: 767px) {
  .util-link {
    font-size: 18px;
    margin: 0 auto;
  }
}
.util-link:hover {
  background: #fff;
  color: #3e3e3e;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

/*------------------------------------------------------------
header
-------------------------------------------------------------*/
.header {
  width: 1200px;
  max-width: 100%;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.1019607843);
  left: 0;
  position: fixed;
  top: 0;
  right: 0;
  height: 80px;
  z-index: 100;
  text-align: center;
}
@media (max-width: 767px) {
  .header {
    height: 68px;
    background: rgba(255, 255, 255, 0.6);
  }
}

.header-title {
  display: none;
  text-align: left;
}
@media (max-width: 767px) {
  .header-title {
    margin: 20px 0 20px 16px;
    font-size: 23px;
    display: block;
    font-weight: 700;
    font-family: "Montserrat", sans-serif;
  }
}

.header-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-family: "Montserrat", sans-serif;
  letter-spacing: -0.4px;
}
@media (max-width: 767px) {
  .header-list {
    display: none;
  }
}

.header-nav_item {
  padding: 30px 4px;
}
.header-nav_item:not(:nth-child(1)) {
  margin-left: 32px;
}

.header-nav_link {
  position: relative;
}
.header-nav_link::after {
  position: absolute;
  content: "";
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 2px;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.header-nav_link:hover::after {
  background: #3e3e3e;
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}

.drawer-icon {
  position: fixed;
  top: 24px;
  right: 4px;
  display: none;
  z-index: 300;
  -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-icon.is-active {
  -webkit-transform: translateX(-300px);
          transform: translateX(-300px);
}
.drawer-icon.is-active .drawer-icon_bar1,
.drawer-icon.is-active .drawer-icon_bar2,
.drawer-icon.is-active .drawer-icon_bar3 {
  background: #fff;
}
.drawer-icon.is-active .drawer-icon_bar1 {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  top: 8px;
}
.drawer-icon.is-active .drawer-icon_bar2 {
  display: none;
}
.drawer-icon.is-active .drawer-icon_bar3 {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  top: 8px;
}
@media (max-width: 767px) {
  .drawer-icon.is-active {
    color: #fff;
  }
}
@media (max-width: 767px) {
  .drawer-icon {
    display: block;
  }
}

.drawer-icon_bars {
  width: 26px;
  height: 20px;
  display: block;
  position: relative;
}
.drawer-icon_bar1,
.drawer-icon_bar2,
.drawer-icon_bar3 {
  width: 26px;
  height: 4px;
  background: #3e3e3e;
  position: absolute;
  top: 0;
  right: 12px;
}

.drawer-icon_bar1 {
  top: 0;
}

.drawer-icon_bar2 {
  top: 8px;
}

.drawer-icon_bar3 {
  top: 16px;
}

.drawer-content {
  position: relative;
  width: 318px;
  height: 100%;
  position: fixed;
  right: 0;
  top: 0;
  background: #fff;
  -webkit-box-shadow: 0 0 3px rgba(0, 0, 0, 0.16);
          box-shadow: 0 0 3px rgba(0, 0, 0, 0.16);
  z-index: 298;
  -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_list {
  position: absolute;
  content: "";
  top: 40%;
  left: 47%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.drawer-content_item {
  text-align: center;
  font-size: 18px;
  margin-top: 27px;
}
.drawer-content_item:first-child {
  margin-top: 0;
}
.drawer-content_item a {
  display: block;
  font-weight: 600;
}

.drawer-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 297;
  display: none;
}
.drawer-background.is-active {
  display: block;
  color: #fff;
}

/*------------------------------------------------------------
main-visual
-------------------------------------------------------------*/
.main-visual {
  background: url(../img/mv.png) no-repeat center center/cover;
  width: 100%;
  height: 648px;
  position: relative;
}
@media (max-width: 767px) {
  .main-visual {
    background: url(../img/mv.png) no-repeat 23% center/cover;
    width: 100%;
    height: 667px;
  }
}

.main-visual_inner {
  max-width: 1240px;
  width: 100%;
  height: 100%;
  margin: 0 auto 0;
  padding: 0 20px;
}
@media (max-width: 767px) {
  .main-visual_inner {
    width: 100%;
  }
}

.main-visual_content {
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  color: #3e3e3e;
  margin-top: 38px;
  max-width: 600px;
}
@media (max-width: 767px) {
  .main-visual_content {
    left: 0;
    top: 44%;
    padding: 0 16px 0;
    text-align: center;
  }
}

.main-visual_title {
  font-size: 32px;
  font-weight: bold;
  line-height: 1.5;
}
@media (max-width: 767px) {
  .main-visual_title {
    font-size: 24px;
    text-align: left;
  }
}

.main-visual_lead {
  font-size: 18px;
  font-weight: bold;
  line-height: 1.5555555556;
  margin: 24px 0 0 0;
}
@media (max-width: 767px) {
  .main-visual_lead {
    font-size: 14px;
    width: 100%;
    text-align: left;
  }
}

.main-visual_button {
  margin-top: 38px;
  background: transparent;
}
.main-visual_link {
  display: block;
  background: #ffaa3b;
  padding: 14px 0;
  margin-top: -14px;
  width: 282px;
  border-radius: 10px;
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  letter-spacing: 0.025em;
  -webkit-box-shadow: 0 3px 5px rgba(62, 62, 62, 0.16);
          box-shadow: 0 3px 5px rgba(62, 62, 62, 0.16);
  letter-spacing: 0.025em;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.main-visual_link:hover {
  background: #f18900;
}
@media (max-width: 767px) {
  .main-visual_link {
    font-size: 16px;
    width: 222px;
  }
}

/*------------------------------------------------------------
news
-------------------------------------------------------------*/
.news {
  background: #fff;
  margin: 120px auto 0;
  -webkit-box-shadow: 0 5px 12px rgba(62, 62, 62, 0.16);
          box-shadow: 0 5px 12px rgba(62, 62, 62, 0.16);
  max-width: 1200px;
}
@media (max-width: 767px) {
  .news {
    margin: -40px 16px 60px;
    padding: 14px 16px 40px;
    position: relative;
  }
}

.news-inner {
  padding: 60px 60px 44px;
}
@media (max-width: 767px) {
  .news-inner {
    padding: 0;
  }
}

.news-title {
  margin-bottom: 48px;
  text-align: center;
}
@media (max-width: 767px) {
  .news-title {
    margin: 26px 0;
  }
}

.news-item {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border: 1px solid #cecdcd;
  border-left: none;
  border-right: none;
  padding: 39px 0;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
@media (max-width: 767px) {
  .news-item {
    display: block;
    padding: 10px 0;
  }
}

.news-text_link {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: block;
}

.news-text_link:hover,
.news-item:hover {
  background: rgba(73, 115, 255, 0.1019607843);
}

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

.news-date {
  font-size: 18px;
  width: 118px;
  font-family: "Montserrat", sans-serif;
}
@media (max-width: 767px) {
  .news-date {
    font-size: 14px;
    width: 100%;
  }
}

.news-label {
  font-size: 14px;
  letter-spacing: 0.015em;
  width: 161px;
  margin-left: 20px;
}
@media (max-width: 767px) {
  .news-label {
    margin-left: 25px;
  }
}

.news-link {
  display: inline-block;
  border-radius: 50px;
  border: 2px solid #3b69ff;
  background: #fff;
  height: 30px;
  line-height: 30px;
  width: 121px;
  text-align: center;
}
@media (max-width: 767px) {
  .news-link {
    font-size: 12px;
    width: 81px;
    height: 20px;
    line-height: 20px;
  }
}

.news-text {
  letter-spacing: 0.025em;
  width: calc(100% - 260px);
  text-align: left;
  font-size: 18px;
  padding: 0 80px 0 40px;
  line-height: 1.5555555556;
}
@media (max-width: 767px) {
  .news-text {
    width: 100%;
    line-height: 1.4285714286;
    padding: 0 54px 0 0;
    font-size: 14px;
  }
}

.news-footer {
  text-align: center;
  margin-top: 34px;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
@media (max-width: 767px) {
  .news-footer {
    margin-top: 55px;
  }
}

.news-footer_link {
  display: block;
  width: 236px;
  height: 64px;
  line-height: 64px;
  border: 1px solid #707070;
  background: #fff;
  font-size: 20px;
  font-weight: 600;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
  font-family: "Montserrat", sans-serif;
  margin: 0 auto 0;
}
.news-footer_link:hover {
  background: #3e3e3e;
  color: #fff;
}
@media (max-width: 767px) {
  .news-footer_link {
    font-size: 18px;
    width: 268px;
    height: 54px;
    margin: 0 auto 0;
  }
}

.news-text_arrow {
  position: absolute;
  content: "";
  top: 32px;
  right: 14px;
  width: 12px;
  height: 22px;
  display: block;
}
@media (max-width: 767px) {
  .news-text_arrow {
    right: 0;
  }
}

/*------------------------------------------------------------
service
-------------------------------------------------------------*/
.service {
  background: linear-gradient(to bottom, #3e3e3e 0, #3e3e3e 400px, transparent 400px, transparent 100%);
  margin-top: 120px;
  padding-top: 58px;
}
@media (max-width: 767px) {
  .service {
    margin-top: 60px;
    padding-top: 36px;
    background: linear-gradient(to bottom, #3e3e3e 0, #3e3e3e 480px, transparent 480px, transparent 100%);
  }
}

.service-title {
  color: #fff;
  text-align: center;
}

.service-inner {
  margin: 45px auto 0;
  max-width: 960px;
}
@media (max-width: 767px) {
  .service-inner {
    margin: 38px 16px 0;
  }
}

.service-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background: #fff;
  width: 100%;
  -webkit-box-shadow: 0 5px 12px rgba(62, 62, 62, 0.16);
          box-shadow: 0 5px 12px rgba(62, 62, 62, 0.16);
}
@media (max-width: 767px) {
  .service-list {
    padding: 28px 0 34px;
    display: block;
  }
}

.service-item {
  padding: 58px 45px 60px;
}
@media (max-width: 767px) {
  .service-item {
    padding: 0 16px 0;
  }
}
@media (max-width: 767px) {
  .service-item + .service-item {
    margin-top: 40px;
  }
}
.service-item .service-head_title {
  background-position: top 12px center;
  background-repeat: no-repeat;
  font-family: "Montserrat", sans-serif;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 4px;
  line-height: 1.4;
  padding-top: 72px;
  text-align: center;
}
@media (max-width: 767px) {
  .service-item {
    background-size: 52px;
  }
}
.service-item:nth-child(1) .service-head_title {
  background-image: url(../img/service1.png);
}
.service-item:nth-child(2) .service-head_title {
  background-image: url(../img/service2.png);
}
@media (max-width: 767px) {
  .service-item:nth-child(2) .service-head_title {
    padding-top: 66px;
  }
}
.service-item:nth-child(3) .service-head_title {
  background-image: url(../img/service3.png);
}
@media (max-width: 767px) {
  .service-item:nth-child(3) .service-head_title {
    padding-top: 66px;
  }
}

.service-head_text {
  margin-top: 14px;
  line-height: 1.7142857143;
  font-size: 14px;
  -webkit-box-flex: 0;
      -ms-flex: 0 1 33.3333%;
          flex: 0 1 33.3333%;
}
@media (max-width: 767px) {
  .service-head_text {
    margin-top: 12px;
  }
}
.service-head_text .service-head_title {
  font-size: 20px;
  line-height: 1.4;
  padding: 72px;
  font-weight: 600;
}
.service-head_text .service-head_title {
  line-height: 1.7142857143;
  margin-top: 14px;
}

/*------------------------------------------------------------
results
-------------------------------------------------------------*/
.results {
  background: #3e3e3e;
  padding: 51px 0 60px 60px;
  margin: 120px 0 0 40px;
}
@media (max-width: 767px) {
  .results {
    margin: 0 0 40px 0;
    padding: 20px 0 0 16px;
  }
}

.results-title {
  color: #fff;
  text-align: left;
  font-size: 36px;
  font-weight: 600;
  font-family: "Montserrat", sans-serif;
}
@media (max-width: 767px) {
  .results-title {
    text-align: center;
  }
}

.results-container {
  margin-top: 50px;
  position: relative;
}
@media (max-width: 767px) {
  .results-container {
    margin-top: 40px;
  }
}

.swiper-container {
  overflow: hidden;
}

.results-list_item_link {
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.results-list_item_link:hover {
  opacity: 0.7;
}

.results-list_item_img {
  width: 100%;
}

.results-list_content {
  background: #fff;
  padding: 15px;
}
@media (max-width: 767px) {
  .results-list_content {
    font-size: 12px;
    padding: 0 15px 15px 0;
  }
}

.results-list_title {
  font-weight: 700;
  font-size: 20px;
}
@media (max-width: 767px) {
  .results-list_title {
    font-size: 14px;
  }
}

.results-list_text {
  line-height: 1.5;
  margin-top: 6px;
}
@media (max-width: 767px) {
  .results-list_text {
    font-size: 12px;
    line-height: 1.5;
  }
}

.results-pagination {
  margin-top: 44px;
  text-align: left;
}
@media (max-width: 767px) {
  .results-pagination {
    margin-top: 20px;
    position: static !important;
    width: 100%;
  }
}

.swiper-pagination {
  text-align: center;
}

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

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

.results-link_box {
  padding: 61px 0 0 0;
  margin: 42px 0 0 0;
  max-width: 289px;
}
@media (max-width: 767px) {
  .results-link_box {
    width: 316px;
    max-width: 100%;
    padding: 17px 0 30px;
    margin: 0 auto;
  }
}

/*------------------------------------------------------------
price
-------------------------------------------------------------*/
.price {
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  padding: 0 40px;
  margin: 110px auto 0;
  max-width: 960px;
}
@media (max-width: 767px) {
  .price {
    padding: 0;
    margin: 0 16px 60px;
  }
}

.price-title {
  margin-bottom: 60px;
  text-align: center;
}
@media (max-width: 767px) {
  .price-title {
    margin-bottom: 28px;
  }
}

.price-table {
  border-collapse: collapse;
  background: #fff;
  border: 1px solid #707070;
  font-weight: 700;
  font-family: "Montserrat", sans-serif;
  width: 100%;
}
.price-table th {
  background: #3e3e3e;
  color: #fff;
  width: 262px;
}
@media (max-width: 767px) {
  .price-table th {
    width: 100px;
  }
}
.price-table td {
  background: #fff;
}
@media (max-width: 767px) {
  .price-table td {
    padding: 16px 0 0 16px;
  }
}
.price-table th,
.price-table td {
  font-size: 24px;
  font-weight: 600;
  border-top: 1px solid #707070;
  height: 61px;
  line-height: 1.2083333333;
  padding: 0.5em 1.6em;
}
@media (max-width: 767px) {
  .price-table th,
  .price-table td {
    font-size: 20px;
    height: 56px;
    padding: 16px 0 0 16px;
  }
}

.price-text {
  font-size: 12px;
  text-align: left;
  margin-top: 10px;
}
@media (max-width: 767px) {
  .price-text {
    margin-top: 3px;
  }
}

/*------------------------------------------------------------
comments
-------------------------------------------------------------*/
.comments {
  margin-top: 111px;
  position: relative;
  margin-bottom: 120px;
}
@media (max-width: 767px) {
  .comments {
    margin: 60px 16px 40px;
  }
}

.bg-wrapper {
  position: relative;
}
.bg-wrapper:before {
  position: absolute;
  content: "";
  top: 146px;
  bottom: 138px;
  left: 0;
  width: 76.5625%;
  background: #3e3e3e;
  z-index: -1;
  display: block;
}
@media (max-width: 767px) {
  .bg-wrapper:before {
    top: 64px;
    bottom: 0px;
    width: 100%;
  }
}

.comments-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  margin: 0 auto;
  max-width: 1200px;
  position: relative;
}
@media (max-width: 767px) {
  .comments-inner {
    display: block;
  }
}

.comments-content {
  background: #fff;
  padding: 100px 60px 124px;
  -webkit-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.16);
          box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.16);
  -webkit-box-flex: 0;
      -ms-flex: 0 1 666px;
          flex: 0 1 666px;
}
@media (max-width: 767px) {
  .comments-content {
    width: 100%;
    padding: 32px 20px;
  }
}

.comments-title {
  text-align: left;
}

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

.comments-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 62px;
}
@media (max-width: 767px) {
  .comments-item {
    margin-top: 30px;
  }
}
.comments-item img {
  width: 100px;
  height: 100px;
}
@media (max-width: 767px) {
  .comments-item img {
    width: 60px;
    height: 60px;
  }
}

.comments-text {
  line-height: 1.5;
  text-align: left;
  margin-left: 32px;
}
@media (max-width: 767px) {
  .comments-text {
    font-size: 14px;
    margin-left: 20px;
  }
}

.comments-picture {
  -ms-flex-item-align: center;
      align-self: center;
}
@media (max-width: 767px) {
  .comments-picture {
    display: none;
  }
}
.comments-picture > img {
  width: 100%;
}

/*------------------------------------------------------------
qa
-------------------------------------------------------------*/
.qa {
  background: url(../img/qa-bg.png) no-repeat top center/cover;
  background-attachment: fixed;
  padding: 50px 0 188px;
  position: relative;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
}
@media (max-width: 767px) {
  .qa {
    padding: 0 16px 0;
    margin-top: 65px;
    width: 100%;
  }
}

.qa-inner {
  margin: 51px auto 90px;
  max-width: 1200px;
  width: 100%;
}
@media (max-width: 767px) {
  .qa-inner {
    padding-bottom: 74px;
    max-width: 375px;
    margin: 36px auto 0;
  }
}

.qa-title {
  text-align: center;
}
@media (max-width: 767px) {
  .qa-title {
    padding-top: 26px;
  }
}

.qa-list {
  margin-left: auto;
  width: 612px;
}
@media (max-width: 767px) {
  .qa-list {
    width: 100%;
  }
}

.qa-item {
  background: #fff;
  border-radius: 4px;
  padding: 16px;
}
.qa-item:not(:nth-child(1)) {
  margin-top: 32px;
}
@media (max-width: 767px) {
  .qa-item {
    padding: 10px 16px;
    margin-top: 24px;
  }
}

.qa-box_q_content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  line-height: 1.5;
}
.qa-box_q_content::before {
  content: "Q";
  background: #3b69ff;
  border-radius: 50%;
  color: #fff;
  display: inline-block;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 24px;
          flex: 0 0 24px;
  height: 24px;
  line-height: 24px;
  text-align: center;
  font-weight: 600;
}

.qa-box_q {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 100%;
          flex: 0 1 100%;
  line-height: 1.5;
  margin-left: 0.75em;
  font-weight: 700;
  position: relative;
}
.qa-box_q:before {
  content: "";
  display: block;
  width: 16px;
  height: 3px;
  background: #3b69ff;
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  letter-spacing: normal;
}
.qa-box_q:after {
  content: "";
  display: block;
  width: 3px;
  height: 16px;
  background: #3b69ff;
  position: absolute;
  right: 6px;
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(96deg);
          transform: translateY(-50%) rotate(96deg);
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.qa-item.add-active .qa-box_q:after {
  -webkit-transform: translateY(-50%) rotate(0);
          transform: translateY(-50%) rotate(0);
}

.qa-box_a {
  background: rgba(59, 105, 255, 0.2);
  border-radius: 4px;
  padding: 16px;
  margin-top: 10px;
  display: none;
}
@media (max-width: 767px) {
  .qa-box_a {
    padding: 12px 16px 12px 12px;
    margin-top: 16px;
  }
}

.qa-content {
  line-height: 1.5;
}
@media (max-width: 767px) {
  .qa-content {
    font-size: 14px;
    line-height: 1.4285714286;
  }
}

/*------------------------------------------------------------
access
-------------------------------------------------------------*/
.access {
  position: relative;
  z-index: 1;
  margin: 110px auto 0;
  max-width: 1200px;
  display: grid;
  grid-column-gap: 0;
  grid-row-gap: 0;
  grid-template-columns: 414px 1fr;
  grid-template-rows: auto 1fr;
  padding: 0 0 0 60px;
}
@media (max-width: 767px) {
  .access {
    padding: 34px 16px 60px;
    display: block;
    margin: 0;
  }
}

.access-inner {
  grid-area: 1/1/2/2;
}

.access-title {
  color: #fff;
  font-size: 36px;
  font-weight: 600;
  text-align: left;
}

.access-info_address {
  color: #fff;
  text-align: left;
  line-height: 1.5;
  margin-top: 46px;
}
@media (max-width: 767px) {
  .access-info_address {
    margin-top: 18px;
  }
}

.iframe-map {
  -webkit-box-shadow: 0 0 10px rgba(62, 62, 62, 0.16);
          box-shadow: 0 0 10px rgba(62, 62, 62, 0.16);
  -webkit-box-flex: 0;
      -ms-flex: 0 1 720px;
          flex: 0 1 720px;
  grid-area: 1/2/3/3;
  height: 520px;
}
@media (max-width: 767px) {
  .iframe-map {
    margin-top: 12px;
    height: 241px;
  }
}
.iframe-map iframe {
  width: 100%;
  height: 100%;
}

.access-link_box {
  margin-top: 30px;
}

.access-link {
  max-width: 314px;
  grid-area: 2/1/3/2;
  padding: 16px 0;
}
@media (max-width: 767px) {
  .access-link {
    width: 339px;
    max-width: 100%;
    padding: 12px 0;
    margin: 0 auto;
  }
}

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

.contact-inner {
  background: #fff;
  border-radius: 12px 12px 0 0;
  max-width: 960px;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .contact-inner {
    margin: 20px 16px;
  }
}

.contact-header {
  background: url(../img/contact1.png) no-repeat center center/cover;
  width: 100%;
  height: 200px;
  color: #fff;
  border-radius: 12px 12px 0 0;
}
@media (max-width: 767px) {
  .contact-header {
    height: 163px;
  }
}

.contact-header_inner {
  padding: 60px 0;
}
@media (max-width: 767px) {
  .contact-header_inner {
    padding: 34px 16px;
  }
}

.contact-header_title {
  font-size: 36px;
  font-weight: 600;
  text-align: center;
}
@media (max-width: 767px) {
  .contact-header_title {
    font-size: 30px;
  }
}

.contact-header_text {
  margin-top: 5px;
  text-align: center;
}

.contact-form_content {
  padding: 60px 120px;
}
@media (max-width: 767px) {
  .contact-form_content {
    padding: 40px 12px;
  }
}

.contact-form_row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 32px;
}
.contact-form_row:first-child {
  margin-top: 0;
}
@media (max-width: 767px) {
  .contact-form_row {
    display: block;
    margin-top: 32px;
  }
}

.contact-form_label {
  width: 188px;
  font-weight: 700;
}
@media (max-width: 767px) {
  .contact-form_label {
    margin-bottom: 4px;
  }
  .contact-form_label:last-child {
    margin-bottom: 0;
  }
}

.contact-form_input [type=text],
.contact-form_input [type=email] {
  background: #fff;
  padding: 0 0 8px 12px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border-radius: 0;
  color: inherit;
  font-family: inherit;
  border: none;
  border-bottom: 1px solid #707070;
  outline: none;
  width: 532px;
  font-size: 16px;
}
@media (max-width: 767px) {
  .contact-form_input [type=text],
  .contact-form_input [type=email] {
    width: 100%;
    padding: 0;
  }
}
.contact-form_input [type=text]:hover, .contact-form_input [type=text]:focus,
.contact-form_input [type=email]:hover,
.contact-form_input [type=email]:focus {
  border-color: #4973ff;
}

select {
  outline: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border-radius: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
  border-bottom: 1px solid #707070;
  padding-left: 12px;
  border-radius: 0;
  color: inherit;
  font-family: inherit;
  background: url(../img/select-arrow.png) no-repeat right 12px center/16px 16px;
  width: 178px;
  height: 40px;
  line-height: 40px;
  font-size: 16px;
}
@media (max-width: 767px) {
  select {
    height: 38px;
    line-height: 1.7142857143;
    width: 100%;
  }
}
select:hover {
  border-color: #3b69ff;
  -webkit-box-shadow: #4973ff 0 0 5px;
          box-shadow: #4973ff 0 0 5px;
}

.contact-form_massage {
  margin-top: 22px;
}

dd textarea {
  width: 100%;
  height: 200px;
  outline: none;
  resize: vertical;
  -webkit-box-shadow: none;
          box-shadow: none;
  border: 1px solid #707070;
  background: #fff;
  padding: 10px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border-radius: 0;
  color: inherit;
  font-family: inherit;
}
@media (max-width: 767px) {
  dd textarea {
    height: 160px;
  }
}
dd textarea:hover, dd textarea:focus {
  border-color: #4973ff;
  -webkit-box-shadow: #4973ff 0 0 5px;
          box-shadow: #4973ff 0 0 5px;
}

.contact-form_required {
  background: #ff4646;
  padding: 0 10px;
  color: #fff;
  border-radius: 2px;
  font-size: 10px;
  margin-left: 12px;
  display: inline-block;
  font-weight: 700;
}

.contact-form_radio {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 23px;
  width: calc(100% - 188px);
}
@media (max-width: 767px) {
  .contact-form_radio {
    display: block;
  }
}
.contact-form_radio [type=radio] {
  display: none;
}

@media (max-width: 767px) {
  .contact-form_radio_input {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 319px;
    margin-top: 5px;
  }
}

.radio-sex {
  display: inline-block;
  padding-left: 24px;
  position: relative;
  margin-right: 30px;
}
.radio-sex::before {
  content: "";
  width: 12px;
  height: 12px;
  border: 1px solid #707070;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: #fff;
  border-radius: 50%;
}
.radio-sex:hover::before {
  border-color: #4973ff;
  -webkit-box-shadow: #4973ff 0 0 5px;
          box-shadow: #4973ff 0 0 5px;
}
.radio-sex::after {
  content: "";
  width: 6px;
  height: 6px;
  position: absolute;
  top: 50%;
  left: 3px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: #3b69ff;
  border-radius: 50%;
  display: none;
}

[type=radio]:checked + span::after {
  display: block;
}

.contact-form_privacy {
  margin-top: 30px;
  font-size: 18px;
  font-weight: 700;
}
.contact-form_privacy [type=checkbox] {
  display: none;
}
.contact-form_privacy span {
  display: inline-block;
  position: relative;
  margin-right: 21px;
  padding-left: 40px;
}
.contact-form_privacy span::before {
  display: block;
  position: absolute;
  content: "";
  top: 50%;
  left: 0;
  width: 20px;
  height: 20px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  border: 1px solid #3e3e3e;
}
.contact-form_privacy span:hover::before {
  border-color: #4973ff;
  -webkit-box-shadow: #4973ff 0 0 5px;
          box-shadow: #4973ff 0 0 5px;
}
.contact-form_privacy span::after {
  display: block;
  width: 20px;
  height: 20px;
  position: absolute;
  content: "";
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: transparent url(../img/checkbox.png) no-repeat center center/contain;
  display: none;
}
.contact-form_privacy [type=checkbox]:checked + span::after {
  display: block;
}

.contact-button {
  margin-top: 30px;
}
@media (max-width: 767px) {
  .contact-button {
    text-align: center;
  }
}
.contact-button [type=submit] {
  display: none;
  display: inline-block;
  background: #f18900;
  color: #fff;
  font-weight: 700;
  font-size: 18px;
  border-radius: 10px;
  width: 173px;
  padding: 10px 50px;
  border: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  font-family: inherit;
  -webkit-box-shadow: 0 3px 5px rgba(62, 62, 62, 0.16);
          box-shadow: 0 3px 5px rgba(62, 62, 62, 0.16);
}
.contact-button [type=submit]:disabled {
  background: #b2b2b2;
}
@media (max-width: 767px) {
  .contact-button [type=submit] {
    width: 165px;
  }
}
.contact-button [type=submit]:hover {
  background: #ffaa3b;
}

.contact-message {
  text-align: center;
  margin-top: 30px;
  display: none;
  font-weight: 600;
}
.contact-message.-error {
  color: #f00;
}

/*------------------------------------------------------------
footer
-------------------------------------------------------------*/
footer {
  background: #3e3e3e;
  color: #707070;
}

.footer-inner {
  padding: 60px 160px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 767px) {
  .footer-inner {
    display: block;
    padding: 44px 76px 57px 66px;
    text-align: center;
    color: #fff;
  }
}

.footer-content {
  width: calc(100% - 278px);
}
@media (max-width: 767px) {
  .footer-content {
    width: 100%;
  }
}

.footer-sns_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 767px) {
  .footer-sns_list {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.footer-sns_item {
  margin-right: 32px;
}
@media (max-width: 767px) {
  .footer-sns_item {
    margin-right: 23px;
    margin-left: 30px;
  }
}

.footer-sns_item_link {
  font-size: 36px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.footer-sns_item_link:hover {
  color: #fff;
}

.footer-nav_list {
  margin-top: 14px;
}
@media (max-width: 767px) {
  .footer-nav_list {
    margin: 24px auto 0;
  }
}

.footer-nav_item {
  margin-bottom: 17px;
}
.footer-nav_item:last-child {
  margin-bottom: 0;
}

.footer-nav_item_link {
  position: relative;
}
.footer-nav_item_link::after {
  position: absolute;
  content: "";
  bottom: -4px;
  left: 0;
  background: #fff;
  width: 100%;
  height: 1px;
  opacity: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.footer-nav_item_link:hover::after {
  opacity: 1;
}

.footer-company {
  width: 278px;
  text-align: right;
}
@media (max-width: 767px) {
  .footer-company {
    text-align: center;
    width: 100%;
  }
}

.footer-company_name {
  font-size: 41px;
  height: 59px;
  font-weight: 700;
  font-family: Montserrat;
}
@media (max-width: 767px) {
  .footer-company_name {
    font-size: 32px;
    text-align: center;
    margin-top: 27px;
  }
}

.footer-copyright {
  font-size: 12px;
}

.to-top {
  position: fixed;
  bottom: 48px;
  right: 41px;
  left: auto;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
  z-index: 100;
}
@media (max-width: 767px) {
  .to-top {
    bottom: 18px;
    right: 14px;
  }
}
.to-top.is-show {
  opacity: 1;
  visibility: visible;
}