@charset "UTF-8";
/*  color  */
/* common  共通のスタイル  */
@media screen and (max-width: 767px) {
  .is-pc {
    display: none;
  }
}

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

body {
  font-family: "Montserrat", sans-serif;
  color: #3E3E3E;
  font-size: 16px;
  line-height: 1.5;
  box-sizing: content-box;
  background: #F3F3F3;
}

.inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  box-sizing: content-box;
}

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

.section-title {
  font-size: 36px;
  line-height: 1.1;
  font-weight: bold;
}

.util-link {
  font-size: 20px;
  letter-spacing: 0.004em;
  color: fff;
  border: 1px solid #707070;
  background: fff;
  display: inline-block;
  padding: 20px 86px;
}

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

/*   ヘッダー  */
.header {
  background: rgba(255, 255, 255, 0.1) 0% 0%;
  top: 0;
  left: 0;
  right: 0;
  position: fixed;
  z-index: 100;
}

.add-scrolled .header {
  background: rgba(255, 255, 255, 0.6);
}

@media screen and (max-width: 767px) {
  .header {
    padding: 0 16px;
    height: 68px;
    background: rgba(255, 255, 255, 0.6);
  }
}

.header-inner {
  margin: 0 auto;
}

.header-title {
  font-size: 23px;
  margin-top: 20px;
  height: 28px;
  line-height: 28px;
  font-weight: 700;
}

.drawer-hamburger {
  padding-top: 22px;
}

.drawer-hamburger-icon,
.drawer-hamburger-icon:after,
.drawer-hamburger-icon:before {
  height: 5px;
}

.drawer-overlay {
  background-color: rgba(0, 0, 0, 0.685);
}

.drawer-open .drawer-nav {
  width: 300px;
}

.drawer-open .drawer-hamburger-icon::after,
.drawer-open .drawer-hamburger-icon::before {
  background-color: #fff;
}

.drawer--right.drawer-open .drawer-hamburger {
  right: 310px;
}

.header-nav {
  align-items: center;
  display: flex;
  justify-content: center;
}

@media screen and (max-width: 767px) {
  .header-nav {
    background: #fff;
    position: fixed;
  }
}

@media screen and (min-width: 768px) {
  .header-nav-list {
    display: flex;
  }
}

.header-nav-item {
  display: flex;
  text-decoration: none;
}

@media screen and (min-width: 768px) {
  .header-nav-item + .header-nav-item {
    margin-left: 40px;
  }
}

.header-nav-item-link {
  display: block;
  color: #3E3E3E;
  font-weight: bold;
  height: 60px;
  line-height: 60px;
  position: relative;
  cursor: pointer;
}

.header-nav-item-link:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background-color: #3e3e3e;
  transform: scale(0, 1);
  transition: transform .2s;
}

.header-nav-item-link:hover:before {
  transform: scale(1);
}

/*   ヘッダー  */
/*   main  */
.main {
  background-image: url(../img/mv.png);
  background-position: 24% center;
  background-size: cover;
  height: 648px;
}

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

.top {
  margin: 0 auto;
  max-width: 1240px;
  padding: 228px 20px 0 0;
  width: 100%;
}

@media screen and (min-width: 768px) {
  .top-message {
    margin-left: auto;
    max-width: 600px;
  }
}

@media screen and (max-width: 767px) {
  .top-message {
    padding: 0px 16px 0 16px;
  }
}

.top-title {
  font-size: 28px;
  font-weight: bold;
  line-height: 1.6666;
}

@media screen and (max-width: 767px) {
  .top-title {
    font-size: 22px;
  }
}

.top-text {
  font-size: 18px;
  margin-top: 25px;
  font-weight: bold;
}

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

.top-footer {
  margin-top: 56px;
}

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

.conversion-button {
  border: 1px solid #FFAA3B;
  color: #fff;
  padding: 16px 50px;
  background: #FFAA3B;
  font-size: 18px;
  border-radius: 10px;
  box-shadow: 0px 3px 5px rgba(62, 62, 62, 0.2);
}

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

.conversion-button:hover {
  background: #f18900;
  cursor: pointer;
}

/*   main  */
/*   News  */
.news {
  margin: 120px 40px 0 40px;
  padding: 60px 60px 40px 60px;
  background: #fff;
  box-shadow: 0px 5px 12px rgba(62, 62, 62, 0.2);
}

