@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Lato:wght@400;700&family=Noto+Sans+JP:wght@400;700&display=swap");
body {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  background-color: #fff;
}

.inner {
  width: 1200px;
  max-width: 100%;
  margin: 0 auto;
}

.header {
  position: fixed;
  width: 100%;
  background: #3f51b5;
  height: 100px;
  -webkit-box-shadow: 0px 3px 3px rgba(0, 0, 0, 0.16);
          box-shadow: 0px 3px 3px rgba(0, 0, 0, 0.16);
  z-index: 100;
  top: 0;
  left: 0;
}
.header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: inherit;
}
.header__logo {
  width: 205px;
}
.header__logo img {
  display: block;
}
.header__nav {
  font-family: "Lato", sans-serif;
}
.header__nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.header__nav-item + .header__nav-item {
  margin-left: 42px;
}
.header__nav a {
  position: relative;
  color: #ffffff;
}
.header__nav a::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 100%;
  height: 2px;
  background: #e81919;
  background: transparent;
  -webkit-transition: all 0.3s ease 0;
  transition: all 0.3s ease 0;
}
.header__nav a:hover::after, .header__nav a.is-active::after {
  background: #e81919;
}

.drawer-icon {
  position: fixed;
  top: 24px;
  right: 16px;
  z-index: 300;
}
@media screen and (min-width: 1199px) {
  .drawer-icon {
    display: none;
  }
}
.drawer-icon.is-active .drawer-icon__bar1 {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  top: 8px;
}
.drawer-icon.is-active .drawer-icon__bar2 {
  display: none;
}
.drawer-icon.is-active .drawer-icon__bar3 {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  top: 8px;
}
.drawer-icon.is-active.drawer-icon {
  -webkit-transform: translateX(-200px);
          transform: translateX(-200px);
}
.drawer-icon__bars {
  width: 22px;
  height: 20px;
  display: block;
  position: relative;
}
.drawer-icon__bar1, .drawer-icon__bar2, .drawer-icon__bar3 {
  position: absolute;
  width: 22px;
  height: 4px;
  background: #ffffff;
  top: 0;
  left: 0;
}
.drawer-icon__bar1 {
  top: 0;
}
.drawer-icon__bar2 {
  top: 8px;
}
.drawer-icon__bar3 {
  top: 16px;
}

.drawer-contents {
  width: 200px;
  height: 100%;
  position: fixed;
  top: 0;
  right: 0;
  background: #ffffff;
  -webkit-box-shadow: 0 0 3px rgba(0, 0, 0, 0.16);
          box-shadow: 0 0 3px rgba(0, 0, 0, 0.16);
  z-index: 299;
  -webkit-transform: translateX(105%);
          transform: translateX(105%);
}
.drawer-contents.is-active {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
.drawer-contents__item {
  border-bottom: dotted #707070;
}
.drawer-contents__item a {
  display: block;
  color: #707070;
  padding: 18px 20px;
  position: relative;
}
.drawer-contents__item a::after {
  content: "";
  position: absolute;
  right: 20px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 8px;
  height: 11px;
  background: url(../img/arrow-b.png) no-repeat center center/contain;
}

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

.fv {
  background: url(../img/mainvisual.png) no-repeat center center/cover;
  width: 100%;
  height: 600px;
  position: relative;
  margin-top: 100px;
}
.fv__contents {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  text-align: center;
  width: 100%;
}
.fv__title {
  font-size: 64px;
  font-weight: bold;
  line-height: 1.3;
}
.fv__lead {
  font-size: 24px;
  font-weight: bold;
  margin-top: 15px;
}
.fv__button {
  margin-top: 30px;
}
.fv__button-text {
  display: inline-block;
  width: 384px;
  max-width: 100%;
  height: 72px;
  line-height: 72px;
  font-size: 24px;
  font-weight: bold;
  color: #ffffff;
  background: #3f51b5;
  border-radius: 8px;
  -webkit-box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
          box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
  -webkit-transition: all 0.3s ease 0;
  transition: all 0.3s ease 0;
}
.fv__button-text:hover {
  opacity: 0.7;
}

.swiper-button-prev {
  width: 40px;
  height: 40px;
  margin-top: -20px;
  background: transparent url(../img/arrow-prev.png) no-repeat center center/contain;
  left: calc(50% - 600px);
}
.swiper-button-prev::after {
  display: none;
}
@media screen and (min-width: 768px) and (max-width: 1200px) {
  .swiper-button-prev {
    left: 10px;
  }
}
@media screen and (max-width: 767px) {
  .swiper-button-prev {
    left: 10px;
  }
}
.swiper-button-next {
  width: 40px;
  height: 40px;
  margin-top: -20px;
  background: transparent url(../img/arrow-next.png) no-repeat center center/contain;
  right: calc(50% - 600px);
}
.swiper-button-next::after {
  display: none;
}
@media screen and (min-width: 768px) and (max-width: 1200px) {
  .swiper-button-next {
    right: 10px;
  }
}
@media screen and (max-width: 767px) {
  .swiper-button-next {
    right: 10px;
  }
}
.swiper-pagination-bullet {
  width: 16px;
  height: 16px;
  background: #ffffff;
  opacity: 1;
}
.swiper-pagination-bullet-active {
  background: #2F7DC8;
}
.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 8px;
}

