@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&display=swap");
@media screen and (width < 768px) {
  .is-pc {
    display: none;
  }
}
@media screen and (768px <= width) {
  .is-sp {
    display: none;
  }
}
body {
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  font-size: 16px;
  font-weight: 500;
  background-color: #F3F3F3;
  color: #3E3E3E;
}

.inner {
  width: 1200px;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 40px;
}
@media screen and (width < 768px) {
  .inner {
    max-width: calc(100% - 32px);
    margin: 0 auto;
    padding: 0 16px;
  }
}

img {
  width: 100%;
}

/* header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  height: 80px;
  background: rgba(255, 255, 255, 0.1);
}
@media screen and (width < 768px) {
  .header {
    background: #fff;
    height: 68px;
  }
}

@media screen and (width < 768px) {
  .header__nav {
    display: none;
  }
}

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

.header__nav-item {
  padding: 32px 0;
  line-height: 80px;
}
.header__nav-item + .header__nav-item {
  margin-left: 40px;
}
.header__nav-item a {
  display: block;
  letter-spacing: -0.025em;
  line-height: 1.1875;
  font-weight: 500;
  font-family: "Montserrat", sans-serif;
  position: relative;
}
.header__nav-item a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  background: #3E3E3E;
  height: 1px;
  width: 100%;
  -webkit-transform: scale(0);
          transform: scale(0);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.header__nav-item a:hover::after {
  -webkit-transform: scale(1);
          transform: scale(1);
}

/* header-sp */
.header-sp {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  height: 68px;
  background: rgba(255, 255, 255, 0.8);
}

.header-sp__logo {
  line-height: 68px;
}
.header-sp__logo a {
  display: block;
  font-size: 23px;
  font-weight: bold;
  font-family: "Montserrat", sans-serif;
  color: #3E3E3E;
}

.drawer-icon {
  position: fixed;
  top: 24px;
  right: 16px;
  z-index: 300;
}
.drawer-icon.is-active {
  -webkit-transform: translateX(-300px);
          transform: translateX(-300px);
}
.drawer-icon.is-active .drawer-icon__bar1 {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  top: 8px;
  background: #fff;
}
.drawer-icon.is-active .drawer-icon__bar2 {
  display: none;
}
.drawer-icon.is-active .drawer-icon__bar3 {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  top: 8px;
  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;
  border-radius: 4px;
  top: 0;
  left: 0;
}

.drawer-icon__bar1 {
  top: 0;
}

.drawer-icon__bar2 {
  top: 8px;
}

.drawer-icon__bar3 {
  top: 16px;
}

