@charset "UTF-8";
/*------ 変数 ------*/
/*----- mixin ------*/
/* -------------- */
/* --- base ----- */
/* -------------- */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@500&display=swap");
html {
  font-size: 62.5%;
}

html body {
  font-family: "Affogato-Medium", "Noto Sans JP", sans-serif;
  font-size: 16px;
  letter-spacing: .05em;
  color: #393939;
}

img {
  width: 100%;
  vertical-align: bottom;
}

a {
  cursor: pointer;
  text-decoration: none;
}

a:hover,
a:focus {
  -webkit-transition: .2s;
  transition: .2s;
}

button:hover,
button:focus {
  -webkit-transition: .2s;
  transition: .2s;
  opacity: .8;
}

button,
a {
  display: inline-block;
  cursor: pointer;
}

.section__title {
  padding-top: 117px;
  padding-bottom: 40px;
}

@media screen and (max-width: 400px) {
  .section__title {
    padding-top: 60px;
    padding-bottom: 30px;
  }
}

.section__title .section__title--top {
  font-size: 1.1rem;
  display: block;
  margin-bottom: 12px;
  letter-spacing: 0;
  color: #014bb4;
}

@media screen and (max-width: 400px) {
  .section__title .section__title--top {
    margin-bottom: 5px;
  }
}

.section__title .section__title--top.active span {
  opacity: .1;
}

.section__title .section__title--bottom {
  font-size: 2.8rem;
  font-size: clamp(21px, 3.645vw, 28px);
  line-height: 1.42857;
  display: block;
  letter-spacing: .08em;
  font-family: "Noto Sans JP", sans-serif;
}

@media screen and (max-width: 400px) {
  .section__title .section__title--bottom {
    font-size: 2.1rem;
  }
}

.section__title .section__title--bottom.active span {
  opacity: .1;
}

.btn {
  font-size: 1.4rem;
  position: relative;
  display: block;
  width: 200px;
  padding: 16px 0;
  text-align: center;
  color: #014bb4;
  border: 1px solid currentColor;
}

.btn::after {
  display: block;
  width: 25.3%;
  height: 1px;
  content: "";
  -webkit-transition: .2s;
  transition: .2s;
  background-color: #014bb4;
  position: absolute;
  top: 50%;
  right: -12%;
}

.btn.is_active::after {
  -webkit-transition: .2s;
  transition: .2s;
  position: absolute;
  top: 50%;
  right: 0;
}

.contents__item-small {
  font-size: 1.4rem;
  color: #393939;
}

@media screen and (max-width: 400px) {
  .contents__item-small {
    font-size: 1rem;
  }
}

/*----フォント----*/
@font-face {
  font-family: "Affogato-Medium";
  font-weight: 500;
  font-style: normal;
  src: url("../font/Affogato-Medium.woff2") format("woff2"), url("../font/Affogato-Medium.woff") format("woff"), url("../font/Affogato-Medium.ttf") format("truetype");
}

/*1.フェードインアニメーションの指定*/
.scrollAnime-kv--top,
.scrollAnime-kv--middle,
.scrollAnime-kv--bottom,
.scrollAnime {
  opacity: 0;
}

/*一瞬表示されるのを防ぐ*/
.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
  -webkit-animation-duration: .7s;
  animation-duration: .7s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

@-webkit-keyframes fadeInDown {
  0% {
    opacity: 0;
  }
  100% {
    -webkit-transform: translate(0);
    transform: translate(0);
    opacity: 1;
  }
}

@keyframes fadeInDown {
  0% {
    opacity: 0;
  }
  100% {
    -webkit-transform: translate(0);
    transform: translate(0);
    opacity: 1;
  }
}

/*2.上下の動きを指定*/
.downUp {
  -webkit-transform: translateY(60px);
  transform: translateY(60px);
}

/*3.左右の動きを指定*/
.slide-right {
  -webkit-transform: translateX(20px);
  transform: translateX(20px);
}

.scrollAnime02 {
  opacity: 0;
}

