@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600&display=swap");
/*======================================================================
# color
========================================================================*/
/*======================================================================
# common 全体の共通するスタイル
========================================================================*/
*,
*::before,
*::after {
  box-sizing: border-box;
}

@media (max-width: 375px) {
  .is-pc {
    display: none;
  }
}
@media (min-width: 768px) {
  .is-sp {
    display: none;
  }
}
body {
  font-size: 16px;
  color: #3e3e3e;
  font-family: "Montserrat", sans-serif;
  line-height: 1.6875;
  background: #F3F3F3;
}

img {
  max-width: 100%;
}

.inner {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 40px;
}
@media (max-width: 375px) {
  .inner {
    padding: 0 15px;
  }
}

li {
  list-style: none;
}

a {
  display: block;
  color: inherit;
  text-decoration: none;
}
a:hover {
  cursor: pointer;
}

ul,
ol {
  list-style: none;
  padding: 0;
  margin: 0;
}

dd,
dt {
  margin: 0;
  padding: 0;
}

.util-title {
  font-size: 36px;
  font-weight: bold;
  text-align: center;
  color: #3e3e3e;
  margin: 0;
}
@media (max-width: 375px) {
  .util-title {
    font-size: 30px;
  }
}

.util-link {
  font-size: 14px;
  letter-spacing: 0.1em;
  color: #3b69ff;
  border: solid 1px #3b69ff;
  background: #fff;
  display: inline-block;
  transition: background-color 0.4s, color 0.4s;
  padding: 10px 54px;
}
.util-link.-active {
  background: #3b69ff;
  color: #fff;
}
@media (min-width: 768px) {
  .util-link:not(.-submit):hover {
    background: #3b69ff;
    color: #fff;
  }
}

p {
  padding: 0;
  margin: 0;
}

/* header
--------------------------------------------------------*/
.header {
  background: rgba(255, 255, 255, 0.1);
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 100;
  height: 83px;
}
@media (max-width: 375px) {
  .header {
    height: 68px;
  }
}

@media (min-width: 768px) {
  .header-nav-list {
    display: flex;
    justify-content: center;
  }
}
@media (max-width: 375px) {
  .header-nav-list {
    display: none;
  }
}
@media (min-width: 376px) and (max-width: 767px) {
  .header-nav-list {
    display: none;
  }
}
.header-nav-list a {
  position: relative;
}
.header-nav-list a::after {
  content: "";
  position: absolute;
  bottom: 15px;
  left: 0;
  width: 100%;
  height: 2px;
  background: transparent;
  transition: all 0.3s ease 0s;
}
.header-nav-list a:hover::after, .header-nav-list a.is-active::after {
  background: #3e3e3e;
}

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

.header-nav-item-link {
  display: block;
  color: #3e3e3e;
  height: 83px;
  line-height: 83px;
  letter-spacing: -0.025em;
  font-weight: bold;
}
@media (max-width: 375px) {
  .header-nav-item-link {
    color: #fff;
    font-size: 18px;
    text-align: right;
    padding: 0 15px;
    height: 60px;
    line-height: 60px;
  }
}

/*=====================================================================================
# header drawer
======================================================================================= */
.drawer-batsu {
  position: fixed;
  top: 20px;
  right: 316px;
  z-index: 300;
  transition: 0.5s ease 0s;
  width: 26px;
  display: none;
}
.drawer-batsu.is-active {
  display: block;
}
@media (max-width: 375px) {
  .drawer-batsu {
    left: 38px;
  }
}

.drawer-icon {
  position: fixed;
  top: 20px;
  right: 16px;
  z-index: 300;
  display: none;
}
.drawer-icon.is-active {
  display: block;
}
.drawer-icon.is-close {
  display: none;
}
@media (min-width: 376px) and (max-width: 767px) {
  .drawer-icon {
    display: block;
  }
}
@media (max-width: 375px) {
  .drawer-icon {
    display: block;
  }
}

.sp-h1 {
  position: fixed;
  top: 15px;
  left: 16px;
  z-index: 300;
  display: none;
  z-index: 298;
}
@media (min-width: 376px) and (max-width: 767px) {
  .sp-h1 {
    display: block;
  }
}
@media (max-width: 375px) {
  .sp-h1 {
    display: block;
  }
}
.sp-h1 h1 {
  margin: 0;
  padding: 0;
  font-size: 23px;
  font-weight: bold;
}

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

.drawer-content {
  width: 300px;
  height: 100%;
  position: fixed;
  right: 0;
  top: 0;
  background: #fff;
  z-index: 299;
  transform: translateX(105%);
  transition: transform 0.5s ease 0s;
}
.drawer-content.is-active {
  transform: translateX(0);
}
@media (max-width: 375px) {
  .drawer-content {
    width: 80%;
  }
}

.drawer-content-items {
  text-align: center;
  margin-top: 160px;
}

.drawer-content-item a {
  display: block;
  color: #3e3e3e;
  text-decoration: none;
  font-size: 18px;
  line-height: 1.2222222222;
  margin-bottom: 32px;
}

.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;
}

/*=====================================================================================
# main-visual
======================================================================================= */
.main-visual {
  width: 100%;
  height: 648px;
  background: url(../img/mv.png) no-repeat center center/cover;
  position: relative;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
}
@media (max-width: 375px) {
  .main-visual {
    margin-top: 68px;
    height: 600px;
    background-position: center left;
  }
}
@media (min-width: 376px) and (max-width: 767px) {
  .main-visual {
    background-position: center left;
  }
}

.main-visual__content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(0, -50%);
  text-align: left;
  padding-right: 40px;
  padding-top: 80px;
}
@media (max-width: 375px) {
  .main-visual__content {
    position: static;
    transform: none;
    padding: 156px 16px 0;
  }
}
@media (min-width: 376px) and (max-width: 767px) {
  .main-visual__content {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: left;
    width: 100%;
    padding: 10px;
  }
}

.main-visual__title {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.02px;
}
@media (max-width: 375px) {
  .main-visual__title {
    font-size: 24px;
    line-height: inherit;
  }
}
@media (min-width: 376px) and (max-width: 767px) {
  .main-visual__title {
    font-size: 24px;
  }
}

.main-visual__lead {
  font-size: 18px;
  font-weight: 700;
  margin-top: 26px;
  line-height: 1.5555;
  letter-spacing: 0.45px;
}
@media (max-width: 375px) {
  .main-visual__lead {
    font-size: 14px;
    margin-top: 16px;
    letter-spacing: 0;
  }
}
@media (min-width: 376px) and (max-width: 767px) {
  .main-visual__lead {
    font-size: 18px;
    margin-top: 32px;
  }
}