@media screen and (max-width: 767px) {
  .news {
    margin: -40px 16px 0 16px;
    position: relative;
    z-index: 1;
    padding: 40px 0;
  }
}

.news-title {
  text-align: center;
}

.news-list {
  margin-top: 60px;
  border-top: 1px solid #CECDCD;
}

.news-item {
  padding-top: 25px;
  padding-bottom: 38px;
  border-bottom: 1px solid #CECDCD;
  position: relative;
}

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

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

.news-item:after {
  content: url(../img/news-arrow.svg);
  position: absolute;
  right: 0;
  top: 50%;
}

@media screen and (max-width: 767px) {
  .news-item:after {
    margin-right: 20px;
  }
}

.news-item-link {
  color: #3E3E3E;
  display: flex;
  align-items: center;
  letter-spacing: .025em;
  position: relative;
  transition: background-color .2s;
}

.news-item-date {
  white-space: nowrap;
}

@media screen and (max-width: 767px) {
  .news-item-date {
    margin-left: 16px;
    font-size: 14px;
  }
}

.news-text {
  white-space: nowrap;
  border: 2px solid #3b69ff;
  border-radius: 30px;
  display: inline-block;
  font-size: 14px;
  padding: 0px 30px;
  margin-left: 38px;
  background: #fff;
}

@media screen and (max-width: 767px) {
  .news-text {
    margin-left: 24px;
    font-size: 12px;
    padding: 4px 16px;
  }
}

.news-message {
  margin-left: 38px;
  margin-top: 10px;
  letter-spacing: 0.025em;
  line-height: 1.6;
  margin-right: 40px;
}

@media screen and (max-width: 767px) {
  .news-message {
    margin-left: 16px;
    margin-top: 12px;
    padding-right: 20px;
  }
}

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

.util-link {
  border: 1px solid #707070;
  color: #3E3E3E;
  font-size: 20px;
  padding: 20px 80px;
}

@media screen and (max-width: 767px) {
  .footer-button {
    letter-spacing: 0.36em;
  }
}

.footer-button:hover {
  background: #3e3e3e;
  color: #fff;
}

