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

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

body {
  font-family: "游ゴシック体", "Yu Gothic", yugothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #333;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: #fff;
  overflow-x: hidden;
  overflow-wrap: break-word;
  padding-top: 100px;
}
@media (max-width: 767px) {
  body {
    padding-top: 60px;
  }
}

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

@media (min-width: 1200px) {
  .hidden-pc {
    display: none;
  }
}

@media (min-width: 768px) and (max-width: 1247px) {
  .hidden-tab {
    display: none;
  }
}

@media (max-width: 767px) {
  .hidden-sp {
    display: none;
  }
}

.section {
  padding-top: 100px;
  padding-bottom: 120px;
}
@media (max-width: 767px) {
  .section {
    padding-top: 40px;
    padding-bottom: 80px;
  }
}

.inner {
  width: 1200px;
  max-width: 100%;
  margin: 0 auto;
  height: inherit;
}
@media (max-width: 1247px) {
  .inner {
    padding-left: 24px;
    padding-right: 24px;
  }
}
@media (max-width: 767px) {
  .inner {
    padding-left: 16px;
    padding-right: 16px;
  }
}

.button-arrow-right {
  -webkit-appearance: none;
  background: #3f51b5 url(../img/icon-arrow-right.png) no-repeat center right 12px/17px 16px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  text-align: center;
  border: none;
  color: #fff;
  cursor: pointer;
  display: inline-block;
  text-decoration: none;
  padding: 14px 60px;
  font-size: 16px;
  border-radius: 8px;
  font-weight: 700;
  transition: all 0.3s ease 0s;
  width: 304px;
  max-width: 100%;
  line-height: 1.6;
}
@media (max-width: 767px) {
  .button-arrow-right {
    padding: 14px 32px;
    width: 100%;
  }
}

.section-title {
  font-size: 48px;
  font-weight: 700;
  padding: 0 0 28px;
  margin: 0;
  position: relative;
  text-align: center;
  line-height: 1;
}
.section-title::after {
  content: "";
  background: #3f51b5;
  width: 60px;
  height: 4px;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
@media (max-width: 767px) {
  .section-title::after {
    width: 48px;
  }
}
@media (max-width: 1247px) {
  .section-title {
    font-size: 50px;
    padding-bottom: 28px;
  }
}
@media (max-width: 767px) {
  .section-title {
    font-size: 42px;
    padding-bottom: 16px;
  }
}

.header {
  background: #3f51b5;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 20;
  height: 100px;
}
@media (max-width: 767px) {
  .header {
    height: 60px;
  }
}

.header__inner {
  display: flex;
  align-items: center;
  padding-top: 30px;
  padding-bottom: 30px;
}
@media (max-width: 767px) {
  .header__inner {
    padding-top: 14px;
    padding-bottom: 14px;
  }
}

.header__logo {
  margin: 0;
  line-height: 1;
}
.header__logo img {
  width: 205px;
  vertical-align: top;
}
@media (max-width: 1247px) {
  .header__logo img {
    width: 180px;
  }
}
@media (max-width: 767px) {
  .header__logo img {
    width: 148px;
  }
}
.header__logo a {
  text-decoration: none;
  transition: all 0.3s ease 0s;
}

.header__nav {
  margin-left: auto;
}
@media (max-width: 767px) {
  .header__nav {
    display: none;
  }
}
.header__nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
}
.header__nav ul li {
  margin-right: 40px;
}
.header__nav ul li:last-child {
  margin-right: 0;
}
.header__nav ul li a {
  transition: all 0.3s ease 0s;
  text-decoration: none;
  color: #fff;
  display: block;
  position: relative;
}
.header__nav ul li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 100%;
  height: 2px;
  background: #e81919;
  opacity: 0;
  transition: all 0.3s ease 0s;
}
.header__nav ul li a.is-active::after {
  opacity: 1;
}

.mainvisual {
  height: 600px;
  width: 100%;
  background: transparent url(../img/mainvisual.png) no-repeat top center/cover;
  position: relative;
  overflow: hidden;
}
@media (max-width: 1247px) {
  .mainvisual {
    height: 600px;
  }
}
@media (max-width: 767px) {
  .mainvisual {
    height: 500px;
  }
}

