@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%);
  }
}

/* -------------- */
/* --- 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 {
  position: relative;
  z-index: 10;
}

.kv .kv-wrapper__mask.is_active {
  z-index: 20;
  background-color: rgba(0, 0, 0, 0.5);
  -webkit-transition: .3s;
  transition: .3s;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.kv .kv-action {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100vh;
}

.kv .kv-action .kv-video {
  position: relative;
  /*縦横幅指定*/
  width: 177.77777778vh;
  min-width: 100%;
  /* 16:9 の幅→16 ÷ 9＝ 177.77% */
  height: 56.25vw;
  /* 16:9の幅 → 9 ÷ 16 = 56.25% */
  min-height: 100%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  position: absolute;
  top: 50%;
  left: 50%;
}

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

@media screen and (max-width: 400px) {
  .kv .kv__title {
    font-size: clamp(30px, 10vw, 40px);
    line-height: 1.25;
    position: absolute;
    top: 50.5%;
    left: 52.5%;
  }
}

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

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

.kv .kv__title-copy--bottom {
  font-size: 2.4rem;
  font-size: clamp(1.8rem, 1.75vw, 2.4rem);
  line-height: 1.458;
  display: block;
  margin-top: 18px;
  letter-spacing: .2em;
}

.kv-news {
  z-index: 200;
  width: 683px;
  height: 100px;
  position: absolute;
  right: 0;
  bottom: 0;
}

@media screen and (max-width: 768px) {
  .kv-news {
    width: 320px;
    height: 75px;
  }
}

.kv-news__inner {
  background-color: #fff;
  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;
}

.kv-news__inner .kv-news__list {
  position: relative;
  padding: 17px 4.392% 13px;
  white-space: nowrap;
  letter-spacing: 0;
  color: #014bb4;
}

@media screen and (max-width: 768px) {
  .kv-news__inner .kv-news__list {
    font-size: 1.2rem;
    padding: 0 8px 0 15px;
  }
}

.kv-news__inner .kv-news__list-line {
  display: inline-block;
  width: 1px;
  height: 50px;
  margin-left: 53.47%;
  vertical-align: middle;
  background-color: #898989;
}

@media screen and (max-width: 768px) {
  .kv-news__inner .kv-news__list-line {
    margin-left: 34%;
  }
}

.kv-news__inner .kv-news__item {
  margin-left: 10px;
  padding-bottom: 4px;
}

@media screen and (max-width: 768px) {
  .kv-news__inner .kv-news__item {
    margin-left: 3px;
    padding: 0;
  }
}

.kv-news .ticker {
  max-width: 440px;
}

@media screen and (max-width: 768px) {
  .kv-news .ticker {
    width: 200px;
  }
}

.kv-news__date {
  font-size: 1.4rem;
  letter-spacing: 0;
  color: #696969;
}

@media screen and (max-width: 768px) {
  .kv-news__date {
    font-size: 1.2rem;
  }
}

.kv-news__text {
  font-size: 1.3rem;
  margin-top: 7px;
  letter-spacing: 0;
}

@media screen and (max-width: 768px) {
  .kv-news__text {
    font-size: 1.1rem;
    letter-spacing: .05em;
  }
}

.kv-news__btn--arrow {
  position: relative;
  width: 100px;
  height: 100px;
  background-color: #014bb4;
}

@media screen and (max-width: 768px) {
  .kv-news__btn--arrow {
    width: 40px;
    height: 75px;
  }
}

.kv-news__btn--arrow::before {
  display: block;
  width: 8px;
  height: 8px;
  content: "";
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  position: absolute;
  top: 46%;
  left: 44%;
}

@media screen and (max-width: 768px) {
  .kv-news__btn--arrow::before {
    width: 6px;
    height: 6px;
    position: absolute;
    top: 46%;
    left: 41%;
  }
}

.kv-news__btn--arrow:hover::before {
  position: absolute;
  top: 46%;
  left: 49%;
}

.kv-news__btn--arrow::after {
  display: block;
  width: 27px;
  height: 27px;
  content: "";
  border: 2px solid #fff;
  border-radius: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  position: absolute;
  top: 50%;
  left: 50%;
}

@media screen and (max-width: 768px) {
  .kv-news__btn--arrow::after {
    width: 20px;
    height: 20px;
  }
}

.kv-news__btn--arrow:hover::after {
  -webkit-transform: translate(-55%, -50%);
  transform: translate(-55%, -50%);
  position: absolute;
  top: 50%;
  left: 55%;
}

