@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Lato:wght@400;700&family=Montserrat:wght@400;500;600&family=Noto+Sans+JP:wght@400;700&display=swap");
/*===========================================================================
mixin
========================================================================== */
/*===========================================================================
color
========================================================================== */
/*===========================================
inner幅
===========================================*/
/*===========================================
font-family
===========================================*/
/*===========================================================================
common - 全体に共通するスタイル
========================================================================== */
@media screen and (max-width: 767px) {
  .is-pc {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  .is-sp {
    display: none;
  }
}
body {
  background: #f3f3f3;
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  font-size: 16px;
  line-height: 1.6875;
  color: #3e3e3e;
}

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

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

/*===========================================
header
===========================================*/
.header {
  position: fixed;
  max-width: 100%;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.1019607843);
}
@media screen and (max-width: 767px) {
  .header {
    line-height: 3.3478;
    background: #fff;
  }
}

.header-inner {
  max-width: 100%;
  margin: 0;
}

@media screen and (max-width: 767px) {
  .header-title {
    font-size: 23px;
    font-weight: 700;
    font-family: "Montserrat", sans-serif;
    text-align: left;
    line-height: 68px;
    height: 68px;
  }
}

.header-nav {
  font-family: "Montserrat", sans-serif;
}

.header-nav-list {
  display: flex;
  justify-content: center;
  height: 83px;
  line-height: 83px;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .header-nav-list {
    display: none;
  }
}

.header-nav-item {
  position: relative;
  color: #3e3e3e;
}
.header-nav-item + .header-nav-item {
  margin-left: 40px;
}
.header-nav-item:hover::after {
  content: "";
  position: absolute;
  bottom: 25px;
  left: -10%;
  width: 120%;
  height: 1px;
  background-color: #3e3e3e;
  transition: all 0.3s ease 0s;
}

.header-nav-item-link {
  display: block;
  color: #3e3e3e;
  letter-spacing: -0.025em;
  font-family: "Montserrat", sans-serif;
}

.drawer-icon {
  position: fixed;
  top: 24px;
  right: 16px;
  z-index: 300;
  transition: transform 0.5s ease 0s;
}
@media screen and (min-width: 768px) {
  .drawer-icon {
    display: none;
  }
}
.drawer-icon.is-active {
  right: calc(80% + 14px);
}
.drawer-icon.is-active .drawer-icon__bar1 {
  transform: rotate(-45deg);
  top: 8px;
  background: #fff;
}
.drawer-icon.is-active .drawer-icon__bar2 {
  display: none;
  background: #fff;
}
.drawer-icon.is-active .drawer-icon__bar3 {
  transform: rotate(45deg);
  top: 8px;
  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;
  top: 0;
  left: 0;
}

.drawer-icon__bar1 {
  top: 0;
}

.drawer-icon__bar2 {
  top: 8px;
}

.drawer-icon__bar3 {
  top: 16px;
}

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

.drawer-content__item {
  text-align: center;
  margin-top: 145px;
  font-size: 18px;
  font-family: "Montserrat", sans-serif;
  position: relative;
}
.drawer-content__item:hover::after {
  content: "";
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 70px;
  height: 1px;
  background-color: #3e3e3e;
  transition: all 0.3s ease 0s;
}
.drawer-content__item:nth-child(n+2) {
  margin-top: 4px;
}

.drawer-content__item-link {
  display: block;
  color: #3e3e3e;
  text-decoration: none;
  padding: 10px;
}

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

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

.main-visual-message {
  content: "";
  position: absolute;
  max-width: 650px;
  height: 275px;
  margin-top: 42px;
  margin-right: 40px;
  left: 50%;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .main-visual-message {
    width: 100%;
    margin: 0;
    padding: 0 16px;
    margin-top: 24px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 375px;
  }
}

.main-visual-title {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.000625em;
}
@media screen and (max-width: 767px) {
  .main-visual-title {
    font-size: 24px;
    line-height: 1.6666666667;
  }
}

.main-visual-text {
  margin-top: 27px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5555555556;
}
@media screen and (min-width: 768px) {
  .main-visual-text {
    letter-spacing: 0.025em;
  }
}
@media screen and (max-width: 767px) {
  .main-visual-text {
    font-size: 14px;
    line-height: 1.4285714286;
    margin-top: 22px;
  }
}

.main-visual-button {
  margin-top: 38px;
}
@media screen and (min-width: 768px) {
  .main-visual-button {
    letter-spacing: 0.025em;
  }
}
@media screen and (max-width: 767px) {
  .main-visual-button {
    margin-top: 27px;
    text-align: center;
  }
}

/*===========================================
section共通
===========================================*/
.section {
  margin-top: 120px;
}
@media screen and (max-width: 767px) {
  .section {
    margin-top: 60px;
  }
}

