@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Lato:wght@400;700&family=Noto+Sans+JP:wght@400;700&family=Philosopher&display=swap");
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

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

body {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  background: white;
  color: #333333;
}

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

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

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

a {
  color: inherit;
}

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

.section {
  padding: 100px 0 120px;
}

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

.header_inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: inherit;
}

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

.header_nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-left: auto;
  font-family: "Lato", sans-serif;
}
@media (max-width: 767px) {
  .header_nav {
    display: none;
  }
}
.header_nav li:not(:first-child) {
  margin-left: 40px;
}
.header_nav li a {
  color: white;
  text-decoration: none;
  position: relative;
}
.header_nav li a::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 100%;
  height: 2px;
  background: transparent;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.header_nav li a:hover::after, .header_nav li a.is-active::after {
  background: #E81919;
}

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

.main-visual_content {
  position: absolute;
  width: 100%;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  text-align: center;
}
@media (max-width: 767px) {
  .main-visual_content {
    padding-left: 46px;
    padding-right: 46px;
  }
}

.main-visual_title {
  font-size: 64px;
  font-weight: 700;
  margin-top: 7px;
  line-height: 1.3;
  width: 100%;
}
@media (max-width: 767px) {
  .main-visual_title {
    font-size: 32px;
  }
}

.main-visual_lead {
  font-size: 24px;
  font-weight: 700;
  margin-top: 25px;
}
@media (max-width: 767px) {
  .main-visual_lead {
    margin-top: 10px;
  }
}
@media (max-width: 767px) {
  .main-visual_lead {
    font-size: 18px;
  }
}