.kv .kv__sub-num {
  width: 1px;
  height: 100px;
  margin: 0 auto;
  background-color: #fff;
  position: absolute;
  bottom: 40px;
  left: 46px;
}

@media screen and (max-width: 400px) {
  .kv .kv__sub-num {
    position: absolute;
    bottom: 0;
    left: 20px;
  }
}

.kv .kv__sub-num::before {
  width: 12px;
  height: 12px;
  content: "";
  border-radius: 50%;
  background-color: #014bb4;
  -webkit-animation: progressBar 11.63s linear .6s infinite;
  animation: progressBar 11.63s linear .6s infinite;
  position: absolute;
  top: 0;
  left: -6px;
}

@-webkit-keyframes progressBar {
  0% {
    top: 0;
  }
  100% {
    top: 88px;
  }
}

@keyframes progressBar {
  0% {
    top: 0;
  }
  100% {
    top: 88px;
  }
}

/* -------------- */
/* -- contents -- */
/* -------------- */
.contents {
  width: 100%;
  margin-top: 87px;
  margin-bottom: 90px;
}

@media screen and (max-width: 400px) {
  .contents {
    margin-top: 29px;
    margin-bottom: 84px;
  }
}

.contents__wrapper {
  position: relative;
  text-align: center;
}

.contents__wrapper .contents__title {
  font-size: 18rem;
  font-size: clamp(55px, 14vw, 180px);
  white-space: nowrap;
  letter-spacing: .04em;
  color: #fff;
}

@media screen and (max-width: 400px) {
  .contents__wrapper .contents__title {
    font-size: 7rem;
    line-height: .78571;
    white-space: initial;
    letter-spacing: .03em;
  }
}

.contents__wrapper .section__title--top.active span {
  opacity: .2;
}

.contents__wrapper .contents__text {
  font-family: "Noto Sans CJK JP", sans-serif;
  font-size: 2.8rem;
  font-size: clamp(16px, 2.2vw, 28px);
  line-height: 1.58;
  letter-spacing: .05em;
  color: #014bb4;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  position: absolute;
  top: 50%;
  left: 50%;
}

@media screen and (max-width: 400px) {
  .contents__wrapper .contents__text {
    font-size: 2.1rem;
    line-height: 1.7;
    width: 290px;
  }
}

/* --------------- */
/* --- message --- */
/* --------------- */
.message {
  padding-bottom: 120px;
}

@media screen and (max-width: 768px) {
  .message {
    margin-top: 30px;
    padding-bottom: 450px;
  }
}

.message__wrapper {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: normal;
  align-items: normal;
  -ms-flex-align: normal;
  -webkit-box-pack: space-between;
  -ms-flex-pack: space-between;
  justify-content: space-between;
}

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

.message__wrapper .message__imgArea {
  width: 50%;
  margin-top: -39px;
}

@media screen and (max-width: 768px) {
  .message__wrapper .message__imgArea {
    width: 80%;
  }
}

.message__wrapper .message__imgArea .message__img {
  min-height: 550px;
  max-height: 600px;
  -o-object-fit: cover;
  object-fit: cover;
}

@media screen and (max-width: 400px) {
  .message__wrapper .message__imgArea .message__img {
    min-height: 0;
    max-height: 200px;
  }
}

.message__wrapper .message__body {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 50%;
  height: 677px;
  margin-top: 8px;
  padding-right: 8.78477%;
  padding-left: 8.78477%;
  background-color: #fff;
  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) {
  .message__wrapper .message__body {
    width: 90%;
    height: 500px;
    margin-top: 0;
    padding-left: 10%;
    position: absolute;
    top: 330px;
    right: 0;
  }
}

@media screen and (max-width: 400px) {
  .message__wrapper .message__body {
    width: 90%;
    height: 470px;
    margin-top: 0;
    padding-left: 10%;
    top: 120px;
    right: 0;
  }
}

@media screen and (max-width: 400px) {
  .message__wrapper .message__body .section__title {
    padding-bottom: 24px;
  }
}

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

@media screen and (max-width: 400px) and (max-width: 400px) {
  .message__wrapper .message__body .section__title .section__title--bottom {
    font-size: 1.8rem;
    line-height: 1.27777;
  }
}

.message__wrapper .message__body .sectionTitle--right {
  padding-top: 0;
}

.message__wrapper .message__body .message__body-text {
  font-size: clamp(14px, 2.083vw, 16px);
  line-height: 2.1875;
  color: #696969;
}