.section {
  padding: 85px 0 120px;
  background: #ffffff;
}
.section__head {
  font-size: 48px;
  font-weight: bold;
  text-align: center;
  position: relative;
  font-family: "Lato", sans-serif;
}
.section__head::after {
  content: "";
  position: absolute;
  bottom: -12px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: #3f51b5;
}

.card {
  background: #EFEFEF;
}
.card__contents {
  margin-top: 92px;
}
.card__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px 24px;
}
.card__item {
  background: #ffffff;
  padding: 16px;
  border-radius: 4px;
}
.card__item img {
  width: 100%;
}
.card__title {
  font-size: 20px;
  font-weight: bold;
  color: #6F7579;
  margin: 10px 0 6px;
}
.card__text {
  font-size: 16px;
  font-weight: bold;
  color: #6F7579;
  line-height: 1.5;
}

.news {
  background: #ffffff;
}
.news__contents {
  margin: 72px auto 0;
  width: 800px;
  max-width: 100%;
}
.news__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 20px 0 12px;
}
.news__item + .news__item {
  border-top: 1px solid #707070;
}
.news__meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 185px;
}
.news__date {
  width: 105px;
  padding-top: 3px;
  font-family: "Lato", sans-serif;
}
.news__link {
  display: inline-block;
  width: 80px;
  height: 32px;
  line-height: 32px;
  color: #ffffff;
  background: #666666;
  border-radius: 4px;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.news__link:hover {
  opacity: 0.7;
}
.news__link-blue {
  background: #3f51b5;
}
.news__link-red {
  background: #e81919;
}
.news__title {
  width: calc(100% - 185px);
  padding: 3px 0 0 20px;
}
.news__title a {
  line-height: 1;
  -webkit-transition: all 0.3s ease 0;
  transition: all 0.3s ease 0;
}
.news__title a:hover {
  opacity: 0.7;
}
.news__more {
  margin-top: 35px;
  text-align: center;
  font-family: "Lato", sans-serif;
}
.news__more a {
  color: #e81919;
  font-weight: bold;
  padding-right: 14px;
  position: relative;
  -webkit-transition: all 0.3s ease 0;
  transition: all 0.3s ease 0;
}
.news__more a:hover {
  opacity: 0.7;
}
.news__more a::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 7px;
  height: 11px;
  background: url(../img/news-arrow.png) no-repeat center center/contain;
  margin-top: 1.5px;
}

.price {
  background: #EFEFEF;
}
.price__contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 95px;
}
.price__img {
  width: 37.8333333333%;
}
.price__table {
  width: 59%;
  margin-left: auto;
}
.price__attention {
  font-size: 14px;
  margin-top: 10px;
  line-height: 1.2;
}
.price__attention a {
  font-weight: bold;
  text-decoration: underline;
  -webkit-transition: all 0.3s ease 0;
  transition: all 0.3s ease 0;
}
.price__attention a:hover {
  opacity: 0.7;
}

.table {
  border-collapse: collapse;
  border: 1px solid #707070;
  background: #ffffff;
  width: 100%;
  table-layout: fixed;
}
.table th,
.table td {
  border: 1px solid #707070;
  padding: 0 24px;
  height: 57px;
  vertical-align: middle;
  font-weight: bold;
}
.table th {
  background: #999999;
  color: #ffffff;
  text-align: center;
  font-family: "Lato", sans-serif;
}
.table th:nth-child(1) {
  width: 172px;
}
.table td {
  text-align: right;
}
.table strong {
  color: #e81919;
  line-height: 1.2;
}
.table span {
  display: block;
  font-size: 13px;
  font-weight: bold;
  line-height: 1.2;
}

