@charset "UTF-8";
*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  padding: 0;
  margin: 0;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

body {
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  background: #fff;
  color: #333;
}

img {
  max-width: 100%;
  height: auto;
}

.inner {
  width: 1200px;
  max-width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .inner {
    padding: 0 16px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .inner {
    padding: 0 24px;
  }
}

.header {
  background: #3F51B5;
  height: 100px;
  position: fixed;
  width: 100%;
  box-shadow: 0 3px 3px 3px rgba(0, 0, 0, 0.16);
  z-index: 100;
  top: 0;
  left: 0;
}
@media screen and (max-width: 767px) {
  .header {
    height: 60px;
  }
}

.header__inner {
  display: flex;
  align-items: center;
  height: inherit;
}

.header__logo {
  width: 205px;
}
@media screen and (max-width: 767px) {
  .header__logo {
    width: 182px;
  }
}
.header__logo img {
  display: block;
}

.header__nav {
  display: flex;
  align-items: center;
  margin-left: auto;
}
@media screen and (max-width: 767px) {
  .header__nav {
    display: none;
  }
}
.header__nav li:not(:first-child) {
  margin-left: 40px;
}
.header__nav a {
  color: #fff;
  position: relative;
}
.header__nav a::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 100%;
  height: 2px;
  background: transparent;
  transition: all 0.3s ease 0s;
}
.header__nav a:hover::after, .header__nav a.is-active::after {
  background: #E81919;
}

.top {
  height: 600px;
  width: 100%;
  background: url(../../img/mainvisual.png) no-repeat center center/cover;
  position: relative;
  margin-top: 100px;
}
@media screen and (max-width: 767px) {
  .top {
    margin-top: 60px;
  }
}

.top__content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.top__title {
  font-size: 64px;
  font-weight: 700;
  line-height: 1.3;
}
@media screen and (max-width: 767px) {
  .top__title {
    font-size: 32px;
  }
}

.top__lead {
  font-size: 24px;
  font-weight: 700;
  margin-top: 24px;
}
@media screen and (max-width: 767px) {
  .top__lead {
    font-size: 18px;
    margin-top: 10px;
  }
}

.top__button {
  margin-top: 30px;
}

.card {
  background: #EFEFEF;
}

.card__items {
  margin-top: 80px;
  display: flex;
  flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
  .card__items {
    margin-top: 42px;
  }
}