@media screen and (max-width: 400px) {
  .message__wrapper .message__body .message__body-text {
    font-size: 1.4rem;
    line-height: 1.85714;
  }
}

.message__wrapper .message__body .btn--warning {
  margin-top: 30px;
  margin-right: 5.643%;
  margin-left: auto;
}

@media screen and (max-width: 400px) {
  .message__wrapper .message__body .btn--warning {
    margin-top: 40px;
    margin-right: 15.6%;
  }
}

/* --------------- */
/* --- service --- */
/* --------------- */
.service__wrapper {
  margin-right: 6.07613%;
  padding-right: 6.077%;
  padding-bottom: 118px;
  padding-left: 6.077%;
  background-color: #fff;
}

@media screen and (max-width: 768px) {
  .service__wrapper {
    padding-right: 8%;
    padding-bottom: 65px;
    padding-left: 8%;
  }
}

@media screen and (max-width: 400px) {
  .service__wrapper {
    margin-right: 0;
    padding-bottom: 56px;
  }
}

@media screen and (max-width: 400px) {
  .service__wrapper .section__title {
    padding-top: 52px;
    padding-bottom: 41px;
    padding-left: 7px;
  }
}

.service__wrapper .section__title .section__title--top {
  padding-left: 4px;
}

.service__wrapper .service-card {
  padding-right: 1.44%;
  padding-left: 1.44%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: normal;
  align-items: normal;
  -ms-flex-align: normal;
  -webkit-box-pack: space-between;
  -ms-flex-pack: space-between;
  justify-content: space-between;
}

@media screen and (max-width: 768px) {
  .service__wrapper .service-card {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding-right: 0;
    padding-left: 0;
  }
}

.service__wrapper .service-card *:last-child {
  margin-right: 0;
}

.service__wrapper .service-card__list {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  margin-right: 1.4%;
}

@media screen and (max-width: 768px) {
  .service__wrapper .service-card__list {
    margin-right: 0;
    margin-bottom: 48px;
  }
  .service__wrapper .service-card__list:last-child {
    margin-bottom: 0;
  }
}

@media screen and (max-width: 400px) {
  .service__wrapper .service-card__list {
    margin-bottom: 38px;
  }
}

@media screen and (max-width: 400px) {
  .service__wrapper .service-card__list .service-card__imgArea {
    max-width: 320px;
    margin: 0 auto;
  }
}

@media screen and (max-width: 400px) {
  .service__wrapper .service-card__list .service-card__imgArea .service-card__img {
    max-height: 200px;
  }
}

.service__wrapper .service-card__list .service-card__title {
  font-family: "Noto Sans CJK JP", sans-serif;
  font-size: 2.4rem;
  padding-top: 20px;
  padding-right: 26px;
  padding-bottom: 16px;
  text-align: center;
  letter-spacing: .08em;
}

@media screen and (max-width: 400px) {
  .service__wrapper .service-card__list .service-card__title {
    font-size: 2.1rem;
    padding-top: 23px;
    padding-right: 0;
    padding-bottom: 13px;
  }
}

.service__wrapper .service-card__list .service-card__text {
  font-size: 1.4rem;
  line-height: 1.8;
  color: #696969;
}

@media screen and (max-width: 400px) {
  .service__wrapper .service-card__list .service-card__text {
    font-size: 1.3rem;
    line-height: 1.65;
    padding-right: 2%;
    padding-left: 2%;
  }
}

.service .btn--warning {
  margin-top: 56px;
  margin-bottom: 0;
  margin-left: 44.8%;
}

@media screen and (max-width: 400px) {
  .service .btn--warning {
    margin-top: 40px;
    margin-left: 17%;
  }
}

/* --------------- */
/* --- feature --- */
/* --------------- */
.feature {
  padding-top: 2px;
}

.feature__wrapper {
  padding-right: 6.07613%;
  padding-left: 6.07613%;
}

@media screen and (max-width: 400px) {
  .feature__wrapper {
    padding-right: 8%;
    padding-left: 8%;
  }
}

@media screen and (max-width: 400px) {
  .feature__wrapper .section__title {
    padding-top: 58px;
    padding-bottom: 31px;
    padding-left: 7px;
  }
}

.feature__wrapper .section__title .section__title--top {
  padding-left: 4px;
}

.feature .feature-media {
  margin-bottom: 140px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: normal;
  align-items: normal;
  -ms-flex-align: normal;
  -webkit-box-pack: space-between;
  -ms-flex-pack: space-between;
  justify-content: space-between;
}

