@charset "UTF-8";
body {
  font-size: 16px;
  color: #3E3E3E;
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  line-height: 1.5;
}

img {
  width: 100%;
}

.inner {
  width: 1200px;
  max-width: 93.75%;
  margin: 0 auto;
}

@media screen and (max-width: 767px) {
  .inner {
    max-width: 91.4666%;
  }
}

.section {
  padding-top: 120px;
  background: #F3F3F3;
}

@media screen and (max-width: 767px) {
  .section {
    padding-top: 60px;
  }
}

.section__title {
  font-size: 36px;
  font-weight: 600;
  font-family: "Montserrat", sans-serif;
  text-align: center;
  line-height: 1.2222;
}

@media screen and (max-width: 767px) {
  .section__title {
    font-size: 30px;
  }
}

.cv__button a {
  display: inline-block;
  line-height: 1.4444;
  font-size: 18px;
  color: #FFFFFF;
  font-weight: bold;
  padding: 13px 52px;
  background: #FFAA3B;
  border-radius: 10px;
  -webkit-box-shadow: 0 3px 5px rgba(62, 62, 62, 0.2);
          box-shadow: 0 3px 5px rgba(62, 62, 62, 0.2);
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.cv__button a:hover {
  opacity: .7;
}

@media screen and (max-width: 767px) {
  .cv__button a {
    font-size: 16px;
    padding: 12px 32px;
  }
}

.common__button__white {
  text-align: center;
}

.common__button__white a {
  display: inline-block;
  width: 236px;
  height: 64px;
  line-height: 64px;
  font-size: 20px;
  text-align: center;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  letter-spacing: 0.2em;
  border: 1px solid #707070;
  background: #FFFFFF;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  color: #3E3E3E;
}

.common__button__white a:hover {
  background: #3E3E3E;
  color: #FFFFFF;
}

@media screen and (max-width: 767px) {
  .common__button__white a {
    font-size: 18px;
    width: 268px;
    height: 54px;
    line-height: 54px;
    text-align: center;
  }
}

.common__button__black a {
  display: inline-block;
  line-height: 64px;
  font-size: 20px;
  text-align: center;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  letter-spacing: 0.2em;
  border: 1px solid #fff;
  background: #3E3E3E;
  color: #FFFFFF;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.common__button__black a:hover {
  background: #FFFFFF;
  color: #3E3E3E;
}

/*======================================
ヘッダー
=========================================*/
.header {
  background: #FFFFFF1A;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
}

@media screen and (max-width: 767px) {
  .header {
    height: 68px;
    position: absolute;
    top: 0;
    left: 0;
  }
}

.header.is-click {
  -webkit-transform: translateX(-300px);
          transform: translateX(-300px);
}

.header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.header__title {
  font-size: 23px;
  font-weight: bold;
  font-family: "Montserrat", sans-serif;
  display: none;
}

@media screen and (max-width: 767px) {
  .header__title {
    display: block;
    margin-right: auto;
    line-height: 68px;
  }
}

@media screen and (max-width: 767px) {
  .header__nav {
    display: none;
  }
}

.header__nav__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.header__nav__item:not(:last-child) {
  margin-right: 41px;
}

.header__nav__item a {
  font-family: "Montserrat", sans-serif;
  color: #3E3E3E;
  height: 83px;
  line-height: 83px;
  letter-spacing: -0.025em;
  position: relative;
}

.header__nav__item a:after {
  content: "";
  width: 102px;
  height: 1px;
  background: #3E3E3E;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  bottom: -5px;
  opacity: 0;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.header__nav__item a:hover:after, .header__nav__item a.is-active:after {
  opacity: 1;
}

.hamburger__icon {
  width: 26px;
  height: 20px;
  background: transparent;
  position: absolute;
  top: 24px;
  right: 16px;
  z-index: 103;
  display: none;
}

@media screen and (max-width: 767px) {
  .hamburger__icon {
    display: block;
  }
}

.hamburger__icon.is-click {
  right: 316px;
}

.hamburger__icon.is-click .hamburger__icon__bar:nth-child(1) {
  top: 8px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  background: #FFFFFF;
}

.hamburger__icon.is-click .hamburger__icon__bar:nth-child(2) {
  display: none;
}

.hamburger__icon.is-click .hamburger__icon__bar:nth-child(3) {
  top: 8px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  background: #FFFFFF;
}

.hamburger__icon__bars {
  position: relative;
}

.hamburger__icon__bar {
  width: 26px;
  height: 4px;
  background: #3E3E3E;
  border-radius: 4px;
  position: absolute;
  top: 0;
  left: 0;
}

.hamburger__icon__bar:nth-child(1) {
  top: 0;
  -webkit-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
}

.hamburger__icon__bar:nth-child(2) {
  top: 8px;
  -webkit-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
}

.hamburger__icon__bar:nth-child(3) {
  top: 16px;
  -webkit-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
}

.drawer__content {
  width: 300px;
  height: 100vh;
  background: #FFFFFF;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 102;
  -webkit-transform: translateX(105%);
          transform: translateX(105%);
  overflow: hidden;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.drawer__content.is-click {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.drawer__list {
  margin-top: 161px;
}

.drawer__list__item:not(:first-child) {
  margin-top: 27px;
}

.drawer__list__item a {
  display: block;
  font-size: 18px;
  font-family: "Montserrat", sans-serif;
  color: #3E3E3E;
  text-align: center;
}

.drawer__background {
  display: none;
  position: fixed;
  width: 100%;
  height: 100%;
  background: rgba(62, 62, 62, 0.7);
  top: 0;
  left: 0;
  z-index: 101;
}

.drawer__background.is-click {
  display: block;
}

body.is-click {
  overflow: hidden;
}

.main {
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.main.is-click {
  -webkit-transform: translateX(-300px);
          transform: translateX(-300px);
}

/*======================================
トップ
=========================================*/
.top {
  background: url(../img/mv.png) no-repeat 22% 50%/cover;
  width: 100%;
  height: 648px;
}

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

.top__inner {
  position: relative;
}

.top__content {
  position: absolute;
  top: 228px;
  left: 50%;
}

@media screen and (min-width: 768px) and (max-width: 1199px) {
  .top__content {
    top: 224px;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    width: 100%;
  }
}

@media screen and (max-width: 767px) {
  .top__content {
    top: 224px;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    width: 100%;
  }
}

.top__title {
  font-size: 32px;
  font-weight: bold;
  letter-spacing: 0.0006em;
}

@media screen and (max-width: 767px) {
  .top__title {
    font-size: 24px;
    line-height: 1.6666;
  }
}

.top__text {
  font-size: 18px;
  font-weight: bold;
  letter-spacing: 0.025em;
  line-height: 1.55555;
  margin-top: 29px;
}

@media screen and (max-width: 767px) {
  .top__text {
    font-size: 14px;
    margin-top: 21px;
    letter-spacing: 0;
  }
}

.top__button {
  margin-top: 38px;
}

@media screen and (max-width: 767px) {
  .top__button {
    text-align: center;
    margin-top: 26px;
  }
}

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

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

.news__content {
  padding: 61px 60px 40px;
  background: #FFFFFF;
  -webkit-box-shadow: 0 5px 12px rgba(62, 62, 62, 0.2);
          box-shadow: 0 5px 12px rgba(62, 62, 62, 0.2);
}

@media screen and (max-width: 767px) {
  .news__content {
    padding: 40px 0;
    position: absolute;
    top: -40px;
    left: 0;
  }
}

.news__items {
  margin-top: 60px;
}

@media screen and (max-width: 767px) {
  .news__items {
    margin-top: 40px;
  }
}

.news__item {
  border-top: 1px solid #CECDCD;
}

.news__item:last-child {
  border-bottom: 1px solid #CECDCD;
}

.news__item__link {
  display: block;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 38px 0 38px 0;
  color: #3E3E3E;
  background: #FFFFFF;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

@media screen and (max-width: 767px) {
  .news__item__link {
    display: block;
    padding: 10px 0;
  }
}

.news__item__link:hover {
  background: #4973FF1A;
}

.news__item__head {
  width: 23.9814%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media screen and (max-width: 767px) {
  .news__item__head {
    width: 100%;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    padding-left: 16px;
  }
}

.news__item__date {
  width: 99px;
  font-size: 18px;
  font-family: "Montserrat", sans-serif;
  line-height: 1.4444;
  letter-spacing: 0.025em;
}

@media screen and (max-width: 767px) {
  .news__item__date {
    font-size: 14px;
  }
}

.news__item__info {
  width: 122px;
  font-size: 14px;
  height: 32px;
  line-height: 30px;
  text-align: center;
  border: 2px solid #3B69FF;
  border-radius: 50px;
  padding-left: 5px;
  background: #fff;
  letter-spacing: 0.025em;
}

@media screen and (max-width: 767px) {
  .news__item__info {
    font-size: 12px;
    width: 80px;
    height: 20px;
    line-height: 17px;
  }
}

.news__item__body {
  width: 71.6253%;
  padding: 0 35px 0 41px;
  position: relative;
}

.news__item__body:after {
  content: "";
  width: 14px;
  height: 23px;
  background: transparent url(../img/news-arrow.png) no-repeat center center/contain;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: -34px;
}

@media screen and (max-width: 767px) {
  .news__item__body {
    width: 100%;
    padding: 0 47px 0 11px;
  }
  .news__item__body::after {
    right: 15px;
    top: 13%;
  }
}

.news__item__text {
  font-size: 18px;
  letter-spacing: 0.025em;
}

@media screen and (max-width: 767px) {
  .news__item__text {
    font-size: 14px;
    margin-top: 12px;
  }
}

.news__button {
  margin-top: 40px;
}

@media screen and (max-width: 767px) {
  .news__button {
    margin-top: 38px;
  }
}

/*======================================
Service
=========================================*/
.service {
  padding-bottom: 95px;
}

@media screen and (max-width: 767px) {
  .service {
    height: 871px;
    padding-top: 24px;
  }
}

.service__background {
  background: #3E3E3E;
  width: 100%;
  height: 400px;
  padding-top: 60px;
}

@media screen and (max-width: 767px) {
  .service__background {
    padding-top: 40px;
    height: 480px;
  }
}

.service__inner {
  position: relative;
}

.service__head {
  color: #FFFFFF;
}

.service__items {
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  background: #FFFFFF;
  padding: 60px 45px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  top: 60px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  -webkit-box-shadow: 0 5px 12px rgba(62, 62, 62, 0.2);
          box-shadow: 0 5px 12px rgba(62, 62, 62, 0.2);
}

@media screen and (max-width: 767px) {
  .service__items {
    display: block;
    padding: 40px 16px;
    top: 40px;
  }
}

.service__item {
  width: 26.43678%;
}

.service__item:not(:last-child) {
  margin-right: 90px;
}

@media screen and (max-width: 767px) {
  .service__item:not(:last-child) {
    margin-right: 0;
  }
}

@media screen and (max-width: 767px) {
  .service__item {
    width: 100%;
  }
  .service__item:not(:first-child) {
    margin-top: 52px;
  }
}

.service__item__icon {
  width: 50px;
  height: 50px;
  margin: 17px auto 0;
}

.service__item__title {
  text-align: center;
  font-size: 20px;
  font-weight: 600;
  font-family: "Montserrat", sans-serif;
  line-height: 1.4;
  letter-spacing: 0.2em;
  margin-top: 8px;
}

@media screen and (max-width: 767px) {
  .service__item__title {
    line-height: 1.2;
  }
}

.service__item__text {
  font-size: 14px;
  line-height: 1.7142;
  margin-top: 13px;
}

/*======================================
Results
=========================================*/
@media screen and (max-width: 767px) {
  .results {
    padding-top: 24px;
  }
}

.results__background {
  background: #3E3E3E;
  width: 96.875%;
  height: 754px;
  padding: 60px 0;
  overflow: hidden;
  margin-left: auto;
  position: relative;
}

@media screen and (max-width: 767px) {
  .results__background {
    height: 531px;
    padding: 40px 0;
    margin: 0;
    width: 100%;
  }
}

.results__inner {
  width: 1280px;
  overflow: hidden;
  position: absolute;
  left: 60px;
}

@media screen and (max-width: 767px) {
  .results__inner {
    left: 16px;
  }
}

.results__head {
  color: #FFFFFF;
  text-align: left;
}

@media screen and (max-width: 767px) {
  .results__head {
    margin-left: 114px;
  }
}

.results__items {
  margin-top: 63px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  overflow: hidden;
}

@media screen and (max-width: 767px) {
  .results__items {
    margin-top: 40px;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
  }
}

.results__item {
  width: 31.25%;
  min-width: 274px;
}

.results__item:not(:last-child) {
  margin-right: 40px;
}

@media screen and (max-width: 767px) {
  .results__item:not(:last-child) {
    margin-right: 20px;
  }
}

@media screen and (max-width: 767px) {
  .results__item {
    width: 240px;
  }
}

.results__item__body {
  background: #FFFFFF;
  padding: 12px 16px 20px;
}

@media screen and (max-width: 767px) {
  .results__item__body {
    padding: 10px;
  }
}

.results__title {
  font-size: 20px;
  font-weight: bold;
}

@media screen and (max-width: 767px) {
  .results__title {
    font-size: 14px;
  }
}

.results__text {
  margin-top: 5px;
}

@media screen and (max-width: 767px) {
  .results__text {
    font-size: 12px;
    margin-top: 5px;
  }
}

.results__button {
  margin-top: 100px;
}

@media screen and (max-width: 767px) {
  .results__button {
    margin-top: 67px;
    margin-left: 5px;
  }
}

.results__button a {
  width: 289px;
  height: 64px;
}

@media screen and (max-width: 767px) {
  .results__button a {
    max-width: 316px;
    height: 54px;
    line-height: 54px;
    margin-left: 8px;
  }
}

.swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  display: inline-block;
  border-radius: 50%;
  background: #fff;
  opacity: 1;
  margin-right: 16px;
  position: relative;
}

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

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

.swiper-pagination {
  bottom: 100px;
}

.swiper-horizontal > .swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal, .swiper-pagination-custom, .swiper-pagination-fraction {
  bottom: 104px;
  left: -5px;
  width: auto;
}

@media screen and (max-width: 767px) {
  .swiper-horizontal > .swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal, .swiper-pagination-custom, .swiper-pagination-fraction {
    bottom: 75px;
    left: 77px;
  }
}

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

@media screen and (max-width: 767px) {
  .swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet, .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0px 10px;
  }
}

@media screen and (max-width: 767px) {
  .swiper-horizontal > .swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal, .swiper-pagination-custom, .swiper-pagination-fraction {
    bottom: 76px;
    left: 77px;
  }
}

/*======================================
Price
=========================================*/
@media screen and (max-width: 767px) {
  .price {
    padding: 40px 0 0 0;
  }
}

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

@media screen and (max-width: 767px) {
  .price__content {
    margin-top: 42px;
  }
}

.price__table {
  width: 100%;
  border: 1px solid #707070;
  border-collapse: collapse;
  table-layout: fixed;
}

.price__table tr th,
.price__table tr td {
  border: 1px solid #707070;
  padding: 12px 0;
}

.price__table tr th {
  width: 27.3333%;
  font-size: 24px;
  color: #FFFFFF;
  font-weight: 600;
  font-family: "Montserrat", sans-serif;
  background: #3E3E3E;
}

@media screen and (max-width: 767px) {
  .price__table tr th {
    font-size: 20px;
    width: 28.3333%;
  }
}

.price__table tr td {
  font-size: 24px;
  font-weight: 600;
  font-family: "Montserrat", sans-serif;
  background: #FFFFFF;
  padding-left: 40px;
}

@media screen and (max-width: 767px) {
  .price__table tr td {
    font-size: 20px;
    padding-left: 23px;
  }
}

.price__text {
  font-size: 12px;
  margin-top: 8px;
}

@media screen and (max-width: 767px) {
  .price__text {
    margin-top: 5px;
  }
}

/*======================================
Comments
=========================================*/
.comments {
  position: relative;
}

@media screen and (max-width: 767px) {
  .comments {
    height: 477px;
    padding-top: 56px;
  }
}

.comments__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  z-index: 99;
}

@media screen and (max-width: 767px) {
  .comments__content {
    display: block;
  }
}

.comments__content__left {
  width: 55.5%;
  background: #FFFFFF;
  padding: 116px 59px 124px;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.16);
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.16);
}

@media screen and (max-width: 767px) {
  .comments__content__left {
    width: 100%;
    padding: 40px 20px 32px;
  }
}

.comments__head {
  text-align: left;
}

.comments__content__left__items {
  margin-top: 60px;
}

@media screen and (max-width: 767px) {
  .comments__content__left__items {
    margin-top: 36px;
  }
}

.comments__content__left__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.comments__content__left__item:nth-child(2) {
  margin-top: 60px;
}

@media screen and (max-width: 767px) {
  .comments__content__left__item:nth-child(2) {
    margin-top: 30px;
  }
}

.comments__content__left__item__picture {
  width: 18.31502%;
  margin-right: 34px;
}

@media screen and (max-width: 767px) {
  .comments__content__left__item__picture {
    margin-right: 17px;
    width: 21.31502%;
  }
}

.comments__content__left__item__text {
  width: 75.82418%;
}

@media screen and (max-width: 767px) {
  .comments__content__left__item__text {
    font-size: 14px;
  }
}

.comments__content__right {
  width: 44.5%;
  position: relative;
}

@media screen and (max-width: 767px) {
  .comments__content__right {
    display: none;
  }
}

.comments__content__right__picture {
  width: 100%;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.comments__background {
  width: 980px;
  max-width: 100%;
  height: 576px;
  background: #3E3E3E;
  position: absolute;
  left: 0;
  bottom: -119px;
}

@media screen and (max-width: 767px) {
  .comments__background {
    height: 425px;
    bottom: -64px;
  }
}

/*======================================
Q&A
=========================================*/
.qa__background {
  background: url(../img/qa-bg.png) no-repeat center center/cover;
  padding: 60px 40px 120px;
}

@media screen and (max-width: 767px) {
  .qa__background {
    padding: 46px 0 64px;
  }
}

.qa__inner {
  margin: 0;
  margin-left: auto;
}

@media screen and (max-width: 767px) {
  .qa__inner {
    margin: 0 auto;
  }
}

.qa__content {
  margin-top: 60px;
  width: 612px;
  max-width: 100%;
  margin-left: auto;
}

@media screen and (max-width: 767px) {
  .qa__content {
    margin-top: 40px;
  }
}

.qa__items {
  width: 100%;
}

.qa__item {
  width: 100%;
  background: #FFFFFF;
  border-radius: 4px;
  padding: 13px;
}

@media screen and (max-width: 767px) {
  .qa__item {
    padding: 14px;
  }
}

.qa__item:not(:first-child) {
  margin-top: 37px;
}

@media screen and (max-width: 767px) {
  .qa__item:not(:first-child) {
    margin-top: 25px;
  }
}

.qa__q {
  font-weight: bold;
  padding-left: 45px;
  position: relative;
}

.qa__q:before {
  content: "Q";
  width: 24px;
  height: 24px;
  line-height: 24px;
  text-align: center;
  border-radius: 50%;
  background: #4973FF;
  color: #FFFFFF;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 4px;
}

.qa__icon {
  width: 17px;
  height: 17px;
  background: transparent;
  position: absolute;
  right: 3px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.qa__icon.is-open .qa__icon__bar2 {
  display: none;
}

.qa__icon__bar1 {
  width: 14px;
  height: 3px;
  background: #4973FF;
  position: absolute;
  right: 1px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.qa__icon__bar2 {
  width: 3px;
  height: 14px;
  background: #4973FF;
  position: absolute;
  left: 50%;
  top: 2px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

@media screen and (max-width: 767px) {
  .qa__icon__bar2 {
    left: 52%;
  }
}

.qa__a {
  padding: 15px 20px 13px;
  background: #3B69FF33;
  border-radius: 4px;
  margin-top: 13px;
  display: none;
}

@media screen and (max-width: 767px) {
  .qa__a {
    padding: 7px 9px;
    margin-top: 16px;
  }
}

/*======================================
Access
=========================================*/
.access {
  position: relative;
}

.access__background {
  width: 980px;
  max-width: 100%;
  background: #3E3E3E;
  padding: 120px 0 120px 100px;
  position: absolute;
  top: 0;
  left: 0;
}

@media screen and (min-width: 768px) and (max-width: 1199px) {
  .access__background {
    padding: 12px 0  12px 20px;
  }
}

@media screen and (max-width: 767px) {
  .access__background {
    padding: 40px 17px;
    height: 574px;
  }
}

@media screen and (max-width: 767px) {
  .access__inner {
    position: absolute;
    top: 195px;
    left: 16px;
  }
}

.access__head {
  color: #FFFFFF;
  text-align: left;
}

.access__text {
  color: #FFFFFF;
  margin-top: 60px;
}

@media screen and (min-width: 768px) and (max-width: 1199px) {
  .access__text {
    margin-top: 20px;
  }
}

@media screen and (max-width: 767px) {
  .access__text {
    margin-top: 36px;
    font-size: 14px;
  }
}

.access__button {
  margin-top: 26px;
}

@media screen and (max-width: 767px) {
  .access__button {
    margin-top: 309px;
  }
}

.access__button a {
  width: 314px;
  height: 64px;
  line-height: 64px;
  text-align: center;
  letter-spacing: 0.1em;
}

@media screen and (max-width: 767px) {
  .access__button a {
    width: 339px;
    max-width: 100%;
    height: 54px;
    line-height: 54px;
    text-align: center;
    font-size: 18px;
  }
}

.access__map {
  width: 726px;
  max-width: 100%;
  height: 520px;
  margin-left: auto;
  position: relative;
  z-index: 99;
}

@media screen and (min-width: 768px) and (max-width: 1199px) {
  .access__map {
    top: 122px;
  }
}

.access__iframe__wrapper {
  width: 100%;
  padding-top: 71.6253%;
  position: relative;
}

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

/*======================================
Contact us
=========================================*/
@media screen and (max-width: 767px) {
  .contact {
    margin-top: 454px;
  }
}

.contact__background {
  background: url(../img/contact-bg.png) no-repeat center center/cover;
  padding: 60px 0;
}

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

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

.contact__content__head {
  background: url(../img/contact1.png) no-repeat center center/cover;
  border-radius: 12px 12px 0 0;
  padding: 60px 0;
}

@media screen and (max-width: 767px) {
  .contact__content__head {
    padding: 40px 16px 35px;
  }
}

.contact__head {
  color: #FFFFFF;
}

.contact__text {
  color: #FFFFFF;
  margin-top: 12px;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .contact__text {
    font-size: 14px;
    text-align: left;
  }
}

.contact__content__body {
  padding: 60px 120px;
}

@media screen and (max-width: 767px) {
  .contact__content__body {
    padding: 34px 12px 39px;
  }
}

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

.contact__form__row:not(:first-child) {
  margin-top: 32px;
}

@media screen and (max-width: 767px) {
  .contact__form__row:not(:first-child) {
    margin-top: 25px;
  }
}

@media screen and (max-width: 767px) {
  .contact__form__row {
    display: block;
    margin-top: 0;
  }
  .contact__form__row:nth-child(2) {
    margin-top: 28px;
  }
}

.contact__form__label {
  width: 188px;
  font-weight: bold;
}

.contact__form__label span {
  position: relative;
}

.contact__form__label span:after {
  display: inline-block;
  content: "必須";
  width: 40px;
  height: 16px;
  line-height: 16px;
  text-align: center;
  background: #FF4646;
  color: #FFFFFF;
  border-radius: 2px;
  font-size: 12px;
  font-weight: bold;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: -52px;
}

@media screen and (max-width: 767px) {
  .contact__form__label span:after {
    right: -60px;
  }
}

.contact__form__input {
  width: calc(100% - 188px);
}

@media screen and (max-width: 767px) {
  .contact__form__input {
    width: 100%;
    margin-top: 10px;
  }
}

.contact__form__input select {
  width: 178px;
  padding: 11px 36px 11px 12px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border-radius: 0;
  border: 1px solid #707070;
  font-size: inherit;
  font-family: inherit;
  color: inherit;
  background: transparent url(../img/select-arrow.png) no-repeat right 12px center/11px 11px;
  outline: none;
}

.contact__form__input select:hover, .contact__form__input select:focus {
  -webkit-box-shadow: 0 0 5px rgba(73, 115, 255, 0.5);
          box-shadow: 0 0 5px rgba(73, 115, 255, 0.5);
}

@media screen and (max-width: 767px) {
  .contact__form__input select {
    width: 100%;
    font-size: 14px;
  }
}

.contact__form__input [type="text"] {
  width: 100%;
  height: 32px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border-radius: 0;
  border: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  border-bottom: 1px solid #707070;
  font-size: inherit;
  font-family: inherit;
  color: inherit;
  background: #FFFFFF;
  outline: none;
  padding: 8px 11px 0;
}

.contact__form__input [type="text"]:hover, .contact__form__input [type="text"]:focus {
  border-bottom: 1px solid #4973ff;
  -webkit-box-shadow: 0 5px 4px rgba(5, 7, 12, 0.5);
          box-shadow: 0 5px 4px rgba(5, 7, 12, 0.5);
}

@media screen and (max-width: 767px) {
  .contact__form__input [type="text"] {
    font-size: 14px;
    height: 19px;
    padding: 0;
  }
}

.contact__form__input [type="email"] {
  width: 100%;
  height: 32px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
  border-radius: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
  border-bottom: 1px solid #707070;
  font-size: inherit;
  font-family: inherit;
  color: inherit;
  background: #FFFFFF;
  outline: none;
  padding: 10px 10px 0;
}

.contact__form__input [type="email"]:hover, .contact__form__input [type="email"]:focus {
  border-bottom: 1px solid #4973ff;
  -webkit-box-shadow: 0 5px 4px rgba(73, 115, 255, 0.5);
          box-shadow: 0 5px 4px rgba(73, 115, 255, 0.5);
}

@media screen and (max-width: 767px) {
  .contact__form__input [type="email"] {
    font-size: 14px;
    height: 19px;
    padding: 0;
  }
}

.contact__form__radio {
  font-weight: bold;
  width: 188px;
}

.contact__form__input__radio {
  width: calc(100% - 188px);
}

@media screen and (max-width: 767px) {
  .contact__form__input__radio {
    width: 100%;
    margin-top: 12px;
  }
}

.contact__form__input__radio label {
  padding-left: 20px;
}

.contact__form__input__radio label:first-child {
  margin-right: 36px;
}

.contact__form__input__radio label span {
  display: inline-block;
  position: relative;
}

.contact__form__input__radio label span::before {
  content: "";
  width: 12px;
  height: 12px;
  background: #fff;
  border: 1px solid #707070;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: -20px;
}

.contact__form__input__radio label span:after {
  content: "";
  width: 6px;
  height: 6px;
  background: #3B69FF;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: -16px;
  display: none;
}

.contact__form__input__radio [type="radio"] {
  display: none;
}

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

.contact__form__input__radio [type="radio"]:checked + span:before {
  background: #4973FF33;
}

.contact__form__input__radio [type="radio"]:hover + span:before {
  border: 1px solid #3b69ff;
  -webkit-box-shadow: 0 0 6px rgba(73, 115, 255, 0.2);
          box-shadow: 0 0 6px rgba(73, 115, 255, 0.2);
}

.contact__form__message {
  margin-top: 22px;
}

@media screen and (max-width: 767px) {
  .contact__form__textarea {
    margin-top: 12px;
  }
}

.contact__form__textarea textarea {
  width: 100%;
  height: 200px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: 1px solid #707070;
  border-radius: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
  font-size: inherit;
  font-family: inherit;
  color: inherit;
  background: #FFFFFF;
  outline: none;
}

.contact__form__textarea textarea:hover, .contact__form__textarea textarea:focus {
  border: 1px solid #4973ff;
  -webkit-box-shadow: 0 0 8px rgba(73, 115, 255, 0.5);
          box-shadow: 0 0 8px rgba(73, 115, 255, 0.5);
}

@media screen and (max-width: 767px) {
  .contact__form__textarea textarea {
    height: 160px;
  }
}

.contact__form__checkbox {
  font-weight: bold;
  font-size: 18px;
  margin-top: 33px;
}

@media screen and (max-width: 767px) {
  .contact__form__checkbox {
    font-size: 16px;
    margin-top: 23px;
  }
}

.contact__form__checkbox label span {
  display: inline-block;
  padding-left: 40px;
  position: relative;
}

.contact__form__checkbox label span:before {
  content: "";
  width: 20px;
  height: 20px;
  border: 1px solid #707070;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
}

@media screen and (max-width: 767px) {
  .contact__form__checkbox label span:before {
    width: 17px;
    height: 17px;
  }
}

.contact__form__checkbox label span:after {
  content: "";
  width: 6px;
  height: 13px;
  border: 2px solid #3B69FF;
  border-top: none;
  border-left: none;
  position: absolute;
  top: 4px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  left: 7px;
  display: none;
}

@media screen and (max-width: 767px) {
  .contact__form__checkbox label span:after {
    left: 5px;
  }
}

.contact__form__checkbox [type="checkbox"] {
  display: none;
}

.contact__form__checkbox [type="checkbox"]:checked + span::after {
  display: block;
}

.contact__form__checkbox [type="checkbox"]:checked + span::before {
  background: #4973FF33;
}

.contact__form__checkbox [type="checkbox"]:hover + span:before {
  border: 1px solid #4973ff;
  -webkit-box-shadow: 0 0 5px rgba(73, 115, 255, 0.2);
          box-shadow: 0 0 5px rgba(73, 115, 255, 0.2);
}

.contact__form__submit {
  margin-top: 37px;
}

@media screen and (max-width: 767px) {
  .contact__form__submit {
    margin-top: 31px;
    text-align: center;
  }
}

.contact__form__submit [type="submit"] {
  font-size: 18px;
  font-weight: bold;
  color: #FFFFFF;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 173px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  background: #FFAA3B;
  border-radius: 10px;
  -webkit-box-shadow: 0 3px 5px #00000033;
          box-shadow: 0 3px 5px #00000033;
  border: none;
  outline: none;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.contact__form__submit [type="submit"]:hover {
  opacity: .7;
}

@media screen and (max-width: 767px) {
  .contact__form__submit [type="submit"] {
    font-size: 16px;
    width: 165px;
    height: 48px;
    line-height: 48px;
  }
}

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

.contact__message.-error {
  color: #f00;
}

/*======================================
フッター
=========================================*/
.footer {
  background: #3E3E3E;
  padding: 53px 0;
}

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

.footer__content {
  width: 960px;
  max-width: 100%;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media screen and (max-width: 767px) {
  .footer__content {
    display: block;
    text-align: center;
  }
}

.footer__sns__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (max-width: 767px) {
  .footer__sns__list {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.footer__sns__list__item:first-child {
  margin-right: 32px;
}

@media screen and (max-width: 767px) {
  .footer__sns__list__item:first-child {
    margin-right: 50px;
  }
}

.footer__sns__list__item a {
  display: inline-block;
  color: #FFFFFF;
  opacity: .6;
  font-size: 36px;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.footer__sns__list__item a:hover {
  opacity: .7;
}

.footer__text {
  margin-top: 27px;
}

.footer__text__list__item:not(:first-child) {
  margin-top: 16px;
}

.footer__text__list__item a {
  display: inline-block;
  color: #FFFFFF;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.footer__text__list__item a:hover {
  opacity: .7;
}

@media screen and (max-width: 767px) {
  .footer__text__list__item a {
    font-size: 14px;
  }
}

.footer__site__title {
  font-size: 40px;
  font-weight: bold;
  color: #E3E3E3;
  font-family: "Montserrat", sans-serif;
}

@media screen and (max-width: 767px) {
  .footer__site__title {
    margin-top: 36px;
    font-size: 32px;
  }
}

.footer__copy-right {
  color: #FFFFFF;
  opacity: .6;
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  text-align: right;
  margin-top: 6px;
}

@media screen and (max-width: 767px) {
  .footer__copy-right {
    text-align: center;
  }
}

.to-top {
  width: 50px;
  height: 50px;
  position: fixed;
  right: 40px;
  bottom: 40px;
  z-index: 100;
  opacity: 0;
  visibility: hidden;
}

.to-top.is-show {
  opacity: 1;
  visibility: visible;
}

.to-top a {
  display: inline;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.to-top a:hover {
  opacity: .7;
}

@media screen and (max-width: 767px) {
  .to-top {
    right: 16px;
    bottom: 13px;
  }
}
