@charset "utf-8";
/*ローディング*/
.loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 100001;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeOut 1.5s 2.5s forwards;
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    visibility: hidden;
  }
}

.loading__logo {
  opacity: 0;
  animation: logo_fade 2s 0.5s forwards;
  width: 300px;
}

@keyframes logo_fade {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }

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

  100% {
    opacity: 0;
  }
}

/*フェード*/
.fadein {
  opacity: 0;
  transform: translate(0,80px);
  transition: all 600ms;
}

.fadein.left {
  transform: translate(-80px,0px);
}

.fadein.right {
  transform: translate(80px,0);
}

.fadein.top {
  transform: translate(0,-80px);
}

.fadein.scrollin {
  opacity: 1;
  transform: translate(0,0);
}

/*トップへ戻るボタン*/
.top-mark {
  position: fixed;
  right: 1%;
  bottom: 0;
  padding: 1vw;
  cursor: pointer;
  transition: .3s;
  opacity: 0;
  visibility: hidden;
  width: 7vw;
  opacity: 0;
  visibility: hidden;
}

.active{
  opacity: 1;
  visibility: visible;
}

body {
  font-size: 16px;
  font-weight: bold;
  color: #333;
  line-height: 1.5;
  font-family: Helvetica, Arial, メイリオ,'Noto Sans CJK JP',"ヒラギノ角ゴ ProN W3", HiraKakuProN-W3, 游ゴシック, "Yu Gothic", Meiryo, sans-serif;
  height: auto;
  overflow: visible;
}

body.js-fixed {
  height: 100vh;
  overflow: hidden;
}

a {
  color: #333;
  text-decoration: none;
}

img {
  width: 100%;
  height: auto;
}

main {
  margin-top: 100px;
}

/*---------- 動画 ----------*/
.new_you {
  width: 40%; /* 横幅変更 */
  padding: 0;
  margin: 0 auto;
  box-sizing: border-box;
}
.new_you .you-inner {
  padding-top: 56.25%;
  position: relative;
  height: 0;
  overflow: hidden;
}
.new_you .you-inner iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/*---------- PCテキスト改行 ----------*/
.tab-cta {
  display: none;
}

.sp-cta {
  display: none;
}

.pc-cta {
  display: block;
}

.sp-problem-text {
  display: none;
}

.sp-problem-title {
  display: none;
}

.sp-solution-text {
  display: none;
}

.sp-solution-text02 {
  display: none;
}

.sp-solution-text03 {
  display: none;
}

.sp-solution-text04 {
  display: none;
}

.pctab-so01 {
  display: block;
}

.pctab-so02 {
  display: block;
}

.pctab-pro01 {
  display: none;
}

.pctab-pro02 {
  display: none;
}

.pctab-pro03 {
  display: none;
}

.sp-fe-text {
  display: none;
}

.sp-fu01 {
  display: none;
}

.sp-fu02 {
  display: none;
}

.sp-fu03 {
  display: none;
}

.sp-re01 {
  display: none;
}

.fe-03 {
  display: block;
}

/*---------- ヘッダー ----------*/
.header {
  height: 100px;
  background-color: #fff;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header__wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 96%;
  max-width: 1340px;
  margin: auto;
  padding-left: 2%;
  padding-right: 2%;
}

.header-fixed {
  width: 18%;
}

.header-logo {
  transform: translateY(2px);
}

.nav-list {
  display: flex;
  transform: translateY(25px);
  margin-left: 1vw;
}

.item + .item {
  margin-left: 3vw;
}

.item  {
  color: #333;
  font-weight: 900;
  scroll-behavior: ease-in;
}

.nav-tel {
  display: flex;
  align-items: center;
  pointer-events :none;
}

.telicon img {
  width: 22px;
}

.number {
  font-family: Helvetica, Arial,'Noto Sans CJK JP';
  font-size: 20px;
  transform: translateX(8px);
  font-weight: 800;
  margin-right: 5px;
}

.time {
  font-family: Helvetica, Arial,'Noto Sans CJK JP', メイリオ;
  font-size: 13px;
  transform: translateY(-3px);
}

.nav-cta {
  position: relative;
  transform: translateY(7px);
  font-size: clamp(12px, 1.33vw, 16px);
}

.free {
  width: 78%;
  background-color: #fff;
  border: solid 1.5px  #ffa500;
  z-index: 100;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  border-radius: 40px;
  position: absolute;
  top: 0%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding-top: 2px;
  padding-bottom: 2px;
}

.free:before {
  content: "";
  border: 10px solid transparent;
  border-top: 10px solid #fff;
  position: absolute;
  top: 87%;
  left: 50%;
  transform: translateX(-50%);
}

.mail-image01 img{
  width: 80%;
  height: 80%;
  object-fit: contain;
  transform: translateY(-2.7px) translateX(-1px);
}

.message {
  color: #fff;
}

.nav_toggle02 {
  display: none;
}

.ham-nav-tel {
  visibility: hidden;
  opacity: 0;
}

.ham-nav-cta {
  display: none;
}

.contact-last {
  padding: 1.5vw 3vw;
}

/*---------- メインビジュアル ----------*/
.fv-top {
  position: relative;
}

.pcfv {
  display: block !important;
}

.spfv {
  display: none !important ;
}

.nav-cta3 {
  display: none;
}

.fv-cta {
  display: none;
}

.hamburger {
  display: none;
}

.lang {
  display: flex;
  margin-right: 5px;
}

.h-jpt {
  margin-right: 1vw;
  background-color: #dddddd;
  padding: 0px 5px;
  text-transform: uppercase;
}

.h-ent {
  text-transform: uppercase;
}

/*---------- 共通部分 ----------*/
.-gray {
  background-color: #f5f5f5;
}

.cmn-title {
  text-align: center;
}

.inner {
  text-align: center;
  padding-top: 90px;
  overflow: hidden;
}

.icon img {
  width: 47px;
  height: 47px;
}

.cmn-title .sub {
  display: block;
  font-family: Helvetica, Arial;
  font-size: 16px;
  color: #0287cc;
  margin-top: 7px;
  margin-bottom: 20px;
  text-transform:uppercase;
}

.cmn-title .submain {
  display: block;
  font-size: 24px;
}

.cmn-title .main {
  display: block;
  font-size: 40px;
}

.cmn-title .big-color-bar {
  font-size: 52px;
  color: #ffa500;
  border-bottom: 3px solid #ffa500;
}

/*---------- 課題 ----------*/
.inner {
  padding-bottom: 90px;
}

.problem-cont {
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
}

.problem-item {
  display: flex;
  margin-top: 90px;
  justify-content: space-around;
}

.problem-text {
  text-align: center;
  display: flex;
  flex-direction: column-reverse;
}

.problem-image img {
  height: 150px;
  max-width: 150px;
  width: 100%;
  object-fit: cover;
  margin-bottom: 30px;
}

