@charset "UTF-8";
/*=====================================================================================================
# フォント
===================================================================================================== */
/*=====================================================================================================
# 共通color 
===================================================================================================== */
/*=====================================================================================================
# レイアウト幅
===================================================================================================== */
/*=====================================================================================================
# 階層
===================================================================================================== */
/*=====================================================================================================
# 余白
===================================================================================================== */
/*=====================================================================================================
# ヘッダー高さ
===================================================================================================== */
/*=====================================================================================================
# ブレークポイント
===================================================================================================== */
/*=====================================================================================================
# メディアクエリー
===================================================================================================== */
/*=====================================================================================================
# 非表示
===================================================================================================== */
@media (min-width: 1200px) {
  .hidden-pc {
    display: none;
  }
}

@media (min-width: 768px) and (max-width: 1199px) {
  .hidden-tab {
    display: none;
  }
}

@media (max-width: 767px) {
  .hidden-sp {
    display: none;
  }
}

/*=====================================================================================================
# body
===================================================================================================== */
body {
  font-size: 16px;
  line-height: 1.6;
  background: #f3f3f3;
  color: #3e3e3e;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  overflow-wrap: break-word;
}

/*=====================================================================================================
# インナー
===================================================================================================== */
.inner {
  width: 1200px;
  max-width: 100%;
  margin: 0 auto;
  height: inherit;
  padding-top: 60px;
}
@media (min-width: 768px) and (max-width: 1199px) {
  .inner {
    padding-left: 24px;
    padding-right: 24px;
    width: 90%;
  }
}
@media (max-width: 767px) {
  .inner {
    padding: 0;
    padding-left: 16px;
    padding-right: 16px;
    width: 375px;
    max-width: 100%;
  }
}

/*=====================================================================================================
# section
===================================================================================================== */
.section {
  margin-bottom: 120px;
}

.section-title {
  font-family: "Montserrat", sans-serif;
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 60px;
  text-align: center;
  height: 44px;
  line-height: 44px;
}
@media (max-width: 767px) {
  .section-title {
    font-size: 30px;
    line-height: 37px;
    height: auto;
    padding: 40px 0;
    margin-bottom: 0;
  }
}

/*=====================================================================================================
# ボタン
===================================================================================================== */
.cv__button {
  display: inline-block;
  border-radius: 10px;
  background: #ffaa3b;
  box-shadow: 0px 3px 5px #3e3e3e33;
  color: #fff;
  font-size: 18px;
  line-height: 18px;
  font-weight: 600;
  text-align: center;
  padding: 15px 48px;
  transition: background-color 0.4s color 0.4s;
  cursor: pointer;
  border: none;
  max-width: 100%;
}
@media (min-width: 1200px) {
  .cv__button:hover {
    background: #f18900;
  }
  .cv__button:disabled {
    background: #b2b2b2;
  }
  .cv__button.-active {
    background: #ffaa3b;
    color: #fff;
  }
}

.more__button {
  display: inline-block;
  text-align: center;
  background: #fff;
  border: 1px solid #707070;
  color: #3e3e3e;
  font-weight: 600;
  font-size: 20px;
  line-height: 24px;
  font-family: "Montserrat", sans-serif;
  transition: all 0.3s ease 0s;
  padding: 20px;
  cursor: pointer;
  transition: background-color 0.4s color 0.4s;
  max-width: 100%;
}
@media (min-width: 1200px) {
  .more__button:hover {
    background: #3e3e3e;
    color: #fff;
  }
}

.btn-b {
  background: #3e3e3e;
  border: 1px solid #fff;
  color: #fff;
}
@media (min-width: 1200px) {
  .btn-b:hover {
    background: #fff;
    color: #3e3e3e;
    border: 1px solid #707070;
  }
}

.to-top__button {
  position: fixed;
  width: 50px;
  height: 50px;
  bottom: 40px;
  right: 40px;
  z-index: 100;
  visibility: hidden;
  transition: all 0.3s ease 0s;
  opacity: 0;
}
@media (max-width: 767px) {
  .to-top__button {
    bottom: 16px;
    right: 13px;
  }
}
.to-top__button.is-show {
  opacity: 1;
  visibility: visible;
}

.arrow-right {
  display: block;
  width: 11px;
  height: 22px;
  background: #fcfcfc;
}

/*=====================================================================================================
# header
===================================================================================================== */
.header {
  position: fixed;
  width: 100%;
  z-index: 20;
  height: 83px;
  background: #ffffff1a;
  top: 0;
  left: 0;
}
@media (max-width: 767px) {
  .header {
    height: 68px;
    background: #fff;
  }
}

