@charset "UTF-8";
@media (max-width: 767px) {
  .is-pc {
    display: none;
  }
}
@media (min-width: 1200px) {
  .is-sp {
    display: none;
  }
}
*, *::before, *::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html, body, main, section, aside, article, header, footer, h1, h2, h3, h4, h5, h6, p, div, ol, ul, li, a, table, tt, td, th, dl, dt, dd, span {
  margin: 0;
  padding: 0;
}

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

img {
  max-width: 100%;
}

ul, ol, li {
  list-style: none;
}

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

/* ---------------
共通部分
--------------- */
.inner {
  max-width: 1200px;
  width: calc(100% - 15px * 2);
  margin: 0 auto;
}

section {
  padding: 100px 0 120px;
}
@media (max-width: 767px) {
  section {
    padding: 70px 0 100px;
  }
}

.section-title {
  font-size: 48px;
  text-align: center;
  line-height: 1;
}
@media (max-width: 767px) {
  .section-title {
    font-size: 36px;
  }
}
.section-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  margin: 24px auto 0;
  background-color: #3F51B5;
}

.btn-blue {
  display: inline-block;
  width: 304px;
  height: 56px;
  line-height: 56px;
  color: #fff;
  background: #3F51B5 url(../img/button-arrow.png) no-repeat right 12px center/17px 16px;
  font-weight: bold;
  text-align: center;
  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);
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  max-width: 100%;
}
.btn-blue:hover {
  opacity: 0.7;
  background-position: right 6px center;
}

/* ---------------
header
--------------- */
header {
  background-color: #3F51B5;
  -webkit-box-shadow: 0 3px 3px rgba(0, 0, 0, 0.16);
          box-shadow: 0 3px 3px rgba(0, 0, 0, 0.16);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
}

.header-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100px;
}
@media (max-width: 767px) {
  .header-inner {
    height: 60px;
  }
}

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

.header-nav {
  margin-left: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 767px) {
  .header-nav {
    display: none;
  }
}

.header-nav-item {
  color: #fff;
}
.header-nav-item:not(:first-child) {
  margin-left: 40px;
}
.header-nav-item a {
  position: relative;
}
.header-nav-item a::after {
  position: absolute;
  content: "";
  width: 0;
  height: 2px;
  bottom: -10px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background-color: #E81919;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.header-nav-item a.is-active::after, .header-nav-item a:hover::after {
  width: 100%;
}

/* ---------------
top
--------------- */
.top {
  background: url(../img/mainvisual.png) no-repeat center center;
  background-size: cover;
  padding: 164px 0 184px;
  margin-top: 100px;
}
@media (max-width: 767px) {
  .top {
    margin-top: 60px;
    padding: 120px 0;
  }
}

.top-title {
  font-size: 64px;
  font-weight: bold;
  text-align: center;
}
@media (max-width: 767px) {
  .top-title {
    font-size: 32px;
  }
}

.top-lead {
  font-size: 24px;
  font-weight: bold;
  margin-top: 6px;
  text-align: center;
}
@media (max-width: 767px) {
  .top-lead {
    font-size: 18px;
    margin-top: 10px;
  }
}

.top-btn {
  text-align: center;
  margin-top: 33px;
}
@media (max-width: 767px) {
  .top-btn {
    margin-top: 28px;
  }
}

.btn {
  display: inline-block;
  height: 72px;
  width: 384px;
  max-width: 100%;
  line-height: 72px;
  color: #fff;
  background-color: #3F51B5;
  margin: 0 auto;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
          box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  border-radius: 8px;
  font-weight: bold;
  font-size: 24px;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
@media (max-width: 767px) {
  .btn {
    width: 280px;
    height: 60px;
    line-height: 60px;
    font-size: 20px;
  }
}
.btn:hover {
  opacity: 0.7;
}

/* ---------------
card
--------------- */
.card {
  background-color: #EFEFEF;
}

.card-items {
  margin-top: 80px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
}
@media (min-width: 768px) and (max-width: 1199px) {
  .card-items {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 767px) {
  .card-items {
    grid-template-columns: 1fr;
    margin-top: 60px;
  }
}

.card-item {
  background-color: #fff;
  padding: 16px 16px 14px;
  border-radius: 4px;
  color: #6F7579;
}

.card-img img {
  display: block;
  margin: 0 auto;
}

.card-title {
  font-size: 20px;
  font-weight: bold;
  margin-top: 10px;
}

.card-text {
  font-weight: bold;
  line-height: 1.5;
  margin-top: 6px;
}

/* ---------------
news
--------------- */
.news {
  background-color: #fff;
}

.news-items {
  margin: 60px auto 0;
  width: 800px;
  max-width: 100%;
}
@media (max-width: 767px) {
  .news-items {
    margin: 40px auto 0;
  }
}

.news-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 20px 0 12px;
}
.news-item:not(:first-child) {
  border-top: 1px solid #707070;
}
@media (max-width: 767px) {
  .news-item {
    display: block;
  }
}

.news-meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 185px;
          flex: 0 0 185px;
}

