@charset "utf-8";

body {
  font-family: "Noto Sans JP", "游ゴシック体", YuGothic, "Yu Gothic Medium", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "メイリオ", meiryo, sans-serif;
  -webkit-text-size-adjust: 100%;
  font-weight: 500;
}

html {
  scroll-behavior: smooth;
  color: #000;
  background: #FEFEFE;
}

main {
  overflow-x: hidden;
}


h2 {
  font-size: 7.2vw;
  line-height: 9.7vw;
  font-weight: 700;
  text-align: center;
}

h3 {
  font-size: 5.1vw;
  line-height: 7.2vw;
  font-weight: 700;
}

h4 {
  font-size: 5.1vw;
  line-height: 7.2vw;
  font-weight: 700;
}

p {
  font-size: 4.1vw;
  line-height: 6.2vw;
  font-weight: 500;
  text-align: justify;
}

@media (min-width: 1024px) {
  h2 {
    font-size: 44px;
    line-height: 56px;
  }

  h3 {
    font-size: 32px;
    line-height: 40px;
  }

  h4 {
    font-size: 24px;
    line-height: 32px;
    padding-top: 4px;
  }

  p {
    font-size: 18px;
    line-height: 27px;
  }
}

.pc {
  display: none;
}

@media (min-width: 1024px) {
  .pc {
    display: block;
  }

  .sp {
    display: none;
  }
}


header {
  position: fixed;
  display: flex;
  align-items: center;
  height: 70px;
  background-color: #F3F3F3;
  width: 100%;
  z-index: 999;
  box-shadow: 0px 2px 10px 0px rgb(0 0 0 / 8%)
}

header img {
  width: 200px;
  margin-left: 20px;
}

@media (min-width: 1200px) {
  header {
    justify-content: space-between;
    height: 80px;
    padding: 10px 34px;
    margin: 0 auto;
  }

  .header-wrap {
    width: 100%;
    height: 61.5vw;
    padding: 2.6vw 5.1vw;
    gap: 50%;
  }

  .header-wrap img {
    width: 200px;
  }

  header img {
    width: 240px;
    margin-left: 34px;
  }
}

.ul-y {
  background: linear-gradient(transparent 80%, #FDD000 20%);
  display: inline;
}


/*========= ナビゲーション ===============*/

#g-nav {
  position: fixed;
  z-index: 999;
  top: 0;
  right: -120%;
  width: 100%;
  height: 100vh;
  background: #F3F3F3;
  transition: all 0.6s;
}

#g-nav.panelactive {
  right: 0;
}

#g-nav.panelactive #g-nav-list {
  position: fixed;
  z-index: 999;
  width: 100%;
  height: 100vh;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

/*ナビゲーション*/
#g-nav ul {
  position: absolute;
  z-index: 999;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
}

#g-nav li {
  list-style: none;
  text-align: center;
}

#g-nav li a {
  color: #000;
  text-decoration: none;
  padding: 10px;
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: bold;
}

@media (min-width: 1200px) {
  #g-nav {
    position: inherit;
    display: block;
    height: auto;
    background: inherit;
    transition: none;
  }

  #g-nav ul {
    position: inherit;
    display: flex;
    transform: inherit;
    align-items: center;
    gap: 30px;
  }

  #g-nav li {
    list-style: none;
    text-align: center;
  }

  #g-nav li a {
    font-size: 14px;
    padding: 0;
    line-height: 18px;
  }

  .gnav-cta {
    width: 160px;
    height: 60px;
    border-radius: 40px;
    background: #000;
    display: flex !important;
    justify-content: center;
    align-items: center;
  }

  #g-nav li:last-of-type a {
    color: #fff;
  }

  .gnav-cta:hover {
    background: #FDD000;
  }

  #g-nav li:last-of-type a:hover {
    color: #000;
    border-bottom: none;
    transition: 0s;
  }
}

/*========= ナビゲーション ===============*/

/*========= ハンバーガー ===============*/
.openbtn {
  position: fixed;
  z-index: 9999;
  /*ボタンを最前面に*/
  top: 10px;
  right: 20px;
  background: #FDD000;
  cursor: pointer;
  width: 50px;
  height: 50px;
  border-radius: 5px;
}

/*ボタン内側*/
.openbtn span {
  display: inline-block;
  transition: all .4s;
  /*アニメーションの設定*/
  position: absolute;
  left: 14px;
  height: 3px;
  border-radius: 2px;
  background: #000;
  width: 45%;
}

.openbtn span:nth-of-type(1) {
  top: 15px;
}

.openbtn span:nth-of-type(2) {
  top: 23px;
}

.openbtn span:nth-of-type(3) {
  top: 31px;
}

/*activeクラスが付与されると線が回転して×に*/

.openbtn.active span:nth-of-type(1) {
  top: 18px;
  left: 18px;
  transform: translateY(6px) rotate(-45deg);
  width: 30%;
}

.openbtn.active span:nth-of-type(2) {
  opacity: 0;
  /*真ん中の線は透過*/
}

.openbtn.active span:nth-of-type(3) {
  top: 30px;
  left: 18px;
  transform: translateY(-6px) rotate(45deg);
  width: 30%;
}

@media (min-width: 1200px) {
  .openbtn {
    display: none;
  }
}