.header__inner {
  display: flex;
  align-items: center;
  height: inherit;
  padding-top: 16px;
  padding-bottom: 16px;
}
@media (max-width: 767px) {
  .header__inner {
    padding-top: 14px;
    padding-bottom: 14px;
    margin: 0 auto 0 0;
  }
}

.header-sp-logo {
  font-family: "Montserrat", sans-serif;
  font-size: 23px;
  font-weight: 700;
}

.header__nav {
  font-family: "Montserrat", sans-serif;
  display: flex;
  align-items: center;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .header__nav {
    display: none;
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .header__nav {
    display: none;
  }
}

.header-nav-list:not(:first-child) {
  margin-left: 40px;
}

.header-nav__item {
  display: block;
  transition: all 0.3s ease 0s;
  position: relative;
  line-height: 19px;
  padding: 32px 0;
}
@media (min-width: 1200px) {
  .header-nav__item::after {
    content: "";
    position: absolute;
    bottom: 26.5px;
    left: 0px;
    width: 100%;
    height: 1px;
    background: #3e3e3e;
    opacity: 0;
    transition: all 0.3s ease 0s;
  }
  .header-nav__item:hover::after, .header-nav__item.is-active::after {
    opacity: 1;
  }
}

/*=====================================================================================================
# drawer
===================================================================================================== */
.drawer-icon {
  position: fixed;
  top: 24px;
  right: 16px;
  z-index: 40;
  transition: transform 0.3s ease 0s;
  background: url(../img/SP/hamburger@2x.png) no-repeat center center/cover;
  width: 26px;
  height: 20px;
}
.drawer-icon.is-active {
  background: url(../img/SP/batsu@2x.png) no-repeat center center/cover;
  width: 21px;
  height: 21px;
  transform: translateX(-300px);
}

.drawer-content {
  width: 300px;
  height: 100%;
  position: fixed;
  right: 0;
  top: 0;
  background: #fff;
  z-index: 39;
  transform: translateX(105%);
  transition: transform 0.5s ease 0s;
  display: none;
  padding: 158px 0;
  text-align: center;
  font-size: 18px;
  font-weight: 600;
  font-family: "Montserrat", sans-serif;
}
@media (max-width: 767px) {
  .drawer-content.is-active {
    display: block;
    transform: translateX(0);
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .drawer-content.is-active {
    display: block;
    transform: translateX(0);
  }
}

.drawer-content__item {
  margin-bottom: 25px;
}

.drawer-bg {
  background: #3e3e3e;
  opacity: 0.7;
  z-index: 38;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
}
@media (max-width: 767px) {
  .drawer-bg.is-active {
    display: block;
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .drawer-bg.is-active {
    display: block;
  }
}

/*=====================================================================================================
# top
===================================================================================================== */
@media (min-width: 1200px) {
  .top {
    width: 100%;
    height: 648px;
    background: url(../img/PC/mv@2x.png) no-repeat center center/cover;
    position: relative;
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .top {
    margin-bottom: 60px;
    background: url(../img/PC/mv.png) no-repeat center center/cover;
    height: 648px;
    width: 100%;
    position: relative;
    margin-top: 68px;
  }
}
@media (max-width: 767px) {
  .top {
    margin-bottom: 40px;
    background: url(../img/PC/mv.png) no-repeat;
    background-size: cover;
    height: 668px;
    width: 100%;
    margin-bottom: 0;
    position: relative;
  }
}

@media (min-width: 1200px) {
  .top__content {
    position: absolute;
    top: 50%;
    transform: translateY(-35%);
    left: 50%;
    text-align: left;
    width: 600px;
    max-width: 100%;
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .top__content {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 50%;
    padding-right: 24px;
  }
}
@media (max-width: 767px) {
  .top__content {
    width: 375px;
    max-width: 100%;
    padding: 221px 16px 0;
    margin: 0 auto;
    text-align: left;
  }
}

.top-title {
  font-size: 32px;
  font-weight: 600;
  line-height: 1.5;
  height: 80px;
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .top-title {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.6666666667;
    margin-bottom: 20px;
  }
}

.top__lead {
  font-size: 18px;
  line-height: 1.5555555556;
  margin-bottom: 40px;
  font-weight: 700;
  letter-spacing: 0.45px;
  text-align: left;
}
@media (max-width: 767px) {
  .top__lead {
    font-size: 14px;
    line-height: 1.4285714286;
    margin-bottom: 30px;
    letter-spacing: 0;
  }
}

@media (max-width: 767px) {
  .top-button {
    text-align: center;
  }
}

.top-contact__button {
  width: 282px;
  max-width: 100%;
  height: 50px;
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  padding: 16px;
  letter-spacing: 0.45px;
}
@media (max-width: 767px) {
  .top-contact__button {
    width: 222px;
    height: 48px;
    letter-spacing: 0;
    font-size: 16px;
  }
}

/*=====================================================================================================
# News
===================================================================================================== */
@media (max-width: 767px) {
  .news {
    margin: -40px 16px 60px;
    position: relative;
    z-index: 1;
  }
}

.news__inner {
  background: #fff;
  box-shadow: 0px 5px 12px #3e3e3e33;
  padding-bottom: 40px;
}
@media (max-width: 767px) {
  .news__inner {
    padding: 0;
    padding-bottom: 40px;
  }
}

.news-items {
  padding-left: 60px;
  padding-right: 60px;
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .news-items {
    margin-bottom: 40px;
    padding: 0;
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .news-items {
    padding-left: 24px;
    padding-right: 24px;
  }
}

.news-item__link {
  display: block;
  padding: 38px 0;
  border-bottom: 1px solid #cecdcd;
  transition: background-color 0.4s color 0.4s;
  position: relative;
}
.news-item__link:first-child {
  border-top: 1px solid #cecdcd;
}
.news-item__link::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 16px;
  transform: translateY(-50%);
  width: 11px;
  height: 22px;
  background: url(../img/PC/news-arrow@2x.png) no-repeat center center/cover;
}
@media (min-width: 1200px) {
  .news-item__link:hover {
    background: #4973ff1a;
  }
}
@media (max-width: 767px) {
  .news-item__link {
    padding: 13px 16px 11px;
  }
}

@media (min-width: 1200px) {
  .news-item__body {
    display: flex;
    justify-content: space-between;
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .news-item__body {
    display: flex;
    justify-content: space-between;
  }
}

.news-info {
  display: flex;
  width: 260px;
  vertical-align: middle;
}
@media (max-width: 767px) {
  .news-info {
    margin-bottom: 8px;
  }
}

.news__date {
  font-size: 18px;
  font-family: "Montserrat", sans-serif;
  line-height: 22px;
  margin: auto 40px auto 0;
  letter-spacing: 0.45px;
}
@media (max-width: 767px) {
  .news__date {
    font-size: 14px;
    line-height: 1.4285714286;
    margin-right: 24px;
  }
}

.news-label {
  font-size: 14px;
  line-height: 14px;
  height: 30px;
  width: 121px;
  padding: 6px 30px;
  background: #fff;
  border-radius: 50px;
  border: 2px solid #3b69ff;
  text-align: center;
  margin: auto 0;
  letter-spacing: 0.45px;
}
@media (max-width: 767px) {
  .news-label {
    height: 20px;
    width: 81px;
    font-size: 12px;
    line-height: 12px;
    padding: 2px 12px;
  }
}

.news__text {
  width: calc(100% - 382px);
  max-width: 100%;
  margin-left: 40px;
  margin-right: 83px;
  line-height: 1.5555555556;
  letter-spacing: 0.45px;
  font-weight: 500;
  font-size: 18px;
  text-align: left;
  font-family: yugothic;
}
@media (max-width: 767px) {
  .news__text {
    margin: 0;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.4285714286;
    width: 272px;
    max-width: 100%;
    text-align: left;
    letter-spacing: 0;
  }
}

.news-button {
  text-align: center;
}
.news-button .more__button {
  letter-spacing: 4px;
  width: 236px;
  height: 64px;
  padding: 20px;
}
@media (max-width: 767px) {
  .news-button .more__button {
    width: 268px;
    height: 54px;
    font-size: 18px;
    font-weight: 700;
    padding: 16px;
  }
}

/*=====================================================================================================
# Service
===================================================================================================== */
.service {
  margin-bottom: 215px;
}
@media (max-width: 767px) {
  .service {
    margin-bottom: 60px;
    height: 811px;
  }
}

.service__inner {
  width: 100%;
  background: #3e3e3e;
  height: 400px;
  position: relative;
}
@media (max-width: 767px) {
  .service__inner {
    height: 480px;
  }
}

.service-title {
  color: #fff;
}

.service-card {
  position: absolute;
  top: 164px;
  left: 50%;
  transform: translateX(-50%);
  width: 960px;
  max-width: 100%;
  height: auto;
  background: #fff;
  padding: 60px 45px;
  box-shadow: 0px 5px 12px #3E3E3E33;
}
@media (min-width: 768px) and (max-width: 1199px) {
  .service-card {
    width: 77.34375%;
  }
}
@media (max-width: 767px) {
  .service-card {
    top: 117px;
    width: 343px;
    max-width: 100%;
    height: 694px;
    padding: 40px 16px;
  }
}

@media (min-width: 1200px) {
  .service-items {
    display: flex;
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .service-items {
    display: flex;
  }
}

.service-item {
  margin-bottom: 40px;
}
.service-item:nth-child(1) .service-item__img {
  padding: 13px 7px;
}
.service-item:nth-child(2) .service-item__img {
  padding: 17px 7px;
}
.service-item:nth-child(3) .service-item__img {
  padding: 17px 7px;
}
.service-item:last-child {
  margin-bottom: 0;
}
@media (min-width: 1200px) {
  .service-item {
    margin-left: 90px;
    margin-bottom: 0;
  }
  .service-item:first-child {
    margin-left: 0;
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .service-item {
    margin-left: 40px;
    margin-bottom: 0;
  }
  .service-item:first-child {
    margin-left: 0;
  }
}
@media (max-width: 767px) {
  .service-item {
    margin-bottom: 34px;
  }
}

.service-item__img {
  width: 64px;
  height: 64px;
  padding-top: 10px;
  text-align: center;
  margin: 0 auto 9px;
  background: #fff;
}

.service-item-title {
  font-weight: 600;
  font-size: 20px;
  font-family: "Montserrat", sans-serif;
  text-align: center;
  margin-bottom: 15px;
  line-height: 1.3;
  letter-spacing: 4px;
}
@media (max-width: 767px) {
  .service-item-title {
    line-height: 1.2;
  }
}

.service-item__text {
  font-size: 14px;
  text-align: left;
  line-height: 1.7142857143;
}
@media (max-width: 767px) {
  .service-item__text {
    font-weight: 500;
  }
}

/*=====================================================================================================
# Results
===================================================================================================== */
.results {
  margin-bottom: 60px;
}
@media (max-width: 767px) {
  .results {
    margin-bottom: 0;
  }
}

.results__inner {
  width: 96.875%;
  margin-right: 0;
  margin-left: 3.125%;
  background: #3e3e3e;
  padding: 60px 0 60px 60px;
}
@media (max-width: 767px) {
  .results__inner {
    width: 100%;
    margin: 0;
    padding: 0 0 40px 16px;
  }
}

.results-title {
  color: #fff;
  text-align: left;
}
@media (max-width: 767px) {
  .results-title {
    text-align: center;
    margin-right: 16px;
  }
}

.results-card {
  margin-bottom: 36px;
}
@media (max-width: 767px) {
  .results-card {
    margin-bottom: 18px;
  }
}

.results-slide {
  width: 400px;
  height: 366px;
  display: flex;
  justify-content: center;
  flex-shrink: 0;
}
@media (max-width: 767px) {
  .results-slide {
    width: 274px;
    height: 253px;
  }
}

.results-item__img {
  height: 250px;
}
@media (max-width: 767px) {
  .results-item__img {
    height: 171px;
  }
}

.results-item-content {
  padding: 16px;
  background: #fff;
}
@media (max-width: 767px) {
  .results-item-content {
    padding: 12px;
  }
}

.results-item-title {
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 16px;
  line-height: 20px;
}
@media (max-width: 767px) {
  .results-item-title {
    font-size: 14px;
    line-height: 14px;
    margin-bottom: 12px;
  }
}

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

.results-pagination {
  text-align: left;
  z-index: inherit;
  position: static;
  display: block;
  margin-top: 40px;
}
@media (max-width: 767px) {
  .results-pagination {
    text-align: center;
    margin-top: 24px;
  }
}

.swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #fff;
  position: relative;
  margin-right: 20px;
  opacity: 1;
}
.swiper-pagination-bullet::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 1px solid #fff;
  opacity: 0;
  z-index: 10;
}

.swiper-pagination-bullet-active::after {
  opacity: 1;
}

@media (max-width: 767px) {
  .results-button {
    text-align: center;
  }
}

.results-sp-button {
  width: 289px;
  height: 64px;
  letter-spacing: 4px;
}
@media (max-width: 767px) {
  .results-sp-button {
    width: 316px;
    max-width: 100%;
    height: 54px;
    padding: 16px;
    margin-right: 16px;
  }
}

.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin-right: 16px;
}

/*=====================================================================================================
# Price
===================================================================================================== */
.price {
  margin-bottom: 0;
}

.price__inner {
  width: 960px;
  max-width: 100%;
}
@media (max-width: 767px) {
  .price__inner {
    width: 375px;
    padding: 0 16px;
  }
}

.price-table {
  border: 1px solid #707070;
  border-collapse: collapse;
  table-layout: fixed;
  width: 100%;
  font-weight: bold;
  table-layout: fixed;
  font-family: "Montserrat", sans-serif;
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 8px;
}
@media (max-width: 767px) {
  .price-table {
    font-size: 20px;
    margin-bottom: 5px;
  }
}
.price-table tr {
  border-bottom: 1px solid #707070;
  height: 60px;
}
@media (max-width: 767px) {
  .price-table tr {
    height: 55px;
  }
}
.price-table tr:nth-child(2) th {
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
}
.price-table th {
  background-color: #3e3e3e;
  color: #ffffff;
  text-align: center;
  width: 27.2916666667%;
}
@media (max-width: 767px) {
  .price-table th {
    width: 29.3%;
    padding: 10px 10px;
  }
}
.price-table td {
  background-color: #ffffff;
  text-align: left;
  border-bottom: 1px solid #707070;
  padding: 0px 40px;
}
.price-table td:last-child {
  border-bottom: none;
}
@media (max-width: 767px) {
  .price-table td {
    padding: 10px 18px;
  }
}
.price-table th,
.price-table td {
  height: 50px;
  vertical-align: middle;
}

.attention {
  font-size: 12px;
  font-family: "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "Droid Sans", sans-serif;
  font-weight: 500;
}

/*=====================================================================================================
# Comments
===================================================================================================== */
.comments {
  position: relative;
  width: 100%;
  height: 724px;
  margin-top: 116px;
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .comments {
    margin-top: 56px;
    height: auto;
  }
}

.comments__inner {
  padding-top: 0;
}
@media (max-width: 767px) {
  .comments__inner {
    margin-bottom: 60px;
  }
}

.comments__body {
  display: flex;
  width: 1200px;
  max-width: 100%;
  position: relative;
}

.comments-title {
  text-align: left;
  margin-bottom: 58px;
}
@media (max-width: 767px) {
  .comments-title {
    padding-top: 0;
    margin: 0;
  }
}

.comments-card {
  top: 0;
  left: 0;
  z-index: 2;
  background: #fff;
  width: 666px;
  padding: 120px 60px 120px;
  box-shadow: 0px 0px 10px #00000029;
}
@media (max-width: 767px) {
  .comments-card {
    padding: 40px 20px;
  }
}

.comments-card-item {
  display: flex;
}
.comments-card-item:first-child {
  margin-bottom: 60px;
}
@media (max-width: 767px) {
  .comments-card-item:first-child {
    margin-bottom: 30px;
  }
}

.comments-item__img {
  width: 100px;
  height: 100px;
}
@media (max-width: 767px) {
  .comments-item__img {
    width: 60px;
    height: 60px;
  }
}

.comments-item__text {
  line-height: 1.5;
  margin-left: 32px;
  font-weight: 500;
  flex: 1 0 66.966966967%;
}
@media (max-width: 767px) {
  .comments-item__text {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.4285714286;
    margin-left: 20px;
  }
}

@media (min-width: 1200px) {
  .comments-img {
    background: url(../img/PC/comments3@2x.png) no-repeat center center/cover;
    margin: 80px 0;
    width: 534px;
    z-index: 2;
  }
}

.comments-bg {
  position: absolute;
  top: 148px;
  left: 0;
  background: #3e3e3e;
  width: 76.5625%;
  height: 576px;
  z-index: 1;
}
@media (max-width: 767px) {
  .comments-bg {
    top: 60px;
    width: 100%;
    height: 427px;
  }
}

/*=====================================================================================================
# Q & A
===================================================================================================== */
.faqs {
  background: url(../img/PC/qa-bg.png) no-repeat center center/cover;
  padding-bottom: 60px;
  margin-bottom: 0;
}
@media (min-width: 1200px) {
  .faqs {
    padding-bottom: 116px;
  }
}

.faqs-title {
  color: #3e3e3e;
}

.faqs__container {
  display: flex;
}

.faqs__hollow {
  flex-grow: 1;
}

.faqs-items {
  width: 612px;
}

.faqs-item {
  border-radius: 4px;
  background: #fff;
  padding: 16px 16px 16px 16px;
  margin-bottom: 32px;
}
.faqs-item:last-child {
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .faqs-item {
    margin-bottom: 22px;
  }
}

.faqs-q {
  position: relative;
}

.faqs-item-title {
  font-weight: 700;
  padding-left: 40px;
  letter-spacing: 0.4px;
  position: relative;
}
.faqs-item-title::before {
  content: "Q";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  background: #3b69ff;
  color: #fff;
  font-weight: 600;
  text-align: center;
  border-radius: 50%;
}

.faqs__icon {
  width: 15px;
  height: 15px;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
}
.faqs__icon.is-open .faqs__bar2 {
  transform: rotate(90deg);
}

.faqs__bar1 {
  width: 15px;
  height: 3px;
  background: #3b69ff;
  border-radius: 20px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
}

.faqs__bar2 {
  width: 3px;
  height: 15px;
  background: #3b69ff;
  border-radius: 20px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
  transition: all 0.3s ease 0s;
}

.faqs-a {
  display: none;
  margin-top: 14px;
}
@media (max-width: 767px) {
  .faqs-a {
    margin-top: 16px;
  }
}
.faqs-a.is-open {
  display: block;
}

.faqs-item__content {
  border-radius: 4px;
  background: #3b69ff33;
  padding: 8px 16px;
}
@media (max-width: 767px) {
  .faqs-item__content {
    font-size: 14px;
    line-height: 1.4285714286;
    padding: 8px 13px;
  }
}

/*=====================================================================================================
# Access
===================================================================================================== */
@media (min-width: 1200px) {
  .access {
    height: 640px;
    position: relative;
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .access {
    background: #3e3e3e;
    padding-bottom: 60px;
    margin-bottom: 0;
  }
}
@media (max-width: 767px) {
  .access {
    background: #3e3e3e;
    padding-bottom: 60px;
    margin-bottom: 0;
  }
}

@media (min-width: 1200px) {
  .access__inner {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    padding-top: 120px;
    z-index: 2;
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .access__inner {
    width: 100%;
    padding: 0 24px;
    padding-top: 40px;
  }
}
@media (max-width: 767px) {
  .access__inner {
    width: 375px;
    padding: 0 16px;
  }
}

@media (min-width: 1200px) {
  .access__container {
    display: flex;
    justify-content: space-between;
  }
}

@media (min-width: 1200px) {
  .access__content {
    padding-left: 60px;
  }
}

.access-title {
  color: #fff;
  text-align: left;
  margin-bottom: 52px;
}
@media (max-width: 767px) {
  .access-title {
    margin: 0;
    padding-bottom: 33px;
  }
}

.access-text {
  color: #fff;
  margin-bottom: 28px;
  font-weight: 500;
  font-family: "Montserrat", sans-serif;
}
@media (max-width: 767px) {
  .access-text {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 16px;
  }
}

.access-bg {
  position: absolute;
  top: 0;
  left: 0;
  background: #3e3e3e;
  width: 76.5625%;
  height: 504px;
  z-index: 1;
}

.iframe__wrap {
  width: 726px;
  height: 520px;
  position: relative;
}
@media (min-width: 768px) and (max-width: 1199px) {
  .iframe__wrap {
    width: 100%;
    height: 0;
    overflow: hidden;
    padding-top: 56.25%;
    margin-bottom: 24px;
  }
}
@media (max-width: 767px) {
  .iframe__wrap {
    width: 343px;
    max-width: 100%;
    height: 241px;
    margin-bottom: 24px;
  }
}

.gmap {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
}

@media (max-width: 767px) {
  .access__button {
    text-align: center;
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .access__button {
    text-align: center;
  }
}

.access-more__button {
  width: 314px;
  height: 64px;
  letter-spacing: 2px;
}
@media (max-width: 767px) {
  .access-more__button {
    font-size: 18px;
    padding: 16px;
    width: 339px;
    height: 54px;
  }
}

/*=====================================================================================================
# Contact
===================================================================================================== */
.contact {
  background: url(../img/PC/contact-bg@2x.png) no-repeat center center/cover;
  padding-top: 0;
  margin-bottom: 0;
}

.contact__inner {
  padding-top: 60px;
  padding-bottom: 60px;
  width: 960px;
  max-width: 100%;
}
@media (max-width: 767px) {
  .contact__inner {
    width: 375px;
    padding: 40px 16px;
  }
}

.contact-title__bg {
  padding: 60px 0px 55px;
  background: url(../img/PC/contact1@2x.png) no-repeat center center/cover;
  border-radius: 12px 12px 0 0;
}
@media (max-width: 767px) {
  .contact-title__bg {
    background: url(../img/SP/contact1@2x.png) center center/cover no-repeat;
    padding: 36px 16px;
    box-shadow: 0px 3px 6px #00000029;
  }
}

.contact-section-title {
  color: #fff;
  padding: 0;
  margin-bottom: 16px;
}
@media (max-width: 767px) {
  .contact-section-title {
    margin-bottom: 10px;
  }
}

.contact-sub-title {
  font-weight: 500;
  text-align: center;
  color: #fff;
}
@media (max-width: 767px) {
  .contact-sub-title {
    font-size: 14px;
    text-align: left;
  }
}

.contact__form {
  background: #fff;
  padding: 60px 120px;
  border-radius: 0 0 12px 12px;
}
@media (max-width: 767px) {
  .contact__form {
    padding: 40px 12px;
  }
}

.contact-items {
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .contact-items {
    margin-bottom: 32px;
  }
}

.contact__item {
  margin-bottom: 32px;
}
@media (min-width: 1200px) {
  .contact__item {
    display: flex;
  }
  .contact__item:last-child {
    display: block;
  }
}
@media (max-width: 767px) {
  .contact__item {
    margin-bottom: 30px;
  }
}
.contact__item:first-child .contact-item-title {
  line-height: 40px;
  height: 40px;
}
@media (max-width: 767px) {
  .contact__item:first-child .contact-item-title {
    line-height: 16px;
    height: 16px;
    margin-bottom: 16px;
  }
}
.contact__item:nth-child(5) .contact-item-title {
  line-height: 16px;
  height: 16px;
}
.contact__item:nth-child(5) .form-input {
  height: 16px;
  line-height: 16px;
}
.contact__item:nth-child(6) .contact-item-title {
  line-height: 16px;
  height: 16px;
  margin-bottom: 8px;
}

.contact-item-title {
  font-weight: 700;
  flex: 0 1 100%;
  line-height: 32px;
  height: 32px;
}
@media (max-width: 767px) {
  .contact-item-title {
    line-height: 16px;
    height: 16px;
    margin-bottom: 16px;
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .contact-item-title {
    margin-bottom: 16px;
  }
}

.contact-text__inline {
  position: absolute;
  display: inline-block;
  background: #ff4646;
  color: #fff;
  border-radius: 2px;
  width: 40px;
  height: 16px;
  line-height: 12px;
  font-size: 12px;
  font-weight: 700;
  margin-left: 12px;
  text-align: center;
  padding: 2px 8px;
  vertical-align: middle;
  margin: 8px 0 8px 12px;
}
@media (max-width: 767px) {
  .contact-text__inline {
    margin: 0;
    margin-left: 20px;
  }
}

@media (min-width: 1200px) {
  .form-input {
    flex: 0 0 532px;
  }
}
@media (max-width: 767px) {
  .form-input {
    font-size: 14px;
  }
}
.form-input :focus-visible {
  outline: none;
}
.form-input input[type=text],
.form-input input[type=email] {
  width: 100%;
  height: 32px;
  border: none;
  border-bottom: 1px solid #707070;
  color: #707070;
  padding: 8px 16px;
  cursor: pointer;
  font-size: 16px;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  outline: none;
}
@media (min-width: 1200px) {
  .form-input input[type=text]:hover,
.form-input input[type=email]:hover {
    border-bottom: 1px solid #3b69ff;
    box-shadow: 0px 10px 8px -5px #4973ff80;
  }
  .form-input input[type=text]:focus,
.form-input input[type=email]:focus {
    background: transparent;
  }
}
@media (max-width: 767px) {
  .form-input input[type=text],
.form-input input[type=email] {
    padding: 0;
    height: 20px;
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .form-input input[type=text],
.form-input input[type=email] {
    padding-left: 0;
  }
}

.form-select {
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  height: 40px;
  width: 178px;
  border: 1px solid #707070;
  padding: 11px;
  color: #707070;
  font-size: 16px;
  cursor: pointer;
}
.form-select::-ms-expand {
  display: none;
}
@media (max-width: 767px) {
  .form-select {
    width: 100%;
    height: 38px;
    font-size: 14px;
  }
}

.select-input {
  position: relative;
}

.select-icon {
  position: absolute;
  display: inline-block;
  background: url(../img/PC/news-arrow@2x.png) no-repeat center center/contain;
  width: 16px;
  height: 16px;
  top: 50%;
  left: 150px;
  transform: translateY(-50%) rotate(90deg);
  transition: all 0.3s ease 0s;
  pointer-events: none;
}
@media (max-width: 767px) {
  .select-icon {
    right: 12px;
    left: auto;
  }
}
.select-icon.is-open {
  transform: rotate(180deg);
}

.contact-radio:first-child {
  margin-right: 40px;
}

.contact-radio-input {
  margin-left: 0;
}

.form-textarea {
  width: 720px;
  max-width: 100%;
  height: 200px;
  border: 1px solid #707070;
  resize: none;
  padding: 10px 16px;
  line-height: 1.625;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  outline: none;
  background-color: transparent;
  background-image: none;
  border-radius: 0;
  color: inherit;
  font-family: inherit;
  font-size: 14px;
  vertical-align: bottom;
}
@media (min-width: 1200px) {
  .form-textarea:hover {
    border: 1px solid #3b69ff;
    box-shadow: 0px 0px 8px #4973ff80;
  }
}
@media (max-width: 767px) {
  .form-textarea {
    height: 160px;
    width: 100%;
  }
}

.contact__check {
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .contact__check {
    margin-bottom: 35px;
  }
}

.contact-check__link {
  font-weight: 700;
  font-size: 18px;
}

@media (max-width: 767px) {
  .contact__submit {
    text-align: center;
  }
}

.contact__button {
  box-shadow: 0px 3px 5px #00000033;
  width: 173px;
  height: 50px;
}
@media (max-width: 767px) {
  .contact__button {
    width: 165px;
    height: 48px;
    padding: 16px 50px;
    font-size: 16px;
  }
}

.contact__privacy {
  width: 20px;
  height: 20px;
  display: inline-block;
  vertical-align: middle;
}

.form-checkbox {
  top: 0;
  left: 0;
  display: none;
}
.form-checkbox:checked + span::after {
  opacity: 1;
}

.contact-privacy-part {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: solid 1px #707070;
  background: #ffffff;
  transition: all 0.3s ease 0s;
  cursor: pointer;
  position: relative;
}
.contact-privacy-part::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.contact-privacy-part::after {
  border: 2px solid #3b69ff;
  background-color: transparent;
  top: -2px;
  left: 5px;
  width: 8px;
  height: 16px;
  transform: rotate(45deg);
  border-top: none;
  border-left: none;
  transition: all 0.3s ease 0s;
  opacity: 0;
}

.contact-check__link {
  margin-left: 15px;
}

.contact__message {
  text-align: center;
  margin-top: 60px;
  display: none;
}
.contact__message.-error {
  color: #f00;
}

/*=====================================================================================================
# footer
===================================================================================================== */
.footer {
  background: #3e3e3e;
}
.footer a:hover {
  opacity: 0.6;
  transition: all 0.3s ease 0s;
}

.footer__inner {
  width: 960px;
  max-width: 100%;
  padding: 60px 0;
  margin: 0 auto;
}

@media (min-width: 1200px) {
  .footer__container {
    display: flex;
    justify-content: space-between;
    width: 960px;
    max-width: 100%;
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .footer__container {
    display: flex;
    justify-content: space-between;
    width: 1008px;
    padding: 0 24px;
    max-width: 100%;
  }
}

.footer__sns {
  display: flex;
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .footer__sns {
    margin-bottom: 32px;
    text-align: center;
    justify-content: center;
  }
}

.footer__icon {
  font-size: 2.2em;
  cursor: pointer;
  color: #b3b3b2;
}
.footer__icon:last-child {
  margin-left: 32px;
}
@media (max-width: 767px) {
  .footer__icon:last-child {
    margin-left: 50px;
  }
}
@media (min-width: 1200px) {
  .footer__icon:hover {
    opacity: 0.6;
  }
}

.footer-link__text {
  color: #fff;
  margin-bottom: 24px;
}
@media (max-width: 767px) {
  .footer-link__text {
    margin-bottom: 18px;
    font-size: 14px;
    font-weight: 500;
    text-align: center;
  }
}
.footer-link__text:last-child {
  margin-bottom: 0;
}

.footer__right {
  text-align: right;
  font-family: "Montserrat", sans-serif;
}
@media (max-width: 767px) {
  .footer__right {
    margin-top: 32px;
  }
}

.footer__logo {
  font-size: 40px;
  font-weight: 700;
  color: #e3e3e3;
  margin-bottom: 10px;
}
@media (max-width: 767px) {
  .footer__logo {
    font-size: 32px;
    margin-bottom: 2px;
    text-align: center;
  }
}

.footer__copyright {
  font-size: 12px;
  opacity: 0.6;
  color: #fff;
}
@media (max-width: 767px) {
  .footer__copyright {
    text-align: center;
  }
}