@charset "UTF-8";
.appear.up .item, .appear.up .card {
  -webkit-transform: translateY(6px);
          transform: translateY(6px);
}

.appear.down .item, .appear.down .card {
  -webkit-transform: translateY(-6px);
          transform: translateY(-6px);
}

.appear.left .item, .appear.left .card {
  -webkit-transform: translateX(40px);
          transform: translateX(40px);
}

.appear.right .item, .appear.right .card {
  -webkit-transform: translateX(-40px);
          transform: translateX(-40px);
}

.appear .item, .appear .card {
  -webkit-transition: all 0.8s;
  transition: all 0.8s;
  opacity: 0;
}

.appear.inview .item, .appear.inview .card {
  opacity: 1;
  -webkit-transform: none;
          transform: none;
}

.appear.inview .item:nth-child(1), .appear.inview .card:nth-child(1) {
  -webkit-transition-delay: 0.1s;
          transition-delay: 0.1s;
}

.appear.inview .item:nth-child(2), .appear.inview .card:nth-child(2) {
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
}

.appear.inview .item:nth-child(3), .appear.inview .card:nth-child(3) {
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
}

.appear.inview .item:nth-child(4), .appear.inview .card:nth-child(4) {
  -webkit-transition-delay: 0.4s;
          transition-delay: 0.4s;
}

.appear.inview .item:nth-child(5), .appear.inview .card:nth-child(5) {
  -webkit-transition-delay: 0.5s;
          transition-delay: 0.5s;
}

.appear.inview .item:nth-child(6), .appear.inview .card:nth-child(6) {
  -webkit-transition-delay: 0.6s;
          transition-delay: 0.6s;
}

.appear.inview .item:nth-child(7), .appear.inview .card:nth-child(7) {
  -webkit-transition-delay: 0.7s;
          transition-delay: 0.7s;
}

.appear.inview .item:nth-child(8), .appear.inview .card:nth-child(8) {
  -webkit-transition-delay: 0.8s;
          transition-delay: 0.8s;
}

.appear.inview .item:nth-child(9), .appear.inview .card:nth-child(9) {
  -webkit-transition-delay: 0.9s;
          transition-delay: 0.9s;
}

.appear.inview .item:nth-child(10), .appear.inview .card:nth-child(10) {
  -webkit-transition-delay: 1s;
          transition-delay: 1s;
}

.mobile-menu {
  position: fixed;
  right: -300px;
  top: 78px;
  width: 300px;
  height: calc(100vh - 78px);
  z-index: 10;
  background-color: #fff;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.mobile-menu__btn {
  background-color: unset;
  border: none;
  outline: none !important;
  cursor: pointer;
}

.mobile-menu__btn > span {
  background-color: #222;
  width: 14px;
  height: 2px;
  display: block;
  margin-bottom: 3px;
  -webkit-transition: -webkit-transform 0.7s;
  transition: -webkit-transform 0.7s;
  transition: transform 0.7s;
  transition: transform 0.7s, -webkit-transform 0.7s;
}

.mobile-menu__btn > span:last-child {
  margin-bottom: 0;
}

.mobile-menu__cover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 1s;
  transition: opacity 1s;
  cursor: pointer;
  z-index: 200;
}

.mobile-menu__main {
  padding: 0;
  margin-bottom: 0;
  -webkit-perspective: 2000px;
          perspective: 2000px;
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
}

.mobile-menu__item {
  list-style: none;
  display: block;
  -webkit-transform: translate3d(0, 0, -1000px);
          transform: translate3d(0, 0, -1000px);
  padding: 20px 40px;
  -webkit-transition: opacity 0.2s, -webkit-transform 0.3s;
  transition: opacity 0.2s, -webkit-transform 0.3s;
  transition: transform 0.3s, opacity 0.2s;
  transition: transform 0.3s, opacity 0.2s, -webkit-transform 0.3s;
  opacity: 0;
}

.mobile-menu .link-text {
  display: block;
  color: #222;
  text-decoration: none !important;
}

.menu-open .mobile-menu {
  right: 0;
}

.menu-open .mobile-menu__cover {
  opacity: 1;
  visibility: visible;
}

.menu-open .mobile-menu__item {
  -webkit-transform: none;
          transform: none;
  opacity: 1;
}