/*   News  */
/*   Service  */
.service {
  margin-top: 60px;
  padding-top: 30px;
  background: linear-gradient(to bottom, #3E3E3E 0%, #3E3E3E 320px, #F3F3F3 80px, #F3F3F3 100%);
}

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

.service-inner {
  padding: 0 40px;
  max-width: 1040px;
  margin: 54px auto 0;
}

.service-list {
  margin-top: 40px;
  width: 100%;
  display: flex;
  background: #fff;
  box-shadow: 0px 5px 12px rgba(62, 62, 62, 0.2);
}

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

.service-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

@media screen and (min-width: 768px) {
  .service-item {
    flex: 0 1 33.3333%;
    padding: 58px 45px;
  }
}

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

.service-name {
  margin-top: 8px;
  font-size: 20px;
  text-align: center;
}

.service-text {
  margin-top: 20px;
  font-size: 14px;
}

/*   Service  */
/*   Results  */
.results {
  margin-top: 60px;
  margin-left: 40px;
  padding: 60px 0 60px 60px;
  background: #3e3e3e;
}

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

.results-title {
  font-size: 36px;
  color: #fff;
  margin-left: 60px;
}

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

.results-container {
  margin-top: 40px;
}

@media screen and (max-width: 767px) {
  .results-item {
    margin-right: 16px;
  }
}

.results-item-link {
  color: #3e3e3e;
  display: block;
}

.results-picture img {
  width: 100%;
}

.results-item-body {
  background: #fff;
  padding: 10px 16px 20px;
}

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

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

.results-item-text {
  font-size: 16px;
}

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

.results-footer {
  margin-top: 100px;
}

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

.footer-link {
  color: #fff;
  font-size: 24px;
  letter-spacing: 0.2em;
}

@media screen and (max-width: 767px) {
  .footer-link {
    letter-spacing: 0.3em;
  }
}

.footer-link:hover {
  background: #fff;
  color: #3e3e3e;
}

.results-pagination {
  margin-top: 40px;
}

@media screen and (max-width: 767px) {
  .results-pagination {
    position: initial;
  }
}

.swiper-pagination-bullet {
  background: #fff;
  width: 20px;
  height: 20px;
  margin-right: 16px;
}

@media screen and (max-width: 767px) {
  .swiper-pagination-bullet {
    margin-right: 24px;
  }
}

/*   Results  */
/*   Price  */
.price {
  background: #f3f3f3;
}

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

@media screen and (min-width: 768px) {
  .price {
    padding: 0 40px;
    margin: 118px auto 0;
    max-width: 1040px;
    width: 100%;
  }
}

.price-title {
  margin-top: 120px;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .price-title {
    margin-top: 60px;
  }
}

.table {
  margin-top: 60px;
  border: 1px solid #707070;
  border-collapse: collapse;
  width: 100%;
}

.table th {
  background: #3e3e3e;
  color: #fff;
  padding: 16px 100px;
  font-size: 24px;
  border: 1px solid #707070;
  text-align: center;
  width: 29.3%;
  white-space: nowrap;
}

@media screen and (max-width: 767px) {
  .table th {
    padding: 16px;
  }
}

.table td {
  padding: 16px 0 16px 40px;
  border: 1px solid #707070;
  background: #fff;
  font-weight: 600;
}

@media screen and (max-width: 767px) {
  .table td {
    padding: 16px 0 16px 16px;
  }
}

.table-attention {
  margin-top: 10px;
  font-size: 12px;
}

/*   Price  */
/*   Comments  */
.background-dark {
  position: relative;
}

.background-dark:before {
  position: absolute;
  content: "";
  background: #3e3e3e;
  top: 148px;
  left: 0;
  bottom: -100px;
  width: 76.5625%;
}

@media screen and (max-width: 767px) {
  .background-dark:before {
    width: 120%;
    top: 60px;
    bottom: -60px;
    left: -20px;
  }
}

.bg-wrapper {
  position: relative;
}

.bg-wrapper:before {
  background: #3e3e3e;
  content: '';
  display: block;
  left: 0;
  position: absolute;
}

@media screen and (min-width: 768px) {
  .bg-wrapper:before {
    bottom: 138px;
    top: 146px;
    width: 76.5625%;
  }
}

.comments {
  margin-top: 116px;
  position: relative;
  z-index: 1;
}

@media screen and (max-width: 767px) {
  .comments {
    margin: 54px 16px 0;
  }
}

.comments-inner {
  display: flex;
  margin: 0 auto;
  max-width: 1200px;
  position: relative;
  width: 100%;
  z-index: 1;
}

.comments-box {
  background: #fff;
  box-shadow: 0 5px 12px rgba(62, 62, 62, 0.2);
}

@media screen and (min-width: 768px) {
  .comments-box {
    flex: 0 1 668px;
    padding: 114px 60px 124px;
  }
}

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

.comments-list {
  display: flex;
  flex-wrap: wrap;
  line-height: 1.65;
  margin-top: 40px;
}

@media screen and (min-width: 768px) {
  .comments-list {
    margin-top: 54px;
  }
}

@media screen and (max-width: 767px) {
  .comments-list {
    margin-top: 30px;
  }
}

.comments-item {
  display: flex;
  font-size: 16px;
  line-height: 1.5;
  text-align: justify;
  text-justify: inter-ideograph;
  font-weight: bold;
}

@media screen and (max-width: 767px) {
  .comments-item {
    font-size: 14px;
    letter-spacing: 0.01em;
    line-height: 1.5;
    font-weight: 500;
  }
}

.comments-item:before {
  content: '';
  display: block;
  flex: 0 0 56px;
  height: 56px;
  margin-right: 24px;
}

@media screen and (min-width: 768px) {
  .comments-item:before {
    flex: 0 0 100px;
    height: 100px;
    margin-right: 32px;
  }
}

.comments-item:nth-child(1):before {
  background: url(../img/comments1.png) center center/contain no-repeat;
}

.comments-item:nth-child(2):before {
  background: url(../img/comments2.png) center center/contain no-repeat;
}

.comments-item + .comments-item {
  margin-top: 28px;
}

@media screen and (min-width: 768px) {
  .comments-item + .comments-item {
    margin-top: 58px;
  }
}

.comments-picture-3 {
  margin-top: 60px;
  margin-right: 40px;
}

.comments-picture-3 img {
  width: 100%;
}

/*   Comments  */
/*   Q&A  */
.faq {
  margin-top: 100px;
  background: url(../img/qa-bg.png) top center/cover;
  padding: 60px 40px 120px 0;
  z-index: 1;
}

@media screen and (min-width: 768px) {
  .faq {
    position: relative;
  }
}

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

.qa-title {
  text-align: center;
  font-weight: bold;
  z-index: 1;
}

.qa-list {
  margin: 60px 0 0 auto;
}

@media screen and (min-width: 768px) {
  .qa-list {
    width: 612px;
  }
}

.qa-item {
  background: #fff;
  margin-bottom: 32px;
  padding: 16px;
}

.qa-question {
  display: flex;
  position: relative;
}

.qa-question:before {
  content: "Q";
  background: #3B69FF;
  color: #fff;
  width: 24px;
  height: 24px;
  line-height: 24px;
  border-radius: 50%;
  text-align: center;
  display: inline-block;
  margin-right: 22px;
}

.qa-question:after {
  content: "\02715";
  position: absolute;
  display: inline-block;
  color: #3869FF;
  top: 0;
  right: 0;
  font-size: 1.2em;
  transform: rotate(45deg);
  font-weight: 600;
}

.qa-item dt.active:after {
  content: "";
  background: #3B69FF;
  position: absolute;
  display: inline-block;
  color: #3869FF;
  width: 20px;
  height: 3px;
  transform: rotate(0);
  top: 50%;
}

.qa-text {
  margin-top: 20px;
  padding: 16px;
  background: rgba(59, 105, 255, 0.2) 0% 0% no-repeat padding-box;
}

/*   Q&A  */
/*  Access */
.access {
  position: relative;
  z-index: 1;
}

@media screen and (min-width: 768px) {
  .access {
    display: -ms-grid;
    display: grid;
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    -ms-grid-columns: 414px 1fr;
    grid-template-columns: 414px 1fr;
    -ms-grid-rows: auto 1fr;
    grid-template-rows: auto 1fr;
    margin: 120px auto 0;
    max-width: 1200px;
    padding: 0 0 0 60px;
  }
}

@media screen and (max-width: 767px) {
  .access {
    background: #3e3e3e;
    padding: 40px 16px 60px;
  }
}

.access .util-ttl {
  color: #fff;
  font-size: 36px;
}

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

.access .util-link {
  color: #fff;
  margin-top: 28px;
  letter-spacing: 0.1em;
  white-space: nowrap;
}

@media screen and (min-width: 768px) {
  .access .util-link {
    max-width: 314px;
    letter-spacing: 0.1em;
  }
}

@media screen and (max-width: 767px) {
  .access .util-link {
    margin-top: 24px;
    max-width: 100%;
  }
}

@media screen and (min-width: 768px) {
  .access-inner {
    -ms-grid-row: 1;
    -ms-grid-row-span: 1;
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
    grid-area: 1 / 1 / 2 / 2;
  }
}

.access-ttl {
  color: #fff;
  text-align: left;
}

.access-address {
  color: #fff;
  font-size: 16px;
  line-height: 2;
  margin-top: 30px;
}

@media screen and (min-width: 768px) {
  .access-address {
    line-height: 1.6;
    margin-top: 44px;
  }
}

@media screen and (max-width: 767px) {
  .access-address {
    line-height: 1.42857;
    font-size: 14px;
  }
}

@media screen and (min-width: 768px) {
  .access-linkBox {
    -ms-grid-row: 2;
    -ms-grid-row-span: 1;
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
    grid-area: 2 / 1 / 3 / 2;
  }
}

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

.access-link:hover {
  background: #fff;
  color: #3e3e3e;
}

@media screen and (min-width: 768px) {
  .access-map {
    box-shadow: 0 5px 12px rgba(62, 62, 62, 0.2);
    flex: 0 1 720px;
    -ms-grid-row: 1;
    -ms-grid-row-span: 2;
    -ms-grid-column: 2;
    -ms-grid-column-span: 1;
    grid-area: 1 / 2 / 3 / 3;
    height: 520px;
  }
}

@media screen and (max-width: 767px) {
  .access-map {
    height: 240px;
    margin-top: 22px;
  }
}

.access-map iframe {
  height: 100%;
  width: 100%;
}

/*  Access */
/*  Contact */
.contact {
  background: url(../img/contact-bg.png) center center/cover;
  padding: 40px 120px;
}

@media screen and (min-width: 768px) {
  .contact {
    margin-top: 120px;
  }
}

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

.contact-message {
  background: url(../img/contact1.png) center center/cover;
  padding: 30px 0;
}

@media screen and (max-width: 767px) {
  .contact-message {
    padding: 60px 32px;
  }
}

.contact-title {
  color: #fff;
  text-align: center;
  font-weight: normal;
}

.contact-text {
  margin-top: 16px;
  color: #fff;
  text-align: center;
  font-family: "游ゴシック", YuGothic, sans-serif;
  opacity: 0.5;
}

.contact-box {
  color: #3E3E3E;
  background: #fff;
}

.contact-form {
  padding: 60px 40px;
  max-width: 960px;
}

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

.contact-item {
  white-space: nowrap;
}

@media screen and (min-width: 768px) {
  .contact-item {
    display: flex;
  }
}

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

@media screen and (max-width: 767px) {
  .contact-item + .contact-item {
    margin-top: 32px;
  }
}

.contact-item button,
.contact-item textarea {
  /* デフォルトスタイルをリセット */
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  background-color: transparent;
  background-image: none;
  border: none;
  border: 1px solid rgba(0, 0, 0, 0.16);
  border-radius: 0;
  color: inherit;
  font-family: inherit;
  font-size: 1em;
  padding: 0.2em 0.6em;
  width: 100%;
}

.contact-item select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border: solid 1px #3e3e3e;
  border-radius: 0;
  color: #3e3e3e;
  font-size: 16px;
  font-family: inherit;
  font-weight: 500;
  height: 40px;
  line-height: 40px;
  outline: none;
  padding: 0 34px 0 8px;
  transition: box-shadow .2s;
}