/*一瞬表示されるのを防ぐ*/
.fadeInDown02 {
  -webkit-animation-name: fadeInDown02;
  animation-name: fadeInDown02;
  -webkit-animation-duration: .7s;
  animation-duration: .7s;
  -webkit-animation-delay: .2s;
  animation-delay: .2s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

@-webkit-keyframes fadeInDown02 {
  0% {
    opacity: 0;
  }
  100% {
    -webkit-transform: translate(0);
    transform: translate(0);
    opacity: 1;
  }
}

@keyframes fadeInDown02 {
  0% {
    opacity: 0;
  }
  100% {
    -webkit-transform: translate(0);
    transform: translate(0);
    opacity: 1;
  }
}

.scrollAnime03 {
  opacity: 0;
}

/*一瞬表示されるのを防ぐ*/
.fadeInDown03 {
  -webkit-animation-name: fadeInDown03;
  animation-name: fadeInDown03;
  -webkit-animation-duration: .7s;
  animation-duration: .7s;
  -webkit-animation-delay: .4s;
  animation-delay: .4s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

@-webkit-keyframes fadeInDown03 {
  0% {
    opacity: 0;
  }
  100% {
    -webkit-transform: translate(0);
    transform: translate(0);
    opacity: 1;
  }
}

@keyframes fadeInDown03 {
  0% {
    opacity: 0;
  }
  100% {
    -webkit-transform: translate(0);
    transform: translate(0);
    opacity: 1;
  }
}

@-webkit-keyframes animate-banner {
  0% {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
  }
  100% {
    -webkit-transform: translateX(-150%);
    transform: translateX(-150%);
  }
}

@keyframes animate-banner {
  0% {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
  }
  100% {
    -webkit-transform: translateX(-150%);
    transform: translateX(-150%);
  }
}

/*--------------*/
/*---- base ----*/
/*--------------*/
.contents__title-area {
  -webkit-box-pack: initial;
  -ms-flex-pack: initial;
  justify-content: initial;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -ms-flex-align: center;
  -webkit-box-pack: initial;
  -ms-flex-pack: initial;
  justify-content: initial;
}

.contents__title-area .contents__title-number {
  font-size: 2.5rem;
  width: 60px;
  height: 60px;
  margin-right: 22px;
  letter-spacing: 0;
  color: #fff;
  background-color: #014bb4;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -ms-flex-align: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

@media screen and (max-width: 768px) {
  .contents__title-area .contents__title-number {
    font-size: 2.1rem;
    font-size: clamp(17px, 3.255vw, 25px);
    width: 50px;
    width: clamp(40px, 7.812vw, 60px);
    height: 50px;
    height: clamp(40px, 7.812vw, 60px);
  }
}

@media screen and (max-width: 400px) {
  .contents__title-area .contents__title-number {
    margin-right: 10px;
  }
}

.contents__title-area .section__title {
  font-size: 2.8rem;
  padding-top: 0;
  padding-bottom: 0;
  letter-spacing: .1263em;
  color: #212138;
  font-family: "Noto Sans JP", sans-serif;
}

@media screen and (max-width: 768px) {
  .contents__title-area .section__title {
    font-size: 2.3rem;
    font-size: clamp(18px, 3.645vw, 28px);
  }
}

@media screen and (max-width: 400px) {
  .contents__title-area .section__title {
    letter-spacing: .08em;
  }
}

.br-sp {
  display: none;
}

@media screen and (max-width: 400px) {
  .br-sp {
    display: block;
  }
}

/* -------------- */
/* --- header --- */
/* -------------- */
.header {
  position: fixed;
  z-index: 300;
  top: 0;
  right: 0;
  left: 0;
  width: 100vw;
  opacity: 1;
}

@media screen and (max-width: 960px) {
  .header {
    height: 120px;
  }
}

.header.fixed {
  background-color: #fff;
}

@media screen and (max-width: 960px) {
  .header.fixed {
    opacity: .9;
    background-color: initial;
  }
}

.header.fixed .header-nav__item--small {
  color: #000;
}

.header.fixed.active {
  opacity: 1;
}

.header.is_show {
  z-index: -10;
  opacity: 0;
}

.header__wrapper {
  padding-right: 3.6%;
}

.header__wrapper.is_active {
  background-color: #fff;
  -webkit-transition: .3s;
  transition: .3s;
}

.header .header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -ms-flex-align: center;
  -webkit-box-pack: unset;
  -ms-flex-pack: unset;
  justify-content: unset;
}

.header .header__inner .header-logo {
  background-color: #fff;
}

.header .header__inner .header-logo .header-logo__title {
  width: 165px;
  height: 165px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -ms-flex-align: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

@media screen and (max-width: 960px) {
  .header .header__inner .header-logo .header-logo__title {
    width: 120px;
    height: 120px;
  }
}

.header .header__inner .header-logo .header-logo__title .header-logo__img.img-pc {
  display: block;
  width: 99px;
  height: auto;
  margin: 0 auto;
}

@media screen and (max-width: 960px) {
  .header .header__inner .header-logo .header-logo__title .header-logo__img.img-pc {
    display: none;
  }
}

.header .header__inner .header-logo .header-logo__title .header-logo__img.img-sp {
  display: none;
}

@media screen and (max-width: 960px) {
  .header .header__inner .header-logo .header-logo__title .header-logo__img.img-sp {
    display: block;
    width: 62.47px;
  }
}

.header .header__inner .header-logo__title:hover {
  opacity: .5;
}

@media screen and (max-width: 960px) {
  #nav {
    opacity: 0;
    -webkit-transition: .3s;
    transition: .3s;
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }
  #nav.active {
    opacity: 1;
    -webkit-transition: .3s;
    transition: .3s;
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
  }
}

.header .header-nav {
  width: 100%;
  height: 164px;
  margin-left: 3.5%;
}

@media screen and (max-width: 960px) {
  .header .header-nav {
    position: fixed;
    z-index: 200;
    top: 0;
    right: 0;
    left: 0;
    overflow: auto;
    width: 100vw;
    height: 100%;
    margin-left: 0;
    background-color: rgba(63, 63, 63, 0.7);
  }
}

.header .header-nav__wrapper {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -ms-flex-align: center;
  -webkit-box-pack: space-between;
  -ms-flex-pack: space-between;
  justify-content: space-between;
}

@media screen and (max-width: 960px) {
  .header .header-nav__wrapper {
    display: block;
    height: auto;
  }
}

.header .header-nav__wrapper .header-nav__list {
  height: 100%;
  white-space: nowrap;
}

@media screen and (max-width: 960px) {
  .header .header-nav__wrapper .header-nav__list {
    width: 45%;
    margin-left: auto;
    background-color: #fff;
  }
}

@media screen and (max-width: 768px) {
  .header .header-nav__wrapper .header-nav__list {
    width: 90%;
  }
}

.header .header-nav__item {
  display: inline-block;
  width: 76px;
  height: 100%;
  text-align: center;
}

@media screen and (max-width: 960px) {
  .header .header-nav__item {
    display: block;
    width: 100%;
    height: auto;
    border-bottom: 1px solid #898989;
  }
}

@media screen and (max-width: 960px) {
  .header .header-nav__item:first-child > .header-nav__item--small {
    margin-top: 90px;
  }
}

.header .header-nav__item.priceWidth {
  width: 68px;
}

.header .header-nav__item.newsWidth {
  width: 66px;
}

.header .header-nav__item.infoWidth {
  width: 105px;
}

.header .header-nav__item.ctaWidth {
  width: 93px;
}

@media screen and (max-width: 960px) {
  .header .header-nav__item.priceWidth, .header .header-nav__item.newsWidth, .header .header-nav__item.infoWidth, .header .header-nav__item.ctaWidth {
    width: 100%;
  }
}

.header .header-nav__item--small {
  font-size: 1.4rem;
  position: relative;
  display: inline-block;
  width: 100%;
  height: 50%;
  margin-top: 76px;
  color: #fff;
}

@media screen and (max-width: 960px) {
  .header .header-nav__item--small {
    line-height: 4.9;
    margin-top: 0;
    padding-left: 40px;
    text-align: left;
    color: #393939;
  }
}

@media screen and (max-width: 960px) {
  .header .header-nav__item--small::after {
    width: 20px;
    height: 20px;
    content: "";
    border: 2px solid #014bb4;
    border-radius: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    position: absolute;
    top: 45%;
    right: 11.5%;
  }
}

.header .header-nav__item--small.is_active {
  color: #014bb4;
}

.header .header-nav__item--small::before {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 0;
  height: 10px;
  content: "";
  background-color: #014bb4;
  -webkit-transition: .3s;
  transition: .3s;
}

@media screen and (max-width: 960px) {
  .header .header-nav__item--small::before {
    width: 7px;
    height: 7px;
    border-top: 2px solid #014bb4;
    border-right: 2px solid #014bb4;
    background-color: initial;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    position: absolute;
    top: 40%;
    right: 13.2%;
  }
}

@media screen and (max-width: 768px) {
  .header .header-nav__item--small::before {
    right: 12.7%;
  }
}

@media screen and (max-width: 400px) {
  .header .header-nav__item--small::before {
    right: 13.6%;
  }
}

.header .header-nav__item--small:hover::before {
  right: auto;
  left: 0;
  width: 100%;
}

@media screen and (max-width: 960px) {
  .header .header-nav__item--small:hover::before {
    right: 13.2%;
    left: auto;
    width: 7px;
  }
}

@media screen and (max-width: 768px) {
  .header .header-nav__item--small:hover::before {
    right: 12.7%;
  }
}

@media screen and (max-width: 400px) {
  .header .header-nav__item--small:hover::before {
    right: 13.6%;
  }
}

@media screen and (max-width: 960px) {
  .header .header-nav__item--small.is_active:hover::before {
    top: 43%;
    right: 13.2%;
    -webkit-transition: .2s;
    transition: .2s;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
}

@media screen and (max-width: 768px) {
  .header .header-nav__item--small.is_active:hover::before {
    right: 12.5%;
  }
}

@media screen and (max-width: 400px) {
  .header .header-nav__item--small.is_active:hover::before {
    right: 13.6%;
  }
}

.header-nav__item-menu {
  visibility: hidden;
  width: 100%;
  height: 0;
  opacity: 0;
  -webkit-transition: all .3s;
  transition: all .3s;
  position: absolute;
  top: 164px;
  left: 0;
}

@media screen and (max-width: 960px) {
  .header-nav__item-menu {
    position: initial;
    display: block;
    visibility: visible;
  }
}

.header-nav__item-menu.is_active, .header-nav__item-menu:hover {
  visibility: visible;
  height: 130px;
  opacity: 1;
}

@media screen and (max-width: 960px) {
  .header-nav__item-menu.is_active, .header-nav__item-menu:hover {
    height: 219px;
    opacity: 1;
  }
}

.header-nav__item-menu__wrapper {
  height: 100%;
  background-color: #dce5f4;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -ms-flex-align: center;
  -webkit-box-pack: space-between;
  -ms-flex-pack: space-between;
  justify-content: space-between;
}

@media screen and (max-width: 960px) {
  .header-nav__item-menu__wrapper {
    display: block;
  }
}

.header .header-nav__item-menu__list.service-list {
  white-space: nowrap;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -ms-flex-align: center;
  -webkit-box-pack: space-between;
  -ms-flex-pack: space-between;
  justify-content: space-between;
}

@media screen and (max-width: 960px) {
  .header .header-nav__item-menu__list.service-list {
    display: block;
  }
}

.header .header-nav__item-menu__list {
  padding-left: 16.69%;
}

@media screen and (max-width: 960px) {
  .header .header-nav__item-menu__list {
    padding-left: 0;
  }
}

.header .header-nav__item-menu__list .header-nav__item-menu__item {
  position: relative;
}

@media screen and (max-width: 960px) {
  .header .header-nav__item-menu__list .header-nav__item-menu__item {
    padding-left: 40px;
    text-align: left;
    border-top: 1px solid #898989;
  }
}

.header .header-nav__item-menu__list .header-nav__item-menu__item .header-nav__item-menu__btn {
  font-family: "Noto Sans CJK JP", sans-serif;
  font-size: 2.4rem;
  font-weight: 500;
  margin-right: 90px;
  letter-spacing: .08em;
}

@media screen and (max-width: 960px) {
  .header .header-nav__item-menu__list .header-nav__item-menu__item .header-nav__item-menu__btn {
    font-size: 1.4rem;
    line-height: 72px;
  }
}

.header .header-nav__item-menu__list .header-nav__item-menu__item .header-nav__item-menu__btn::before {
  width: 8px;
  height: 8px;
  content: "";
  border-top: 2px solid #014bb4;
  border-right: 2px solid #014bb4;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  position: absolute;
  top: 37%;
  right: 66px;
}

@media screen and (max-width: 960px) {
  .header .header-nav__item-menu__list .header-nav__item-menu__item .header-nav__item-menu__btn::before {
    top: 41%;
    right: 13.7%;
    width: 7px;
    height: 7px;
  }
}

@media screen and (max-width: 768px) {
  .header .header-nav__item-menu__list .header-nav__item-menu__item .header-nav__item-menu__btn::before {
    right: 12.7%;
  }
}

@media screen and (max-width: 400px) {
  .header .header-nav__item-menu__list .header-nav__item-menu__item .header-nav__item-menu__btn::before {
    right: 13.6%;
  }
}

.header .header-nav__item-menu__list .header-nav__item-menu__item .header-nav__item-menu__btn::after {
  width: 27px;
  height: 27px;
  content: "";
  border: 2px solid #014bb4;
  border-radius: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  position: absolute;
  top: 50%;
  right: 55px;
}

@media screen and (max-width: 960px) {
  .header .header-nav__item-menu__list .header-nav__item-menu__item .header-nav__item-menu__btn::after {
    width: 20px;
    height: 20px;
    position: absolute;
    top: 47%;
    right: 11.5%;
  }
}

.header .header-nav__item-menu__info.info__head {
  white-space: nowrap;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -ms-flex-align: center;
  -webkit-box-pack: space-between;
  -ms-flex-pack: space-between;
  justify-content: space-between;
}

@media screen and (max-width: 960px) {
  .header .header-nav__item-menu__info.info__head {
    display: none;
  }
}

.header .header-nav__item-menu__info {
  padding-right: 3.66%;
}

.header .header-nav__item-menu__info .header-nav__item-menu__img {
  display: inline-block;
  width: 16px;
  height: 23.54px;
  margin-top: -10px;
  margin-right: 9px;
}

.header .header-nav__item-menu__info .header-nav__item-menu__tel {
  font-size: 3.4rem;
}

.header .header-nav__item-menu__info .header-nav__item-menu__time {
  font-size: 1.4rem;
  padding-right: 5px;
  text-align: end;
}

.header .cta {
  display: none;
}

@media screen and (max-width: 960px) {
  .header .cta {
    display: block;
    margin-top: 59px;
  }
}

@media screen and (max-width: 960px) {
  .header .cta .cta-title {
    margin-bottom: 10px;
  }
}

@media screen and (max-width: 960px) {
  .header .cta .cta__text {
    font-size: .9rem;
    margin-bottom: 24px;
  }
}

@media screen and (max-width: 960px) {
  .header .cta .btn.ctaBtn--warning {
    font-size: 1.5rem;
    line-height: 60px;
    width: 261px;
    margin-left: 18%;
    padding: 0;
  }
}

@media screen and (max-width: 768px) {
  .header .cta .btn.ctaBtn--warning {
    margin-right: auto;
    margin-left: auto;
  }
}

@media screen and (max-width: 400px) {
  .header .cta .btn.ctaBtn--warning {
    margin-left: 11.11111%;
  }
}

@media screen and (max-width: 960px) {
  .header .cta .cta__body {
    display: block;
  }
}

@media screen and (max-width: 960px) {
  .header-nav.active .btn.ctaBtn--warning::after {
    width: 40px;
  }
}

.header .btn--right {
  font-size: 1.4rem;
  line-height: 50px;
  width: 200px;
  text-align: center;
  letter-spacing: 0;
  color: #fff;
  background-color: #014bb4;
}

@media screen and (max-width: 960px) {
  .header .btn--right {
    display: none;
  }
}

.header .btn--right:hover {
  opacity: .5;
}

.header-btn {
  display: none;
  width: 70px;
  height: 70px;
  background-color: #014bb4;
}

@media screen and (max-width: 960px) {
  .header-btn {
    z-index: 300;
    display: block;
    position: absolute;
    top: 0;
    right: 0;
  }
}

.header-btn .burger-btn {
  display: block;
  width: 28px;
  height: 100%;
  margin: 0 auto;
}

.header-btn .burger-btn--top, .header-btn .burger-btn--bottom {
  display: block;
  width: 100%;
  height: 1px;
  background-color: #fff;
  -webkit-transition: .3s;
  transition: .3s;
}

.header-btn .burger-btn--top {
  margin-bottom: 5px;
}

.header-btn .burger-btn.active .burger-btn--top {
  -webkit-transition: .3s;
  transition: .3s;
  -webkit-transform: rotate(45deg) translate(3px, 4px);
  transform: rotate(45deg) translate(3px, 4px);
}

.header-btn .burger-btn.active .burger-btn--bottom {
  -webkit-transition: .3s;
  transition: .3s;
  -webkit-transform: rotate(-45deg) translate(0px, -1px);
  transform: rotate(-45deg) translate(0px, -1px);
}

.header-btn .burger-btn__text {
  font-size: 1.0rem;
  line-height: 1.2;
  color: #fff;
  -webkit-transition: .3s;
  transition: .3s;
}

.header-btn .burger-btn.active .burger-btn__text {
  display: none;
  -webkit-transition: .3s;
  transition: .3s;
}

/* -------------- */
/* ----- kv ----- */
/* -------------- */
main {
  background-color: #f3f2f2;
}

.kv .kv-actionImg,
.kv .kv-actionImg--sp {
  position: relative;
  width: 100%;
  height: 550px;
  background-repeat: no-repeat;
  background-size: cover;
}

.kv .kv-actionImg {
  display: block;
}

@media screen and (max-width: 768px) {
  .kv .kv-actionImg {
    display: none;
  }
}

.kv .kv-actionImg--sp {
  display: none;
}

@media screen and (max-width: 768px) {
  .kv .kv-actionImg--sp {
    display: block;
    height: 450px;
  }
}

@media screen and (max-width: 400px) {
  .kv .kv-actionImg--sp {
    height: 300px;
  }
}

.kv .kv__title {
  font-size: 8rem;
  line-height: 1;
  z-index: 200;
  text-align: center;
  white-space: nowrap;
  letter-spacing: .03em;
  color: #fff;
  -webkit-transform: translate(-50%, -32%);
  transform: translate(-50%, -32%);
  position: absolute;
  top: 32%;
  left: 50%;
}

@media screen and (max-width: 768px) {
  .kv .kv__title {
    font-size: 6rem;
    font-size: clamp(40px, 10.416vw, 80px);
    top: 27%;
  }
}

@media screen and (max-width: 400px) {
  .kv .kv__title {
    font-size: 3.5rem;
    font-size: clamp(30px, 10vw, 40px);
    line-height: 1.25;
    -webkit-transform: translate(-50%, -24%);
    transform: translate(-50%, -24%);
    position: absolute;
    top: 24%;
    left: 50%;
  }
}

.kv .kv__title-copy--top {
  display: block;
}

.kv .kv__title-copy--top span {
  opacity: .1;
}

.kv .kv-nav {
  font-size: 1.4rem;
  margin-bottom: 65px;
  padding-top: 40px;
  padding-left: 6.07613%;
}

@media screen and (max-width: 400px) {
  .kv .kv-nav {
    margin-bottom: 36px;
    padding-top: 22px;
    padding-left: 10%;
  }
}

.kv .kv-nav__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -ms-flex-align: center;
  -webkit-box-pack: normal;
  -ms-flex-pack: normal;
  justify-content: normal;
}

.kv .kv-nav__list .kv-nav__items {
  font-family: "Noto Sans CJK JP", sans-serif;
  font-size: 1.4rem;
  position: relative;
  margin-right: 25px;
}

.kv .kv-nav__list .kv-nav__items:last-child {
  font-family: "Affogato-Medium", sans-serif;
  font-size: 1.4rem;
  letter-spacing: 0;
}

.kv .kv-nav__list .kv-nav__items::after {
  content: ">";
  color: #acacac;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  position: absolute;
  top: 50%;
  right: -16px;
}

.kv .kv-nav__list .kv-nav__items:last-child::after {
  content: none;
}

.kv .kv-nav__list .kv-nav__items .kv-nav__item.is-active {
  color: #014bb4;
}

/* -------------- */
/* -- contents -- */
/* -------------- */
.contents {
  max-width: 1200px;
  margin-right: 6.076%;
  margin-left: 6.076%;
}

@media screen and (max-width: 400px) {
  .contents {
    margin-right: 10%;
    margin-left: 10%;
    padding-top: 0;
  }
}

.contents .contents__header {
  max-width: 1200px;
  margin: 0 auto;
  margin-bottom: 57px;
}

@media screen and (max-width: 400px) {
  .contents .contents__header {
    margin-bottom: 35px;
  }
}

.contents .contents__header .contents__header-list {
  padding-right: 5%;
  padding-left: 5%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -ms-flex-align: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.contents .contents__header .contents__header-list .contents__header-items {
  font-size: 2.8rem;
  font-size: clamp(16px, 2.916vw, 28px);
  position: relative;
  width: 310px;
  text-align: center;
  letter-spacing: .08em;
  color: #014bb4;
  font-family: "Noto Sans JP", sans-serif;
}

@media screen and (max-width: 400px) {
  .contents .contents__header .contents__header-list .contents__header-items {
    font-size: 1.6rem;
  }
}

.contents .contents__header .contents__header-list .contents__header-items::after, .contents .contents__header .contents__header-list .contents__header-items::before {
  height: 2px;
  content: "";
  background-color: #393939;
  -webkit-transform-origin: top left;
  transform-origin: top left;
  position: absolute;
  bottom: -23px;
  left: 50%;
}

.contents .contents__header .contents__header-list .contents__header-items::after {
  width: 15px;
  -webkit-transform: rotate(-130deg);
  transform: rotate(-130deg);
}

@media screen and (max-width: 400px) {
  .contents .contents__header .contents__header-list .contents__header-items::after {
    width: 8px;
  }
}

.contents .contents__header .contents__header-list .contents__header-items::before {
  width: 17px;
  -webkit-transform: rotate(-50deg);
  transform: rotate(-50deg);
}

@media screen and (max-width: 400px) {
  .contents .contents__header .contents__header-list .contents__header-items::before {
    width: 10px;
  }
}

.contents__wrapper {
  padding-top: 116px;
  padding-right: 12.04%;
  padding-bottom: 77px;
  padding-left: 12.08333%;
  border-top: 1px solid #484848;
  background-color: #fff;
}

@media screen and (max-width: 400px) {
  .contents__wrapper {
    padding-top: 40px;
    padding-right: 5%;
    padding-bottom: 48px;
    padding-left: 5%;
  }
}

.contents__wrapper .faq__accordion {
  margin-top: 40px;
  margin-bottom: 63px;
}

@media screen and (max-width: 400px) {
  .contents__wrapper .faq__accordion {
    margin-top: 21px;
    margin-bottom: 61px;
  }
}

.contents__wrapper .faq__accordion.margin-bt {
  margin-bottom: 0;
}

.contents__wrapper .faq__accordion .faq__list {
  margin-bottom: 39px;
}

@media screen and (max-width: 400px) {
  .contents__wrapper .faq__accordion .faq__list {
    margin-bottom: 22px;
  }
}

.contents__wrapper .faq__accordion .faq__list:first-child {
  margin-bottom: 30px;
}

@media screen and (max-width: 400px) {
  .contents__wrapper .faq__accordion .faq__list:first-child {
    margin-bottom: 21px;
  }
}

.contents__wrapper .faq__accordion .faq__list:last-child {
  margin-bottom: 0;
}

.contents__wrapper .faq__accordion .faq__list .faq__list-area__title {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -ms-flex-align: center;
  -webkit-box-pack: unset;
  -ms-flex-pack: unset;
  justify-content: unset;
}

.contents__wrapper .faq__accordion .faq__list .faq__list-area__title::before {
  width: 34px;
  height: 1px;
  content: "";
  background-color: #014bb4;
  position: absolute;
  top: 55%;
  right: 0;
}

@media screen and (max-width: 768px) {
  .contents__wrapper .faq__accordion .faq__list .faq__list-area__title::before {
    top: 46%;
    width: 25px;
  }
}

@media screen and (max-width: 400px) {
  .contents__wrapper .faq__accordion .faq__list .faq__list-area__title::before {
    top: 41%;
  }
}

.contents__wrapper .faq__accordion .faq__list .faq__list-area__title::after {
  width: 1px;
  height: 34px;
  content: "";
  background-color: #014bb4;
  -webkit-transition: .3s;
  transition: .3s;
  position: absolute;
  top: 13%;
  right: 16px;
}

@media screen and (max-width: 768px) {
  .contents__wrapper .faq__accordion .faq__list .faq__list-area__title::after {
    right: 12px;
    height: 25px;
  }
}

@media screen and (max-width: 400px) {
  .contents__wrapper .faq__accordion .faq__list .faq__list-area__title::after {
    top: -1%;
    right: 4.4%;
  }
}

.contents__wrapper .faq__accordion .faq__list .faq__list-area__title.open::after {
  -webkit-transition: .3s;
  transition: .3s;
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}

.contents__wrapper .faq__accordion .faq__list .faq__list-area__title .faq__icon {
  font-size: 3.5rem;
  margin-right: 8px;
  color: #014bb4;
}

@media screen and (max-width: 768px) {
  .contents__wrapper .faq__accordion .faq__list .faq__list-area__title .faq__icon {
    font-size: 3rem;
  }
}

@media screen and (max-width: 400px) {
  .contents__wrapper .faq__accordion .faq__list .faq__list-area__title .faq__icon {
    font-size: 2.5rem;
  }
}

.contents__wrapper .faq__accordion .faq__list .faq__list-area__title .faq__question {
  font-size: 1.6rem;
  padding-top: 5px;
}

@media screen and (max-width: 768px) {
  .contents__wrapper .faq__accordion .faq__list .faq__list-area__title .faq__question {
    font-size: 1.4rem;
  }
}

.contents__wrapper .faq__accordion .faq__list .faq__list-area__text {
  margin-top: 23px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: initial;
  align-items: initial;
  -ms-flex-align: initial;
  -webkit-box-pack: space-between;
  -ms-flex-pack: space-between;
  justify-content: space-between;
}

@media screen and (max-width: 400px) {
  .contents__wrapper .faq__accordion .faq__list .faq__list-area__text {
    margin-top: 20px;
  }
}

.contents__wrapper .faq__accordion .faq__list .faq__list-area__text .faq__icon {
  font-size: 3.5rem;
  margin-right: 8px;
  color: #014bb4;
}

@media screen and (max-width: 768px) {
  .contents__wrapper .faq__accordion .faq__list .faq__list-area__text .faq__icon {
    font-size: 3rem;
  }
}

@media screen and (max-width: 400px) {
  .contents__wrapper .faq__accordion .faq__list .faq__list-area__text .faq__icon {
    font-size: 2.5rem;
  }
}

.contents__wrapper .faq__accordion .faq__list .faq__list-area__text .faq__question {
  line-height: 2.1875;
  width: 95.6%;
  padding-top: 5px;
}

@media screen and (max-width: 768px) {
  .contents__wrapper .faq__accordion .faq__list .faq__list-area__text .faq__question {
    font-size: 1.4rem;
    line-height: 1.86;
    padding-top: 0;
    padding-right: 10.2%;
  }
}

.contents__wrapper .faq__accordion .faq__list .underLine {
  display: block;
  width: 100%;
  height: 1px;
  margin-top: 26px;
  background-color: #d5d5d5;
}

@media screen and (max-width: 768px) {
  .contents__wrapper .faq__accordion .faq__list .underLine {
    margin-top: 14px;
  }
}

/* --------------- */
/* ----- cta ----- */
/* --------------- */
.cta {
  margin-top: 194px;
}

@media screen and (max-width: 768px) {
  .cta {
    margin-top: 150px;
  }
}

@media screen and (max-width: 400px) {
  .cta {
    margin-top: 100px;
  }
}

.cta__wrapper {
  padding-bottom: 134px;
  text-align: center;
  color: #fff;
  border: 1px solid #707070;
  background-color: #014bb4;
}

@media screen and (max-width: 768px) {
  .cta__wrapper {
    padding-bottom: 63px;
  }
}

.cta__wrapper .cta-title {
  margin-bottom: 15px;
  padding-top: 100px;
  padding-bottom: 0;
}

@media screen and (max-width: 768px) {
  .cta__wrapper .cta-title {
    margin-bottom: 24px;
    padding-top: 60px;
  }
}

.cta__wrapper .cta-title--top {
  font-size: 1.1rem;
  display: block;
  margin-bottom: 10px;
  color: #fff;
}

.cta .cta__text {
  font-size: 1.4rem;
  margin-bottom: 51px;
}

@media screen and (max-width: 768px) {
  .cta .cta__text {
    font-size: 1.1rem;
    margin-bottom: 30px;
  }
}

.cta .ctaBtn--warning {
  font-size: 2.2rem;
  line-height: 45px;
  position: relative;
  width: 500px;
  margin: 0 auto 32px;
  letter-spacing: 0;
  color: #fff;
}

@media screen and (max-width: 768px) {
  .cta .ctaBtn--warning {
    font-size: 1.6rem;
    width: 280px;
    margin-bottom: 48px;
  }
}

.cta .ctaBtn--warning::after {
  display: block;
  width: 79px;
  height: 1px;
  content: "";
  background-color: #fff;
  position: absolute;
  top: 50%;
  right: -8%;
}

@media screen and (max-width: 768px) {
  .cta .ctaBtn--warning::after {
    width: 40px;
  }
}

.cta .ctaBtn--warning.is_active::after {
  position: absolute;
  top: 50%;
  right: 0;
}

.cta .cta__body {
  max-width: 500px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -ms-flex-align: center;
  -webkit-box-pack: space-between;
  -ms-flex-pack: space-between;
  justify-content: space-between;
}

@media screen and (max-width: 768px) {
  .cta .cta__body {
    display: block;
  }
}

.cta .cta__body .cta__lead {
  margin-top: -13px;
}

.cta .cta__body__info {
  padding-right: 4px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
  align-items: baseline;
  -ms-flex-align: baseline;
  -webkit-box-pack: space-between;
  -ms-flex-pack: space-between;
  justify-content: space-between;
}

@media screen and (max-width: 960px) {
  .cta .cta__body__info {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

@media screen and (max-width: 768px) {
  .cta .cta__body__info {
    height: 67px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -ms-flex-align: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

.cta .cta__body__info .cta__body__img {
  display: inline-block;
  width: 16px;
  height: 23.54px;
}

.cta .cta__body__info .cta__body--right {
  text-align: end;
}

.cta .cta__body__info .cta__body--right .cta__body-tel {
  font-size: 3.4rem;
  margin-left: 9px;
  letter-spacing: 0;
}

@media screen and (max-width: 768px) {
  .cta .cta__body__info .cta__body--right .cta__body-tel {
    margin-top: 16px;
  }
}

.cta .cta__body__info .cta__body--right .cta__body-time {
  font-size: 1.4rem;
  margin-top: 5px;
  margin-right: 3px;
  letter-spacing: 0;
}

/* -------------- */
/* --- footer --- */
/* -------------- */
.footer {
  margin-top: 126px;
  padding: 0 79px 125px 83px;
}

@media screen and (max-width: 768px) {
  .footer {
    margin-top: 40px;
    padding: 40px 10%;
  }
}

@media screen and (max-width: 400px) {
  .footer {
    margin: 0;
    padding: 0;
  }
}

.footer__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -ms-flex-align: center;
  -webkit-box-pack: space-between;
  -ms-flex-pack: space-between;
  justify-content: space-between;
}

@media screen and (max-width: 768px) {
  .footer__wrapper {
    display: block;
  }
}

@media screen and (max-width: 400px) {
  .footer .footer__logoArea {
    display: none;
  }
}

.footer .footer__logoArea .footer-logo {
  margin-bottom: 19px;
}

.footer .footer__logoArea .footer-logo .header-logo__title {
  width: 165px;
  height: 165px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -ms-flex-align: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

@media screen and (max-width: 960px) {
  .footer .footer__logoArea .footer-logo .header-logo__title {
    width: 120px;
    height: 120px;
  }
}

.footer .footer__logoArea .footer-logo .header-logo__title .header-logo__img.img-pc {
  display: block;
  width: 99px;
  height: auto;
  margin: 0 auto;
}

@media screen and (max-width: 960px) {
  .footer .footer__logoArea .footer-logo .header-logo__title .header-logo__img.img-pc {
    display: none;
  }
}

.footer .footer__logoArea .footer-logo .header-logo__title .header-logo__img.img-sp {
  display: none;
}

@media screen and (max-width: 960px) {
  .footer .footer__logoArea .footer-logo .header-logo__title .header-logo__img.img-sp {
    display: block;
    width: 62.47px;
  }
}

.footer .footer__logoArea .footer-logo .header-logo__title {
  height: 82px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: unset;
  align-items: unset;
  -ms-flex-align: unset;
  -webkit-box-pack: left;
  -ms-flex-pack: left;
  justify-content: left;
}

.footer .footer__logoArea .footer__address {
  font-family: "Noto Sans CJK JP", sans-serif;
  font-size: 1.4rem;
  line-height: 1.78571;
  white-space: nowrap;
  letter-spacing: .05em;
}

.footer .footer__logoArea .footer__address--bottom {
  display: block;
}

.footer .footer-navArea {
  max-width: 640px;
  padding-top: 68px;
  padding-right: 2px;
}

@media screen and (max-width: 768px) {
  .footer .footer-navArea {
    padding-top: 30px;
  }
}

@media screen and (max-width: 400px) {
  .footer .footer-navArea {
    padding: 0;
  }
}

.footer .footer-navArea .footer-nav__list {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -ms-flex-align: center;
  -webkit-box-pack: flex-end;
  -ms-flex-pack: flex-end;
  justify-content: flex-end;
}

@media screen and (max-width: 768px) {
  .footer .footer-navArea .footer-nav__list {
    -webkit-box-pack: initial;
        -ms-flex-pack: initial;
            justify-content: initial;
  }
}

@media screen and (max-width: 400px) {
  .footer .footer-navArea .footer-nav__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.footer .footer-navArea .footer-nav__list .footer-nav__item {
  line-height: 2.1875;
  position: relative;
  padding-right: 20px;
  padding-left: 21px;
}

@media screen and (max-width: 400px) {
  .footer .footer-navArea .footer-nav__list .footer-nav__item {
    font-size: 1.4rem;
    line-height: 69px;
    width: 100%;
    height: 69px;
    padding-left: 40px;
    border-bottom: 1px solid #898989;
  }
}

@media screen and (max-width: 400px) {
  .footer .footer-navArea .footer-nav__list .footer-nav__item-btn::after {
    width: 6px;
    height: 6px;
    content: "";
    border-top: 1px solid #014bb4;
    border-right: 1px solid #014bb4;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    position: absolute;
    top: 46%;
    right: 48px;
  }
}

@media screen and (max-width: 400px) {
  .footer .footer-navArea .footer-nav__list .footer-nav__item-btn::before {
    width: 20px;
    height: 20px;
    content: "";
    border: 1px solid #014bb4;
    border-radius: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    position: absolute;
    top: 50%;
    right: 40px;
  }
}

.footer .footer-navArea .footer-nav__list .footer-nav__item:nth-child(1) {
  padding-left: 0;
}

@media screen and (max-width: 400px) {
  .footer .footer-navArea .footer-nav__list .footer-nav__item:nth-child(1) {
    padding-left: 40px;
  }
}

.footer .footer-navArea .footer-nav__list .footer-nav__item:nth-child(2n+6) {
  padding-right: 0;
}

@media screen and (max-width: 400px) {
  .footer .footer-navArea .footer-nav__list .footer-nav__item:nth-child(2n+6) {
    padding-left: 40px;
  }
}

.footer .footer-navArea .footer-nav__list .footer-nav__item:nth-child(3) {
  padding-left: 19px;
}

@media screen and (max-width: 400px) {
  .footer .footer-navArea .footer-nav__list .footer-nav__item:nth-child(3) {
    padding-left: 40px;
  }
}

.footer .footer-navArea .footer-nav__list .footer-nav__item::after {
  width: 1px;
  height: 17px;
  content: "";
  background-color: #393939;
  -webkit-transform: rotate(15deg) translate(-3%, -50%);
  transform: rotate(15deg) translate(-3%, -50%);
  position: absolute;
  top: 50%;
  right: 3%;
}

@media screen and (max-width: 400px) {
  .footer .footer-navArea .footer-nav__list .footer-nav__item::after {
    content: none;
  }
}

.footer .footer-navArea .footer-nav__list .footer-nav__item:nth-child(2n+6)::after {
  content: none;
}

.footer .footer-navArea .footer-nav__list .footer-nav__item.nav-fontSmall {
  font-size: 1.4rem;
  margin-top: 8px;
  padding-left: 17px;
}

@media screen and (max-width: 400px) {
  .footer .footer-navArea .footer-nav__list .footer-nav__item.nav-fontSmall {
    margin-top: 0;
    padding-left: 40px;
    border-bottom: 1px solid #898989;
  }
}

.footer .footer--bottom {
  font-family: "Noto Sans CJK JP", sans-serif;
  font-size: 1.4rem;
  display: block;
  margin-top: 34px;
  text-align: right;
  color: #014bb4;
}

@media screen and (max-width: 400px) {
  .footer .footer--bottom {
    font-size: 1.1rem;
    margin-top: 44px;
    padding-bottom: 50px;
    text-align: center;
  }
}
/*# sourceMappingURL=faq.css.map */