/*========= ハンバーガー ===============*/


/*========= kv ===============*/
.kv {
  padding-top: 70px;
}

.kv img {
  width: 100vw;
}

@media (min-width: 1024px) {
  .kv {
    background-image: url(../img/KVbgPC.png);
    background-position: top center;
  }

  .kv img {
    max-width: 1500px;
    margin: 0 auto;
  }
}

@media (min-width: 1200px) {
  .kv {
    padding-top: 80px;
  }
}

/*========= kv ===============*/


/*========= area-1 about ===============*/
.about {
  background: url(../img/h-bgSP.png);
  padding: 10.3vw 0 15.4vw;
  background-size: cover;
  background-position-y: -10vw;
}

.about h2 {
  margin-bottom: 7.7vw;
}

.about p {
  padding: 0 5.1vw;
  line-height: 1.8;
  font-size: 4.55vw;
}

.about .s-ttl {
  font-size: 5.1vw;
}

.about picture {
  margin: 10.3vw auto;
  border: 3px solid #FDD000;
  box-shadow: 1.5vw 1.5vw 0px 0px #d9d9d9;
  width: 89.7vw;
  display: block;
}

.about .bubble-bk {
  position: relative;
  display: inline-block;
  margin: 10.3vw auto 5.1vw;
  padding: 1.8vw 2.6vw;
  color: #fff;
  background: #000;
  border-radius: 3.8vw;
  display: flex;
  justify-content: center;
  width: 64vw;
}

.about .bubble-bk:before {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -1.5vw;
  border: 1.5vw solid transparent;
  border-top: 2.4vw solid #000;
}

.about .bubble-bk p {
  margin: 0;
  padding: 0;
}

.about ul {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10.3vw;
  width: 89.7vw;
  margin: 0 auto;
}

.about ul li {
  display: flex;
}

.about ul li::before {
  content: '';
  display: inline-block;
  width: 6vw;
  height: 6vw;
  background-image: url(../img/check.png);
  background-size: contain;
  vertical-align: middle;
  background-repeat: no-repeat;
  margin-right: 2.6vw;
  margin-top: 0.5vw;
}

.about ul li p {
  margin-top: 5.1vw;
  width: 79.5vw;
  padding: 0 5.1vw 0 0;
}

.about .to-list {
  border-bottom: 4px solid;
  width: fit-content;
  margin: 5.1vw auto 0;
}

.about .to-list a {
  font-size: 4.1vw;
  display: block;
  line-height: 130%;
}

/* .about .to-list a::after {
  content: '';
  position: absolute;
  top: 20%;
  right: -5vw;
  transform: rotate(135deg);
  width: 3vw;
  height: 3vw;
  border-width: 0.6vw 0.6vw 0 0;
  border-style: solid;
} */


.about a.to-list span {
  font-weight: 800;
}

@media (min-width: 1024px) {
  .about {
    background: url(../img/h-bgPC.png);
    padding: 75px 0 80px;
    background-repeat: no-repeat;
    background-position: top center;
  }

  .about h2 {
    margin-bottom: 48px;
  }

  .about .s-ttl {
    font-size: 24px;
  }

  .about p {
    text-align: center;
    margin: 0 auto;
    max-width: 950px;
    padding: 0;
    font-size: 20px;
  }

  .about picture {
    margin: 60px auto;
    box-shadow: 9px 9px 0px 0px #d9d9d9;
    max-width: 1090px;
    width: 75%;
  }

  .about .bubble-bk {
    margin: 60px auto 30px;
    padding: 18px 20px;
    border-radius: 15px;
    width: 480px;
  }

  .about .bubble-bk:before {
    margin-left: 1px;
    border: 8px solid transparent;
    border-top: 12px solid #000;
  }

  .about .bubble-bk p {
    font-size: 18px;
  }

  .about ul {
    gap: 40px;
    max-width: 700px;
    margin: 0 auto;

  }

  .about ul li::before {
    width: 26px;
    height: 26px;
    margin-left: 0;
    padding-bottom: 0;
    margin-right: 10px;
  }

  .about ul li p {
    max-width: 680px;
    text-align: left;
    margin: 24px auto 0;
    padding: 0;
  }

  .about .to-list {
    margin: 50px auto 0;
  }

  .about .to-list a {
    font-size: 22px;
  }

  .about .to-list a::after {
    top: 8%;
    right: -30px;
    width: 20px;
    height: 20px;
    border-width: 4px 4px 0 0;
  }

  .about .to-list:hover {
    border-bottom: 4px solid #FDD000;
  }
}

/*========= area-1 about ===============*/

/*========= cta ===============*/
.cta {
  background: #FDD000;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5.1vw;
  padding: 15.4vw 1vw;
}

.bubbles {
  width: fit-content;
  display: flex;
  gap: 3.5vw;
  margin: 0 auto;
}

.bubble-w {
  position: relative;
  padding: 1.6vw 3.2vw;
  color: #000;
  background: #fff;
  border-radius: 2.1vw;
  display: flex;
  justify-content: center;
  width: fit-content;
  font-size: 3.8vw;
  font-weight: 700;
}

.bubble-w:before {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -1.2vw;
  border: 1.2vw solid transparent;
  border-top: 2.3vw solid #fff;
}

