@charset "UTF-8";

.ui--sp {
  display: none;
}

img {
  display: block;
  width: 100%;
}

.font-pink {
  font-weight: bold;
  color: #D82862;
}

.font-red {
  font-weight: bold;
  color: #f82728;
}

.font--purple {
  font-weight: 700;
  color: #7E59D1;
}

.link-btn__wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 60px;
}

.link-btn__lead {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.link-btn__lead>p {
  display: flex;
  justify-content: center;
  align-items: center;
}

.link-btn__lead>p::before {
  display: block;
  content: '';
  width: 40px;
  height: 40px;
  background: url('../../../icon/logo-nyancos.svg');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  margin-right: 5px;
  margin-bottom: 3px;
}

.link-btn {
  width: 100%;
  display: flex;
  justify-content: center;
}

.link-btn>a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 49%;
  max-width: 440px;
  height: 90px;
  font-size: 2rem;
  color: #fff;
  border-radius: 8px;
  font-weight: 700;
}

.link-btn>a:not(:last-of-type) {
  margin-right: 2%;
}

.link-btn--mail {
  background: #00a878;
  color: #fff;
  ;
}

.link-btn--tel {
  background: #d77c5c;
}

.link-btn>a>img {
  display: block;
  width: 44px;
  margin-right: 8px;
  flex-shrink: 0;
}

.link-btn__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1.4;
}

.link-btn__sub {
  font-size: 1.2rem;
  font-weight: normal;
}

#heading {
  width: 90%;
  max-width: 1280px;
  height: auto;
  margin: 0 auto;
  position: absolute;
  top: 102.5vh;
  left: 50%;
  transform: translate(-50%, 0);
  z-index: 2;
}

#heading h1 {
  width: 100%;
  font-size: 1.4rem;
  text-align: right;
}

#heading h1 br {
  display: none;
}

.iPad #heading {
  width: 85%;
  top: 60px;
}

.iPad #heading h1 {
  text-align: left;
}

