@charset "UTF-8";

section {
  position: relative;
}

.l-inner {
  width: 90%;
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.p-lead {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.8;
  display: flex;
  align-items: center;
  margin-bottom: 60px;
}

.p-lead::after {
  display: block;
  content: '';
  flex: 1;
  border-top: 1px solid #ccc;
  margin-left: 20px;
}

.underline--brw {
  background: linear-gradient(to bottom, transparent 0%, transparent 70%, #c7b299 70%, #c7b299 90%, transparent 90%, transparent 100%);
}

.txt-bg {
  width: 120px;
  height: auto;
  position: absolute;
}

.txt-bg>img {
  display: block;
  width: 100%;
}

.txt-bg--left {
  top: 50%;
  left: 0;
  transform: translate(0, -50%);
}

.txt-bg--left2 {
  height: auto;
  bottom: 5%;
  left: 0;
  transform: translate(0, 0);
}

.txt-bg--right {
  top: 50%;
  right: 0;
  transform: translate(0, -50%);
}

.bg-sep {
  width: auto;
  height: 40%;
  position: absolute;
  top: 60%;
  right: -15%;
  opacity: 0;
  z-index: 1;
}

.is-slideInRight {
  animation: bg-anima .6s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.bg-sep>img {
  width: auto;
  height: 100%;
}

@keyframes bg-anima {
  0% {
    opacity: 0;
    transform: translateX(200%) translateY(-200%);
  }

  5% {
    opacity: 0;
  }

  100% {
    opacity: 1;
    transform: translateX(0) translateY(0);
  }
}

.bg-sep2 {
  width: auto;
  height: 100%;
  position: absolute;
  top: 0;
  left: -10%;
  opacity: 0;
  z-index: 1;
}

.is-slideInLeft {
  animation: bg-anima2 .6s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.bg-sep2>img {
  width: auto;
  height: 100%;
}

@keyframes bg-anima2 {
  0% {
    opacity: 0;
    transform: translateX(-100%) translateY(-80%);
  }

  5% {
    opacity: 0;
  }

  100% {
    opacity: 1;
    transform: translateX(0) translateY(0);
  }
}

/*------------------------------------
 .mv
------------------------------------*/
.mv {
  width: 100%;
  height: 100vh;
  position: relative;
  background: #F7F7F7;
}

.mv__img {
  width: 87.5%;
  height: calc(100% - 80px);
  position: absolute;
  top: 80px;
  right: 0;
}

.swiper-container {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: 0 !important;
}

.swiper-slide,
.swiper-slide-active {
  position: relative;
}

.slide-img {
  width: 100%;
  height: 100%;
  position: relative;
}

.slide-img>picture {
  height: 100%;
}

.slide-img>img,
.slide-img>picture>img {
  height: 100%;
  object-fit: cover;
  object-position: center;
  position: relative;
}

.swiper1 .swiper-slide-active .slide-img,
.swiper1 .swiper-slide-duplicate-active .slide-img,
.swiper1 .swiper-slide-prev .slide-img {
  animation: blur1 .5s linear 0s;
  animation-fill-mode: both;
}

@keyframes blur1 {
  0% {
    filter: blur(20px);
  }

  100% {
    filter: blur(0);
  }
}

.swiper1 .swiper-pagination {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 48px;
  height: auto;
  position: absolute;
  top: 50%;
  right: 2.5%;
  left: initial;
  bottom: initial;
  transform: translate(0, -50%);
  mix-blend-mode: difference;
}

.swiper1 .swiper-pagination-bullet {
  box-sizing: border-box;
  display: block;
  opacity: 1;
  position: relative;
  transform: scale(.9);
  transition: transform .3s ease;
  width: 48px;
  height: 48px;
  border-radius: 0;
  margin: 10px 4px !important;
  padding: 13px 0;
  background-color: transparent;
  font-weight: 700;
  text-align: center;
  font-size: 1.2rem;
  color: #A7A7A7;
}

.swiper1 .swiper-pagination-bullet+.swiper-pagination-bullet {
  margin-top: 20px;
}

.swiper1 .swiper-pagination-bullet.swiper-pagination-bullet-active {
  transform: scale(1);
}

.swiper1 .swiper-pagination-bullet .circle {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}

.circle1 {
  stroke-dasharray: 152px;
  stroke-dashoffset: 152px;
  stroke: #A7A7A7;
}

.swiper-pagination-bullet-active .circle {
  transform: scale(1) rotate(-90deg);
}

.swiper-pagination-bullet-active .circle1 {
  animation: sliderPagination 4s linear forwards;
}

@keyframes sliderPagination {
  100% {
    stroke-dashoffset: 0;
  }
}

.mv__inner {
  width: 90%;
  max-width: 1280px;
  margin: 0 auto;
  position: absolute;
  top: 60%;
  left: 10%;
  transform: translate(0, -50%);
  z-index: 1;
}

.mv__lead {
  width: 100%;
  height: auto;
  margin-bottom: 20px;
}

.mv__lead>h2 {
  width: 35%;
  height: auto;
}

.mv__txt {
  font-size: 2rem;
  line-height: 1.8;
  font-weight: bold;
  margin-bottom: 14px;
}

.mv__txt2 {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.8;
}

.mv__txt br:nth-of-type(2n+1) {
  display: none;
}

.mv__list {
  display: flex;
  list-style: none;
  margin-bottom: 14px;
}

.mv__list>li {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(45deg, #736357, #c7b299, #998675, #c7b299);
  color: #fff;
  padding: 14px 24px;
  box-sizing: border-box;
  border-radius: 50%;
}

.mv__list>li:not(:last-of-type) {
  margin-right: 10px;
}

.mv__cta {
  width: 160px;
  height: 160px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: calc(100% - 80px);
  left: calc(12.5% - 80px);
  z-index: 1;
}

.mv__cta-img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: 40s linear infinite rotate;
}

@keyframes rotate {
  0% {
    transform: translate(-50%, -50%) rotate(0);
  }

  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

.mv__cta>a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 110px;
  height: 110px;
  line-height: 1.4;
  border-radius: 50vh;
  background: linear-gradient(to right, rgba(151, 207, 223, .5), rgba(186, 188, 215, .5), rgba(200, 156, 192, .5), rgba(243, 204, 136, .5));
  position: relative;
  z-index: 1;
}

.mv__cta-en {
  font-size: 1.8rem;
  font-weight: bold;
}

.mv__cta-jp {
  font-size: 1.2rem;
}

.scrolldown__wrap {
  width: auto;
  height: 40%;
  position: absolute;
  z-index: 1;
  top: 45%;
  left: 2.5%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
}

.scrolldown__wrap>span {
  font-size: 1rem;
  -ms-writing-mode: tb-rl;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  margin-bottom: 10px;
}

.scrolldown {
  position: relative;
  height: 80px;
}

.scrolldown::before {
  content: "";
  position: absolute;
  z-index: 1;
  bottom: 0;
  left: -5px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #42a5f5;
  animation: circlemove 1.6s ease-in-out infinite, cirlemovehide 1.6s ease-out infinite;
}

.scrolldown::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 1px;
  height: 80px;
  background: #ccc;
}

@keyframes circlemove {
  0% {
    bottom: 80px;
    background: #42a5f5;
  }

  100% {
    bottom: -5px;
    background: #faaeb9;
  }
}

@keyframes cirlemovehide {
  0% {
    opacity: 0;
  }

  50% {
    opacity: 1;
  }

  80% {
    opacity: 0.9;
  }

  100% {
    opacity: 0;
  }
}

/*------------------------------------
 .case
------------------------------------*/
.case {
  width: 100%;
  height: auto;
  padding: 200px 0 100px 0;
  position: relative;
  background: #F7F7F7;
}

.case__body {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.case__col {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: space-around;
  align-items: flex-start;
}

.case__img {
  width: 40%;
  height: auto;
  position: relative;
}

.case__img::before {
  display: block;
  content: '';
  width: 200px;
  height: 200px;
  background: linear-gradient(45deg, rgba(151, 207, 223, .2), rgba(186, 188, 215, .2), rgba(200, 156, 192, .2), rgba(243, 204, 136, .2));
  position: absolute;
  bottom: -80px;
  left: -100px;
}

.case__img>img {
  position: relative;
  z-index: 1;
}

.case__img-txt {
  font-size: 3.2rem;
  font-weight: bold;
  position: absolute;
  top: 67.5%;
  left: -5%;
  z-index: 1;
}

.case__inner {
  width: 50%;
  height: auto;
  margin-top: 80px;
}

.case__lead {
  display: inline-block;
  width: auto;
  height: auto;
  padding: 20px 60px;
  background: rgba(255, 255, 255, .8);
  border-radius: 20px;
  box-sizing: border-box;
  margin-bottom: 50px;
  position: relative;
}

.case__lead::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 20px;
  border: 3px solid transparent;
  background: linear-gradient(135deg, rgba(151, 207, 223, .6), rgba(186, 188, 215, .6), rgba(200, 156, 192, .6), rgba(243, 204, 136, .6)) border-box border-box;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0) border-box;
  -webkit-mask-composite: destination-out;
  mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0) border-box;
  mask-composite: exclude;
}

.case__lead>p {
  font-size: 2.4rem;
  font-weight: bold;
}

.case__list {
  width: 100%;
  height: auto;
}

.case__list>ul {
  width: 100%;
  height: auto;
  position: relative;
}

.case__list>ul>li {
  display: flex;
  align-items: center;
  font-size: 2rem;
  font-weight: 700;
  border-bottom: 1px solid #ccc;
  padding: 0 10px 5px 10px;
  box-sizing: border-box;
}

.case__list>ul>li::before {
  display: block;
  content: '';
  width: 24px;
  height: 24px;
  background: url('../img/top/icon-check.svg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  margin-right: 8px;
  flex-shrink: 0;
}

.case__list>ul>li:nth-of-type(n+2) {
  margin-top: 20px;
}

.contents-cols-box-arrow {
  width: 100%;
  height: 100px;
  margin: 15px 0;
  position: absolute;
  top: 95%;
  left: 50%;
  transform: translate(-50%, 0);
  z-index: 2;
}

.flow .contents-cols-box-arrow {
  width: 16px;
  position: relative;
  top: initial;
  left: initial;
  transform: translate(-50%, 0);
  margin: 0 auto 40px auto;
}

.contents-cols-box-arrow span {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, 0);
  width: 16px;
  height: 16px;
  border-top: 16px solid #ccc;
  border-right: 16px solid transparent;
  border-left: 16px solid transparent;
  border-bottom: 16px solid transparent;
  -webkit-animation: blink 2s infinite;
  animation: blink 2s infinite;
  opacity: 0;
  box-sizing: border-box;
}

.contents-cols-box-arrow span:nth-of-type(2) {
  top: 36px;
  -webkit-animation-delay: .15s;
  animation-delay: .15s;
}

.contents-cols-box-arrow span:nth-of-type(3) {
  top: 72px;
  -webkit-animation-delay: .3s;
  animation-delay: .3s;
}

@keyframes blink {
  0% {
    opacity: 0;
  }

  50% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

/*------------------------------------
 .sol
------------------------------------*/
.sol {
  width: 100%;
  height: auto;
  padding: 150px 0;
  background: #fff;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.sol::before {
  content: "";
  position: absolute;
  display: block;
  left: 0;
  top: 0;
  border-width: 8vw 50vw 0;
  border-style: solid;
  border-color: #f7f7f7 transparent transparent;
}

.sol__body {
  width: 90%;
  max-width: 1024px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 1;
}

.sol__img {
  width: 220px;
  height: auto;
  position: relative;
  z-index: 1;
}

.sol__inner {
  width: calc(100% - 230px);
  height: auto;
}

.sol__lead {
  width: calc(100% + 180px);
  height: auto;
  padding: 10px 20px 10px 180px;
  box-sizing: border-box;
  font-size: 2.4rem;
  font-weight: bold;
  text-align: center;
  background: linear-gradient(to right, rgba(151, 207, 223, .2), rgba(186, 188, 215, .2), rgba(200, 156, 192, .2), rgba(243, 204, 136, .2));
  margin-bottom: 20px;
  margin-left: -180px;
}

.sol__lead>p br {
  display: none;
}

.sol__inner>p {
  font-size: 2rem;
  text-align: center;
}

.sol__sp {
  display: none;
}

/*------------------------------------
 .about
------------------------------------*/
.about {
  width: 100%;
  height: auto;
  padding: 0 0 100px 0;
  position: relative;
}

.about::after {
  display: block;
  content: '';
  width: 87.5%;
  height: 85%;
  background: #F7F7F7;
  position: absolute;
  top: 0;
  right: 0;
  background: url('../img/top/bg.png');
  background-size: cover;
  background-position: center;
  opacity: .2;
  z-index: -1;
}

.about__body {
  width: 90%;
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.ttl {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  position: relative;
  line-height: 1.6;
  margin-bottom: 80px;
}

.ttl>h2 {
  font-size: 1.4rem;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 1;
}

.ttl>h2::before,
.ttl>h2::after {
  display: block;
  content: '';
  width: 10px;
  height: 10px;
  background: url('../img/top/icon-circle.svg');
  background-size: cover;
}

.ttl>h2::before {
  margin-right: 12px;
}

.ttl>h2::after {
  margin-left: 12px;
}

.ttl>p {
  font-size: 6rem;
  font-family: "Playfair Display", serif;
  font-optical-sizing: auto;
  font-weight: 500;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 1;
}

.ttl__bg {
  width: 25%;
  height: auto;
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.about__col {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 80px;
}

.ba .about__col {
  margin-bottom: 0;
}

.about__item {
  width: 31%;
  height: auto;
  display: flex;
  flex-direction: column;
}

.about__item:nth-of-type(n+4) {
  margin-top: 60px;
}

.about__item:nth-of-type(4) {
  margin-left: 17.25%;
}

.about__item:nth-of-type(5) {
  margin-right: 17.25%;
}

.about__img {
  width: 100%;
  height: auto;
  margin-bottom: 20px;
  background: #eee;
  position: relative;
}

.about__img::after {
  display: block;
  content: '';
  width: 100%;
  height: 0;
  padding-top: 100%;
}

.about__img>img {
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.about__img-tab {
  width: 30%;
  height: auto;
  position: absolute;
  bottom: 0;
  left: 0;
}

.about__inner {
  width: 100%;
  height: auto;
  padding: 10px 20px 20px 30px;
  box-sizing: border-box;
  line-height: 1.8;
  position: relative;
}

.about__inner::before {
  display: block;
  content: '';
  width: 2px;
  height: 100%;
  background: linear-gradient(to bottom, rgba(151, 207, 223, .6), rgba(186, 188, 215, .6), rgba(200, 156, 192, .6), rgba(243, 204, 136, .6));
  position: absolute;
  top: 50%;
  left: 10px;
  transform: translate(0, -50%)
}

.link__btn {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
  position: relative;
  z-index: 2;
}

.shine-anima::before {
  position: absolute;
  content: '';
  display: inline-block;
  top: -180px;
  left: 0;
  width: 30px;
  height: 100%;
  background-color: #fff;
  opacity: .7;
  animation: light 3s ease-in-out infinite;
}

@keyframes light {
  0% {
    transform: scale(0) rotate(45deg);
    opacity: 0;
  }

  80% {
    transform: scale(0) rotate(45deg);
    opacity: .5;
  }

  81% {
    transform: scale(4) rotate(45deg);
    opacity: .8;
  }

  100% {
    transform: scale(50) rotate(45deg);
    opacity: 0;
  }
}

.link__btn>p {
  display: inline-flex;
  align-items: center;
  text-align: center;
  position: relative;
  margin-bottom: 10px;
  font-weight: 700;
  line-height: 1.6;
  font-size: 2rem;
}

.link__btn>p::before,
.link__btn>p::after {
  content: '';
  background: #ccc;
  width: 2px;
  height: 40px;
  border-radius: 50vh;
}

.link__btn>p::before {
  transform: rotate(-30deg);
  margin-right: 20px;
}

.link__btn>p::after {
  transform: rotate(30deg);
  margin-left: 20px;
}

.link__btn>a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 440px;
  height: 100px;
  background: linear-gradient(to right, #06C755, #008B8B);
  color: #fff;
  border-radius: 20px;
}

.link__btn>a>img {
  width: 60px;
  margin-right: 14px;
}

.link__btn-txt {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  line-height: 1.6;
}

.link__btn-txt-main {
  font-size: 1.8rem;
}

.link__btn-txt-sub {
  font-size: 1.2rem;
}

/*------------------------------------
 .ba
------------------------------------*/
.ba {
  width: 100%;
  height: auto;
  padding: 100px 0;
  background: #F7F7F7;
  position: relative;
  overflow: hidden;
}

.ba__txt_bg {
  width: auto;
  height: 90%;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(0, -50%);
}

.ba__txt_bg>img {
  width: auto;
  height: 100%;
}

.ba__body {
  width: 90%;
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}


.ba-tab {
  width: 80px;
  height: 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: linear-gradient(45deg, rgba(0, 0, 0, .8), #ccc);
  font-size: 1.4rem;
  line-height: 1.2;
  position: absolute;
  left: -20px;
  top: -20px;
  border-radius: 50vh;
  color: #fff;
}

.ba-tab>span {
  font-size: 2.4rem;
  border-bottom: 1px solid #ccc;
  padding: 0 10px;
  margin-bottom: 5px;
}

/*------------------------------------
 .review
------------------------------------*/
.review {
  padding: 100px 0;
}

.review-col {
  display: flex;
  justify-content: space-between;
  margin-bottom: 80px;
}

.review-item {
  width: 32%;
  display: flex;
  flex-direction: column;
  padding: 40px 20px 20px 20px;
  box-sizing: border-box;
  background: #f2f2f2;
  position: relative;
}

.review-item__tab {
  position: absolute;
  padding: 2.5px 14px;
  position: absolute;
  top: 0;
  left: 0;
  font-size: 1.2rem;
  background: linear-gradient(45deg, rgba(151, 207, 223, .24), rgba(186, 188, 215, .24), rgba(200, 156, 192, .24), rgba(243, 204, 136, .24));
}

.review-item__ttl {
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding-bottom: 10px;
  margin-bottom: 10px;
  border-bottom: 1px solid #ccc;
}

.review-item__ttl>p {
  font-size: 2.4rem;
  font-weight: 700;
}

.review-item__ttl>img {
  width: 80px;
  flex-shrink: 0;
}

/*------------------------------------
 menu
------------------------------------*/
.menu {
  padding: 100px 0;
  background: #F7F7F7;
  position: relative;
  overflow: hidden;
}

.menu .l-inner {
  width: 70%;
  margin: 0 auto;
}

.menu-inner {
  width: 100%;
}

.menu-inner--first {
  margin-bottom: 60px;
}

.menu-inner__ttl {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 40px;
}

.menu-inner__ttl>h3 {
  font-size: 3rem;
}

.menu-inner__ttl>h3>span {
  background: linear-gradient(to bottom, transparent 0%, transparent 85%, #808080 85%, #808080 100%);
}

.menu-box {
  width: 100%;
  padding: 20px 40px;
  box-sizing: border-box;
  background: #fff;
  position: relative;
}

.menu-box__tab {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: auto;
  height: 30px;
  text-align: center;
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translate(-50%, 0);
  z-index: 1;
  padding: 5px 20px;
  background: linear-gradient(45deg, #736357, #c7b299, #998675, #c7b299);
  color: #fff;
  font-size: 1.8rem;
  border-radius: 50vh;
}

.menu-box:not(.menu-box--first):not(:last-of-type) {
  margin-bottom: 60px;
}

.menu-list {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}

.menu-list--first {
  border-bottom: 1px solid #ccc;
  margin-bottom: 10px;
}

.menu-list>dt {
  width: calc(100% - 150px);
  font-size: 2.6rem;
  line-height: 1.6;
}

.menu-list__ttl {
  font-size: 1.6rem;
  margin-left: 2.5px;
}

.menu-list--sub {
  font-size: 1.4rem;
  color: red;
}

.menu-list>dd {
  width: 150px;
  text-align: right;
  flex-shrink: 0;
  line-height: 1.6;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.menu-list--num {
  font-size: 3rem;
  font-weight: 700;
}

/*------------------------------------
flow
------------------------------------*/
.flow {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.flow-lead {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 40px;
}

.flow-top {
  width: 100%;
  margin: 0 auto 60px auto;
  padding: 80px 80px 40px 80px;
  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
  background: #f7f7f7;
  position: relative;
}

.flow-top::before {
  display: block;
  content: '';
  width: 140px;
  height: 140px;
  background: linear-gradient(to right, rgba(151, 207, 223, .9), rgba(186, 188, 215, .9), rgba(200, 156, 192, .9), rgba(243, 204, 136, .9));
  position: absolute;
  top: -70px;
  left: -70px;
  z-index: -1;
  opacity: .2;
}

.flow-top__item {
  width: 49.5%;
  display: flex;
  flex-direction: column;
  position: relative;
}

.flow-top__item-tab {
  width: 80px;
  height: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(45deg, rgba(151, 207, 223, .9), rgba(186, 188, 215, .9), rgba(200, 156, 192, .9), rgba(243, 204, 136, .9));
  color: #fff;
  border-radius: 50vh;
  font-size: 4rem;
  line-height: 1;
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translate(-50%, 0);
}

.flow-top__item-img {
  margin-bottom: 20px;
}

.flow-top__item-inner-lead {
  font-size: 2rem;
  text-align: center;
  font-weight: 700;
  margin-bottom: 10px;
}

.flow-top__item-inner-sub {
  font-size: 1.4rem;
  color: red;
  text-align: center;
}

.flow-btm {
  width: 100%;
  position: relative;
}

.flow-btm__lead {
  width: 80%;
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 10%;
  left: 70%;
}

.flow-btm__lead>p {
  font-size: 2.4rem;
  font-weight: 700;
}

.flow-btm__lead--en {
  font-size: 1.6rem;
  margin-bottom: 14px;
}

.flow-btm__line {
  display: block;
  width: 100vw;
  height: auto;
  border-top: 1px solid #ccc;
  position: absolute;
  bottom: 0;
  left: 0;
}

.flow-chart {
  margin-bottom: 80px;
}

.flow-chart__img {
  width: 65%;
}

.flow-chart__img--right {
  margin-left: auto;
  margin-top: 80px;
}

/*------------------------------------
 .faq
------------------------------------*/
.faq {
  display: block;
  width: 100%;
  padding: 80px 0 100px 0;
  background: #f2f2f2;
  position: relative;
}

.faq-list-wrap {
  width: 80%;
  height: auto;
  margin: 0 auto;
}

#qa-forth {
  margin-bottom: 0;
}

.faq-list-wrap-title {
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.faq-list-wrap-title>h3 {
  display: inline-flex;
  flex-direction: column-reverse;
  line-height: 1.6;
}

.faq-list-wrap-title>h3>span {
  font-size: 1rem;
  font-weight: normal;
  color: #969867;
}

.faq-list-wrap-title>img {
  width: 56px;
  margin-right: 8px;
}

.faq-list {
  width: 100%;
  height: auto;
}

.faq-category {
  width: 100%;
  height: auto;
  margin-bottom: 2px;
}

.faq-category-title {
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  cursor: pointer;
  background: #fff;
  box-sizing: border-box;
  position: relative;
}

.faq-category-title::after {
  content: "\2b";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  margin-left: auto;
  display: flex;
  align-items: center;
  padding: 20px 10px;
  box-sizing: border-box;
  background: #1a1a1a;
  color: #fff;
}

.faq-category-title.active::after {
  content: "\f068";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  margin-left: auto;
  display: flex;
  align-items: center;
  padding: 20px 10px;
  box-sizing: border-box;
  background: #545454;
  color: #fff;
}

.faq-titleText {
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  font-weight: bold;
  padding: 0 10px 0 20px;
  box-sizing: border-box;
  position: relative;
}

.faq-titleText img {
  display: block;
  width: 30px;
  height: auto;
  margin-right: 10px;
}

.faq-inner {
  display: none;
  width: 100%;
  height: auto;
  padding: 20px;
  box-sizing: border-box;
}

.faq-answer {
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  color: #BC708B;
  font-weight: bold;
  border-bottom: 1px solid #ccc;
  font-size: 1.6rem;
  padding-bottom: 10px;
  margin-bottom: 10px;
  line-height: 1.6;
}

.faq-answer img {
  display: block;
  width: 30px;
  height: auto;
  margin-right: 10px;
}

.first-flow {
  width: 100%;
  height: auto;
  display: flex;
  flex-wrap: wrap;
  list-style: none;
}

.first-flow>li {
  color: #72CCA2;
  margin-top: 10px;
}

.first-flow>li>span {
  padding: 5px 20px;
  border: 1px solid #72CCA2;
  box-sizing: border-box;
}

.first-flow>li:not(:last-child)::after {
  content: "\f0da";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  margin: 0 14px;
}

.faq-innerText>ol {
  display: inline-block;
  list-style: none;
  padding: 14px 20px;
  background: #F3F6F8;
  font-weight: 700;
  margin-bottom: 10px;
}

.faq-innerText>ol>li>span {
  margin-right: 3px;
}



/*------------------------------------
 .company
------------------------------------*/
.company {
  width: 100%;
  height: auto;
  padding: 80px 0 0 0;
  position: relative;
}

.company__body {
  width: 90%;
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.company .ttl {
  margin-bottom: 50px;
}

.company__col {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 80px;
}

.company__info {
  width: 47.5%;
  height: auto;
}

.company__info>dl {
  width: 100%;
  height: auto;
}

.company__info>dl>dt {
  width: 100%;
  height: auto;
  font-weight: bold;
  border-bottom: 1px solid #ccc;
  padding-bottom: 5px;
  margin-bottom: 10px;
  position: relative;
}

.company__info>dl>dt::before {
  display: block;
  content: '';
  width: 15%;
  height: 3px;
  background: #9f9f9f;
  position: absolute;
  bottom: -1.5px;
  left: 0;
}

.company__info>dl>dd {
  padding-bottom: 15px;
}

.company__img {
  width: 47.5%;
  height: auto;
  position: relative;
}

.company__img::after {
  display: block;
  content: '';
  width: 100%;
  height: 0;
  padding-top: 100%;
}

.swiper2 picture,
.swiper2 picture>img {
  height: 100% !important;
  object-fit: cover !important;
  object-position: left bottom !important;
}

#map {
  width: 100%;
  height: auto;
  position: relative;
}

#map::after {
  display: block;
  content: '';
  width: 100%;
  height: 0;
  padding-top: 56.25%;
}

#map iframe {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  filter: grayscale(1);
}

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

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

  /*--- case ---*/
  .case__list>dl>dd br {
    display: none;
  }

  /*--- staff ---*/
  .staff__inner {
    padding: 40px 30px 30px 30px;
  }
}

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

  /*--- case ---*/
  .case__body {
    width: 65%;
  }

  .case__col {
    flex-direction: column;
  }

  .case__img {
    width: 100%;
  }

  .case__img>img {
    width: 95%;
    margin-left: auto;
  }

  .case__inner {
    width: 100%;
  }

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

  /*---flow---*/
  .flow-top {
    padding: 80px 40px 40px 40px;
  }

  /*--- company ---*/
  .company__body {
    width: 70%;
  }

  .company__col {
    flex-direction: column-reverse;
  }

  .company__img {
    width: 100%;
    margin-bottom: 40px;
  }

  .company__info {
    width: 100%;
  }
}

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

  /*--- case ---*/
  .case__body {
    width: 70%;
  }

  /*--- sol ---*/
  .sol__inner>p br {
    display: none;
  }

  /*--- staff ---*/
  .staff__body {
    width: 70%;
  }

  /*--- greeting ---*/
  .greeting__body {
    width: 70%;
  }

  /*--- company ---*/
  .company__body {
    width: 75%;
  }
}

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

  /*--- case ---*/
  .case__body {
    width: 75%;
  }

  /*--- about ---*/
  .about::after {
    height: 88%;
  }

  .about__item {
    width: 48%;
  }

  .about__item:nth-of-type(4) {
    margin-left: initial;
  }

  .about__item:nth-of-type(n+3) {
    margin-top: 40px;
  }

  .about__item:nth-of-type(5) {
    margin: 40px auto 0 auto;
  }

  .bg-sep {
    right: -47.5%;
  }

  /*--- review ---*/
  .review-col {
    flex-wrap: wrap;
  }

  .review-item {
    width: 49%;
  }

  .review-item:nth-of-type(3) {
    margin: 20px auto 0 auto;
  }

  /*---flow---*/
  .flow-top {
    padding: 80px 20px 40px 20px;
  }

  .flow-top__item-inner-lead {
    font-size: 1.6rem;
  }

  .flow-top__item-tab {
    width: 68px;
    height: 68px;
  }

  .faq-list-wrap {
    width: 100%;
  }


  /*--- company ---*/
  .company__body {
    width: 80%;
  }
}

@media screen and (max-width:680px) {
  .ttl>p {
    font-size: 5rem;
  }

  /*--- case ---*/
  .case__body {
    width: 80%;
  }

  .case__list>ul>li {
    line-height: 1.6;
  }

  /*--- sol ---*/
  .sol {
    padding: 80px 0;
  }

  .sol::before {
    border-width: 12.5vw 50vw 0;
  }

  .sol__img {
    width: 160px;
  }

  .sol__inner {
    width: calc(100% - 180px);
    margin-top: 60px;
  }

  .sol__pc {
    display: none;
  }

  .sol__sp {
    display: block;
    width: 85%;
    margin: 20px auto 30px auto;
    font-size: 1.8rem;
    text-align: center;
  }

  /*--- about ---*/
  .about {
    padding-top: 60px;
  }

  .sol__sp>p br {
    display: none;
  }

  /*---menu---*/
  .menu-box {
    padding: 40px 40px 30px 40px;
  }

  .menu-list {
    justify-content: space-between;
  }

  .menu-list>dt {
    font-size: 2rem;
    width: auto;
  }

  .menu-list--num {
    font-size: 2.4rem;
  }

  .menu-list>dd {
    display: block;
    width: auto;
  }

  /*---flow---*/
  .flow-btm__lead {
    width: 100%;
    position: relative;
    top: initial;
    left: initial;
    margin-bottom: 40px;
  }

  .flow-top__item-inner-lead br {
    display: none;
  }

  .flow-top__item-tab {
    width: 56px;
    height: 56px;
    font-size: 3rem;
    top: -28px;
  }

  .flow-chart__img {
    width: 100%;
  }

  /*--- company ---*/
  .company__body {
    width: 85%;
  }

  #map::after {
    padding-top: 100%;
  }
}

@media screen and (max-width:480px) {
  .ttl {
    margin-bottom: 30px;
  }

  .ttl>p {
    font-size: 4rem;
  }

  .ttl>h2 {
    font-weight: normal;
  }

  .ttl__bg {
    width: 45%;
    position: absolute;
    top: 20%;
  }

  .p-lead {
    font-size: 1.6rem;
    margin-bottom: 30px;
  }

  .p-lead::after {
    margin-left: 10px;
  }

  .link__btn>p {
    font-size: 1.6rem;
  }

  .about .link__btn>p {
    font-size: 1.4rem;
  }

  .about .link__btn>p br {
    display: none;
  }

  /*--- mv ---*/
  .swiper1 .slide-img>img,
  .swiper1 .slide-img>picture>img {
    height: 100%;
    object-fit: cover;
    object-position: top center;
    position: relative;
  }

  .mv__img {
    top: 60px;
    height: 100%;
  }

  .mv__lead {
    mix-blend-mode: difference;
  }

  .mv__inner {
    top: 67.5%;
  }

  .mv__lead>h2 {
    width: 75%;
  }

  .mv__txt {
    font-size: 1.6rem;
  }

  .mv__txt br:nth-of-type(2n+1) {
    display: block;
  }

  .mv__list>li {
    font-size: 1.4rem;
    color: #fff;
    padding: 10px 18px;
  }

  .mv__list>li:not(:last-of-type) {
    margin-right: 5px;
  }

  .mv__txt2 {
    font-size: 1.4rem;
  }

  .mv__cta {
    width: 140px;
    height: 140px;
    top: calc(100% - 50px);
    left: calc(12.5% - 60px);
  }

  .mv__cta>a {
    width: 90px;
    height: 90px;
  }

  .mv__cta-en {
    font-size: 1.6rem;
  }

  /*--- case ---*/
  .case {
    padding: 100px 0 60px 0;
  }

  .case__body {
    width: 85%;
  }

  .case__img::before {
    width: 100px;
    height: 100px;
    bottom: -50px;
    left: -50px;
  }

  .case__img-txt {
    font-size: 2.2rem;
  }

  .case__inner {
    margin-top: 40px;
  }

  .case__lead {
    display: block;
    padding: 20px;
    margin-bottom: 20px;
    margin-left: auto;
    margin-right: auto;
  }

  .case__lead>p {
    font-size: 1.8rem;
    text-align: center;
  }

  .case__list>ul>li {
    font-size: 1.6rem;
  }

  .contents-cols-box-arrow {
    top: 97.5%;
  }

  /*---ba---*/
  .ba {
    padding: 80px 0;
  }

  .ba-tab {
    width: 68px;
    height: 68px;
    font-size: 1.2rem;
    line-height: 1.2;
    position: absolute;
    left: -14px;
    top: -20px;
    border-radius: 50vh;
    color: #fff;
  }

  /*--- sol ---*/
  .sol__img {
    width: 120px;
  }

  .sol__inner {
    width: calc(100% - 130px);
    margin-top: 40px;
  }

  .sol__lead {
    font-size: 1.5rem;
    line-height: 1.6;
  }

  .sol__sp {
    width: 90%;
    font-size: 1.4rem;
  }

  .sol__sp>p br {
    display: none;
  }

  /*--- about ---*/
  .about {
    padding: 60px 0 80px 0;
  }

  .about::after {
    width: 88%;
    height: 91%;
  }

  .about__body {
    width: 85%;
  }

  .about__item {
    width: 100%;
  }

  .about__item:nth-of-type(n+2) {
    margin-top: 30px;
  }

  .link__btn {
    width: 85%;
    margin: 0 auto;
  }

  .link__btn>a {
    width: 100%;
  }

  .bg-sep {
    height: 13%;
    position: absolute;
    top: 87%;
    right: -35.5%;
  }

  /*--- menu ---*/
  .menu {
    padding: 80px 0;
  }

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

  .menu-inner__ttl {
    margin-bottom: 30px;
  }

  .menu-inner__ttl>h3 {
    font-size: 2.4rem;
  }

  .menu-box {
    padding: 40px 14px 20px 14px;
  }

  .menu-list>dt {
    font-size: 1.6rem;
    font-weight: 700;
  }

  .menu-list>dd {
    margin-left: auto;
  }

  .menu-list--num {
    font-size: 1.8rem;
  }

  .menu-box__tab {
    font-size: 1.4rem;
    white-space: none;
  }

  .menu-list__ttl {
    font-size: 1.3rem;
    font-weight: normal;
  }

  .menu-list--sub {
    font-size: 1.2rem;
    font-weight: normal;
  }

  /*--- review ---*/
  .review {
    padding: 80px 0;
  }

  .review-col {
    flex-direction: column;
  }

  .review-item {
    width: 100%;
  }

  .review-item:nth-of-type(n+2) {
    margin: 20px 0 0 0;
  }

  /*---faq---*/
  .flow {
    padding: 80px 0;
  }

  /*---flow---*/
  .flow-lead {
    font-size: 1.6rem;
    margin-bottom: 30px;
  }

  .flow-top {
    flex-direction: column;
  }

  .flow-top__item {
    width: 100%;
  }

  .flow-top__item:first-of-type {
    margin-bottom: 60px;
  }

  .flow-chart {
    margin-bottom: 40px;
  }

  .flow-chart__img--right {
    margin-top: 30px;
  }

  .flow .link__btn {
    width: 100%;
  }

  /*---faq---*/
  .faq-titleText {
    padding-left: 8px;
    line-height: 1.6;
  }

  .faq-titleText img,
  .faq-answer img {
    width: 24px;
  }

  .faq-answer {
    font-size: 1.4rem;
  }

  /*--- company ---*/
  .company .ttl {
    margin-bottom: 20px;
  }

  .company__img {
    position: relative;
  }

  .company__img::after {
    display: block;
    content: '';
    width: 100%;
    height: 0;
    padding-top: 100%;
  }

  .company__img picture {
    position: absolute;
    top: 0;
    left: 0;
  }
}