.section-title {
  font-size: 36px;
  font-weight: 700;
  text-align: center;
  font-family: "Montserrat", sans-serif;
}
@media screen and (min-width: 768px) {
  .section-title {
    padding-top: 60px;
  }
}
@media screen and (max-width: 767px) {
  .section-title {
    font-size: 30px;
    padding-top: 40px;
    line-height: 1.2333333333;
  }
}

/*===========================================
共通ボタン
===========================================*/
.util-link {
  display: inline-block;
  margin: 40px auto;
  font-size: 20px;
  padding: 20px;
  border: 1px solid #707070;
  line-height: 1.125;
  letter-spacing: 0.2em;
  white-space: nowrap;
  font-weight: 600;
}
.util-link:hover {
  background-color: #3e3e3e;
  color: #fff;
  border: 1px solid #fff;
  transition: all 0.3s ease 0s;
}
@media screen and (max-width: 767px) {
  .util-link {
    font-size: 18px;
    padding: 16px;
    margin: 16px auto;
    line-height: 1.25;
  }
}

.util-btn {
  color: #fff;
  font-weight: 700;
  display: inline-block;
  width: 282px;
  text-align: center;
  padding: 16px;
  line-height: 1;
  background: #ffaa3b;
  border-radius: 10px;
  box-shadow: 0 3px 5px rgba(0, 0, 0, 0.16);
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  font-family: inherit;
  cursor: pointer;
  white-space: nowrap;
  font-weight: 600;
}
.util-btn:hover {
  background-color: #f18900;
  transition: all 0.3s ease 0s;
}
.util-btn:disabled {
  background-color: #b2b2b2;
  transition: all 0.3s ease 0s;
  cursor: default;
}
@media screen and (min-width: 768px) {
  .util-btn {
    font-size: 18px;
  }
}
@media screen and (max-width: 767px) {
  .util-btn {
    width: 222px;
    font-size: 16px;
    text-align: center;
    padding: 16px;
  }
}

/*===========================================
news
===========================================*/
@media screen and (max-width: 767px) {
  .news {
    margin-top: 0;
  }
}

.news-container {
  background: #fff;
  box-shadow: 0 5px 12px rgba(62, 62, 62, 0.2);
  max-width: 1200px;
  margin: 120px auto 0;
  padding: 0 60px;
  box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .news-container {
    margin: 0;
    padding: 0;
    position: relative;
    margin-top: -39px;
  }
}

.news-title {
  padding-top: 52px;
}
@media screen and (max-width: 767px) {
  .news-title {
    padding-top: 40px;
  }
}

.news-inner {
  max-width: 1080px;
}

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

.news-item {
  padding: 40px 26px 40px 0;
  border-bottom: 1px solid #cecdcd;
  font-size: 18px;
  line-height: 1.5555555556;
  position: relative;
}
@media screen and (min-width: 768px) {
  .news-item {
    letter-spacing: 0.025em;
  }
}
.news-item:hover {
  background-color: rgba(73, 115, 255, 0.1019607843);
  transition: all 0.3s ease 0s;
}
.news-item:first-child {
  border-top: 1px solid #cecdcd;
}
@media screen and (min-width: 768px) {
  .news-item:first-child {
    padding: 42px 26px 42px 0;
  }
}
@media screen and (max-width: 767px) {
  .news-item {
    padding: 14px 55px 12px 16px;
  }
}
.news-item::after {
  content: "";
  position: absolute;
  background: url(../img/news-arrow-1.png) no-repeat center center/cover;
  width: 12px;
  height: 24px;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .news-item::after {
    right: 15px;
  }
}

.news-item-link {
  display: flex;
  align-items: center;
  color: #3e3e3e;
}
@media screen and (max-width: 767px) {
  .news-item-link {
    display: block;
  }
}

.news-item-meta {
  display: flex;
  flex: 0 0 300px;
}

.news-item-date {
  font-size: 18px;
  font-family: "Montserrat", sans-serif;
  letter-spacing: 0.025em;
  line-height: 1.5555555556;
}
@media screen and (max-width: 767px) {
  .news-item-date {
    font-size: 14px;
  }
}

.news-label {
  margin-left: 39px;
  height: 29px;
  font-size: 14px;
  border: solid 2px #3b69ff;
  padding: 0 30px;
  border-radius: 50px;
  letter-spacing: 0.025em;
}
@media screen and (max-width: 767px) {
  .news-label {
    font-size: 12px;
    margin-left: 24px;
    padding: 1px 13px;
    line-height: 1;
    height: 20px;
  }
}

.news-item-body {
  flex: 0 1 64.8148148148%;
}
@media screen and (max-width: 767px) {
  .news-item-body {
    margin-top: 5px;
    font-size: 14px;
  }
}