.main-visual_button {
  margin-top: 36px;
}
@media (max-width: 767px) {
  .main-visual_button {
    margin-top: 28px;
  }
}
.main-visual_button a {
  display: inline-block;
  width: 390px;
  max-width: 100%;
  height: 83px;
  line-height: 83px;
  font-size: 32px;
  font-weight: 700;
  text-align: center;
  color: white;
  background: #3F51B5;
  border-radius: 12px;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
          box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  text-decoration: none;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
@media (max-width: 767px) {
  .main-visual_button a {
    width: 280px;
    height: 60px;
    line-height: 60px;
    font-size: 24px;
  }
}
.main-visual_button a:hover {
  opacity: 0.7;
}

.card {
  background: #EFEFEF;
}
@media (max-width: 767px) {
  .card {
    padding-top: 50px;
    padding-bottom: 60px;
  }
}

.section_title {
  font-size: 48px;
  font-weight: 700;
  text-align: center;
  padding-bottom: 28px;
  position: relative;
  font-family: "Lato", sans-serif;
}
.section_title::after {
  content: "";
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  bottom: 0;
  width: 60px;
  height: 4px;
  background: #3F51B5;
}
@media (max-width: 767px) {
  .section_title::after {
    width: 42px;
    height: 3px;
  }
}
@media (max-width: 767px) {
  .section_title {
    font-size: 24px;
    padding-bottom: 18px;
  }
}

.card_items {
  margin-top: 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media (max-width: 767px) {
  .card_items {
    margin-top: 42px;
  }
}

.card_item {
  width: calc(33.3% - 16px);
  background: white;
  padding: 16px;
  border-radius: 4px;
}
@media (min-width: 1200px) {
  .card_item:not(:nth-child(3n+1)) {
    margin-left: 24px;
  }
  .card_item:nth-child(n+4) {
    margin-top: 24px;
  }
}
@media (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 (max-width: 767px) {
  .card_item {
    width: 100%;
    margin-left: 0;
  }
}

.card_img img {
  width: 100%;
}

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

.card_text {
  font-weight: 700;
  line-height: 24/16;
  color: #6F7579;
  margin-top: 14px;
}

.news {
  background: #fff;
}
@media (max-width: 767px) {
  .news {
    margin-top: 50px;
    margin-bottom: 60px;
  }
}

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

.news_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 28px 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;
  width: 185px;
}

.news_date {
  width: 105px;
  padding-top: 3px;
  font-family: "Lato", sans-serif;
}

.news_label a {
  display: inline-block;
  background: #666666;
  width: 80px;
  height: 32px;
  line-height: 32px;
  color: #fff;
  text-align: center;
  border-radius: 4px;
  font-weight: 700;
  text-decoration: none;
  -webkit-transition: all 0.3s ease 0s;
  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.6;
}

.news_title {
  width: calc(100% - 185px);
  padding-left: 20px;
  padding-top: 3px;
}
.news_title a {
  text-decoration: none;
  line-height: 1.25;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.news_title a:hover {
  opacity: 0.6;
}
@media (max-width: 767px) {
  .news_title {
    width: 100%;
    padding-top: 0;
    padding-left: 0;
    margin-top: 6px;
  }
}

.news_more {
  margin-top: 60px;
  text-align: center;
  font-family: "Lato", sans-serif;
}
@media (max-width: 767px) {
  .news_more {
    margin-top: 30px;
  }
}
.news_more a {
  text-decoration: none;
  color: #E81919;
  font-weight: 700;
  padding-right: 14px;
  position: relative;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.news_more a::after {
  position: absolute;
  content: "";
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 7px;
  height: 11px;
  background: url(../img/news-arrow@2x.png) no-repeat center center/contain;
}
.news_more a:hover {
  opacity: 0.6;
}

.price {
  background: #EFEFEF;
}
@media (max-width: 767px) {
  .price {
    padding-top: 50px;
    padding-bottom: 60px;
  }
}

.table_content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 80px;
}
@media (max-width: 767px) {
  .table_content {
    display: block;
    margin-top: 40px;
  }
}

.table_image {
  width: 37.8333333333%;
}
@media (max-width: 767px) {
  .table_image {
    width: 100%;
  }
}
.price_table {
  width: 59%;
  margin-left: auto;
}
@media (max-width: 767px) {
  .price_table {
    width: 100%;
    margin-top: 24px;
  }
}

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

.table {
  border-collapse: collapse;
  background: #fff;
  border: 1px solid #707070;
  font-weight: 700;
  table-layout: fixed;
  width: 100%;
}
.table th,
.table td {
  border: 1px solid #707070;
  padding: 0 24px;
  height: 58px;
  vertical-align: middle;
}
.table th {
  background: #999999;
  color: #fff;
  text-align: center;
  font-family: "Lato", sans-serif;
}
.table th:nth-child(1) {
  width: 170px;
}
@media (max-width: 767px) {
  .table th:nth-child(1) {
    width: 112px;
  }
}
.table td {
  text-align: right;
}
.table strong {
  font-weight: 700;
  color: #E81919;
  line-height: 1.2;
}
.table span {
  font-size: 13px;
  display: block;
  margin-top: 1px;
  line-height: 1.2;
}

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

.iframe-wrap {
  width: 100%;
  padding-top: 50%;
  position: relative;
}
.iframe-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: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.access_info_row:not(:first-child) {
  margin-top: 8px;
}
.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;
  margin-top: 30px;
}
.access_button a {
  text-decoration: none;
  display: inline-block;
  background: #3F51B5;
  color: #fff;
  text-align: center;
  font-weight: 700;
  border-radius: 8px;
  width: 304px;
  padding: 16px 12px;
  -webkit-box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
          box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
  position: relative;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.access_button a::after {
  position: absolute;
  content: "";
  top: 50%;
  right: 12px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 17px;
  height: 16px;
  background: url(../img/button-arrow@2x.png) no-repeat center center/contain;
}
.access_button a:hover {
  opacity: 0.6;
}

.contact {
  background: #EFEFEF;
}
@media (max-width: 767px) {
  .contact {
    padding-top: 50px;
    padding-bottom: 60px;
  }
}

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

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

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

.contact_form_input {
  width: calc(100% - 160px);
  margin: 0;
  padding: 0;
}
@media (max-width: 767px) {
  .contact_form_input {
    width: 100%;
    margin-top: 5px;
  }
}
.contact_form_input [type=text] {
  -webkit-box-shadow: none;
          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] {
  -webkit-box-shadow: none;
          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-box-shadow: none;
          box-shadow: none;
  border: 1px solid #707070;
  background: #fff url(../img/select-arrow@2x.png) no-repeat right 12px center/17px 14px;
  padding: 12px 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 textarea {
  -webkit-box-shadow: none;
          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%;
  height: 240px;
  resize: none;
}

.contact_form_radio {
  margin-top: 32px;
}
@media (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 (max-width: 767px) {
  .contact_form_radio span {
    margin-bottom: 8px;
    margin-right: 24px;
  }
}
.contact_form_radio span::before {
  content: "";
  width: 20px;
  height: 20px;
  border: 1px solid #707070;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: #fff;
  border-radius: 50%;
}
.contact_form_radio span::after {
  content: "";
  width: 10px;
  height: 10px;
  position: absolute;
  top: 50%;
  left: 5px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: #3F51B5;
  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 (max-width: 767px) {
  .contact_form_check {
    margin-top: 48px;
  }
}
.contact_form_check [type=checkbox] {
  display: none;
}
.contact_form_check span {
  display: inline-block;
  padding-left: 49px;
  margin-right: 24px;
  position: relative;
}
.contact_form_check span:before {
  content: "";
  width: 25px;
  height: 25px;
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  border: 1px solid #707070;
  background: #fff;
}
.contact_form_check span::after {
  content: "";
  position: absolute;
  width: 25px;
  height: 25px;
  background: url(../img/checkbox@2x.png) no-repeat center center/contain;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  display: none;
}
.contact_form_check [type=checkbox]:checked + span::after {
  display: block;
}
.contact_form_check a {
  font-weight: 700;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.contact_form_check a:hover {
  opacity: 0.6;
}

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

.footer {
  padding: 60px 0 24px;
  background: -webkit-gradient(linear, left top, left bottom, from(#666666), to(#333333));
  background: linear-gradient(to bottom, #666666, #333333);
  color: #fff;
}
@media (max-width: 767px) {
  .footer {
    padding: 30px 0 12px;
  }
}

.footer_content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 767px) {
  .footer_content {
    display: block;
  }
}

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

.footer_logo img {
  width: 205px;
}

.footer_address,
.footer_tel {
  font-size: 14px;
}

.footer_address {
  margin-top: 24px;
}
@media (max-width: 767px) {
  .footer_address {
    margin-top: 13px;
  }
}

.footer_tel {
  margin-top: 10px;
}
@media (max-width: 767px) {
  .footer_tel {
    margin-top: 6px;
  }
}

.footer_center {
  width: 48%;
  text-align: center;
}
@media (max-width: 767px) {
  .footer_center {
    width: 100%;
    margin-top: 24px;
  }
}

.footer_nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-family: "Lato", sans-serif;
}
.footer_nav li:not(:first-child) {
  margin-left: 40px;
}
@media (max-width: 767px) {
  .footer_nav li:not(:first-child) {
    margin-left: 20px;
  }
}
.footer_nav li a {
  text-decoration: none;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.footer_nav li a:hover {
  color: #E81919;
}

.footer_right {
  width: 16%;
}
@media (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 (max-width: 767px) {
  .footer_sns {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.footer_sns li:not(:first-child) {
  margin-left: 16px;
}
@media (max-width: 767px) {
  .footer_sns li:not(:first-child) {
    margin-left: 8px;
  }
}
.footer_sns a {
  text-decoration: none;
  -webkit-transition: all 0.3 ease 0s;
  transition: all 0.3 ease 0s;
}
.footer_sns a:hover {
  opacity: 0.5;
}
.footer_sns img {
  width: 30px;
}

.copyright {
  margin-top: 46px;
  text-align: center;
  font-size: 14px;
  font-family: "Lato", sans-serif;
}
@media (max-width: 767px) {
  .copyright {
    margin-top: 22px;
  }
}

.to-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
@media (max-width: 767px) {
  .to-top {
    bottom: 12px;
    right: 12px;
  }
}
.to-top.is-show {
  opacity: 1;
  visibility: visible;
}
.to-top a {
  text-decoration: none;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.to-top a:hover {
  opacity: 0.6;
}
.to-top a img {
  width: 60px;
}
@media (max-width: 767px) {
  .to-top a img {
    width: 30px;
  }
}

.swiper-button-next {
  width: 40px;
  height: 40px;
  margin-top: -20px;
  background: transparent url(../img/arrow-next@2x.png) no-repeat center center/contain;
  right: calc(50% - 1200px / 2);
}
.swiper-button-next::after {
  display: none;
}
@media (min-width: 768px) and (max-width: 1199px) {
  .swiper-button-next {
    right: 10px;
  }
}
@media (max-width: 767px) {
  .swiper-button-next {
    right: 10px;
  }
}

.swiper-button-prev {
  width: 40px;
  height: 40px;
  margin-top: -20px;
  background: transparent url(../img/arrow-prev@2x.png) no-repeat center center/contain;
  left: calc(50% - 1200px / 2);
}
.swiper-button-prev::after {
  display: none;
}
@media (min-width: 768px) and (max-width: 1199px) {
  .swiper-button-prev {
    left: 10px;
  }
}
@media (max-width: 767px) {
  .swiper-button-prev {
    left: 10px;
  }
}

.swiper-pagination-bullet {
  width: 16px;
  height: 16px;
  background: #fff;
  opacity: 1;
}

.swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin-right: 8px;
  margin-left: 8px;
}

.swiper-pagination-bullet-active {
  background: #2F7DC8;
}

.drawer-icon {
  position: fixed;
  top: 20px;
  right: 16px;
  z-index: 300;
  display: none;
}
@media (max-width: 767px) {
  .drawer-icon {
    display: block;
  }
}
.drawer-icon.is-active {
  -webkit-transform: translateX(-200px);
          transform: translateX(-200px);
}
.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_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: #fff;
  top: 0;
  left: 0;
}

.drawer-icon_bar1 {
  top: 0;
}

.drawer-icon_bar2 {
  top: 8px;
}

.drawer-icon_bar3 {
  top: 16px;
}

.drawer-content {
  width: 200px;
  height: 100%;
  position: fixed;
  right: 0;
  top: 0;
  background: #fff;
  -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%);
  -webkit-transition: -webkit-transform 0.5s ease 0s;
  transition: -webkit-transform 0.5s ease 0s;
  transition: transform 0.5s ease 0s;
  transition: transform 0.5s ease 0s, -webkit-transform 0.5s ease 0s;
}
.drawer-content.is-active {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.drawer-content_item {
  border-bottom: 1px dotted #707070;
}
.drawer-content_item a {
  display: block;
  color: #707070;
  text-decoration: none;
  padding: 18px 20px;
  position: relative;
}
.drawer-content_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@2x.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;
}

.qa {
  background: #EEEEEE;
}

.qa-items {
  width: 900px;
  max-width: 100%;
  margin: 80px auto 0;
}

.qa-item:nth-child(n+2) {
  margin-top: 24px;
}

.qa-box {
  border: 1px solid #3F51B5;
}

.qa-box_q {
  background: #3F51B5;
  padding: 12px 56px;
  color: #fff;
  font-weight: 700;
  position: relative;
}
.qa-box_q::before {
  position: absolute;
  content: "Q";
  top: 12px;
  left: 20px;
}

.qa-box_icon {
  width: 14px;
  height: 14px;
  position: absolute;
  top: 50%;
  right: 14px;
  -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: #fff;
  border-radius: 20px;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
}

.qa-box_bar2 {
  width: 2px;
  height: 14px;
  background: #fff;
  border-radius: 20px;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  top: 0;
  -webkit-transition: all 0.3 ease 0;
  transition: all 0.3 ease 0;
}

.qa-box_a {
  background: #fff;
  color: #3F51B5;
  font-weight: 700;
  line-height: 1.5;
  padding: 16px 30px 16px 20px;
  display: none;
}

.qa-box_content {
  position: relative;
  padding-left: 35px;
}
.qa-box_content::before {
  content: "A";
  position: absolute;
  top: 0;
  left: 0;
}

.qa-y {
  background: #DDDDDD;
}

.qa-y_items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 60px auto 0;
  width: 900px;
  max-width: 100%;
}

.qa-y_item {
  width: calc(50% - 20px);
  margin-right: 40px;
}
.qa-y_item:last-child {
  margin-right: 0;
}

.accordion-y_head {
  border: 1px solid #3F51B5;
  border-radius: 30px;
  color: #3F51B5;
  background: #fff;
  text-align: center;
  padding: 15px 56px;
  font-weight: 700;
  font-size: 20px;
  position: relative;
}

.accordion-y_body {
  margin: 0;
  display: none;
}

.accordion-y_body-in {
  margin: 40px 0 24px;
  line-height: 1.5;
  color: #3F51B5;
  position: relative;
}

.accordion-y_icon {
  width: 24px;
  height: 24px;
  position: absolute;
  content: "";
  right: 18px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: url(../img/arrow-bottom@2x.png) no-repeat center center/contain;
}
.accordion-y_icon.is-open {
  background: url(../img/arrow-top@2x.png) no-repeat center center/contain;
}

.modal-contact {
  position: fixed;
  z-index: 501;
  width: 900px;
  max-width: calc(100% - 48px);
  height: 652px;
  max-height: calc(100% - 48px);
  background: #fff;
  -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 (max-width: 767px) {
  .modal-contact {
    padding-right: 30px;
    padding-left: 30px;
  }
}

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

.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: 700;
  padding-left: 20px;
  position: relative;
  margin-top: 40px;
}
.modal-contact_sub-head::after {
  position: absolute;
  content: "";
  background: #3F51B5;
  width: 4px;
  height: 20px;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.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 {
  background: #3F51B5;
  text-decoration: none;
  display: inline-block;
  width: 176px;
  color: #fff;
  padding: 16px;
  font-weight: 700;
  border-radius: 8px;
  text-align: center;
  -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;
  width: 40px;
  height: 40px;
  top: -20px;
  right: -20px;
}
.modal-contact_icon a {
  text-decoration: none;
}
.modal-contact_icon img {
  width: 40px;
  height: 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;
}