.access__map {
  margin: 92px auto 0;
  width: 800px;
  max-width: 100%;
}
.access__iframe {
  width: 100%;
  padding-top: 50%;
  position: relative;
}
.access__iframe iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.access__info {
  margin: 12px auto 0;
  width: 800px;
  max-width: 100%;
}
.access__info-contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.access__info-contents + .access__info-contents {
  margin-top: 8px;
}
.access__info-contents dt {
  font-weight: bold;
  width: 104px;
}
.access__info-contents dd {
  width: calc(100% - 104px);
}
.access__button {
  text-align: center;
  margin-top: 21px;
  -webkit-transition: all 0.3s ease 0;
  transition: all 0.3s ease 0;
}
.access__button:hover {
  opacity: 0.7;
}
.access__button a {
  width: 304px;
  padding: 16px 12px;
  font-size: 16px;
  font-weight: bold;
  color: #ffffff;
  background: #3f51b5;
  border-radius: 8px;
  display: inline-block;
  text-align: center;
  cursor: pointer;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
          box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  position: relative;
}
.access__button a::after {
  content: "";
  position: absolute;
  right: 16px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 15px;
  height: 30px;
  background: url(../img/button-arrow.png) no-repeat center center/contain;
}

.contact {
  background: #EFEFEF;
}
.contact-form {
  margin: 93px auto 0;
  width: 800px;
  max-width: 100%;
  background: #ffffff;
  padding: 60px;
}
.contact-form__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.contact-form__row + .contact-form__row {
  margin-top: 60px;
}
.contact-form__label {
  width: 160px;
  padding-top: 5px;
}
.contact-form__label label {
  font-weight: bold;
}
.contact-form__label label.is-reqierd {
  display: inline-block;
  position: relative;
}
.contact-form__label label.is-reqierd::after {
  content: "必須";
  position: absolute;
  top: calc(100% + 2px);
  left: 0;
  font-size: 14px;
  font-weight: bold;
  color: #ffffff;
  background: #e81919;
  text-align: center;
  border-radius: 4px;
  padding: 4px 4px;
  line-height: 1;
}
.contact-form__input {
  width: calc(100% - 160px);
}
.contact-form__input [type=text] {
  -webkit-box-shadow: none;
          box-shadow: none;
  border: 1px solid #707070;
  background: #ffffff;
  padding: 8px 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] {
  -webkit-box-shadow: none;
          box-shadow: none;
  border: 1px solid #707070;
  background: #ffffff;
  padding: 8px 16px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border-radius: 0;
  color: inherit;
  font-family: inherit;
  font-size: 14px;
  width: 100%;
}
.contact-form select {
  -webkit-box-shadow: none;
          box-shadow: none;
  border: 1px solid #707070;
  padding: 8px 16px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border-radius: 0;
  color: inherit;
  font-family: inherit;
  font-size: 14px;
  width: 100%;
  background: #ffffff url(../img/select-arrow.png) no-repeat right 12px center/17px 14px;
}
.contact-form textarea {
  height: 240px;
  -webkit-box-shadow: none;
          box-shadow: none;
  border: 1px solid #707070;
  background: #ffffff;
  padding: 12px 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: 24px;
}
.contact-form__radio [type=radio] {
  display: none;
}
.contact-form__radio span {
  display: inline-block;
  padding-left: 26px;
  position: relative;
  margin-right: 36px;
  letter-spacing: 1.6px;
}
.contact-form__radio span::before {
  content: "";
  width: 20px;
  height: 20px;
  border: 1px solid #707070;
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: #ffffff;
  border-radius: 50%;
}
.contact-form__radio span::after {
  content: "";
  width: 10px;
  height: 10px;
  background: #3f51b5;
  position: absolute;
  left: 5px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  border-radius: 50%;
  display: none;
}
.contact-form__radio [type=radio]:checked + span::after {
  display: block;
}
.contact-form__check {
  margin-top: 56px;
  text-align: center;
}
.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: #ffffff;
  border: 1px solid #707070;
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.contact-form__check span::after {
  content: "";
  width: 25px;
  height: 25px;
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: transparent url(../img/checkbox.png) no-repeat center center/contain;
  display: none;
}
.contact-form__check span a {
  font-weight: bold;
  text-decoration: underline;
  -webkit-transition: all 0.3s ease 0;
  transition: all 0.3s ease 0;
}
.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 14px;
  width: 304px;
  display: inline-block;
  font-size: 16px;
  font-weight: bold;
  color: #ffffff;
  padding: 16px 12px;
  border-radius: 8px;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
          box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  font-family: inherit;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
  cursor: pointer;
  -webkit-transition: all 0.3s ease 0;
  transition: all 0.3s ease 0;
}
.contact-form__button [type=submit]:hover {
  opacity: 0.7;
}