.news-item-text {
  line-height: 1.5555555556;
}
@media screen and (max-width: 767px) {
  .news-item-text {
    line-height: 1.4285714286;
  }
}

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

.news-footer {
  text-align: center;
  font-family: "Montserrat", sans-serif;
}
@media screen and (max-width: 767px) {
  .news-footer {
    margin: 0 auto;
    padding: 0 37px;
    max-width: 400px;
  }
}

.news-button {
  display: inline-block;
  margin: 39px auto;
  font-size: 20px;
  width: 236px;
  padding: 20px;
  border: 1px solid #707070;
  line-height: 1.125;
  letter-spacing: 0.2em;
  color: #3e3e3e;
}
.news-button:hover {
  background-color: #3e3e3e;
  color: #fff;
  border: 1px solid #fff;
  transition: all 0.3s ease 0s;
}
@media screen and (max-width: 767px) {
  .news-button {
    width: 100%;
    font-size: 18px;
    padding: 15px;
    line-height: 1.25;
    letter-spacing: 0.2em;
  }
}

/*===========================================
service
===========================================*/
.service {
  background: #3e3e3e;
  max-width: 100%;
  height: 400px;
}
@media screen and (max-width: 767px) {
  .service {
    height: 480px;
  }
}

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

.service-item {
  background: #fff;
  margin-top: 52px;
  box-shadow: 0 5px 12px rgba(62, 62, 62, 0.2);
  display: flex;
}
@media screen and (max-width: 767px) {
  .service-item {
    display: block;
    height: 100%;
    padding: 40px 16px 35px;
    margin-top: 40px;
  }
}

.service-item-parts {
  margin: 60px 45px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .service-item-parts {
    margin: 0;
  }
  .service-item-parts:nth-child(n+2) {
    margin-top: 35px;
  }
}

.service-item-img {
  width: 64px;
  height: 64px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.service-item-img img {
  width: 80%;
}

.service-sub-title {
  margin-top: 6px;
  font-size: 20px;
  line-height: 1.4;
  font-family: "Montserrat", sans-serif;
  letter-spacing: 0.2em;
  margin-left: 5px;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .service-sub-title {
    line-height: 1.2;
    margin-top: 8px;
  }
}

.service-text {
  margin-top: 13px;
  font-size: 14px;
  line-height: 1.714;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .service-text {
    margin-top: 15px;
  }
}

/*===========================================
results
===========================================*/
.results {
  background: #3e3e3e;
  margin-top: 215px;
  margin-left: 40px;
}
@media screen and (max-width: 767px) {
  .results {
    margin-left: 0;
    width: 100%;
    margin-top: 391px;
  }
}

.results-container {
  padding-left: 60px;
}
@media screen and (max-width: 767px) {
  .results-container {
    padding-left: 16px;
  }
}

.results-title {
  color: #fff;
  text-align: left;
  padding-top: 53px;
}
@media screen and (max-width: 767px) {
  .results-title {
    text-align: center;
    padding-top: 41px;
    padding-right: 16px;
  }
}

.results-inner {
  max-width: 1280px;
  padding: 0;
}

.swiper-slide {
  flex-shrink: 1;
  margin-right: 40px;
}
@media screen and (max-width: 767px) {
  .swiper-slide {
    margin-right: 20px;
  }
}

.swiper-slide,
.swiper-slide-next {
  width: 400px;
}
@media screen and (max-width: 767px) {
  .swiper-slide,
.swiper-slide-next {
    width: 274px;
  }
}

.results-list {
  width: 400px;
  background: #fff;
  margin-top: 51px;
}
@media screen and (max-width: 767px) {
  .results-list {
    width: 274px;
    margin-top: 40px;
  }
}

.results-picture img {
  width: 400px;
  height: 250px;
}
@media screen and (max-width: 767px) {
  .results-picture img {
    width: 274px;
    height: 171px;
  }
}

.results-body {
  padding: 10px 16px 20px;
  color: #3e3e3e;
}
@media screen and (max-width: 767px) {
  .results-body {
    padding: 7px 12px 10px;
  }
}

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

.results-text {
  margin-top: 4px;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .results-text {
    margin-top: 5px;
    font-size: 12px;
    line-height: 1.5;
    letter-spacing: 0.0008em;
  }
}

.results-item {
  width: 400px;
  height: 366px;
  background: #fff;
  margin-top: 60px;
  margin-left: 60px;
}

.swiper-pagination {
  text-align: left;
  position: initial;
  margin-top: 37px;
}
@media screen and (max-width: 767px) {
  .swiper-pagination {
    text-align: center;
    margin-top: 20px;
    padding-right: 16px;
  }
}

.swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: #fff;
  opacity: 1;
}
.swiper-pagination-bullet:nth-child(1) {
  padding-left: 8px;
}

