@charset "UTF-8";

.title {
  display: flex;
  flex-direction: column;
  line-height: 1.6;
}

.title-main {
  font-size: 3rem;
}

.title-sub {
  display: flex;
  flex-direction: column;
  font-size: 1.2rem;
  padding-left: 14px;
  position: relative;
}

.title-sub::before {
  display: block;
  content: '';
  width: 4px;
  height: 100%;
  background: #fff;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(0, -50%);
  border-radius: 50vh;
}

/*----------------------------------------------------
  breadcrumb
----------------------------------------------------*/
.breadcrumb {
  width: 85%;
  max-width: 1440px;
  margin: 0 auto;
}

.breadcrumb ol {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 1.2rem;
}

.breadcrumb li+li::before {
  display: inline-block;
  content: '';
  width: 8px;
  height: 8px;
  clip-path: polygon(0 100%, 0 0, 100% 50%);
  background-color: #fff;
  margin: 0 6px 0 8px;
}

/*----------------------------------------------------
  tab
----------------------------------------------------*/
.tab-list {
  width: 60%;
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  list-style: none;
  margin-left: auto;
}

.tab-item {
  width: 24%;
  margin-left: calc(4%/4);
}

.tab-item__link {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  height: 40px;
  background: rgba(255, 255, 255, .9);
  position: relative;
  border-radius: 50vh;
  padding: 0 10px;
  box-sizing: border-box;
  font-family: 'Noto Sans JP', '游ゴシック', 'Yu Gothic', 'Hiragino Sans', 'ヒラギノ角ゴ ProN', 'Hiragino Kaku Gothic ProN', 'Meiryo UI', 'メイリオ', sans-serif;
}

.tab-item__link::after {
  display: block;
  content: '';
  width: calc(100% + 2px);
  height: calc(100% + 2px);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--bg-blue-gradient);
  opacity: .8;
  z-index: -1;
  border-radius: 50vh;
}

.tab-item__link::before {
  display: block;
  content: '';
  width: 10px;
  height: 10px;
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translate(0, -50%);
  background: url('../img/common/icon-arrow--down-gradi.svg');
}


.tab-item__num {
  font-size: 1.2rem;
  margin-right: 5px;
}

/*----------------------------------------------------
  fv
----------------------------------------------------*/

.fv {
  padding-top: 200px;
  padding-bottom: 80px;
}

.fv .l-inner {
  width: 85%;
}

/*----------------------------------------------------
  cta
----------------------------------------------------*/
.cta .l-inner {
  background: rgba(233, 245, 251, .6);
  padding: 80px 0;
}

.cta__lead {
  width: 100%;
  font-size: 2rem;
  font-weight: 500;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
}

.cta__lead::before,
.cta__lead::after {
  display: block;
  content: '';
  flex: 1;
  border-top: 2px dotted #b0c4de;
}

.cta__lead::before {
  margin-right: 10px;
}

.cta__lead::after {
  margin-left: 10px;
}

.cta__wrapper {
  width: 65%;
  margin: 0 auto 30px auto;
  display: flex;
  justify-content: space-between;
}

.cta-btn {
  width: 49.5%;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  border-radius: 14px;
  box-sizing: border-box;
}

.cta-btn--tel {
  border: 2px solid #9dd8f2;
  background: #fff;
  color: #1ca4e1;
}

.cta-btn--line {
  background: linear-gradient(45deg, #3CB39B, #32CD32);
  color: #fff;
}

.cta-btn__icon {
  width: 50px;
  margin-right: 10px;
}

.cta-btn__text {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.4;
}

.cta-btn__text-sub {
  font-size: 1.4rem;
}

.cta-attention {
  text-align: center;
  font-size: 1.3rem;
  opacity: .8;
}

.cta-attention__list {
  display: inline-flex;
  flex-direction: column;
  width: auto;
  text-align: justify;
  padding-left: 20px;
  box-sizing: border-box;
}


@media screen and (max-width:1280px) {}

@media screen and (max-width:1024px) {
  .tab-list {
    width: 70%;
  }

  /*---cta---*/
  .cta__wrapper {
    width: 85%;
  }
}

@media screen and (max-width:896px) {
  .tab-list {
    width: 55%;
  }

  .tab-item {
    width: 49%;
    margin-left: calc(2% / 2);
  }

  .tab-item:nth-of-type(n+3) {
    margin-top: 8px;
  }

}

@media screen and (max-width:786px) {

  /*---cta---*/
  .cta__wrapper {
    width: 90%;
  }
}

@media screen and (max-width:680px) {

  /*---tab---*/
  .tab {
    padding-top: 20px;
  }

  .tab-list {
    width: 100%;
    margin: 0 auto;
  }

  .cta__text {
    width: 90%;
    text-align: justify;
    margin-left: auto;
    margin-right: auto;
  }

  /*---cta---*/
  .cta .section-heading {
    margin-bottom: 30px;
  }

  .cta__lead {
    font-size: 1.8rem;
  }

  .cta__wrapper {
    width: 80%;
    flex-direction: column;
  }

  .cta-btn {
    width: 100%;
  }

  .cta-btn:nth-of-type(n+2) {
    margin-top: 8px;
  }

  .cta-attention {
    width: 85%;
    margin: 0 auto;
  }
}

@media screen and (max-width:480px) {

  /*---fv---*/
  .fv {
    padding-top: 100px;
    padding-bottom: 60px;
  }

  .title-main {
    font-size: 2.4rem;
    margin-bottom: 6px;
  }

  .title-sub {
    font-size: 1.1rem;
    padding-left: 10px;
    line-height: 1.4;
  }

  /*---tab---*/
  .tab .l-inner {
    width: 90%;
  }

  .tab-item:nth-of-type(n+3) {
    margin-top: 5px;
  }

  /*---cta---*/
  section.cta {
    padding: 0;
  }

  .cta .l-inner {
    width: 95%;
  }

  .cta__lead {
    text-align: center;
    font-size: 1.6rem;
    line-height: 1.6;
  }

  .cta__lead .ui--sp {
    display: block;
  }

  .cta__wrapper {
    width: 90%;
  }

  .cta-btn {
    height: 80px;
  }

  .cta-attention__list {
    display: flex;
    width: 100%;
    padding-left: 10px;
  }

  .cta-attention__item {
    font-size: 1.1rem;
    line-height: 1.8;
  }
}