@charset "UTF-8";
/* common
---------------------------------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/*html {
  scroll-behavior: smooth;
}*/
body {
  -webkit-text-size-adjust: none;
  font-family: "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ",
    Meiryo, sans-serif;
  font-size: 3.7333333333vw;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  body {
    min-width: 1100px;
    font-size: 16px;
  }
}

a {
  text-decoration: none;
  overflow: hidden;
  outline: none;
  transition: all 0.3s ease;
}
@media (hover: hover) {
  a:hover {
    opacity: 0.7;
  }
}
@media (hover: none) {
  a:active {
    opacity: 0.7;
  }
}

img {
  vertical-align: bottom;
  width: 100%;
  height: auto;
  image-rendering: -webkit-optimize-contrast;
}
@media screen and (min-width: 768px) {
  img {
    width: auto;
  }
}

.sp {
  display: block;
}
@media screen and (min-width: 768px) {
  .sp {
    display: none;
  }
}

.pc {
  display: none;
}
@media screen and (min-width: 768px) {
  .pc {
    display: block;
  }
}

.center {
  text-align: center;
}

@media screen and (min-width: 768px) {
  .pc-wrap {
    width: 1100px;
    margin-left: auto;
    margin-right: auto;
  }
}

.modal-contents {
  display: none;
}

.sec-ttl01 {
  height: 10.6666666667vw;
  font-size: 4.5333333333vw;
  font-weight: bold;
  color: #fff;
  padding: 0 0 0 5.3333333333vw;
  background: url(/assets/images/original/kansai-consult_lp-01_sec-ttl01-bg.png)
    no-repeat;
  background-size: 100%;
  display: flex;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .sec-ttl01 {
    width: 1100px;
    height: 68px;
    font-size: 30px;
    padding: 0 0 0 50px;
    background: url(/assets/images/original/kansai-consult_lp-01_sec-ttl01-bg-pc.png)
      no-repeat;
    margin: 0 auto;
  }
}

/* header
---------------------------------------------------- */
.header {
  height: 12vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .header {
    width: 1000px;
    height: 72px;
    margin: 0 auto;
  }
}
.header__logo {
  width: 89.3333333333vw;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .header__logo {
    width: 426px;
    margin: 0;
  }
}
.header__logo img {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .header__btn {
    width: 488px;
    display: flex;
    justify-content: space-between;
  }
}
@media screen and (min-width: 768px) {
  .header__btn li:nth-child(1) {
    width: 220px;
  }
}
@media screen and (min-width: 768px) {
  .header__btn li:nth-child(1) a {
    background-color: #bb8e00;
  }
}
@media screen and (min-width: 768px) {
  .header__btn li:nth-child(2) {
    width: 250px;
  }
}
@media screen and (min-width: 768px) {
  .header__btn li:nth-child(2) a {
    background-color: #124a7b;
  }
}
@media screen and (min-width: 768px) {
  .header__btn a {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 36px;
    font-size: 14px;
    font-weight: bold;
    color: #fff;
    border-radius: 100vh;
    background-image: url(/assets/materials/kansai-consult_lp-01_arrow01.svg);
    background-repeat: no-repeat;
    background-position: right 12px top 50%;
    background-size: 8px auto;
  }
}

/* fv
---------------------------------------------------- */
.fv {
  min-height: 120vw;
  padding: 2.6666666667vw 0 0 0;
  background: url(/assets/images/original/kansai-consult_lp-01_fv-bg.jpg)
    no-repeat 50%;
  background-size: cover;
}
@media screen and (min-width: 768px) {
  .fv {
    min-height: 680px;
    padding: 33px 0 0 0;
    background: url(/assets/images/original/kansai-consult_lp-01_fv-bg-pc.jpg)
      no-repeat 50% 0;
  }
}
.fv__img01 {
  margin: -56.6666666667vw 0 0 0;
}
@media screen and (min-width: 768px) {
  .fv__img01 {
    margin: -254px 0 0 50px;
  }
}

/* nav
---------------------------------------------------- */
.nav {
  padding: 5.3333333333vw 0 8vw 0;
}
@media screen and (min-width: 768px) {
  .nav {
    padding: 28px 0 40px 0;
  }
}
.nav ul {
  display: flex;
  justify-content: center;
}
.nav li:not(:first-child) {
  padding: 0 0 0 5.0666666667vw;
  position: relative;
}
@media screen and (min-width: 768px) {
  .nav li:not(:first-child) {
    padding: 0 0 0 142px;
  }
}
.nav li:not(:first-child)::after {
  content: "";
  display: block;
  width: 0.4vw;
  height: 9.6vw;
  background: #124a7b;
  position: absolute;
  left: 2.4vw;
  top: 0;
  transform: rotate(15deg);
}
@media screen and (min-width: 768px) {
  .nav li:not(:first-child)::after {
    width: 3px;
    height: 26px;
    left: 70px;
    transform: rotate(30deg);
  }
}
.nav a {
  display: inline-block;
  font-size: 4.2vw;
  font-weight: bold;
  line-height: 1.2;
  color: #124a7b;
}
@media screen and (min-width: 768px) {
  .nav a {
    font-size: 18px;
    line-height: 24px;
  }
}