.main-visual__button {
  margin-top: 40px;
}
.main-visual__button:hover {
  opacity: 0.7;
}
@media (max-width: 375px) {
  .main-visual__button {
    margin-top: 24px;
    text-align: center;
  }
}
.main-visual__button a {
  display: inline-block;
  width: 280px;
  max-width: 100%;
  height: 50px;
  line-height: 50px;
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  color: #fff;
  border-radius: 10px;
  text-decoration: none;
  background: #FFAA3B;
}
@media (max-width: 375px) {
  .main-visual__button a {
    width: 222px;
    height: 48px;
    line-height: 48px;
    font-size: 16px;
  }
}

/*=====================================================================================
# news
======================================================================================= */
.news {
  max-width: 1200px;
  background: #fff;
  margin: 120px auto;
  padding-top: 50px;
  color: #3e3e3e;
  box-shadow: 0px 5px 12px rgba(62, 62, 62, 0.2);
}
@media (max-width: 375px) {
  .news {
    width: 91.46%;
    margin: -40px auto -80px;
    position: relative;
    padding-bottom: 40px;
    padding-top: 34px;
  }
}
@media (min-width: 376px) and (max-width: 767px) {
  .news {
    width: 91.46%;
    margin: 0 auto;
    padding-bottom: 50px;
    z-index: 1;
  }
}

.news-title {
  margin-bottom: 50px;
}
@media (max-width: 375px) {
  .news-title {
    margin-bottom: 34px;
  }
}
@media (min-width: 376px) and (max-width: 767px) {
  .news-title {
    margin-bottom: 40px;
  }
}

.news-list {
  margin: 0 60px 0;
  max-width: 1080px;
}
@media (max-width: 375px) {
  .news-list {
    margin: 20px 15px;
  }
}
@media (min-width: 376px) and (max-width: 767px) {
  .news-list {
    margin: 20px 15px;
  }
}
.news-list:first-of-type {
  border-top: 1px solid #CECDCD;
}

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

.news-item-body {
  display: flex;
  max-width: 1080px;
  align-items: center;
  border-bottom: 1px solid #CECDCD;
  padding: 38px 0;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
}
@media (max-width: 375px) {
  .news-item-body {
    display: block;
    padding: 0;
    margin-bottom: 5px;
  }
}
@media (min-width: 376px) and (max-width: 767px) {
  .news-item-body {
    display: block;
    padding: 0;
    margin-bottom: 5px;
  }
}

.news-item-meta {
  display: flex;
  align-items: center;
}
@media (max-width: 375px) {
  .news-item-meta {
    padding-top: 10px;
  }
}
@media (min-width: 376px) and (max-width: 767px) {
  .news-item-meta {
    padding-top: 10px;
  }
}

.news-item-date {
  height: 22px;
  line-height: 22px;
  font-size: 18px;
  letter-spacing: 0.45px;
}
@media (max-width: 375px) {
  .news-item-date {
    font-size: 14px;
  }
}
@media (min-width: 376px) and (max-width: 767px) {
  .news-item-date {
    font-size: 14px;
  }
}

.news-item-button {
  width: 121px;
  height: 30px;
  line-height: 25px;
  color: #3e3e3e;
  text-align: center;
  background: #fff;
  border-radius: 50px;
  text-decoration: none;
  border: 2px solid #3B69FF;
  font-size: 14px;
  padding-bottom: 2px;
  margin-left: 37px;
}
@media (max-width: 375px) {
  .news-item-button {
    font-size: 12px;
    margin-left: 20px;
    width: 81px;
    height: 20px;
    line-height: 20px;
  }
}
@media (min-width: 376px) and (max-width: 767px) {
  .news-item-button {
    font-size: 12px;
    margin-left: 20px;
    width: 81px;
    height: 20px;
    line-height: 20px;
  }
}

.news-item-text {
  width: calc(100% - 280px);
  padding-left: 40px;
  padding-right: 60px;
  position: relative;
  font-size: 18px;
  line-height: 1.6;
  letter-spacing: 0.025em;
}
.news-item-text::after {
  content: "";
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%);
  width: 12.75px;
  height: 21.5px;
  background: url(../img/news-arrow.png) no-repeat center center/contain;
}
@media (max-width: 375px) {
  .news-item-text::after {
    right: -40px;
    top: 30%;
  }
}
@media (min-width: 376px) and (max-width: 767px) {
  .news-item-text::after {
    right: -40px;
    top: 30%;
  }
}
@media (max-width: 375px) {
  .news-item-text {
    width: 88%;
    padding: 9px 0;
    font-size: 14px;
    letter-spacing: 0;
    line-height: 1.42857;
  }
}
@media (min-width: 376px) and (max-width: 767px) {
  .news-item-text {
    width: 88%;
    padding: 0;
    font-size: 14px;
    letter-spacing: 0;
  }
}

.news-footer {
  text-align: center;
  padding-top: 45px;
  padding-bottom: 40px;
}
@media (max-width: 375px) {
  .news-footer {
    padding: 0;
    margin-top: 35px;
  }
}
@media (min-width: 376px) and (max-width: 767px) {
  .news-footer {
    padding: 0;
    margin-top: 35px;
  }
}
.news-footer a {
  font-size: 20px;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  color: #3e3e3e;
  padding: 21px 77px;
  border: 1px solid #707070;
  position: relative;
  transition: all 0.3s ease 0s;
  font-weight: bold;
  letter-spacing: 4px;
  line-height: 1;
}
.news-footer a:hover {
  color: #fff;
  background: #3e3e3e;
}
@media (max-width: 375px) {
  .news-footer a {
    padding: 16px 93px;
  }
}