.menu-open .mobile-menu__item:nth-child(1) {
  -webkit-transition-delay: 0.07s;
          transition-delay: 0.07s;
}

.menu-open .mobile-menu__item:nth-child(2) {
  -webkit-transition-delay: 0.14s;
          transition-delay: 0.14s;
}

.menu-open .mobile-menu__item:nth-child(3) {
  -webkit-transition-delay: 0.21s;
          transition-delay: 0.21s;
}

.menu-open .mobile-menu__item:nth-child(4) {
  -webkit-transition-delay: 0.28s;
          transition-delay: 0.28s;
}

.menu-open .mobile-menu__item:nth-child(5) {
  -webkit-transition-delay: 0.35s;
          transition-delay: 0.35s;
}

.menu-open .mobile-menu__btn > span {
  background-color: #222;
}

.menu-open .mobile-menu__btn > span:nth-child(1) {
  -webkit-transition-delay: 70ms;
          transition-delay: 70ms;
  -webkit-transform: translateY(0) rotate(135deg);
          transform: translateY(0) rotate(135deg);
}

.menu-open .mobile-menu__btn > span:nth-child(2) {
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
  -webkit-transform: translateX(-18px) scaleX(0);
          transform: translateX(-18px) scaleX(0);
}

.menu-open .mobile-menu__btn > span:nth-child(3) {
  -webkit-transition-delay: 140ms;
          transition-delay: 140ms;
  -webkit-transform: translateY(-10px) rotate(-135deg);
          transform: translateY(-10px) rotate(-135deg);
}

/******************************************************************

Stylesheet: ベーススタイル

******************************************************************/
body {
  font-family: "Poppin", "Noto Sans JP", sans-serif;
}

@font-face {
  src: url("") format("woff");
  font-family: "Noto Sans JP";
  font-style: normal;
  font-display: swap;
}

@font-face {
  src: url("//5277888.fs1.hubspotusercontent-na1.net/hubfs/5277888/raw_assets/public/LP/shoruira-security/resources/fonts/NotoSansJP-Bold.woff") format("woff");
  font-family: "Noto Sans JP";
  font-style: normal;
  font-display: swap;
}

@font-face {
  src: url("//5277888.fs1.hubspotusercontent-na1.net/hubfs/5277888/raw_assets/public/LP/shoruira-security/resources/fonts/Poppins-Regular.woff") format("woff");
  font-family: "Poppin";
  font-style: normal;
  font-display: swap;
}

@font-face {
  src: url("//5277888.fs1.hubspotusercontent-na1.net/hubfs/5277888/raw_assets/public/LP/shoruira-security/resources/fonts/Poppins-Bold.woff") format("woff");
  font-family: "Poppin";
  font-style: normal;
  font-display: swap;
}

img {
  max-width: 100%;
  vertical-align: bottom;
}

.font-xsm {
  font-size: 11px;
}

.font-sm, .btn, .header__li .link-text, .hukidashi, .text-link, .footer__copyright {
  font-size: 14px;
}

.font-md {
  font-size: 16px;
}

.font-smd, .description, .hukidashi.large, .card.type2 h3, .card.type4 h3, .card.type4 .text-area p, .effects .description-area p, .cost__flex .cost-summary p, .question .accordion-area li .question-area {
  font-size: 18px;
}

.font-lmd {
  font-size: 22px;
}

.font-xmd, h2, .common-cv__inner h2, .card.type1 h3, .card.type3 .text-area h3, .cost__flex .cost-area h3, .cost__flex .cost-area p, .cost__flex .cost-summary p .small, .question .accordion-area li .question-area .question-text .accordion-icon-question {
  font-size: 24px;
}

.font-lg {
  font-size: 32px;
}

.font-slg, h2 span {
  font-size: 36px;
}

.font-mlg, .top__text h1 {
  font-size: 40px;
}

.font-mxlg, .effects .description-area p.large {
  font-size: 48px;
}

.font-llg {
  font-size: 54px;
}

.font-xlg, .cost__flex .cost-area p span, .cost__flex .cost-summary p .large {
  font-size: 64px;
}

h1, h2, h3, p {
  margin-bottom: 0;
}

h2 {
  font-weight: normal;
  margin-bottom: 0;
}

h2 span {
  font-weight: bold;
}