@media screen and (min-width: 768px) {
  .contact-item select {
    letter-spacing: 0.1em;
    width: 260px;
  }
  .contact-item select:hover {
    -webkit-box-shadow: 0 0 4px #4973ff;
    box-shadow: 0 0 4px #4973ff;
  }
}

@media screen and (max-width: 767px) {
  .contact-item select {
    font-size: 14px;
    line-height: 38px;
    height: 38px;
    width: 100%;
  }
}

.contact-item select::-ms-expand {
  display: none;
}

textarea {
  height: 120px;
  border: 1px solid #707070;
  margin-top: 8px;
}

@media screen and (max-width: 767px) {
  textarea {
    height: 160px;
    margin-top: 0px;
  }
}

textarea:hover, textarea:focus {
  border-color: #4973ff;
  outline: none;
}

input[type="text"], input[type="email"] {
  border: none;
  border-bottom: solid 1px #3e3e3e;
  border-radius: 0;
  font-weight: 400;
  font-family: inherit;
  letter-spacing: .03em;
  padding: 3px 12px 2px;
  position: relative;
  color: fff;
  width: 100%;
}

@media screen and (max-width: 767px) {
  input[type="text"], input[type="email"] {
    width: 100%;
  }
}

input[type="text"]:hover, input[type="text"]:focus, input[type="email"]:hover, input[type="email"]:focus {
  border-color: #4973ff;
  outline: none;
}