.bubble-w p {
  margin: 0;
  padding: 0;
}

.callmessage {
  text-align: center;
  padding: 2.6vw 0 0;
  font-size: 4.6vw;
}

.y-btnarea {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7.7vw
}

.btn1 a {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 84.6vw;
  height: 17.4vw;
  color: #fff;
  font-size: 5.1vw;
  font-weight: 700;
  text-decoration: none;
  transition: 0.3s;
  background-color: #000;
  border-radius: 50vw;
  padding-right: 2vw;
}

.btn1 a::after {
  content: '';
  position: absolute;
  top: 48%;
  right: 7.5vw;
  transform: rotate(45deg) translateY(-50%);
  width: 3.4vw;
  height: 3.4vw;
  border-width: 1.1vw 1.1vw 0 0;
  border-style: solid;
  border-color: #fff;
}

@media (min-width: 1024px) {
  .cta {
    gap: 30px;
    padding: 80px 20px;
  }

  .bubbles {
    gap: 20px;
    margin: 0 auto;
  }

  .bubble-w {
    padding: 20px 18px;
    border-radius: 12px;
    font-size: 20px;
  }

  .bubble-w:before {
    margin-left: -6px;
    border: 6px solid transparent;
    border-top: 10px solid #fff;
  }

  .bubble-w p {}

  .callmessage {
    padding: 16px 0 0;
    font-size: 24px;
  }

  .y-btnarea {
    flex-direction: row;
    align-items: center;
    gap: 40px
  }

  .btn1 a {
    width: 380px;
    height: 100px;
    font-size: 32px;
    border-radius: 50vw;
    padding-right: 20px;
  }

  .btn1 a::after {
    top: 50%;
    right: 45px;
    width: 16px;
    height: 16px;
    border-width: 4px 4px 0 0;
  }

  .btn1 a:hover {
    color: #000;
    background-color: #fff;
  }

  .btn1 a:hover::after {
    border-color: #000 #000 transparent transparent;
  }
}

/*========= cta ===============*/