/*=====================================================================================
# service
======================================================================================= */
.service {
  margin: 0 auto;
  background: linear-gradient(to bottom, #3e3e3e 0, #3e3e3e 400px, transparent 400px, transparent 100%);
}
@media (max-width: 375px) {
  .service {
    margin: 142px auto 0;
  }
}
@media (min-width: 376px) and (max-width: 767px) {
  .service {
    margin: 60px auto 0;
  }
}

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

.service-title {
  padding-top: 52px;
  padding-bottom: 45px;
  color: #fff;
}
@media (max-width: 375px) {
  .service-title {
    padding-bottom: 0;
    padding-top: 30px;
  }
}
@media (min-width: 376px) and (max-width: 767px) {
  .service-title {
    padding-bottom: 0;
    padding-top: 30px;
  }
}

.service-items {
  background: #fff;
  color: #3E3E3E;
  padding: 60px 45px;
  box-shadow: 0px 5px 12px rgba(62, 62, 62, 0.2);
  margin-top: 6px;
}
@media (max-width: 375px) {
  .service-items {
    margin: 35px 16px 0;
    display: block;
    padding: 25px 12px;
    height: 694px;
    height: auto;
  }
}
@media (min-width: 376px) and (max-width: 767px) {
  .service-items {
    margin: 35px 16px;
    display: block;
    padding: 25px 12px;
    height: 694px;
  }
}
@media (min-width: 768px) {
  .service-items {
    display: flex;
    justify-content: space-between;
    height: 331px;
    align-items: center;
  }
}

.service-item {
  width: 29%;
}
@media (max-width: 375px) {
  .service-item {
    width: 100%;
  }
  .service-item:not(:last-child) {
    margin-bottom: 37px;
  }
}
@media (min-width: 376px) and (max-width: 767px) {
  .service-item {
    width: 100%;
  }
  .service-item:not(:last-child) {
    margin-bottom: 37px;
  }
}

.service-img {
  width: 64px;
  height: 64px;
  margin: 0 auto;
}
@media (max-width: 375px) {
  .service-img {
    margin: 20px auto 0;
    text-align: center;
    padding-top: 10px;
  }
}
@media (min-width: 376px) and (max-width: 767px) {
  .service-img {
    margin: 20px auto 0;
    padding-top: 10px;
  }
}

.service-img-tiny1 {
  padding-top: 14px;
}
@media (max-width: 375px) {
  .service-img-tiny1 {
    padding-top: 5px;
  }
}

.service-img-tiny2 {
  padding-top: 19px;
  padding-left: 6px;
}
@media (max-width: 375px) {
  .service-img-tiny2 {
    padding-top: 10px;
    padding-left: inherit;
  }
}

.service-img-tiny3 {
  padding-top: 19px;
  margin-left: 6px;
}
@media (max-width: 375px) {
  .service-img-tiny3 {
    padding-top: 10px;
    margin-right: auto;
  }
}
@media (min-width: 376px) and (max-width: 767px) {
  .service-img-tiny3 {
    padding-top: 10px;
    margin-right: auto;
  }
}

.service-head-tiny1 {
  padding-right: 14px;
}
@media (max-width: 375px) {
  .service-head-tiny1 {
    padding-right: 0;
  }
}

.service-head-tiny3 {
  padding-left: 23px;
}
@media (max-width: 375px) {
  .service-head-tiny3 {
    padding-left: 4px;
  }
}

.service-text-tiny2 {
  padding-left: 10px;
}

.service-text-tiny3 {
  padding-left: 20px;
}

.service-head {
  font-size: 20px;
  font-weight: bold;
  line-height: 1.4;
  letter-spacing: 4px;
  height: 52px;
  margin: 8px auto 20px;
  text-align: center;
}
@media (max-width: 375px) {
  .service-head {
    margin: 0 auto 18px;
  }
}
@media (min-width: 376px) and (max-width: 767px) {
  .service-head {
    margin: 0 auto 18px;
  }
}

.service-text {
  font-size: 14px;
  line-height: 1.7142857143;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
}

/*=====================================================================================
# results
======================================================================================= */
.results {
  margin: 120px 0 0 auto;
  max-width: calc(50vw + 600px);
}
@media (max-width: 375px) {
  .results {
    margin-top: 65px;
    padding-left: 0;
  }
}
@media (min-width: 376px) and (max-width: 767px) {
  .results {
    margin-top: 60px;
    padding-left: 0;
  }
}

.results-inner {
  max-width: 100%;
  height: 754px;
  background: #3e3e3e;
  margin: 0 auto;
}
@media (max-width: 375px) {
  .results-inner {
    height: 532px;
  }
}
@media (min-width: 376px) and (max-width: 767px) {
  .results-inner {
    height: 532px;
  }
}

.results-area h2 {
  text-align: left;
  padding-left: 60px;
}
@media (max-width: 375px) {
  .results-area h2 {
    text-align: center;
    padding-left: 0;
    line-height: 2;
  }
}
@media (min-width: 376px) and (max-width: 767px) {
  .results-area h2 {
    text-align: center;
    padding: 20px 0;
  }
}

.results-content {
  background: #fff;
  width: 400px;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  color: #3E3E3E;
  padding-bottom: 3px;
}
@media (max-width: 375px) {
  .results-content {
    width: 274px;
    height: 253px;
  }
}
@media (min-width: 376px) and (max-width: 767px) {
  .results-content {
    width: 274px;
    height: 253px;
  }
}

.results-img2 {
  background: url(../img/slide1.png) no-repeat center center/cover;
  height: 250px;
}
@media (max-width: 375px) {
  .results-img2 {
    height: 171px;
  }
}
@media (min-width: 376px) and (max-width: 767px) {
  .results-img2 {
    height: 171px;
  }
}

.results-text-box {
  padding: 16px;
}
@media (max-width: 375px) {
  .results-text-box {
    padding: 12px;
  }
}
@media (min-width: 376px) and (max-width: 767px) {
  .results-text-box {
    padding: 12px;
  }
}

.results-title {
  font-size: 20px;
  font-weight: bold;
  line-height: 1.2;
}
@media (max-width: 375px) {
  .results-title {
    font-size: 14px;
  }
}
@media (min-width: 376px) and (max-width: 767px) {
  .results-title {
    font-size: 14px;
  }
}

.results-text {
  font-size: 16px;
  line-height: 1.5;
  padding-top: 9px;
}
@media (max-width: 375px) {
  .results-text {
    font-size: 12px;
    padding-top: 12px;
  }
}
@media (min-width: 376px) and (max-width: 767px) {
  .results-text {
    font-size: 12px;
    padding-top: 12px;
  }
}

.results-footer {
  text-align: left;
  padding-bottom: 40px;
  margin: 36px 0 0 60px;
}
@media (max-width: 375px) {
  .results-footer {
    margin: 20px auto 0;
    max-width: 316px;
    width: 100%;
  }
}
@media (min-width: 376px) and (max-width: 767px) {
  .results-footer {
    margin: 28px auto 0;
    max-width: 316px;
    width: 100%;
  }
}
.results-footer a {
  font-size: 20px;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  color: #fff;
  padding: 14px 77px;
  border: 1px solid #fff;
  position: relative;
  transition: all 0.3s ease 0s;
  font-weight: bold;
  letter-spacing: 4px;
}
@media (max-width: 375px) {
  .results-footer a {
    font-size: 18px;
    letter-spacing: 3.6px;
    max-width: 316px;
    width: 100%;
    line-height: 1.3;
  }
}
@media (min-width: 376px) and (max-width: 767px) {
  .results-footer a {
    font-size: 18px;
    letter-spacing: 3.6px;
    max-width: 316px;
    width: 100%;
  }
}
.results-footer a:hover {
  color: #3e3e3e;
  background: #fff;
}

.swiper {
  margin-left: 60px;
  margin-top: 5px;
}
@media (max-width: 375px) {
  .swiper {
    margin-left: 16px;
    margin-top: 26px;
  }
}
@media (min-width: 376px) and (max-width: 767px) {
  .swiper {
    margin-left: 16px;
  }
}

.swiper-slide {
  width: 400px;
  margin-right: 40px;
  display: block;
}
@media (max-width: 375px) {
  .swiper-slide {
    flex-shrink: 1;
    margin-right: 20px;
  }
}
@media (min-width: 376px) and (max-width: 767px) {
  .swiper-slide {
    flex-shrink: 1;
    margin-right: 20px;
  }
}

.results-pagination {
  position: static !important;
  margin: 38px 0 0 55px;
  text-align: left;
}
@media (min-width: 376px) and (max-width: 767px) {
  .results-pagination {
    margin-top: 30px;
    text-align: center;
    margin-left: 0;
  }
}
@media (max-width: 375px) {
  .results-pagination {
    margin-top: 22px;
    text-align: center;
    margin-left: 0;
  }
}
.results-pagination .swiper-pagination-bullet {
  background: #fff;
  height: 12px;
  margin: 0 10px !important;
  opacity: 1;
  position: relative;
  width: 12px;
}
.results-pagination .swiper-pagination-bullet:focus {
  outline: none;
}
.results-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active:after {
  border: solid 1px #fff;
  border-radius: 50%;
  content: "";
  display: block;
  height: 20px;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
}

.swiper-pagination-bullets {
  width: auto !important;
}

/*=====================================================================================
# price
======================================================================================= */
.price {
  margin-top: 118px;
}
@media (max-width: 375px) {
  .price {
    margin-top: 40px;
  }
}
@media (min-width: 376px) and (max-width: 767px) {
  .price {
    margin-top: 40px;
  }
}

.price-title {
  margin-bottom: 60px;
}
@media (max-width: 375px) {
  .price-title {
    margin-bottom: 40px;
  }
}
@media (min-width: 376px) and (max-width: 767px) {
  .price-title {
    margin-bottom: 40px;
  }
}

.price-inner {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 16px;
  box-sizing: content-box;
}
.price-inner h2 {
  line-height: 1.25;
}

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

.price-table {
  margin: 0 auto;
}
@media (max-width: 375px) {
  .price-table {
    width: 100%;
  }
}
@media (min-width: 376px) and (max-width: 767px) {
  .price-table {
    width: 100%;
  }
}

.price-attention {
  font-size: 12px;
  margin-top: 7px;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
}
@media (max-width: 375px) {
  .price-attention {
    margin-top: 4px;
  }
}
@media (min-width: 376px) and (max-width: 767px) {
  .price-attention {
    margin-top: 8px;
  }
}
.price-attention a {
  font-weight: 700;
  transition: all 0.3s ease 0s;
}
.price-attention a:hover {
  opacity: 0.7;
}

.table {
  border-collapse: collapse;
  font-weight: 700;
  width: 100%;
  table-layout: fixed;
  border: 1px solid #707070;
}
.table tr {
  height: 61px;
}
@media (max-width: 375px) {
  .table tr {
    height: 55px;
  }
}
.table th,
.table td {
  vertical-align: middle;
  background: #fff;
}
.table th {
  background: #3e3e3e;
  color: #fff;
  text-align: center;
  font-size: 24px;
  width: 27.2%;
  border: 1px solid #707070;
}
@media (max-width: 375px) {
  .table th {
    width: 29.3%;
    font-size: 20px;
  }
}
@media (min-width: 376px) and (max-width: 767px) {
  .table th {
    width: 112px;
    font-size: 20px;
  }
}
.table td {
  text-align: left;
  width: 72%;
  font-size: 24px;
  padding-left: 40px;
  border: 1px solid #707070;
}
@media (max-width: 375px) {
  .table td {
    padding-left: 20px;
    font-size: 20px;
  }
}
@media (min-width: 376px) and (max-width: 767px) {
  .table td {
    padding-left: 20px;
    font-size: 20px;
  }
}

/*=====================================================================================
# bg-wrapper
======================================================================================= */
.bg-wrapper {
  position: relative;
}
.bg-wrapper:before {
  background: #3e3e3e;
  content: "";
  display: block;
  left: 0;
  position: absolute;
  width: 100%;
  bottom: 138px;
  top: 146px;
  width: 76.5625%;
}
@media (min-width: 376px) and (max-width: 767px) {
  .bg-wrapper:before {
    width: 100%;
    top: 294px;
    bottom: 0;
    left: 0;
    display: block;
  }
}
@media (max-width: 375px) {
  .bg-wrapper:before {
    width: 100%;
    top: 63px;
    bottom: 0;
    left: 0;
    display: block;
  }
}

/*=====================================================================================
# comments
======================================================================================= */
.comments {
  margin-top: 116px;
  position: relative;
  z-index: 1;
}
@media (max-width: 375px) {
  .comments {
    margin-top: 52px;
  }
}
@media (min-width: 376px) and (max-width: 767px) {
  .comments {
    margin-top: 60px;
  }
}

.comments-inner {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}

.comments-bg {
  width: 76.56%;
  height: 576px;
  background: #3e3e3e;
  position: absolute;
  top: 130px;
  left: 0;
}
@media (max-width: 375px) {
  .comments-bg {
    width: 100%;
    top: 55px;
    height: 430px;
  }
}
@media (min-width: 376px) and (max-width: 767px) {
  .comments-bg {
    width: 100%;
    top: 55px;
    height: 430px;
  }
}

.comments-content-title {
  text-align: left;
}

.comments-fle {
  display: flex;
  align-items: center;
  z-index: 99;
}
@media (max-width: 375px) {
  .comments-fle {
    display: block;
    position: relative;
    padding-left: 16px;
    padding-right: 16px;
  }
}
@media (min-width: 376px) and (max-width: 767px) {
  .comments-fle {
    display: block;
    position: relative;
    padding-left: 16px;
    padding-right: 16px;
  }
}

.comments-content {
  max-width: 55.5%;
  background: #fff;
  padding: 114px 60px 124px;
  box-shadow: 0 5px 12px rgba(62, 62, 62, 0.2);
}
@media (max-width: 375px) {
  .comments-content {
    max-width: 100%;
    width: 375px;
    padding: 0;
  }
}
@media (min-width: 376px) and (max-width: 767px) {
  .comments-content {
    max-width: 100%;
    padding: 0;
  }
}
@media (max-width: 375px) {
  .comments-content h2 {
    padding: 35px 0 0 20px;
  }
}
@media (min-width: 376px) and (max-width: 767px) {
  .comments-content h2 {
    padding: 40px 0 0 20px;
  }
}

.comments-content-box {
  display: flex;
  margin-top: 45px;
}
@media (min-width: 376px) and (max-width: 767px) {
  .comments-content-box {
    margin-top: 0;
  }
}
@media (max-width: 375px) {
  .comments-content-box {
    padding-left: 20px;
    padding-right: 20px;
    margin-top: 30px;
  }
  .comments-content-box:last-child {
    padding-bottom: 30px;
  }
}
@media (min-width: 376px) and (max-width: 767px) {
  .comments-content-box {
    padding-top: 30px;
    padding-left: 20px;
    padding-right: 20px;
  }
  .comments-content-box:last-child {
    padding-bottom: 30px;
  }
}

.comments-content-box + .comments-content-box {
  margin-top: 58px;
}
@media (max-width: 375px) {
  .comments-content-box + .comments-content-box {
    margin-top: 28px;
  }
}
@media (min-width: 376px) and (max-width: 767px) {
  .comments-content-box + .comments-content-box {
    margin-top: 10px;
  }
}

.comments-picture img {
  width: 308px;
  height: auto;
  border-radius: 50%;
}
@media (max-width: 375px) {
  .comments-picture img {
    width: 300px;
  }
}
@media (min-width: 376px) and (max-width: 767px) {
  .comments-picture img {
    width: 300px;
  }
}

.comments-message-text {
  margin-left: 32px;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  line-height: 1.5;
  text-align: justify;
}
@media (max-width: 375px) {
  .comments-message-text {
    padding-left: 20px;
    font-size: 14px;
    margin-left: 0;
  }
}
@media (min-width: 376px) and (max-width: 767px) {
  .comments-message-text {
    padding-left: 20px;
    font-size: 14px;
  }
}

.comments-img {
  max-width: 44.5%;
  z-index: 99;
}
@media (max-width: 375px) {
  .comments-img {
    display: none;
  }
}
@media (min-width: 376px) and (max-width: 767px) {
  .comments-img {
    display: none;
  }
}

/*=====================================================================================
# qa
======================================================================================= */
.qa {
  background-image: url(../img/qa-bg.png);
  background-position: top center;
  background-size: cover;
  margin-top: 60px;
  padding: 36px 16px 40px;
  position: relative;
  z-index: 1;
  background-attachment: fixed;
  margin-top: 120px;
  padding: 56px 0 118px;
}
@media (min-width: 376px) and (max-width: 767px) {
  .qa {
    padding-bottom: 64px;
  }
}
@media (max-width: 375px) {
  .qa {
    background: url(../img/qa-bg@2x.png) no-repeat center center/cover;
    margin-top: 70px;
    padding: 0;
    padding-bottom: 64px;
  }
}
.qa .util-ttl {
  text-align: center;
}

.qa-title {
  line-height: 1.5;
}
@media (max-width: 375px) {
  .qa-title {
    padding: 40px 0;
    line-height: 1;
  }
}
@media (min-width: 376px) and (max-width: 767px) {
  .qa-title {
    padding: 40px 0;
  }
}

.qa-big-box {
  max-width: 1200px;
  margin: 56px auto 0;
  width: 100%;
}
@media (max-width: 375px) {
  .qa-big-box {
    padding: 0 16px;
    margin: 0 auto;
  }
}
@media (min-width: 376px) and (max-width: 767px) {
  .qa-big-box {
    padding: 0 16px;
    margin: 0 auto;
  }
}

.qa-inner {
  width: 612px;
  margin-left: auto;
}
@media (max-width: 375px) {
  .qa-inner {
    width: 100%;
  }
}
@media (min-width: 376px) and (max-width: 767px) {
  .qa-inner {
    width: 100%;
  }
}

.qa-item {
  background: #fff;
  border-radius: 4px;
  cursor: pointer;
  padding: 0 18px;
}
.qa-item:nth-child(n+2) {
  margin-top: 25px;
}
@media (max-width: 375px) {
  .qa-item:nth-child(n+2) {
    margin-top: 20px;
  }
}
@media (min-width: 376px) and (max-width: 767px) {
  .qa-item:nth-child(n+2) {
    margin-top: 25px;
  }
}
.qa-item:nth-child(n+3) {
  margin-top: 32px;
}
@media (max-width: 375px) {
  .qa-item:nth-child(n+3) {
    margin-top: 22px;
  }
}
@media (min-width: 376px) and (max-width: 767px) {
  .qa-item:nth-child(n+3) {
    margin-top: 22px;
  }
}

.qa-box {
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  border: 1px solid #fff;
  border-radius: 4px;
}

.faq-itemQuestion {
  align-items: center;
  display: flex;
  padding: 16px 0 14px;
  line-height: 1.5;
}
.faq-itemQuestion:before {
  background: #4973ff;
  border-radius: 50%;
  color: #fff;
  content: "Q";
  display: inline-block;
  flex: 0 0 24px;
  height: 24px;
  line-height: 24px;
  text-align: center;
  font-weight: 600;
}

.faq-itemQuestion_txt {
  flex: 0 1 100%;
  line-height: 1.5;
  margin-left: 0.75em;
  position: relative;
  letter-spacing: 0.025em;
  font-weight: 700;
}
.faq-itemQuestion_txt:before {
  background: #4973ff;
  content: "";
  display: block;
  height: 3px;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  transition: transform 0.3s;
  width: 15px;
  letter-spacing: normal;
}
.faq-itemQuestion_txt:after {
  background: #4973ff;
  content: "";
  display: block;
  height: 3px;
  position: absolute;
  right: 0;
  top: 50%;
  transition: transform 0.3s;
  width: 15px;
  transform: translateY(-50%) rotate(90deg);
}

.faq-item.add-active .faq-itemQuestion_txt:after {
  transform: translateY(-50%) rotate(0);
}

.faq-itemAnswer {
  display: none;
  padding-bottom: 14px;
}

.faq-itemAnswer_txt {
  background: rgba(73, 115, 255, 0.2);
  border-radius: 4px;
  line-height: 1.5;
  padding: 14px 14px;
}
@media (max-width: 375px) {
  .faq-itemAnswer_txt {
    font-size: 14px;
    padding: 10px;
  }
}

/*=====================================================================================
# access
======================================================================================= */
.access {
  position: relative;
}
@media (min-width: 376px) and (max-width: 767px) {
  .access {
    padding: 40px 16px 60px;
  }
}
@media (max-width: 375px) {
  .access {
    padding-bottom: 60px;
  }
}
.access h2 {
  color: #fff;
  z-index: 50;
  position: relative;
  text-align: left;
}
@media (max-width: 375px) {
  .access h2 {
    line-height: 1;
  }
}
@media (min-width: 376px) and (max-width: 767px) {
  .access h2 {
    text-align: center;
  }
}

.access-inner {
  width: 1240px;
  max-width: 100%;
  display: flex;
  justify-content: space-between;
  z-index: 50;
  padding: 110px 0 0 80px;
  margin: 0 auto;
}
@media (max-width: 375px) {
  .access-inner {
    padding: 0;
    flex-wrap: wrap;
    padding-left: 16px;
    padding-right: 16px;
    padding-top: 45px;
  }
}
@media (min-width: 376px) and (max-width: 767px) {
  .access-inner {
    padding: 0;
    flex-wrap: wrap;
    padding-left: 16px;
    padding-right: 16px;
    padding-top: 45px;
  }
}

.access-left {
  z-index: 50;
}
@media (min-width: 376px) and (max-width: 767px) {
  .access-left {
    margin: 0 auto;
    width: 350px;
    text-align: center;
  }
}

.access-content {
  color: #fff;
  z-index: 50;
}
.access-content h2 {
  text-align: left;
  color: #fff;
  line-height: 1.2;
}

.access-text {
  padding: 50px 0 28px;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  font-size: 16px;
  line-height: 1.5;
}
@media (max-width: 375px) {
  .access-text {
    padding: 40px 0 18px;
    line-height: 1.4285714286;
    font-size: 14px;
  }
}
@media (min-width: 376px) and (max-width: 767px) {
  .access-text {
    padding: 30px 0 22px;
    line-height: 1.4285714286;
    font-size: 16px;
  }
}

.access-button {
  text-align: left;
  padding-right: 20px;
}
@media (max-width: 375px) {
  .access-button {
    display: none;
  }
}
@media (min-width: 376px) and (max-width: 767px) {
  .access-button {
    display: none;
  }
}
.access-button a {
  font-size: 20px;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  color: #fff;
  border: 1px solid #fff;
  transition: all 0.3s ease 0s;
  font-weight: bold;
  letter-spacing: 2px;
  width: 314px;
  max-width: 100%;
  height: 64px;
  line-height: 64px;
  position: relative;
}
.access-button a:hover {
  color: #3e3e3e;
  background: #fff;
}

.access-sp-btn {
  text-align: center;
  margin-top: 24px;
  padding-right: 10px;
  padding-left: 10px;
  box-sizing: content-box;
}
@media (max-width: 375px) {
  .access-sp-btn {
    margin-top: 20px;
  }
}
.access-sp-btn a {
  z-index: 50;
  font-size: 20px;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  color: #fff;
  border: 1px solid #fff;
  transition: all 0.3s ease 0s;
  font-weight: bold;
  letter-spacing: 2px;
  max-width: 100%;
  padding: 11px 96px;
}
@media (min-width: 768px) {
  .access-sp-btn a {
    display: none;
  }
}
@media (min-width: 376px) and (max-width: 767px) {
  .access-sp-btn a {
    font-size: 18px;
  }
}
@media (max-width: 375px) {
  .access-sp-btn a {
    font-size: 18px;
  }
}

.access-map {
  flex: 0 1 720px;
  height: 520px;
  z-index: 50;
  margin-right: 25px;
  margin-top: 10px;
}
@media (max-width: 375px) {
  .access-map {
    width: 96.62%;
    width: 100%;
    margin: 0 auto;
    height: auto;
  }
}
@media (min-width: 376px) and (max-width: 767px) {
  .access-map {
    margin: 30px auto 10px;
    width: 100%;
    height: 240px;
  }
}

.iframe-wrap {
  width: 100%;
  padding-top: 71.6253443526%;
  position: relative;
  height: 100%;
}
.iframe-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
@media (min-width: 376px) and (max-width: 767px) {
  .iframe-wrap iframe {
    height: 240px;
  }
}

/*=====================================================================================
  # contact
  ======================================================================================= */
.contact {
  background: url(../img/contact-bg@2x.png) no-repeat center center/cover;
  max-width: 100%;
  margin: 120px auto 0;
  padding-top: 60px;
  padding-bottom: 60px;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
}
@media (max-width: 375px) {
  .contact {
    margin: 0 auto;
    padding-top: 40px;
    padding-bottom: 40px;
  }
}
@media (min-width: 376px) and (max-width: 767px) {
  .contact {
    margin: 0 auto;
    padding-top: 40px;
  }
}

.contact-inner {
  max-width: 960px;
  margin: 0 auto;
}
@media (max-width: 375px) {
  .contact-inner {
    padding-left: 16px;
    padding-right: 16px;
  }
}
@media (min-width: 376px) and (max-width: 767px) {
  .contact-inner {
    padding-left: 16px;
    padding-right: 16px;
  }
}

.contact-head {
  text-align: center;
  color: #fff;
  line-height: 1.2;
  background: url(../img/contact1.png);
  height: 196px;
  max-width: 960px;
  width: 100%;
  border-radius: 12px;
}
@media (max-width: 375px) {
  .contact-head {
    height: 163px;
  }
}
@media (min-width: 376px) and (max-width: 767px) {
  .contact-head {
    height: 163px;
  }
}
.contact-head h2 {
  padding-top: 60px;
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-size: 36px;
}
@media (max-width: 375px) {
  .contact-head h2 {
    font-size: 30px;
    padding-top: 40px;
  }
}
@media (min-width: 376px) and (max-width: 767px) {
  .contact-head h2 {
    font-size: 30px;
    padding-top: 40px;
  }
}
.contact-head p {
  padding-top: 16px;
}
@media (max-width: 375px) {
  .contact-head p {
    font-size: 14px;
    padding-top: 12px;
    padding-right: 16px;
    padding-left: 16px;
    line-height: 1.4285714286;
    -moz-text-align-last: left;
         text-align-last: left;
  }
}
@media (min-width: 376px) and (max-width: 767px) {
  .contact-head p {
    font-size: 14px;
    padding-top: 12px;
    padding-right: 16px;
    padding-left: 16px;
    line-height: 1.4285714286;
    -moz-text-align-last: left;
         text-align-last: left;
  }
}

.contact-form {
  max-width: 100%;
  background: #fff;
  padding: 60px 120px 60px 70px;
  margin: 0 auto;
  border-radius: 0 0 12px 12px;
}
@media (max-width: 375px) {
  .contact-form {
    padding: 40px 12px;
  }
}
@media (min-width: 376px) and (max-width: 767px) {
  .contact-form {
    padding-left: 12px;
    padding-right: 12px;
    padding-top: 40px;
  }
}

.contact-form-inner {
  padding-left: 50px;
}

.contact-form-dl {
  margin: 0;
  padding-left: 50px;
}
@media (max-width: 375px) {
  .contact-form-dl {
    padding-left: 0;
  }
}
@media (min-width: 376px) and (max-width: 767px) {
  .contact-form-dl {
    padding-left: 0;
  }
}

.contact-form-row {
  display: flex;
}
@media (max-width: 375px) {
  .contact-form-row {
    display: block;
  }
}
@media (min-width: 376px) and (max-width: 767px) {
  .contact-form-row {
    display: block;
  }
}
.contact-form-row:not(:first-child) {
  margin-top: 23px;
  justify-content: space-between;
}
@media (max-width: 375px) {
  .contact-form-row:not(:first-child) {
    margin-top: 32px;
  }
}
@media (min-width: 376px) and (max-width: 767px) {
  .contact-form-row:not(:first-child) {
    margin-top: 32px;
  }
}

.contact-form-label {
  padding: 15px 0 0;
  margin: 0;
  line-height: 1;
}
@media (max-width: 375px) {
  .contact-form-label {
    width: 100%;
    padding: 0;
  }
}
@media (min-width: 376px) and (max-width: 767px) {
  .contact-form-label {
    width: 100%;
    padding: 0;
  }
}
.contact-form-label label {
  font-weight: 700;
}
.contact-form-label label.is-reqired {
  display: inline-block;
  position: relative;
}
.contact-form-label label.is-reqired::after {
  content: "必須";
  font-size: 12px;
  color: #fff;
  background: #E81919;
  text-align: center;
  border-radius: 2px;
  padding: 0px 8px;
  line-height: 1;
  margin-left: 10px;
}
@media (max-width: 375px) {
  .contact-form-label label.is-reqired::after {
    top: 50%;
    transform: translateY(-50%);
    left: calc(100% + 6px);
    width: 44px;
  }
}
@media (min-width: 376px) and (max-width: 767px) {
  .contact-form-label label.is-reqired::after {
    top: 50%;
    transform: translateY(-50%);
    left: calc(100% + 6px);
    width: 44px;
  }
}

.arr :nth-child(2) {
  width: 178px;
  margin-left: 60px;
}
@media (max-width: 375px) {
  .arr :nth-child(2) {
    width: 100%;
    margin-left: 0;
    margin-top: 16px;
  }
}
@media (min-width: 376px) and (max-width: 767px) {
  .arr :nth-child(2) {
    width: 100%;
    margin-left: 0;
    margin-top: 16px;
  }
}

#contact-form-row-message {
  margin-top: 16px;
}