.mainvisual__content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  text-align: center;
  line-height: 1.2;
}
@media (max-width: 1247px) {
  .mainvisual__content {
    padding-left: 24px;
    padding-right: 24px;
  }
}
@media (max-width: 767px) {
  .mainvisual__content {
    padding-left: 16px;
    padding-right: 16px;
  }
}

.mainvisual__title {
  font-size: 64px;
  font-weight: 700;
}
@media (max-width: 1247px) {
  .mainvisual__title {
    font-size: 56px;
  }
}
@media (max-width: 767px) {
  .mainvisual__title {
    font-size: 36px;
  }
}

.mainvisual__lead {
  font-size: 24px;
  font-weight: 700;
  margin-top: 24px;
}
@media (max-width: 1247px) {
  .mainvisual__lead {
    font-size: 30px;
  }
}
@media (max-width: 767px) {
  .mainvisual__lead {
    font-size: 20px;
  }
}

.mainvisual__button {
  margin-top: 36px;
}
@media (max-width: 1247px) {
  .mainvisual__button {
    margin-top: 34px;
  }
}
@media (max-width: 767px) {
  .mainvisual__button {
    margin-top: 34px;
  }
}

.button-mainvisual {
  display: inline-block;
  background: #3f51b5;
  color: #fff;
  text-align: center;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  cursor: pointer;
  transition: all 0.3s ease 0s;
  padding: 22px 24px;
  border-radius: 8px;
  font-size: 24px;
  width: 384px;
  max-width: 100%;
}
@media (max-width: 767px) {
  .button-mainvisual {
    padding: 20px 36px;
    font-size: 20px;
    width: 280px;
  }
}

.card {
  background: #efefef;
}

.card__items {
  display: flex;
  flex-wrap: wrap;
  margin-top: 56px;
}
@media (max-width: 767px) {
  .card__items {
    margin-top: 30px;
  }
}

.card__item {
  width: calc(33.33333333% - 16px);
  margin-right: 24px;
  margin-top: 24px;
}
.card__item:nth-child(3n) {
  margin-right: 0;
}
@media (max-width: 1247px) {
  .card__item {
    width: calc(50% - 12px);
    margin-right: 24px;
  }
  .card__item:nth-child(3n) {
    margin-right: 24px;
  }
  .card__item:nth-child(2n) {
    margin-right: 0;
  }
}
@media (max-width: 767px) {
  .card__item {
    width: 100%;
    margin-right: 0;
  }
  .card__item:nth-child(3n) {
    margin-right: 0;
  }
}

.media {
  overflow: hidden;
  background: #fff;
  border-radius: 4px;
  padding: 16px 16px 14px;
  display: block;
  text-decoration: none;
  transition: all 0.3s ease 0s;
}

.media__img {
  text-align: center;
}
.media__img img {
  vertical-align: bottom;
}

.media__body {
  margin-top: 12px;
}

.media__title {
  font-weight: 700;
  font-size: 20px;
  color: #6f7579;
}

.media__content {
  font-weight: 700;
  color: #6f7579;
  margin-top: 4px;
  line-height: 1.5;
}

.news__items {
  margin: 60px auto 0;
  width: 800px;
  max-width: 100%;
}
@media (max-width: 767px) {
  .news__items {
    margin-top: 38px;
  }
}

.news__item {
  border-bottom: 1px solid #707070;
}
.news__item:last-child {
  border: none;
}

.info {
  padding: 20px 0 10px;
  display: flex;
}
@media (max-width: 767px) {
  .info {
    display: block;
    padding: 12px 0;
  }
}

.info__meta {
  display: flex;
  width: 185px;
  padding-top: 2px;
}
@media (max-width: 767px) {
  .info__meta {
    width: 100%;
    padding-top: 0;
  }
}

.info__published {
  width: 105px;
  display: inline-block;
  padding-top: 3px;
}
@media (max-width: 767px) {
  .info__published {
    width: auto;
  }
}