@media screen and (max-width: 768px) {
  .feature .feature-media {
    display: block;
    margin-bottom: 320px;
  }
}

@media screen and (max-width: 400px) {
  .feature .feature-media {
    margin-bottom: 310px;
  }
}

.feature .feature-media.marginBottom {
  margin-bottom: 60px;
}

@media screen and (max-width: 768px) {
  .feature .feature-media.marginBottom {
    margin-bottom: 400px;
  }
}

.feature .feature-media:nth-child(3) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

.feature .feature-media:last-of-type {
  margin-bottom: 0;
}

@media screen and (max-width: 400px) {
  .feature .feature-media:last-of-type {
    margin-bottom: 320px;
  }
}

.feature .feature-media__imgArea {
  width: 69%;
}

@media screen and (max-width: 768px) {
  .feature .feature-media__imgArea {
    width: 100%;
    margin: 0 auto;
  }
}

@media screen and (max-width: 400px) {
  .feature .feature-media__imgArea {
    max-width: 320px;
  }
}

.feature .feature-media__imgArea .feature-media__img {
  height: 501px;
  -o-object-fit: cover;
  object-fit: cover;
}

@media screen and (max-width: 768px) {
  .feature .feature-media__imgArea .feature-media__img {
    height: auto;
  }
}

@media screen and (max-width: 400px) {
  .feature .feature-media__imgArea .feature-media__img {
    max-height: 200px;
  }
}

.feature .feature-media__body {
  position: relative;
  z-index: 1;
  width: 31%;
}

@media screen and (max-width: 768px) {
  .feature .feature-media__body {
    width: 100%;
    margin-left: auto;
  }
}

@media screen and (max-width: 400px) {
  .feature .feature-media__body {
    width: 95.23809%;
    margin-left: auto;
  }
}

.feature .feature-media__body__inner {
  width: calc(100% + 118px);
  height: 493px;
  padding: 100px 50px 135px 49px;
  background-color: #fff;
  position: absolute;
  top: 50px;
  right: 0;
}

@media screen and (max-width: 960px) {
  .feature .feature-media__body__inner {
    padding: 56px 20px 56px 30px;
  }
}

@media screen and (max-width: 768px) {
  .feature .feature-media__body__inner {
    top: -70px;
    right: -7%;
    width: 100%;
    height: auto;
    padding: 50px 39px 60px;
  }
}

@media screen and (max-width: 400px) {
  .feature .feature-media__body__inner {
    top: -40px;
    right: -9.85%;
    width: 100%;
    height: auto;
    padding: 50px 39px 60px;
  }
}

@media screen and (max-width: 400px) {
  .feature .feature-media__body__inner.feature-media--bottom {
    padding-bottom: 46px;
  }
}

.feature .feature-media__body__inner .feature-title {
  margin-bottom: 17px;
  padding-top: 0;
  padding-bottom: 0;
}

@media screen and (max-width: 400px) {
  .feature .feature-media__body__inner .feature-title {
    margin-bottom: 10px;
    padding-left: 0;
  }
}

.feature .feature-media__body__inner .feature-title--top {
  margin-bottom: 10px;
  padding-left: 0;
}

.feature .feature-media__body__inner .feature-title--left {
  margin-bottom: 19px;
  padding-top: 0;
  padding-bottom: 0;
}

@media screen and (max-width: 400px) {
  .feature .feature-media__body__inner .feature-title--left {
    margin-bottom: 10px;
    padding-left: 0;
  }
}

.feature .feature-media__body__inner .feature-title--left .section__title--top {
  margin-bottom: 10px;
  padding-left: 0;
}

@media screen and (max-width: 400px) {
  .feature .feature-media__body__inner .feature-title .section__title--bottom,
  .feature .feature-media__body__inner .feature-title--left .section__title--bottom {
    font-size: 1.8rem;
    line-height: 1.27777;
  }
}

.feature .feature-media__body__inner .section-media__text {
  line-height: 2.2;
  color: #696969;
}

@media screen and (max-width: 768px) {
  .feature .feature-media__body__inner .section-media__text {
    line-height: 2;
  }
}

@media screen and (max-width: 400px) {
  .feature .feature-media__body__inner .section-media__text {
    font-size: 1.4rem;
    line-height: 1.86;
  }
}

.feature .feature-media__body__inner .text-left {
  font-family: "Noto Sans JP", sans-serif;
}

@media screen and (max-width: 400px) {
  .feature .feature-media__body.bodyLeft {
    margin: 0;
  }
}