/*========= worries ===============*/
.worries {
  background-image: url(../img/worries-bg.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  padding: 15.4vw 1vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.worries h2 {
  color: #fff;
}

.ul-b {
  background: linear-gradient(transparent 80%, #000 20%);
  display: inline;
}

.worries picture {
  margin: 0 auto;
  max-width: 660px;
  width: 100%;
  display: block;
}

@media (min-width: 1024px) {
  .worries {
    padding: 80px 10px;
  }

  .worries picture {
    max-width: 1020px;
    width: 80%;
  }
}

/*========= worries ===============*/

.for-bg {
  background-image: url(../img/bubblebg.svg);
  z-index: -10;
  position: relative;
  background-position: top center;
}

.lightbulb-wrap h3 {
  text-align: center;
}

.lightbulb-wrap .dots {
  position: relative;
  width: 35vw;
  margin-top: -7vw;
  z-index: -2;
  margin-left: 20vw;
  max-width: 200px;
}

.lightbulb-wrap .lightbulb {
  width: 10.3vw;
  margin: 7.7vw auto 5.1vw;
}

@media (min-width: 1024px) {
  .lightbulb-wrap {
    display: flex;
    flex-direction: column;
    width: fit-content;
    margin: 0 auto;
  }

  .lightbulb-wrap .dots {
    margin-left: 20%;
    width: 153px;
    margin-top: -29px;
    max-width: inherit;
  }

  .lightbulb-wrap .lightbulb {
    width: 50px;
    margin: 20px auto;
  }
}


.ttl-y::after {
  content: '';
  width: 9.7vw;
  height: 2.6vw;
  background-image: url(../img/heading.png);
  background-size: contain;
  vertical-align: middle;
  display: block;
  margin: 5.1vw auto 7.7vw;
  background-repeat: no-repeat;
}

@media (min-width: 1024px) {
  .ttl-y::after {
    width: 36px;
    height: 10px;
    margin: 20px auto 50px;
  }
}

/*========= features ===============*/
.features {
  padding: 15.4vw 1vw;
}

.features .ttl-y span {
  font-size: 5.1vw;
}

.features-wrap {
  display: flex;
  flex-direction: column;
  gap: 12.8vw;
  align-items: center;
}

.features-con {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10.3vw;
}

.features-con img {
  width: 89.7vw;
  max-width: 480px;
}

.features-con .h3-sub {
  font-size: 4.1vw;
  font-weight: 700;
  text-align: center;
}

.features-con__ttl {
  text-align: center;
  margin: 3.8vw auto 7.7vw;
}

.features-con h3 {
  text-align: center;
  margin: 3.8vw auto 7.7vw;
}

.features-con ul {
  display: flex;
  flex-direction: column;
  gap: 7.7vw;
}

.features-con ul li {
  width: 89.7vw;
  text-indent: -1.6em;
  padding-left: 1.6em;
  font-size: 4.1vw;
  line-height: 6.2vw;
  font-weight: 500;
  text-align: justify;
}

.features-con ul li::before {
  content: '';
  display: inline-flex;
  width: 4.1vw;
  height: 4.1vw;
  background-image: url(../img/roundcheck.png);
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
  margin-right: 2.6vw;
}

@media (min-width: 1024px) {
  .features {
    padding: 80px 10px;
  }

  .features .ttl-y span {
    font-size: 24px;
  }

  .features-wrap {
    gap: 50px;
    padding: 0 20px;
  }

  .features-con {
    flex-direction: row;
    gap: 90px;
  }

  .features-con2 {
    flex-direction: row-reverse;
  }

  .features-con img {
    width: 435px;
    max-width: inherit;
  }

  .features-con .h3-sub {
    font-size: 16px;
    text-align: left;
  }

  .features-con__ttl {
    text-align: left;
    margin: 15px auto 36px;
  }

  .features-con h3 {
    text-align: left;
    margin: 20px auto 36px;
  }

  .features-con ul {
    gap: 30px;
  }

  .features-con ul li {
    width: 390px;
    font-size: 18px;
    line-height: 27px;
  }

  .features-con ul li::before {
    width: 20px;
    height: 20px;
    margin-right: 10px;
  }
}

/*========= features ===============*/


/*========= service ===============*/
.service {
  padding: 15.4vw 1vw 9vw;
  background: #f3f3f3;
}

.toggle_contents {
  display: flex;
  width: 89.7vw;
  padding: 0px 0 0 4.1vw;
  flex-direction: column;
  align-items: flex-start;
  gap: 2.6vw;
  border: 2px solid #FDD000;
  box-shadow: 1.5vw 1.5vw 0px 0px #d9d9d9;
  margin: 0 auto 6.4vw;
  background: #fff;
}

.toggle_contents dd {
  padding-bottom: 5.1vw;
  padding-left: 1vw;
}

.toggle_title {
  position: relative;
  padding: 5.1vw 0 6.4vw 10.3vw;
  cursor: pointer;
  font-size: 5.1vw;
  text-align: left;
  line-height: 1.4;
  font-weight: 700;
  max-width: 910px;
  width: 100%;
}

.toggle_btn {
  position: absolute;
  top: 50%;
  left: 0px;
  transform: translateY(-50%);
  background: #fdd000;
  display: block;
  width: 7.7vw;
  height: 7.7vw;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  border-radius: 50%;
}

.toggle_btn:before,
.toggle_btn:after {
  display: block;
  content: '';
  background-color: #000;
  position: absolute;
  width: 4.1vw;
  height: 1vw;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.toggle_btn:before {
  width: 1vw;
  height: 4.1vw;
  transition: .2s;
}

.toggle_btn:after {
  transition: .1s;
}

.toggle_title.selected .toggle_btn:before {
  content: normal;
}

.toggle_contents dd {
  display: none;
}

.accordion__content {
  display: none;
  width: fit-content;
}

.accordion__content tbody {
  width: 76.9vw;
  margin: 0 auto;
}

.accordion__content tr {
  display: flex;
  flex-direction: column;
  width: 76.9vw;
  align-items: center;
}

.accordion__content th {
  width: 76.9vw;
  height: 11.3vw;
  background: #FDD000;
  display: flex;
  align-items: center;
  padding-left: 2.6vw;
  font-size: 4.1vw;
  line-height: 5.6vw;
}

.accordion__content td {
  width: 76.9vw;
  padding: 4.6vw 2.6vw;
  font-weight: 700;
  font-size: 4.1vw;
  line-height: 5.6vw;
}

.td-last {
  border-bottom: 1px solid #D9D9D9;
}

.accordion__content h4 {
  margin-bottom: 2.6vw;
}

.accordion__content h4:last-of-type {
  margin-top: 8vw;
}

@media (min-width: 1024px) {
  .service {
    padding: 80px 10px;
  }

  .toggle_contents {
    max-width: 1090px;
    padding: 0px 40px;
    gap: 0;
    box-shadow: 9px 9px 0px 0px #d9d9d9;
    margin: 0 auto 40px;
    align-items: center;
  }

  .toggle_title {
    padding: 40px 0px 40px 70px;
    font-size: 24px;
    line-height: 32px;
    max-width: 1090px;
    width: 100%
  }

  .toggle_btn {
    width: 42px;
    height: 42px;
  }

  .toggle_btn:before,
  .toggle_btn:after {
    width: 24px;
    height: 6px;
  }

  .toggle_btn:before {
    width: 6px;
    height: 24px;
  }

  .toggle_title.selected .toggle_btn:before {}

  .toggle_contents dd {
    padding-bottom: 40px;
  }

  .accordion__content {}

  .accordion__content tbody {
    max-width: 850px;
  }

  .accordion__content tr {
    flex-direction: row;
    max-width: 850px;
  }

  .accordion__content th {
    max-width: 230px;
    padding: 12.5px 10px;
    border-bottom: 1px solid #D9D9D9;
    height: auto;
    justify-content: center;
    font-size: 16px;
    line-height: 22px;
  }

  .accordion__content td {
    max-width: 620px;
    padding: 12.5px 10px 12.5px 25px;
    font-size: 16px;
    line-height: 22px;
    display: flex;
    align-items: center;
  }

  .accordion__content td:last-of-type {
    border-bottom: 1px solid #D9D9D9;
  }

  .accordion__content .tr2 {
    height: 70px;
  }

  .accordion__content h4 {
    margin-bottom: 10px;
    font-size: 20px;
  }

  .accordion__content h4:last-of-type {
    margin-top: 30px;
  }
}

/*========= service ===============*/


/*========= example ===============*/
.example {
  background-repeat: no-repeat;
  padding: 15.4vw 1vw;
  background-image: url(../img/h-bgSP.png);
  background-size: cover;
  background-position-y: 26vw;
}

.example-con {
  display: flex;
  width: 89.7vw;
  padding: 7.7vw 5.1vw;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10.3vw;
  border: 3px solid #FDD000;
  box-shadow: 1.5vw 1.5vw 0px 0px #d9d9d9;
  margin: 0 auto;
  background: #fff;
}

.example-con:first-of-type {
  margin-bottom: 15.4vw;
}

.example-con__upper {
  display: flex;
  width: 79.5vw;
  flex-direction: column;
  align-items: flex-start;
  gap: 5.1vw;
}

.example-con__upperttl {
  display: flex;
  width: 79.5vw;
  flex-direction: column;
  align-items: flex-start;
  gap: 4.1vw;
}

.example-con__upperttl h3 {
  font-size: 6.2vw;
  line-height: 7.7vw;
}

.example-con__upper .customer {
  font-size: 3.6vw;
  font-style: normal;
  font-weight: 500;
  display: flex;
  padding: 2vw 3.8vw;
  justify-content: center;
  align-items: center;
  gap: 2.6vw;
  border-radius: 2.6vw;
  background: #000;
  color: #FFF;
}

.example-con__upper .h3-sub {
  font-weight: 600;
}

.example-con__upper img {
  width: 69.2vw;
  margin: 0 auto;
}

.example-con__lower {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.6vw;
}

.example-con__lower img {
  width: 10.3vw;
}

.assignment h3 {
  position: relative;
  margin: 0 auto 5.1vw;
  padding: 1.5vw 2.6vw;
  color: #fff;
  background: #000;
  border-radius: 2.6vw;
  display: flex;
  justify-content: center;
  width: 79.5vw;
}

.assignment h3:before {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -1.5vw;
  border: 1.5vw solid transparent;
  border-top: 2.4vw solid #000;
}

.measure h3 {
  position: relative;
  margin: 0 auto 5.1vw;
  padding: 1.5vw 2.6vw;
  color: #000;
  background: #FDD000;
  border-radius: 2.6vw;
  display: flex;
  justify-content: center;
  width: 79.5vw;
}

.measure h3:before {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -1.5vw;
  border: 1.5vw solid transparent;
  border-top: 2.4vw solid #FDD000;
}

.measure h4 {
  text-indent: -1.5em;
  padding-left: 1.5em;
}

.comparison ul {
  display: flex;
  width: 79.5vw;
  padding: 7.7vw 5.1vw;
  flex-direction: column;
  align-items: center;
  gap: 6.7vw;
}

.assignment ul {
  background: #777;
}

.measure ul {
  background: #FFFAE4;
}

.comparison li {
  width: 69.2vw;
}

.comparison li h4 {
  margin-bottom: 3.1vw;
}

.assignment li {
  color: #fff;
}

.assignment li h4::before {
  content: '';
  display: inline-block;
  width: 5.1vw;
  /*画像の幅*/
  height: 5.1vw;
  /*画像の高さ*/
  background-image: url(../img/dissatisfaction.png);
  background-size: contain;
  vertical-align: middle;
  background-repeat: no-repeat;
  margin-bottom: 2vw;
  margin-right: 2.4vw;
}

.comparison li p {
  padding-left: 7.7vw;
}

.measure li h4::before {
  content: '';
  display: inline-block;
  width: 6.4vw;
  /*画像の幅*/
  height: 6.4vw;
  /*画像の高さ*/
  background-image: url(../img/lightbulb.png);
  background-size: contain;
  vertical-align: middle;
  background-repeat: no-repeat;
  margin-bottom: 3vw;
  margin-right: 1.2vw;
}

.document-dl {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5.1vw;
  margin: 10.3vw auto 0;
}

.document-dl .bubble-b {
  position: relative;
  margin: 0 auto 1.2vw;
  padding: 1.5vw 2.6vw;
  color: #fff;
  background: #000;
  border-radius: 2.6vw;
  display: flex;
  justify-content: center;
  width: 20.5vw;
}

.document-dl .bubble-b::before {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -1.2vw;
  border: 1.2vw solid transparent;
  border-top: 2.3vw solid #000;
}

.btn2 a {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 89.5vw;
  height: 20.5vw;
  color: #000;
  font-size: 5.1vw;
  font-weight: 700;
  text-decoration: none;
  transition: 0.3s;
  background-color: #fdd000;
  border-radius: 50vw;
  padding: 0 2vw;
  text-align: center;
}

.btn2 a::after {
  content: '';
  position: absolute;
  top: 48%;
  right: 7.5vw;
  transform: rotate(45deg) translateY(-50%);
  width: 3.4vw;
  height: 3.4vw;
  border-width: 1.1vw 1.1vw 0 0;
  border-style: solid;
  border-color: #000;
}

@media (min-width: 1024px) {
  .example {
    padding: 80px 10px;
    background-image: url(../img/h-bgPC.png);
    background-position: top center;
    background-size: inherit;
  }

  .example-con {
    display: flex;
    max-width: 1140px;
    padding: 60px 50px;
    gap: 40px;
    box-shadow: 9px 9px 0px 0px #d9d9d9;
  }

  .example-con:first-of-type {
    margin-bottom: 60px;
  }

  .example-con__upper {
    max-width: 1034px;
    flex-direction: row;
    align-items: flex-start;
    gap: 0;
    justify-content: space-between;
  }

  .example-con__upperttl {
    width: auto;
    gap: 30px;
  }

  .example-con__upper .customer {
    font-size: 16px;
    padding: 7px 15px;
    border-radius: 10px;
  }

  .example-con__upper .h3-sub {
    font-size: 20px;
    line-height: 27px;
  }

  .example-con__upper h3 {
    font-size: 32px;
    line-height: 40px;
  }

  .example-con__upper img {
    max-width: 270px;
    margin: inherit;
  }

  .example-con__lower {
    max-width: 1034px;
    flex-direction: row;
    justify-content: space-between;
    gap: 10px;
    width: 100%;
    align-items: flex-start;
    position: relative;
  }

  .example-con__lower picture {
    width: inherit;
  }

  .example-con__lower picture img {
    max-width: 50px;
    width: 3.5vw;
    margin: 0 auto;
  }

  .example-con__lower::after {
    content: '';
    width: 50px;
    height: 38px;
    background-image: url(../img/arrowPC.png);
    background-size: contain;
    vertical-align: middle;
    display: block;
    margin: 0 auto;
    background-repeat: no-repeat;
    position: absolute;
    top: 50%;
  }

  .assignment h3 {
    position: relative;
    margin: 0 auto 20px;
    border-radius: 10px;
    max-width: 480px;
    padding: 2px 10px;
    font-size: 24px;
    width: 36.5vw;
  }

  .assignment h3:before {
    margin-left: -4px;
    border: 5px solid transparent;
    border-top: 8px solid #000;
  }

  .measure h3 {
    position: relative;
    margin: 0 auto 20px;
    border-radius: 10px;
    max-width: 480px;
    padding: 2px 10px;
    font-size: 24px;
    width: 36.5vw;
  }

  .measure h3:before {
    margin-left: -4px;
    border: 5px solid transparent;
    border-top: 8px solid #FDD000;
  }

  .comparison ul {
    display: flex;
    max-width: 480px;
    padding: 40px 10px;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    width: 36.5vw;
  }

  .comparison li {
    max-width: 415px;
    width: 28.8vw;
  }

  .comparison li p {
    padding-left: 40px;
  }

  .comparison li h4 {
    margin-bottom: 20px;
  }

  .assignment li {
    color: #fff;
  }

  .assignment li h4::before {
    width: 28px;
    height: 28px;
    margin-bottom: 5px;
    margin-right: 10px;
  }

  .measure ul {
    padding: 36px 10px 44px;
  }

  .measure li h4 {
    margin-bottom: 10px;
    text-indent: -1.8em;
    padding-left: 1.8em;
  }

  .measure li {}

  .measure li h4::before {
    width: 32px;
    height: 34px;
    margin-right: 10px;
    margin-bottom: 10px;
  }

  .document-dl {
    gap: 20px;
    margin: 50px auto 0;
  }

  .document-dl .bubble-b {
    margin: 0 auto;
    padding: 11px 5px;
    border-radius: 12px;
    width: 80px;
    font-size: 20px;
  }

  .document-dl .bubble-b::before {
    margin-left: -4px;
    border: 5px solid transparent;
    border-top: 9px solid #000;
  }

  .btn2 a {
    width: 560px;
    height: 100px;
    font-size: 32px;
    border-radius: 50vw;
    padding: 0 22px;
  }

  .btn2 a::after {
    top: 50%;
    right: 45px;
    width: 16px;
    height: 16px;
    border-width: 4px 4px 0 0;
  }

  .btn2 a:hover {
    color: #fff;
    background-color: #000;
  }

  .btn2 a:hover::after {
    border-color: #fff #fff transparent transparent;
  }

  .btn2 a h3 {
    margin-left: -20px;
  }
}

@media (min-width: 1024px) and (max-width: 1060px) {
  .example-con__lower::after {
    left: 46.8%;
  }
}

@media (min-width: 1061px) {
  .example-con__lower::after {
    left: 47.5%;
  }
}

@media (min-width: 1024px) and (max-width: 1076px) {
  .case2 .assignment ul {
    height: 523px;
  }
}

@media (min-width: 1077px) and (max-width: 1312px) {
  .case2 .assignment ul {
    height: 496px;
  }
}

@media (min-width: 1313px) and (max-width: 1326px) {
  .case2 .assignment ul {
    height: 464px;
  }
}

@media (min-width: 1327px) and (max-width: 1388px) {
  .case2 .assignment ul {
    height: 437px;
  }
}

@media (min-width: 1389px) {
  .case2 .assignment ul {
    height: 410px;
  }
}

@media (min-width: 1440px) {
  .example-con__lower {
    max-width: 1034px;
    flex-direction: row;
    justify-content: space-between;
    gap: 10px;
    width: 100%;
    position: relative;
  }

  .example-con__lower picture {
    width: inherit;
  }

  .example-con__lower picture img {
    max-width: 50px;
    width: 3.5vw;
    margin: 0 auto;
  }

  .assignment h3 {
    width: 33.3vw;
  }

  .assignment h3:before {
    margin-left: -4px;
    border: 5px solid transparent;
    border-top: 8px solid #000;
  }

  .measure h3 {
    width: 33.3vw;
  }

  .measure h3:before {
    margin-left: -4px;
    border: 5px solid transparent;
    border-top: 8px solid #FDD000;
  }

  .comparison ul {
    width: 33.3vw;
  }

  .case1 .measure ul {
    height: 490px;
  }

  .comparison li {
    max-width: 415px;
    width: 28.8vw;
  }

  .comparison li p {
    padding-left: 40px;
  }

  .comparison li h4 {
    margin-bottom: 20px;
  }

  .assignment li {
    color: #fff;
  }

  .assignment li h4::before {
    width: 28px;
    height: 28px;
    margin-bottom: 5px;
    margin-right: 10px;
  }

  .measure li h4 {
    margin-bottom: 10px;
  }

  .measure li {}

  .measure li h4::before {
    width: 32px;
    height: 34px;
    margin-right: 10px;
    margin-bottom: 10px;
  }

  .document-dl {
    gap: 20px;
    margin: 50px auto 0;
  }

  .document-dl .bubble-b {
    margin: 0 auto;
    padding: 11px 5px;
    border-radius: 12px;
    width: 80px;
    font-size: 20px;
  }

  .document-dl .bubble-b::before {
    margin-left: -4px;
    border: 5px solid transparent;
    border-top: 9px solid #000;
  }
}

@media (min-width: 1024px) and (max-width: 1256px) {
  .case1 .measure ul {
    height: 542px;
  }
}

@media (min-width: 1257px) and (max-width: 1323px) {
  .case1 .measure ul {
    height: 516px;
  }
}

@media (min-width: 1324px) {
  .case1 .measure ul {
    height: 489px;
  }
}

/*========= example ===============*/


/*========= flow ===============*/
.flow {
  padding: 15.4vw 5.1vw;
  background: url(../img/bubblebg.svg);
  background-position: top center;
}

.flow-p {
  margin-bottom: 7.7vw;
  text-align: center;
  font-size: 4.6vw;
  font-weight: bold;
}

.step {
  display: flex;
  width: 89.7vw;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2.1vw;
  margin: 0 auto;
}

.step-wrap {
  display: flex;
  flex-direction: column;
  gap: 15.4vw;
  margin: 0 auto;
}

.step .step-wrap {
  display: flex;
  width: 89.7vw;
  flex-direction: column;
  align-items: flex-start;
  gap: 15.4vw;
}

.step .step-txt {
  display: flex;
  width: 89.7vw;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 2.6vw;
}

.step .step-txt .step-no {
  display: flex;
  padding: 0.1vw 1.8vw 0.7vw 1.8vw;
  justify-content: center;
  align-items: center;
  gap: 2.6vw;
  border-radius: 1vw;
  background: #FDD000;
  font-weight: 700;
}

.step .step-txt h3 {
  margin-bottom: 2.6vw;
}

.step-wrap img {
  width: 32.5vw;
}

@media (min-width: 1024px) {
  .flow {
    padding: 80px 10px;
  }

  .flow-p {
    margin-bottom: 50px;
    font-size: 24px;
  }

  .step-wrap {
    gap: 50px;
  }

  .step {
    flex-direction: row;
    max-width: 930px;
    gap: 40px;
  }

  .step img {
    width: 125px;
  }

  .step .step-txt {
    gap: 15px
  }

  .step .step-txt .step-no {
    padding: 0px 8px 1.5px;
    border-radius: 4px;
  }

  .step .step-txt h3 {
    margin-bottom: 0;
  }
}

/*========= flow ===============*/


/*========= qa ===============*/
.qa {
  padding: 15.4vw 5.1vw;
  display: flex;
  flex-direction: column;
}

.qa ul {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 7.7vw;
  margin: 0 auto;
}

.qa ul li dl dt {
  display: flex;
  width: 89.7vw;
  padding: 5.1vw;
  justify-content: center;
  align-items: flex-start;
  gap: 3.8vw;
  background: #FDD000;
}

.qa ul li dl dt::before {
  content: '';
  display: inline-block;
  width: 9vw;
  /*画像の幅*/
  height: 9vw;
  /*画像の高さ*/
  background-image: url(../img/Q-bubble.png);
  background-size: contain;
  vertical-align: middle;
  background-repeat: no-repeat;
}

.qa ul li dl dt p,
.qa ul li dl dd p {
  width: 66vw;
  padding-top: 1vw;
}

.qa ul li dl dd {
  display: flex;
  width: 89.7vw;
  padding: 5.1vw;
  align-items: flex-start;
  gap: 3.8vw;
  background: #FFFAE4;
}

.qa ul li dl dd::before {
  content: '';
  display: inline-block;
  width: 9vw;
  /*画像の幅*/
  height: 9vw;
  /*画像の高さ*/
  background-image: url(../img/A-bubble.png);
  background-size: contain;
  vertical-align: middle;
  background-repeat: no-repeat;
}

@media (min-width: 1024px) {
  .qa {
    padding: 80px 10px;
  }

  .qa ul {
    gap: 30px;
  }

  .qa ul li dl dt,
  .qa ul li dl dd {
    max-width: 820px;
    padding: 20px 30px;
    gap: 20px;
  }

  .qa ul li dl dt::before,
  .qa ul li dl dd::before {
    width: 55px;
    height: 36px;
  }

  .qa ul li dl dt p,
  .qa ul li dl dd p {
    padding-top: 3px;
    max-width: 685px;
  }
}

/*========= qa ===============*/


/*========= bottom-btn ===============*/
.bottom-btn {
  position: fixed;
  bottom: 0;
  z-index: 999;
  background-color: #f3f3f3;
  padding: 5vw 6%;
  width: 100%;
  box-shadow: 0px -2px 10px 0px rgb(0 0 0 / 8%);
  padding-bottom: env(safe-area-inset-bottom);
}

.btn-wrap {
  display: flex;
  gap: 5.1vw;
  justify-content: center;
}

.btn3 a {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 42.6vw;
  height: 16vw;
  color: #fff;
  font-size: 3.8vw;
  font-weight: 700;
  text-decoration: none;
  transition: 0.3s;
  background-color: #000;
  border-radius: 50vw;
  padding-right: 5vw;
  text-align: center;
}

.btn3DL a {
  color: #000;
  background-color: #fdd000;
}

.btn3 a::after {
  content: '';
  position: absolute;
  top: 48%;
  right: 7.5vw;
  transform: rotate(45deg) translateY(-50%);
  width: 3.4vw;
  height: 3.4vw;
  border-width: 1vw 1vw 0 0;
  border-style: solid;
  border-color: #fff;
}

.btn3DL a::after {
  border-color: #000;
}

@media (min-width: 1024px) {
  .bottom-btn {
    background-color: inherit;
    padding: 0;
  }

  .follow {
    width: 150px;
    height: 131px;
    right: 30px;
    bottom: 180px;
    position: fixed;
    background-image: url(../img/follow.svg);
    background-size: contain;
    background-repeat: no-repeat;
    /*デフォルトで非表示にする*/
    opacity: 0;
    visibility: hidden;
  }

  /*このクラスが付与されると表示する*/
  .f-active {
    opacity: 1;
    visibility: visible;
  }

  .follow:hover {
    background-image: url(../img/follow-h.svg);
  }

  .followDL {
    bottom: 30px;
    background-image: url(../img/followDL.svg);
  }

  .followDL:hover {
    background-image: url(../img/followDL-h.svg);
  }
}

/*========= bottom-btn ===============*/



/*========= footer ===============*/
footer {
  height: 21.8vw;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000;
  padding: 0 5.1vw;
  margin-bottom: 25vw;
}

small {
  font-size: 3.3vw;
  text-align: center;
  color: #FFF;
}

@media (min-width: 1024px) {
  footer {
    height: 60px;
    padding: 0 20px;
    margin-bottom: 0;
  }

  small {
    font-size: 13px;
  }
}

/*========= footer ===============*/



/*========= アワード ===============*/
.ASPICaward {
  margin: 24px auto;
}

.ASPICaward .img {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
}

.ASPICaward .logo-img {
  width: 100px;
}

.ASPICaward .img a {
  font-size: 14px;
  font-weight: 500;
  transition: .3s;
  text-decoration: underline;
}

.ASPICaward .img a::after {
  content: "";
  width: 16px;
  height: 16px;
  display: inline-block;
  background-image: url(../img/external.png);
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
  margin-top: 1px;
}

.ASPICaward .text {
  width: 90%;
  margin: 0 auto;
}

.ASPICaward .text p {
  margin: 0;
  font-weight: 500;
  line-height: 1.6;
  font-size: 13px;
}

@media (min-width: 1024px) {
  .ASPICaward-wrap {
    margin: -80px auto 0;
  }

  .ASPICaward {
    margin-top: 40px;
    margin-left: 9%;
  }

  .ASPICaward .img {
    display: flex;
    gap: 20px;
    justify-content: flex-start;
  }

  .ASPICaward .img a {
    font-size: 18px;
    font-weight: 500;
    transition: .3s;
    text-decoration: underline;
  }

  .ASPICaward .img a::after {
    width: 24px;
    height: 24px;
    margin-left: 4px;
  }

  .ASPICaward .logo-img {
    width: 160px;
    margin: 0;
  }

  .ASPICaward .text p {
    margin: 12px 0;
    font-weight: 500;
    line-height: 1.6;
    font-size: 14px;
    text-shadow: 0 0 4px #ffffff;
  }

  .ASPICaward .text {
    width: 90%;
    margin: 0;
    padding: 0px 0 20px;
  }

  @media (min-width: 1500px) {
    .ASPICaward {
      max-width: 1210px;
      margin: 40px auto 0;
    }
  }
}

/*========= アワード ===============*/

h1 {
  position: relative;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  clip-path: inset(50%);
}


/*========= 最下部テキストリンク ===============*/
.textlink {
  margin-top: 10px;
  text-decoration: underline;
  max-width: 90%;
  text-align: center;
  font-size: 3.4vw;
}

@media (min-width: 1024px) {
  .textlink {
    max-width: inherit;
    font-size: 15px;
  }
}