.qa__items {
  width: 900px;
  max-width: 100%;
  margin: 80px auto 0;
}
.qa__item + .qa__item {
  margin-top: 24px;
}
.qa__box {
  border: 1px solid #3f51b5;
}
.qa__box-q {
  color: #ffffff;
  background: #3f51b5;
  padding: 12px 56px;
  font-weight: bold;
  position: relative;
}
.qa__box-q::before {
  content: "Q";
  position: absolute;
  top: 12px;
  left: 20px;
}
.qa__box-icon {
  width: 14px;
  height: 14px;
  position: absolute;
  right: 14px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.qa__box-icon.is-open .qa__box-bar2 {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
.qa__box-bar1 {
  width: 14px;
  height: 2px;
  background: #ffffff;
  border-radius: 20px;
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.qa__box-bar2 {
  width: 2px;
  height: 14px;
  background: #ffffff;
  border-radius: 20px;
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  -webkit-transition: all 0.3s ease 0;
  transition: all 0.3s ease 0;
}
.qa__box-a {
  display: none;
  background: #ffffff;
  color: #3f51b5;
  line-height: 1.5;
  padding: 16px 30px 16px 20px;
}
.qa__box-content {
  font-weight: bold;
  padding-left: 35px;
  position: relative;
}
.qa__box-content::before {
  content: "A";
  position: absolute;
  top: 0;
  left: 0;
}

.modal-contact {
  position: fixed;
  z-index: 501;
  width: 900px;
  max-width: calc(100% - 48px);
  height: 652px;
  max-height: calc(100% - 48px);
  background: #ffffff;
  -webkit-box-shadow: 0 0 3px rgba(0, 0, 0, 0.16);
          box-shadow: 0 0 3px rgba(0, 0, 0, 0.16);
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  padding: 60px;
  color: #707070;
  display: none;
}
@media screen and (max-width: 767px) {
  .modal-contact {
    padding-left: 30px;
  }
}

.modal-contact__head {
  font-size: 24px;
  font-weight: bold;
  padding-bottom: 24px;
  text-align: center;
  position: relative;
}
.modal-contact__head::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 100px;
  height: 2px;
  background: #3f51b5;
}

.modal-contact__content {
  margin-top: 40px;
  height: calc(100% - 84px - 108px);
  overflow: auto;
}
.modal-contact__content > :first-child {
  margin-top: 0;
}

.modal-contact__sub-head {
  font-size: 20px;
  font-weight: bold;
  padding-left: 20px;
  margin-top: 40px;
  position: relative;
}
.modal-contact__sub-head::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 4px;
  height: 20px;
  background: #3f51b5;
}

.modal-contact__text {
  margin-top: 16px;
  line-height: 1.5;
  padding-left: 20px;
}

.modal-contact__button {
  margin-top: 60px;
  text-align: center;
}
.modal-contact__button a {
  display: inline-block;
  width: 176px;
  padding: 14px;
  text-align: center;
  color: #ffffff;
  background: #3f51b5;
  font-weight: bold;
  border-radius: 8px;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
          box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}

.modal-contact__icon {
  position: absolute;
  height: 40px;
  right: -20px;
  top: -20px;
}
.modal-contact__icon img {
  width: 40px;
}

.modal-contact__background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  z-index: 500;
  display: none;
}