.feature .feature-media__body.bodyLeft .feature-media__body--left {
  width: calc(100% + 118px);
  height: 540px;
  position: absolute;
  top: -37px;
  left: 0;
}

@media screen and (max-width: 768px) {
  .feature .feature-media__body.bodyLeft .feature-media__body--left {
    top: -70px;
    left: -7%;
    width: 100%;
    height: auto;
    padding: 50px 39px 24px;
  }
}

@media screen and (max-width: 400px) {
  .feature .feature-media__body.bodyLeft .feature-media__body--left {
    top: -40px;
    left: -9.85%;
    padding: 50px 40px 47px;
  }
}

/* ---------------- */
/* ---- member ---- */
/* ---------------- */
.member {
  margin-top: 33px;
}

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

@media screen and (max-width: 400px) {
  .member {
    margin-top: 0;
    overflow: hidden;
  }
}

.member__wrapper {
  padding-right: 6.07613%;
  padding-left: 6.07613%;
}

@media screen and (max-width: 768px) {
  .member__wrapper {
    padding: 0;
  }
}

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

@media screen and (max-width: 768px) {
  .member__wrapper .section__title {
    padding-right: 6.07613%;
    padding-left: 6.07613%;
  }
}

@media screen and (max-width: 400px) {
  .member__wrapper .section__title {
    padding-top: 53px;
    padding-right: 6.07613%;
    padding-left: 10.3%;
  }
}

.member-cards--col3 {
  -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: unset;
  -ms-flex-pack: unset;
  justify-content: unset;
}

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

.member-cards--col3 .member-cards__item {
  width: 30%;
  margin-right: 5%;
  margin-bottom: 50px;
}

@media screen and (max-width: 768px) {
  .member-cards--col3 .member-cards__item {
    margin: 0;
  }
}

@media screen and (max-width: 400px) {
  .member-cards--col3 .member-cards__item {
    margin: 0;
  }
}

.member-cards--col3 .member-cards__item:nth-child(3n) {
  margin-right: 0;
}

.member-cards--col3 .member-cards__item:nth-child(n+4) {
  margin-bottom: 0;
}

.member-cards--col3 .member-cards__item .member-cards__imgArea {
  margin-bottom: 29px;
}

@media screen and (max-width: 768px) {
  .member-cards--col3 .member-cards__item .member-cards__imgArea {
    max-width: 460px;
    margin-right: 20px;
    margin-bottom: 20px;
    margin-left: 30px;
  }
}

@media screen and (max-width: 400px) {
  .member-cards--col3 .member-cards__item .member-cards__imgArea {
    max-width: 240px;
    margin-right: 20px;
    margin-bottom: 20px;
    margin-left: 30px;
  }
}

.member-cards--col3 .member-cards__item .member-cards__body {
  padding-top: 7px;
  border-left: 10px solid #014bb4;
}

@media screen and (max-width: 768px) {
  .member-cards--col3 .member-cards__item .member-cards__body {
    max-width: 460px;
    margin-left: 6.47619%;
  }
}

@media screen and (max-width: 400px) {
  .member-cards--col3 .member-cards__item .member-cards__body {
    max-width: 240px;
    margin-right: auto;
    margin-left: auto;
    border-left: 5px solid #014bb4;
  }
}

.member-cards--col3 .member-cards__item .member-cards__body .member-cards__title {
  font-size: 2.1rem;
  margin-bottom: 15px;
  padding-left: 5.55555%;
}

@media screen and (max-width: 400px) {
  .member-cards--col3 .member-cards__item .member-cards__body .member-cards__title {
    font-size: 1.8rem;
    margin-bottom: 10px;
    padding-left: 4.16666%;
  }
}

.member-cards--col3 .member-cards__item .member-cards__body .member-cards__title--small {
  font-size: 1.4rem;
  color: #014bb4;
}

@media screen and (max-width: 400px) {
  .member-cards--col3 .member-cards__item .member-cards__body .member-cards__title--small {
    font-size: 1.1rem;
  }
}

.member-cards--col3 .member-cards__item .member-cards__body .member-cards__text {
  line-height: 1.4375;
  padding-left: 5.55555%;
}

@media screen and (max-width: 400px) {
  .member-cards--col3 .member-cards__item .member-cards__body .member-cards__text {
    font-size: 1.3rem;
    line-height: 1.53946;
    padding-left: 4.16666%;
  }
}

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

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

.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: 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: 400px) {
  .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: 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: 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: 32px;
  text-align: right;
  color: #014bb4;
}

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