@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@200;300;400;500;600;700;900&display=swap");
/*
$serif: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
$sansSerif: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
$sansSerifBold: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
$msSerif: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
$msSansSerif: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
*/
/*
$serif: 'Noto Serif JP', serif;
$sansSerif: 'Noto Sans JP', sans-serif;
$sansSerifBold: 'Noto Sans JP', sans-serif;
$msSerif: 'Noto Serif JP', serif;
$msSansSerif: 'Noto Sans JP', sans-serif;
*/
@media screen and (max-width: 767px) {
  .u-pc {
    display: none;
  }
}

.u-sp {
  display: none;
}

@media screen and (max-width: 767px) {
  .u-sp {
    display: block;
  }
}

/* FontFamily */
html {
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  color: #333;
  line-height: 1.5;
  font-weight: 500;
  letter-spacing: 0.05em;
  font-size: 16px;
}

/* リキッドレイアウト対応 */
@media (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}

@media screen and (min-width: 768px) {
  html {
    font-size: 1.3913043478vw;
  }
}

@media (min-width: 1280px) {
  html {
    font-size: 16px;
  }
}

/* pcの電話番号発信対応 */
a {
  text-decoration: none;
  color: inherit;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

a[href^="tel:"] {
  pointer-events: none;
}

a:hover {
  opacity: 0.8;
}

@media screen and (max-width: 1023px) {
  a[href^="tel:"] {
    pointer-events: unset;
  }
}

/* ホバー */
* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

*::before, *::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

/* Remove default type */
ul, ol {
  list-style: none;
}

li, dd {
  list-style-type: none;
}

/* Remove default margin padding */
body, h1, h2, h3, h4, p, ul, ol, figure, blockquote, dl, dd {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  font-size: 100%;
  vertical-align: baseline;
}

/* Set core root defaults */
html {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
}

/* Remove list styles on ul, ol elements with a class attribute */
ul, ol {
  list-style: none;
}

/* Make images easier to work with */
img {
  display: block;
  width: 100%;
  height: auto;
}

/* Natural flow and rhythm in articles by default */
article > * + * {
  margin-top: 1em;
}

/* Inherit fonts for inputs and buttons */
input, button, textarea, select {
  font: inherit;
}

/* Blur images when they have no alt attribute */
img:not([alt]) {
  filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feGaussianBlur stdDeviation="10" /></filter></svg>#filter');
  -webkit-filter: blur(10px);
  filter: blur(10px);
}

/* Remove all animations and transitions for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  * {
    -webkit-animation-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    -webkit-animation-iteration-count: 1 !important;
    animation-iteration-count: 1 !important;
    -webkit-transition-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* フォームリセット */
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
  resize: vertical;
}

input[type=submit], input[type=button] {
  cursor: pointer;
}

label, button {
  cursor: pointer;
}