.card__item {
  background-color: #fff;
  padding: 16px;
  border-radius: 4px;
}
@media screen and (min-width: 1200px) {
  .card__item {
    width: calc(33.3% - 16px);
  }
  .card__item:not(:nth-child(3n+1)) {
    margin-left: 24px;
  }
  .card__item:nth-child(n+4) {
    margin-top: 24px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .card__item {
    width: calc(50% - 12px);
  }
  .card__item:not(:nth-child(2n+1)) {
    margin-left: 24px;
  }
  .card__item:nth-child(n+3) {
    margin-top: 24px;
  }
}
@media screen and (max-width: 767px) {
  .card__item {
    width: 100%;
  }
  .card__item:not(:nth-child(3n+1)) {
    margin-left: 0;
  }
  .card__item:nth-child(n+2) {
    margin-top: 24px;
  }
}

.card__img img {
  width: 100%;
}

.card__title {
  margin-top: 14px;
  font-size: 20px;
  font-weight: 700;
  color: #6F7579;
}

.card__text {
  margin-top: 14px;
  font-weight: 700;
  color: #6F7579;
  line-height: 1.5;
}

.news {
  background: #FFFFFF;
}

.news__items {
  margin: 80px auto 0;
  width: 800px;
  max-width: 100%;
}
@media screen and (max-width: 767px) {
  .news__items {
    margin-top: 40px;
  }
}

.news__item {
  display: flex;
  padding: 20px 12px;
}
.news__item:not(:first-child) {
  border-top: 1px solid #707070;
}
@media screen and (max-width: 767px) {
  .news__item {
    display: block;
  }
}

.news__meta {
  display: flex;
  width: 185px;
}

.news__date {
  width: 105px;
  margin-top: 3px;
}

.news__label a {
  display: inline-block;
  width: 80px;
  height: 32px;
  line-height: 32px;
  color: #fff;
  text-align: center;
  background-color: #666666;
  border-radius: 4px;
  font-weight: 700;
  transition: all 0.3s ease 0s;
}
.news__label a.is-blue {
  background: #3F51B5;
}
.news__label a.is-red {
  background: #E81919;
}
.news__label a:hover {
  opacity: 0.7;
}

.news__title {
  width: calc(100% - 185px);
  padding-left: 20px;
  padding-top: 3px;
}
.news__title a {
  line-height: 1.25;
  transition: all 0.3s ease 0s;
}
.news__title a:hover {
  opacity: 0.7;
}
@media screen and (max-width: 767px) {
  .news__title {
    width: 100%;
    padding-left: 0;
    padding-top: 0;
    margin-top: 6px;
  }
}

.news__more {
  margin-top: 60px;
  text-align: center;
}
.news__more a {
  color: #E81919;
  font-weight: 700;
  padding-right: 14px;
  position: relative;
  transition: all 0.3s ease 0s;
}
.news__more a::after {
  content: "";
  width: 7px;
  height: 11px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  background: url(../../img/news-arrow.png) no-repeat center/contain;
}
.news__more a:hover {
  opacity: 0.7;
}
@media screen and (max-width: 767px) {
  .news__more {
    margin-top: 30px;
  }
}

.price {
  background: #EFEFEF;
}

.price__content {
  display: flex;
  margin-top: 80px;
}
@media screen and (max-width: 767px) {
  .price__content {
    display: block;
    margin-top: 40px;
  }
}

.price__image {
  width: 37.8333333333%;
}
@media screen and (max-width: 767px) {
  .price__image {
    width: 100%;
  }
}

.price__table {
  width: 58.5%;
  margin-left: auto;
}
@media screen and (max-width: 767px) {
  .price__table {
    width: 100%;
    margin-top: 24px;
  }
}

.table {
  border-collapse: collapse;
  border: 1px solid #707070;
  background-color: #fff;
  width: 100%;
  table-layout: fixed;
}
.table th,
.table td {
  border: 1px solid #707070;
  font-weight: 700;
  padding: 0 24px;
  height: 58px;
  vertical-align: middle;
}
.table th {
  background-color: #999999;
  color: #fff;
}
.table th:nth-child(1) {
  width: 172px;
}
@media screen and (max-width: 767px) {
  .table th:nth-child(1) {
    width: 112px;
  }
}
.table td {
  text-align: right;
}
.table strong {
  color: red;
  line-height: 1.2;
}
.table span {
  display: block;
}

.price__attention {
  font-size: 14px;
  margin-top: 10px;
}
.price__attention a {
  font-weight: 700;
  transition: all 0.3s ease 0s;
}
.price__attention a:hover {
  opacity: 0.7;
}

.access__map {
  margin: 80px auto 0;
  width: 800px;
  max-width: 100%;
}
@media screen and (max-width: 767px) {
  .access__map {
    margin-top: 40px;
  }
}

.access__wrap {
  width: 100%;
  padding-top: 50%;
  position: relative;
}
.access__wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.access__info {
  margin: 16px auto 0;
  width: 800px;
  max-width: 100%;
}

.access__info-row {
  display: flex;
  align-items: center;
}
.access__info-row:not(:first-child) {
  margin-top: 16px;
}
.access__info-row dt {
  margin: 0;
  padding: 0;
  font-weight: 700;
  width: 104px;
}
.access__info-row dd {
  margin: 0;
  padding: 0;
  width: calc(100% - 104px);
}

.access__button {
  text-align: center;
}
.access__button a {
  display: inline-block;
  font-weight: 700;
  width: 304px;
  padding: 16px 12px;
  text-align: center;
  color: #fff;
  border-radius: 8px;
  background: #3F51B5;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  position: relative;
  transition: all 0.3s ease 0s;
}
.access__button a:hover {
  opacity: 0.7;
}
.access__button a:after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 12px;
  width: 17px;
  height: 16px;
  background: url(../../img/button-arrow.png) no-repeat center/contain;
}