.news-date {
  padding-top: 4px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 105px;
          flex: 0 0 105px;
}

.news-label {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 80px;
          flex: 0 0 80px;
}
.news-label a {
  display: block;
  height: 32px;
  width: 100%;
  line-height: 32px;
  text-align: center;
  color: #fff;
  background-color: #666;
  border-radius: 4px;
  font-weight: bold;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.news-label a.is-blue {
  background-color: #3F51B5;
}
.news-label a.is-red {
  background-color: #E81919;
}
.news-label a:hover {
  opacity: 0.7;
}

.news-title {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 100%;
          flex: 0 1 100%;
  padding-left: 20px;
  padding-top: 3px;
  line-height: 1.2;
}
.news-title a {
  font-weight: normal;
  font-size: 16px;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.news-title a:hover {
  opacity: 0.7;
}
@media (max-width: 767px) {
  .news-title {
    width: 100%;
    padding-left: 0;
    padding-top: 0;
    margin-top: 6px;
  }
}

.news-more {
  margin-top: 46px;
  text-align: center;
  line-height: 1;
}
.news-more a {
  color: #E81919;
  font-weight: bold;
  padding-right: 12px;
  background: url(../img/news-arrow.png) no-repeat right bottom 2px/7px 11px;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.news-more a:hover {
  opacity: 0.7;
}

/* ---------------
price
--------------- */
.price {
  background-color: #EFEFEF;
}

.price-wrapper {
  width: 1200px;
  max-width: 100%;
  margin: 80px auto 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 767px) {
  .price-wrapper {
    display: block;
    margin: 60px auto 0;
  }
}

.price-img {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 37.833%;
          flex: 0 1 37.833%;
}

.price-table {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 58.833%;
          flex: 0 1 58.833%;
  margin-left: auto;
}
@media (max-width: 767px) {
  .price-table {
    margin-left: 0;
    margin-top: 30px;
  }
}
.price-table table {
  border: 1px solid #707070;
  border-collapse: collapse;
  width: 100%;
  table-layout: fixed;
}
.price-table table tr {
  height: 57px;
}
.price-table table th {
  background-color: #999;
  border: 1px solid #707070;
  color: #fff;
}
.price-table table th:first-child {
  width: 170px;
}
@media (max-width: 767px) {
  .price-table table th:first-child {
    width: 110px;
  }
}
.price-table table td {
  border: 1px solid #707070;
  background-color: #fff;
  padding-right: 24px;
  font-weight: bold;
  text-align: right;
  vertical-align: middle;
}
.price-table table td .is-red {
  color: #E81919;
  line-height: 1;
}
.price-table table td .is-small {
  line-height: 1;
  font-size: 13px;
  display: block;
  margin-top: 0;
}

.price-contact {
  font-size: 14px;
  margin-top: 5px;
  line-height: 1;
  padding-left: calc(100% * 454 / 1200 + 40px);
}
.price-contact a {
  text-decoration: underline;
  font-weight: bold;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.price-contact a:hover {
  opacity: 0.7;
}
@media (max-width: 767px) {
  .price-contact {
    padding-left: 0;
  }
}

/* ---------------
access
--------------- */
.access {
  background-color: #fff;
}

.access-map {
  width: 800px;
  max-width: 100%;
  margin: 80px auto 0;
}
@media (max-width: 767px) {
  .access-map {
    margin: 60px auto 0;
  }
}

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

.access-info {
  width: 800px;
  max-width: 100%;
  margin: 11px auto 0;
}

.access-info-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.access-info-row:not(:first-child) {
  margin-top: 7px;
}
.access-info-row dt {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 104px;
          flex: 0 0 104px;
  font-weight: bold;
}
.access-info-row dd {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 100%;
          flex: 0 1 100%;
}

.access-btn {
  margin-top: 25px;
  text-align: center;
}
.access-btn a {
  display: inline-block;
  width: 304px;
  height: 56px;
  line-height: 56px;
  color: #fff;
  background: #3F51B5 url(../img/button-arrow.png) no-repeat right 12px center/17px 16px;
  font-weight: bold;
  text-align: center;
  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);
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.access-btn a:hover {
  opacity: 0.7;
  background-position: right 6px center;
}

/* ---------------
contact
--------------- */
.contact {
  background-color: #EFEFEF;
}

.contact-form {
  width: 800px;
  max-width: 100%;
  margin: 80px auto 0;
  background-color: #fff;
  padding: 60px;
}
@media (max-width: 767px) {
  .contact-form {
    margin: 60px auto 0;
    padding: 25px;
  }
}

.contact-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.contact-item:not(:first-child) {
  margin-top: 60px;
}
@media (max-width: 767px) {
  .contact-item {
    display: block;
  }
  .contact-item:not(:first-child) {
    margin-top: 30px;
  }
}

.contact-item-title {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 160px;
          flex: 0 0 160px;
  font-weight: bold;
  padding-top: 6px;
}
.contact-item-title .is-required {
  position: relative;
}
.contact-item-title .is-required::after {
  content: "必須";
  position: absolute;
  display: block;
  font-size: 14px;
  width: 44px;
  height: 22px;
  line-height: 22px;
  text-align: center;
  border-radius: 4px;
  color: #fff;
  background-color: #E81919;
  left: 0;
  top: calc(100% + 8px);
}
@media (max-width: 767px) {
  .contact-item-title .is-required::after {
    display: inline-block;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    left: calc(100% + 8px);
  }
}

.contact-item-input {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 100%;
          flex: 0 1 100%;
}
@media (max-width: 767px) {
  .contact-item-input {
    margin-top: 6px;
  }
}

.contact-text-input,
.contact-email-input,
.contact-select,
.contact-textarea {
  width: 100%;
  font-size: 14px;
  color: inherit;
  font-family: inherit;
  border: 1px solid #707070;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  border-radius: 0;
  background-color: #fff;
}

.contact-text-input,
.contact-email-input {
  padding: 7px 16px 8px;
}

.contact-select {
  background: url(../img/select-arrow.png) no-repeat right 12px center/17px 14px;
  padding: 11px 16px;
}

.contact-item-textarea {
  height: 240px;
}

.contact-textarea {
  padding: 7px 15px;
  height: 100%;
}

.contact-radio {
  margin-top: 28px;
}
@media (max-width: 767px) {
  .contact-radio {
    margin-top: 24px;
  }
}

.contact-radio-label {
  cursor: pointer;
  margin-right: 31px;
}
@media (max-width: 767px) {
  .contact-radio-label {
    margin-right: 24px;
    display: inline-block;
    margin-bottom: 8px;
  }
}

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

.contact-radio-part {
  padding-left: 28px;
  display: inline-block;
  position: relative;
}
.contact-radio-part::before, .contact-radio-part::after {
  content: "";
  display: block;
  position: absolute;
  border-radius: 50%;
  width: 22px;
  height: 22px;
  border: 1px solid #707070;
  background-color: transparent;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.contact-radio-part::after {
  width: 11px;
  height: 11px;
  border: none;
  background-color: #3F51B5;
  left: 5.5px;
  opacity: 0;
}

.contact-radio-input:checked + .contact-radio-part::after {
  opacity: 1;
}

.contact-check {
  margin-top: 58px;
  text-align: center;
}
@media (max-width: 767px) {
  .contact-check {
    margin-top: 40px;
  }
}

.contact-check-label {
  cursor: pointer;
}

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

.contact-check-part {
  position: relative;
  padding-left: 49px;
}
@media (max-width: 767px) {
  .contact-check-part {
    padding-left: 38px;
  }
}
.contact-check-part a {
  text-decoration: underline;
  font-weight: bold;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.contact-check-part a:hover {
  opacity: 0.7;
}
.contact-check-part::before, .contact-check-part::after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.contact-check-part::before {
  width: 25px;
  height: 25px;
  border: 1px solid #707070;
  background-color: transparent;
}
.contact-check-part::after {
  width: 21px;
  height: 16px;
  background: transparent url(../img/check.png) no-repeat center center/contain;
  left: 2px;
  opacity: 0;
}

.contact-check-input:checked + .contact-check-part::after {
  opacity: 1;
}

.contact-submit {
  text-align: center;
  margin-top: 30px;
}

.contact-submit-input {
  border: none;
  font-family: inherit;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  font-size: inherit;
}

/* ---------------
footer
--------------- */
footer {
  background: -webkit-gradient(linear, left top, left bottom, from(#666666), to(#333333));
  background: linear-gradient(#666666, #333333);
  padding: 55px 0 20px;
  color: #fff;
}
@media (max-width: 767px) {
  footer {
    padding: 40px 0 20px;
  }
}

.footer-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 767px) {
  .footer-content {
    display: block;
    padding-left: 15px;
  }
}

.footer-left {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 30%;
          flex: 0 1 30%;
  padding-top: 5px;
}
@media (max-width: 767px) {
  .footer-left {
    padding-top: 0;
  }
}

.footer-logo {
  width: 205px;
  max-width: 75%;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.footer-logo:hover {
  opacity: 0.7;
}
.footer-logo a img {
  display: block;
}

.footer-info {
  margin-top: 27px;
}
@media (max-width: 767px) {
  .footer-info {
    margin-top: 14px;
  }
}
.footer-info p {
  font-size: 14px;
}
.footer-info p:not(:first-child) {
  margin-top: 6px;
}
@media (max-width: 767px) {
  .footer-info p:not(:first-child) {
    margin-top: 2px;
  }
}

.footer-nav {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 40%;
          flex: 0 1 40%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (max-width: 767px) {
  .footer-nav {
    display: block;
    margin-top: 35px;
  }
}

.footer-nav-item:not(:first-child) {
  margin-left: 8.3333%;
}
@media (max-width: 767px) {
  .footer-nav-item:not(:first-child) {
    margin-left: 0;
    margin-top: 25px;
  }
}
.footer-nav-item a {
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.footer-nav-item a:hover {
  opacity: 0.7;
}

.footer-sns {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 30%;
          flex: 0 1 30%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  padding-top: 5px;
}
@media (max-width: 767px) {
  .footer-sns {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    padding-top: 0;
    margin-top: 35px;
  }
}

.footer-sns-item {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  overflow: hidden;
}
.footer-sns-item:not(:first-child) {
  margin-left: 16px;
}
@media (max-width: 767px) {
  .footer-sns-item:not(:first-child) {
    margin-left: 24px;
  }
}
.footer-sns-item a {
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.footer-sns-item a:hover {
  opacity: 0.7;
}
.footer-sns-item a img {
  display: block;
}

.footer-copyright {
  font-size: 14px;
  margin-top: 38px;
  text-align: center;
}

/* ---------------
pagetop
--------------- */
.pagetop {
  width: 60px;
  position: fixed;
  right: 24px;
  bottom: 24px;
  cursor: pointer;
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
  opacity: 0;
  visibility: hidden;
}
.pagetop.is-show {
  opacity: 1;
  visibility: visible;
}
.pagetop.is-show:hover {
  opacity: 0.7;
}
.pagetop.is-show img {
  display: block;
}

/* ---------------
drawer
--------------- */
.drawer-icon {
  display: none;
  position: fixed;
  top: 20px;
  right: 16px;
  z-index: 50;
  cursor: pointer;
}
@media (max-width: 767px) {
  .drawer-icon {
    display: block;
  }
  .drawer-icon.is-active .drawer-icon-bars {
    -webkit-transform: translateX(-200px);
            transform: translateX(-200px);
  }
  .drawer-icon.is-active .drawer-icon-bar1 {
    -webkit-transform: translateY(8px) rotate(45deg);
            transform: translateY(8px) rotate(45deg);
  }
  .drawer-icon.is-active .drawer-icon-bar2 {
    background-color: transparent;
  }
  .drawer-icon.is-active .drawer-icon-bar3 {
    -webkit-transform: translateY(-8px) rotate(-45deg);
            transform: translateY(-8px) rotate(-45deg);
  }
}

.drawer-icon-bars {
  width: 22px;
  height: 20px;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.drawer-icon-bar1,
.drawer-icon-bar2,
.drawer-icon-bar3 {
  width: 22px;
  height: 4px;
  background-color: #fff;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.drawer-icon-bar2 {
  margin-top: 4px;
}

.drawer-icon-bar3 {
  margin-top: 4px;
}

.drawer-content {
  width: 200px;
  height: 100%;
  position: fixed;
  top: 0;
  right: 0;
  background-color: #fff;
  z-index: 40;
  color: #707070;
  -webkit-box-shadow: 0 0 3px rgba(0, 0, 0, 0.16);
          box-shadow: 0 0 3px rgba(0, 0, 0, 0.16);
  -webkit-transform: translateX(105%);
          transform: translateX(105%);
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
@media (max-width: 767px) {
  .drawer-content.is-active {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

.drawer-nav-item {
  border-bottom: 1px dotted #707070;
}
.drawer-nav-item a {
  display: block;
  padding: 20px;
  background: url(../img/arrow-b.png) no-repeat right 21px center/8px 11px;
}

.drawer-background {
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 1s ease-out;
  transition: all 1s ease-out;
}
@media (max-width: 767px) {
  .drawer-background.is-active {
    opacity: 1;
    visibility: visible;
  }
}