.swiper-pagination-bullet-active {
  width: 12px;
  height: 12px;
  background: #fff;
  position: relative;
}
.swiper-pagination-bullet-active::after {
  position: absolute;
  content: "";
  width: 19px;
  height: 19px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 1px solid #fff;
}
@media screen and (max-width: 767px) {
  .swiper-pagination-bullet-active::after {
    width: 18px;
    height: 18px;
  }
}

.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet:nth-child(1),
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet:nth-child(1) {
  margin-left: 4px;
}
.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet:nth-child(n+2),
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet:nth-child(n+2) {
  margin: 0 0 0 19px;
}

.results-footer {
  text-align: left;
}
@media screen and (min-width: 768px) {
  .results-footer {
    padding-left: 60px;
  }
}
@media screen and (max-width: 767px) {
  .results-footer {
    max-width: 400px;
    text-align: center;
    padding: 0 30px;
    margin: 0 auto;
  }
}

.results-link {
  font-weight: 600;
  font-family: "Montserrat", sans-serif;
  border: 1px solid #fff;
  color: #fff;
  margin: 36px auto 60px;
  width: 289px;
  padding: 20px;
  text-align: center;
}
.results-link:hover {
  background-color: #fff;
  color: #3e3e3e;
  border: 1px solid #3e3e3e;
  transition: all 0.3s ease 0s;
}
@media screen and (max-width: 767px) {
  .results-link {
    width: 100%;
    padding: 14px;
    margin: 22px auto 40px;
  }
}

/*===========================================
price
===========================================*/
@media screen and (min-width: 768px) {
  .price {
    margin-top: 112px;
    padding: 0 40px;
  }
}
@media screen and (max-width: 767px) {
  .price {
    margin-top: 40px;
  }
}

@media screen and (min-width: 768px) {
  .price-title {
    padding-top: 0;
  }
}
@media screen and (max-width: 767px) {
  .price-title {
    font-size: 30px;
    font-weight: 700;
    text-align: center;
    font-family: "Montserrat", sans-serif;
    line-height: 1.2333333333;
    padding-top: 1px;
  }
}

.table {
  margin: 51px 0 0;
  border-collapse: collapse;
  border: 1px solid #707070;
  background: #fff;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  table-layout: fixed;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .table {
    margin: 40px 0 0;
  }
}
.table th,
.table td {
  font-size: 24px;
  padding: 15px 40px;
  line-height: 1.2083333333;
}
@media screen and (max-width: 767px) {
  .table th,
.table td {
    font-size: 20px;
    padding: 15px 19px;
  }
}
.table th {
  border: 1px solid #707070;
  background: #3e3e3e;
  color: #fff;
  white-space: nowrap;
}
.table th:nth-child(1) {
  width: 262px;
}
@media screen and (max-width: 767px) {
  .table th:nth-child(1) {
    width: 100px;
  }
}
.table td {
  border: 1px solid #707070;
}
.table .border-white {
  border-bottom: 1px solid #fff;
}

.price-attention {
  font-size: 12px;
  margin-top: 8px;
}
@media screen and (max-width: 767px) {
  .price-attention {
    margin-top: 4px;
  }
}

/*===========================================
comments
===========================================*/
.comments {
  margin-top: 264px;
  display: flex;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .comments {
    background: linear-gradient(90deg, #3e3e3e 0%, #3e3e3e 76.5625%, #f3f3f3 76.5625%, #f3f3f3 100%);
  }
}
@media screen and (max-width: 767px) {
  .comments {
    background: #3e3e3e;
    margin-top: 116px;
  }
}

.comments-container {
  display: flex;
  align-items: center;
  max-width: 1280px;
  margin-top: -149px;
  margin-bottom: 120px;
}
@media screen and (max-width: 767px) {
  .comments-container {
    display: block;
    width: 100%;
    font-size: 14px;
    margin-top: -60px;
    margin-bottom: 60px;
  }
}

.comments-list {
  background: #fff;
  width: 55.5%;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.16);
  padding: 120px 60px;
  height: 100%;
}
@media screen and (max-width: 767px) {
  .comments-list {
    width: 100%;
    height: 100%;
    padding: 40px 20px 38px 20px;
  }
}

.comments-title {
  text-align: left;
  padding-top: 0;
  line-height: 1.2222222222;
}

.comments-item {
  display: flex;
  margin-top: 60px;
  line-height: 1.5;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .comments-item {
    margin-top: 40px;
  }
  .comments-item:nth-child(n+2) {
    margin-top: 39px;
  }
}

.comments-item-img img {
  width: 100px;
  height: 100px;
}
@media screen and (max-width: 767px) {
  .comments-item-img img {
    width: 60px;
    height: 60px;
  }
}

.comments-item-body {
  width: 75.8241758242%;
  margin-left: 32px;
  margin-top: -4px;
}
@media screen and (max-width: 767px) {
  .comments-item-body {
    margin-left: 20px;
  }
}