main {
  max-width: 2560px;
  margin: 0 auto;
  background: linear-gradient(top bottom, #fff, #f3f5f5);
  overflow: hidden;
}

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

.ttl {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 50px;
}

.ttl>h2 {
  font-size: 1.6rem;
  text-align: center;
  order: 2;
}

.ttl>img {
  width: auto;
  height: 100px;
  order: 1;
  margin-bottom: 30px;
}

nav>ul li a {
  color: #fff;
}

.scroll nav>ul li a {
  color: #304342;
}

.is-open nav>ul li a {
  color: #fff;
}

/*--------------------------------------------------
 fv
--------------------------------------------------*/
#fv {
  width: 100%;
  height: 100vh;
  max-width: 1920px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.fv-content {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.fv-img {
  width: 100%;
  height: auto;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  left: 0;
}

.fv-img>picture,
.fv-img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.fv-inner {
  width: 37.5%;
  height: auto;
  position: absolute;
  top: 50%;
  left: 5%;
  transform: translate(0, -50%);
  z-index: 1;
  color: #fff;
}

.fv-ttl {
  position: relative;
  margin-bottom: 14px;
}

.fv-ttl>h2 {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 6.4rem;
  line-height: 1.4;
  margin-bottom: 20px;
  text-align: center;
}

.fv-ttl>h2>span {
  font-size: 2rem;
  line-height: 2;
  padding: 4px 30px;
  margin-bottom: 10px;
  text-align: center;
  position: relative;
}

.fv-ttl>h2>span::after {
  display: block;
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: skewX(-15deg) translate(-50%, -50%);
  background: linear-gradient(45deg, #a18cd1, #ace0f9);
  opacity: .9;
  z-index: -1;
}


.fv-list {
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  font-size: 1.8rem;
  font-weight: bold;
}

.fv-list>ul {
  width: 100%;
  display: flex;
  justify-content: space-between;
  list-style: none;
}

.fv-list>ul>li {
  width: 32%;
  height: auto;
  padding: 7px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  position: relative;
}

.fv-list>ul>li::after {
  display: block;
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 45%;
  transform: skewX(-15deg) translate(-50%, -50%);
  background: linear-gradient(45deg, #00a1fd, #00db67);
  opacity: .7;
  z-index: -1;
}

.fv-lead {
  width: 100%;
  font-size: 1.8rem;
  margin-bottom: 20px;
}

.fv-lead>p {
  text-align: center;
}

.fv-col {
  width: 75%;
  height: auto;
  display: flex;
  justify-content: space-between;
  list-style: none;
  margin: 0 auto;
}

.fv-col>img {
  width: 47%;
  height: auto;
}

.fv-img--sub {
  width: 45%;
  position: absolute;
  top: 50%;
  left: 47.5%;
  transform: translate(0, -50%);
  z-index: 1;
}

.fv-img--sub-txt {
  width: 45%;
  position: absolute;
  top: 65%;
  right: 0;
  z-index: 1;
}

.fv-loopWrap {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
  padding: 10px 0;
  border-top: 1px solid #fff;
}

.fv-loop {
  display: flex;
  animation: loop-text 50s linear infinite;
}

.double-content {
  display: inline-block;
  font-size: 1.6rem;
  white-space: nowrap;
  color: #ccc;
}

.double-content>span {
  margin-right: 10px;
}

@keyframes loop-text {
  0% {
    transform: translateX(0%);
  }

  100% {
    transform: translateX(-50%);
  }
}

/*--------------------------------------------------
 case
--------------------------------------------------*/
.case {
  width: 100%;
  height: auto;
  position: relative;
  padding: 150px 0 100px 0;
  z-index: 1;
}

.case .l-inner {
  max-width: 1200px;
}

.case-ttl {
  display: flex;
  flex-direction: row;
  justify-content: center;
}

.case-ttl__img {
  width: 80px;
  position: relative;
  margin-right: 20px;
}

.case-ttl__img__bubble {
  width: 30%;
  position: absolute;
  top: 5%;
  right: -10%;
  animation: fuwafuwa 3s ease-in-out infinite alternate;
  transition: 1.5s ease-in-out;
}

@keyframes fuwafuwa {
  0% {
    transform: rotate(-3deg) scale(1);
  }

  50% {
    transform: rotate(0deg) scale(1.05);
  }

  100% {
    transform: rotate(3deg) scale(1);
  }
}

.case-ttl>h2 {
  font-size: 2.4rem;
}


.case-cols {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 60px;
}

.case-list {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  position: relative;
}

.case-list__item {
  width: 49%;
  padding: 30px 20px 40px 20px;
  box-sizing: border-box;
  background: #F0F5F7;
  font-weight: bold;
  border-radius: 10px;
  font-size: 1.5rem;
  position: relative;
  list-style: none;
}

.case-list__item:nth-of-type(n+3) {
  margin-top: 24px;
}

.case-list__item>p {
  display: flex;
  align-items: center;
  line-height: 1.5;
  font-size: 1.8rem;
}

.case-list__item>p::before {
  display: block;
  font-family: "Font Awesome 6 Free";
  content: "\f14a";
  font-size: 4rem;
  margin-right: 10px;
  flex-shrink: 0;
}

.case-tab {
  width: 60px;
  height: auto;
  position: absolute;
  top: -5px;
  right: -10px;
  transform: rotate(-10deg);
  z-index: 1;
}

.case-cols-img {
  width: 25%;
  padding-top: 60px;
  position: relative;
}

.case-btm {
  width: 90%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.case-btm .works-lead-img {
  width: 160px;
}

.point .works-lead-img>img {
  border-radius: 50vh;
}

.case-btm__inner {
  width: calc(100% - 200px);
  font-size: 1.6rem;
  background: #F7F8F9;
  padding: 30px;
  box-sizing: border-box;
  border-radius: 10px;
  position: relative;
}

.point .case-btm__inner {
  background: #fff;
}

.case-btm__inner::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -28px;
  transform: translate(0, -50%);
  border: 15px solid transparent;
  border-right: 15px solid #F7F8F9;
}

.point .case-btm__inner::before {
  border-right: 15px solid #fff;
}



/*--------------------------------------------------
 point
--------------------------------------------------*/
.point {
  width: 100%;
  height: auto;
  background: #f0f5f7;
  position: relative;
  padding: 170px 0 100px 0;
}

.point::before {
  content: "";
  position: absolute;
  height: 120px;
  width: 100%;
  clip-path: polygon(0 0, 50% 100%, 100% 0);
  background-color: #fff;
  left: 0;
  top: 0px;
}

.point-top {
  width: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  text-align: center;
  font-weight: 700;
  line-height: 1.8;
  white-space: nowrap;
  margin-bottom: 20px;
  position: relative;
}

.point-top>p {
  position: relative;
  padding: 10px 20px;
}

.ttl--point>h2 {
  border: 1px solid #1a1a1a;
  padding: 5px 30px;
  border-radius: 50vh;
}


.point-lead {
  font-size: 2.4rem;
  text-align: center;
  font-weight: 700;
  margin-bottom: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.point-lead__img {
  width: 80px;
}

.point-list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

.point-item {
  width: 49.5%;
  display: flex;
  flex-direction: column;
  padding: 40px;
  box-sizing: border-box;
  background: #fff;
  border-radius: 20px;
}

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

.point-item__img {
  margin-bottom: 20px;
}

.point-item__img>img {
  border-radius: 20px;
}

.point-item__lead {
  display: flex;
  align-items: center;
  font-size: 2.2rem;
  font-weight: 700;
  padding-left: 20px;
  margin-bottom: 14px;
  box-sizing: border-box;
  position: relative;
}

.point-item__lead>span {
  font-size: 1.8rem;
  padding: 0 10px;
  margin-right: 8px;
  background: #f0f5f7;
}

.point-item__lead::before {
  display: block;
  content: '';
  width: 6px;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 0;
  background: linear-gradient(to bottom, #ace0f9 0%, #ace0f9 50%, #a18cd1 50%, #a18cd1 100%);
  transform: translate(0, -50%);
}

.point-item__txt {
  font-size: 1.8rem;
}

/*--------------------------------------------------
 service
--------------------------------------------------*/
#service {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  padding: 100px 0;
  background: #f0f5f7;
}

.service {
  width: 90%;
  max-width: 1024px;
  height: auto;
  margin: 0 auto 30px auto;
}

.service-title {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  margin: 0 auto 50px auto;
}

.service-title>img {
  max-width: 260px;
  margin-bottom: 10px;
}

.service-title>h2 {
  font-size: 1.6rem;
}

.service-title>h2>i {
  color: #20e2d7;
  margin-right: 5px;
}

.service-lead {
  width: 90%;
  height: auto;
  margin: 0 auto 30px auto;
  font-size: 1.6rem;
}

.service-cols {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 40px;
}

.service-category {
  width: 49%;
  height: auto;
  display: flex;
  flex-direction: column;
  padding: 50px 40px 70px 40px;
  box-sizing: border-box;
  background: #fff;
  position: relative;
  box-shadow: rgba(17, 17, 26, 0.05) 0px 1px 0px, rgba(17, 17, 26, 0.1) 0px 0px 8px;
  border-radius: 10px;
  overflow: hidden;
}

.service-category:nth-of-type(n+3) {
  margin-top: 50px;
}

.service-top {
  width: 100%;
  height: auto;
  margin-bottom: 14px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.ribbon1,
.ribbon2 {
  display: inline-block;
  position: absolute;
  left: -30px;
  top: 20px;
  width: 120px;
  text-align: center;
  font-size: 1rem;
  color: #fff;
  letter-spacing: 0.05em;
  color: #fff;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  border-top: dashed 1px rgba(255, 255, 255, 0.65);
  border-bottom: dashed 1px rgba(255, 255, 255, 0.65);
}

.ribbon1 {
  background: #07D5C0;
  box-shadow: 0 0 0 2px #07D5C0;
}

.ribbon2 {
  background: #FE7F9C;
  box-shadow: 0 0 0 2px #FE7F9C;
}

.service-top-inner {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  line-height: 1.6;
}

.service-top-inner>img {
  width: 80px;
}

.service-top-inner>h3 {
  display: flex;
  flex-direction: column-reverse;
  justify-content: center;
  align-items: center;
  font-size: 2.4rem;
}

.service-top-inner>h3>span {
  font-size: 1.2rem;
}

.service-name {
  font-size: 1.6rem;
}

.service-inner {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  margin: 0 auto;
  box-sizing: border-box;
  flex: 1;
  background: #fff;
}

.service-overview {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px 0;
  margin-bottom: 14px;
  background: #fafafa;
}

.service-overview p {
  font-size: 1.6rem;
  font-weight: bold;
  text-align: center;
  line-height: 1.8;
}

.service-detail {
  border: 1px solid;
}

.service-more {
  width: 90%;
  height: 48px;
  margin: auto auto 0 auto;
}

.service-more a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  border: 2px solid #1ABD98;
  color: #1ABD98;
  border-radius: 4px;
  font-weight: bold;
  transition: .4s;
}

.service-more i {
  margin-right: 5px;
}

.service-price {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.service-main {
  width: 95%;
  min-height: 114px;
  margin: 0 auto 10px auto;
}

.service-main>img {
  margin-bottom: 8px;
}

.service-main>p {
  font-size: 1.1rem;
  color: #545454;
  text-align: right;
}

.service-price>table {
  width: 100%;
  height: auto;
  border-collapse: collapse;
}

.service-price>table th,
.service-price>table td {
  width: 50%;
  height: auto;
  font-weight: normal;
  font-size: 1.4rem;
  padding: 10px;
  font-weight: bold;
  box-sizing: border-box;
  text-align: left;
  border-bottom: 1px solid #eee;
}

.service-price>table td>span {
  font-size: 2rem;
}

/*--------------------------------------------------
 work
--------------------------------------------------*/
#work {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  padding: 100px 0;
}

.work {
  width: 100%;
  height: auto;
  max-width: 1200px;
  margin: 0 auto;
}

.works-lead {
  width: 95%;
  margin: 0 auto 50px auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.works-lead-img {
  width: 200px;
  height: auto;
  filter: drop-shadow(2px 5px 4px rgba(209, 227, 235, 0.8));
}

.works-lead-img>img {
  animation: yurayura 3s linear infinite;
  transform-origin: center center;
}

@keyframes yurayura {

  0%,
  100% {
    transform: rotate(8deg);
  }

  50% {
    transform: rotate(-8deg);
  }
}

.works-lead-img>p {
  font-weight: bold;
  text-align: center;
  line-height: 1.3;
}

.works-lead-img>p>span {
  font-size: 1rem;
}

.works-lead-text {
  width: calc(95% - 200px);
  height: auto;
  background: #F7F8F9;
  padding: 30px 50px;
  box-sizing: border-box;
  border-radius: 6px;
  position: relative;
}

.works-lead-text::after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 55%;
  left: -60px;
  border: 20px solid transparent;
  border-right: 80px solid #F7F8F9;
  transform: translate(0, -50%) rotate(-25deg);
  z-index: -1;
}

.works-lead-text-lead {
  display: flex;
  align-items: center;
  margin-bottom: 14px;
}

.works-lead-text-lead-img {
  display: block;
  width: 160px;
  height: auto;
  margin-right: 30px;
}

.works-lead-text-lead-img>img:nth-of-type(2) {
  display: none;
}

.works-lead-text-lead>ul {
  display: flex;
  align-items: center;
  list-style: none;
}

.works-lead-text-lead>ul>li {
  width: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.works-lead-text-lead>ul>li:not(:last-child)::after {
  display: inline;
  content: '×';
  font-size: 2rem;
  font-weight: bold;
  margin: 0 5px;
}

.works-lead-text-lead>ul>li>div {
  width: 140px;
  height: auto;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  line-height: 1.4;
  font-size: 1.2rem;
  padding: 10px 20px;
  box-sizing: border-box;
  border: 1px solid #ccc;
  background: #fff;
}

.works-lead-text-lead>ul>li>div>span {
  font-size: 2rem;
  font-weight: bold;
}

.work-list {
  width: 100%;
  margin-bottom: 50px;
}

.work-list__item {
  width: 100%;
  display: flex;
  justify-content: center;
}

.work-list__item:not(:last-of-type) {
  margin-bottom: 60px;
}

.work-list__imageLink {
  display: block;
  width: 40%;
  margin-right: 5%;
}

.work-list__figure>img {
  width: 100%;
  margin-bottom: 10px;
}

.work__badge {
  font-size: 1rem;
  text-align: right;
}

.work-list__inner {
  width: 45%;
}

.work__heading {
  font-size: 2rem;
  padding-bottom: 10px;
  margin-bottom: 10px;
  border-bottom: 1px solid #ccc;
}

.work__meta {
  display: flex;
  align-items: center;
  font-size: 1.6rem;
  margin-bottom: 10px;
}

.work__meta>span {
  padding: 0 10px;
  margin-right: 10px;
  background: #eee;
  font-weight: 700;
}

.work__excerpt {
  font-size: 1.6rem;
  margin-bottom: 14px;
}

.work__comment {
  background: rgb(240, 245, 247);
  padding: 10px 20px;
  box-sizing: border-box;
  border-radius: 8px;
}

.work__comment>span {
  font-weight: 700;
  background: #fff;
  padding: 0 8px;
}

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

.works-category {
  width: 32%;
  height: auto;
  box-sizing: border-box;
}

.works-category:nth-of-type(n+4) {
  margin-top: 50px;
}

.works-img {
  width: 100%;
  height: auto;
  box-sizing: border-box;
  position: relative;
  margin-bottom: 10px;
  box-shadow: rgba(228, 233, 235, 0.8) 0px 5px 15px 0px;
}

.works-img a,
.works-img-eyecatch {
  display: block;
  width: 100%;
  height: auto;
  position: relative;
}

.works-img a::before,
.works-img-eyecatch::before {
  display: block;
  content: '';
  width: 100%;
  height: 0;
  padding-top: 84.07%;
}

.works-img a>img,
.works-img-eyecatch>img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.works-name {
  width: 100%;
  height: auto;
  text-align: center;
  font-size: 1.6rem;
  font-weight: bold;
}

.works-name a {
  border-bottom: 1px solid #ccc;
}

.works-name a span,
.works-name p span {
  font-size: 1.2rem;
  margin-left: 8px;
}

.works-detail {
  width: 100%;
  height: auto;
  text-align: center;
  font-size: 1rem;
  margin-bottom: 5px;
}

.works-detail>span {
  padding: 0 5px;
}

.works-category p {
  display: block;
  width: 100%;
  height: auto;
  text-align: center;
  font-size: 1.3rem;
  font-weight: normal;
  letter-spacing: .15em;
  padding: 5px 0;
}

.works-category a {
  text-decoration: none;
}

.works-category-taxonomy {
  width: 100%;
  height: auto;
}

.works-category-taxonomy>ul {
  width: 100%;
  height: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  list-style: none;
}

.works-category-taxonomy>ul>li {
  padding-right: 8px;
  line-height: 1.2;
  font-size: 1.2rem;
  color: #999;
}

.works-category-taxonomy>ul>li:nth-of-type(n+2) {
  padding-left: 8px;
}

.works-category-taxonomy li+li {
  border-left: 2px solid #ccc;
}

.works-seo {
  width: 100%;
  height: auto;
  line-height: 1.6;
  padding: 10px;
  box-sizing: border-box;
  letter-spacing: 0;
}

.works-results {
  margin-bottom: 50px;
  padding: 40px 20px;
  box-sizing: border-box;
  border: 1px solid #eee;
}

.works-results__ttl {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  line-height: 1.6;
  margin-bottom: 30px;
}

.works-results__ttl>span {
  font-size: 2.4rem;
  font-weight: 700;
  color: #ccc;
}

.works-results__ttl>h3 {
  font-size: 2.2rem;
  text-align: center;
  border-bottom: 4px solid #eee;
}

.works-results__list {
  display: flex;
  justify-content: space-around;
}

.works-results__list-img {
  width: 17.5%;
}

.works-results__list-inner {
  width: 75%;
}

.results-lead {
  padding-bottom: 14px;
  border-bottom: 1px solid #ccc;
  margin-bottom: 14px;
}

.results-lead>p {
  font-size: 1.8rem;
}

.case-label {
  display: flex;
  align-items: center;
  font-size: 3rem;
  font-weight: 700;
}

.case-label::after {
  display: block;
  content: '';
  flex: 1;
  border-top: 1px solid #ccc;
  margin-left: 10px;
}

.results-desc {
  font-size: 1.6rem;
  text-align: justify;
}

.works-link {
  width: 100%;
  max-width: 360px;
  height: auto;
  margin: 0 auto;
}

.works-link>a {
  width: 100%;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #A8D7ED;
  color: #fff;
  font-size: 1.6rem;
  font-weight: bold;
  box-shadow: 0px 6px 0px #90B8CB;
  border-radius: 5px;
}

/*----------------------------------------------------
  flow
----------------------------------------------------*/
#flow {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  padding: 100px 0;
  overflow: hidden;
}

.flow.l-inner {
  width: 90%;
  max-width: 1440px;
  margin: 0 auto;
}

.flow-lead__wrap {
  width: 75%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 50px auto;
}

.flow-lead__wrap>img {
  width: 160px;
  margin-right: 20px;
}

.flow-lead {
  font-size: 1.6rem;
  text-align: justify;
}

.flow-list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.flow-item {
  width: 25%;
  display: flex;
  flex-direction: column;
}

.flow-item__step {
  display: flex;
  align-items: center;
  color: #ffd700;
  font-size: 2.4rem;
  letter-spacing: 0;
  font-weight: 700;
}

.flow-item__step::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 5px solid #ffd700;
  margin-right: 8px;
}

.flow-item__step::after {
  content: "";
  flex: 1;
  border-top: 6px solid #FFF9DA;
  margin-left: 8px;
}

.flow-image {
  padding: 0 10px;
  box-sizing: border-box;
}

.flow-image>img {
  border-radius: 10px;
}

.flow-item h3 {
  margin: 10px 0 5px;
  font-size: 1.8rem;
  padding: 0 10px;
  box-sizing: border-box;

}

.flow-item p {
  font-size: 1.5rem;
  line-height: 1.6;
  padding: 0 10px;
  box-sizing: border-box;

}

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

.faq {
  width: 100%;
  height: auto;
  max-width: 1024px;
  margin: 0 auto;
}

.faq-title {
  width: 100%;
  height: auto;
  margin-bottom: 50px;
  display: flex;
  flex-direction: column-reverse;
  justify-content: center;
  align-items: center;
}

.faq-title>h2 {
  width: 100%;
  height: auto;
  font-size: 1.2rem;
  text-align: center;
}

.faq-title>p {
  font-size: 5rem;
  font-weight: bold;
}

.faq-lead {
  width: 100%;
  height: auto;
  margin-bottom: 50px;
}

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

.faq-category {
  width: 100%;
  height: auto;
  margin-bottom: 10px;
  box-shadow: rgba(228, 233, 235, 0.5) 0px 5px 15px 0px;
  font-size: 1.5rem;
}

.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: linear-gradient(45deg, #C0F2F0 0%, #FEE7EF 100%);
  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: linear-gradient(45deg, #C0F2F0 0%, #FEE7EF 100%);
  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-category-title::before {
  display: block;
  content: '';
  position: absolute;
  display: block;
  width: 6px;
  height: 100%;
  top: 0;
  left: 3px;
  background: linear-gradient(45deg, #C0F2F0 0%, #FEE7EF 100%);
  z-index: 1;
}

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

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

.faq-answer {
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  color: #F19CA6;
  border-bottom: 1px solid #ccc;
  padding-bottom: 10px;
  margin-bottom: 10px;
}

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

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

  /*---fv---*/
  .fv-ttl>h2 {
    font-size: 5rem;
  }
}

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

  /*---work---*/
  .work {
    width: 90%;
  }
}

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

  /*---case---*/
  .case-list__item {
    padding: 30px 20px;
  }

  .case-list__item:nth-of-type(1)>p br {
    display: none;
  }
}

@media screen and (max-width: 1100px) {
  .service {
    width: 85%;
  }

  .faq {
    width: 85%;
  }
}

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

  /*---fv---*/
  .fv-inner {
    width: 42.5%;
  }

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

  .fv-ttl>h2>span {
    font-size: 1.6rem;
  }

  .fv-list {
    font-size: 1.4rem;
  }

  .fv-lead {
    font-size: 1.6rem;
  }


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

  .case-list {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    flex-direction: column;
  }

  .case-list__item {
    width: 100%;
    padding: 30px 40px;
  }

  .case-list__item:nth-of-type(n+2) {
    margin-top: 24px;
  }

  .case-tab {
    width: 68px;
  }

  .case-list__item>p {
    font-size: 2.2rem;
  }


  /*---#point---*/
  .point-item__lead {
    flex-direction: column;
    align-items: flex-start;
  }

  /*---#works---*/
  .work__heading {
    font-size: 1.6rem;
  }

  .work__meta {
    font-size: 1.3rem;
  }

  .work__excerpt {
    font-size: 1.4rem;
  }

  .work__comment {
    font-size: 1.2rem;
  }

  .works-lead-text-lead>ul>li>div {
    padding: 0 14px;
  }

  .works-lead-text-lead-img {
    width: 100px;
  }

  .works-results__list {
    flex-direction: column;
    align-items: center;
  }

  /*---flow---*/
  .flow-lead__wrap {
    width: 95%;
  }

  .flow-item {
    width: 50%;
  }

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

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

  /*---#case---*/
  .case-list {
    width: 100%;
  }

  /*---#point---*/
  .point-item {
    width: 100%;
    padding: 60px;
  }

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

  .point-item__lead {
    font-size: 2.6rem;
  }

  /*---#service---*/
  .service-category {
    padding: 40px 30px 50px 30px;
  }

  /*---#works---*/
  .works-lead-img {
    width: 160px;
  }

  .works-lead-text {
    width: calc(95% - 160px);
    padding: 30px;
  }

  .works-lead-text>p {
    font-size: 1.3rem;
  }

  .work-list__item {
    flex-direction: column;
  }

  .work-list__imageLink {
    display: block;
    width: 100%;
    margin-right: 0;
    margin-bottom: 20px;
  }

  .work-list__inner {
    width: 100%;
  }

  .works-category {
    width: 48%;
  }

  .works-category:nth-of-type(n+3) {
    margin-top: 30px;
  }

  .works-results__list-inner {
    width: 90%;
  }
}

@media screen and (max-width:786px) {
  .link-btn {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .link-btn>a {
    width: 65%;
    max-width: initial;
    font-size: 2.4rem;
  }

  .link-btn>a:not(:last-of-type) {
    margin-right: 0;
    margin-bottom: 10px;
  }

  /*---heading---*/
  #heading {
    top: 122.5vh;
  }

  #heading>h1 {
    font-size: 1.4rem;
    font-weight: normal;
  }

  /*---fv---*/
  #fv {
    height: 120vh;
  }

  .fv-content {
    display: flex;
    flex-direction: column-reverse;
    justify-content: center;
    align-items: center;
  }

  .fv-inner,
  .fv-img--sub {
    position: relative;
    left: initial;
    top: initial;
    transform: initial;
  }

  .fv-img--sub {
    margin-bottom: 30px;
  }

  .fv-inner {
    width: 60%;
  }

  /*---#work---*/
  .works-lead {
    width: 100%;
  }

  .works-lead-img {
    width: 120px;
  }

  .works-lead-img>img {
    margin-bottom: 10px;
  }

  .works-lead-text {
    width: calc(100% - 130px);
  }

  .works-lead-text::after {
    left: -45px;
    transform: translate(0, -50%) rotate(0);
  }

  .works-lead-text-lead-img {
    width: 90px;
  }

  .works-lead-text-lead>ul>li:not(:last-child)::after {
    font-size: 1.6rem;
  }

  .works-lead-text-lead>ul>li>div {
    font-size: 1rem;
  }

  .works-lead-text-lead>ul>li>div>span {
    font-size: 1.6rem;
  }

  /*---#service---*/
  .service {
    width: 70%;
  }

  .service-category {
    width: 100%;
  }

  .service-category:nth-of-type(n+2) {
    margin-top: 50px;
  }

  /*---point---*/
  .point-lead {
    position: relative;
  }

  .point-lead__img {
    position: absolute;
  }

  .point-lead__img--left {
    top: 40%;
    left: -5%;
  }

  .point-lead__img--right {
    top: 40%;
    right: -5%;

  }
}

@media screen and (max-width:680px) {
  .ttl>img {
    height: 68px;
  }

  .link-btn>a {
    width: 75%;
  }

  /*---case---*/
  .case-btm {
    width: 100%;
    align-items: initial;
  }

  .case-btm .works-lead-img {
    width: 120px;
    margin-top: 20px;
  }

  .case-btm__inner {
    width: calc(100% - 150px);
  }

  .case-btm__inner::before {
    top: 70px;
    transform: translate(0, 0);
  }

  /*---#point---*/
  .point-item {
    width: 100%;
    padding: 40px;
  }

  /*---#service---*/
  .service {
    width: 85%;
  }

  .service-title {
    margin-bottom: 30px;
  }

  .service-title>img {
    width: 55%;
    margin-bottom: 10px;
  }

  .service-title>h2 {
    font-size: 1.4rem;
  }

  .service-lead {
    width: 90%;
    text-align: justify;
    font-size: 1.4rem;
  }

  .service-lead>p br:nth-of-type(1) {
    display: none;
  }

  .works-lead-text-lead {
    display: none;
  }

  /*---flow---*/
  .flow-lead__wrap {
    flex-direction: column;
    align-items: center;
  }

  .flow-lead__wrap>img {
    margin-right: 0;
    margin-bottom: 20px;
  }
}

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

  .ttl {
    margin-bottom: 30px;
  }

  .ttl>img {
    width: 80%;
    height: auto;
    margin-bottom: 14px;
  }

  .ttl--point>h2 {
    font-size: 1.2rem;
  }

  .link-btn__lead>p::before {
    display: block;
    content: '';
    width: 26px;
    height: 26px;
  }

  .link-btn__lead {
    font-size: 1.3rem;
  }

  .link-btn>a {
    width: 100%;
    font-size: 2rem;
  }

  .link-btn__sub {
    font-size: 1rem;
  }


  /*---heading---*/
  #heading {
    top: calc(var(--vh, 1vh) * 112.5);
  }

  #heading>h1 {
    font-size: 1rem;
  }

  /*---#fv---*/
  #fv {
    height: calc(var(--vh, 1vh) * 110);
  }

  .fv-inner {
    width: 90%;
  }

  .fv-img--sub {
    width: 105%;
    margin-top: -15vh;
    margin-bottom: 10px;
  }

  .fv-img--sub-txt {
    width: 55%;
    right: 10%;
  }

  .swiper-slide {
    width: 100% !important;
  }

  .fv-ttl>h2>span {
    font-size: 1.3rem;
    padding: 4px 10px;
  }

  .fv-ttl>h2 {
    font-size: 3.4rem;
    margin-bottom: 10px;
  }

  .fv-list {
    font-size: 1.2rem;
  }

  .fv-lead {
    font-size: 1.3rem;
  }

  .double-content {
    font-size: 1.3rem;
  }

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

  .case-ttl {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .case-ttl>h2 {
    font-size: 1.6rem;
  }

  .case-cols {
    margin-bottom: 20px;
  }

  .case-list__item {
    width: 100%;
    padding: 20px 14px;
  }

  .case-list__item:nth-of-type(n+2) {
    margin-top: 18px;
  }

  .case-list__item>p {
    font-size: 1.4rem;
  }

  .case-list__item>p::before {
    font-size: 3rem;
  }

  .case-tab {
    width: 40px;
  }

  .case-btm {
    flex-direction: column;
  }

  .case-btm .works-lead-img {
    margin-top: 0;
    margin-bottom: 14px;
  }

  .case-btm__inner {
    width: 100%;
    font-size: 1.3rem;
  }

  .case-btm__inner::before {
    content: "";
    position: absolute;
    top: -25px;
    left: 87.5%;
    margin-left: -15px;
    border: 15px solid transparent;
    border-bottom: 15px solid #F7F8F9;
  }

  .point .case-btm__inner::before {
    border-right: 15px solid transparent;
    border-bottom: 15px solid #fff;
  }

  /*---#point---*/
  #point {
    padding: 100px 0 80px 0;
  }

  .point::before {
    content: "";
    position: absolute;
    height: 60px;
  }

  .point-top {
    font-size: 1.4rem;
    white-space: initial;
    top: -10px;
  }

  .point-top>p {
    padding: 0;
  }

  .ttl--point>h2 {
    padding: 2.5px 14px;
  }

  .point-lead {
    font-size: 2rem;
  }

  .point-lead__img--left {
    top: 75%;
    left: -2.5%;
  }

  .point-lead__img--right {
    top: 75%;
    right: -2.5%;
  }

  .point-lead__img {
    width: 48px;
  }

  .point-list {
    margin-bottom: 30px;
  }

  .point-item {
    padding: 24px 20px;
  }

  .point-item__lead>span {
    font-size: 1.4rem;
  }

  .point-item__lead {
    font-size: 1.8rem;
  }

  .point-item__txt {
    font-size: 1.4rem;
    text-align: justify;
  }

  /*---#service---*/
  #service {
    padding: 80px 0;
  }

  .service {
    width: 90%;
  }

  .service .ttl>img {
    width: 70%;
  }

  .service-category {
    padding: 30px 20px 40px 20px;
  }

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

  .service-price>table th,
  .service-price>table td {
    font-size: 1.3rem;
    padding: 7px 5px;
  }

  .service-price>table th {
    width: 40%;
  }

  .service-price>table td {
    width: 60%;
  }

  /*--- #work ---*/
  #work {
    padding: 80px 0;
  }

  .work .ttl>img {
    width: 65%;
  }

  .work__heading {
    font-size: 1.5rem;
    text-align: center;
  }

  .work__meta {
    flex-direction: column;
    align-items: flex-start;

  }

  .works-category {
    width: 100%;
  }

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

  .works-lead {
    flex-direction: column-reverse;
    margin-bottom: 20px;
  }

  .works-lead-text {
    width: 95%;
  }

  .works-lead-text-lead-img {
    display: none;
  }

  .works-lead-img {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    margin-left: auto;
  }

  .works-lead-img>img {
    width: 90px;
    margin-left: 10px;
  }

  .works-lead-img>p {
    font-size: 1.2rem;
    margin-top: 10px;
  }

  .works-lead-text {
    padding: 20px;
  }

  .works-lead-text::after {
    transform: translate(0, -50%) rotate(-115deg);
    top: 97.5%;
    left: 55%;
  }

  .works-results {
    padding: 30px 14px;
  }

  .works-results__ttl {
    margin-bottom: 20px;
  }

  .works-results__ttl>h3 {
    font-size: 1.6rem;
  }

  .works-results__ttl>span {
    font-size: 2rem;
  }

  .works-results__list-img {
    width: 35%;
  }

  .works-results__list-inner {
    width: 100%;
  }

  .case-label {
    font-size: 1.8rem;
  }

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

  .results-desc {
    font-size: 1.4rem;
  }

  .works-link {
    width: 85%;
  }

  /*---flow---*/
  .flow-ttl>img {
    width: 55%;
  }

  .flow-lead__wrap {
    margin-bottom: 30px;
  }

  .flow-lead__wrap>img {
    width: 120px;
  }

  .flow-lead {
    font-size: 1.4rem;
  }

  .flow-item {
    width: 100%;
  }

  .flow-item:nth-of-type(n+2) {
    margin-top: 24px;
  }

  .flow-item h3 {
    font-size: 1.6rem;
  }

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

  .faq {
    width: 90%;
  }

  .faq .ttl>img {
    width: 60%;
  }

  .faq-title {
    margin-bottom: 30px;
  }

  .faq-titleText,
  .faq-answer {
    font-weight: normal;
    line-height: 1.6;
    font-size: 1.3rem;
  }

  .faq-category-title::after,
  .faq-category-title.active::after {
    padding: 20px 10px;
  }

  .faq-inner {
    padding: 20px;
  }

  .faq-innerText>p {
    font-size: 1.2rem;
    line-height: 2;
  }
}