.info__label {
  width: 80px;
}
@media (max-width: 767px) {
  .info__label {
    width: auto;
    margin-left: auto;
  }
}
.info__label a {
  display: inline-block;
  color: #fff;
  font-weight: 700;
  text-align: center;
  padding: 8px;
  background: #666;
  border-radius: 4px;
  text-decoration: none;
  line-height: 1;
  transition: all 0.3s ease 0s;
}
@media (max-width: 767px) {
  .info__label a {
    padding: 4px 8px;
  }
}
.info__label.info__label--type01 a {
  background: #3f51b5;
  text-decoration: none;
}
.info__label.info__label--type02 a {
  background: #e81919;
}

.info__title {
  line-height: 1.25;
  width: calc(100% - 105px - 80px);
  padding: 5px 0 0 20px;
}
@media (max-width: 767px) {
  .info__title {
    width: 100%;
    margin-top: 6px;
    padding: 0;
  }
}
.info__title a {
  text-decoration: none;
  color: #333;
  transition: all 0.3s ease 0s;
}

.news__link {
  text-align: center;
  margin-top: 44px;
}
.news__link a {
  text-decoration: none;
  color: #e81919;
  transition: all 0.3s ease 0s;
  font-weight: 700;
}
.news__link a::after {
  content: "";
  width: 7px;
  height: 11px;
  display: inline-block;
  margin-left: 10px;
  vertical-align: middle;
  margin-top: -1px;
  background: transparent url(../img/news-arrow.png) no-repeat center center/contain;
}

.table {
  background: #efefef;
}

.table__content {
  margin-top: 80px;
  display: flex;
}
@media (max-width: 767px) {
  .table__content {
    display: block;
    margin-top: 52px;
  }
}

.table__image {
  width: 454px;
  margin-right: 40px;
  text-align: center;
}
@media (max-width: 1247px) {
  .table__image {
    margin-right: 62px;
  }
}
@media (max-width: 767px) {
  .table__image {
    width: 100%;
    margin-top: 0;
    margin-bottom: 32px;
  }
}
.table__price {
  width: 704px;
}
@media (max-width: 767px) {
  .table__price {
    width: 100%;
  }
}

.table-default {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid #707070;
  background: #fff;
  table-layout: fixed;
}
.table-default th,
.table-default td {
  padding: 18px 24px;
  border: 1px solid #707070;
  vertical-align: middle;
  line-height: 1.2;
  font-weight: 700;
}
@media (max-width: 767px) {
  .table-default th,
.table-default td {
    padding: 16px;
  }
}
.table-default th {
  text-align: center;
  background: #999;
  font-weight: 700;
  color: #fff;
}
.table-default th:first-child {
  width: 170px;
}
@media (max-width: 1247px) {
  .table-default th:first-child {
    width: 100px;
  }
}
@media (max-width: 767px) {
  .table-default th:first-child {
    width: 80px;
  }
}
.table-default td {
  text-align: right;
}
.table-default td.table-default__multiline {
  padding-top: 10px;
  padding-bottom: 8px;
}
.table-default td span.m-active {
  color: #e81919;
}
.table-default td span.m-small {
  font-size: 0.825em;
}

.table-default__attention {
  font-size: 13px;
}

.table__attention {
  margin-top: 6px;
  font-size: 14px;
}
.table__attention a {
  font-weight: 700;
  color: #333;
  transition: all 0.3s ease 0s;
}

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

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

.map__info {
  margin: 8px auto 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  width: 800px;
  max-width: 100%;
}
@media (max-width: 767px) {
  .map__info {
    padding-left: 0;
    padding-right: 0;
    margin-top: 20px;
  }
}
.map__info dt,
.map__info dd {
  padding: 3px 0;
  margin: 0;
}
@media (max-width: 767px) {
  .map__info dt,
.map__info dd {
    padding-top: 3px;
    padding-bottom: 3px;
  }
}
.map__info dt {
  width: 104px;
  font-weight: 700;
}
@media (max-width: 767px) {
  .map__info dt {
    width: 92px;
  }
}
.map__info dd {
  width: calc(100% - 118px);
}
@media (max-width: 767px) {
  .map__info dd {
    width: calc(100% - 92px);
  }
}

