@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@500&display=swap");
.inner {
  max-width: 1200px;
  margin: 0 auto;
}

@media (max-width: 1279px) {
  .inner {
    padding: 0 40px;
  }
}

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

@media (min-width: 1200px) {
  .is-sp {
    display: none;
  }
}

@media (max-width: 1279px) {
  .is-sp {
    display: none;
  }
  .is-tab {
    display: none;
  }
}

@media (max-width: 767px) {
  .is-sp {
    display: block;
  }
  .is-tab {
    display: block;
  }
  .is-pc {
    display: none;
  }
}

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

.main {
  background: url(../img/mv.png) no-repeat 24% center/cover;
  height: 648px;
}

@media (max-width: 767px) {
  .main {
    height: 600px;
    background: url(../img/mv.png) no-repeat 18% center/cover;
  }
}

header {
  height: 83px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.1);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

@media (max-width: 767px) {
  header {
    height: 68px;
    background: #fff;
  }
}

header.js-header {
  background: rgba(255, 255, 255, 0.8);
}

.header-logo {
  display: none;
}

@media (max-width: 767px) {
  .header-logo {
    display: block;
  }
}

.header-title {
  font-size: 23px;
  font-weight: bold;
  line-height: 68px;
  font-family: "Montserrat", sans-serif;
  letter-spacing: 0.3px;
}

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

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

.header-nav-item + .header-nav-item {
  margin-left: 40px;
}

.header-nav-item a {
  font-family: "Montserrat", sans-serif;
  display: inline-block;
  height: 83px;
  line-height: 83px;
  -webkit-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
  position: relative;
  letter-spacing: -0.4px;
}