.contact-item-title {
  flex: 0 0 180px;
  line-height: 40px;
}

.contact-item-input {
  opacity: 0.6;
  width: 100%;
}

.contact-item-title-inline {
  border: 1px solid #FF4646;
  border-radius: 2px;
  background: #FF4646;
  color: #fff;
  font-size: 12px;
  display: inline-block;
  width: 40px;
  line-height: 16px;
  text-align: center;
  margin-left: 12px;
}

.select-item-input {
  position: relative;
}

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

.select-item-input:after {
  border-bottom: solid 2px #3e3e3e;
  border-right: solid 2px #3e3e3e;
  content: '';
  display: block;
  height: 8px;
  position: absolute;
  right: 16px;
  top: 14px;
  transform: rotate(45deg);
  width: 8px;
}

.contact-radio-input {
  display: none;
}

.contact-radio-wrap {
  display: flex;
}

@media screen and (min-width: 768px) {
  .contact-radio-wrap {
    margin-left: 150px;
  }
}

.contact-radio:nth-child(1) {
  margin-right: 20px;
}

.contact-radio-part {
  opacity: 1.0;
}

.contact-radio-input + .contact-radio-part {
  cursor: pointer;
  display: inline-block;
  margin: 0 0.2em 0;
  padding: 0 0 0 1.2em;
  position: relative;
}