/* cv
---------------------------------------------------- */
.cv {
  background: #dce2e6;
  padding: 8vw 5.3333333333vw 8vw 5.3333333333vw;
}
@media screen and (min-width: 768px) {
  .cv {
    padding: 60px 0;
  }
}
.cv__btn {
  width: 89.3333333333vw;
  margin: 4vw auto 0 auto;
}
@media screen and (min-width: 768px) {
  .cv__btn {
    width: 600px;
    margin: 22px auto 0 auto;
  }
}
.cv__btn li:nth-child(1) a {
  background-color: #bb8e00;
}
.cv__btn li:nth-child(2) {
  margin: 4vw 0 0 0;
}
@media screen and (min-width: 768px) {
  .cv__btn li:nth-child(2) {
    margin: 19px 0 0 0;
  }
}
.cv__btn li:nth-child(2) a {
  background-color: #124a7b;
}
.cv__btn li a {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 14.6666666667vw;
  font-size: 4.4666666667vw;
  font-weight: bold;
  color: #fff;
  border-radius: 100vh;
  background-image: url(/assets/materials/kansai-consult_lp-01_arrow01.svg);
  background-repeat: no-repeat;
  background-position: right 5.6vw top 50%;
  background-size: 2.1333333333vw auto;
}
@media screen and (min-width: 768px) {
  .cv__btn li a {
    height: 86px;
    font-size: 30px;
    background-position: right 30px top 50%;
    background-size: 15px auto;
  }
}

/* example
---------------------------------------------------- */
.example {
  margin-top: 10.6666666667vw;
  padding: 0 0 17.3333333333vw 0;
}
@media screen and (min-width: 768px) {
  .example {
    margin-top: 44px;
    padding: 0 0 125px 0;
  }
}
.example > section:not(:nth-of-type(1)) {
  margin: 14.6666666667vw 0 0 0;
}
@media screen and (min-width: 768px) {
  .example > section:not(:nth-of-type(1)) {
    margin: 95px 0 0 0;
  }
}
.example__ttl {
  background: #618dae;
}
@media screen and (min-width: 768px) {
  .example__ttl {
    width: 1100px;
    margin: 0 auto;
    position: relative;
  }
}
.example__ttlTxt {
  width: 93.3333333333vw;
  font-size: 3.2666666667vw;
  line-height: 1.5;
  color: #000;
  padding: 4.8vw 0;
  margin: 0 auto;
}
.example__ttlTxts {
  width: 93.3333333333vw;
  font-size: 3.2666666667vw;
  line-height: 1.5;
  color: #fff;
  padding: 4.8vw 0;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .example__ttlTxt {
    width: 500px;
    color: #fff;
    font-size: 14px;
    padding: 20px 50px 20px 24px;
    background: rgba(80, 129, 165, 0.9);
    position: absolute;
  }
  .example__ttlTxts {
    width: 500px;
    color: #fff;
    font-size: 14px;
    padding: 20px 50px 20px 24px;
    background: rgba(80, 129, 165, 0.9);
    position: absolute;
  }
}
.example__ttlCatch {
  font-size: 4.1333333333vw;
  font-weight: bold;
  line-height: 1.5;
  margin: 0 0 2.6666666667vw 0;
}
.example__ttlCatchs {
  font-size: 4.1333333333vw;
  font-weight: bold;
  line-height: 1.5;
  margin: 0 0 2.6666666667vw 0;
}
@media screen and (min-width: 768px) {
  .example__ttlCatch {
    font-size: 18px;
    margin: 0 0 12px 0;
  }
  .example__ttlCatchs {
    font-size: 18px;
    margin: 0 0 12px 0;
  }
}
.example__list {
  margin: 4vw 0 0 0;
}
.example__listls {
  margin: 4vw 0 0 0;
}
@media screen and (min-width: 768px) {
  .example__list {
    width: 1000px;
    margin: 53px auto 0 auto;
    display: flex;
    justify-content: space-between;
  }
  .example__listls {
    width: 1000px;
    margin: 53px auto 0 auto;
    display: flex;
    align-items: stretch;
    flex-wrap: wrap;
    column-gap: 35px;
    row-gap: 35px;
  }
}
.example__list .slick-slide {
  margin: 0 4.1333333333vw;
}
.example__list .slick-arrow {
  width: 8vw;
  position: absolute;
  top: 22.2666666667vw;
  z-index: 5;
}
.example__list .slick-arrow.prev {
  left: 0;
}
.example__list .slick-arrow.next {
  right: 0;
}
@media screen and (min-width: 768px) {
  .example__listItem {
    width: 310px;
  }
  .example__listItems {
    width: 310px;
  }
}
@media screen and (min-width: 768px) {
  .example__listItem img {
    width: 100%;
  }
  .example__listItems img {
    width: 100%;
  }
}
.example__listItem a {
  color: #000;
}
.example__listItems a {
  color: #000;
}
.example__listTxt {
  font-size: 3.47vw;
  font-weight: bold;
  line-height: 1.5;
  margin: 2.6666666667vw 0 0 0;
}
.example__listTxts {
  font-size: 3.47vw;
  font-weight: bold;
  line-height: 1.5;
  margin: 2.6666666667vw 0 0 0;
}
@media screen and (min-width: 768px) {
  .example__listTxt {
    font-size: 16px;
    margin: 10px 0 0 0;
  }
  .example__listTxts {
    font-size: 16px;
    margin: 10px 0 0 0;
  }
}
@media screen and (min-width: 768px) {
  .example__residence .example__ttlTxt {
    right: 0;
    bottom: 43px;
  }
  .example__residence .example__ttlTxts {
    right: 0;
    bottom: 43px;
  }
}
@media screen and (min-width: 768px) {
  .example__office .example__ttlTxt {
    left: 0;
    bottom: 23px;
  }
  .example__office .example__ttlTxts {
    left: 0;
    bottom: 23px;
  }
}
@media screen and (min-width: 768px) {
  .example__land .example__ttlTxt {
    right: 0;
    bottom: 43px;
  }
  .example__land .example__ttlTxts {
    right: 0;
    bottom: 43px;
  }
}
@media screen and (min-width: 768px) {
  .example__others .example__ttlTxt {
    left: 0;
    bottom: 23px;
  }
  .example__others .example__ttlTxts {
    left: 0;
    bottom: 23px;
  }
}