.footer {
  background: -webkit-gradient(linear, left top, left bottom, from(#666666), to(#333333));
  background: linear-gradient(to bottom, #666666, #333333);
  padding: 60px 0 24px;
  color: #ffffff;
}
@media screen and (max-width: 767px) {
  .footer {
    padding: 30px 0 14px;
  }
}
.footer__contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 767px) {
  .footer__contents {
    display: block;
  }
}
.footer__left {
  width: 34%;
}
@media screen and (max-width: 767px) {
  .footer__left {
    width: 100%;
  }
}
.footer__logo img {
  width: 205px;
}
.footer__address {
  margin-top: 28px;
  font-size: 14px;
}
@media screen and (max-width: 767px) {
  .footer__address {
    margin-top: 13px;
  }
}
.footer__tel {
  font-size: 14px;
  margin-top: 5px;
}
@media screen and (max-width: 767px) {
  .footer__tel {
    margin-top: 2px;
  }
}
.footer__center {
  width: 50%;
}
@media screen and (max-width: 767px) {
  .footer__center {
    width: 100%;
    margin-top: 24px;
  }
}
.footer__nav {
  font-family: "Lato", sans-serif;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 767px) {
  .footer__nav {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.footer__nav-list + .footer__nav-list {
  margin-left: 40px;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 767px) {
  .footer__nav-list + .footer__nav-list {
    margin-left: 20px;
  }
}
.footer__nav-link {
  -webkit-transition: all 0.3s ease 0;
  transition: all 0.3s ease 0;
}
.footer__nav-link:hover {
  opacity: 0.7;
}
.footer__right {
  width: 16%;
}
@media screen and (max-width: 767px) {
  .footer__right {
    width: 100%;
    margin-top: 24px;
  }
}
.footer__sns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
@media screen and (max-width: 767px) {
  .footer__sns {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.footer__icon + .footer__icon {
  margin-left: 16px;
}
.footer__icon a {
  -webkit-transition: all 0.3s ease 0;
  transition: all 0.3s ease 0;
}
.footer__icon a:hover {
  opacity: 0.7;
}
.footer__icon a img {
  width: 30px;
}
.footer__copy {
  margin-top: 38px;
  font-size: 14px;
  text-align: center;
  font-family: "Lato", sans-serif;
}
@media screen and (max-width: 767px) {
  .footer__copy {
    margin-top: 22px;
    font-size: 12px;
  }
}

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

/*-----------------------------
// sp
-----------------------------*/
@media screen and (max-width: 767px) {
  .inner {
    padding: 0 16px;
  }
  .header {
    height: 60px;
  }
  .header__logo {
    width: 182px;
  }
  .header__nav {
    display: none;
  }
  .fv {
    margin-top: 60px;
    height: 420px;
  }
  .fv__title {
    font-size: 32px;
  }
  .fv__lead {
    font-size: 18px;
    margin-top: 18px;
  }
  .fv__button {
    margin-top: 28px;
  }
  .fv__button-text {
    width: 280px;
    height: 60px;
    line-height: 60px;
    font-size: 24px;
  }
  .section {
    padding: 50px 0 60px;
  }
  .section__head {
    font-size: 32px;
  }
  .section__head::after {
    bottom: -10px;
    width: 40px;
    height: 3px;
  }
  .card__contents {
    margin-top: 50px;
  }
  .card__list {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
  }
  .news__contents {
    margin-top: 40px;
  }
  .news__item {
    display: block;
  }
  .news__title {
    width: 100%;
    padding: 0;
    margin-top: 6px;
  }
  .news__more {
    margin-top: 30px;
  }
  .price__contents {
    display: block;
  }
  .price__img {
    width: 100%;
  }
  .price__table {
    width: 100%;
    margin-top: 24px;
  }
  .table th:nth-child(1) {
    width: 85px;
  }
  .contact-form {
    margin-top: 40px;
    padding: 24px;
  }
  .contact-form__row {
    display: block;
  }
  .contact-form__row + .contact-form__row {
    margin-top: 30px;
  }
  .contact-form__label {
    width: 100%;
  }
  .contact-form__label label.is-reqierd::after {
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    left: calc(100% + 6px);
    width: 44px;
  }
  .contact-form__input {
    width: 100%;
    margin-top: 5px;
  }
  .contact-form__radio {
    margin-top: 26px;
  }
  .contact-form__radio span {
    margin-bottom: 8px;
    margin-right: 20px;
  }
  .contact-form__check {
    margin-top: 40px;
  }
}
/*-----------------------------
// tb
-----------------------------*/
@media screen and (min-width: 768px) and (max-width: 1200px) {
  .inner {
    padding: 0 24px;
  }
  .card__list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  .table th:nth-child(1) {
    width: 100px;
  }
}