/*---------- 解決 ----------*/
.solution-dot {
  background-image: radial-gradient(circle at center, #333 20%, transparent 20%);
  background-position: top right;
  background-repeat: repeat-x;
  background-size: 1em 0.3em;
  padding-top: .4em;
}

.solution-cont {
  text-align: center;
}

.solution-top {
  display: flex;
  justify-content: center;
  margin-top: 35px;
  margin-bottom: 35px;
}

.solution-company img {
  max-width: 285px;
  width: 100%;
  height: auto;
  transform: translateY(-8px);
}

.solution-mark img {
  width: 30px;
  height: 30px;
  margin-left: 40px;
  margin-right: 40px;
}

.solution-logo img {
  max-width: 280px;
  width: 100%;
  height: auto;
  transform: translateY(-22px) translateX(-22px);
}

.solution-ok {
  margin-bottom: 15px;
}

.solution-color-big-dot {
  transform: translateX(5px);
  transform: translateY(-2px);
  font-size: 36px;
  color: #ffa500;
  background-image: radial-gradient(circle at center, #ffa500 20%, transparent 20%);
  background-position: top right;
  background-repeat: repeat-x;
  background-size: 1em 0.3em;
  padding-top: .4em;
}

.no-dot {
  font-size: 36px;
  color: #ffa500;
}

.de {
  display: inline-block;
  transform: translateX(-5px) translateY(-2px);
}

.solution-text {
  line-height: 2;
  margin-bottom: 4vw;
}

.solution-color {
  color: #ffa500;
  font-size: 28px;
}

.solution-youtube img {
  max-width: 640px;
  width: 100%;
}

/*---------- 選ばれる理由 ----------*/
.features {
  max-width: 1000px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  margin-top: -110px;
}

.inner {
  padding-bottom: -90px;
}

.features-cont {
  padding-top: 90px;
}

.features-cont ul li:nth-child(odd) {
  flex-flow: row-reverse;
}

.features-item {
  display: flex;
  margin-bottom: 90px;
  justify-content: center;
}

.features-item:nth-child(odd) .features-image {
  margin-right: 100px;
}

.features-set {
  width: 50%;
}

.features-text {
  display: flex;
  margin-bottom: 40px;
}

.features-item:nth-child(even) .features-text {
  margin-left: 60px;
}

.features-two {
  font-size: 24px;
  text-align: left;
  flex-grow: 1;
}

.features-one {
  font-size: 76px;
  color: #ffa500;
  transform: translateX(-10px) translateY(-20px);
}

.features-desc {
  width: 82%;
  text-align: left;
}

.features-image img {
  max-width: 454px;
  width: 100%;
}

.features-item:nth-child(odd) .features-desc {
  margin-left: 80px;
}

.features-item:nth-child(even) .features-desc {
  margin-left: -50px;
}

.features-color {
  color: #ffa500;
}

.fe-five {
  margin-left: 80px;
  margin-bottom: 0;
}

.f4 {
  padding-left: 4vw;
}

.f4-01 {
  padding-left: 4vw;
}

/*---------- CTA ----------*/
.cta-section {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  background-image: url(image/cta-back.jpg);
  background-size: cover;
}

.cta-top {
  text-align: center;
  margin-bottom: 30px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.cta-title {
  font-size: 20px;
  background-color: #fff;
  border: solid 2px  #ffa500;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.8;
  position: relative;
  padding-top: 10px;
  padding-bottom: 15px;
}

.cta-big {
  font-size: 42px;
  color: #ffa500;
  border-bottom: 3px solid #ffa500;
}

.cta-text {
  font-size: 28px;
}

.cta-new {
  display: flex;
  justify-content: center;
	align-items: center;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  padding-bottom: 1vw;
}

.cta-new::before,
.cta-new::after {
	content: '';
	width: 2px;
	height: 80px;
	background-color: #333;
}

.cta-new::before {
	margin-right: 50px;
	transform: rotate(-35deg)
}
.cta-new::after {
	margin-left: 50px;
	transform: rotate(35deg)
}

.cta-text-color {
  color: #ffa500;
}

/* 電話・CTA共通 */
.nav-telcta2 {
  display: flex;
  max-width: 900px;
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
  gap: 3.22%;
  margin-top: -2vw;
}

.nav-tel2 {
  display: inline-block;
}

.tel-fit {
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 50px;
  padding: 10px 50px;
}

.telicon2 img {
  width: 30px;
}

.nav-text2 {
  transform: translateX(10px);
}

.number2 {
  font-size: 28px;
  letter-spacing: 1.5px;
  font-family: Helvetica, Arial,'Noto Sans CJK JP';
  transform: translateX(0px);
  font-weight: 800;
}

.time2 {
  font-size: 16px;
  text-align: left;
  letter-spacing: 1.2px;
  font-family: Helvetica, Arial,'Noto Sans CJK JP', メイリオ;
  transform: translateY(-6px) translateX(-6px);
}

.nav-cta2 {
  position: relative;
  font-size: clamp(12px, 1.33vw, 16px);
  /* flex-grow: 1;
  width: 48.89%; */
  max-width: 600px;
  width: 100%;
}

.free2 {
  text-align: center;
  top: -9%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 98;
  font-size: 20px;
  background-color: #fff;
  border: solid 1px  #ffa500;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  border-radius: 40px;
  position: absolute;
}

.free2:before {
  content: "";
  border: 10px solid transparent;
  border-top: 10px solid #fff;
  position: absolute;
  top: 97%;
  left: 50%;
  transform: translateX(-50%);
}

.free3 {
  border: solid 1px  #6B5B53;
  left: 50%;
  top: -2%;
}

.free-image img {
  width: 24vw;
  transform: translateY(1.8vw);
}

.cta-bottom {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #ffa500;
  border-radius: 4em;
  padding: 1.7vw;
}

.pdf-image img {
  width: 24vw;
  transform: translateY(1.8vw);
}

.pdf-bottom {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #6B5B53;
  border-radius: 3em;
  padding: 1.7vw;
}

.pdf-image {
  position: relative;
  z-index: 10000;
}

.free-image {
  position: relative;
  z-index: 10000;
}

.free-image-h img {
  width: 14vw;
}

.free-image-h {
  position: absolute;
  top: 2%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 100;
}

.mail-image-h {
  width: 11%;
  /* transform: translateY(-0.4vw); */
  margin-right: 12px;
  margin-top: -8px;
}

.message-h {
  color: #fff;
}

.cta-bottom-h {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #ffa500;
  border-radius: 3em;
  padding: 1.3vw 2vw;
}

.cta-c3 {
  background: #6B5B53;
}

.siryou {
  width: 6%;
  margin-right: 2.3vw;
  transform: translateX(0vw) translateY(-0.1vw);
}

.siryou img {
  width: 80%;
}

.siryou-m {
  font-size: 1.8vw;
  color: #fff;
  margin-right: 1vw;
}


.mail-image02 img{
  height: 27.89px;
  width: 90%;
  /* transform: translateY(-0.05vw); */
}

.message2 {
  font-size: 1.8vw;
  color: #fff;
  margin-left: 0.5em;
  white-space: nowrap;
}

.otoiawase {
  text-align: center;
  font-size: 22px;
  padding-top: 55px;
  padding-bottom: 10px;
}

/*---------- 高精度へのこだわり ----------*/
.function-cont {
  margin-bottom: 90px;
  margin-top: 70px;
  max-width: 1000px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.fu-all01 {
  text-align: center;
}

.fu-all02 {
  font-size: 32px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
}

.function-color {
  color: #fff;
  background-color: #ffa500;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  line-height: 33px;
  font-size: 24px;
  transform: translateY(-1px);
}

.fu-all03 {
  font-size: 24px;
}

.function-list {
  margin-top: 76px;
  display: flex;
  justify-content: space-between;
  margin-left: auto;
  margin-right: auto;
}

.function-item {
  text-align: center;
  background-color: #fff;
  border-radius: 10px;
  padding-left: 32px;
  padding-right: 32px;
  width: 19%;
}

.function-no {
  font-size: 24px;
  border-bottom: 1px solid #333;
  font-family: Helvetica, Arial;
  display: inline-block;
  margin-bottom: 27px;
  padding-top: 30px;
}

.function-title {
  margin-bottom: 33px;
  font-size: 20px;
  white-space: nowrap;
  color: #ffa500;
}

.function-image img {
  max-width: 118px;
  width: 100%;
}

.function-text {
  margin-top: 23px;
  padding-bottom: 44px;
  text-align: left;
  font-size: 14px;
}

/*---------- 主な対応商品 ----------*/
.inspection-list {
  max-width: 1000px;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  margin-left: auto;
  margin-right: auto;
  margin-top: 76px;
  margin-bottom: 90px;
}

.inspection-item {
  background-color: #fff;
  width: 47%;
  margin: 10px;
  flex-grow: 1;
  border-radius: 10px;
}

.notitle {
  display: flex;
  margin-left: 3vw;
}

.inspection-no {
  display: inline-block;
  border-bottom: 1px solid #333;
  font-size: 28px;
  margin-top: 2vw;
  margin-right: 3vw;
  margin-bottom: 1.5vw;
  font-family: Helvetica, Arial;
}

.inspection-title {
  font-size: 20px;
  color: #ffa500;
  margin-top: 2.5vw;
}

.inspection-desc {
  display: flex;
  margin-left: -2vw;
  margin-bottom: -2vw;
}

.kind {
  margin-left: 60px;
  text-align: left;
}

.kinds01 {
  list-style: disc;
  transform: translateX(16px);
  text-align: left;
}

.kinds02 {
  list-style: disc;
}

.inspection-image img {
  max-width: 110px;
  width: 100%;
  transform: translateX(4vw)translateY(-3.5vw);
}

/*---------- 対応充填機 ----------*/
.dealing-list {
  width: 100%;
  max-width: 970px;
  display: flex;
  justify-content: space-between;
  margin-left: auto;
  margin-right: auto;
  margin-top: 70px;
  padding-bottom: 90px;
}

.dealing {
  text-align: center;
  display: flex;
  flex-direction: column-reverse;
}

.dealing-title {
  font-size: 20px;
  color: #ffa500;
  margin-top: 25px;
  margin-bottom :15px;
}

.dealing-image img {
  max-width: 280px;
  width: 100%;
  border-radius: 5px;
}

.de-03 {
  padding-bottom: 0;
}

/*---------- 製品仕様 ----------*/
.product-cont {
  margin-top: 60px;
  display: flex;
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
}

.product-image img {
  max-width: 300px;
  border-radius: 10px;
  margin-right: 50px;
}

.spec-size {
  font-size: 14px;
  text-align: left;
  margin-top: 5px;
}

.row {
  display: flex;
  white-space: nowrap;
  text-align: left;
  align-items: center;
}

.row:nth-child(odd) {
  background-color: #fff;
}

dt {
  padding: 8px;
  text-align: center;
  width: 32%;
}

dd {
  font-size: 14px;
  flex-grow: 1;
  width: 22%;
  flex-grow: 1;
  padding: 7px;
  padding-right: 85px;
}

.info-list .row dd:nth-child(odd) {
  background-color:#fff
  }

.product-play {
  margin-top: 90px;
}

.product-one {
  display: flex;
  margin-top: 60px;
  max-width: 850px;
  margin-left: auto;
  margin-right: auto;
  justify-content: space-between;
  transform: translateX(30px);
}

.product-desc {
  width: 34%;
  font-size: 16px;
}

.product-text-top {
  text-align: left;
  margin-bottom: 35px;
}

.product-text-bottom {
  text-align: left;
}

.product-color {
  color: #ffa500;
}

.product-play-image img{
  max-width: 450px;
  transform: translateX(-50px);
  border-radius: 5px;
}

/*---------- 導入の流れ ----------*/
.flow-inner {
  padding-bottom: 90px;
}

.flow-cont {
  margin-top: 80px;
  max-width: 1000px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.flow-item {
  display: flex;
  justify-content: center;
}

.flow-step {
  color: #ffa500;
  margin-bottom: 3px;
  text-transform: uppercase;
}

.flow-image img {
  max-width: 77px;
  width: 100%;
  margin-bottom: 60px;
}

.flow-image {
  position: relative;
}

.flow-image:after {
  content: "";
  height: 25%;
  position: absolute;
  left: 50%;
  top: 66%;
  border: 1px dashed #333;
}

.last-image:after {
  content: none;
}

.flow-two {
  margin-left: 20px;
  margin-top: 25px;
  max-width: 600px;
  width: 100%;
}

.flow-title {
  text-align: left;
  font-size: 24px;
}

.flow-text {
  margin-top: 10px;
  text-align: left;
}

.last-image img{
  margin-bottom: -60px;
}

/*---------- レビュー ----------*/
.re-margin {
  margin-top: 30px;
}

.review {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-left: auto;
  margin-right: auto;
  max-width: 1000px;
  width: 96%;
  padding-left: 2%;
  padding-right: 2%;
}

.review-cont {
  width: 46.6%;
  margin-top: 70px;
}

.review-top {
  background-color: #fff;
  border-radius: 20px 20px 20px 0;
  box-shadow: 0px 6px 6px 0px rgba(0, 0, 0, 0.3);
  max-width: 466px;
  width: 100%;
}

.review-title {
  padding-left: 45px;
  padding-top: 30px;
  margin-bottom: 30px;
  font-size: 20px;
  text-align: left;
}





.r_title {
  display: flex;
  align-items: center;
  padding-top: 20px;
}

.r_build img{
  border-radius: 20px 20px 0 0;
}

.r_product {
  display: flex;
  align-items: center;
  justify-content: center;
}

.r_logo img {
  width: 100px;
  margin-left: 4vw;
}

.m_logo img {
  width: 150px;
  margin-left: 2.5vw;
}

.r_pro {
  width: 90px;
}

.r_pro01 {
  width: 100px;
  margin-left: 10px;
}

.h_pro {
  width: 90px;
}

.h_pro01 {
  width: 90px;
  margin-left: 10px;
}

.m_pro {
  width: 80px;
}

.m_pro01 {
  width: 100px;
  margin-left: 30px;
}

.r_msg {
  padding-bottom: 20px;
}

.r_link {
  padding-top: 10px;
    padding-bottom: 10px;
    display: inline-block;
    background-color: #0287cc;
    padding-left: 60px;
    padding-right: 60px;
    color: #fff;
    border-radius: 50px;
    margin-bottom: 40px;
    margin-top: 20px;
}

.review-text {
  padding-left: 45px;
  padding-right: 55px;
  padding-bottom: 30px;
  padding-top: 20px;
  text-align: left;
  word-break: break-all;
}

.re-d {
  margin-top: 120px;
}

.review-bottom {
  display: flex;
  max-width: 304px;
  width: 100%;
}

.review-image img {
  max-width: 67px;
  width: 100%;
  transform: translateY(17px);
}

.review-desc {
  margin-top: 23px;
  text-align: left;
  transform: translateX(1.2vw);
  word-break: break-all;
  white-space: nowrap;
}

/*---------- FAQ ----------*/
.m-faq {
margin-bottom: 60px;
}

.faq-list {
  width: 48.61%;
  margin-left: auto;
  margin-right: auto;
}

.faq-item {
  text-align: center;
}

.faq-image img {
  width: 50px;
}

.faq-title {
  font-size: 20px;
  margin-bottom: 30px;
  margin-top: 45px;
  text-align: left;
}

.faq-text {
  text-align: left;
}

.faq-color {
  color: #ffa500
}

.hr01 {
  margin-top: 45px;
  margin-bottom: 45px;
}

.hr02 {
  margin-bottom: -0px;
}

/*---------- 問い合わせ（旧） ----------*/
.contact-section {
  text-align: center;
}

.form-button {
  position: relative;
}

.form-btn {
  width: 300px;
}

.form-mark {
  position: absolute;
  top: 0;
  left: 55%;
}

.form-mark img {
  width: 15.4px;
}

.form-btn:after {
  content: url(image/mark.svg);
}

/*---------- 問い合わせ（新） ----------*/
.contact-section {
  padding-top: 8vw;
  padding-bottom: 8vw;
}

.powered-none {
  display: none;
}

.co-area {
  border: none;
}

.co-area {
  text-align: left;
  font-size: 16px;
  border: none;
  max-width: 700px;
  width: 100%;
  padding-left: 2%;
  padding-right: 2%;
  padding-top: 1.2vw;
  padding-bottom: 1.2vw;
  border-radius: 5px;
  margin-top: 0.3vw;
  font-family: Helvetica, Arial, メイリオ, 'Noto Sans CJK JP', "ヒラギノ角ゴ ProN W3", HiraKakuProN-W3, 游ゴシック, "Yu Gothic", Meiryo, sans-serif;
}

.co-text {
  text-align: left;
  font-size: 20px;
}

.co-form {
  max-width: 700px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 2vw;
}

.co-01 {
  background-color: #ffa500;
  color: #fff;
  margin-right: 2vw;
  font-size: 16px;
  padding: 0.2vw 0.6vw;
  border-radius: 3px;
}

.co-02 {
  background-color: #6B5B53;
  color: #fff;
  margin-right: 2vw;
  font-size: 16px;
  padding: 0.2vw 0.6vw;
  border-radius: 3px;
}

.co-main {
  margin-bottom: 6vw;
}

.co-03 {
  font-family: Helvetica, Arial, メイリオ, 'Noto Sans CJK JP', "ヒラギノ角ゴ ProN W3", HiraKakuProN-W3, 游ゴシック, "Yu Gothic", Meiryo, sans-serif;
  font-size: 24px;
  border: none;
  max-width: 700px;
  width: 100%;
  padding-left: 2%;
  padding-right: 2%;
  padding-top: 2vw;
  padding-bottom: 2vw;
  border-radius: 5px;
  margin-top: 0.3vw;
  background-color: #ffa500;
  color: #fff;
  font-weight: bold;
  cursor: pointer;
}

.co-04 {
  font-family: Helvetica, Arial, メイリオ, 'Noto Sans CJK JP', "ヒラギノ角ゴ ProN W3", HiraKakuProN-W3, 游ゴシック, "Yu Gothic", Meiryo, sans-serif;
  font-size: 24px;
  cursor: pointer;
}

.co-radio-btn {
  cursor: pointer;
  text-align: left;
  font-size: 18px;
  transform: translateY(3px);
  margin-left: 3vw;
}

.co-radio {
  display: flex;
}

.co-left {
  margin-right: 1vw;
}
/*---------- フッター ----------*/
.footer {
  justify-content: center;
  text-align: center;
  max-width: 900px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.f-inner {
  padding-bottom: 0px;
}

.footer-logo img {
  max-width: 230px;
  width: 100%;
}

.address {
  margin-top: 40px;
}

.footer-top-url {
  margin-top: 40px;
}

.footer-url {
  margin-top: 30px;
  margin-bottom: 30px;
  color: #0287cc;
  transition: all  0.5s ease;
}

.footer-url:hover {
  opacity: 0.7;
  transition: all  0.5s ease;
}

.hr03 {
  width: 69.4%;
  margin-bottom: -60px;
  margin-top: 50px;
}

.copyright {
  margin-top: 90px;
  padding-bottom: 30px;
  font-size: 14px;
}

/*---------- PC~TAB調整 ----------*/
@media screen and (max-width: 1000px) {
.fe-03 {
    display: none;
  }

.features-cont {
  padding-left: 2%;
  padding-right: 2%;
}

.top-mark {
  width: 10vw;
}
}

/*---------- タブレット ----------*/
@media screen and (max-width: 849px) {

/*---------- タブレットテキスト改行 ----------*/
.tab-cta {
  display: block;
}

/*---------- タブレット トップへ戻るボタン ----------*/
.top-mark {
  width: 10vw;
}

/*---------- タブレットハンバーガー ----------*/

.hamburger {
  position: absolute;
  top: 50%;
  left: 90%;
  transform: translate(-50%, -50%);
  width: 8vw;
  height: 6vw;
}

.hamburger-line:nth-child(1){
  position: absolute;
  top:0;
  left: 50%;
  width: 100%;
  height: 2px;
  background-color: rgb(0, 0, 54);
  transform: translateX(-50%);
  transition: 0.5s;
  transform-origin: center;
}

.hamburger-line:nth-child(2){
  position: absolute;
  top:50%;
  left: 0;
  transform: translateY(-50%);
  width: 100%;
  height: 2px;
  background-color: rgb(0, 0, 54);
  transition: 0.5s;
}

.hamburger-line:nth-child(3){
  position: absolute;
  bottom:0;
  left: 50%;
  width: 100%;
  height: 2px;
  background-color: rgb(0, 0, 54);
  transform: translateX(-50%);
  transition: 0.5s;
}

.hamburger.show .hamburger-line:nth-child(1) {
  top:50%;
  transform: translate(-50%, -50%) rotate(45deg);
}

.hamburger.show .hamburger-line:nth-child(2) {
  opacity: 0;
}

.hamburger.show .hamburger-line:nth-child(3) {
  bottom:50%;
  transform: translate(-50%, 50%)rotate(-45deg);
}

.nav {
  position: fixed;
  top: 3rem;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity .5s, visibility .5s;
}

.nav.show {
  opacity: 1;
  visibility: visible;
  background: #fff;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 11vw;
  padding-left: 8vw;
}

.nav-list {
  display: initial;
}

.nav-list a {
  display: inline-block;
}

.nav-list .item {
  margin-top: 7vw;
  font-size: 3vw;
}

.item + .item {
  margin-left: 0;
}

.ham-nav-tel {
  margin-top: 4vw;
  margin-bottom: 5vw;
  visibility: visible;
  opacity: 1;
}

.ham-nav-cta {
  display: inline-block;
  width: 50vw;
  position: relative;
}

.ham-t img{
  width: 4vw;
}

.header-fixed {
  width: 28%;
}

.ham-number {
  font-size: 4vw;
}

.ham-time {
  font-size: 2vw;
}

.ham-message {
  font-size: 3vw;
  margin-left: 2vw;
}

.ham-free img {
  width: 35vw;
  top: 0%;
  left: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
  z-index: 10000;
}

.ham-cta-bottom {
  padding: 3vw;
  border-radius: 4em;
}

/*---------- タブレットヘッダー ----------*/
.hamburger {
  display: block;
}

.cta-contact007 {
  padding: 1.25em 3vw;
}

.header__wrapper {
  justify-content: space-between;
  width: 90%;
}

.tab-nav-tel {
  display: none;
}

.tab-nav-cta {
  display: none;
}

.free {
  font-size: 12px;
}

.free:before {
  top: 91%;
}

.mail-image01 img {
  transform: translateY(-2px);
}

.tab-nav-cta .show {
  transform: translateY(300px) translateX(12px);
}

.lang {
  margin-right: 12vw;
  font-size: 3vw;
}

.h-jpt {
  margin-right: 2vw;
}

/*---------- タブレット共通部分 ----------*/
.inner {
  padding-top: 80px;
  padding-bottom: 80px;
}

.cmn-title .submain {
  font-size: 20px;
}

.cmn-title .main {
  font-size: 28px;
}

.cmn-title .big-color-bar {
  font-size: 40px;
}

/*---------- タブレット課題 ----------*/
.problem-item {
  margin-top: 80px;
}

.problem-cont {
  max-width: 800px;
}

.problem-desc {
  max-width: 250px;
}

.problem-image img {
  height: 130px;
  max-width: 130px;
}

/*---------- タブレット解決 ----------*/
.solution-company img {
  max-width: 250px;
}

.solution-mark img {
  width: 27px;
  height: 27px;
}

.solution-logo img {
  max-width: 240px;
}

.solution-youtube img {
  max-width: 649px;
  width: 100%;
}

.solution-color {
  font-size: 24px;
}

.solution-text {
  margin-bottom: 4vw;
}

/*---------- タブレット選ばれる理由 ----------*/
.features {
  max-width: 750px;
}

.features-cont {
  padding-top: 80px;
}

.features-image img {
  max-width: 280px;
}

.features-item:nth-child(odd) .features-desc {
  transform: translateX(60px);
}

.features-item:nth-child(odd) .features-desc {
  margin-left: 0;
}

.features-item:nth-child(odd) .features-image {
  transform: translateX(45px);
}

.features-item:nth-child(even) .features-set {
  transform: translateX(30px);
}

.features-text {
  margin-bottom: 28px;
}

.features-one {
  font-size: 60px;
  transform: translateX(-10px) translateY(-14px);
}

.features-two {
  font-size: 20px;
}

.features-desc {
  width: 72%;
}

.fe-five {
  margin-left: 0px;
  transform: translateX(30px);
}

.f4 {
  padding-left: 0vw;
}

.f4-01 {
  padding-left: 0vw;
}

/*---------- タブレットCTAエリア ----------*/
.nav-cta2 {
  max-width: 460px;
}

.cta-top {
  width: 72%;
}

.cta-text {
  font-size: 30px;
  padding-bottom: 10px;
}

.cta-title {
  font-size: 18px;
}

.cta-text::after {
  height: 100px;
}

.cta-big {
  font-size: 38px;
  border-bottom: 2.8px solid #ffa500;
}

.nav-telcta2 {
  width: 74%;
}

.cta-contact2 {
  width: initial;
  max-width: initial;
  height: 100%;
}

.siryou {
  width: 8%;
}

.siryou-m {
  font-size: 18px;
}

.mail-image02 img {
  height: 20px;
}

.message2 {
  font-size: 16px;
}

.free2 {
  width: 75%;
  font-size: 14px;
  padding-bottom: 3px;
}

.free3 {
  left: 50%;
  width: 75%;
}

.otoiawase {
  padding-top: 50px;
}

.tel-fit {
  padding: 10px 40px;
}

.telicon2 img {
  width: 27px;
}

.number2 {
  font-size: 25px;
  letter-spacing: 1.4px;
  transform: translateY(-1px);
}

.time2 {
  font-size: 15px;
  transform: translateY(-5px) translateX(-7px);
}

/*---------- タブレット高精度 ----------*/
.function-cont {
  max-width: 750px;
  margin-bottom: 80px;
  margin-top: 60px;
}

.function-color {
  width: 28px;
  height: 28px;
  line-height: 30px;
  font-size: 22px;
  transform: translateY(-2px);
}

.function-list {
  margin-top: 68px;
}

.function-no {
  font-size: 20px;
  margin-bottom: 25px;
  padding-top: 26px;
}

.function-title {
  margin-bottom: 30px;
  font-size: 16px;
}

.function-image img {
  max-width: 105px;
  width: 100%;
}

.function-text {
  margin-top: 18px;
  padding-bottom: 38px;
  font-size: 13px;
}

.fu-all02 {
  font-size: 26px;
}

.fu-all03 {
  font-size: 20px;
}

.inspection-list {
  max-width: 750px;
  margin-top: 58px;
  margin-bottom: 70px;
}

.inspection-item {
  margin: 10px;
  padding-bottom: 0px;
}

.notitle {
  margin-left: 30px;
}

.inspection-no {
  font-size: 24px;
  margin-top: 24px;
  margin-right: 25px;
  margin-bottom: 25px;
}

.inspection-title {
  font-size: 18px;
  margin-top: 32px;
}

.inspection-image img {
  max-width: 80px;
  width: 100%;
  transform: translateX(3vw) translateY(-4vw);
}

.inspection-desc {
  margin-left: 0vw;
}

.kind {
  margin-left: 5vw;
  white-space: nowrap;
  margin-top: -1vw;
  font-size: 14px;
}

.kinds01 {
  transform: translateX(2px);
}

.kinds02 {
  transform: translateX(-9px);
  text-align: left;
}

.dealing-cont {
  max-width: 790px;
  margin: auto;
}

.dealing-list {
  width: 90%;
}

.dealing-image img {
  max-width: 280px;
}

.de-01 {
  margin-left: 2vw;
  margin-right: 2vw;
}

/*---------- タブレット製品仕様 ----------*/
.product-image img {
  max-width: 285px;
  margin-right: 30px;
}

.row {
  max-width: 100%;
}

dt {
  width: 100px;
  padding: 6px 7px;
  white-space: nowrap;
  margin-right: 0;
  font-size: 16px;
}

dd {
  text-align: left;
  padding: 6px 10px;
  font-size: 14px;
  white-space: nowrap;
  padding-left: 20px;
}

.product-one {
  max-width: 750px;
}

.product-desc {
  flex-grow: 1;
}

.product-text-top {
  width: 74%;
}

.product-text-bottom {
  width: 75%;
}

.product-play-image img {
  max-width: 350px;
  width: 100%;
}

/*---------- タブレット導入の流れ ----------*/
.flow-cont {
  max-width: 750px;
}


/*---------- タブレットレビュー ----------*/
.review {
  max-width: 750px;
}

.review-title {
  padding-left: 40px;
  padding-top: 40px;
  margin-bottom: 20px;
  font-size: 18px;
}

.review-text {
  padding-left: 40px;
  padding-right: 50px;
  padding-bottom: 35px;
  font-size: 16px;
}

.review-image img {
  max-width: 62px;
}

/*---------- タブレットFAQ ----------*/
.faq-image img {
  width: 45px;
}

.faq-list {
  max-width: 68.61%;
  width: 100%;
}

.m-faq {
  margin-bottom: 50px;
}

.faq-title {
  margin-bottom: 25px;
  margin-top: 35px;
}

/*---------- タブレットフッター ----------*/
.footer {
  max-width: 750px;
}

.copyright {
  padding-bottom: 0;
}

}

/*---------- SP ----------*/
@media screen and (max-width: 750px) {

.new_you {
    width: 80%; /* 横幅変更 */
}

/*---------- SP FV ----------*/
.fv-m {
  font-size: 6vw;
  white-space: nowrap;
}

.fv-cta {
  display: block;
}

.cta-bottom2 {
  margin: auto;
  max-width: 690px;
  width: 100%;
}

/*---------- SPテキスト改行 ----------*/
.sp-cta {
  display: block;
}

.pc-cta {
  display: none;
}

.sp-problem-text {
  display: block;
}

.sp-problem-title {
  display: block;
}

.sp-solution-text {
  display: block;
}

.sp-solution-text02 {
  display: block;
}

.sp-solution-text03 {
  display: block;
}

.sp-solution-text04 {
  display: block;
}

.pctab-so01 {
  display: none;
}

.pctab-so02 {
  display: none;
}

.pctab-pro01 {
  display: block;
}

.pctab-pro02 {
  display: block;
}

.pctab-pro03 {
  display: block;
}

.sp-fe-text {
  display: block;
}

.sp-fu01 {
  display: block;
}

.sp-fu02 {
  display: block;
}

.sp-fu03 {
  display: block;
}

.sp-re01 {
  display: block;
}

/*---------- SP共通 ----------*/
.inner {
  padding-top: 8vw;
  padding-bottom: 8vw;
  padding-left: 2%;
  padding-right: 2%;
}

.fe-a {
  padding-top: 5vw;
}

.icon img {
  width: 10vw;
}

.cmn-title .sub {
  font-size: 5vw;
  margin-bottom: 10px;
}

.cmn-title .submain {
  font-size: 6.4vw;
  width: 90%;
  margin: auto;
}

.cmn-title .main {
  font-size: 7.5vw;
  width: 100%;
  margin: auto;
}

.cmn-title .big-color-bar {
  font-size: 10.5vw;
}

/*---------- SPヘッダー ----------*/
.header {
  height: 13vw;
}

main {
  margin-top: 13vw;
}

.nav_toggle02 {
  width: 9.7vw;
  height: 6.5vw;
  margin-right: 5vw;
}

.header-fixed {
  width: 32vw;
}

.header__wrapper {
  max-width: 750px;
  width: 100%;
}

.fv-cta {
  position: absolute;
  top: 77%;
  left: 0%;
  right: 0%;
  margin: auto;
}

.message3 {
  white-space: nowrap;
}

.lang {
  margin-right: 18vw;
  font-size: 4vw;
}

.h-jpt {
  margin-right: 3vw;
}


/*---------- SPハンバーガーメニュー内 ----------*/
.nav a {
  pointer-events: none;
}

.nav.show a {
  pointer-events: all;
}

.nav.show {
  opacity: 1;
  visibility: visible;
  background: #fff;
  width: 100%;
  height: 100%;
  position: fixed;
  padding-left: 3vw;
  padding-top: 6vw;
  top: 13vw;
}

.nav_toggle02.show i:nth-child(1) {
  transform: translateY(5vw) rotate(-45deg);
}

.nav_toggle02.show i:nth-child(3) {
  transform: translateY(-1vw) rotate(45deg);
}

.message-last {
  padding-left: 6vw;
  padding-right: 6vw;
}

.img-last img {
  transform: translateX(5vw) translateY(-0.7vw);
}

.nav-tel {
  pointer-events: all;
}

.ham-nav-tel {
  margin-top: 6vw;

}

.ham-message {
  white-space: nowrap;
  font-size: 5vw;
  margin-left: 3vw;
}

.ham-free img {
  width: 60vw;
  top: 0%;
  left: 93%;
}

.ham-free img{
  z-index: 1000;
}

.nav-list .item {
  font-size: 7vw;
}

.ham-t img {
  width: 7vw;
}

.ham-number {
  font-size: 8vw;
}

.ham-time {
  font-size: 4vw;
  transform: translateY(-2vw);
}

.ham-text {
  margin-left: 1vw;
}

.ham-nav-tel {
  margin-top: 10vw;
  margin-bottom: 12vw;
}

.ham-message {
  font-size: 6vw;
}

.ham-cta-bottom {
  width: 94vw;
  padding-left: 2%;
  padding-right: 2%;
}

.mail-image img {
  width: 7vw;
}

/*---------- SPメインビジュアル ----------*/
.pcfv {
  display: none !important;
}

.spfv {
  display: block !important ;
}

/*---------- SP課題 ----------*/
.problem-inner {
  padding-bottom: 0;
}

.problem-cont {
  max-width: 690px;
  width: 100%;
}

.problem-cont {
  max-width: 690px;
  width: 100%;
}

.problem-item {
  display: block;
  margin-top: 7vw;
}

.problem-image img {
  max-width: 430px;
  width: 100%;
  height: 300px;
  object-fit: contain;
}

.problem-desc {
  font-size: 4.8vw;
  max-width: 100%;
  margin: auto;
  margin-top: 2.5vw;
  margin-bottom: 8vw;
}

/*---------- SP解決 ----------*/
.solution-top {
  display: block;
  margin-top: 4.5vw;
  margin-bottom: 4.5vw;
}

.solution-company img {
  max-width: 690px;
  width: 92%;
  padding-left: 4%;
  padding-right: 4%;
}

.solution-mark img {
  width: 7vw;
  height: 54px;
  margin-top: 1vw;
}

.solution-logo img {
  max-width: 500px;
  margin-top: -2vw;
  width: 80%;
  margin-left: 5%;
  margin-right: 5%;
  transform: translateY(0px) translateX(0px);
}

.solution-color-big-dot {
  font-size: 10vw;
  color: #ffa500;
}

.de {
  font-size: 140%;
  transform: translateX(-5px) translateY(0px);
}

.solution-text {
  max-width: 690px;
  width: 100%;
  font-size: 4vw;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 5vw;
}

.solution-color {
  font-size: 4.8vw;
}

.solution-youtube img {
  margin-top: 8vw;
  width: 92%;
  margin-left: 4%;
  margin-right: 4%;
}

/*---------- SP選ばれる理由 ----------*/
.features-cont {
  padding-top: 11vw;
  padding-left: 2%;
  padding-right: 2%;
  width: 96%;
}

.features {
  max-width: 690px;
  margin-top: -12vw;
}

.features-item {
  display: block;
}

.features-item:nth-child(odd) .features-desc {
  transform: translateX(0px);
  margin-left: 0px;
}

.features-item:nth-child(odd) .features-image {
  transform: translateX(0px);
}
.features-item:nth-child(odd) .features-image {
  margin-right: 0px;
}

.features-item:nth-child(even) .features-desc {
  margin-left: 0px;
}

.features-item:nth-child(even) .features-set {
  transform: translateX(0px);
}

.features-item:nth-child(even) .features-text {
  margin-left: 0px;
}

.features-set {
  width: 100%;
}

.features-one {
  font-size: 16vw;
  transform: translateX(0vw) translateY(-4vw);
}

.features-two {
  font-size: 5.3vw;
  transform: translateX(1vw);
}

.features-desc {
  font-size: 4.4vw;
  width: 100%;
  margin-bottom: 5vw;
}

.features-image img {
  max-width: 500px;
  width: 100%;
}

.fe-five {
  margin-left: 0px;
  transform: translateX(0px);
}

.features-text {
  margin-bottom: -2vw;
}

/*---------- SP CTAエリア ----------*/
.nav-cta {
  transform: translateY(0px);
}

.fv-cta {
  transform: translateY(7px);
}

.nav-cta3 {
  position: absolute;
  bottom: 0;
  left:50%;
  transform: translateX(-50%);
  display: block;
  margin-bottom: 0px;
}

.cta-top {
  max-width: 690px;
  width: 92%;
  margin-left: 4%;
  margin-right: 4%;
  margin-bottom: 3vw;
}

.nav-telcta2 {
  max-width: 690px;
  flex-direction: column;
  width: 100%;
}

.cta-contact2 {
  border-radius: 6em;
  height: 18vw;
  /* margin-top: -4vw; */
}

.nav-cta2 {
  max-width: 690px;
  width: 96%;
  margin: auto;
}

.siryou-m {
  font-size: 6vw;
  margin-left: 5vw;
}

.siryou {
  width: 6%;
  margin-right: 0vw;
}

.message2 {
  font-size: 6vw;
}

.mail-image02 {
  width: initial;
}

.mail-image02 img {
  height: auto;
  width: 6vw;
}

.free2 {
  width: initial;
  white-space: nowrap;
  top: -4%;
  font-size: 4vw;
  padding: 0.8vw 14vw;
}

.free3 {
  width: initial;
  white-space: nowrap;
  top: 0%;
  font-size: 3.5vw;
  padding: 0.8vw 14vw;
}

.free:before {
  top: 97%;
  border: 2.5vw solid transparent;
  border-top: 2.5vw solid #fff;
}

.cta-text {
  font-size: 4.1vw;
  padding-bottom: 0px;
}

.cta-new::before {
  height: 16vw;
  margin-left: 5%;
}

.cta-new::after {
  height: 16vw;
  margin-right: 5%;
}

.cta-new {
  padding-bottom: 20px;
}

.cta-big {
  font-size: 6.5vw;
}

.cta-title {
  font-size: 4vw;
  padding-left: 2%;
  padding-right: 2%;
}

.otoiawase {
  padding-top: 2vw;
  font-size: 4vw;
  margin-top: 11vw;
}

.tel-fit {
  border-radius: 9vw;
  justify-content: center;
  border-radius: 6em;
  padding: 1vw 14vw;
}

.telicon2 img {
  width: 6vw;
}

.time2 {
  font-size: 4vw;
  transform: translateY(-5px) translateX(0px);
}

.number2 {
  font-size: 6vw;
  transform: translateY(-1px) translateX(10px);
}

.mail-image03 img {
  transform: translateX(50px);
}

.nav-cta4 {
  max-width: 690px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.m4 {
  transform: translateX(0vw);
  font-size: 5.5vw;
}

.mail4 img{
  transform: translateX(0vw)translateY(0vw);
  width: 6vw;
}

.nav-text2 {
  transform: translateX(0px);
}

.nav-tel2 {
  transform: translateX(0px);
  width: 90vw;
}

.free4 {
  top: 0%;
}

.cta-c3 {
  margin-bottom: 5vw;
}

.pdf-image img {
  width: 60vw;
  transform: translateY(5vw);
}

.pdf-bottom {
  border-radius: 6em;
  padding: 3.5vw;
  margin-bottom: 3vw;
}

.cta-bottom {
  border-radius: 6em;
  padding: 3.5vw;
}

.cta-bottom2 {
  width: 93vw;
  padding-left: 2%;
  padding-right: 2%;
}

.free-image img {
  width: 60vw;
  transform: translateY(5vw);
  margin: auto;
  display: block;
}

.free-image2 img {
  margin: auto;
  display: block;
}

/*---------- SP 高精度 ----------*/
.function-cont {
  max-width: 690px;
  margin-bottom: 8vw;
  margin-top: 8vw;
}

.function-color {
  width: 5vw;
  height: 5vw;
  font-size: 3.5vw;
  line-height: 5.2vw;
}

.fu-all02 {
  font-size: 5vw;
}

.fu-all03 {
  font-size: 4vw;
  margin-left: 5%;
  margin-right: 5%;
}

.function-list {
  flex-wrap: wrap;
  width: 92%;
  margin-left: 4%;
  margin-right: 4%;
  margin-top: 9vw;
}

.function-item {
  width: 48%;
  margin-bottom: 25px;
}

.function-title {
  font-size: 4.5vw;
}

.function-no {
  font-size: 32px;
}

.function-text {
  font-size: 4.3vw;
  padding-bottom: 60px;
}

.function-image img {
  max-width: 140px;
}

.inspection-list {
  max-width: 690px;
  display: block;
  margin-top: 8vw;
  margin-bottom: 9vw;
}

.inspection-item {
  margin-left: auto;
  margin-right: auto;
  max-width: 690px;
  width: 92%;
  margin-bottom: 4vw;
}

.inspection-title {
  font-size: 5vw;
  margin-top: 3.8vw;
}

.inspection-no {
  font-size: 6vw;
  margin-right: 3vw;
  margin-bottom: 3vw;
  margin-top: 3vw;
}

.inspection-desc {
  display: flex;
  margin-bottom: 0vw;
}

.inspection-image img {
  max-width: 120px;
  width: 17vw;
  margin-left: 4.5vw;
  transform: translateX(2.5vw) translateY(-5vw);
}

.re-ins {
  display: flex;
}

.notitle {
  transform: translateX(6vw);
  margin-left: 0;
}

.kind {
  font-size: 3.5vw;
  margin-left: 0;
  margin-top: 0vw;
}

.kinds01 {
  transform: translateX(10vw);
}

.kinds02 {
  margin-left: 21vw;
}

.dealing-cont {
  max-width: 690px;
}

.dealing-list {
  display: block;
  margin-top: 8vw;
}

.dealing-title {
  font-size: 5.5vw;
  margin-top: 3vw;
  margin-bottom: 2vw;
}

.dealing-text {
  font-size: 4.5vw;
  margin-bottom: 8vw;
}

.dealing-image img {
  border-radius: 1.5vw;
  max-width: 600px;
  width: 100%;
}

.d-margin {
  margin-bottom: 0px;
}

/*---------- SP 製品仕様 ----------*/
.product-play-image img {
  transform: translateX(0px);
}

.product-cont {
  max-width: 690px;
  width: 100%;
  display: block;
}

.product-play {
  margin-top: 10vw;
}

.product-image img {
  margin-right: 0px;
  max-width: 690px;
}

.spec-size {
  font-size: 3.8vw;
  text-align: center;
  margin-top: 1.2vw;
}

.product-info {
  display: inline-block;
  margin-top: 30px;
  max-width: 690px;
  width: 100%;
}

dd {
  white-space: wrap;
  font-size: 3.7vw;
  padding-left: 2.5vw;
}

dt {
  width: 30%;
  font-size: 4vw;
}

.row {
  align-items: center;
  padding-top: 5px;
  padding-bottom: 5px;
}

.product-one {
  max-width: 690px;
  flex-direction: column-reverse;
  transform: translateX(0px);
}

.product-text-top {
  width: 92%;
  font-size: 4.3vw;
  margin-bottom: 5vw;
  margin-top: 5vw;
  max-width: 590px;
  margin-left: auto;
  margin-right: auto;
}

.product-desc {
  width: 100%;
}

.product-text-bottom {
  width: 92%;
  font-size: 4.3vw;
  max-width: 590px;
  margin-left: auto;
  margin-right: auto;
}

.product-play-image img {
  max-width: 590px;
  width: 92%;
}

.product-one {
  margin-top: 3vw;
}

/*---------- SP フロ－ ----------*/
.flow-cont {
  max-width: 690px;
  width: 90%;
  margin-left: 5%;
  margin-right: 5%;
  margin-top: 0px;
}

.last-image img{
  margin-bottom: -60px;
}

.flow-step {
  font-size: 3.2vw;
  margin-bottom: 5px;
}

.flow-image img {
  max-width: 130px;
  width: 100%;
  margin-bottom: 8vw;
}

.flow-image:after {
  height: 45%;
  top: 77%;
  margin-top: 5px;
}

.flow-title {
  font-size: 5.3vw;
}

.flow-text {
  font-size: 3.7vw;
  margin-top: 0px;
}

.flow-item {
  margin-top: 40px;
}

.flow-two {
  margin-top: 6.7vw;
  max-width: 510px;
  margin-left: 4vw;
}

/*---------- SP レビュー ----------*/
.review {
  max-width: 690px;
  width: 100%;
  display: block;
}

.review-cont {
  width: 100%;
  margin-top: 8vw;
  margin-left: auto;
  margin-right: auto;
}

.review-top {
  max-width: 690px;
  width: 96%;
  padding-top: 5vw;
  margin-left: auto;
  margin-right: auto;
}

.review-text {
  max-width: 620px;
  width: 100%;
  font-size: 4vw;
  padding-left: 5vw;
  padding-right: 6vw;
  padding-bottom: 8vw;
}

.review-title {
  font-size: 5vw;
  margin-bottom: 4vw;
  padding-left: 5vw;
  padding-top: 6vw;
}

.review-image img {
  max-width: 120px;
  width: 16vw;
  transform: translateY(3vw) translateX(2vw);
}

.review-bottom {
  max-width: 630px;
  padding-bottom: 4vw;
}

.review-desc {
  font-size: 4vw;
  transform: translateX(4vw);
  margin-top: 4vw;
}

.re-shift {
  padding-top: 0px;
}

.r_build img {
  width: 90%;
}

.r_logo img {
  margin-left: 8vw;
  width: 20vw;
}

.m_logo img {
  width: 35vw;
}

.r_pro {
  width: 32vw;
}

.r_pro01 {
  width: 32vw;
}

.m_pro {
  width: 20vw;
}

.m_pro01 {
  width: 20vw;
}

.r_link {
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 60px;
  padding-right: 60px;
  margin-bottom: 40px;
  margin-top: 20px;
}

/*---------- SP FAQ ----------*/
.m-faq {
  padding-bottom: 40px;
}

.faq-title {
  font-size: 4vw;
  margin-bottom: 3vw;
  margin-top: 4vw;
}

.faq-list {
  max-width: 690px;
  width: 100%;
  padding: 0 4%;
}

.faq-text {
  font-size: 3.7vw;
}

.faq-image img {
  width: 9.5vw;
}

.hr01 {
  margin-bottom: 6vw;
  margin-top: 6vw;
}

/*---------- SP トップへ戻るボタン ----------*/
.top-mark {
  width: 14vw;
}

/*---------- SP お問い合わせ ----------*/
.co-text {
  font-size: 5.4vw;
}

.co-01 {
  font-size: 4.3vw;
}

.co-area {
  font-size: 4.3vw;
  padding-top: 3vw;
  padding-bottom: 3vw;
}

.co-main {
  padding-bottom: 5vw;
}

.co-form {
  width: 96%;
  padding-left: 2%;
  padding-right: 2%;
}

.co-03 {
  width: 94%;
  padding-top: 4vw;
  padding-bottom: 4vw;
  font-size: 5vw;
  font-weight: bold;
}

.co-b {
  padding-left: 2%;
  padding-right: 2%;
  margin: auto;
}

.co-radio-btn {
  transform: translateY(0px);
  font-size: 5vw;
}

.co-04 {
  width: 5vw;
  height: 5vw;
  transform: translateY(2px);
}



/*---------- SP フッター ----------*/
.address {
  font-size: 3.2vw;
  margin-top: 5vw;
}

.footer-url {
  font-size: 3.2vw;
}

.footer-logo img {
  max-width: 450px;
  width: 60vw;
}

.footer {
  padding: 0 4%;
}

.footer-top-url {
  margin-top: 5vw;
}

.copyright {
  font-size: 2vw;
  margin-top: 12vw;
  padding-bottom: 4vw;
}

}

/*---------- ホバーアクション ----------*/
@media screen and (min-width: 849px){

.dealing-image {
  overflow:hidden;
}

.dealing-image img{
  transition:1s all;
}

.dealing-image img:hover{
  transform:scale(1.2,1.2);
  transition:1s all;
}

.cta-bottom-h {
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.cta-bottom-h::after {
  background: #FF8339;
  position: absolute;
  top: 0;
  left: 0;
  content: '';
  width: 100%;
  height: 100%;
  transform: scale(0, 1);
  transform-origin: left top;
  transition: .2s cubic-bezier(0.45, 0, 0.55, 1);
  z-index: -1;
}

.nav-cta:hover .cta-bottom-h::after {
  transform: scale(1, 1);
  transition: all  0.5s ease;
}

.ham-cta-bottom {
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.ham-cta-bottom::after {
  background: #FF8339;
  position: absolute;
  top: 0;
  left: 0;
  content: '';
  width: 100%;
  height: 100%;
  transform: scale(0, 1);
  transform-origin: left top;
  transition: .2s cubic-bezier(0.45, 0, 0.55, 1);
  z-index: -1;
}

.nav-cta:hover .ham-cta-bottom::after {
  transform: scale(1, 1);
  transition: all  0.5s ease;
}

.cta-bottom {
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.cta-bottom::after {
  background: #FF8339;
  position: absolute;
  top: 0;
  left: 0;
  content: '';
  width: 100%;
  height: 100%;
  transform: scale(0, 1);
  transform-origin: left top;
  transition: .2s cubic-bezier(0.45, 0, 0.55, 1);
  z-index: -1;
}

.nav-cta:hover .cta-bottom::after {
  transform: scale(1, 1);
  transition: all  0.5s ease;
}

.pdf-bottom {
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.pdf-bottom::after {
  background: #243A3A;
  position: absolute;
  top: 0;
  left: 0;
  content: '';
  width: 100%;
  height: 100%;
  transform: scale(0, 1);
  transform-origin: left top;
  transition: .2s cubic-bezier(0.45, 0, 0.55, 1);
  z-index: -1;
}

.nav-cta:hover .pdf-bottom::after {
  transform: scale(1, 1);
  transition: all  0.5s ease;
}

.top-mark:hover {
  opacity: 0.7;
}

.header-logo:hover {
  opacity: 0.7;
}

.header-logo a {
  transition: all  0.5s ease;
}

.header-logo a:hover {
  transition: all  0.5s ease;
}

.item a {
  transition: all  0.5s ease;
}

.item a:hover {
  transition: all  0.5s ease;
}

.nav-cta:hover {
  transition: all  0.5s ease;
  transform: scale(1, 1);
}

.nav-cta {
  transition: all  0.5s ease;
}

.header-logo:hover {
  opacity: 0.7;
}

.header-logo {
  transition: all  0.5s ease;
}

.nav-line a{
  display: inline-block;
  text-decoration:none;
  position: relative;
  transition: .3s;
}
.nav-line a::after{
	position: absolute;
	bottom: 0;
	left: 50%;
	content: '';
	width: 0;
	height: 2px;
	background-color: #ffa500;
	transition: .3s;
	transform: translateX(-50%);
}
.nav-line a:hover::after{
	width: 100%;
}

/*---------- カーソル ----------*/
body{
  position: relative;
  cursor: none;
}

#cursor{
  position: fixed;
  background: #fff;
  border-radius:20px;
  width: 40px;
  height: 40px;
  margin: -20px 0 0 -20px;
  z-index: 100000;
  pointer-events: none;
  opacity: 0;
}

#chase{
  position: fixed;
  background: #747D83;
  width: 60px;
  height: 60px;
  border-radius:30px;
  margin: -30px 0 0 -30px;
  z-index: 99999;
  pointer-events: none;
  opacity: 0;
}

#chase.active{
  transform: scale(1.4);
}

#cursor.active {
  display: none;
}

#chase.form009{
  transform: scale(1.4);
}

#cursor.form009 {
  display: none;
}

.product-image img:hover {
  opacity:0.7;
	transition: all  0.8s ease;
}

.product-image img {
	transition: all  0.8s ease;
}

.product-play-image img:hover {
  opacity:0.7;
	transition: all  0.8s ease;
}

.product-play-image img {
	transition: all  0.8s ease;
}


}