.description {
  margin: 24px auto;
}

.mb-sm {
  margin-bottom: 16px;
}

.mb-lg {
  margin-bottom: 80px;
}

.pb-sm {
  padding-bottom: 16px;
}

.p-md {
  padding: 64px 0;
}

.pb-lg {
  padding-bottom: 64px;
}

.p-lg {
  padding: 64px 0 150px;
}

.sp {
  display: none;
}

.pc {
  display: block;
}

.c-main, .card.type1 h3, .card.type2 h3, .effects .description-area p.large {
  color: #0095A8;
}

.normal {
  font-weight: normal;
}

.bold {
  font-weight: bold;
}

.content-width, .header__inner, .common-cv__inner, .top__inner, .about__inner, .effects__inner, .problems__inner, .costs__inner, .feature__inner, .question__inner, .form__inner, .company__inner, .footer__inner {
  width: 90%;
  margin: 0 auto;
  max-width: 1080px;
}

#main-content {
  position: relative;
  z-index: 0;
}

main {
  position: relative;
  z-index: -1;
}

#container {
  background-color: #fff;
  position: relative;
  z-index: 10;
  -webkit-transition: -webkit-transform 0.5s, -webkit-box-shadow 0.5s;
  transition: -webkit-transform 0.5s, -webkit-box-shadow 0.5s;
  transition: transform 0.5s, box-shadow 0.5s;
  transition: transform 0.5s, box-shadow 0.5s, -webkit-transform 0.5s, -webkit-box-shadow 0.5s;
}

.common-shadow-sm, .card.type2, .card.type3, .form__inner {
  -webkit-filter: drop-shadow(0 0 8px rgba(0, 0, 0, 0.16));
          filter: drop-shadow(0 0 8px rgba(0, 0, 0, 0.16));
}

.common-shadow-md, .common-cv .person {
  -webkit-filter: drop-shadow(10px 0 8px rgba(0, 0, 0, 0.16));
          filter: drop-shadow(10px 0 8px rgba(0, 0, 0, 0.16));
}

.btn {
  font-weight: 700;
  color: #fff;
  height: 52px;
  line-height: 52px;
  display: inline-block;
}

.btn.round {
  background: #0095A8;
  padding: 0 40px;
  border-radius: 26px;
  -webkit-box-shadow: 0 0 8px rgba(0, 0, 0, 0.08);
          box-shadow: 0 0 8px rgba(0, 0, 0, 0.08);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.btn.round.orange {
  background: #ED8D07;
}

.btn.round:hover {
  -webkit-box-shadow: 0 0 8px rgba(0, 0, 0, 0.5);
          box-shadow: 0 0 8px rgba(0, 0, 0, 0.5);
  color: #fff;
  text-decoration: none;
}

.header-right-mobile {
  display: none;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 78px;
  background-color: transparent;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 100;
}

.header.triggered {
  background-color: rgba(255, 255, 255, 0.9);
  -webkit-box-shadow: 10px 0 25px -10px rgba(0, 0, 0, 0.5);
          box-shadow: 10px 0 25px -10px rgba(0, 0, 0, 0.5);
}

.header__nav {
  display: block;
}

.header__ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0;
  margin: 0;
  list-style: none;
}

.header__li {
  margin-left: 20px;
}

.header__li .link-text {
  font-weight: 700;
  color: #222;
  text-decoration: none !important;
  text-transform: uppercase;
}

.header .logo img {
  height: 36px;
  width: auto;
}

.header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.mobile-menu__btn {
  display: none;
}

ul {
  padding-left: 0px;
}

.hukidashi {
  position: relative;
  display: inline-block;
  border-radius: 4px;
  padding: 4px 12px;
  min-width: 120px;
  max-width: 100%;
  color: #fff;
  background: #0095A8;
  -webkit-animation: 2s fuwafuwa infinite;
          animation: 2s fuwafuwa infinite;
}

.hukidashi:before {
  content: "";
  position: absolute;
  top: 98%;
  left: 50%;
  margin-left: -15px;
  border: 12px solid transparent;
  border-top: 12px solid #0095A8;
}

.hukidashi.large {
  background: #ED8D07;
  padding: 20px 36px;
}

.hukidashi.large:before {
  border-top: 12px solid #ED8D07;
}