.comments-item-text {
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .comments-item-text {
    line-height: 1.4285714286;
  }
}

@media screen and (min-width: 768px) {
  .comments-img {
    width: 44.5%;
    height: 444px;
    background: url(../img/comments3.png) no-repeat center center/cover;
  }
}

/*===========================================
qa
===========================================*/
.qa {
  background: url(/img/qa-bg.png) no-repeat center center/cover;
  height: 100%;
  overflow-y: auto;
  margin-top: 0;
}

@media screen and (min-width: 768px) {
  .qa-title {
    padding-top: 53px;
  }
}
@media screen and (max-width: 767px) {
  .qa-title {
    padding-top: 41px;
  }
}

.qa-items {
  width: 612px;
  max-width: 100%;
  margin: 7px 0 120px auto;
}
@media screen and (max-width: 767px) {
  .qa-items {
    margin: 40px 0 60px auto;
  }
}

.qa-item {
  background: #fff;
  border-radius: 4px;
  margin-top: 51px;
}
@media screen and (max-width: 767px) {
  .qa-item {
    margin-top: 40px;
  }
}
.qa-item:nth-child(n+2) {
  margin-top: 32px;
}
@media screen and (max-width: 767px) {
  .qa-item:nth-child(n+2) {
    margin-top: 24px;
  }
}

@media screen and (max-width: 767px) {
  .qa-item:first-child .qa-box-icon {
    margin-top: -5px;
  }
}
@media screen and (min-width: 768px) {
  .qa-item:nth-child(2) .qa-box-q {
    margin-top: -2px;
  }
}
@media screen and (min-width: 768px) {
  .qa-item:nth-child(2) .qa-box-a {
    margin-top: -3px;
  }
}

.qa-box-q {
  padding: 16px 56px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.025em;
  position: relative;
}
.qa-box-q:hover {
  opacity: 0.7;
  cursor: pointer;
}
.qa-box-q::before {
  position: absolute;
  content: "Q";
  top: 50%;
  left: 16px;
  transform: translateY(-50%);
  color: #fff;
  background: #3b69ff;
  padding: 2px 6px 3px 5px;
  border-radius: 999px;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  line-height: 1.1875;
}

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

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

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

.qa-box-a {
  padding: 0 16px 16px;
  line-height: 1.5;
  display: none;
}
@media screen and (max-width: 767px) {
  .qa-box-a {
    padding: 0 16px 17px;
  }
}

.qa-box-content {
  padding: 12px 16px;
  background: rgba(59, 105, 255, 0.2);
  border-radius: 4px;
  font-weight: 500;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .qa-box-content {
    font-size: 14px;
    padding: 6px 12px;
  }
}

/*===========================================
access
===========================================*/
.access {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .access {
    background: linear-gradient(90deg, #3e3e3e 0%, #3e3e3e 76.5625%, #f3f3f3 76.5625%, #f3f3f3 100%);
    height: 504px;
  }
}
@media screen and (max-width: 767px) {
  .access {
    background: #3e3e3e;
  }
}

.access-inner {
  padding-left: 100px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .access-inner {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    height: 504px;
  }
}
@media screen and (max-width: 767px) {
  .access-inner {
    padding: 0 16px;
  }
}

.access-list {
  padding-top: 60px;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .access-list {
    position: absolute;
    content: "";
    top: 0;
    left: 7.8125%;
    width: 24.53125%;
  }
}
@media screen and (max-width: 767px) {
  .access-list {
    padding-top: 30px;
  }
}

.access-title {
  font-weight: 600;
  font-family: "Montserrat", sans-serif;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .access-title {
    font-size: 36px;
    padding-top: 53px;
  }
}
@media screen and (max-width: 767px) {
  .access-title {
    padding-top: 10px;
  }
}

.access-info {
  margin-top: 47px;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .access-info {
    margin-top: 36px;
    font-size: 14px;
    line-height: 1.4285714286;
  }
}

.access-map {
  position: absolute;
  content: "";
  width: 56.71875%;
  max-height: 520px;
  top: 120px;
  right: 0;
  margin-right: 40px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.16);
}
@media screen and (max-width: 767px) {
  .access-map {
    width: 100%;
    padding: 0 16px;
    margin-right: 0;
    top: 195px;
  }
}

.iframe-wrap {
  padding-top: 75%;
  position: relative;
}
@media screen and (max-width: 767px) {
  .iframe-wrap {
    padding-top: 70%;
  }
}
.iframe-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  max-height: 520px;
  transition: top 0.3s ease;
}
@media screen and (max-width: 767px) {
  .iframe-wrap iframe {
    max-height: 240px;
  }
}