.contact {
  background: #EFEFEF;
}

.contact__form {
  margin: 80px auto;
  width: 800px;
  max-width: 100%;
  background: #FFFFFF;
  padding: 60px;
}
@media screen and (max-width: 767px) {
  .contact__form {
    margin-top: 40px;
    padding: 24px;
  }
}

.contact-form__row {
  display: flex;
}
@media screen and (max-width: 767px) {
  .contact-form__row {
    display: block;
  }
}
.contact-form__row:not(:first-child) {
  margin-top: 60px;
}
@media screen and (max-width: 767px) {
  .contact-form__row:not(:first-child) {
    margin-top: 30px;
  }
}

.contact-form__label {
  width: 160px;
  padding: 5px 0 0;
  margin: 0;
}
@media screen and (max-width: 767px) {
  .contact-form__label {
    width: 100%;
  }
}
.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: "必須";
  position: absolute;
  top: calc(100% + 2px);
  left: 0;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  background: #E81919;
  text-align: center;
  border-radius: 4px;
  padding: 2px 8px;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .contact-form__label label.is-reqired::after {
    top: 50%;
    transform: translateY(-50%);
    left: calc(100% + 6px);
    width: 44px;
  }
}

.contact-form__input {
  margin: 0;
  padding: 0;
  width: calc(100% - 160px);
}
@media screen and (max-width: 767px) {
  .contact-form__input {
    width: 100%;
    margin-top: 5px;
  }
}
.contact-form__input [type=text] {
  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%;
}
.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%;
}
.contact-form__input select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border-radius: 0;
  box-shadow: none;
  border: 1px solid #707070;
  padding: 12px 16px;
  color: inherit;
  font-family: inherit;
  font-size: 14px;
  width: 100%;
  background: url(../../img/select-arrow.png) #fff no-repeat right 12px center/17px 14px;
}
.contact-form__input textarea {
  height: 240px;
  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%;
  resize: none;
}

.contact-form__radio {
  margin-top: 33px;
}
@media screen and (max-width: 767px) {
  .contact-form__radio {
    margin-top: 26px;
  }
}
.contact-form__radio [type=radio] {
  display: none;
}
.contact-form__radio span {
  display: inline-block;
  padding-left: 26px;
  position: relative;
  margin-right: 36px;
}
@media screen and (max-width: 767px) {
  .contact-form__radio span {
    margin-bottom: 8px;
    margin-right: 20px;
  }
}
.contact-form__radio span::before {
  content: "";
  width: 20px;
  height: 20px;
  border: 1px solid #707070;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 50%;
}
.contact-form__radio span::after {
  content: "";
  width: 10px;
  height: 10px;
  background: #3F51B5;
  position: absolute;
  left: 5px;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 50%;
  display: none;
}
.contact-form__radio [type=radio]:checked + span::after {
  display: block;
}

.contact-form__check {
  margin-top: 63px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .contact-form__check {
    margin-top: 30px;
  }
}
.contact-form__check [type=checkbox] {
  display: none;
}
.contact-form__check span {
  display: inline-block;
  padding-left: 49px;
  position: relative;
}
.contact-form__check span::before {
  content: "";
  width: 25px;
  height: 25px;
  background: #fff;
  border: 1px solid #707070;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
}
.contact-form__check span::after {
  content: "";
  width: 20px;
  height: 20px;
  position: absolute;
  left: 3px;
  top: 50%;
  transform: translateY(-50%);
  background: #fff url(../../img/checkbox.png) no-repeat center center/contain;
  display: none;
}
.contact-form__check span a {
  font-weight: 700;
  text-decoration: underline;
  transition: all 0.3s ease 0s;
}
.contact-form__check span a:hover {
  opacity: 0.7;
}
.contact-form__check [type=checkbox]:checked + span::after {
  display: block;
}