.contact-form-input {
  width: 73.9%;
  margin: 0;
  padding: 0;
}
@media (max-width: 375px) {
  .contact-form-input {
    width: 100%;
  }
}
@media (min-width: 376px) and (max-width: 767px) {
  .contact-form-input {
    width: 100%;
  }
}
.contact-form-input [type=text] {
  box-shadow: none;
  border: 1px solid #707070;
  background: #fff;
  padding: 10px 16px 5px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border-radius: 0;
  color: inherit;
  font-family: inherit;
  font-size: 16px;
  width: 100%;
  border: none;
  border-bottom: 1px solid #707070;
}
@media (max-width: 375px) {
  .contact-form-input [type=text] {
    padding: 12px 0 0;
  }
}
@media (min-width: 376px) and (max-width: 767px) {
  .contact-form-input [type=text] {
    padding: 12px 0 0;
  }
}
.contact-form-input [type=email] {
  box-shadow: none;
  border: 1px solid #707070;
  background: #fff;
  padding: 10px 16px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border-radius: 0;
  color: inherit;
  font-family: inherit;
  font-size: 14px;
  width: 100%;
  border: none;
  border-bottom: 1px solid #707070;
}
@media (max-width: 375px) {
  .contact-form-input [type=email] {
    padding: 12px 0 0;
  }
}
@media (min-width: 376px) and (max-width: 767px) {
  .contact-form-input [type=email] {
    padding: 12px 0 0;
  }
}
.contact-form-input select {
  box-shadow: none;
  border: 1px solid #707070;
  background: #fff url(../img/select-arrow.svg) no-repeat right 12px center/17px 14px;
  padding: 10px 16px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border-radius: 0;
  color: inherit;
  font-family: inherit;
  font-size: 14px;
  width: 100%;
}
.contact-form-input select:hover {
  box-shadow: 0px 0px 5px rgba(73, 115, 255, 0.5019607843);
}
@media (max-width: 375px) {
  .contact-form-input select {
    padding: 12px;
    padding: 8px 12px;
  }
}
@media (min-width: 376px) and (max-width: 767px) {
  .contact-form-input select {
    padding: 12px;
    padding: 8px 12px;
  }
}
.contact-form-input textarea {
  height: 200px;
  box-shadow: none;
  border: 1px solid #707070;
  background: #fff;
  padding: 10px 16px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border-radius: 0;
  color: inherit;
  font-family: inherit;
  font-size: 14px;
  width: 90%;
  resize: none;
  margin-top: 6px;
  width: 100%;
}
@media (max-width: 375px) {
  .contact-form-input textarea {
    margin-top: 16px;
    height: 160px;
  }
}
@media (min-width: 376px) and (max-width: 767px) {
  .contact-form-input textarea {
    margin-top: 16px;
  }
}