@media screen and (min-width: 768px) {
  .access-footer {
    text-align: center;
    margin-top: 28px;
  }
}
@media screen and (max-width: 767px) {
  .access-footer {
    max-width: 400px;
    padding: 237px 1px 61px;
    margin: 20px auto 0;
    text-align: center;
    position: relative;
    z-index: 1;
  }
}

.access-link {
  display: inline-block;
  color: #fff;
  font-weight: 600;
  font-family: "Montserrat", sans-serif;
  border: 1px solid #fff;
  letter-spacing: 0.1em;
  line-height: 1.25;
  font-size: 20px;
  padding: 19px;
  white-space: nowrap;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .access-link {
    width: 100%;
    margin-top: 31px;
    padding: 13px;
    letter-spacing: 0.025em;
  }
}
.access-link:hover {
  background-color: #fff;
  color: #3e3e3e;
  border: 1px solid #3e3e3e;
  transition: all 0.3s ease 0s;
}

/*===========================================
contact
===========================================*/
.contact {
  margin-top: 256px;
  background: url(../img/contact-bg.png) no-repeat center center/cover;
  padding: 60px 40px;
}
@media screen and (max-width: 767px) {
  .contact {
    margin-top: 0px;
    padding: 40px 0;
  }
}

.contact-container {
  width: 960px;
  max-width: 100%;
  background: #fff;
  border-radius: 0 0 12px 12px;
  margin: 0 auto;
}

.contact-head {
  width: 960px;
  max-width: 100%;
  background: url(../img/contact1.png) no-repeat center center/cover;
  border-radius: 12px 12px 0 0;
  text-align: center;
  color: #fff;
  padding: 0 16px 40px;
}
@media screen and (max-width: 767px) {
  .contact-head {
    border-radius: 12px 12px 0 0;
    padding: 0 16px 21px;
  }
}

.contact-title {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
}
@media screen and (min-width: 768px) {
  .contact-title {
    padding-top: 53px;
  }
}

.contact-text {
  text-align: center;
  margin-top: 1px;
  padding-bottom: 15px;
}
@media screen and (max-width: 767px) {
  .contact-text {
    font-size: 14px;
    text-align: left;
    margin-top: 7px;
    line-height: 1.5;
  }
}

.contact__form {
  padding: 60px 120px;
}
@media screen and (max-width: 767px) {
  .contact__form {
    width: 100%;
    padding: 36px 12px 39px;
  }
}

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

.contact-form-row {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .contact-form-row {
    display: block;
  }
}
.contact-form-row:nth-child(n+2) {
  margin-top: 32px;
}
@media screen and (max-width: 767px) {
  .contact-form-row:nth-child(n+2) {
    margin-top: 26px;
  }
}
.contact-form-row:nth-child(5) {
  margin-top: 26px;
}
.contact-form-row:nth-child(6) {
  margin-top: 21px;
}

.contact-form-label {
  width: 188px;
}
@media screen and (max-width: 767px) {
  .contact-form-label {
    width: 100%;
  }
}
.contact-form-label label {
  font-weight: 700;
}
.contact-form-label label.is-required {
  display: inline-block;
  position: relative;
}
.contact-form-label label.is-required::after {
  content: "必須";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 12px;
  color: #fff;
  background: #ff4646;
  text-align: center;
  border-radius: 2px;
  font-weight: 700;
  padding: 2px 0;
  line-height: 1;
  width: 40px;
  left: calc(100% + 12px);
}
@media screen and (max-width: 767px) {
  .contact-form-label label.is-required::after {
    left: calc(100% + 20px);
  }
}