.map__link {
  text-align: center;
  margin-top: 22px;
}

.contact {
  background: #efefef;
}

.contact__item {
  margin: 80px auto 0;
  padding: 60px;
  background: #fff;
  width: 800px;
  max-width: 100%;
}
@media (max-width: 767px) {
  .contact__item {
    padding: 20px;
    margin-top: 26px;
  }
}

.contact__controls {
  margin: 0;
}

.contact__control {
  margin-bottom: 60px;
  display: flex;
}
@media (max-width: 767px) {
  .contact__control {
    display: block;
    margin-bottom: 24px;
  }
}
.contact__control:last-child {
  margin-bottom: 0;
}
.contact__control dt {
  width: 160px;
  padding: 6px 0 0;
  margin: 0;
}
@media (max-width: 767px) {
  .contact__control dt {
    width: 100%;
    padding-top: 0;
  }
}
.contact__control dd {
  flex-grow: 1;
  padding: 0;
  margin: 0;
}
@media (max-width: 767px) {
  .contact__control dd {
    width: 100%;
    margin-top: 8px;
  }
}

.contact__label {
  font-size: 16px;
  font-weight: 700;
}
@media (max-width: 767px) {
  .contact__label {
    font-size: 16px;
    display: inline-block;
  }
}

.contact__label--required {
  position: relative;
}
@media (max-width: 767px) {
  .contact__label--required {
    padding-right: 54px;
  }
}
.contact__label--required::after {
  content: "必須";
  position: absolute;
  background: #e81919;
  border-radius: 4px;
  text-align: center;
  color: #fff;
  font-size: 14px;
  line-height: 1;
  font-weight: 700;
  padding: 4px 8px;
  width: 44px;
  display: block;
  top: calc(100% + 8px);
  left: 0;
}
@media (max-width: 767px) {
  .contact__label--required::after {
    top: 50%;
    left: auto;
    right: 0;
    transform: translateY(-50%);
  }
}

.contact__required {
  background: #e81919;
  border-radius: 12px;
  text-align: center;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  padding: 1px 8px;
  width: 46px;
  display: block;
  margin-top: 6px;
}

.contact__radio {
  margin-top: 26px;
  padding: 0;
}
@media (max-width: 767px) {
  .contact__radio {
    margin-top: 26px;
  }
}

.contact__radio-item {
  margin-right: 32px;
}
.contact__radio-item:last-child {
  margin-right: 0;
}
@media (max-width: 767px) {
  .contact__radio-item {
    margin-bottom: 16px;
    margin-right: 0;
    display: block;
  }
}

.contact__check {
  margin-top: 58px;
  text-align: center;
}
@media (max-width: 767px) {
  .contact__check {
    margin-top: 24px;
  }
}
.contact__check a {
  color: #333;
  transition: all 0.3s ease 0s;
  font-weight: 700;
}

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

.form-input {
  width: 100%;
  border: 1px solid #707070;
  padding: 4px 16px;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  background-color: transparent;
  background-image: none;
  border-radius: 0;
  color: inherit;
  font-family: inherit;
  font-size: 14px;
  box-shadow: none;
  height: 38px;
}
@media (max-width: 767px) {
  .form-input {
    padding-top: 4px;
    padding-bottom: 4px;
  }
}

.form-select {
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  background: transparent url(../img/select-arrow.png) no-repeat center right 12px/17px 14px;
  border-radius: 0;
  color: inherit;
  cursor: pointer;
  font-family: inherit;
  font-size: 14px;
  padding: 3px 16px;
  width: 100%;
  border: 1px solid #707070;
  height: 38px;
}
@media (max-width: 767px) {
  .form-select {
    padding-top: 3px;
    padding-bottom: 3px;
    background-position: center right 10px;
  }
}
.form-select::-ms-expand {
  display: none;
}