select {
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

button {
  padding: 0;
}

/* btn */
.btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 330px;
  width: 20.625rem;
  max-width: 100%;
  height: 80px;
  height: 5rem;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #fff;
  border-radius: 0.625rem;
  background: linear-gradient(-45deg, #0049aa, #00adfd);
  position: relative;
}

.btn::after {
  position: absolute;
  content: "";
  width: 25px;
  width: 1.5625rem;
  height: 25px;
  height: 1.5625rem;
  background: url(../img/arrow-icon01.png) no-repeat center/cover;
  right: 20px;
  right: 1.25rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

@media screen and (max-width: 767px) {
  .btn {
    font-size: 0.9375rem;
    width: 15.625rem;
    height: 3.4375rem;
  }
}

@media screen and (max-width: 767px) {
  .btn::after {
    width: 0.9375rem;
    height: 0.9375rem;
    right: 0.625rem;
  }
}

/* card */
.card {
  border-radius: 0.625rem;
  background: #fff;
  -webkit-box-shadow: 0.1875rem 0.1875rem 0.5625rem 0 rgba(0, 0, 0, 0.15);
  box-shadow: 0.1875rem 0.1875rem 0.5625rem 0 rgba(0, 0, 0, 0.15);
}

.card__inner {
  display: block;
  padding: 33px 5px 33px;
  padding: 2.0625rem 0.3125rem 2.0625rem;
}

@media screen and (max-width: 767px) {
  .card__inner {
    padding: 1.25rem 0.3125rem 1.25rem;
  }
}

.card__icon-wrapper {
  width: 140px;
  width: 8.75rem;
  margin: 0 auto;
}

@media screen and (max-width: 767px) {
  .card__icon-wrapper {
    width: 4.375rem;
  }
}

.card__icon {
  width: 100%;
  padding-top: 100%;
  position: relative;
}

.card__icon img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.card__text {
  text-align: center;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-top: 15px;
  margin-top: 0.9375rem;
}

@media screen and (max-width: 767px) {
  .card__text {
    font-size: 0.875rem;
    margin-top: 0.625rem;
  }
}

/* cards */
.cards {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

@media screen and (max-width: 767px) {
  .cards {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}

.cards__item {
  width: calc(20% - 1.5rem);
}

.cards__item:not(:nth-child(5n+1)) {
  margin-left: 30px;
  margin-left: 1.875rem;
}

@media screen and (max-width: 767px) {
  .cards__item {
    width: calc(50% - 0.46875rem);
    margin-top: 0.9375rem;
  }
}

@media screen and (max-width: 767px) {
  .cards__item:not(:nth-child(5n+1)) {
    margin-left: 0;
  }
}

@media screen and (max-width: 767px) {
  .cards__item:not(:nth-child(2n+1)) {
    margin-left: 0.9375rem;
  }
}

/* drawer */
.drawer {
  position: fixed;
  z-index: 200;
  top: 55px;
  top: 3.4375rem;
  left: 0;
  color: #000;
  background: #fff;
  -webkit-transform: translateX(100%);
  transform: translateX(100%);
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
  width: 100%;
  height: 100%;
  padding-top: 50px;
  padding-top: 3.125rem;
  text-align: center;
}

.drawer__menu {
  margin-top: 30px;
  margin-top: 1.875rem;
}

.drawer__menu-item {
  width: 100%;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 700;
}

.drawer__menu-item + .drawer__menu-item {
  margin-top: 10px;
  margin-top: 0.625rem;
}

.drawer__menu-item a {
  padding: 10px 0;
  padding: 0.625rem 0;
  display: block;
}

.drawer__company {
  font-weight: 700;
}

.drawer__tel {
  margin-top: 20px;
  margin-top: 1.25rem;
}

/* このクラスを、jQueryで付与・削除する */
.drawer--active {
  -webkit-transform: translateX(0%);
  transform: translateX(0%);
}

.drawer--fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
}

/* fnav */
.fnav {
  background: #005bac;
  border-bottom: 1px solid #fff;
  border-bottom: 0.0625rem solid #fff;
  padding: 10px 0;
  padding: 0.625rem 0;
}

@media screen and (max-width: 767px) {
  .fnav {
    padding: 1.25rem 1.5625rem 1.5625rem;
  }
}

.fnav__menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

@media screen and (max-width: 767px) {
  .fnav__menu {
    display: block;
  }
}

.fnav__menu-item {
  color: #fff;
  font-size: 14px;
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  padding-left: 25px;
  padding-left: 1.5625rem;
  margin-left: 25px;
  margin-left: 1.5625rem;
}

.fnav__menu-item + .fnav__menu-item {
  position: relative;
}

.fnav__menu-item + .fnav__menu-item::before {
  position: absolute;
  content: "";
  width: 2px;
  width: 0.125rem;
  height: 14px;
  height: 0.875rem;
  background: #fff;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.fnav__menu-item a {
  display: block;
  padding: 5px 0;
  padding: 0.3125rem 0;
}

@media screen and (max-width: 767px) {
  .fnav__menu-item {
    font-size: 0.75rem;
    margin-left: 0;
    padding-left: 0;
  }
}

@media screen and (max-width: 767px) {
  .fnav__menu-item + .fnav__menu-item::before {
    display: none;
  }
}

@media screen and (max-width: 767px) {
  .fnav__menu-item a {
    padding-left: 1.5625rem;
    background: url(../img/arrow-icon05.png) no-repeat center left/0.9375rem;
  }
}

/* footer */
.footer__accordion-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: #e2e2e2;
  padding: 15px 25px;
  padding: 0.9375rem 1.5625rem;
  cursor: pointer;
}

.footer__accordion-text {
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.footer__accordion-more {
  width: 20px;
  width: 1.25rem;
  height: 20px;
  height: 1.25rem;
  background: #0b68b3;
  margin-left: 10px;
  margin-left: 0.625rem;
  position: relative;
}

.footer__accordion-more::before {
  position: absolute;
  content: "";
  width: 12px;
  width: 0.75rem;
  height: 2px;
  height: 0.125rem;
  background: #fff;
  left: 4px;
  left: 0.25rem;
  top: 9px;
  top: 0.5625rem;
}

.footer__accordion-more::after {
  position: absolute;
  content: "";
  width: 12px;
  width: 0.75rem;
  height: 2px;
  height: 0.125rem;
  background: #fff;
  left: 4px;
  left: 0.25rem;
  top: 9px;
  top: 0.5625rem;
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

.footer__accordion-more.open::after {
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
}

.footer__accordion-body {
  padding: 20px 20px;
  padding: 1.25rem 1.25rem;
}

.footer__menu-item {
  font-size: 15px;
  font-size: 0.9375rem;
  line-height: 1.7;
}

.footer__menu-item a {
  display: inline-block;
  padding-right: 23px;
  padding-right: 1.4375rem;
  background: url(../img/menu-icon.png) no-repeat center right/18px;
  background: url(../img/menu-icon.png) no-repeat center right/1.125rem;
}

.footer__links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background: #3990d6;
}

.footer__link {
  width: 33.333%;
  text-align: center;
  color: #fff;
  font-size: 11px;
  font-size: 0.6875rem;
  letter-spacing: 0.1em;
}

.footer__link + .footer__link {
  border-left: 1px solid #fff;
  border-left: 0.0625rem solid #fff;
}

.footer__link a {
  display: block;
  padding: 50px 0 9px;
  padding: 3.125rem 0 0.5625rem;
}

.footer__link:first-child a {
  background: url(../img/search-icon.png) no-repeat center top 12px/30px;
  background: url(../img/search-icon.png) no-repeat center top 0.75rem/1.875rem;
}

.footer__link:nth-child(2) a {
  background: url(../img/guide-icon.png) no-repeat center top 12px/20px;
  background: url(../img/guide-icon.png) no-repeat center top 0.75rem/1.25rem;
}

.footer__link:last-child a {
  background: url(../img/info-icon.png) no-repeat center top 12px/30px;
  background: url(../img/info-icon.png) no-repeat center top 0.75rem/1.875rem;
}

.footer__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  background: linear-gradient(-45deg, #0049aa, #00adfd);
  padding: 20px 130px 25px 30px;
  padding: 1.25rem 8.125rem 1.5625rem 1.875rem;
  position: relative;
}

@media screen and (max-width: 767px) {
  .footer__content {
    display: block;
    padding: 0.625rem 1.5625rem 1.25rem;
  }
}

.footer__logo {
  width: 180px;
  width: 11.25rem;
  max-width: 100%;
}

@media screen and (max-width: 767px) {
  .footer__logo {
    width: 5rem;
  }
}

@media screen and (max-width: 767px) {
  .footer__texts {
    margin-top: 0.625rem;
  }
}

.footer__bg {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 113px;
  width: 7.0625rem;
}

@media screen and (max-width: 767px) {
  .footer__bg {
    width: 3.75rem;
  }
}

.footer__text {
  width: 240px;
  width: 15rem;
  max-width: 100%;
  margin-left: auto;
}

@media screen and (max-width: 767px) {
  .footer__text {
    width: 7.5rem;
    margin-left: 0;
  }
}

.footer__copyright {
  letter-spacing: 0.21em;
  font-size: 14px;
  font-size: 0.875rem;
  color: #fff;
}

@media screen and (max-width: 767px) {
  .footer__copyright {
    font-size: 0.625rem;
    letter-spacing: 0.1em;
    margin-top: 0.9375rem;
  }
}

/* gnav */
.gnav {
  height: inherit;
}

.gnav__menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: inherit;
}

.gnav__menu-item {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  height: inherit;
}

.gnav__menu-item + .gnav__menu-item {
  margin-left: 45px;
  margin-left: 2.8125rem;
}

.gnav__menu-item.current {
  position: relative;
}

.gnav__menu-item.current::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 1px;
  height: 0.0625rem;
  background: #0b68b3;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  bottom: 20px;
  bottom: 1.25rem;
}

.gnav__menu-item a {
  height: inherit;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

/* hamburger */
.hamburger {
  display: block;
  position: absolute;
  z-index: 300;
  right: 0;
  top: 6px;
  top: 0.375rem;
  width: 50px;
  width: 3.125rem;
  height: 50px;
  height: 3.125rem;
  background: #0b68b3;
  cursor: pointer;
  text-align: center;
}

.hamburger__border {
  display: block;
  position: absolute;
  width: 15px;
  width: 0.9375rem;
  height: 1px;
  height: 0.0625rem;
  left: 18px;
  left: 1.125rem;
  background: #fff;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.hamburger__border:nth-child(1) {
  top: 13px;
  top: 0.8125rem;
}

.hamburger__border:nth-child(2) {
  top: 18px;
  top: 1.125rem;
}

.hamburger__border:nth-child(3) {
  top: 23px;
  top: 1.4375rem;
}

.hamburger__text {
  color: #fff;
  font-size: 10px;
  font-size: 0.625rem;
  position: absolute;
  bottom: 8px;
  bottom: 0.5rem;
  left: 50%;
  -webkit-transform: translateX(-50%) scale(0.8);
  transform: translateX(-50%) scale(0.8);
  white-space: nowrap;
}

/* ナビ開いてる時のボタン */
.hamburger--active .hamburger__border {
  top: 18px;
  top: 1.125rem;
}

.hamburger--active .hamburger__border:nth-child(1) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.hamburger--active .hamburger__border:nth-child(2), .hamburger--active .hamburger__border:nth-child(3) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

/* header */
.header {
  margin-bottom: -80px;
  margin-bottom: -5rem;
  position: relative;
  z-index: 3;
}

@media screen and (max-width: 767px) {
  .header {
    margin-bottom: -2.1875rem;
  }
}

.header__top {
  background: linear-gradient(-45deg, #0049aa, #00adfd);
}

.header__text {
  width: 137px;
  width: 8.5625rem;
  max-width: 100%;
  margin-left: auto;
}

@media screen and (max-width: 767px) {
  .header__text {
    width: 4.3125rem;
  }
}

.header__content {
  padding: 29px 0;
  padding: 1.8125rem 0;
}

@media screen and (max-width: 767px) {
  .header__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 3.125rem;
    padding: 0;
  }
}

.header__logo {
  margin-left: 10px;
  margin-left: 0.625rem;
  width: 300px;
  width: 18.75rem;
  max-width: 100%;
}

@media screen and (max-width: 767px) {
  .header__logo {
    width: 9.375rem;
    margin-left: 0;
  }
}

.header__bottom {
  height: 80px;
  height: 5rem;
  background: rgba(255, 255, 255, 0.8);
}

.header__bottom2 {
  height: 80px;
  height: 3.5rem;
  background: rgba(239, 250, 255);
}


@media screen and (max-width: 767px) {
  .header__bottom {
    height: unset;
    min-height: 2.1875rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}

.header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: inherit;
}

.header__company {
  font-size: 30px;
  font-size: 1.875rem;
  font-weight: 700;
  margin-right: 10px;
  margin-right: 0.625rem;
}

@media screen and (max-width: 767px) {
  .header__company {
    font-size: 0.9375rem;
    margin-right: 0;
  }
}

.header__nav, .header__tel {
  margin-left: auto;
}

.header__nav {
  margin: 0 auto;
}

.l-inner {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  max-width: 1330px;
  padding-right: 25px;
  padding-left: 25px;
}

@media screen and (max-width: 767px) {
  .l-inner {
    padding-right: 25px;
    padding-left: 25px;
  }
}

/* main */
.main {
  overflow-x: hidden;
}

/* section-subtitle */
.section-subtitle {
  font-size: 36px;
  font-size: 2.25rem;
  font-weight: 700;
  color: #0b68b3;
  letter-spacing: 0.01em;
}

@media screen and (max-width: 767px) {
  .section-subtitle {
    font-size: 1.3125rem;
  }
}

/* section-title-wrapper */
.section-title-wrapper {
  text-align: center;
}

/* section-title */
.section-title {
  display: inline-block;
  font-size: 46px;
  font-size: 2.875rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  position: relative;
}

.section-title::after {
  position: absolute;
  content: "";
  width: 100px;
  width: 6.25rem;
  height: 2px;
  height: 0.125rem;
  background: #0b68b3;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  bottom: -15px;
  bottom: -0.9375rem;
}

@media screen and (max-width: 767px) {
  .section-title {
    font-size: 1.5rem;
  }
}

@media screen and (max-width: 767px) {
  .section-title::after {
    width: 3.125rem;
    height: 0.0625rem;
    bottom: -0.5rem;
  }
}

/* tel */
.tel__number {
  font-size: 20px;
  font-size: 1.25rem;
}

.tel__number span {
  font-size: 30px;
  font-size: 1.875rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

@media screen and (max-width: 767px) {
  .tel__number {
    font-size: 0.75rem;
  }
}

@media screen and (max-width: 767px) {
  .tel__number span {
    font-size: 1.25rem;
  }
}

.tel__text {
  display: block;
  text-align: right;
  font-size: 12px;
  font-size: 0.75rem;
}

@media screen and (max-width: 767px) {
  .tel__text {
    text-align: center;
    font-size: 0.625rem;
  }
}

/* agency */
.agency {
  padding: 55px 0;
  padding: 3.4375rem 0;
}

@media screen and (max-width: 767px) {
  .agency {
    padding: 4.6875rem 0 2.8125rem;
  }
}

.agency__inner {
  max-width: 1130px;
  max-width: 70.625rem;
}

.agency__text {
  line-height: 1.875;
}

@media screen and (max-width: 767px) {
  .agency__text {
    font-size: 0.75rem;
    line-height: 2;
  }
}

/* contact */
.contact {
  margin-top: 120px;
  margin-top: 7.5rem;
  padding: 80px 0 90px;
  padding: 5rem 0 5.625rem;
  background: url(../img/contact-bg_pc.jpg) no-repeat center/cover;
}

@media screen and (max-width: 767px) {
  .contact {
    margin-top: 3.875rem;
    padding: 2.8125rem 0 3.125rem;
    background: url(../img/contact-bg_sp.jpg) no-repeat center/cover;
  }
}

.contact__inner {
  max-width: 1130px;
  max-width: 70.625rem;
}

.contact__title {
  color: #fff;
  font-weight: 700;
  font-size: 46px;
  font-size: 2.875rem;
}

@media screen and (max-width: 767px) {
  .contact__title {
    font-size: 1.5rem;
    text-align: center;
  }
}

.contact__btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-top: 10px;
  margin-top: 0.625rem;
}

@media screen and (max-width: 767px) {
  .contact__btns {
    display: block;
    margin-top: 1.5625rem;
  }
}

.contact__btn {
  margin-top: 30px;
  margin-top: 1.875rem;
}

.contact__btn a {
  width: 400px;
  width: 25rem;
  max-width: 100%;
  height: 90px;
  height: 5.625rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  border-radius: 0.625rem;
  position: relative;
}

.contact__btn a::after {
  position: absolute;
  content: "";
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.contact__btn:nth-child(even) {
  margin-left: 40px;
  margin-left: 2.5rem;
}

.contact__btn:first-child a {
  color: #fff;
  font-size: 14px;
  font-size: 0.875rem;
  background: linear-gradient(-45deg, #0049aa, #00adfd);
  text-align: right;
}

.contact__btn:first-child a::after {
  width: 25px;
  width: 1.5625rem;
  height: 25px;
  height: 1.5625rem;
  background: url(../img/arrow-icon01.png) no-repeat center/cover;
  right: 20px;
  right: 1.25rem;
}

.contact__btn:first-child span {
  display: block;
  font-size: 30px;
  font-size: 1.875rem;
  letter-spacing: 0.1em;
  background: url(../img/tel-icon.png) no-repeat center left/25px;
  background: url(../img/tel-icon.png) no-repeat center left/1.5625rem;
  padding-left: 35px;
  padding-left: 2.1875rem;
  padding-right: 10px;
  padding-right: 0.625rem;
}

.contact__btn:nth-child(2) a {
  background: #76ecc6;
}

.contact__btn:nth-child(2) a::after {
  width: 25px;
  width: 1.5625rem;
  height: 25px;
  height: 1.5625rem;
  background: url(../img/arrow-icon02.png) no-repeat center/cover;
  right: 20px;
  right: 1.25rem;
}

.contact__btn:nth-child(3) a {
  background: #71bcff;
  color: #fff;
}

.contact__btn:nth-child(3) a::after {
  width: 25px;
  width: 1.5625rem;
  height: 25px;
  height: 1.5625rem;
  background: url(../img/arrow-icon03.png) no-repeat center/cover;
  right: 20px;
  right: 1.25rem;
}

.contact__btn:nth-child(3) span {
  padding-left: 45px;
  padding-left: 2.8125rem;
  background: url(../img/mail-icon.png) no-repeat center left/25px;
  background: url(../img/mail-icon.png) no-repeat center left/1.5625rem;
}

.contact__btn:last-child a {
  border: 3px solid #d50404;
  border: 0.1875rem solid #d50404;
  color: #d50404;
  background: #fff;
}

.contact__btn:last-child a::after {
  width: 12px;
  width: 0.75rem;
  height: 12px;
  height: 0.75rem;
  background: url(../img/arrow-icon04.png) no-repeat center/cover;
  right: 65px;
  right: 4.0625rem;
}

@media screen and (max-width: 767px) {
  .contact__btn {
    margin: 0 auto;
  }
}

@media screen and (max-width: 767px) {
  .contact__btn a {
    width: 15.625rem;
    height: 3.4375rem;
    font-size: 0.9375rem;
    letter-spacing: 0.05em;
    border-radius: 0.3125rem;
    margin: 0 auto;
  }
}

@media screen and (max-width: 767px) {
  .contact__btn:nth-child(even) {
    margin-left: auto;
  }
}

@media screen and (max-width: 767px) {
  .contact__btn + .contact__btn {
    margin-top: 1.125rem;
  }
}

@media screen and (max-width: 767px) {
  .contact__btn:first-child a {
    font-size: 0.625rem;
  }
}

@media screen and (max-width: 767px) {
  .contact__btn:first-child a::after {
    width: 0.8125rem;
    height: 0.8125rem;
    right: 0.625rem;
  }
}

@media screen and (max-width: 767px) {
  .contact__btn:first-child span {
    font-size: 1.125rem;
    background-size: 0.8125rem;
    padding-left: 1.25rem;
    padding-right: 0.9375rem;
  }
}

@media screen and (max-width: 767px) {
  .contact__btn:nth-child(2) a::after {
    width: 0.8125rem;
    height: 0.8125rem;
    right: 0.625rem;
  }
}

@media screen and (max-width: 767px) {
  .contact__btn:nth-child(3) a::after {
    width: 0.8125rem;
    height: 0.8125rem;
    right: 0.625rem;
  }
}

@media screen and (max-width: 767px) {
  .contact__btn:nth-child(3) span {
    padding-left: 1.25rem;
    background-size: 0.8125rem;
  }
}

@media screen and (max-width: 767px) {
  .contact__btn:last-child a {
    border: 0.125rem solid #d50404;
  }
}

@media screen and (max-width: 767px) {
  .contact__btn:last-child a::after {
    width: 0.375rem;
    height: 0.375rem;
    right: 0.8125rem;
  }
}

/* desc */
.desc {
  margin-top: 80px;
  margin-top: 5rem;
}

@media screen and (max-width: 767px) {
  .desc {
    margin-top: 3.125rem;
  }
}

.desc__inner {
  max-width: 1130px;
  max-width: 70.625rem;
}

@media screen and (max-width: 767px) {
  .desc__inner {
    padding: 0 2.8125rem;
  }
}

.desc__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-top: 70px;
  margin-top: 4.375rem;
}

@media screen and (max-width: 767px) {
  .desc__content {
    margin-top: 1.875rem;
    display: block;
  }
}

.desc__list {
  width: 45%;
}

@media screen and (max-width: 767px) {
  .desc__list {
    width: 100%;
  }
}

.desc__list-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  line-height: 2;
  letter-spacing: 0.1em;
  font-size: 18px;
  font-size: 1.125rem;
}

.desc__list-item + .desc__list-item {
  margin-top: 12px;
  margin-top: 0.75rem;
}

@media screen and (max-width: 767px) {
  .desc__list-item {
    font-size: 0.75rem;
  }
}

.desc__list-title {
  font-weight: 700;
  width: 35%;
}

.desc__list-text {
  width: 65%;
}

.desc__map {
  width: 50%;
}

@media screen and (max-width: 767px) {
  .desc__map {
    width: 100%;
    max-width: 31.25rem;
    margin: 2.1875rem auto 0;
  }
}

/* insurance */
.insurance {
  background: #effaff;
  margin-top: 100px;
  margin-top: 6.25rem;
  padding: 90px 0 95px;
  padding: 5.625rem 0 5.9375rem;
}

@media screen and (max-width: 767px) {
  .insurance {
    margin-top: 3.75rem;
    padding: 3.125rem 0 2.5rem;
  }
}

.insurance__blocks {
  margin-top: 60px;
  margin-top: 3.75rem;
}

@media screen and (max-width: 767px) {
  .insurance__blocks {
    margin-top: 1.5625rem;
  }
}

.insurance__block + .insurance__block {
  margin-top: 70px;
  margin-top: 4.375rem;
}

@media screen and (max-width: 767px) {
  .insurance__block + .insurance__block {
    margin-top: 3.125rem;
  }
}

.insurance__subtitle {
  text-align: center;
}

.insurance__card {
  margin-top: 35px;
  margin-top: 2.1875rem;
}

@media screen and (max-width: 767px) {
  .insurance__card {
    width: 25rem;
    max-width: 100%;
    margin: 0.3125rem auto 0;
  }
}

.insurance__btn {
  margin: 75px auto 0;
  margin: 4.6875rem auto 0;
}

@media screen and (max-width: 767px) {
  .insurance__btn {
    margin-top: 2.625rem;
  }
}

/* message */
.message {
  margin-top: 100px;
  margin-top: 6.25rem;
}

@media screen and (max-width: 767px) {
  .message {
    margin-top: 2.8125rem;
  }
}

@media screen and (max-width: 767px) {
  .message__inner {
    padding: 0 2.8125rem;
  }
}

.message__img {
  width: 50%;
  float: left;
  margin-right: 50px;
  margin-right: 3.125rem;
  margin-bottom: 40px;
  margin-bottom: 2.5rem;
}

@media screen and (max-width: 767px) {
  .message__img {
    float: unset;
    width: 100%;
    max-width: 25rem;
    margin: 0 auto;
  }
}

.message__title {
  display: inline;
  font-size: 44px;
  font-size: 2.75rem;
  font-weight: 700;
  line-height: 1.2;
  background: url(../img/title-icon.png) no-repeat center left/35px;
  background: url(../img/title-icon.png) no-repeat center left/2.1875rem;
  padding-left: 55px;
  padding-left: 3.4375rem;
}

@media screen and (max-width: 767px) {
  .message__title {
    display: block;
    font-size: 1.4375rem;
    background-size: 1rem;
    padding-left: 1.5625rem;
    margin-top: 0.9375rem;
  }
}

.message__text {
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 2.3;
  margin-top: 10px;
  margin-top: 0.625rem;
}

@media screen and (max-width: 767px) {
  .message__text {
    font-size: 0.75rem;
    line-height: 2;
  }
}

/* mv */
.mv {
  position: relative;
  z-index: 2;
  padding: 165px 0 80px;
  padding: 10.3125rem 0 5rem;
}

@media screen and (max-width: 767px) {
  .mv {
    padding: 2.9375rem 0 1.5625rem;
  }
}

.mv__bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.mv__bg img {
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.mv__content, .mv__bottom {
  max-width: 100%;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.7);
}

.mv__content {
  width: 1080px;
  width: 67.5rem;
  text-align: center;
  padding: 40px 20px 45px;
  padding: 2.5rem 1.25rem 2.8125rem;
}

@media screen and (max-width: 767px) {
  .mv__content {
    padding: 1.5625rem 1.5625rem 1.5625rem;
  }
}

.mv__title {
  font-size: 48px;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.7;
}

@media screen and (max-width: 767px) {
  .mv__title {
    font-size: 1.5rem;
    line-height: 1.6;
    padding-left: 0.625rem;
  }
}

.mv__text {
  width: 710px;
  width: 44.375rem;
  max-width: 100%;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 2.4;
  border-top: 1px solid #0b68b3;
  border-top: 0.0625rem solid #0b68b3;
  padding-top: 30px;
  padding-top: 1.875rem;
  margin: 20px auto 0;
  margin: 1.25rem auto 0;
}

@media screen and (max-width: 767px) {
  .mv__text {
    font-size: 0.75rem;
    line-height: 2;
    margin-top: 0.625rem;
    padding-top: 0.9375rem;
  }
}

.mv__bottom {
  width: 900px;
  width: 56.25rem;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 35px;
  margin-top: 2.1875rem;
  padding: 15px 15px;
  padding: 0.9375rem 0.9375rem;
}

@media screen and (max-width: 767px) {
  .mv__bottom {
    text-align: left;
    margin-top: 1.5625rem;
    padding: 0.625rem 0.9375rem;
  }
}

.mv__logo {
  width: 115px;
  width: 7.1875rem;
}

@media screen and (max-width: 767px) {
  .mv__logo {
    min-width: 3.125rem;
  }
}

.mv__subtext {
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.83;
  margin-left: 25px;
  margin-left: 1.5625rem;
}

@media screen and (max-width: 767px) {
  .mv__subtext {
    font-size: 0.75rem;
    line-height: 1.66;
    margin-left: 0.375rem;
  }
}

/* web */
.web {
  background: #effaff;
  padding-bottom: 100px;
  padding-bottom: 6.25rem;
}

@media screen and (max-width: 767px) {
  .web {
    padding-bottom: 3.4375rem;
  }
}

.web__links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  width: 1210px;
  width: 75.625rem;
  max-width: 100%;
  margin: 10px auto 0;
  margin: 0.625rem auto 0;
}

@media screen and (max-width: 767px) {
  .web__links {
    display: block;
    margin-top: 2.5rem;
  }
}

.web__link {
  width: calc(33.33333% - 3.33333rem);
  margin-top: 55px;
  margin-top: 3.4375rem;
}

.web__link:not(:nth-child(3n+1)) {
  margin-left: 80px;
  margin-left: 5rem;
}

.web__link a {
  display: block;
}

@media screen and (max-width: 767px) {
  .web__link {
    width: 100%;
    max-width: 10.9375rem;
    margin: 0 auto;
  }
  .web__link + .web__link {
    margin-top: 0.9375rem;
  }
}

@media screen and (max-width: 767px) {
  .web__link:not(:nth-child(3n+1)) {
    margin-left: auto;
  }
}
/*# sourceMappingURL=style.css.map */