@-webkit-keyframes fuwafuwa {
  0%, 100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
  }
}

@keyframes fuwafuwa {
  0%, 100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
  }
}

.btn-area {
  text-align: center;
}

.large-button {
  text-align: center;
  min-width: 360px;
  display: block;
  margin: 0 auto;
  padding: 18px 60px;
  border-radius: 60px;
  -webkit-box-shadow: 0 0 0 5px rgba(255, 255, 255, 0.16);
          box-shadow: 0 0 0 5px rgba(255, 255, 255, 0.16);
  color: #fff;
  background-color: #ED8D07;
  width: 40%;
  max-width: 380px;
  -webkit-transition: all .3s;
  transition: all .3s;
}

.large-button p {
  margin: 0;
}

.large-button:hover {
  color: #fff;
  text-decoration: none;
  -webkit-box-shadow: 0 0 0 8px rgba(255, 255, 255, 0.36);
          box-shadow: 0 0 0 8px rgba(255, 255, 255, 0.36);
}

.text-link {
  margin-top: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 8px;
  -webkit-transition: all .3s;
  transition: all .3s;
}

.text-link img {
  width: 16px;
}

.text-link.dark {
  color: #222;
}

.text-link.white {
  color: #fff;
}

.common-cv {
  background-color: #0095A8;
  padding: 32px 0;
  position: relative;
}

.common-cv .hukidashi {
  background: #ED8D07;
  position: absolute;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  left: calc(50% - 68px);
  top: -12px;
}

.common-cv .hukidashi:before {
  border-top: 12px solid #ED8D07;
}

.common-cv .person {
  position: absolute;
  bottom: 0;
  width: 300px;
  z-index: 0;
}

.common-cv.right .person {
  -webkit-transform: scale(-1, 1);
          transform: scale(-1, 1);
  right: 10vw;
}

.common-cv.left .person {
  left: 10vw;
}

.common-cv__inner {
  position: relative;
  z-index: 1;
}

.common-cv__inner h2 {
  font-weight: bold;
  color: #fff;
  text-align: center;
}

.common-cv__btn-area {
  margin-top: 24px;
}

.card {
  background-color: #fff;
  border-radius: 8px;
}

.card.type1 {
  padding: 24px 24px;
  position: relative;
  -webkit-box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.16);
          box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.16);
  width: 32%;
}

.card.type1 .img-box {
  width: 150px;
  height: 150px;
  background-color: #0095A8;
  border: 8px solid #E6EFF0;
  border-radius: 50%;
  position: absolute;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  top: -75px;
  left: 50%;
}

.card.type1 .img-box img {
  width: 80px;
  height: 80px;
  position: relative;
  top: 20%;
}

.card.type1 h3 {
  line-height: 1.5;
}

.card.type2 {
  padding: 24px;
  width: 100%;
}

.card.type2 p {
  margin-bottom: 24px;
}

.card.type3 {
  width: 32%;
  overflow: hidden;
}

.card.type3 .text-area {
  padding: 24px;
}

.card.type3 .text-area h3 {
  line-height: 2;
}

.card.type4 {
  position: relative;
  background-color: #E6EFF0;
  width: calc(50% - 27px);
  padding-top: 53px;
}

.card.type4 h3 {
  color: #fff;
  background-color: #0095A8;
  width: 80%;
  padding: 16px 0;
  border-radius: 40px;
  position: absolute;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  left: 50%;
  top: -28px;
}

.card.type4 img {
  width: 70%;
}

.card.type4 .text-area {
  padding: 24px 48px 48px;
}

.card.type4 .text-area p {
  font-weight: bold;
  line-height: 2;
  text-align: left;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 8px;
}

.card.type4 .text-area p img {
  width: 24px;
  height: auto;
  position: relative;f
  top: 6px;
}