#contact-form-input-message {
  width: 100%;
}

.contact-form-noflex {
  display: block;
}

.contact-form-radio {
  margin-top: 16px;
  display: flex;
  align-items: center;
}
@media (max-width: 375px) {
  .contact-form-radio {
    margin-top: 20px;
    display: block;
  }
}
@media (min-width: 376px) and (max-width: 767px) {
  .contact-form-radio {
    margin-top: 20px;
    display: block;
  }
}
.contact-form-radio [type=radio] {
  display: none;
}
.contact-form-radio span {
  display: inline-block;
  padding-left: 26px;
  position: relative;
  margin-right: 36px;
}
@media (max-width: 375px) {
  .contact-form-radio span {
    margin-bottom: 8px;
    margin-right: 33px;
  }
}
@media (min-width: 376px) and (max-width: 767px) {
  .contact-form-radio span {
    margin-bottom: 8px;
    margin-right: 33px;
  }
}
.contact-form-radio span::before {
  content: "";
  width: 12px;
  height: 12px;
  border: 1px solid #707070;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background: #fff;
  border-radius: 50%;
}
.contact-form-radio span::after {
  content: "";
  width: 6px;
  height: 6px;
  background: #3b69ff;
  position: absolute;
  left: 3px;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 50%;
  display: none;
}
.contact-form-radio [type=radio]:checked + span::after {
  display: block;
}