.contact-form-input {
  width: calc(100% - 188px);
}
@media screen and (max-width: 767px) {
  .contact-form-input {
    width: 100%;
  }
}
.contact-form-input select {
  box-shadow: none;
  border: none;
  background: #fff;
  border: 1px solid #707070;
  padding: 11px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border-radius: 0;
  color: inherit;
  font-family: inherit;
  font-size: 16px;
  width: 178px;
}
@media screen and (max-width: 767px) {
  .contact-form-input select {
    width: 100%;
    font-size: 14px;
  }
}
.contact-form-input .select-container {
  width: 178px;
  position: relative;
}
.contact-form-input .select-container:hover {
  cursor: pointer;
  box-shadow: 0 0 5px rgba(73, 115, 255, 0.5019607843);
  transition: all 0.2s ease 0s;
}
@media screen and (max-width: 767px) {
  .contact-form-input .select-container {
    width: 100%;
    margin-top: 10px;
  }
}
.contact-form-input .select-container::after {
  border-bottom: 1.5px solid #000;
  border-left: 1.5px solid #000;
  content: "";
  position: absolute;
  right: 16px;
  bottom: 19px;
  width: 7px;
  height: 7px;
  transform: rotate(-45deg);
}
.contact-form-input [type=text] {
  box-shadow: none;
  border: none;
  background: #fff;
  border-bottom: 1px solid #707070;
  padding: 2px 12px 5px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border-radius: 0;
  color: inherit;
  font-family: inherit;
  font-size: 16px;
  width: 100%;
}
.contact-form-input [type=text]:hover {
  cursor: pointer;
  border-bottom: 1px solid #4973ff;
  box-shadow: 0px 3px 5px 0px rgba(73, 115, 255, 0.5019607843);
  transition: all 0.2s ease 0s;
}
@media screen and (max-width: 767px) {
  .contact-form-input [type=text] {
    padding: 5px 0 0;
    font-size: 14px;
    line-height: 1.7142857143;
  }
}
.contact-form-input [type=email] {
  box-shadow: none;
  border: none;
  background: #fff;
  border-bottom: 1px solid #707070;
  padding: 2px 12px 5px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border-radius: 0;
  color: inherit;
  font-family: inherit;
  font-size: 16px;
  width: 100%;
}
.contact-form-input [type=email]:hover {
  cursor: pointer;
  border-bottom: 1px solid #4973ff;
  box-shadow: 0px 3px 5px 0px rgba(73, 115, 255, 0.5019607843);
  transition: all 0.2s ease 0s;
}
@media screen and (max-width: 767px) {
  .contact-form-input [type=email] {
    padding: 5px 0 0;
    font-size: 14px;
    line-height: 1.7142857143;
  }
}

@media screen and (max-width: 767px) {
  .contact-form-radio {
    margin-top: 5px;
  }
}
.contact-form-radio [type=radio] {
  display: none;
}
.contact-form-radio span {
  display: inline-block;
  padding-left: 20px;
  position: relative;
  margin-right: 35px;
}
.contact-form-radio span:hover {
  cursor: pointer;
}
.contact-form-radio span::before {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  border: 1px solid #707070;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background: #fff;
  border-radius: 50px;
}
.contact-form-radio span::after {
  content: "";
  position: absolute;
  width: 6px;
  height: 6px;
  top: 50%;
  left: 3px;
  transform: translateY(-50%);
  background: #3b69ff;
  border-radius: 50px;
  display: none;
}
.contact-form-radio [type=radio]:checked + span::after {
  display: block;
}
.contact-form-radio .male-span:hover::before {
  cursor: pointer;
  border-bottom: 1px solid #4973ff;
  box-shadow: 0px 0px 6px rgba(73, 115, 255, 0.5019607843);
  transition: all 0.2s ease 0s;
}
.contact-form-radio .female-span:hover::before {
  cursor: pointer;
  border-bottom: 1px solid #4973ff;
  box-shadow: 0px 0px 6px rgba(73, 115, 255, 0.5019607843);
  transition: all 0.2s ease 0s;
}

.contact-form-row-text {
  display: block;
}
.contact-form-row-text dd {
  margin-top: 3px;
}
@media screen and (max-width: 767px) {
  .contact-form-row-text dd {
    margin-top: 10px;
  }
}
.contact-form-row-text textarea {
  width: 100%;
  height: 200px;
  box-shadow: none;
  border: none;
  background: #fff;
  border: 1px solid #707070;
  padding: 5px 8px 5px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border-radius: 0;
  color: inherit;
  font-family: inherit;
  font-size: 16px;
}
@media screen and (max-width: 767px) {
  .contact-form-row-text textarea {
    height: 160px;
  }
}
.contact-form-row-text textarea:hover {
  cursor: pointer;
  border: #4973ff;
  box-shadow: 0 0 8px rgba(73, 115, 255, 0.5019607843);
  transition: all 0.2s ease 0s;
}

.contact-form-check {
  margin-top: 27px;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .contact-form-check {
    font-size: 18px;
  }
}
@media screen and (max-width: 767px) {
  .contact-form-check {
    margin-top: 21px;
  }
}
.contact-form-check [type=checkbox] {
  display: none;
}
.contact-form-check span {
  display: inline-block;
  padding-left: 40px;
  position: relative;
}
.contact-form-check span:hover {
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .contact-form-check span {
    padding-left: 38px;
  }
}
.contact-form-check span::before {
  content: "";
  width: 19px;
  height: 19px;
  background: #fff;
  border: 1px solid #707070;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .contact-form-check span::before {
    width: 16px;
    height: 16px;
  }
}
.contact-form-check span::after {
  content: "";
  position: absolute;
  border-bottom: 2px solid #3b69ff;
  border-left: 2px solid #3b69ff;
  width: 16px;
  height: 6px;
  transform: rotate(-45deg);
  top: 8px;
  left: 2px;
  display: none;
}
@media screen and (max-width: 767px) {
  .contact-form-check span::after {
    width: 14px;
    top: 7px;
  }
}
.contact-form-check [type=checkbox]:checked + span::after {
  display: block;
}
.contact-form-check:hover span::before {
  cursor: pointer;
  border-bottom: 1px solid #4973ff;
  box-shadow: 0px 0px 6px rgba(73, 115, 255, 0.5019607843);
  transition: all 0.2s ease 0s;
}