.contact-radio-input + .contact-radio-part::before {
  -webkit-transform: translateY(-50%);
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.16);
  border-radius: 50%;
  content: "";
  display: block;
  height: 16px;
  left: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
}

.contact-item-text-area {
  display: block;
}

.contact-footer-text {
  display: flex;
}

.contact-privacy-part {
  display: inline-block;
}

.contact-privacy-input {
  display: none;
}

.contact-privacy {
  display: inline-block;
  margin-top: 16px;
}

@media screen and (min-width: 768px) {
  .contact-privacy {
    margin-top: 32px;
  }
}

@media screen and (max-width: 767px) {
  .contact-privacy {
    margin-top: 26px;
  }
}

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

.contact-privacyLabel {
  cursor: pointer;
  display: block;
  font-size: 16px;
  padding-left: 38px;
  position: relative;
}

@media screen and (min-width: 768px) {
  .contact-privacyLabel {
    font-size: 16px;
    padding-left: 42px;
  }
}

.contact-privacyLabel:before {
  background: #fff;
  border: solid 1px #3e3e3e;
  content: '';
  display: block;
  height: 16px;
  left: 0;
  position: absolute;
  top: 2px;
  transition: 0.2s;
  width: 16px;
}

@media screen and (min-width: 768px) {
  .contact-privacyLabel:before {
    height: 20px;
    width: 20px;
  }
}

@media screen and (max-width: 767px) {
  .contact-privacyLabel:before {
    width: 18px;
    height: 18px;
    top: 0;
  }
}

@media screen and (min-width: 768px) {
  .contact-privacyLabel:hover::before {
    border-color: #4973ff;
    box-shadow: 0 0 4px #4973ff;
  }
  .contact-privacyLabel:active::before {
    background-color: rgba(73, 115, 255, 0.2);
    box-shadow: none;
  }
}

.contact-privacyLabel:after {
  border-bottom: solid 2px #4973ff;
  border-left: solid 2px #4973ff;
  content: '';
  display: block;
  height: 6px;
  left: 2px;
  opacity: 0;
  position: absolute;
  top: 6px;
  transform: rotate(-45deg);
  transition: 0.2s;
  width: 12px;
}

@media screen and (min-width: 768px) {
  .contact-privacyLabel:after {
    left: 4px;
    top: 8px;
  }
}

@media screen and (max-width: 767px) {
  .contact-privacyLabel:after {
    left: 3px;
  }
}

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

.contact-footer-submit {
  margin-top: 40px;
}

@media screen and (max-width: 767px) {
  .contact-footer-submit {
    text-align: center;
    margin-top: 35px;
  }
}

.contact-button {
  background: #FFAA3B;
  padding: 16px 50px;
  color: #fff;
  font-size: 18px;
  border-radius: 10px;
  box-shadow: 0px 3px 5px rgba(0, 0, 0, 0.2);
}

.contact-button:hover {
  background: #f18900;
  cursor: pointer;
}

.contact-button:disabled {
  background: #b2b2b2;
}

/*  Contact */
/*  footer */
.footer {
  background: #3e3e3e;
  padding: 60px 160px;
}

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

.footer-inner {
  color: #E3E3E3;
}

@media screen and (min-width: 768px) {
  .footer-inner {
    display: flex;
  }
}

.footer-sns-list {
  display: flex;
}

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

.footer-sns-item {
  display: flex;
}

.footer-sns-item:nth-child(1) {
  margin-right: 32px;
}

@media screen and (max-width: 767px) {
  .footer-sns-item:nth-child(1) {
    margin-right: 50px;
  }
}

.footer-sns-item-link {
  color: #e3e3e3;
  opacity: 0.6;
  font-size: 36px;
}

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

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

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

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

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

.footer-nav-item-link {
  color: #e3e3e3;
  letter-spacing: 0.4px;
}

@media screen and (min-width: 768px) {
  .footer-logo {
    margin: 0 0 0 auto;
  }
}

.footer-title {
  font-size: 40px;
}

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

.footer-text {
  margin-top: 8px;
  font-size: 12px;
  letter-spacing: 0.3px;
  line-height: 1.0;
  text-align: right;
  opacity: 0.6;
}

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

.footer-top-icon {
  bottom: 40px;
  right: 40px;
  position: fixed;
  z-index: 100;
}

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

.footer-top-icon img {
  width: 100%;
}

/*  footer */