.drawer-nav {
  width: 300px;
  height: 100%;
  position: fixed;
  top: 0;
  right: 0;
  background: #fff;
  z-index: 299;
  -webkit-transform: translateX(105%);
          transform: translateX(105%);
}
.drawer-nav.is-active {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.drawer__menu {
  padding: 160px 10px;
  text-align: center;
}

.drawer__item + .drawer__item {
  margin-top: 28px;
}
.drawer__item a {
  font-size: 18px;
  font-weight: 500;
  font-family: "Montserrat", sans-serif;
  line-height: 1.2222222222;
}

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

/* mv */
.mv {
  background: url(/img/mv.png) no-repeat center center/cover;
  width: 100%;
  height: 648px;
}
@media screen and (width < 768px) {
  .mv {
    background: url(/img/mv.png) 22% center/cover;
    height: 668px;
  }
}

.mv__inner {
  width: 1280px;
  padding: 228px 40px 0;
}
@media screen and (width < 768px) {
  .mv__inner {
    padding: 222px 16px 0;
  }
}

.mv__message {
  max-width: 600px;
  margin-left: auto;
}
@media screen and (width < 768px) {
  .mv__message {
    width: 100%;
    margin: 0 auto;
  }
}

.mv__message-title {
  font-size: 32px;
  font-weight: bold;
  line-height: 1.5;
  letter-spacing: 0.02px;
}
@media screen and (width < 768px) {
  .mv__message-title {
    font-size: 24px;
    line-height: 1.6666666667;
  }
}

.mv__message-text {
  margin-top: 27px;
  font-size: 18px;
  font-weight: bold;
  line-height: 1.5555555556;
  letter-spacing: 0.45px;
}
@media screen and (width < 768px) {
  .mv__message-text {
    margin-top: 20px;
    font-size: 14px;
    line-height: 1.4285714286;
    letter-spacing: normal;
  }
}

.mv__button {
  margin-top: 38px;
}
@media screen and (width < 768px) {
  .mv__button {
    margin-top: 26px;
    text-align: center;
  }
}
.mv__button a {
  display: inline-block;
  width: 282px;
  height: 50px;
  line-height: 50px;
  font-size: 18px;
  font-weight: bold;
  letter-spacing: 0;
  border-radius: 10px;
  text-align: center;
  color: #fff;
  background: #FFAA3B;
  -webkit-box-shadow: 0 3px 5px rgba(62, 62, 62, 0.2);
          box-shadow: 0 3px 5px rgba(62, 62, 62, 0.2);
}
@media screen and (width < 768px) {
  .mv__button a {
    width: 222px;
    font-size: 16px;
  }
}

/* section */
.section__heading {
  font-size: 36px;
  font-weight: 600;
  font-family: "Montserrat", sans-serif;
  line-height: 1.2222222222;
}
@media screen and (width < 768px) {
  .section__heading {
    font-size: 30px;
    line-height: 1.2333333333;
  }
}

.section__cta a {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.section__cta a:hover {
  background: #F18900;
}

.section__button {
  display: inline-block;
  width: 236px;
  height: 64px;
  line-height: 64px;
  background: #fff;
  border: 1px solid #707070;
  text-align: center;
  cursor: pointer;
}
.section__button a {
  font-size: 20px;
  font-weight: 600;
  font-family: "Montserrat", sans-serif;
  letter-spacing: 4px;
  color: #3E3E3E;
}

/* news */
.news {
  padding: 0 40px;
}
@media screen and (width < 768px) {
  .news {
    padding: 0;
  }
}

.news__inner {
  margin: 120px auto 0;
  padding: 0;
}
@media screen and (width < 768px) {
  .news__inner {
    max-width: calc(100% - 32px);
    margin-top: 0;
    height: 574px;
    position: relative;
  }
}

.news__container {
  background: #fff;
  -webkit-box-shadow: 0 5px 12px rgba(62, 62, 62, 0.2);
          box-shadow: 0 5px 12px rgba(62, 62, 62, 0.2);
  padding: 60px 60px 40px;
}
@media screen and (width < 768px) {
  .news__container {
    padding: 40px 0px;
    position: absolute;
    top: -40px;
    left: 0;
  }
}

.news__contents {
  margin-top: 60px;
}
@media screen and (width < 768px) {
  .news__contents {
    margin-top: 40px;
  }
}

.news__heading {
  text-align: center;
}

.news__content-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 38px 90px 38px 0px;
  border-top: 1px solid #CECDCD;
  position: relative;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media screen and (width < 768px) {
  .news__content-link {
    display: block;
    padding: 14px 50px 11px 0px;
  }
}
.news__content-link:last-child {
  border-bottom: 1px solid #CECDCD;
}
.news__content-link::after {
  content: "";
  position: absolute;
  right: 16px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: transparent url(../img/news-arrow.svg) no-repeat center center/contain;
  width: 10px;
  height: 23px;
}
@media screen and (width < 768px) {
  .news__content-link::after {
    right: 15px;
    width: 13px;
  }
}
.news__content-link:hover {
  background: rgba(73, 115, 255, 0.1);
}

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

.news__content-date {
  font-size: 18px;
  font-weight: 400;
  font-family: "Montserrat", sans-serif;
  letter-spacing: 0.45px;
}
@media screen and (width < 768px) {
  .news__content-date {
    font-size: 14px;
    letter-spacing: 0.35px;
    line-height: 1.4285714286;
    margin-left: 16px;
  }
}

.news__content-tag {
  margin-left: 40px;
  width: 120px;
  height: 30px;
  line-height: 1.8;
  border: 2px solid #3B69FF;
  border-radius: 50px;
  text-align: center;
  font-size: 14px;
  letter-spacing: 0.35px;
}
@media screen and (width < 768px) {
  .news__content-tag {
    font-size: 12px;
    line-height: 16px;
    letter-spacing: 0.3px;
    margin-left: 24px;
    width: 80px;
    height: 20px;
  }
}

.news__content-body {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 100%;
          flex: 0 1 100%;
  padding-left: 39px;
}
@media screen and (width < 768px) {
  .news__content-body {
    padding-left: 16px;
    margin-top: 8px;
  }
}
.news__content-body .news__content-title {
  font-size: 18px;
  line-height: 1.6;
  letter-spacing: 0.45px;
}
@media screen and (width < 768px) {
  .news__content-body .news__content-title {
    font-size: 14px;
    line-height: 1.4285714286;
    letter-spacing: 0;
  }
}

.news__footer {
  text-align: center;
  margin-top: 40px;
}
@media screen and (width < 768px) {
  .news__footer {
    margin-top: 39px;
  }
}

.news__button {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.news__button:hover {
  background: #3E3E3E;
  border: 1px solid #fff;
}
.news__button:hover a {
  color: #fff;
}
@media screen and (width < 768px) {
  .news__button {
    max-width: 268px;
    height: 53px;
    line-height: 53px;
    width: 100%;
  }
  .news__button a {
    letter-spacing: 2px;
  }
}

/* service */
.service {
  background: linear-gradient(to bottom, #3E3E3E 0, #3E3E3E 400px, transparent 400px, transparent 100%);
  margin: 120px auto 0;
  padding: 0 40px;
}
@media screen and (width < 768px) {
  .service {
    background: linear-gradient(to bottom, #3E3E3E 0, #3E3E3E 480px, transparent 480px, transparent 100%);
    margin-top: 0;
    padding: 0;
  }
}

.service__inner {
  max-width: 960px;
  width: 100%;
  padding: 62px 0 0;
}
@media screen and (width < 768px) {
  .service__inner {
    padding: 39px 16px 0;
  }
}

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

.service__container {
  background: #fff;
  margin-top: 59px;
  padding: 67px 45px 60px;
  -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 (width < 768px) {
  .service__container {
    margin-top: 40px;
    padding: 47px 16px 35px;
  }
}

.service__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (width < 768px) {
  .service__list {
    display: block;
  }
}

.service__item + .service__item {
  margin-left: 90px;
}
@media screen and (width < 768px) {
  .service__item + .service__item {
    margin-left: 0;
    margin-top: 43px;
  }
}

.service__item-header {
  text-align: center;
}

.service__item-icon img {
  width: 50px;
  height: 50px;
}

.service__item-name {
  margin-top: 12px;
  font-size: 20px;
  font-weight: 600;
  font-family: "Montserrat", sans-serif;
  letter-spacing: 4px;
  line-height: 1.4;
}
@media screen and (width < 768px) {
  .service__item-name {
    margin-top: 14px;
    letter-spacing: 3px;
    line-height: normal;
  }
}

.service__item-text {
  margin-top: 12px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.7142857143;
}
@media screen and (width < 768px) {
  .service__item-text {
    margin-top: 14px;
  }
}

/* results */
.results {
  background: #3E3E3E;
  margin: 120px 0 0 40px;
}
@media screen and (width < 768px) {
  .results {
    margin: 60px 0 0;
  }
}

.results__inner {
  margin: 0;
  width: 100%;
  padding: 60px 0 60px 60px;
}
@media screen and (width < 768px) {
  .results__inner {
    max-width: 100%;
    padding: 40px 0;
  }
}

.results__heading {
  color: #fff;
}
@media screen and (width < 768px) {
  .results__heading {
    text-align: center;
  }
}

.swiper {
  margin-top: 60px;
}
@media screen and (width < 768px) {
  .swiper {
    margin-top: 40px;
  }
}

@media screen and (width < 768px) {
  .swiper-wrapper {
    padding-left: 16px;
  }
}

.swiper__slide-body {
  background: #fff;
  padding: 16px 16px 20px;
}
@media screen and (width < 768px) {
  .swiper__slide-body {
    padding: 10px 16px 10px 12px;
  }
}

.swiper__slide-title {
  font-size: 20px;
  font-weight: bold;
  line-height: 1.2;
}
@media screen and (width < 768px) {
  .swiper__slide-title {
    font-size: 14px;
  }
}

.swiper__slide-text {
  margin-top: 8px;
  font-weight: 500;
  line-height: 1.5;
}
@media screen and (width < 768px) {
  .swiper__slide-text {
    margin-top: 8px;
    font-size: 12px;
    letter-spacing: normal;
  }
}

.swiper-pagination {
  position: static;
  text-align: left;
  margin-top: 38px;
}
@media screen and (width < 768px) {
  .swiper-pagination {
    margin-top: 22px;
    text-align: center;
  }
}

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

@media screen and (width < 768px) {
  .results__footer {
    text-align: center;
  }
}

.results__button {
  margin-top: 36px;
  width: 289px;
  line-height: 64px;
  background: #3E3E3E;
  border: 1px solid #fff;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.results__button:hover {
  background: #fff;
  border: 1px solid #707070;
}
.results__button:hover a {
  color: #3E3E3E;
}
@media screen and (width < 768px) {
  .results__button {
    margin-top: 20px;
    max-width: 316px;
    width: 100%;
    height: 54px;
    line-height: 54px;
  }
}
.results__button a {
  color: #fff;
}
@media screen and (width < 768px) {
  .results__button a {
    font-size: 18px;
    letter-spacing: 3.6px;
  }
}

/* price */
.price {
  margin: 120px auto 0;
  padding: 0 40px;
}
@media screen and (width < 768px) {
  .price {
    margin: 40px auto 0;
    padding: 0;
  }
}

.price__inner {
  max-width: 960px;
  width: 100%;
  padding: 0;
}
@media screen and (width < 768px) {
  .price__inner {
    max-width: calc(100% - 32px);
  }
}

.price__heading {
  text-align: center;
}

.price__table {
  border-collapse: collapse;
  margin-top: 60px;
  width: 100%;
  border: 1px solid #707070;
  table-layout: fixed;
}
@media screen and (width < 768px) {
  .price__table {
    margin-top: 40px;
  }
}
.price__table th,
.price__table td {
  border: 1px solid #707070;
  height: 60px;
  padding: 15px 40px;
  font-size: 24px;
  font-weight: 600;
  font-family: "Montserrat", sans-serif;
}
@media screen and (width < 768px) {
  .price__table th,
  .price__table td {
    height: 55px;
    padding: 15px 20px;
    font-size: 20px;
  }
}
.price__table th {
  color: #fff;
  background: #3E3E3E;
}
.price__table th:nth-child(1) {
  width: 262px;
}
@media screen and (width < 768px) {
  .price__table th:nth-child(1) {
    width: 100px;
  }
}
.price__table td {
  background: #fff;
}

.price__text {
  margin-top: 10px;
  font-size: 12px;
  font-weight: 500;
}
@media screen and (width < 768px) {
  .price__text {
    margin-top: 5px;
  }
}

/* comments */
.comments {
  margin-top: 116px;
  padding: 0 40px;
  position: relative;
}
@media screen and (width < 768px) {
  .comments {
    margin-top: 56px;
    padding: 0;
    width: 100%;
  }
}
.comments::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -120px;
  width: 76.5625%;
  height: 576px;
  background: #3E3E3E;
  z-index: -100;
}
@media screen and (width < 768px) {
  .comments::after {
    bottom: 0;
    top: 60px;
    width: 100%;
    height: 425px;
  }
}

.comments__inner {
  padding: 0;
}
@media screen and (width < 768px) {
  .comments__inner {
    max-width: calc(100% - 32px);
  }
}

.comments__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (width < 768px) {
  .comments__container {
    display: block;
  }
}

.comments__box {
  width: 55.5%;
  padding: 120px 60px;
  background: #fff;
  -webkit-box-shadow: 0 0 10px rgba(62, 62, 62, 0.2);
          box-shadow: 0 0 10px rgba(62, 62, 62, 0.2);
}
@media screen and (width < 768px) {
  .comments__box {
    width: 100%;
    padding: 40px 20px 32px;
  }
}

.comments__item {
  margin-top: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (width < 768px) {
  .comments__item {
    margin-top: 38px;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
  }
}

.comments__item-icon {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100px;
          flex: 0 0 100px;
}
@media screen and (width < 768px) {
  .comments__item-icon {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 60px;
            flex: 0 0 60px;
  }
}

.comments__item-text {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 100%;
          flex: 0 1 100%;
  padding-left: 32px;
  font-weight: 500;
  line-height: 1.5;
}
@media screen and (width < 768px) {
  .comments__item-text {
    font-size: 14px;
    padding-left: 20px;
    line-height: 1.4285714286;
  }
}

.comments__picture {
  width: 44.5%;
}
@media screen and (width < 768px) {
  .comments__picture {
    display: none;
  }
}

/* FAQs */
.qa {
  margin-top: 120px;
  background: url(../img/qa-bg.png) no-repeat top center/cover;
  padding: 0 40px;
}
@media screen and (width < 768px) {
  .qa {
    margin-top: 60px;
    padding: 0;
  }
}

.qa__inner {
  padding: 60px 0 120px;
}
@media screen and (width < 768px) {
  .qa__inner {
    max-width: calc(100% - 32px);
    padding: 40px 0 60px;
  }
}

.qa__heading {
  text-align: center;
}

.pa__items {
  margin-top: 60px;
}
@media screen and (width < 768px) {
  .pa__items {
    margin-top: 40px;
  }
}

.qa__item {
  width: 612px;
  max-width: 100%;
  margin-left: auto;
  cursor: pointer;
}
@media screen and (width < 768px) {
  .qa__item {
    width: 343px;
    margin: 0 auto;
  }
}
.qa__item + .qa__item {
  margin-top: 22px;
}

.qa__box {
  background: #fff;
  border-radius: 4px;
  padding: 16px;
}

.qa__box-q {
  padding-left: 40px;
  margin: auto;
  font-weight: bold;
  letter-spacing: 0.4px;
  position: relative;
}
.qa__box-q::before {
  content: "Q";
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 24px;
  height: 24px;
  line-height: 24px;
  background: #4973FF;
  border-radius: 50%;
  color: #fff;
  font-weight: 600;
  font-family: "Montserrat", sans-serif;
  text-align: center;
}
.qa__box-icon {
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 17px;
  height: 17px;
}
.qa__box-icon.is-open .qa__box-bar2 {
  -webkit-transform: rotate(0);
          transform: rotate(0);
}

.qa__box-bar1 {
  width: 15px;
  height: 3px;
  background: #4973FF;
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.qa__box-bar2 {
  width: 15px;
  height: 3px;
  background: #4973FF;
  position: absolute;
  left: 0;
  top: 42%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.qa__box-a {
  margin-top: 14px;
  padding: 10px 16px;
  width: 580px;
  background: rgba(59, 105, 255, 0.2);
  border-radius: 4px;
  display: none;
}
@media screen and (width < 768px) {
  .qa__box-a {
    width: 311px;
    font-size: 14px;
    padding: 8px 12px 6px;
  }
}

.qa__box-content {
  font-weight: 500;
}
@media screen and (width < 768px) {
  .qa__box-content {
    line-height: 1.5;
  }
}

/* access */
.access {
  position: relative;
  padding: 0 40px;
}
@media screen and (width < 768px) {
  .access {
    padding: 0;
  }
}
.access::after {
  content: "";
  position: absolute;
  left: 0;
  top: -120px;
  width: 76.5625%;
  height: 504px;
  background: #3E3E3E;
  z-index: -100;
}
@media screen and (width < 768px) {
  .access::after {
    position: absolute;
    left: 0;
    top: -40px;
    width: 100%;
    height: 820px;
    background: #3E3E3E;
    z-index: -1000;
  }
}

.access__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 118px auto 0;
  padding: 0;
}
@media screen and (width < 768px) {
  .access__inner {
    max-width: calc(100% - 32px);
    display: block;
    margin: 40px auto 0;
  }
}

.access__info {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 474px;
          flex: 0 0 474px;
  padding-left: 60px;
}
@media screen and (width < 768px) {
  .access__info {
    padding-left: 0;
  }
}

.access__heading {
  color: #fff;
}

.access__address {
  margin-top: 55px;
  line-height: 1.5;
  color: #fff;
}
@media screen and (width < 768px) {
  .access__address {
    margin-top: 35px;
    font-size: 14px;
  }
}

.access__button {
  margin-top: 29px;
  width: 314px;
  background: #3E3E3E;
  border: 1px solid #fff;
  text-align: center;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.access__button:hover {
  background: #fff;
  border: 1px solid #707070;
}
.access__button:hover a {
  color: #3E3E3E;
}
@media screen and (width < 768px) {
  .access__button {
    margin-top: 23px;
    width: 100%;
    height: 54px;
    line-height: 54px;
  }
}
@media screen and (width < 768px) {
  .access__button-pc {
    display: none;
  }
}
@media screen and (768px <= width) {
  .access__button-sp {
    display: none;
  }
}
.access__button a {
  font-size: 20px;
  font-weight: 600;
  font-family: "Montserrat", sans-serif;
  letter-spacing: 2px;
  color: #fff;
}
@media screen and (width < 768px) {
  .access__button a {
    font-size: 18px;
  }
}

.access__map {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 100%;
          flex: 0 1 100%;
  width: 726px;
  max-width: 100%;
}
@media screen and (width < 768px) {
  .access__map {
    margin-top: 20px;
  }
}

.access__iframe {
  width: 100%;
  padding-top: 71.6253443526%;
  -webkit-box-shadow: 0 0 10px rgba(62, 62, 62, 0.2);
          box-shadow: 0 0 10px rgba(62, 62, 62, 0.2);
  position: relative;
}
@media screen and (width < 768px) {
  .access__iframe {
    padding-top: 70.2623906706%;
  }
}
.access__iframe iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

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

.contact__inner {
  max-width: 960px;
  width: 100%;
  padding: 60px 0;
}
@media screen and (width < 768px) {
  .contact__inner {
    max-width: calc(100% - 32px);
    padding: 40px 0;
  }
}

.contact__header {
  background: url(../img/contact1.png) no-repeat center center/cover;
  padding: 60px 0 56px;
  text-align: center;
  color: #fff;
  border-radius: 12px 12px 0 0;
}
@media screen and (width < 768px) {
  .contact__header {
    padding: 40px 16px 35px;
  }
}

.contact__lead {
  margin-top: 10px;
}
@media screen and (width < 768px) {
  .contact__lead {
    font-size: 14px;
    -moz-text-align-last: left;
         text-align-last: left;
    line-height: 1.5;
  }
}

.contact-form {
  background: #fff;
  padding: 60px 120px;
  border-radius: 0 0 12px 12px;
}
@media screen and (width < 768px) {
  .contact-form {
    padding: 35px 12px;
  }
}

.contact-form__row {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.contact-form__row:not(.contact-form__row-message) {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (width < 768px) {
  .contact-form__row:not(.contact-form__row-message) {
    display: block;
  }
}
.contact-form__row + .contact-form__row {
  margin-top: 32px;
}
@media screen and (width < 768px) {
  .contact-form__row + .contact-form__row {
    margin-top: 20px;
  }
}

.contact-form__row-radio {
  margin-top: 28px !important;
}
@media screen and (width < 768px) {
  .contact-form__row-radio {
    margin-top: 20px !important;
  }
}

.contact-form__row-message {
  margin-top: 22px !important;
}

.contact-form__label {
  font-weight: bold;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 188px;
          flex: 0 0 188px;
}
@media screen and (width < 768px) {
  .contact-form__label {
    margin-bottom: 8px;
  }
}

.contact-form__input {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 100%;
          flex: 0 1 100%;
}

.contact-form__input-element {
  position: relative;
}
.contact-form__input-element::before {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  display: inline-block;
  width: 8px;
  height: 2px;
  background: #3E3E3E;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
@media screen and (768px <= width) {
  .contact-form__input-element::before {
    left: 151px;
  }
}
@media screen and (width < 768px) {
  .contact-form__input-element::before {
    right: 19px;
  }
}
.contact-form__input-element::after {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  display: inline-block;
  width: 8px;
  height: 2px;
  background: #3E3E3E;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
@media screen and (768px <= width) {
  .contact-form__input-element::after {
    left: 156px;
  }
}
@media screen and (width < 768px) {
  .contact-form__input-element::after {
    right: 15px;
  }
}

.contact-form__input-select {
  -webkit-box-shadow: none;
          box-shadow: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
  border-radius: 0;
  border: 1px solid #3E3E3E;
  font-size: 16px;
  font-family: inherit;
  font-weight: 500;
  height: 40px;
  line-height: 40px;
  padding: 0 37px 0 11px;
  outline: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.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 (width < 768px) {
  .contact-form__input-select {
    width: 100%;
    height: 38px;
    line-height: 38px;
    padding: 0 0 0 12px;
    letter-spacing: normal;
  }
}

.contact-form__label-reqierd {
  margin-left: 12px;
  padding: 2px 8px;
  background: #FF4646;
  border-radius: 2px;
  color: #fff;
  font-size: 12px;
  font-weight: bold;
  height: 16px;
  line-height: 16px;
}
@media screen and (width < 768px) {
  .contact-form__label-reqierd {
    margin-left: 20px;
  }
}

.contact-form__input-name {
  -webkit-box-shadow: none;
          box-shadow: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
  border-radius: 0;
  border-bottom: 1px solid #3E3E3E;
  font-size: 16px;
  font-family: inherit;
  font-weight: 500;
  height: 32px;
  line-height: 32px;
  padding-left: 12px;
  outline: none;
  opacity: 0.5;
  width: 100%;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.contact-form__input-name:hover, .contact-form__input-name:focus {
  -webkit-box-shadow: 0 5px 5px -2px rgba(73, 115, 255, 0.5);
          box-shadow: 0 5px 5px -2px rgba(73, 115, 255, 0.5);
}
@media screen and (width < 768px) {
  .contact-form__input-name {
    padding-left: 0;
    font-size: 14px;
  }
}

.contact-form__input-email {
  -webkit-box-shadow: none;
          box-shadow: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
  border-radius: 0;
  border-bottom: 1px solid #3E3E3E;
  font-size: 16px;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  height: 32px;
  line-height: 32px;
  padding-left: 12px;
  outline: none;
  opacity: 0.5;
  width: 100%;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.contact-form__input-email:hover, .contact-form__input-email:focus {
  -webkit-box-shadow: 0 5px 5px -2px rgba(73, 115, 255, 0.5);
          box-shadow: 0 5px 5px -2px rgba(73, 115, 255, 0.5);
}
@media screen and (width < 768px) {
  .contact-form__input-email {
    font-size: 14px;
    padding-left: 0;
  }
}

.contact-form__radio + .contact-form__radio {
  margin-left: 34px;
}
.contact-form__radio input[type=radio] {
  margin-left: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.contact-form__radio input[type=radio]:hover {
  -webkit-box-shadow: 0 0 5px rgba(73, 115, 255, 0.5);
          box-shadow: 0 0 5px rgba(73, 115, 255, 0.5);
}
.contact-form__radio input[type=radio]:active {
  background: rgba(73, 115, 255, 0.5);
  -webkit-box-shadow: none;
          box-shadow: none;
}

.contact-form__radio-part {
  font-weight: 500;
}

.contact-form__input-textarea {
  -webkit-box-shadow: none;
          box-shadow: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
  border-radius: 0;
  border: 1px solid #707070;
  font-size: 16px;
  font-family: inherit;
  font-weight: 500;
  height: 40px;
  line-height: 40px;
  padding: 0 40px 0 12px;
  outline: none;
  width: 100%;
  height: 200px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.contact-form__input-textarea:hover, .contact-form__input-textarea: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 (width < 768px) {
  .contact-form__input-textarea {
    height: 160px;
  }
}

.contact-form__check {
  margin-top: 30px;
}
@media screen and (width < 768px) {
  .contact-form__check {
    margin-top: 24px;
  }
}
.contact-form__check label {
  position: relative;
  padding-left: 40px;
}
.contact-form__check label input[type=checkbox] {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}
.contact-form__check label input[type=checkbox]:checked + span {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.contact-form__check label input[type=checkbox]:checked + span::after {
  content: "";
  position: absolute;
  top: 4px;
  left: 3px;
  border-bottom: 2px solid #4973FF;
  border-left: 2px solid #4973FF;
  width: 15px;
  height: 8px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
@media screen and (width < 768px) {
  .contact-form__check label input[type=checkbox]:checked + span::after {
    top: 4px;
    width: 12px;
    height: 7px;
  }
}
.contact-form__check label span {
  font-size: 18px;
  font-weight: bold;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.contact-form__check label span:hover::before {
  -webkit-box-shadow: 0 0 5px rgba(73, 115, 255, 0.5);
          box-shadow: 0 0 5px rgba(73, 115, 255, 0.5);
}
.contact-form__check label span:active::before {
  background: rgba(73, 115, 255, 0.5);
  -webkit-box-shadow: none;
          box-shadow: none;
}
@media screen and (width < 768px) {
  .contact-form__check label span {
    font-size: 16px;
  }
}
.contact-form__check label span::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  border: 1px solid #707070;
  width: 20px;
  height: 20px;
  display: inline-block;
}
@media screen and (width < 768px) {
  .contact-form__check label span::before {
    width: 18px;
    height: 18px;
  }
}

.contact-form__button {
  margin-top: 36px;
}
@media screen and (width < 768px) {
  .contact-form__button {
    margin-top: 28px;
    text-align: center;
  }
}
.contact-form__button input[type=submit] {
  border: none;
  width: 173px;
  height: 50px;
  line-height: 50px;
  font-size: 18px;
  font-weight: bold;
  letter-spacing: 0.45px;
  border-radius: 10px;
  text-align: center;
  color: #fff;
  background: #FFAA3B;
  -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;
  transition: all 0.3s;
}
@media screen and (width < 768px) {
  .contact-form__button input[type=submit] {
    width: 167px;
    letter-spacing: normal;
  }
}
.contact-form__button input[type=submit].is-active {
  background: #FFAA3B;
}
.contact-form__button input[type=submit]:not(.submit):hover {
  background: #F18900;
}
.contact-form__button input[type=submit]:not(.submit):disabled {
  background: #B2B2B2;
}

/* footer */
.footer {
  background: #3E3E3E;
  color: #fff;
  padding: 0 40px;
}
@media screen and (width < 768px) {
  .footer {
    text-align: center;
  }
}

.footer__inner {
  max-width: 960px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 60px 0;
}
@media screen and (width < 768px) {
  .footer__inner {
    display: block;
    padding: 60px 16px 57px;
  }
}

.footer__sns-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (width < 768px) {
  .footer__sns-list {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.footer__sns-item {
  width: 36px;
  height: 30px;
}
.footer__sns-item + .footer__sns-item {
  margin-left: 34px;
}
@media screen and (width < 768px) {
  .footer__sns-item + .footer__sns-item {
    margin-left: 50px;
  }
}

.fa-brands {
  font-size: 36px;
  opacity: 0.6;
}

.footer__nav {
  margin-top: 40px;
}
@media screen and (width < 768px) {
  .footer__nav {
    margin-top: 46px;
  }
}

.footer__nav-item {
  font-weight: 500;
  line-height: 1.625;
  letter-spacing: 0.4px;
}
@media screen and (width < 768px) {
  .footer__nav-item {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.8571428571;
    letter-spacing: 0.35px;
  }
}
.footer__nav-item + .footer__nav-item {
  margin-top: 14px;
}

.footer__logo {
  font-size: 40px;
  font-weight: bold;
  font-family: "Montserrat", sans-serif;
  line-height: 1.2;
  color: #E3E3E3;
}
@media screen and (width < 768px) {
  .footer__logo {
    margin-top: 35px;
    font-size: 32px;
  }
}

.footer__copy {
  margin-top: 10px;
  text-align: right;
  font-size: 12px;
  font-family: "Montserrat", sans-serif;
  letter-spacing: 1.45px;
  line-height: 1.5;
  opacity: 0.6;
}
@media screen and (width < 768px) {
  .footer__copy {
    text-align: center;
  }
}

.pagetop {
  display: none;
  position: fixed;
  width: 50px;
  height: 50px;
  background-color: rgba(255, 255, 255, 0.8);
  bottom: 43px;
  right: 40px;
  z-index: 500;
  cursor: pointer;
}
@media screen and (width < 768px) {
  .pagetop {
    bottom: 13px;
    right: 16px;
  }
}
.pagetop a {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
  text-align: center;
}