.top {
  background-image: url("https://www.sensyn-robotics.com/hubfs/LP/shoruira-security/top_bg.jpg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
}

.top__inner {
  padding: 100px 0 32px;
  position: relative;
}

.top .mv {
  position: absolute;
  right: -80px;
  width: 60%;
  bottom: 0;
  max-width: 700px;
}

.top .emblems {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  margin: 24px 0;
}

.top .emblems img {
  width: 87px;
}

.top__text {
  display: inline-block;
  margin-top: -16px;
  width: 100%;
}

.top__text h1 {
  font-weight: normal;
  white-space: pre-line;
}

.top__btn-area {
  margin-left: 8%;
  display: inline-block;
  position: relative;
}

.top__btn-area .hukidashi {
  position: absolute;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  top: 0;
  left: calc(50% - 74px);
}

.top__btn-area .large-button {
  display: inline-block;
  margin-left: 0;
  margin-top: 48px;
}

.about {
  background-color: #E6EFF0;
  overflow: hidden;
  text-align: center;
}

.about__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.effects .description-area {
  margin: 24px auto;
}

.effects .description-area p {
  margin-bottom: 0;
}

.effects .description-area p.large {
  font-weight: bold;
}

.effects__inner {
  text-align: center;
}

.problems {
  padding: 64px 0 32px;
}

.problems__inner {
  text-align: center;
}

.problems__flex {
  margin-top: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.problems .solve {
  margin-top: 64px;
  margin-bottom: 16px;
}

.costs .item{
  text-align: center;
  margin: 0 auto 24px;
}
.costs__lists {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 24px;
}

.costs__list {
  width: calc(32% - 12px);
  list-style: none;
  background-color: #fff;
  border-radius: 4px;
  padding: 24px;
  text-align: center;
  -webkit-box-shadow: 4px 4px 16px rgba(0, 0, 0, 0.16);
          box-shadow: 4px 4px 16px rgba(0, 0, 0, 0.16);
}

.costs__list .sub-title {
  margin-bottom: 16px;
  font-size: 32px;
  color: #0095A8;
}

.costs__list p {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 0;
}

.costs__list p .large {
  font-size: 64px;
}

.costs__list p .block {
  display: block;
}

.feature {
  padding-bottom: 150px;
}

.feature__inner {
  text-align: center;
}

.feature__flex {
  margin-top: 62px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 53px;
}

.question {
  padding: 64px 0;
}

.question h2 {
  text-align: center;
  margin-bottom: 24px;
}

.question__inner {
  max-width: 812px;
  margin: 0 auto;
}

.question .accordion-area {
  margin-top: 24px;
}

.question .accordion-area li {
  list-style-type: none;
  background-color: #E6EFF0;
  border-radius: 8px;
  padding: 24px;
}

.question .accordion-area li:not(:last-child) {
  margin-bottom: 24px;
}

.question .accordion-area li .question-area {
  font-weight: bold;
  color: #0095A8;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.question .accordion-area li .question-area .question-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
}

.question .accordion-area li .question-area .question-text .accordion-icon-question {
  font-family: poppins,sans-serif;
}

.question .accordion-area li .question-area img {
  width: 24px;
  height: auto;
  -webkit-transform: rotate(0);
          transform: rotate(0);
  -webkit-transition: all .3s;
  transition: all .3s;
}

.question .accordion-area li .question-area.close img {
  -webkit-transform: rotate(-180deg);
          transform: rotate(-180deg);
}

.question .accordion-area li .box {
  background-color: #fff;
  padding: 24px;
  border-radius: 8px;
  margin-top: 24px;
  display: none;
}

.question .accordion-area li .box p {
  white-space: pre-line;
}

.form {
  background-color: #0095A8;
}

.form__inner {
  max-width: 812px;
  padding: 48px;
  background-color: #fff;
  border-radius: 8px;
}

.form__inner h2 {
  text-align: center;
}

.form__area:not(:last-child) {
  margin-bottom: 24px;
}

.form__area label {
  display: block;
  font-weight: bold;
}

.form__area input {
  width: 100%;
  background-color: #F2F7F7;
  padding: 16px;
  border-radius: 4px;
  border: 1px solid #E6EFF0;
}

.company__inner {
  max-width: 812px;
}

.company h2 {
  text-align: center;
  margin-bottom: 24px;
}

.company table {
  width: 100%;
  border-spacing: 0;
  border-collapse: separate;
  border: 1px solid #D4D4D4;
  border-radius: 8px;
  overflow: hidden;
}

.company table th, .company table td {
  padding: 24px;
  text-align: left;
}

.company table th {
  border-bottom: 1px solid #D4D4D4;
  border-right: 1px solid #D4D4D4;
  font-size: 18px;
  font-weight: bold;
  padding: 24px;
  white-space: nowrap;
}

.company table td {
  border-bottom: 1px solid #D4D4D4;
  font-size: 18px;
  font-weight: bold;
}

.company table tr:last-child th, .company table tr:last-child td {
  border-bottom-style: none;
}

.logo {
  font-size: 42px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.footer {
  background-color: #222;
  padding: 24px 0;
}

.footer__inner {
  text-align: center;
}

.footer__ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  padding: 0;
  margin: 0;
  list-style: none;
  gap: 24px;
}

.footer__li a {
  color: #fff;
}

.footer__li .link {
  text-decoration: underline;
}

.footer__li .link svg {
  fill: #fff;
  width: 16px;
  height: 16px;
  margin-right: 8px;
  vertical-align: middle;
}

.footer__copyright {
  padding: 24px 0 0;
  color: #fff;
}

@media (max-width: 1280px) {
  /******************************************************************

Stylesheet: 1280px以上のモニタで適用

******************************************************************/
  .top__btn-area {
    margin-left: 8%;
  }
}

@media (max-width: 850px) {
  /******************************************************************

Stylesheet: 960px以上のモニタで適用

******************************************************************/
  .font-lmd {
    font-size: 18px;
  }
  .font-lg {
    font-size: 20px;
  }
  .font-slg, h2 span {
    font-size: 24px;
  }
  .title {
    margin-bottom: 16px;
  }
  .sp {
    display: block;
  }
  .pc {
    display: none;
  }
  .footer__li {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .header__nav {
    display: none;
  }
  .header-right-mobile {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 16px;
  }
  .header-right-mobile .btn.mobile {
    font-size: 14px;
    height: 44px;
    line-height: 44px;
    background: #0095A8;
    padding: 0 12px;
    border-radius: 22px;
  }
  .mobile-menu__btn {
    display: block;
  }
  .footer__ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

@media (max-width: 600px) {
  /******************************************************************

Stylesheet: 600px以上のタブレットやモニタで適用

******************************************************************/
  .pb-lg {
    padding-bottom: 32px;
  }
  .p-lg {
    padding: 48px 0;
  }
  .problems__lists {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding-left: 0;
  }
  .problems__list {
    width: 100%;
    margin-top: 0;
  }
  .problems__list:not(:last-child) {
    margin-bottom: 16px;
  }
  .problems__list:nth-child(2) {
    margin-top: 0;
  }
  .problems__list:nth-child(3) {
    margin-top: 0;
  }
  .problems__list:nth-child(5) {
    margin-top: 0;
  }
  .problems__list:nth-child(6) {
    margin-top: 0;
  }
  .products .title-area .ashirai-img {
    width: 80px;
  }
  .products .title {
    padding-left: 0;
  }
  .products__point {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 8px;
    margin-bottom: 16px;
  }
  .products__point .img-area {
    width: 100%;
  }
  .products__point .text-area {
    width: 100%;
    gap: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .products__point .text-area .number {
    font-size: 64px;
  }
  .products__point.reverse {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .products__point.reverse .img-area {
    width: 100%;
  }
  .products__point.reverse .text-area {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  .scene__examples {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding-left: 0;
    gap: 16px;
  }
  .scene__example {
    width: 100%;
  }
  .scene__example .examples {
    padding: 16px;
  }
  .scene__example .examples .example {
    gap: 8px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    overflow: hidden;
  }
  .scene__example .examples .example:not(:last-child) {
    margin-bottom: 24px;
  }
  .scene__example .examples .example img {
    width: 18px;
    height: auto;
  }
  .effects {
    background-color: #F2F7F7;
  }
  .effects__lists {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 16px;
    padding-left: 0;
  }
  .effects__list {
    width: 100%;
    background-color: #fff;
    border-radius: 4px;
    padding: 24px;
    text-align: center;
  }
  .effects__list img {
    width: 180px;
    height: 180px;
    margin-bottom: 24px;
  }
  .effects__list .sub-title {
    white-space: pre-line;
    margin-bottom: 16px;
  }
  .effects__list p {
    text-align: left;
  }
  .costs__lists {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .costs__list {
    width: 100%;
  }
  .costs__list .sub-title {
    margin-bottom: 16px;
    font-size: 32px;
    color: #0095A8;
  }
  .form.p-lg {
    padding: 48px 0 32px;
  }
  .company table th, .company table td {
    display: block;
    width: 100%;
  }
  .company table th {
    font-size: 14px;
    font-weight: normal;
    background-color: #0095A8;
    color: #fff;
    padding: 8px 16px;
  }
  .company table td {
    font-size: 16px;
    padding: 16px;
  }
}

@media (max-width: 480px) {
  /******************************************************************

Stylesheet: 480px以上(スマホの横向き)のモニタで適用

******************************************************************/
  .font-smd, .description, .hukidashi.large, .card.type2 h3, .card.type4 h3, .card.type4 .text-area p, .effects .description-area p, .cost__flex .cost-summary p, .question .accordion-area li .question-area {
    font-size: 14px;
  }
  .font-xmd, h2, .common-cv__inner h2, .card.type1 h3, .card.type3 .text-area h3, .cost__flex .cost-area h3, .cost__flex .cost-area p, .cost__flex .cost-summary p .small, .question .accordion-area li .question-area .question-text .accordion-icon-question {
    font-size: 18px;
  }
  .font-xlg, .cost__flex .cost-area p span, .cost__flex .cost-summary p .large {
    font-size: 28px;
  }
  .large-button {
    min-width: initial;
    max-width: initial;
    padding: 12px 40px;
    width: 100%;
  }
  .common-cv {
    padding: 32px 0;
    position: relative;
    overflow-x: clip;
  }
  .common-cv .person {
    position: absolute;
    bottom: 0;
    width: 210px;
    z-index: 0;
  }
  .common-cv.right .person {
    right: -10vw;
  }
  .common-cv.left .person {
    left: -10vw;
  }
  .common-cv__inner {
    position: relative;
    z-index: 1;
  }
  .common-cv__btn-area {
    margin-top: 24px;
  }
  .card {
    background-color: #fff;
    border-radius: 8px;
  }
  .card.type1 {
    padding: 24px 24px;
    position: relative;
    -webkit-box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.16);
            box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.16);
    width: 100%;
  }
  .card.type1 .img-box {
    width: 100px;
    height: 100px;
    top: -50px;
  }
  .card.type1 .img-box img {
    width: 60px;
    height: 60px;
    top: 13%;
  }
  .card.type2 {
    padding: 16px;
    width: 100%;
  }
  .card.type2 h3 {
    font-size: 18px;
  }
  .card.type2 p {
    font-size: 14px;
  }
  .card.type3 {
    width: 100%;
  }
  .card.type3 .text-area {
    padding: 16px;
  }
  .card.type4 {
    width: 100%;
    padding-top: 43px;
  }
  .card.type4 img {
    width: 100%;
  }
  .card.type4 .text-area {
    padding: 16px;
  }
  .card.type4 .text-area p {
    font-weight: bold;
    line-height: 2;
    text-align: left;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 8px;
  }
  .card.type4 .text-area p img {
    width: 18px;
    height: auto;
    position: relative;
    top: 6px;
  }
  .header .logo img {
    height: 30px;
  }
  .top .mv {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    left: 50%;
    width: 100vw;
  }
  .top .emblems {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin: 16px 0;
  }
  .top .emblems img {
    width: 50px;
  }
  .top__text {
    text-align: center;
  }
  .top__text h1 {
    line-height: 1.1;
  }
  .top__text .top_hukidashi {
    width: 80%;
    margin: 0 auto;
  }
  .top__btn-area {
    margin: 0 auto 230px;
  }
  .about__flex {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 16px;
    margin-top: 16px;
  }
  .effects .description-area {
    margin: 24px auto;
  }
  .effects__flex {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 16px;
  }
  .problems__flex {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 16px;
  }
  .cost__inner {
    text-align: center;
  }
  .cost__inner .hukidashi-area {
    margin: 24px auto;
  }
  .cost__flex {
    gap: 8px;
  }
  .cost__flex .cost-summary {
    border-radius: 14px;
    padding: 16px 0 8px;
  }
  .cost__flex .cost-summary p .large {
    font-size: 48px;
  }
  .cost__flex .cost-summary p .small {
    margin: 0;
  }
  .feature__flex {
    margin-top: 62px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 53px;
  }
  .form__inner {
    padding: 24px;
  }
}
/*# sourceMappingURL=style.css.map */