.contact-form-button {
  margin-top: 35px;
  letter-spacing: 0.4px;
}
@media screen and (max-width: 767px) {
  .contact-form-button {
    text-align: center;
    margin-top: 29px;
  }
}
.contact-form-button [type=submit] {
  border: none;
}

.contact-btn {
  padding: 16px;
}
@media screen and (min-width: 768px) {
  .contact-btn {
    width: 173px;
  }
}
@media screen and (max-width: 767px) {
  .contact-btn {
    width: 165px;
  }
}

.contact-message {
  text-align: left;
  margin-top: 30px;
  display: none;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .contact-message {
    text-align: center;
  }
}
.contact-message.-error {
  color: #f00;
}

/*===========================================
footer
===========================================*/
.footer {
  background: #3e3e3e;
  padding: 0 40px;
}

.footer-content {
  display: flex;
}
@media screen and (max-width: 767px) {
  .footer-content {
    display: block;
    padding: 48px 0 57px;
  }
}

.footer-left {
  margin: 47px 0 60px 0;
}
@media screen and (max-width: 767px) {
  .footer-left {
    margin: 0;
    text-align: center;
  }
}

.footer-sns-list {
  display: flex;
}
@media screen and (max-width: 767px) {
  .footer-sns-list {
    justify-content: center;
  }
}

.footer-sns-item {
  width: 36px;
  height: 36px;
}
.footer-sns-item:nth-child(n+2) {
  margin-left: 34px;
  margin-top: -3px;
  width: 40px;
  height: 40px;
}
@media screen and (max-width: 767px) {
  .footer-sns-item:nth-child(n+2) {
    margin-left: 50px;
  }
}

.footer-sns-item-link-1 {
  font-size: 36px;
  opacity: 0.6;
  transition: all 0.3s ease 0s;
}
.footer-sns-item-link-1:hover {
  opacity: 0.4;
}

.footer-sns-item-link-2 {
  font-size: 40px;
  opacity: 0.6;
  transition: all 0.3s ease 0s;
}
.footer-sns-item-link-2:hover {
  opacity: 0.4;
}

@media screen and (min-width: 768px) {
  .footer-nav-list {
    margin-top: 47px;
  }
}
@media screen and (max-width: 767px) {
  .footer-nav-list {
    font-size: 14px;
    margin-top: 49px;
  }
}

.footer-nav-item:nth-child(n+2) {
  margin-top: 13px;
}
@media screen and (max-width: 767px) {
  .footer-nav-item:nth-child(n+2) {
    margin-top: 17px;
  }
}

.footer-nav-item-link {
  color: #fff;
  letter-spacing: 0.4px;
  transition: all 0.3s ease 0s;
}
.footer-nav-item-link:hover {
  opacity: 0.7;
}

.footer-right {
  margin: 55px 0 98px auto;
  text-align: right;
}
@media screen and (max-width: 767px) {
  .footer-right {
    margin: 31px 0 0;
    text-align: center;
  }
}

.footer-logo {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 40px;
  line-height: 1.5;
}
.footer-logo:hover {
  opacity: 0.7;
}
@media screen and (max-width: 767px) {
  .footer-logo {
    font-size: 32px;
  }
}
.footer-logo a {
  color: #e3e3e3;
  letter-spacing: 0.009em;
  transition: all 0.3s ease 0s;
}

.footer-copy {
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  color: #ffffff;
  opacity: 0.6;
  letter-spacing: 0.022em;
  margin-top: 2px;
}
@media screen and (max-width: 767px) {
  .footer-copy {
    margin-top: 5px;
  }
}

/*===========================================
to-top
===========================================*/
.to-top {
  position: fixed;
  z-index: 3;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease 0s;
}
@media screen and (max-width: 767px) {
  .to-top {
    right: 16px;
    bottom: 18px;
  }
}
@media screen and (min-width: 768px) {
  .to-top {
    right: 30px;
    bottom: 37px;
  }
}
.to-top.is-show {
  opacity: 1;
  visibility: visible;
}
.to-top a {
  text-decoration: none;
  display: inline-block;
  text-align: center;
  transition: all 1s ease 0s;
}
@media screen and (min-width: 768px) {
  .to-top a {
    width: 70px;
    height: 70px;
    line-height: 70px;
  }
}
@media screen and (max-width: 767px) {
  .to-top a {
    width: 50px;
    height: 50px;
    line-height: 50px;
  }
}
.to-top a img {
  width: 50px;
  height: 50px;
  vertical-align: middle;
}
.to-top a:hover {
  opacity: 0.7;
}