.header-nav-item a::after {
  position: absolute;
  content: "";
  border-bottom: 1px solid #3E3E3E;
  bottom: 25px;
  width: 100%;
  left: 0;
  opacity: 0;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.header-nav-item a:hover:after {
  opacity: 1;
}

.drawer-icon {
  position: fixed;
  width: 26px;
  height: 20px;
  top: 24px;
  right: 16px;
  z-index: 300;
  display: none;
  -webkit-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
}

@media (max-width: 767px) {
  .drawer-icon {
    display: block;
  }
}

.drawer-icon.js-drawer {
  -webkit-transform: translateX(-298px);
          transform: translateX(-298px);
}

.drawer-icon.js-drawer .drawer-icon-bar1 {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  top: 9px;
  background: #fff;
}

.drawer-icon.js-drawer .drawer-icon-bar2 {
  display: none;
}

.drawer-icon.js-drawer .drawer-icon-bar3 {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  top: 9px;
  background: #fff;
}

.drawer-icon-bars {
  width: 26px;
  height: 20px;
  position: relative;
}

.drawer-icon-bar1,
.drawer-icon-bar2,
.drawer-icon-bar3 {
  position: absolute;
  background: #3E3E3E;
  width: 100%;
  height: 4px;
  border-radius: 4px;
  left: 0;
}

.drawer-icon-bar1 {
  top: 0;
}

.drawer-icon-bar2 {
  top: 8px;
}

.drawer-icon-bar3 {
  top: 16px;
}

.drawer-content {
  width: 300px;
  height: 100%;
  background: #fff;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 290;
  -webkit-transform: translateX(105%);
          transform: translateX(105%);
  -webkit-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
}

.drawer-content.js-drawer {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.drawer-content-items {
  margin-top: 145px;
}

.drawer-content-item {
  text-align: center;
}

.drawer-content-item a {
  display: block;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 1;
  padding: 18px 0;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.drawer-content-item a:hover {
  background: rgba(112, 112, 112, 0.4);
}

.drawer-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 280;
  background: rgba(62, 62, 62, 0.7);
  display: none;
  -webkit-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
}

.drawer-background.js-drawer {
  display: block;
}

.top {
  height: 648px;
}

@media (max-width: 767px) {
  .top {
    height: 599px;
    margin-top: 68px;
  }
}

.top-content {
  margin-left: 50%;
  padding: 229px 0 153px 0;
}

@media (max-width: 767px) {
  .top-content {
    margin-left: 0;
    padding: 155px 0 200px 0;
  }
}

.top-title {
  font-size: 32px;
  font-weight: bold;
  color: #3E3E3E;
}

@media (max-width: 1279px) {
  .top-title {
    font-size: 24px;
  }
}

@media (max-width: 767px) {
  .top-title {
    font-size: 24px;
    line-height: 1.666;
  }
}

.top-text {
  font-size: 18px;
  font-weight: bold;
  color: #3E3E3E;
  margin-top: 28px;
  letter-spacing: 0.45px;
}

@media (max-width: 767px) {
  .top-text {
    font-size: 14px;
    margin-top: 22px;
    letter-spacing: 0;
  }
}

.top-button {
  margin-top: 37px;
}

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

.section {
  margin-top: 120px;
}

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

.section-title {
  font-size: 36px;
  font-weight: 600;
  line-height: 1.2;
  text-align: center;
  padding-top: 61px;
  font-family: "Montserrat", sans-serif;
}

@media (max-width: 767px) {
  .section-title {
    padding-top: 41px;
    font-size: 30px;
  }
}

.contact-link {
  font-size: 18px;
  display: inline-block;
  font-weight: bold;
  color: #fff;
  background: #FFAA3B;
  padding: 0 50px;
  letter-spacing: 0.45px;
  height: 50px;
  border-radius: 10px;
  -webkit-box-shadow: 0px 3px 5px rgba(62, 62, 62, 0.2);
          box-shadow: 0px 3px 5px rgba(62, 62, 62, 0.2);
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.contact-link:hover {
  background: #F18900;
}

.contact-link.contact-link1 {
  line-height: 50px;
}

@media (max-width: 767px) {
  .contact-link {
    font-size: 16px;
    padding: 0 30px;
    height: 48px;
    line-height: 48px;
    letter-spacing: 0.1px;
  }
}

.section-link {
  display: inline-block;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 4.5px;
  padding: 21px 76px;
  line-height: 1;
  border: 1px solid #707070;
  font-family: "Montserrat", sans-serif;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.section-link:hover {
  color: #fff;
  background: #3E3E3E;
}

.section-link.black-link {
  color: #fff;
  border: 1px solid #fff;
}

.section-link.black-link:hover {
  color: #3E3E3E;
  background: #fff;
}

@media (max-width: 767px) {
  .section-link {
    font-size: 18px;
    letter-spacing: 3.6px;
    padding: 17px 98px;
  }
}

@media (max-width: 767px) {
  .news {
    margin-top: 0;
  }
}

.news-wrapper {
  background: #fff;
  -webkit-box-shadow: 0px 5px 12px #3E3E3E33;
          box-shadow: 0px 5px 12px #3E3E3E33;
  padding-bottom: 40px;
}

@media (max-width: 767px) {
  .news-wrapper {
    position: relative;
    top: -40px;
  }
}

.news-list {
  margin: 60px 60px 0;
}

@media (max-width: 767px) {
  .news-list {
    margin: 39px 0 0 0;
  }
}

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

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

.news-item-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 38px 0;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  position: relative;
}

.news-item-link::after {
  position: absolute;
  content: "";
  width: 11px;
  height: 22px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 16px;
  background: url(../img/news-arrow.png) no-repeat center center/cover;
}

@media (max-width: 1279px) {
  .news-item-link {
    display: block;
  }
}

@media (max-width: 767px) {
  .news-item-link {
    display: block;
    padding: 12px 16px 10px;
  }
}

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

.news-meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 259px;
}

@media (max-width: 767px) {
  .news-meta {
    width: 181px;
  }
}

.news-date {
  font-size: 18px;
  width: 98px;
  white-space: nowrap;
  line-height: 30px;
  font-family: "Montserrat", sans-serif;
  letter-spacing: 0.4px;
}

@media (max-width: 767px) {
  .news-date {
    font-size: 14px;
    width: 76px;
    line-height: 24px;
  }
}

.news-label {
  font-size: 14px;
  border: 2px solid #3B69FF;
  border-radius: 50px;
  text-align: center;
  width: 120px;
  height: 29px;
  background: #fff;
}

.news-label p {
  display: inline-block;
  padding-top: 3px;
}

@media (max-width: 767px) {
  .news-label {
    font-size: 12px;
    width: 80px;
    height: 21px;
  }
  .news-label p {
    padding-top: 0;
  }
}

.news-title {
  width: calc(100% - 259px);
  padding: 0 83px 0 40px;
  letter-spacing: 0.45px;
  font-size: 18px;
  position: relative;
}

@media (max-width: 1279px) {
  .news-title {
    width: 100%;
    padding: 10px 88px 0 0;
  }
}

@media (max-width: 767px) {
  .news-title {
    width: 100%;
    padding: 6px 39px 0 0;
    font-size: 14px;
    line-height: 1.4825;
    letter-spacing: 0;
  }
  .news-title::after {
    right: 0;
  }
}

.news-button {
  text-align: center;
  margin-top: 40px;
}

.service {
  height: 495px;
  background: linear-gradient(to bottom, #3E3E3E 0, #3E3E3E 400px, #f3f3f3 400px, #f3f3f3 100%);
}

@media (max-width: 767px) {
  .service {
    height: 814px;
    margin-top: 20px;
    background: linear-gradient(to bottom, #3e3e3e 0, #3e3e3e 480px, #f3f3f3 480px, #f3f3f3 100%);
  }
}

.service-title {
  color: #fff;
}

.service-content {
  background: #fff;
  padding: 65px 45px 54px;
  max-width: 960px;
  margin: 60px auto 0;
  -webkit-box-shadow: 0px 5px 12px #3E3E3E33;
          box-shadow: 0px 5px 12px #3E3E3E33;
}

@media (max-width: 767px) {
  .service-content {
    margin-top: 40px;
    padding: 45px 16px 35px;
  }
}

.service-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media (max-width: 767px) {
  .service-list {
    display: block;
  }
}

.service-item {
  width: 230px;
}

@media (max-width: 767px) {
  .service-item {
    width: 100%;
  }
  .service-item + .service-item {
    margin-top: 38px;
  }
}

.service-logo {
  width: 50px;
  height: 55px;
  margin: 0 auto;
  position: relative;
}

.service-logo img {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.service-subtitle {
  text-align: center;
  margin-top: 8px;
  padding-left: 5px;
}

.service-subtitle p {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 4px;
  line-height: 1.4;
  font-family: "Montserrat", sans-serif;
}

@media (max-width: 767px) {
  .service-subtitle {
    margin-top: 11px;
    padding-left: 5px;
  }
  .service-subtitle p {
    line-height: 1.2;
    font-size: 20px;
  }
}

.service-text {
  margin-top: 15px;
  font-size: 14px;
  line-height: 1.85;
}

.results {
  background: #3E3E3E;
  max-width: calc(50vw + 600px);
  margin: 120px 0 0 auto;
  padding: 0 0 60px 60px;
}

@media (max-width: 1279px) {
  .results {
    margin: 120px 0 0 40px;
  }
}

@media (max-width: 767px) {
  .results {
    margin: 56px 0 0 auto;
    padding: 0 0 40px 15px;
  }
}

.results-title {
  color: #fff;
  text-align: left;
}

@media (max-width: 767px) {
  .results-title {
    text-align: center;
    padding-right: 16px;
  }
}

.results-item {
  background: #fff;
}

.results-item-link {
  display: block;
}

.results-body {
  padding: 14px 16px 18px;
}

@media (max-width: 767px) {
  .results-body {
    padding: 8px 13px 10px;
  }
}

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

@media (max-width: 767px) {
  .results-subtitle {
    font-size: 14px;
  }
}

.results-text {
  margin-top: 6px;
}

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

.results-button {
  position: relative;
  margin-top: 37px;
}

@media (max-width: 767px) {
  .results-button {
    text-align: center;
    margin-top: 22px;
    padding-right: 16px;
  }
}

.swiper {
  margin-top: 60px;
}

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

.swiper-horizontal + .swiper-pagination-bullets, .swiper-horizontal .swiper-pagination-bullets.swiper-pagination-horizontal, .swiper-horizontal .swiper-pagination-custom, .swiper-horizontal .swiper-pagination-fraction {
  position: relative;
  bottom: 0;
  margin-top: 40px;
  text-align: left;
}

@media (max-width: 767px) {
  .swiper-horizontal + .swiper-pagination-bullets, .swiper-horizontal .swiper-pagination-bullets.swiper-pagination-horizontal, .swiper-horizontal .swiper-pagination-custom, .swiper-horizontal .swiper-pagination-fraction {
    text-align: center;
    margin-top: 23px;
  }
}

.swiper .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: #fff;
  opacity: 1;
  margin-right: 20px;
  margin: 0 !important;
  margin-right: 16px !important;
  margin-left: 4px !important;
}

.swiper .swiper-pagination-bullet-active {
  position: relative;
}

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

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

.price-title {
  padding-top: 0;
}

.price-content {
  max-width: 960px;
  margin: 60px auto 0;
}

@media (max-width: 767px) {
  .price-content {
    margin-top: 40px;
  }
}

.price-table {
  border-collapse: collapse;
  background: #fff;
  border: 1px solid #707070;
  table-layout: fixed;
}

.price-table th,
.price-table td {
  font-size: 24px;
  font-weight: 600;
  vertical-align: middle;
  padding: 12px 0;
  border: 1px solid #707070;
  font-family: "Montserrat", sans-serif;
}

@media (max-width: 767px) {
  .price-table th,
  .price-table td {
    font-size: 20px;
    padding: 12px;
  }
}

.price-table th {
  width: 262px;
  background: #3E3E3E;
  color: #fff;
  border-bottom: 1px solid #fff;
}

.price-table th:last-child {
  border-bottom: 1px solid #707070;
}

@media (max-width: 767px) {
  .price-table th {
    width: 29%;
  }
}

.price-table td {
  width: 698px;
  padding-left: 40px;
}

@media (max-width: 767px) {
  .price-table td {
    padding-left: 20px;
  }
}

.price-comment {
  font-size: 12px;
  margin-top: 10px;
  line-height: 1;
}

.background-black {
  position: relative;
}

.background-black::before {
  position: absolute;
  content: "";
  background: #3E3E3E;
  bottom: 135px;
  left: 0;
  width: 76.56%;
  display: block;
  top: 147px;
}

@media (max-width: 1279px) {
  .background-black::before {
    top: 85px;
  }
}

@media (max-width: 767px) {
  .background-black::before {
    bottom: 0;
    width: 100%;
    top: 60px;
  }
}

.comments {
  position: relative;
}

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

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

@media (max-width: 767px) {
  .comments-wrapper {
    display: block;
  }
}

.comments-content {
  padding: 120px 60px;
  width: 55%;
  background: #fff;
  -webkit-box-shadow: 0px 0px 10px #00000029;
          box-shadow: 0px 0px 10px #00000029;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

@media (max-width: 1279px) {
  .comments-content {
    padding: 60px 30px;
    width: 70%;
  }
}

@media (max-width: 767px) {
  .comments-content {
    width: 100%;
    padding: 40px 20px;
  }
}

.comments-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 60px;
}

@media (max-width: 767px) {
  .comments-item {
    margin-top: 40px;
  }
}

.comments-person-img {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100px;
          flex: 0 0 100px;
}

.comments-person-img img {
  display: block;
}

@media (max-width: 767px) {
  .comments-person-img {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 60px;
            flex: 0 0 60px;
  }
}

.comments-text {
  margin-left: 32px;
}

.comments-text p {
  line-height: 1.47;
}

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

@media (max-width: 767px) {
  .comments-big-img {
    display: none;
  }
}

.qa {
  position: relative;
  background: url(../img/qa-bg.png) no-repeat center center/cover;
  background-attachment: fixed;
  padding-bottom: 120px;
}

@media (max-width: 767px) {
  .qa {
    padding-bottom: 57px;
  }
}

.qa-wrapper {
  margin-left: 49%;
  margin-top: 62px;
}

@media (max-width: 767px) {
  .qa-wrapper {
    margin-left: 0;
    margin-top: 40px;
  }
}

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

.qa-item + .qa-item {
  margin-top: 31px;
}

@media (max-width: 767px) {
  .qa-item {
    padding: 16px;
  }
  .qa-item + .qa-item {
    margin-top: 24px;
  }
}

.qa-box-question {
  font-weight: bold;
  padding-left: 40px;
  letter-spacing: 0.45px;
  position: relative;
}

.qa-box-question::before {
  position: absolute;
  content: "";
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 24px;
  height: 24px;
  background: #3B69FF;
  border-radius: 50%;
}

.qa-box-question::after {
  position: absolute;
  content: "Q";
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  left: 5px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  color: #fff;
}

.qa-box-icon {
  width: 15px;
  height: 15px;
  position: absolute;
  right: 1px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.qa-box-icon.is-open .qa-box-bar2 {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  left: 6px;
}

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

.qa-box-bar2 {
  position: absolute;
  width: 3px;
  height: 15px;
  top: 0;
  left: 6px;
  background: #3B69FF;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.qa-box-answer {
  margin-top: 16px;
  background: rgba(59, 105, 255, 0.2);
  padding: 12px 15px;
  border-radius: 4px;
  display: none;
}

@media (max-width: 767px) {
  .qa-box-answer {
    font-size: 14px;
    padding: 9px 9px 6px 11px;
  }
}

.access {
  position: relative;
  height: 520px;
}

@media (max-width: 767px) {
  .access {
    margin-top: 40px;
    height: 535px;
  }
}

.access-wrapper {
  position: relative;
  height: 520px;
  padding-left: 60px;
  display: -ms-grid;
  display: grid;
  -ms-grid-rows: 162px 96px 1fr;
      grid-template-rows: 162px 96px 1fr;
  -ms-grid-columns: 414px 1fr;
      grid-template-columns: 414px 1fr;
      grid-template-areas: "areaA areaD" "areaB areaD" "areaC areaD";
}

@media (max-width: 1279px) {
  .access-wrapper {
    -ms-grid-columns: 350px 1fr;
        grid-template-columns: 350px 1fr;
    padding-left: 30px;
  }
}

@media (max-width: 767px) {
  .access-wrapper {
    display: block;
    padding-left: 0;
  }
}

.access-box {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
  grid-area: areaA;
}

.access-title {
  color: #fff;
  text-align: left;
  padding-top: 2px;
}

.access-info {
  margin-top: 56px;
}

@media (max-width: 767px) {
  .access-info {
    margin-top: 35px;
  }
  .access-info p {
    font-size: 14px;
  }
}

.access-info p {
  color: #fff;
}

.access-map {
  -ms-grid-row: 1;
  -ms-grid-row-span: 3;
  -ms-grid-column: 2;
  grid-area: areaD;
}

@media (max-width: 767px) {
  .access-map {
    margin-top: 20px;
  }
}

.access-map-content {
  max-width: 726px;
}

.iframe-wrap {
  position: relative;
  width: 100%;
  height: 520px;
}

@media (max-width: 767px) {
  .iframe-wrap {
    height: 241px;
  }
}

.iframe-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-box-shadow: 0px 0px 10px #3E3E3E33;
          box-shadow: 0px 0px 10px #3E3E3E33;
}

.access-button {
  -ms-grid-row: 2;
  -ms-grid-column: 1;
  grid-area: areaB;
  margin-top: 39px;
}

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

.access-link {
  letter-spacing: 2.5px;
}

@media (max-width: 767px) {
  .access-link {
    width: 339px;
    letter-spacing: 1.8px;
  }
}

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

@media (max-width: 767px) {
  .contact {
    margin-top: 0;
    padding: 39px 0;
  }
}

.contact-wrapper {
  max-width: 960px;
  margin: 0 auto;
}

.contact-title {
  color: #fff;
  padding-top: 62px;
}

@media (max-width: 767px) {
  .contact-title {
    padding-top: 42px;
  }
}

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

@media (max-width: 767px) {
  .contact-bg {
    padding: 0 16px 36px;
  }
}

.contact-message {
  position: relative;
  color: #fff;
  text-align: center;
  margin-top: 12px;
}

@media (max-width: 767px) {
  .contact-message {
    font-size: 14px;
    text-align: left;
    margin-top: 8px;
  }
}

.contact-form {
  background: #fff;
  border-radius: 0 0 12px 12px;
}

.contact-list {
  padding: 60px 120px;
}

@media (max-width: 1279px) {
  .contact-list {
    padding: 50px 100px;
  }
}

@media (max-width: 767px) {
  .contact-list {
    padding: 36px 12px 38px;
  }
}

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

.contact-item + .contact-item {
  margin-top: 31px;
}

.contact-item.contact-item2 {
  margin-top: 20px;
}

.contact-item.contact-item3 {
  display: block;
  margin-top: 24px;
}

@media (max-width: 767px) {
  .contact-item {
    display: block;
  }
  .contact-item + .contact-item {
    margin-top: 28px;
  }
  .contact-item.contact-item3 {
    margin-top: 24px;
  }
}

.contact-item-title {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 128px;
          flex: 0 0 128px;
  font-weight: bold;
  white-space: nowrap;
  margin-right: 60px;
  position: relative;
}

.contact-required {
  display: inline-block;
}

.contact-required::after {
  position: absolute;
  content: "必須";
  background: #FF4646;
  padding: 0 8px;
  border-radius: 2px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  font-size: 12px;
  left: 44px;
  color: #fff;
}

.contact-required.contact-required2::after {
  left: 75px;
}

@media (max-width: 767px) {
  .contact-required::after {
    left: 52px;
  }
  .contact-required.contact-required2::after {
    left: 83px;
  }
}

.contact-item-input {
  width: calc(100% - 128px);
  border-bottom: 1px solid #707070;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.contact-item-input:hover {
  border-color: #4973FF;
}

.contact-item-input.contact-item-input2 {
  width: 178px;
  height: 40px;
}

.contact-item-input.contact-item-input2: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-item-input.contact-radio {
  border-bottom: none;
}

@media (max-width: 767px) {
  .contact-item-input {
    margin-top: 6px;
    width: 100%;
  }
  .contact-item-input.contact-item-input2 {
    width: 100%;
    height: 38px;
    margin-top: 12px;
  }
}

.contact-select-wrap {
  position: relative;
}

.contact-select-wrap::before {
  position: absolute;
  content: "";
  border-right: 2px solid #707070;
  border-bottom: 2px solid #707070;
  width: 6px;
  height: 6px;
  right: 16px;
  top: 13px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 10;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

select {
  -webkit-box-shadow: none;
          box-shadow: none;
  border: 1px solid #707070;
  padding: 10px 12px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  font-family: inherit;
  font-size: 16px;
  height: 40px;
  width: 100%;
}

@media (max-width: 767px) {
  select {
    font-size: 14px;
    padding: 9px 12px;
    height: 38px;
  }
}

select:focus {
  outline: none;
}

[type="text"] {
  -webkit-box-shadow: none;
          box-shadow: none;
  border: none;
  background: #fff;
  padding: 6px 12px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border-radius: 0;
  font-family: inherit;
  font-size: 16px;
  height: 32px;
  width: 100%;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

@media (max-width: 767px) {
  [type="text"] {
    font-size: 14px;
    height: 20px;
    padding: 5px 1px;
  }
}

[type="text"]:hover, [type="text"]:focus {
  border-color: #4973ff;
  outline: none;
  -webkit-box-shadow: 0 10px 8px -8px rgba(73, 115, 255, 0.5);
          box-shadow: 0 10px 8px -8px rgba(73, 115, 255, 0.5);
}

[type="email"] {
  -webkit-box-shadow: none;
          box-shadow: none;
  border: none;
  background: #fff;
  padding: 6px 12px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border-radius: 0;
  font-family: inherit;
  font-size: 16px;
  height: 32px;
  width: 100%;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

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

[type="email"]:hover, [type="email"]:focus {
  border-color: #4973ff;
  outline: none;
  -webkit-box-shadow: 0 10px 8px -8px rgba(73, 115, 255, 0.5);
          box-shadow: 0 10px 8px -8px rgba(73, 115, 255, 0.5);
}

textarea {
  -webkit-box-shadow: none;
          box-shadow: none;
  border: 1px solid #707070;
  background: #fff;
  padding: 6px 12px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border-radius: 0;
  font-family: inherit;
  resize: none;
  font-size: 18px;
  width: 100%;
  height: 200px;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

@media (max-width: 767px) {
  textarea {
    height: 160px;
    padding: 6px 5px;
  }
}

textarea:focus {
  outline: none;
}

textarea:hover {
  -webkit-box-shadow: 0 0 5px rgba(73, 115, 255, 0.5);
          box-shadow: 0 0 5px rgba(73, 115, 255, 0.5);
  border-color: #4973FF;
}

.contact-radio-wrap {
  margin-top: 7px;
}

.contact-radio-label + .contact-radio-label {
  margin-left: 35px;
}

.contact-radio {
  cursor: pointer;
  display: inline-block;
  padding-left: 20px;
  position: relative;
  width: auto;
}

.contact-radio::before {
  position: absolute;
  content: "";
  background: #fff;
  border: 1px solid #707070;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.contact-radio::after {
  position: absolute;
  content: "";
  background: #3B69FF;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  left: 3px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  opacity: 0;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.contact-radio:hover::before {
  -webkit-box-shadow: 0 0 6px rgba(73, 115, 255, 0.5);
          box-shadow: 0 0 6px rgba(73, 115, 255, 0.5);
  border-color: #4973FF;
}

.contact-radio:active::before {
  background-color: rgba(73, 115, 255, 0.2);
  -webkit-box-shadow: none;
          box-shadow: none;
}

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

input[type="radio"]:checked + .contact-radio::after {
  opacity: 1;
}

.contact-item-textarea {
  margin-top: 4px;
}

@media (max-width: 767px) {
  .contact-item-textarea {
    margin-top: 12px;
  }
}

.contact-form-check {
  margin-top: 32px;
}

@media (max-width: 767px) {
  .contact-form-check {
    margin-top: 23px;
  }
}

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

input[type="checkbox"]:checked + .contact-checkbox::after {
  opacity: 1;
}

.contact-checkbox {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-size: 18px;
  cursor: pointer;
  display: inline-block;
  padding-left: 40px;
  position: relative;
  width: auto;
}

.contact-checkbox::before {
  background: #fff;
  border: 1px solid #707070;
  content: "";
  position: absolute;
  display: block;
  height: 17px;
  width: 17px;
  top: 2px;
  left: 0;
}

.contact-checkbox::after {
  position: absolute;
  content: "";
  display: block;
  width: 5px;
  height: 11px;
  border-right: 3px #3B69FF solid;
  border-bottom: 3px #3B69FF solid;
  left: 5px;
  top: 3px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  opacity: 0;
}

@media (max-width: 767px) {
  .contact-checkbox {
    font-size: 16px;
    padding-left: 38px;
  }
  .contact-checkbox::before {
    width: 16px;
    height: 16px;
  }
  .contact-checkbox::after {
    left: 5px;
  }
}

.contact-checkbox: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);
  border-color: #4973FF;
}

.contact-checkbox:active::before {
  background-color: rgba(73, 115, 255, 0.2);
  -webkit-box-shadow: none;
          box-shadow: none;
}

.contact-form-button {
  margin-top: 34px;
}

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

.submit-link {
  padding: 0 50px;
}

.submit-link.-active {
  background: #F18900;
}

.contact-submit-message {
  color: #3E3E3E;
  background: #fff;
  text-align: center;
  padding: 60px 0;
  border-radius: 0 0 12px 12px;
  font-size: 18px;
  font-weight: bold;
  display: none;
}

@media (max-width: 767px) {
  .contact-submit-message {
    font-size: 16px;
    padding: 60px 16px;
  }
}

.contact-submit-message.-error {
  color: #f00;
}

footer {
  background: #3E3E3E;
  padding: 60px 0;
}

@media (max-width: 767px) {
  footer {
    padding-bottom: 55px;
  }
}

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

@media (max-width: 767px) {
  .footer-content {
    display: block;
  }
}

.footer-sns-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (max-width: 767px) {
  .footer-sns-list {
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.footer-sns-item {
  line-height: 1;
}

.footer-sns-item + .footer-sns-item {
  margin-left: 32px;
}

@media (max-width: 767px) {
  .footer-sns-item + .footer-sns-item {
    margin-left: 50px;
  }
}

.footer-sns-item-link {
  font-size: 37px;
  color: #E3E3E3;
}

@media (max-width: 767px) {
  .footer-sns-item-link {
    font-size: 39px;
  }
}

.footer-nav-list {
  margin-top: 35px;
}

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

.footer-nav-item + .footer-nav-item {
  margin-top: 16px;
}

@media (max-width: 767px) {
  .footer-nav-item + .footer-nav-item {
    margin-top: 16px;
  }
}

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

.footer-nav-item-link:hover {
  opacity: 0.7;
}

@media (max-width: 767px) {
  .footer-nav-item-link {
    font-size: 14px;
    letter-spacing: 0.35px;
  }
}

.footer-logo {
  color: #E3E3E3;
}

.footer-title {
  padding: 3px 4px 0 0;
  font-size: 40px;
  letter-spacing: 0.4px;
  font-weight: bold;
  line-height: 1.2;
  font-family: "Montserrat", sans-serif;
}

@media (max-width: 767px) {
  .footer-title {
    font-size: 32px;
    margin-top: 34px;
    text-align: center;
  }
}

.footer-copyright {
  margin-top: 7px;
  letter-spacing: 0.3px;
  font-size: 12px;
  font-weight: 400;
  opacity: 0.6;
  color: #fff;
  text-align: right;
  font-family: "Montserrat", sans-serif;
}

@media (max-width: 767px) {
  .footer-copyright {
    text-align: center;
    margin-top: 11px;
  }
}

#page-top {
  position: fixed;
  right: 30px;
  bottom: 35px;
  z-index: 100;
}

#page-top a {
  display: block;
  width: 70px;
  height: 70px;
  position: relative;
}

#page-top a::after {
  position: absolute;
  content: "";
  background: url(../img/totop.png) no-repeat center center/cover;
  width: 50px;
  height: 50px;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

@media (max-width: 767px) {
  #page-top {
    right: 16px;
    bottom: 13px;
  }
  #page-top a {
    width: 50px;
    height: 50px;
  }
}