/* strength
---------------------------------------------------- */
.strength {
  padding: 0 0 16.6666666667vw 0;
  margin: 2.8vw 0 0 0;
}
@media screen and (min-width: 768px) {
  .strength {
    padding: 0 0 128px 0;
    margin: 100px 0 0 0;
  }
}
.strength__ttl {
  background: #618dae;
}
@media screen and (min-width: 768px) {
  .strength__ttl {
    width: 1100px;
    margin: 0 auto;
    position: relative;
  }
}
.strength__ttlTxt {
  width: 93.3333333333vw;
  font-size: 3.2666666667vw;
  line-height: 1.5;
  color: #fff;
  padding: 4.8vw 0;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .strength__ttlTxt {
    width: 500px;
    font-size: 14px;
    padding: 20px 50px 20px 24px;
    background: rgba(80, 129, 165, 0.9);
    position: absolute;
    right: 0;
    bottom: 42px;
  }
}
.strength__ttlCatch {
  font-size: 4.1333333333vw;
  font-weight: bold;
  line-height: 1.5;
  margin: 0 0 2.6666666667vw 0;
}
@media screen and (min-width: 768px) {
  .strength__ttlCatch {
    font-size: 18px;
    margin: 0 0 12px 0;
  }
}
.strength__txt01 {
  font-size: 7.2vw;
  font-weight: bold;
  line-height: 1.5;
  color: #124a7b;
  margin: 8vw 0 0 0;
}
@media screen and (min-width: 768px) {
  .strength__txt01 {
    font-size: 40px;
    margin: 55px 0 0 0;
  }
}
.strength__txt02 {
  font-size: 5.3333333333vw;
  font-weight: bold;
  line-height: 1.6;
  color: #bb8e00;
  margin: 4vw 0 0 0;
}
@media screen and (min-width: 768px) {
  .strength__txt02 {
    font-size: 25px;
    line-height: 1.5;
    margin: 20px 0 0 0;
  }
}
.strength__txt03 {
  line-height: 1.8;
  padding: 0 5.3333333333vw;
  margin: 4.6666666667vw 0 0 0;
}
@media screen and (min-width: 768px) {
  .strength__txt03 {
    text-align: center;
    padding: 0;
    margin: 20px 0 0 0;
  }
}
.strength__data {
  width: 89.3333333333vw;
  margin: 8.6666666667vw auto 0 auto;
}
@media screen and (min-width: 768px) {
  .strength__data {
    width: 1000px;
    margin: 60px auto 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
}
.strength__data > li:not(:first-child) {
  margin: 10.6666666667vw 0 0 0;
}
@media screen and (min-width: 768px) {
  .strength__data > li:not(:first-child) {
    margin: 0;
  }
}
@media screen and (min-width: 768px) {
  .strength__data > li:not(:first-child):nth-child(1) {
    margin: 0 0 0 23px;
  }
}
@media screen and (min-width: 768px) {
  .strength__data > li:not(:first-child):nth-child(2) {
    margin: 0 20px 0 0;
  }
}
@media screen and (min-width: 768px) {
  .strength__data > li:not(:first-child):nth-child(3) {
    margin: 75px 0 0 0;
  }
}
.strength__data > li ul {
  margin: 5.3333333333vw 0 0 0;
}
@media screen and (min-width: 768px) {
  .strength__data > li ul {
    width: 100%;
    margin: 30px 0 0 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
}
.strength__data > li li:not(:first-child) {
  margin: 2.6666666667vw 0 0 0;
}
@media screen and (min-width: 768px) {
  .strength__data > li li:not(:first-child) {
    margin: 0;
  }
}
@media screen and (min-width: 768px) {
  .strength__data > li li:not(:first-child):nth-child(n + 3) {
    margin: 28px 0 0 0;
  }
}

/* flow
---------------------------------------------------- */
.flow {
  margin: 8vw 0 0 0;
}
@media screen and (min-width: 768px) {
  .flow {
    margin: 100px 0 0 0;
  }
}
.flow h3 {
  font-size: 5.3333333333vw;
  font-weight: bold;
  line-height: 10.6666666667vw;
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  .flow h3 {
    font-size: 25px;
    line-height: 82px;
    cursor: default;
  }
}
.flow h4 {
  font-size: 4vw;
  font-weight: bold;
}
@media screen and (min-width: 768px) {
  .flow h4 {
    font-size: 18px;
  }
}
.flow__inner {
  display: flex;
  margin: 8vw 0 0 0;
  position: relative;
}
@media screen and (min-width: 768px) {
  .flow__inner {
    width: 1000px;
    margin: 50px auto 0 auto;
    display: flex;
    justify-content: space-between;
  }
}
.flow__inner > div {
  width: 50%;
}
@media screen and (min-width: 768px) {
  .flow__inner > div {
    width: 482px;
  }
}
.flow__inner ol > li:not(:first-child) {
  padding: 18.6666666667vw 0 0 0;
  position: relative;
}
@media screen and (min-width: 768px) {
  .flow__inner ol > li:not(:first-child) {
    padding: 90px 0 0 0;
  }
}
.flow__inner ol > li:not(:first-child)::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 5.6vw 3.3333333333vw 0 3.3333333333vw;
  border-color: #124a7b transparent transparent transparent;
  position: absolute;
  top: 6.6666666667vw;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (min-width: 768px) {
  .flow__inner ol > li:not(:first-child)::after {
    border-width: 25px 15px 0 15px;
    top: 35px;
  }
}
.flow .more-contents {
  display: none;
}
.flow .more-contents ol {
  padding: 18.6666666667vw 0 0 0;
  position: relative;
}
@media screen and (min-width: 768px) {
  .flow .more-contents ol {
    padding: 90px 0 0 0;
  }
}
.flow .more-contents ol::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 5.6vw 3.3333333333vw 0 3.3333333333vw;
  border-color: #124a7b transparent transparent transparent;
  position: absolute;
  top: 6.6666666667vw;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (min-width: 768px) {
  .flow .more-contents ol::after {
    border-width: 25px 15px 0 15px;
    top: 35px;
  }
}
.flow__box {
  background: #fff;
  padding: 4.9333333333vw 6.4vw 7.3333333333vw 6.4vw;
}
@media screen and (min-width: 768px) {
  .flow__box {
    padding: 24px 28px 30px 28px;
  }
}
.flow .tab-contents {
  display: none;
  width: 100vw;
  padding: 5.3333333333vw 5.3333333333vw 3.2vw 5.3333333333vw;
  /*position: absolute;
  left: 0;
  top: calcVw(80px);*/
}
@media screen and (min-width: 768px) {
  .flow .tab-contents {
    display: block;
    width: 100%;
    padding: 0 40px 15px 40px;
    /*position: static;*/
  }
}
.flow__more {
  width: 11.4666666667vw;
  margin: 3.7333333333vw auto 0 auto;
  cursor: pointer;
  transition: all 0.3s ease;
}
@media screen and (min-width: 768px) {
  .flow__more {
    width: 52px;
    margin: 18px auto 0 auto;
  }
}
.flow__more.is-active {
  transform: rotate(180deg);
}
.flow__more img {
  width: 100%;
}
.flow__sale h3 {
  color: #124a7b;
  background: #cad9e4;
}
.flow__sale .tab-contents {
  background: #cad9e4;
}
.flow__buy h3 {
  color: #fff;
  background: #5081a5;
}
.flow__buy .tab-contents {
  background: #5081a5;
  position: relative;
  left: -50vw;
}
@media screen and (min-width: 768px) {
  .flow__buy .tab-contents {
    position: static;
  }
}
.flow__no {
  padding: 0 0 2.2666666667vw 0;
  border-bottom: 1px solid #e1ce90;
  margin: 0 0 4.6666666667vw 0;
}
@media screen and (min-width: 768px) {
  .flow__no {
    padding: 0 0 10px 0;
    margin: 0 0 20px 0;
  }
}
.flow__no img {
  width: auto;
  height: 6.2666666667vw;
}
@media screen and (min-width: 768px) {
  .flow__no img {
    height: 29px;
  }
}
.flow__list {
  margin: 3.3333333333vw 0 0 0;
}
@media screen and (min-width: 768px) {
  .flow__list {
    margin: 15px 0 0 0;
  }
}
.flow__list li {
  font-size: 3.1333333333vw;
  line-height: 1.5;
  padding: 0 0 0 1em;
  position: relative;
}
@media screen and (min-width: 768px) {
  .flow__list li {
    font-size: 14px;
  }
}
.flow__list li::before {
  content: "■";
  color: #bb8e00;
  position: absolute;
  left: 0;
  top: 0;
}
.flow__list li:not(:first-child) {
  margin: 2vw 0 0 0;
}
@media screen and (min-width: 768px) {
  .flow__list li:not(:first-child) {
    margin: 10px 0 0 0;
  }
}

/* qa
---------------------------------------------------- */
.qa {
  padding: 0 0 20.6666666667vw 0;
  margin: 10.6666666667vw 0 0 0;
}
@media screen and (min-width: 768px) {
  .qa {
    padding: 0 0 128px 0;
    margin: 100px 0 0 0;
  }
}
.qa .more-contents {
  display: none;
}
.qa__more {
  width: 11.8666666667vw;
  margin: 8.6666666667vw auto 0 auto;
  cursor: pointer;
  transition: all 0.3s ease;
}
@media screen and (min-width: 768px) {
  .qa__more {
    width: 52px;
    margin: 37px auto 0 auto;
  }
}
.qa__more.is-active {
  transform: rotate(180deg);
}
.qa__more img {
  width: 100%;
}
.qa dl {
  color: #124a7b;
  border-bottom: 1px solid #cad9e4;
}
.qa dt {
  font-size: 4.6666666667vw;
  font-weight: bold;
  line-height: 1.2;
  padding: 5.3333333333vw 14vw 5.3333333333vw 14.9333333333vw;
  cursor: pointer;
  position: relative;
}
@media screen and (min-width: 768px) {
  .qa dt {
    font-size: 20px;
    padding: 30px 120px 35px 95px;
  }
}
.qa dt:not(:nth-of-type(1)) {
  border-top: 1px solid #cad9e4;
}
.qa dt::before {
  content: "";
  display: block;
  width: 6.4vw;
  height: 6.4vw;
  background: url(/assets/materials/kansai-consult_lp-01_qa-plus.svg) no-repeat
    50%;
  background-size: 100% auto;
  position: absolute;
  top: 4.6666666667vw;
  right: 5.3333333333vw;
}
@media screen and (min-width: 768px) {
  .qa dt::before {
    width: 27px;
    height: 27px;
    top: 32px;
    right: 50px;
    transition: all 0.3s ease;
  }
}
.qa dt.is-active::before {
  background: url(/assets/materials/kansai-consult_lp-01_qa-minus.svg) no-repeat
    50%;
  background-size: 100% auto;
}
@media screen and (min-width: 768px) {
  .qa dt.is-active::before {
    transform: rotate(180deg);
    transform-origin: 50% 50%;
  }
}
.qa dt::after {
  content: "";
  display: block;
  width: 6.9333333333vw;
  height: 6.8vw;
  background: url(/assets/materials/kansai-consult_lp-01_qa-q.svg) no-repeat;
  background-size: 100%;
  position: absolute;
  left: 5.3333333333vw;
  top: 4vw;
}
@media screen and (min-width: 768px) {
  .qa dt::after {
    width: 30px;
    height: 30px;
    left: 50px;
    top: 25px;
  }
}
.qa dd {
  display: none;
  padding: 3.3333333333vw 13.3333333333vw 5.3333333333vw 14.9333333333vw;
  position: relative;
}
@media screen and (min-width: 768px) {
  .qa dd {
    padding: 0 120px 30px 95px;
  }
}
.qa dd::after {
  content: "";
  display: block;
  width: 7.0666666667vw;
  height: 6.6666666667vw;
  background: url(/assets/materials/kansai-consult_lp-01_qa-a.svg) no-repeat;
  background-size: 100%;
  position: absolute;
  left: 5.3333333333vw;
  top: 3.3333333333vw;
}
@media screen and (min-width: 768px) {
  .qa dd::after {
    width: 30px;
    height: 29px;
    left: 50px;
    top: 0px;
  }
}

/* footer
---------------------------------------------------- */
.footer {
  color: #fff;
  background: #5081a5;
  padding: 8.4vw 0 10.4vw 0;
}
@media screen and (min-width: 768px) {
  .footer {
    padding: 60px 0 72px 0;
  }
}
@media screen and (min-width: 768px) {
  .footer__inner {
    width: 1000px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 0 auto;
  }
}
.footer a {
  color: #fff;
}
.footer__logo {
  font-size: 3.7333333333vw;
  font-weight: bold;
  text-align: center;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .footer__logo {
    font-size: 18px;
  }
}
.footer__logo img {
  width: 52.5333333333vw;
}
@media screen and (min-width: 768px) {
  .footer__logo img {
    width: 322px;
  }
}
.footer__logo p:not(:nth-of-type(1)) {
  margin: 4.2666666667vw 0 0 0;
}
@media screen and (min-width: 768px) {
  .footer__logo p:not(:nth-of-type(1)) {
    margin: 14px 0 0 56px;
  }
}
.footer__addr {
  display: inline-flex;
  flex-wrap: wrap;
  font-size: 3.2666666667vw;
  line-height: 1.2;
  padding: 0 13.3333333333vw;
  margin: 7.3333333333vw 0 0 0;
}
@media screen and (min-width: 768px) {
  .footer__addr {
    max-width: 350px;
    font-size: 14px;
    padding: 0 0 0 25px;
    margin: 0;
  }
}
.footer__addr dt {
  min-width: 5.5em;
  text-align: right;
}
.footer__addr dt:not(:nth-of-type(1)),
.footer__addr dd:not(:nth-of-type(1)) {
  padding: 1.2em 0 0 0;
}
.footer__addr a {
  text-decoration: underline;
}
.footer__addr a + span {
  display: inline-block;
  transform: scale(0.6, 0.6);
}
.footer__addr address {
  font-style: normal;
  margin: 0 0 0.5em 0;
}
.footer__btn {
  width: 62.5333333333vw;
  margin: 7.3333333333vw auto 0 auto;
}
@media screen and (min-width: 768px) {
  .footer__btn {
    width: 320px;
    margin: 0;
  }
}
.footer__btn li:not(:first-child) {
  margin: 2.6666666667vw 0 0 0;
}
@media screen and (min-width: 768px) {
  .footer__btn li:not(:first-child) {
    margin: 20px 0 0 0;
  }
}
.footer__btn li:nth-child(1) a {
  background-color: #bb8e00;
}
.footer__btn li:nth-child(2) a {
  background-color: #124a7b;
}
.footer__btn a {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 10.2666666667vw;
  font-size: 3.1333333333vw;
  font-weight: bold;
  color: #fff;
  border-radius: 100vh;
  background-image: url(/assets/materials/kansai-consult_lp-01_arrow01.svg);
  background-repeat: no-repeat;
  background-position: right 4vw top 50%;
  background-size: 1.6vw auto;
}
@media screen and (min-width: 768px) {
  .footer__btn a {
    height: 46px;
    font-size: 18px;
    background-position: right 15px top 50%;
    background-size: 10px auto;
  }
}
.footer__link {
  margin: 9.3333333333vw 0 0 0;
}
@media screen and (min-width: 768px) {
  .footer__link {
    width: 100%;
    margin: 28px 0 0 56px;
  }
}
.footer__link ul {
  display: flex;
  justify-content: center;
}
@media screen and (min-width: 768px) {
  .footer__link ul {
    justify-content: flex-start;
  }
}
.footer__link li {
  font-size: 2.8vw;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .footer__link li {
    font-size: 12px;
  }
}
.footer__link li:not(:first-child) {
  padding: 0 0 0 3.7333333333vw;
  margin: 0 0 0 3.7333333333vw;
  border-left: 1px solid #fff;
}
@media screen and (min-width: 768px) {
  .footer__link li:not(:first-child) {
    padding: 0 0 0 17px;
    margin: 0 0 0 17px;
  }
}
.footer__link a {
  text-decoration: underline;
}
.footer__link p {
  font-size: 2.3333333333vw;
  line-height: 1;
  text-align: center;
  margin: 4.2666666667vw 0 0 0;
}
@media screen and (min-width: 768px) {
  .footer__link p {
    font-size: 10px;
    text-align: left;
    margin: 17px 0 0 0;
  }
}

/* modal-example
---------------------------------------------------- */
.modaal-content-container {
  padding: 0 !important;
}

.modal-example {
  -webkit-text-size-adjust: none;
  font-family: "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ",
    Meiryo, sans-serif;
  font-size: 3.7333333333vw;
  line-height: 1.5;
  padding: 8.6666666667vw 6vw;
}
@media screen and (min-width: 768px) {
  .modal-example {
    font-size: 16px;
    padding: 70px 100px;
  }
}
.modal-example .sp {
  display: block;
}
@media screen and (min-width: 768px) {
  .modal-example .sp {
    display: none;
  }
}
.modal-example .pc {
  display: none;
}
@media screen and (min-width: 768px) {
  .modal-example .pc {
    display: block;
  }
}
.modal-example h2 {
  font-size: 5.3333333333vw;
  font-weight: bold;
  border-bottom: 1px solid #000;
  padding: 0 0 7.7333333333vw 0;
}
@media screen and (min-width: 768px) {
  .modal-example h2 {
    font-size: 25px;
    padding: 0 0 35px 0;
  }
}
.modal-example dt {
  font-weight: bold;
  color: #124a7b;
  padding: 2em 0 0 0;
}
.modal-example__btn {
  width: 62.5333333333vw;
  margin: 10.6666666667vw auto 0 auto;
}
@media screen and (min-width: 768px) {
  .modal-example__btn {
    width: 560px;
    margin: 90px auto 0 auto;
    display: flex;
    justify-content: space-between;
  }
}
.modal-example__btn li:not(:first-child) {
  margin: 2.6666666667vw 0 0 0;
}
@media screen and (min-width: 768px) {
  .modal-example__btn li:not(:first-child) {
    margin: 0;
  }
}
@media screen and (min-width: 768px) {
  .modal-example__btn li:nth-child(1) {
    width: 254px;
  }
}
.modal-example__btn li:nth-child(1) a {
  background-color: #bb8e00;
}
@media screen and (min-width: 768px) {
  .modal-example__btn li:nth-child(2) {
    width: 288px;
  }
}
.modal-example__btn li:nth-child(2) a {
  background-color: #124a7b;
}
.modal-example__btn a {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 10.2666666667vw;
  font-size: 3.1333333333vw;
  font-weight: bold;
  color: #fff;
  border-radius: 100vh;
  background-image: url(/assets/materials/kansai-consult_lp-01_arrow01.svg);
  background-repeat: no-repeat;
  background-position: right 4vw top 50%;
  background-size: 1.6vw auto;
}
@media screen and (min-width: 768px) {
  .modal-example__btn a {
    height: 41px;
    font-size: 16px;
    background-position: right 14px top 50%;
    background-size: 9px auto;
  }
}

/* floating-nav
---------------------------------------------------- */
.floating-nav {
  width: 100%;
  position: fixed;
  left: 0;
  bottom: -14.6666666667vw;
  transition: bottom 0.3s ease;
}
@media screen and (min-width: 768px) {
  .floating-nav {
    min-width: 1100px;
    height: 72px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #5081a5;
    bottom: -72px;
  }
}
.floating-nav.is-show {
  bottom: 0;
  z-index: 6;
}
.floating-nav ul {
  display: flex;
}
@media screen and (min-width: 768px) {
  .floating-nav ul {
    width: 800px;
    justify-content: space-between;
    align-items: center;
    margin: 0 0 0 24px;
  }
}
.floating-nav a {
  display: block;
  height: 14.6666666667vw;
  padding: 10.6666666667vw 0 0 0;
  font-size: 2.6666666667vw;
  line-height: 1;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .floating-nav a {
    height: 36px;
    padding: 0;
    font-size: 14px;
    line-height: 36px;
    font-weight: bold;
    border-radius: 100vh;
  }
}
.floating-nav li {
  width: calc(100% / 3);
}
@media screen and (min-width: 768px) {
  .floating-nav li:nth-child(1) {
    width: 292px;
  }
}
.floating-nav li:nth-child(1) a {
  background: #5081a5 url(/assets/materials/kansai-consult_lp-01_icon-tel.svg)
    no-repeat 50% 2.2666666667vw;
  background-size: 6.9333333333vw auto;
  letter-spacing: -0.03em;
}
@media screen and (min-width: 768px) {
  .floating-nav li:nth-child(1) a {
    height: 48px;
    overflow: hidden;
    text-indent: 100%;
    white-space: nowrap;
    background: url(/assets/images/original/kansai-consult_lp-01_floating-nav-tel.png)
      no-repeat;
    border-radius: 0;
    pointer-events: none;
  }
}
@media screen and (min-width: 768px) {
  .floating-nav li:nth-child(2) {
    width: 220px;
  }
}
.floating-nav li:nth-child(2) a {
  background: #bb8e00 url(/assets/materials/kansai-consult_lp-01_icon-mail.svg)
    no-repeat 50% 2.9333333333vw;
  background-size: 8.5333333333vw auto;
}
@media screen and (min-width: 768px) {
  .floating-nav li:nth-child(2) a {
    background: #bb8e00 url(/assets/materials/kansai-consult_lp-01_arrow01.svg)
      no-repeat right 12px top 50%;
    background-size: 8px auto;
  }
}
@media screen and (min-width: 768px) {
  .floating-nav li:nth-child(3) {
    width: 250px;
  }
}
.floating-nav li:nth-child(3) a {
  background: #124a7b url(/assets/materials/kansai-consult_lp-01_icon-mail.svg)
    no-repeat 50% 2.9333333333vw;
  background-size: 8.5333333333vw auto;
}
@media screen and (min-width: 768px) {
  .floating-nav li:nth-child(3) a {
    background: #124a7b url(/assets/materials/kansai-consult_lp-01_arrow01.svg)
      no-repeat right 12px top 50%;
    background-size: 8px auto;
  }
}
@media screen and (min-width: 768px) {
  .floating-nav span.pc {
    display: inline;
  }
}

/* NEW CSS 26/04/2023 */

.s-info .s-info__img {
  max-width: 545px;
}

.s-info .s-info__box {
  margin: 15px 0 45px;
}

@media screen and (min-width: 768px) {
  .s-info .s-info__box {
    display: flex;
    margin: 30px 0 89px;
  }
}

.s-info__content {
  margin: 25px 15px 0;
  display: flex;
  flex-direction: column;
}

@media screen and (min-width: 768px) {
  .s-info__content {
    width: 100%;
    margin: 0 0 0 30px;
  }
}

.s-info__ttl {
  font-size: 20px;
  font-weight: 700;
  color: #124a7b;
  letter-spacing: 0.05em;
  display: inline-block;
  position: relative;
  margin-bottom: 8px;
}

@media screen and (min-width: 768px) {
  .s-info__ttl {
    font-size: 25px;
    margin-bottom: 5px;
  }
}

.s-info__ttl-span {
  background-color: #fff;
  padding-right: 10px;
}

.s-info__ttl-span::after {
  position: absolute;
  content: "";
  height: 1px;
  width: 100%;
  background-color: #124a7b;
  right: 0;
  bottom: 50%;
  transform: translateY(-50%);
  z-index: -1;
}

.s-info__desc {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 8px;
}

@media screen and (min-width: 768px) {
  .s-info__desc {
    font-size: 18px;
  }
}

.s-info__google {
  font-size: 14px;
  line-height: 1.6;
  text-decoration: underline;
  color: #000;
  margin-bottom: 35px;
}

@media screen and (min-width: 768px) {
  .s-info__google {
    font-size: 18px;
  }
}

.s-info__tel {
  margin-bottom: 12px;
  max-width: 400px;
}

.s-info .footer__btn {
  display: block;
  margin: 0 auto;
}
.s-info .footer__btn a {
  background-color: #124a7b;
  /*font-size: 17px; */
  margin-top: 20px;
}

@media screen and (min-width: 768px) {
  .s-info .footer__btn a {
    font-size: 17px;
  }
}
/* tab css */
.s-kansai-tab-container {
  max-width: 1100px;
  margin: 0 auto;
}
.s-kansai-tab-list {
  display: flex;
  margin-top: 24px;
  border-bottom: 2px solid #124a7b;
}
.s-kansai-tab-list li {
  width: calc(100% / 4);
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #124a7b;
  font-size: 4vw;
  transition: all 0.5s ease;
}

.s-kansai-tab-list > li:hover {
  cursor: pointer;
}
.s-kansai-tab-list > li.active {
  background-color: #dce2e6;
}
.s-kansai-tabs-contents {
  opacity: 0;
  display: none;
  margin-top: 15px;
  transition: opacity 1s ease-out;
}
.s-kansai-tabs-contents.active {
  opacity: 1;
  display: block;
}
@media screen and (min-width: 768px) {
  .s-kansai-tab-list {
    margin-top: 40px;
  }
  .s-kansai-tab-list li {
    font-size: 20px;
    height: 70px;
  }
}

@media screen and (min-width: 768px) {
  .example__ttl-sm {
    display: none;
  }
}

@media screen and (max-width: 768px) {
  .example__listls {
    margin: 0 15px 0;
  }
  .example__listItem {
    margin-bottom: 18px;
  }
  .example__listItems {
    margin-bottom: 18px;
  }
  /* .example__listItem .js-modal {
    display: flex;
    align-items: center;
    box-shadow: 0px 0px 3px 3px rgba(0, 0, 0, 0.19);
    border-radius: 4px;
  } */
  .example__listItems .js-modal {
    display: flex;
    align-items: center;
    box-shadow: 0px 0px 3px 3px rgba(0, 0, 0, 0.19);
    border-radius: 4px;
  }

  /* .example__listItem .example__listimg {
    max-width: 100px;
    width: 100%;
    height: 100%;
  } */
  .example__listItems .example__listimg {
    max-width: 120px;
    width: 100%;
    height: 100%;
  }
  .example__listItems .example__listimg .s-example-img {
    max-width: 120px;
    height: 80px;
    object-fit: cover;
  }
  .example__listItems .example__listTxt {
    margin-left: 10px;
    margin-top: 0;
    padding: 5px;
  }
  .example__listItems .example__listTxts {
    margin-left: 10px;
    margin-top: 0;
    padding: 5px;
  }

  .example__ttl {
    background-color: #fff;
  }

  .example__ttlCatchs {
    color: #000;
  }
  .example__ttlDtl {
    font-size: 3.47vw;
    color: #000;
  }
  .examples__ttlTxt {
    color: #000;
  }

  .example__ttl-sm {
    font-size: 28px;
    text-align: center;
    font-weight: 700;
    padding: 17px 0 20px;
    color: #124a7b;
  }

  .example__ttl-sm-span {
    display: block;
    font-size: 13px;
  }
}