.contact-form__button {
  margin-top: 30px;
  text-align: center;
}
.contact-form__button [type=submit] {
  background: #3F51B5 url(../../img/button-arrow.png) no-repeat right 12px center/17px 16px;
  width: 304px;
  display: inline-block;
  font-weight: 700;
  color: #fff;
  padding: 14px;
  border-radius: 8px;
  box-shadow: 3px 6px rgba(0, 0, 0, 0.16);
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  font-family: inherit;
  border: none;
  font-size: inherit;
  cursor: pointer;
  transition: all 0.3s ease 0s;
}
.contact-form__button [type=submit]:hover {
  opacity: 0.7;
}

.footer {
  background: linear-gradient(to bottom, #666666, #333);
  padding: 60px 0 24px;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .footer {
    padding: 30px 0 14px;
  }
}

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

.footer__left {
  width: 36%;
}
@media screen and (max-width: 767px) {
  .footer__left {
    width: 100%;
  }
}

.footer__logo img {
  width: 205px;
}

.footer__address,
.footer__tel {
  font-size: 14px;
}

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

.footer__tel {
  margin-top: 14px;
}
@media screen and (max-width: 767px) {
  .footer__tel {
    margin-top: 6px;
  }
}

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

.footer__nav {
  display: flex;
}
@media screen and (max-width: 767px) {
  .footer__nav {
    justify-content: center;
  }
}
.footer__nav a {
  transition: all 0.3s ease 0s;
}
.footer__nav a:hover {
  opacity: 0.7;
}
.footer__nav li:not(:first-child) {
  margin-left: 40px;
}
@media screen and (max-width: 767px) {
  .footer__nav li:not(:first-child) {
    margin-left: 20px;
  }
}

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

.footer__sns {
  display: flex;
  justify-content: flex-end;
}
@media screen and (max-width: 767px) {
  .footer__sns {
    justify-content: center;
  }
}
.footer__sns a {
  transition: all 0.3s ease 0s;
}
.footer__sns a:hover {
  opacity: 0.7;
}
.footer__sns li:not(:first-child) {
  margin-left: 16px;
}
.footer__sns img {
  width: 30px;
}

.footer__copy {
  text-align: center;
  font-size: 14px;
  margin-top: 46px;
}
@media screen and (max-width: 767px) {
  .footer__copy {
    margin-top: 22px;
  }
}

.to-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
}
.to-top a {
  transition: all 0.3s ease 0s;
}
.to-top a:hover {
  opacity: 0.7;
}
.to-top img {
  width: 60px;
}
@media screen and (max-width: 767px) {
  .to-top img {
    width: 40px;
    right: 12px;
    bottom: 12px;
  }
}

.c-btn {
  display: inline-block;
  width: 390px;
  max-width: 100%;
  height: 80px;
  line-height: 83px;
  font-size: 32px;
  font-weight: 700;
  text-align: center;
  color: #fff;
  background-color: #3F51B5;
  border-radius: 12px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  transition: all 0.3s ease 0s;
}
@media screen and (max-width: 767px) {
  .c-btn {
    width: 280px;
    height: 60px;
    line-height: 60px;
    font-size: 23px;
  }
}
.c-btn:hover {
  opacity: 0.7;
}

.c-title {
  font-size: 48px;
  font-weight: 700;
  text-align: center;
  padding-bottom: 28px;
  position: relative;
}
.c-title::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  width: 60px;
  height: 4px;
  background-color: #3F51B5;
}
@media screen and (max-width: 767px) {
  .c-title::after {
    width: 42px;
    height: 3px;
  }
}
@media screen and (max-width: 767px) {
  .c-title {
    font-size: 26px;
    padding-bottom: 18px;
  }
}

.c-section {
  padding: 100px 0 120px;
}
@media screen and (max-width: 767px) {
  .c-section {
    padding: 50px 0 60px;
  }
}