.form-textarea {
  width: 100%;
  height: 240px;
  border: 1px solid #707070;
  resize: none;
  padding: 10px 16px;
  line-height: 1.625;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  background-color: transparent;
  background-image: none;
  border-radius: 0;
  color: inherit;
  font-family: inherit;
  font-size: 14px;
  vertical-align: bottom;
}
@media (max-width: 767px) {
  .form-textarea {
    height: 180px;
  }
}

.form-radio {
  display: none;
}
.form-radio + span {
  cursor: pointer;
  display: inline-block;
  padding: 0 0 0 28px;
  position: relative;
}
.form-radio + span::before, .form-radio + span::after {
  content: "";
  border-radius: 50%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.form-radio + span::before {
  background: #fff;
  border: 1px solid #707070;
  display: block;
  left: 0;
  width: 20px;
  height: 20px;
}
.form-radio + span::after {
  background: #3f51b5;
  border: 1px solid transparent;
  left: 5px;
  width: 10px;
  height: 10px;
  transition: opacity 0.3s ease 0s;
  opacity: 0;
}
.form-radio:checked + span::after {
  opacity: 1;
}

.form-checkbox {
  display: none;
}
.form-checkbox + span {
  cursor: pointer;
  display: inline-block;
  padding: 0 0 0 50px;
  position: relative;
}
@media (max-width: 767px) {
  .form-checkbox + span {
    padding-left: 46px;
  }
}
.form-checkbox + span::before, .form-checkbox + span::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.form-checkbox + span::before {
  background: #fff;
  border: 1px solid #707070;
  display: block;
  left: 0;
  width: 25px;
  height: 25px;
}
.form-checkbox + span::after {
  border: 1px solid transparent;
  left: 0;
  width: 25px;
  height: 25px;
  background: transparent url(../img/icon-check.png) no-repeat center center/contain;
  transition: opacity 0.3s ease 0s;
  opacity: 0;
}
.form-checkbox:checked + span::after {
  opacity: 1;
}

.footer {
  padding: 48px 0 24px;
  background: linear-gradient(to bottom, #666, #333);
}
@media (max-width: 767px) {
  .footer {
    padding-top: 62px;
    padding-bottom: 24px;
  }
}

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

.footer__left {
  width: 35%;
  padding: 12px 0 0;
}
@media (max-width: 767px) {
  .footer__left {
    width: 100%;
    padding: 0;
  }
}

.footer__center {
  width: 50%;
  padding: 8px 10px 0;
}
@media (max-width: 767px) {
  .footer__center {
    width: 100%;
    margin-top: 52px;
    padding: 0;
  }
}

.footer__right {
  width: 20%;
  padding: 12px 0;
}
@media (max-width: 1247px) {
  .footer__right {
    padding-left: 10px;
    padding-right: 10px;
  }
}
@media (max-width: 767px) {
  .footer__right {
    width: 100%;
    margin-top: 24px;
    padding: 0;
  }
}

.footer__logo a {
  transition: all 0.3s ease 0s;
  text-decoration: none;
}
.footer__logo img {
  width: 205px;
}

.footer__info {
  margin-top: 22px;
  color: #fff;
  font-size: 14px;
}
@media (max-width: 767px) {
  .footer__info {
    margin-top: 20px;
  }
}
.footer__info p {
  margin-top: 0;
  margin-bottom: 6px;
}
@media (max-width: 767px) {
  .footer__info p {
    margin-bottom: 6px;
  }
}
.footer__info p:last-child {
  margin-bottom: 0;
}

.footer__nav ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer__nav ul li {
  margin-right: 40px;
  margin-bottom: 12px;
}
@media (max-width: 1247px) {
  .footer__nav ul li {
    margin-right: 20px;
  }
}
@media (max-width: 767px) {
  .footer__nav ul li {
    margin-right: 16px;
  }
}
.footer__nav ul li:last-child {
  margin-right: 0;
}
.footer__nav ul li a {
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease 0s;
}

.footer_sns ul {
  display: flex;
  justify-content: flex-end;
  list-style: none;
  padding: 0;
  margin: 0;
}
@media (max-width: 767px) {
  .footer_sns ul {
    justify-content: center;
  }
}
.footer_sns ul li {
  margin-right: 16px;
}
.footer_sns ul li:last-child {
  margin-right: 0;
}
.footer_sns ul li a {
  text-decoration: none;
  transition: all 0.3s ease 0s;
}
.footer_sns ul li img {
  width: 30px;
  vertical-align: bottom;
}

.footer__copy {
  margin-top: 36px;
  text-align: center;
  color: #fff;
  font-size: 14px;
}
@media (max-width: 767px) {
  .footer__copy {
    margin-top: 40px;
  }
}
.footer__copy a {
  text-decoration: none;
  color: #fff;
}

.totop {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 100;
  visibility: visible;
  transition: all 0.3s ease 0s;
}
@media (max-width: 1247px) {
  .totop {
    right: 16px;
    bottom: 16px;
  }
}
@media (max-width: 767px) {
  .totop {
    right: 10px;
    bottom: 10px;
  }
}
.totop.is-show {
  visibility: visible;
}
.totop a {
  text-decoration: none;
  transition: all 0.3s ease 0s;
}
.totop img {
  width: 60px;
  vertical-align: bottom;
}
@media (max-width: 767px) {
  .totop img {
    width: 42px;
  }
}

.button-mainvisual {
  transition: all 0.5s ease 0s;
}
.button-mainvisual:hover {
  transform: scale(1.1);
}

.button-arrow-right {
  transition: all 0.3s ease 0s;
}
.button-arrow-right:hover {
  opacity: 0.7;
}

.button-modal {
  transition: all 0.3s ease 0s;
}
.button-modal:hover {
  opacity: 0.7;
}

.header__logo a {
  transition: all 0.3s ease 0s;
}
.header__logo a:hover {
  opacity: 0.7;
}

.header__nav ul li a::after {
  transition: all 0.3s ease 0s;
}
.header__nav ul li a:hover::after {
  opacity: 1;
}

.media {
  transition: all 0.3s ease 0s;
}
.media:hover {
  opacity: 0.7;
}

.info__label a {
  transition: all 0.3s ease 0s;
}
.info__label a:hover {
  opacity: 0.7;
}

.info__title a {
  transition: all 0.3s ease 0s;
}
.info__title a:hover {
  opacity: 0.7;
}

.news__link a {
  transition: all 0.3s ease 0s;
}
.news__link a:hover {
  opacity: 0.7;
}

.table__attention a {
  transition: all 0.3s ease 0s;
}
.table__attention a:hover {
  opacity: 0.7;
}

.contact__check a {
  transition: all 0.3s ease 0s;
}
.contact__check a:hover {
  opacity: 0.7;
}

.form-button {
  transition: opacity 0.3s ease 0s;
}
.form-button:hover {
  opacity: 0.7;
}

.footer__logo a {
  transition: all 0.3s ease 0s;
}
.footer__logo a:hover {
  opacity: 0.7;
}

.footer__nav ul li a {
  transition: all 0.3s ease 0s;
}
.footer__nav ul li a:hover {
  opacity: 0.7;
}

.totop {
  transition: all 0.3s ease 0s;
}
.totop a {
  transition: all 0.3s ease 0s;
}
.totop a:hover {
  opacity: 0.7;
}

.footer_sns ul li a {
  transition: all 0.3s ease 0s;
}
.footer_sns ul li a:hover {
  opacity: 0.7;
}

body {
  font-family: "Noto Sans JP", sans-serif;
}

.section-title {
  font-family: "Lato", sans-serif;
}

.header__nav ul li a {
  font-family: "Lato", sans-serif;
}

.info__published {
  font-family: "Lato", sans-serif;
}

.news__link a {
  font-family: "Lato", sans-serif;
}

.table-default th {
  font-family: "Lato", sans-serif;
}

.footer__nav ul li a {
  font-family: "Lato", sans-serif;
}

.footer__copy {
  font-family: "Lato", sans-serif;
}

.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% - 600px);
}
.swiper-button-next::after {
  display: none;
}
@media (max-width: 1247px) {
  .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% - 600px);
}
.swiper-button-prev::after {
  display: none;
}
@media (max-width: 1247px) {
  .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-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin-right: 8px;
  margin-left: 8px;
}

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