.contact-form-radio-box {
  margin-left: 156px;
}
@media (max-width: 375px) {
  .contact-form-radio-box {
    margin-left: 0;
    margin-top: 16px;
  }
}
@media (min-width: 376px) and (max-width: 767px) {
  .contact-form-radio-box {
    margin-left: 0;
    margin-top: 16px;
  }
}

.contact-form-check {
  margin-top: 30px;
  padding-left: 50px;
}
@media (max-width: 375px) {
  .contact-form-check {
    margin-top: 20px;
    padding-left: 0;
  }
}
@media (min-width: 376px) and (max-width: 767px) {
  .contact-form-check {
    margin-top: 20px;
    padding-left: 0;
  }
}
.contact-form-check [type=checkbox] {
  display: none;
}
.contact-form-check span {
  display: inline-block;
  padding-left: 40px;
  position: relative;
}
@media (max-width: 375px) {
  .contact-form-check span {
    padding-left: 38px;
  }
}
@media (min-width: 376px) and (max-width: 767px) {
  .contact-form-check span {
    padding-left: 38px;
  }
}
.contact-form-check span::before {
  content: "";
  width: 21px;
  height: 21px;
  border: 1px solid #707070;
  background: #fff;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
@media (max-width: 375px) {
  .contact-form-check span::before {
    width: 18px;
    height: 18px;
  }
}
@media (min-width: 376px) and (max-width: 767px) {
  .contact-form-check span::before {
    width: 18px;
    height: 18px;
  }
}
.contact-form-check span::after {
  content: "";
  width: 18px;
  height: 8px;
  position: absolute;
  top: 25%;
  left: 2%;
  border-left: 2px solid #3b69ff;
  border-bottom: 2px solid #3b69ff;
  transform: rotate(-45deg);
  display: none;
}
@media (max-width: 375px) {
  .contact-form-check span::after {
    width: 15.05px;
    height: 11.31px;
    left: 0.5%;
  }
}
@media (min-width: 376px) and (max-width: 767px) {
  .contact-form-check span::after {
    width: 15.05px;
    height: 11.31px;
    left: 0.5%;
  }
}
.contact-form-check [type=checkbox]:checked + span::after {
  display: block;
}
.contact-form-check a {
  font-weight: 700;
  transition: all 0.3s ease 0s;
  font-size: 18px;
}
@media (max-width: 375px) {
  .contact-form-check a {
    font-size: 16px;
  }
}
.contact-form-check a:hover {
  opacity: 0.7;
}

.contact-form-button {
  margin-top: 30px;
  text-align: left;
  padding-left: 50px;
}
@media (max-width: 375px) {
  .contact-form-button {
    text-align: center;
    padding-left: 0;
  }
}
@media (min-width: 376px) and (max-width: 767px) {
  .contact-form-button {
    text-align: center;
    padding-left: 0;
  }
}
.contact-form-button [type=submit] {
  width: 173px;
  height: 50px;
  line-height: 50px;
  display: inline-block;
  color: #fff;
  font-weight: 600;
  border-radius: 8px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
  background: #FFAA3B;
  font-size: 18px;
  cursor: pointer;
  transition: all 0.3s ease 0s;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
}
@media (max-width: 375px) {
  .contact-form-button [type=submit] {
    width: 165px;
    height: 48px;
  }
}
@media (min-width: 376px) and (max-width: 767px) {
  .contact-form-button [type=submit] {
    width: 165px;
    height: 48px;
  }
}
.contact-form-button [type=submit]:hover {
  opacity: 0.7;
}

/*=====================================================================================
# footer
======================================================================================= */
.footer {
  max-width: 100%;
  background: #3e3e3e;
  margin: 0 auto;
  color: #fff;
}

.footer-inner {
  max-width: 960px;
  margin: 0 auto;
}
@media (max-width: 375px) {
  .footer-inner {
    width: 100%;
  }
}
@media (min-width: 376px) and (max-width: 767px) {
  .footer-inner {
    width: 100%;
    padding: 20px;
    text-align: center;
  }
}

.footer-content {
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 60px 0;
}
@media (max-width: 375px) {
  .footer-content {
    display: block;
    padding-top: 60px;
    padding-bottom: 57px;
  }
}
@media (min-width: 376px) and (max-width: 767px) {
  .footer-content {
    display: block;
  }
}

.footer-left {
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
}
@media (max-width: 375px) {
  .footer-left {
    width: 100%;
  }
}

.footer-sns {
  display: flex;
  align-items: center;
}
.footer-sns li:nth-child(1) {
  margin-right: 32px;
}
@media (max-width: 375px) {
  .footer-sns li:nth-child(1) {
    margin-right: 50px;
  }
}
.footer-sns img {
  width: 36px;
}
@media (max-width: 375px) {
  .footer-sns {
    width: 100%;
    justify-content: center;
  }
}
@media (min-width: 376px) and (max-width: 767px) {
  .footer-sns {
    justify-content: center;
  }
}

.size {
  font-size: 36px;
}

.footer-logo {
  margin-top: 14px;
}
.footer-logo:first-child {
  margin-top: 32px;
}
@media (max-width: 375px) {
  .footer-logo {
    text-align: center;
  }
  .footer-logo:first-child {
    margin-top: 42px;
    line-height: 1;
  }
  .footer-logo:not(:first-child) {
    margin-top: 26px;
    line-height: 1;
  }
}

@media (max-width: 375px) {
  .footer-logo-box {
    font-size: 14px;
  }
}

@media (max-width: 375px) {
  .footer-right {
    width: 100%;
    text-align: center;
    font-size: 32px;
    margin-top: 42px;
  }
}

.footer-copy h2 {
  font-size: 40px;
  margin: 0;
  line-height: 1.2;
}
@media (max-width: 375px) {
  .footer-copy h2 {
    font-size: 32px;
    line-height: 1;
  }
}
.footer-copy p {
  font-size: 12px;
  letter-spacing: 0.3px;
  text-align: right;
  margin-top: 10px;
  opacity: 60%;
}
@media (max-width: 375px) {
  .footer-copy p {
    text-align: center;
    line-height: 1;
    padding-top: 16px;
    padding-bottom: 5px;
    margin-top: 0;
  }
}
@media (min-width: 376px) and (max-width: 767px) {
  .footer-copy p {
    text-align: center;
    line-height: 1;
    padding-top: 16px;
    padding-bottom: 5px;
    margin-top: 0;
  }
}

/*=====================================================================================
# totop
======================================================================================= */
.to-top {
  position: fixed;
  right: 40px;
  bottom: 47px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease 0s;
  z-index: 3000;
}
@media (max-width: 375px) {
  .to-top {
    right: 16px;
    bottom: 16px;
  }
}
.to-top.is-show {
  opacity: 1;
  visibility: visible;
}
.to-top a {
  text-decoration: none;
  transition: all 0.3s ease 0s;
}
.to-top a:hover {
  opacity: 0.7;
}
.to-top a img {
  width: 50px;
}
@media (max-width: 375px) {
  .to-top a img {
    width: 50px;
  }
}

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

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