@charset "UTF-8";
:root {
  --text__color: #3e3e3e;
  --white__color: #FFFFFF;
  --border__color: #D3D3D3;
  --gray__color: #D9D9D9;
  --orange__color: #F3560E;
}
/* noto-sans-jp-regular - japanese */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Noto Sans JP';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/noto-sans-jp-v53-japanese-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* noto-sans-jp-700 - japanese */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Noto Sans JP';
  font-style: normal;
  font-weight: 700;
  src: url('../fonts/noto-sans-jp-v53-japanese-700.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

html {
  font-size: 62.5%;
}
body {
  width: 100%;
  overflow-x: hidden;
  font-family: 'Noto Sans JP', sans-serif;
  font-display: swap;
  color: var(--text__color);
}
@media (min-width: 500px) {
  body {
    min-width: 1280px;
  }
}
@media (max-width: 374px) {
  body {
    min-width: 375px;
  }
}
img {
  width: 100%;
  height: auto;
}
.flex {
  display: flex;
}
.align-center {
  align-items: center;
}

h2{
  font-size: 4rem;
  font-weight: bold;
}
h3{
  font-size: 3rem;
  font-weight: 400;
}
h4{
  font-size: 2.2rem;
  font-weight: bold;
}
@media (max-width: 499px) {
  h2{
    font-size: 2.55rem;
  }
  h3{
    font-size: 2.0rem;
  }
  h4{
    font-size: 1.8rem;
  }
}


/* スライダー */
.swiper {
  margin: 0 auto 48px;
  width: 70%;
  aspect-ratio: 1200 / 653;
}
@media (max-width: 499px) {
  .swiper {
    width: 100%;
    margin: 0 auto 24px;
  }
  .swiper-button-next:after, .swiper-button-prev:after{
    font-size: 20px;
  }
}
/* スライドショー */
/* 個人ページスライダー */
.img-01, .img-02, .img-03{
  position: absolute;
  top:0;
  left:0;
  width: 600px;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
}
.img-01{
  animation: slide-animation-01 24s infinite;
}
.img-02{
  animation: slide-animation-02 24s infinite;
}
.img-03{
  animation: slide-animation-03 24s infinite;
}
@keyframes slide-animation-01 {
  0% { opacity: 1; transform: scale(1.0);}
  30% {opacity: 1;}
  40% { opacity: 0; }
  90% {opacity: 0}
  100% {opacity: 1; transform: scale(1.0);}
}
@keyframes slide-animation-02 {
  0% {opacity: 0;}
  30% {opacity: 0; transform: scale(1.1);}
  40% {opacity: 1;}
  60% {opacity: 1;}
  70% {opacity: 0; transform: scale(1.0);}
  100% {opacity: 0;}
}
@keyframes slide-animation-03 {
  0% {opacity: 0;}
  60% {opacity: 0;  transform: scale(1.0);}
  70% {opacity: 1;}
  90% {opacity: 1;}
  100% {opacity: 0; transform: scale(1.1);}
}

/* 星 */
.service-table.ptn3 span.star5_rating{
  position: relative;
  z-index: 0;
  display: inline-block;
  white-space: nowrap;
  color: #ddd;
  font-size: 22px;
  margin-right: 5px;
}
@media (max-width: 499px) {
  .service-table.ptn3 span.star5_rating{
    font-size: 16px;
  }
}
.star5_rating:before, .star5_rating:after{
  content: '★★★★★';
}
.star5_rating:after{
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  overflow: hidden;
  white-space: nowrap;
  color: #555;
}
.star5_rating[data-rate="5"]:after{ width: 100%; }
.star5_rating[data-rate="4.5"]:after{ width: 90%; }
.star5_rating[data-rate="4"]:after{ width: 80%; }
.star5_rating[data-rate="3.5"]:after{ width: 70%; }
.star5_rating[data-rate="3"]:after{ width: 60%; }
.star5_rating[data-rate="2.5"]:after{ width: 50%; }
.star5_rating[data-rate="2"]:after{ width: 40%; }
.star5_rating[data-rate="1.5"]:after{ width: 30%; }
.star5_rating[data-rate="1"]:after{ width: 20%; }
.star5_rating[data-rate="0.5"]:after{ width: 10%; }
.star5_rating[data-rate="0"]:after{ width: 0%; }

.itreview p.itreview-star{
  font-weight: bold;
  display: flex;
  justify-content: center;
  align-items: center;
}
.itreview th{
  position: relative;
}
.itreview th p.itreview-btn{
  position: absolute;
  background: #555;
  color: #fff;
  border-radius: 50%;
  top: 50%;
  right: 1px;
  transform: translate(0%, -50%);
  line-height: 1;
  padding: 7px;
  cursor: pointer;
}
.itreview th p.itreview-text{
  position: absolute;
  background: #408AFB;
  color: #fff;
  border-radius: 5px;
  padding: 10px 15px;
  top: 100%;
  left: 78%;
  font-weight: bold;
  font-size: 1.4rem;
  text-align: left;
  line-height: 1.4;
  width: 300px;
  opacity: 0;
  transition: 0.3s;
}
.itreview th p.itreview-text:before{
  content: "";
  z-index: 0;
  position: absolute;
  top: -6px;
  left: 25px;
  background: #408AFB;
  display: block;
  width: 15px;
  height: 15px;
  box-sizing: border-box;
  rotate: 135deg;
  translate: -50%;
}
.itreview th p.itreview-btn:hover ~ .itreview-text{
  opacity: 1;
}
@media (max-width: 499px) {
  .itreview th p.itreview-btn{
    line-height: 1;
    padding: 4px;
    right: auto;
    left: calc(50% + 50px);
    transform: translate(-50%, -50%);
  }
  .itreview th p.itreview-text{
    border-radius: 4px;
    padding: 10px 10px;
    top: 100%;
    left: 0%;
    font-size: 1.1rem;
    width: 100%;
  }
  .itreview th p.itreview-text:before{
    top: -3px;
    width: 10px;
    height: 10px;
    left: calc(50% + 50px);
  }
}





/* コンテンツ幅 */
.inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 14px;
}

.br{
  display: block;
}
.br_sp{
  display: none;
}
@media (max-width: 499px) {
  .br{
    display: none;
  }
  .br_sp{
    display: block;
  }
}

.tate{
  -webkit-writing-mode: vertical-rl;
  -moz-writing-mode: vertical-rl;
  -ms-writing-mode: vertical-rl;
  -writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  white-space: pre;
  font-feature-settings: 'pkna';
}

.material-icons-round {
  font-variation-settings:
  'FILL' 1,
  'wght' 200,
  'GRAD' 0,
  'opsz' 24
}

.scroll-hint-icon-wrap{
  z-index: 100;
}

.service .inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
}

/* 見出し */
.sec-title {
  margin-bottom: 80px;
  font-size: 4.5rem;
  line-height: 1.5;
  font-weight: bold;
  text-align: center;
  letter-spacing: 0.2rem;
  line-height: 1.3;
}
/* header */
.header {
  background-color: #fff;
  /* position: fixed; */
  width: 100%;
  padding: 32px 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 100;
}
.header-logo {
  display: block;
  width: 256px;
}
.header-list {
  display: flex;
  align-items: center;
  column-gap: 48px;
}
.header-link {
  font-size: 1.6rem;
  font-weight: bold;
}
.header-menu {
  display: none;
}


/* mv_ver2 */
.mv_v2{
  position: relative;
  font-size: 1.3rem;
  line-height: 1.5;
  padding: 20px 0;
  height: calc(100vh - 100px - 60px);
height: auto;
}
.mv_v2:after{
  content: '';
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: rgba(255, 255, 255, .65);
  position: absolute;
}
.mv_v2-content{
  display: flex;
  flex-wrap: wrap;
  padding: 0px 60px;
  row-gap: 15px;
}
.mv_v2-content:before{
  content: '';
  background-image: url('../img/fv_base_base.webp');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.mv_v2-content:after{
  content: '';
  backdrop-filter: blur(7.5px);
  -webkit-backdrop-filter: blur(7.5px);
  width: 90%;
  height: 90%;
  background: rgba(217, 217, 217, 0.1);
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: -1;
  transform: translate(-50%, -50%);
}
.mv_v2-title,
.mv_v2-text{
  width: 100%;
}
.mv_v2-title p, .mv_v2-title h1{
  font-weight: 700;
  text-align: center;
  color: #3E3E3E;
  text-shadow: 3px 3px 2px rgba(0, 0, 0, 0.2);
}
.mv_v2-title p.mv_v2-title-sub, .mv_v2-title h1.mv_v2-title-sub{
  font-size: 2.4rem;
  margin-bottom: 5px;
}
.mv_v2-title p.mv_v2-title-tit, .mv_v2-title h1.mv_v2-title-tit{
  font-size: 6.0rem;
  line-height: 1;
}
.mv_v2-text{
  display: flex;
  justify-content: space-between;
  column-gap: 30px;
  margin-top: 20px;
  position: relative;
}
.mv_v2-text:after{
  content: '本ページではプロモーションを含みます';
  position: absolute;
  bottom: -17px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 1.2rem;
  color: #888;
  white-space: pre;
  text-align: center;
  line-height: 1.1;
}
.mv_v2-li{
  width: 33%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.mv_v2-li-catch_copy,
.mv_v2-li-logo,
.mv_v2-li-device,
.mv_v2-li-point{
  width: 100%;
  text-align: center;
}
.mv_v2-li-catch_copy{
  margin-bottom: 10px;
}
.mv_v2-li-logo,
.mv_v2-li-device{
  margin-bottom: 20px;
}
.mv_v2-li img{
  object-fit: contain;
}
.mv_v2-li:nth-child(1) .mv_v2-li-catch_copy img{
  width: 275px;
  margin:auto;
}
.mv_v2-li:nth-child(3) .mv_v2-li-catch_copy img{
  width: 275px;
  margin:auto;
}
.mv_v2-li:nth-child(2) .mv_v2-li-catch_copy img{
  width: 243px;
  margin:auto;
}
.mv_v2-li:nth-child(1) .mv_v2-li-logo img{
  width: 180px;
}
.mv_v2-li:nth-child(3) .mv_v2-li-logo img{
  width: 175px;
}
.mv_v2-li:nth-child(2) .mv_v2-li-logo img{
  width: 145px;
}
.mv_v2-li:nth-child(1) .mv_v2-li-device img{
  width: 400px;
}
.mv_v2-li:nth-child(3) .mv_v2-li-device img{
  width: 100px;
}
.mv_v2-li:nth-child(2) .mv_v2-li-device img{
  width: 165px;
}
.mv_v2-li-point{
  display: flex;
  justify-content: center;
}
.mv_v2-li-point1{
  position: relative;
  background-image: url(../img/fv_hexagon.png);
  background-repeat: no-repeat;
  background-size: contain;
  width: 156px;
  height: 156px;
  background-position: center center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ab{
  position: absolute;
  left: 72%;
  top: 53%;
  font-size: 1.2rem;
}
.mv_v2-li-point1:nth-child(1){
  z-index: 2;
}
.mv_v2-li-point1:nth-child(2){
  z-index: 1;
  margin-left: -20px;
}
.mv_v2-li-point1:nth-child(3){
  z-index: 0;
  margin-left: -20px;
}
.mv_v2-li-point p{
  text-align: center;
}
.mv_v2-li-point p span{
  font-weight: 700;
  font-size: 1.8rem;
  background: linear-gradient(90deg, rgba(34, 88, 168, 0.5) 0%, #054EBA 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}
.mv_v2-li-logo{
  position: relative;
}
.mv_v2-li-logo:before{
  position: absolute;
  left: calc((100% - (156px * 3 - 40px)) / 2);
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  font-family: 'Qwigley';
  font-style: normal;
  font-weight: 400;
  font-size: 100px;
  color: rgba(62, 62, 62, 0.15);
}
.mv_v2-li:nth-child(1) .mv_v2-li-logo:before{
  content: '01';
}
.mv_v2-li:nth-child(2) .mv_v2-li-logo:before{
  content: '02';
}
.mv_v2-li:nth-child(3) .mv_v2-li-logo:before{
  content: '03';
}

.mv_v2-caution{
  position: absolute;
  bottom: 0;
  right: 0;
  font-size: 1.2rem;
  color: #888;
}


@media screen and (max-width: 1024px) {
  .mv_v2{
    margin: 65px 0 0;
    height: calc(100vh - 65px - 70px);
  }
  .mv_v2-content{
    padding: 10px 60px;
  }
}
@media screen and (max-width: 499px) {
  .mv_v2{
    font-size: 1.2rem;
    height: auto;
  }
  .mv_v2-content{
    padding: 10px 10px;
    row-gap: 25px;
  }
  .mv_v2-content:after{
    width: calc(100% - 20px);
    height: calc(100% - 20px);
  }
  .mv_v2-content:before{
    background-image: url('../img/fv_base_base_sp.webp');
  }
  .mv_v2-text{
    column-gap: 10px;
    margin-top: 0px;
  }
  .mv_v2-text:after{
    bottom: -17px;
    font-size: 1.0rem;
  }
  .mv_v2-li{
    align-content: flex-start;
    row-gap: 15px;
  }
  .mv_v2-title p, .mv_v2-title h1{
    text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.2);
  }
  .mv_v2-title p.mv_v2-title-sub{
    font-size: 1.6rem;
  }
  .mv_v2-title p.mv_v2-title-tit, .mv_v2-title h1.mv_v2-title-tit{
    font-size: 4.1rem;
    line-height: 1.2;
  }
  .mv_v2-li-catch_copy{
    margin-bottom: 15px;
  }
  .mv_v2-li-logo,
  .mv_v2-li-device{
    margin-bottom: 10px;
  }
  .mv_v2-li-point{
    display: none;
  }
  .mv_v2-li img{
    margin:auto;
  }
  .mv_v2-li-logo:before{
    left: 0px;
    font-size: 20px;
    line-height: 1;
    top: -22px;
    left: 50%;
    transform: translateX(-50%);
    font-family: 'Noto Sans JP', sans-serif;
  }

  .mv_v2-li:nth-child(1) .mv_v2-li-catch_copy img,
  .mv_v2-li:nth-child(3) .mv_v2-li-catch_copy img,
  .mv_v2-li:nth-child(2) .mv_v2-li-catch_copy img{
    width: auto;
    height: 44px;
  }
  .mv_v2-li:nth-child(1) .mv_v2-li-logo img{
    width:80%;
  }
  .mv_v2-li:nth-child(3) .mv_v2-li-logo img{
    width: 80%;
  }
  .mv_v2-li:nth-child(2) .mv_v2-li-logo img{
    width: 65%;
  }
  .mv_v2-li:nth-child(1) .mv_v2-li-device img{
    width: 100%;
  }
  .mv_v2-li:nth-child(3) .mv_v2-li-device img{
    width: auto;
    height: 85px;
  }
  .mv_v2-li:nth-child(2) .mv_v2-li-device img{
    width: 80%;
  }
  .mv_v2-caution{
    font-size: 1.0rem;
  }
}


/* mv_ver3 */
.mv_v3{
  position: relative;
  font-size: 1.3rem;
  line-height: 1.5;
  padding: 20px 0;
/*  height: calc(100vh - 100px - 60px);*/
height: auto;
}
.mv_v3 img{
  object-fit: contain;
}
.mv_v3:after{
  content: '';
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: rgba(0, 0, 0, .65);
  position: absolute;
}
.mv_v3-content{
  display: flex;
  column-gap: 10px;
  align-items: center;
  max-width: 1240px;
  padding: 0 14px;
  margin: auto;
}
.mv_v3:before{
  content: '';
  background-image: url('../img/fv_base_base_v3.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
@media screen and (max-width: 499px) {
  .mv_v3{
    font-size: 1.2rem;
    height: auto;
    padding: 15px 0;
  }
  .mv_v3-content{
    padding: 10px 10px;
    row-gap: 25px;
    flex-wrap: wrap;
    margin-top: 40px;
  }
  .mv_v3:before{
    background-image: url('../img/fv_base_base_sp.jpg');
  }
  .mv_v3 img{
    display: block;
    margin: auto;
  }
}
.mv_v3-content-catch{
  color: #fff;
}
.mv_v3-content-catch1{
  font-size: 2.6rem;
  font-weight: bold;
  transform: rotate(6.34deg);
  text-align: center;
  text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.2);
}
.fukidashi-01-12 {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0px;
}
.fukidashi-01-12::before {
  content: "";
  width: 50px;
  height: 2px;
  transform: rotate(65deg);
  box-sizing: border-box;
  background-color: #fff;
}
.fukidashi-01-12::after {
  content: "";
  width: 50px;
  height: 2px;
  transform: rotate(-65deg);
  box-sizing: border-box;
  background-color: #fff;
}
.mv_v3-content-catch2{
  font-weight: bold;
  line-height: 1;
  text-shadow: 3px 3px 2px rgba(0, 0, 0, 0.2);
}
.mv_v3-content-catch2 .span1{font-size: 8.5rem;line-height: 1.4;}
.mv_v3-content-catch2 .span2{font-size: 6.0rem;}
.mv_v3-content-catch2 .span3{font-size: 6.5rem;}
.mv_v3-content-catch2 .span4{font-size: 9.0rem;}
.mv_v3-content-catch2 .span5{font-size: 11.0rem;}
.mv_v3-content-catch2 .span6{font-size: 8.5rem;}

@media screen and (max-width: 499px) {
  .mv_v3-content-catch{
    width: 100%;
  }
  .mv_v3-content-catch1{
    font-size: 1.3rem;
    transform: rotate(6.34deg);
    text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.2);
  }
  .fukidashi-01-12 {
    justify-content: flex-end;
  }
  .mv_v3-content-catch2 .span1{font-size: 4.25rem;line-height: 1;}
  .mv_v3-content-catch2 .span2{font-size: 3.0rem;}
  .mv_v3-content-catch2 .span3{font-size: 4.5rem;line-height: 1.1;}
  .mv_v3-content-catch2 .span4{font-size: 4.5rem;}
  .mv_v3-content-catch2 .span5{font-size: 5.5rem;line-height: 0.9;}
  .mv_v3-content-catch2 .span6{font-size: 4.25rem;}
  .fukidashi-01-12::before {
    width: 50px;
    height: 2px;
    transform: rotate(65deg);
  }
  .fukidashi-01-12::after {
    width: 50px;
    height: 2px;
    transform: rotate(-65deg);
  }
}


.mv_v3-content-dvc{
  width: 69%;
  display: flex;
  flex-wrap: wrap;
  column-gap: 25px;
  row-gap: 25px;
}
.mv_v3-content-dvc1{
  background: #fff;
  border-radius: 15px;
  padding: 0;
  filter: drop-shadow(4px 4px 4px rgba(0, 0, 0, 0.15));
  display: flex;
  flex-wrap: wrap;
  align-content: flex-start;
  width: 48%;
}
.mv_v3-content-dvc1-tit{
  background: linear-gradient(180deg, #408AFB 0%, #2258A8 100%);
  border-radius: 15px 15px 0px 0px;
  padding: 15px 20px;
  color: #fff;
  font-size: 2.4rem;
  font-weight: bold;
  width: 100%;
  text-align: right;
  position: relative;
}
.mv_v3-content-dvc1-tit:before{
  position: absolute;
  left: -8px;
  top: -11px;
  width: 59px;
  height: 59px;
  box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.15);
  color: #408AFB;
  text-align: center;
  font-size: 3.5rem;
  background: #fff;
  border-radius: 50%;
}
@media screen and (max-width: 499px) {
  .mv_v3-content-dvc{
    width: 100%;
    column-gap: 20px;
    row-gap: 20px;
  }
  .mv_v3-content-dvc1{
    border-radius: 10px;
    width: calc(50% - 10px);
  }
  .mv_v3-content-dvc1-tit{
    border-radius: 10px 10px 0px 0px;
    padding: 10px 10px;
    font-size: 1.3rem;
    width: 100%;
    text-align: left;
  }
  .mv_v3-content-dvc1-tit:before{
    left: -8px;
    top: -15px;
    width: 29px;
    height: 29px;
    box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.15);
    font-size: 1.75rem;
  }
}
.mv_v3-content-dvc1:nth-child(1) .mv_v3-content-dvc1-tit:before{
  content: '01';
}
.mv_v3-content-dvc1:nth-child(2) .mv_v3-content-dvc1-tit:before{
  content: '02';
}
.mv_v3-content-dvc1:nth-child(3) .mv_v3-content-dvc1-tit:before{
  content: '03';
}
.mv_v3-content-dvc1:nth-child(4) .mv_v3-content-dvc1-tit:before{
  content: '04';
}
.mv_v3-content-dvc1-imgtxt{
  display: flex;
  justify-content: space-between;
  z-index: 1;
}
.mv_v3-content-dvc1-imgtxt-img{
  width: 44%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  row-gap: 10px;
  padding: 0px 0px 15px 0;
}
.mv_v3-content-dvc1:nth-child(1) .mv_v3-content-dvc1-imgtxt-img{
  margin-top: -30px;
}
.mv_v3-content-dvc1:nth-child(2) .mv_v3-content-dvc1-imgtxt-img{
  margin-top: -25px;
}
.mv_v3-content-dvc1:nth-child(3) .mv_v3-content-dvc1-imgtxt-img{
  margin-top: -35px;
}
.mv_v3-content-dvc1:nth-child(4) .mv_v3-content-dvc1-imgtxt-img{
  margin-top: -30px;
}
.mv_v3-content-dvc1-imgtxt-img .device.sq{
  width: 170px;
  transform: rotate(-20deg);
  margin-left: -30px;
}
.mv_v3-content-dvc1-imgtxt-img .device.st{
  width: 164px;
}
.mv_v3-content-dvc1-imgtxt-img .device.payg{
  width: 90px;
}
.mv_v3-content-dvc1-imgtxt-img .device.ap{
  width: 85px;
}
.mv_v3-content-dvc1-imgtxt-img .device.stt{
  width: 100px;
  filter: drop-shadow(0px 3px 3px rgba(0, 0, 0, 0.2));
}
.mv_v3-content-dvc1-imgtxt-img .logo.sq{
  width: 105px;
}
.mv_v3-content-dvc1-imgtxt-img .logo.st{
  width: 100px;
}
.mv_v3-content-dvc1-imgtxt-img .logo.payg{
  width: 130px;
}
.mv_v3-content-dvc1-imgtxt-img .logo.ap{
  width: 110px;
}
.mv_v3-content-dvc1-imgtxt-img .logo.stt{
  width: 100px;
}

.mv_v3-content-dvc1-imgtxt-txt{
  width: 56%;
  padding: 20px 15px 20px 0;
}
.mv_v3-content-dvc1-imgtxt-txt p{
  position: relative;
  font-size: 1.4rem;
  padding: 5px 0 5px 40px;
}
.mv_v3-content-dvc1-imgtxt-txt p span{
  position: relative;
  font-weight: 700;
  font-size: 2.0rem;
  background: linear-gradient(90deg, rgba(34, 88, 168, 0.5) 0%, #054EBA 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}
.mv_v3-content-dvc1-imgtxt-txt p:before{
  content: '';
  background-image: url(../img/mv_txt_check.png);
  background-size: contain;
  width: 32px;
  height: 32px;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
}
@media screen and (max-width: 499px) {
  .mv_v3-content-dvc1-imgtxt{
    width: 100%;
    display: block;
  }
  .mv_v3-content-dvc1-imgtxt-img{
    width: 100%;
    row-gap: 10px;
    padding: 0px 0px 15px 0;
    width: 100%;
    display: block;
  }
  .mv_v3-content-dvc1:nth-child(1) .mv_v3-content-dvc1-imgtxt-img,
  .mv_v3-content-dvc1:nth-child(2) .mv_v3-content-dvc1-imgtxt-img,
  .mv_v3-content-dvc1:nth-child(3) .mv_v3-content-dvc1-imgtxt-img,
  .mv_v3-content-dvc1:nth-child(4) .mv_v3-content-dvc1-imgtxt-img{
    margin-top: 10px;
  }
  .mv_v3-content-dvc1-imgtxt-img .device.sq{
    width: 130px;
    transform: rotate(0deg);
    margin-left: auto;
  }
  .mv_v3-content-dvc1-imgtxt-img .device.st{
    width: 110px;
  }
  .mv_v3-content-dvc1-imgtxt-img .device.payg{
    width: 60px;
  }
  .mv_v3-content-dvc1-imgtxt-img .device.ap{
    width: 65px;
  }
  .mv_v3-content-dvc1-imgtxt-img .device.stt{
    width: 71px;
    filter: drop-shadow(0px 2px 2px rgba(0, 0, 0, 0.2));
  }
  .mv_v3-content-dvc1-imgtxt-img .logo.sq{
    width: 80px;
  }
  .mv_v3-content-dvc1-imgtxt-img .logo.st{
    width: 65px;
  }
  .mv_v3-content-dvc1-imgtxt-img .logo.payg{
    width: 100px;
  }
  .mv_v3-content-dvc1-imgtxt-img .logo.ap{
    width: 80px;
  }
  .mv_v3-content-dvc1-imgtxt-img .logo{
    margin-top: 5px;
  }
  .mv_v3-content-dvc1-imgtxt-img .logo.stt{
    width: 65px;
  }
}



.content-slider {
  width: 100%;
  height: 70px;
  -webkit-animation: bg-slider 70s linear infinite;
  animation: bg-slider 70s linear infinite;
  background: url('../img/fv_slide_logo.webp') repeat-x 50%;
  background-size: auto 70px;
}
.content-slider-sq {
  width: 100%;
  height: 270px;
  -webkit-animation: bg-slider 70s linear infinite;
  animation: bg-slider 70s linear infinite;
  background: url('../img/sq_slideshow.png') repeat-x 50%;
  background-size: auto 270px;
}
.content-slider-st {
  width: 100%;
  height: 638px;
  -webkit-animation: bg-slider 70s linear infinite;
  animation: bg-slider 70s linear infinite;
  background: url('../img/st_slideshow.png') repeat-x 50%;
  background-size: auto 638px;
}
.content-slider-sttap {
  width: 100%;
  height: 270px;
  -webkit-animation: bg-slider 70s linear infinite;
  animation: bg-slider 70s linear infinite;
  background: url('../img/sttap_slideshow.png') repeat-x 50%;
  background-size: auto 270px;
}

@-webkit-keyframes bg-slider {
    0% {
        background-position: 0 0
    }

    to {
        background-position: -4840px 0
    }
}

@keyframes bg-slider {
    0% {
        background-position: 0 0
    }

    to {
        background-position: -4840px 0
    }
}
@media screen and (max-width: 499px) {
  .content-slider {
    height: 50px;
    background-size: auto 50px;
  }
  .content-slider-sq {
    height: 200px;  
    background-size: auto 200px;
    -webkit-animation: bg-slider 100s linear infinite;
    animation: bg-slider 100s linear infinite;
  }
  .content-slider-st {
    width: 100%;
    height: 400px;
    -webkit-animation: bg-slider 100s linear infinite;
    animation: bg-slider 100s linear infinite;
    background-size: auto 400px;
  }
}


.inner .title{
  display: flex;
  flex-wrap: wrap;
  position: relative;
  row-gap: 6px;
  margin-bottom: 50px;
  z-index: 1;
}
.inner .title .tit{
  width: 100%;
}
.inner .title .tit_no{
  font-size: 160px;
  color: #e0edff;
  font-weight: 700;
  margin-top: -5px;
  position: absolute;
  top: -5%;
  left: -5%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  z-index: -1;
}
.inner .text{
  line-height: 1.5;
  margin-bottom: 50px;
}
@media (max-width: 499px) {
  .inner .title .tit_no{
    font-size: 120px;
  }
  .inner .title{
    margin-bottom: 20px;
  }
  .inner .text{
    margin-bottom: 20px;
  }
}


.section-inner{
  font-size: 1.7rem;
}
/* supervised_comment */
.supervised_comment{
  margin: 100px 0 40px;
  background: #F7F7F7;
  font-size: 1.7rem;
  height: auto;
}
.supervised_comment2,
.supervised_comment3{
  margin: 40px 0 40px;
}
.supervised_comment_content{
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 60px;
  padding: 20px 0;
}
.supervised_comment_human{
  width: 200px;
  text-align: center;
}
.supervised_comment_human img{
  width: 119px;
}
.supervised_comment_human p.tit{
  font-size: 1.7rem;
  font-weight: bold;
}

.supervised_comment_text{
  text-align: left;
  position: relative;
  z-index: 0;
  padding: 15px 0;
  margin: 20px 0;
}
.supervised_comment_img{
  width: 220px;
}
.supervised_comment_text .tit{
  font-size: 2.6rem;
  font-weight: bold;
  margin-bottom: 10px;
}
.supervised_comment_text p{
  line-height: 1.5;
}
.supervised_comment_text .tit2{
  font-size: 3.5rem;
  font-weight: bold;
  margin-bottom: 10px;
}

.supervised_comment_text:before{
  content: '';
  position: absolute;
  left: -15px;
  top: -15px;
  width: 33px;
  height: 30px;
  background-image: url('../img/comment_inyo.png');
  background-repeat: no-repeat;
  background-size: contain;
}
.supervised_comment_text:after{
  content: '';
  position: absolute;
  right: -15px;
  bottom: -15px;
  width: 33px;
  height: 30px;
  background-image: url('../img/comment_inyo_down.png');
  background-repeat: no-repeat;
  background-size: contain;
}
.supervised_comment_point1{
  width: 100%;
  display: flex;
  align-items: center;
  column-gap: 5px;
  margin-bottom: 5px;
}
.supervised_comment_point1 img{
  width: 46px;
  object-fit: contain;
}
.supervised_comment_point_text{
  font-size: 2.0rem;
  font-weight: bold;
  margin-bottom: 10px;
}
.supervised_comment2 .supervised_comment_point1:nth-child(3){
  color: #E3762D;
}
.supervised_comment3 .supervised_comment_point1:nth-child(3){
  color: #3e3e3e;
}


@media (max-width: 499px) {
  .section {
    font-size: 1.4rem;
  }
  .supervised_comment{
    margin: 20px 0 20px;
    font-size: 1.4rem;
    height: auto;
  }
  .supervised_comment_content{
    padding: 24px 10px;
    flex-wrap: wrap;
    justify-content: flex-start;
  }
  .supervised_comment_text .tit{
    font-size: 2rem;
  }
  .supervised_comment_human{
    width: 33%;
  }
  .supervised_comment_img{
    width: 50%;
    order: 0;
  }
  .supervised_comment_text{
    order: 1;
  }
  .supervised_comment_text:before{
    left: 0px;
    top: -15px;
  }
  .supervised_comment_text:after{
    right: 0px;
    bottom: -15px;
  }
  .supervised_comment_text .tit2{
    font-size: 2.8rem;
  }
  .supervised_comment_point1 p{
    width: calc(100% - 40px);
    font-size: 1.8rem;
  }
  .supervised_comment_point1 img{
    width: 40px;
    object-fit: contain;
  }
}



.section_business_diff{
  background-image: url('../img/point_baseimg.png');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding: 100px 0;
  margin-top: 10px;
}
.section_business_diff .title{
  width: 100%;
  text-align: center;
  margin: auto;
  padding-bottom: 40px;
  color: #fff;
}
.section_business_diff .sub_tit{
  margin: auto;
  color: #fff;
}

.business_diff_content{
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  column-gap: 30px;
}
.business_diff_content-box{
  width: 100%;
  display: flex;
  justify-content: center;
  column-gap: 30px;
}
.business_diff_box{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  align-content: space-between;
  row-gap: 15px;
  width: 50%;
  position: relative;
  padding: 30px 40px;
  background: #fff;
}
.business_diff_box:first-child{
  padding: 30px 15px;
}
.business_diff_box:before{
  content: '';
  display: block;
  position: absolute;
  top: 15px;
  left: 15px;
  z-index: 1;
  width: 20px;
  aspect-ratio: 1;
  clip-path: polygon(0 0, 100% 0, 0 100%);
  background: linear-gradient(45deg, #2258A8, #2258A8);
  height: 20px;
}
.business_diff_box:after{
  content: '';
  display: block;
  position: absolute;
  bottom: 15px;
  right: 15px;
  z-index: 1;
  width: 20px;
  aspect-ratio: 1;
  clip-path: polygon(0 100%, 100% 0, 100% 100%);
  background: linear-gradient(45deg, #2258A8, #2258A8);
  height: 20px;
}
.business_diff_box_item{
  display: flex;
  flex-wrap: wrap;
  row-gap: 40px;
}
.business_diff_box:nth-child(2) .business_diff_box_item{
  row-gap: 30px;
}

.business_diff_box_tit,
.business_diff_box_img,
.business_diff_box_text{
  width: 100%;
}
.business_diff_box_img{
  padding: 0 0px;
}
.business_diff_box_btn{
  width: 80%;
  margin:auto;
}
.business_diff_box_tit{
  position: relative;
}
.business_diff_box_tit h4{
  text-align: center;
  line-height: 1.455;
  letter-spacing: 0.05rem;
}
.business_diff_box_tit h4 span.bl{
  color: #408AFB;
}
.business_diff_box_tit h4 span.big{
  font-size: 3.2rem;
}
.business_diff_box_tit p.small{
  text-align: center;
  margin-top: 10px;
}
.business_diff_box_img p{
  font-size: 2.0rem;
  font-weight: bold;
  line-height: 1;
  text-align: center;
  margin-bottom: 20px;
  padding: 10px 0;
  position: relative;
}
.business_diff_box_img p span{
  font-size: 2.8rem;
}
.business_diff_box_img p span.small{
  font-size: 1.2rem;
  font-weight: 400;
}
.business_diff_box_img p:after{
  content: "";
  position: absolute;
  bottom: -3px;
  border-top: 1px solid #408AFB;
  border-bottom: 1px solid #408AFB;
  width: 15%;
  height: 3px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
}


.business_diff_box_img img{
  object-fit: contain;
}
.business_diff_box_btn a.btn{
  display: block;
  background: #FFAA05;
  border-radius: 40px;
  padding: 15px 30px;
  margin-bottom: 5px;
  font-size: 1.8rem;
  font-weight: bold;
  text-align: center;
  color: var(--white__color);
  transition: 0.3s;
}
.business_diff_box_potext{
  color: #A66121;
  font-size: 1.1rem;
  text-align: center;
}
.business_diff_box_text{
  display: flex;
  justify-content: center;
}
.business_diff_box_text p{ 
  line-height: 1.5;
  font-size: 1.5rem;
}
.business_diff_box_btn a:hover{
  background: #E3762D;
}


.business_diff_box.last{
  width: 60%;
}
.business_diff_box.last .business_diff_box_tit h3{
  text-align: center;
  font-weight: bold;
}
.business_diff_box.last .business_diff_box_img{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  row-gap: 10px;
}
.business_diff_box.last img.sb_logo{
  width: 170px;
}
.business_diff_box.last img.sb_site{
  box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.07);
  padding: 0 60px;
}




.business_diff_content-boxnew{
  width: 100%;
  display: flex;
  justify-content: space-between;
  position: relative;
}
.business_diff_content-boxnew-txt{
  color: #fff;
  font-size: 1.0rem;
  text-align: left;
  width: 100%;
  margin-top: 10px;
}
.business_diff_content-box1{
  width: 294px;
  background: #FFFFFF;
  box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.15);
  border-radius: 5px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 18px 0 30px 0;
}
@media (max-width: 499px) {
  .section_business_diff.section_business_diffnew h2{
    font-size: 2.7rem;
  }
  .section_business_diff.section_business_diffnew h3{
    font-size: 1.8rem;
  }
  .section_business_diffnew .inner{
    padding: 0;
  }
  .section_business_diffnew .title{
    padding: 0 14px;
  }
  .business_diff_content-boxnew{
    /*overflow-x: auto;
    overflow-y: hidden;*/
    column-gap: 5px;
    row-gap: 5px;
    padding: 0 5px;
    flex-wrap: wrap;
  }
  .business_diff_content-box1{
    width: calc(50% - 3px);
/*    min-width: 270px;*/
    padding: 8px 0 0px 0;
  }
  .business_diff_content-boxnew-txt{
    padding: 0 14px;
    margin-top: 0px;
    font-size: 0.8rem;
  }
}
.business_diff_content-box1-img{
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-content: flex-start;
}
.business_diff_content-box1-imglogo {
  padding-bottom: 5px;
}
.business_diff_content-box1-imglogo{
  height: 72px;
  object-fit: contain;
}
.diff-sq_termnl .business_diff_content-box1-imglogo{
  width: 130px;
}
.diff-stera .business_diff_content-box1-imglogo{
  width: 120px;
}
.diff-paygate .business_diff_content-box1-imglogo{
  width: 153px;
}
.diff-sq_lead .business_diff_content-box1-imglogo{
  width: 130px;
}
@media (max-width: 499px) {
  .business_diff_content-box1-imglogo{
    height: 35px;
  }
  .diff-sq_termnl .business_diff_content-box1-imglogo{
    width: 85px;
  }
  .diff-stera .business_diff_content-box1-imglogo{
    width: 60px;
  }
  .diff-paygate .business_diff_content-box1-imglogo{
    width: 90px;
  }
  .diff-sq_lead .business_diff_content-box1-imglogo{
    width: 85px;
  }
  .business_diff_content-box1-imgimg{
    height: 100px;
    object-fit: cover;
  }
}
.business_diff_content-box1-pricebtn{
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-content: space-between;
  justify-content: center;
}

.business_diff_content-box1-price{
  width: 100%;
  padding: 13px;
  row-gap: 20px;
  display: flex;
  flex-wrap: wrap;
}
.business_diff_content-box1-price1{
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  row-gap: 10px;
}
.business_diff_content-box1-price1-tit,
.business_diff_content-box1-price1-txt{
  width: 100%;
}
.business_diff_content-box1-price1-tit{
  color: #888;
  border-left: 3px solid #aaa;
  font-size: 1.45rem;
  font-weight: bold;
  line-height: 1;
}
.business_diff_content-box1-price1-tit span{
  letter-spacing: -0.09em;
}
.business_diff_content-box1-price1-tit p{
  padding-left: 5px;
}
.business_diff_content-box1-price1-txt{
  display: flex;
  flex-wrap: wrap;
  padding: 0 7px;
  line-height: 1;
}
@media (max-width: 499px) {
  .business_diff_content-box1-price{
    padding: 8px;
    row-gap: 13px;
  }
  .business_diff_content-box1-price1{
    row-gap: 7px;
  }
  .business_diff_content-box1-price1-tit{
    border-left: 2px solid #aaa;
    font-size: 1rem;
  }
  .business_diff_content-box1-price1-tit p{
    padding-left: 3px;
  }
}
.business_diff_content-box1-price1-txt1{
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 0 10px 0;
}
.business_diff_content-box1-price1-txt1{
  font-size: 1.4rem;
}
.business_diff_content-box1-price1-txt1 span{
  font-size: 1.8rem;
}
.business_diff_content-box1-price1-txt1 span.small{
  font-size: 0.9rem;
}
.business_diff_content-box1-price1-txt1.price1-txt1-bold{
  font-size: 2.2rem;
  font-weight: bold;
}
.business_diff_content-box1-price1-txt1.price1-txt1-bold span{
  font-size: 3.6rem;
}
.business_diff_content-box1-price1-ann{
  font-size: 0.9rem;
  color: #aaa;
  line-height: 1.25;
}
@media (max-width: 499px) {
  .business_diff_content-box1-price1-txt1{
    font-size: 0.9rem;
    padding: 0 0 4px 0;
  }
  .business_diff_content-box1-price1-txt1:last-child{
    padding: 0 0 0px 0;
  }
  .business_diff_content-box1-price1-txt1 span{
    font-size: 1.1rem;
  }
  .business_diff_content-box1-price1-txt1.price1-txt1-bold{
    font-size: 1.1rem;
    padding: 0 0 5px 0;
  }
  .business_diff_content-box1-price1-txt1.price1-txt1-bold span{
    font-size: 1.6rem;
  }
  .business_diff_content-box1-price1-ann{
    font-size: 0.8rem;
  }
}
.business_diff_content-box1-price1-ann.opacity{
  opacity: 0;
}
.business_diff_content-box1-btn{
  text-align: center;
}
.business_diff_content-box1-btn .site-link{
  box-shadow: 0 8px 0 0 #A55408;
}
@media (max-width: 499px) {
  .business_diff_content-box1-btn{
    width: 100%;
  }
  .business_diff_content-box1-btn .site-link.service-link{
    width: 100%;
    box-shadow: 0 0px 0 0 #A55408;
    padding: 5px 0;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    font-size: 1.1rem;
  }
  .business_diff_content-box1-btn .service-link.site-link:hover{
    box-shadow: 0 2px 0 0 #A55408;
  }
}






@media (max-width: 499px) {
  .section_business_diff{
    margin-top: 0px;
    padding: 30px 0 15px 0;
  }
  .business_diff_content-box{
    flex-wrap: wrap;
    row-gap: 10px;
  }
  .section_business_diff .title{
    padding-bottom: 10px;
  }
  .business_diff_content{
    flex-wrap: wrap;
    row-gap: 5px;
  }
  .business_diff_box{
    width: 100%;
    padding: 20px 10px;
    row-gap: 15px;
  }
  .business_diff_box.last{
    width: 100%;
    row-gap: 15px;
  }
  .business_diff_box:first-child.last .business_diff_box_tit{
    display: block;
  }
  .business_diff_box.last .business_diff_box_tit h3{
/*    margin-bottom: 20px;*/
  }
  .business_diff_box.last img.sb_site{
    padding: 0;
  }
  .business_diff_box.last img.sb_logo{
    width: 100px;
  }
  .business_diff_box.last .business_diff_box_text p{
    font-size: 1.2rem;
  }
  .business_diff_box:before{
    top: 10px;
    left: 10px;
    width: 15px;
    height: 15px;
  }
  .business_diff_box:after{
    bottom: 10px;
    right: 10px;
    width: 15px;
    height: 15px;
  }
  .business_diff_box_item{
    row-gap: 20px;
  }
  .business_diff_box_tit h4 span.big{
    font-size: 2.6rem;
  }
  .business_diff_box_btn a.btn{
    padding: 10px 20px;
    font-size: 1.5rem;
  }
  .business_diff_box_img p{
    font-size: 1.6rem;
    margin-bottom: 20px;
    padding: 10px 0;
  }
  .business_diff_box_img p span{
    font-size: 2.0rem;
  }
  .business_diff_box_img p span.small{
    font-size: 1.0rem;
  }
  .business_diff_box_img{
    padding: 0;
  }
  .business_diff_box_btn{
    width: 100%;
  }
  .business_diff_box_btn a:hover{
    background: #FFAA05;
  }
}


.choice_point{
  margin: 100px 0 40px;
}
.choice_point_content{}
.section-inner .choice_point_ul{
  display: flex;
  flex-wrap: wrap;
  row-gap: 15px;
}
.section-inner .choice_point_li{
  line-height: 1.5;
  width: 100%;
  padding: 24px 20px;
  display: flex;
  flex-wrap: nowrap;
  align-items: flex-start;
  justify-content: space-between;
  column-gap: 30px;
  border-radius: 10px;
  border: 1px solid #EAEAEA;
  background: #fff;
  box-shadow: -5px 5px 10px rgba(221, 221, 221, 0.2),
              5px -5px 10px rgba(221, 221, 221, 0.2),
              -5px -5px 10px rgba(255, 255, 255, 0.9),
                5px 5px 7px rgba(0, 0, 0, 0.15),
              inset 1px 1px 4px rgba(255, 255, 255, 0.7),
              inset -1px -1px 2px rgba(221, 221, 221, 0.5);
}
.choice_point_nom img{
  width: 74px;
  object-fit: contain;
}
.choice_point_tittext{
  width: 75%;
  display: flex;
  column-gap: 20px;
}
.choice_point_tit{
  width: calc(100% - 74px);
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  column-gap: 20px;
  row-gap: 15px;
}
.choice_point_tit p span{
  color: #E3762D;
  font-weight: bold;
}
.choice_point_tit p.small{
  color: #888;
}
.choice_point_tit_ul{
  display: flex;
  column-gap: 2px;
  font-weight: bold;
  text-align: center;
  font-size: 1.3rem;
}
.choice_point_tit_ul .en{
  background: #E0EDFF;
  border-radius: 50%;
  width: 85px;
  height: 85px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2258A8;
;
}
.choice_point_nom{
  width: 74px;
}
.choice_point_img img{
  object-fit: contain;
}
.choice_point_img img.point1{
  width: 230px;
}
.choice_point_img img.point2{
  width:300px;
}
.choice_point_img img.point3{
  width:190px;
}


@media (max-width: 499px) {
  .section-inner{
    font-size: 1.4rem;
  }
  .section-inner .choice_point_li{
    flex-wrap: wrap;
    column-gap: 20px;
    row-gap: 20px;
    padding: 24px 10px;
  }
  .choice_point_tittext{
    width: 100%;
    flex-wrap: wrap;
    row-gap: 10px;
  }
  .choice_point_nom{
    width: 60px;
  }
  .choice_point_nom img{
    width: 60px;
  }
  .choice_point_tit{
    width: 100%;
    column-gap: 10px;
    row-gap: 10px;
  }

  .choice_point_text{
    width: 100%;
  }
  .choice_point_tit_ul{
    font-size: 1.0rem;
    flex-wrap: wrap;
  }
  .choice_point_tit_ul .en{
    width: 63px;
    height: 63px;
  }
  .choice_point_tit p.tit{
    font-size: 1.8rem;
  }
}


.difference_device{
  padding: 114px 0 40px;
}
.price_device{
  padding: 40px 0 40px;
}
.difference_device .text p{
  font-size: 1.7rem;
  width: auto;
}
.difference_device .text p span{
  font-size: 1.7rem;
  font-weight: bold;
  padding-right: 7px;
}
@media (max-width: 499px) {
  .difference_device .text p{
    font-size: 1.4rem;
  }
  .difference_device .text p span{
    font-size: 1.4rem;
    padding-right: 5px;
  }
}
.service-inner.ptn3{
  box-shadow: 0px 0px 0px 0px rgb(0, 0, 0, 0);
  width: 100%;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  padding: 0;
}
.service-box.ptn3{
  font-size: 1.6rem;
  border-top-right-radius: 10px;
  border-top-left-radius: 10px;
  height: auto;
  line-height: 1.3;
  overflow-x: hidden;
}
.service-table.ptn3{
  white-space: normal;
  table-layout: fixed;
}
.service-table.ptn3 tbody{
  width: 100%;
  table-layout: fixed;
}
.service-table.ptn3 span{
  display: inline;
}
.service-table.ptn3 .service-table-tr-th {
  width: auto;
  border-spacing: 0;
  background: #f0f0f0;
  z-index: 10;
  position: initial;
  top: 0;
}
.service-table.ptn3 th{
  background: #f0f0f0;
  z-index: 10;
  color: var(--text__color);
  vertical-align: middle;
  border: 1px #eaeaea solid;
   max-width: initial; 
   min-width: initial;
}
.service-table.ptn3 th p{
  text-align: center;
  margin: auto;
}
.service-table.ptn3 tr:nth-child(2) td,
.service-table.ptn3 tr:nth-child(3) td,
.service-table.ptn3 tr:nth-child(4) td,
.service-table.ptn3 tr:nth-child(5) td{
  vertical-align: top;
}
.service-table.ptn3 tr:last-child td{
  padding: 10px 10px;
  vertical-align: middle;
}
.service-table.ptn3 img.needs-logo{
  height: 200px;
  object-fit: contain;
}
.service-table.ptn3 .td-label-text,
.service-table.ptn3 .td-time,
.service-table.ptn3 span{
  font-size: 1.8rem;
/*  font-weight: bold;*/
  line-height: 1.3;
}
.service-table.ptn3 span.pik{
  color: #E3762D;
  font-weight: bold;
}
.service-table.ptn3 .td-label-text .small,
.service-table.ptn3 .td-time .small,
.service-table.ptn3 .num,
.service-table.ptn3 .text p{
  font-size: 1.1rem;
  line-height: 1.3;
}
.service-table.ptn3 .num{
  width: auto;
}
.service-table.ptn3 .border-bt{
  border-bottom: 0px solid var(--text__color);
}
.service-table.ptn3 td{
  border: 1px #eaeaea solid;
  padding: 10px 20px;
  width: auto;
/*  max-width: initial;*/
  line-height: 1.3;
}
.service-table.ptn3 .service-link{
  width: 150px;
  padding: 15px 10px;
  margin: 3px auto 8px;
  font-size: 1.2rem;
  box-shadow: 0px 6px 0px 0px rgb(166, 97, 33);
}
.service-table.ptn3 .service-link:hover{
  box-shadow: 0px 2px 0px 0px rgb(166, 97, 33);
}
.service-table.ptn3 .service-table-link{
  row-gap: 0px;
}
.service-table.ptn3 .more-link{
  width: 100%;
  font-size: 1.2rem;
}
.service-table.ptn3 .service-table-link .bl-link,
.business_diff_box_btn .bl-link{
  padding: 0px 0;
}


.table_circle{
  height: 40px;
  object-fit: contain;
  padding-bottom: 5px;
}


.service-table.ptn3 .service-table-tr-th{
  background: #F7F7F9;
  /*position: sticky;
  top: 0;*/
/*  box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, .2);*/
}
.service-table.ptn3 th{
  background: #fff;
  border: 4px #fff solid;
  border-left: 0px #fff solid;
  color: #3e3e3e;
}
.service-table.ptn3 tr:nth-child(2n+2){
  background: #F7F7F9;
}
.service-table.ptn3 tr:nth-child(2n+3){
  background: #F7F7F9;
}
.service-table.ptn3 td{
  border: 4px solid #fff;
  vertical-align: top;
}
.service-table.ptn3 tr:nth-child(1) td{
  border-top: 0px solid #fff;
}
.service-table.ptn3 tr td:last-child{
  border-right: 0px solid #fff;
}
.service-table.ptn3 .td-text span{
  font-weight: 500;
}
.service-table-link .bl-link{
  font-size: 1.3rem;
}


@media (max-width: 499px) {
  .service-box.ptn3{
    font-size: 1rem;
    line-height: 1.2;
    overflow-x: scroll;
    display: none;
  }
  .service-table.ptn3{
    white-space: normal;
    min-width: initial;
    width: 100%;
    border-collapse: collapse;
/*    white-space: nowrap;*/
    min-width: 900px;
  }
  .service-table.ptn3 th p{
    text-align: center;
    margin: auto;
    font-size: 1rem;
    line-height: 1.2;
  }
  .service-table.ptn3 .td-label-text,
  .service-table.ptn3 .td-time,
  .service-table.ptn3 span{
    font-size: 1.0rem;
  }
  .service-table.ptn3 .small{
    font-size: .9rem;
  }
  .service-table.ptn3 th{
    font-size: 1.0rem;
    line-height: 1.2;
    padding: 5px 2px;
    min-width: 90px;
    width: 110px;
  }
  .service-table.ptn3 td{
    padding: 5px 2px;
    font-size: 1.0rem;
    line-height: 1.2;
    border: 2px solid #fff;
  }
  .service-table.ptn3 tr:last-child td{
    padding: 5px 2px;
  }
  .service-table.ptn3 tr:nth-child(2) td{
    padding-left: 10px;
    padding-right: 10px;
  }
  .service-table.ptn3 img.needs-logo{
    height: 95px;
  }
  .service-table.ptn3 .service-link{
    width: auto;
    padding: 5px 5px;
    margin: 0 auto;
    font-size: 1rem;
    line-height: 1.2;
    box-shadow: 0px 0px 0px 0px rgb(166, 97, 33);
/*    background: rgba(0, 0, 0, 0);*/
/*    color: #E3762D;*/
    border-radius: 2px;
  }
  .service-table.ptn3 .service-table-link{
    row-gap: 5px;
  }
  .service-table.ptn3 .service-link.wide{
    width: auto;
  }
  .service-table.ptn3 .service-link:hover{
    box-shadow: 0px 0px 0px 0px rgb(166, 97, 33);
  }
  .table_circle{
    width: 17px;
    object-fit: contain;
    padding-bottom: 1px;
    height: auto;
  }
}

.service-box.ptn4{
  display: none;
}
@media (max-width: 499px) {
  .service-box.ptn4{
    display: block;
    font-size: 1rem;
    line-height: 1.2;
    overflow-x: hidden;
    height: auto;
    width: 100%;
    background: #fff;
    box-shadow: 0px 0px 4px 0px rgb(0, 0, 0, 0.25);
  }
  .service-box.ptn4:last-child{
    margin-top: 20px;
  }
  .service-table-ptn4{
    min-width: initial;
  }
  .service-table-ptn4 .service-table-ptn4-th-first{
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
  }
  .service-table-ptn4 .service-table-ptn4-th-first td:before {
    content: "";
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: #fff;
  }
  .service-table-ptn4 .service-table-ptn4-th-first th,
  .service-table-ptn4 .service-table-ptn4-th-first td{
    position: sticky;
    top: 0;
  }
  .service-table-ptn4 .service-table-ptn4-th-first td:nth-of-type(1),
  .service-table-ptn4 .service-table-ptn4-th-first td:nth-of-type(2){
    width: 50%;
  }
  .service-table-ptn4 .service-table th{
    width: auto;
    min-width: auto;
    max-width: initial;
  }
  .service-table-ptn4 .service-table td{
    width: auto;
    min-width: auto;
    max-width: initial;
  }

  .service-table-ptn4 {
    width: 100%;
    border-collapse: collapse;
  }
  .service-table-ptn4 tr {
    display: flex;
    flex-direction: column;
    border: 0px solid #ccc;
    margin-bottom: 0px;
    display: grid;
    grid-template-rows: auto auto;
    grid-template-columns: repeat(2, 1fr);
    padding: 0 10px;
  }
  .service-table-ptn4 th {
    text-align: center;
    padding: 10px 0 5px 0;
    border-bottom: 0px solid #ccc;
    width: 100%;
  }
  .service-table-ptn4 td {
    flex: 1;
    text-align: center;
    padding: 10px 5px;
    border-bottom: 1px solid #ccc;
    width: 100%;
  }
  .service-table-ptn4 tr:last-child td {
    border-bottom: 0px solid #ccc;
  }
  .service-table-ptn4 td:last-child {
    border-right: none;
  }
  .service-table-ptn4 tr > th {
    grid-row: 1;
    grid-column: auto / span 2;
    font-size: 1.1rem;
  }
  .service-table-ptn4 tr > td:nth-of-type(1) {
    grid-row: 2;
    grid-column: 1;
    width: 100%;
  }
  .service-table-ptn4 tr > td:nth-of-type(2) {
    grid-row: 2;
    grid-column: 2;
    width: 100%;
  }
  .service-table-ptn4-th-first th{
    display: none;
  }

  .service-table-ptn4 .service-table-link{
    row-gap: 5px;
  }
  .service-table-ptn4 .service-table-link .site-link.service-link{
    font-size: 1.2rem;
    line-height: 1;
    width: 100%;
    padding: 10px 10px;
    box-shadow: 0px 3px 0px 0px rgb(166, 97, 33);
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
  }
  .service-table-ptn4 .service-table-link .bl-link{
    font-size: 1.0rem;
  }
}




/* service */
.service {
  padding: 65px 0 44px;
  background-image: url(../img/section2_bg.webp);
  background-size: cover;
}
.service-box {
  width: auto;
  overflow-x: scroll;
  height: 1000px;
}
.service-table {
  display: block;
  margin-bottom: 0px;
  border-collapse:  collapse;
  background-color: #fff;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  min-width: 1024px;
  width: 100%;
  white-space: nowrap;
}
.service-table tbody {
  display: table;
}
.service-table-tr-th {
  width: 100%;
  background: linear-gradient( #408AFB, #2258A8);
  border-spacing: 0;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}
.service-table-tr-th th:first-child {
  border-top-left-radius: 10px;
}
.service-table-tr-th th:last-child {
  border-top-right-radius: 10px;
}
.service-table th {
  max-width: 200px;
  min-width: 130px;
  width: 200px;
  padding: 15px;
  font-size: 1.8rem;
  color: #fff;
  font-weight: bold;
  text-align: center;

}
.service-table td {
  display: table-cell;
  vertical-align: middle;
  width: 200px;
  max-width: 200px;
  padding: 15px 8px;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.5;
  text-align: center;
  border: 1px #D1D1D1 solid;
  word-wrap: break-word;
  white-space: normal; 
}
.service-tabletd p {
  text-align: left;
  line-height: 1.5;
}
.service-table .td-inner-list {
  display: flex;
  align-items: center;
}
.service-table span {
  display: block;
/*  margin-top: 8px;*/
}

.service-table span.highlight {
  display: inline-block;
}
.service-table .square-logo {
  width: 148px;
}
.service-table .sumarezi-logo {
  width: 108px;
}
.service-table .stores-logo {
  width: 137px;
}
.service-table .paycas-logo {
  width: 121px;
}
.service-table .service-img {
  width: 182px;
}
.service-table-link{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  row-gap: 20px;
}
.service-link {
  display: block;
  width: 180px;
  margin: 0 auto;
  padding:  18px 0;
  color: #fff;
  border-radius: 10px;
  font-weight: bold;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  transition: 0.3s;/*kk add*/
}
.service-link:hover {
  opacity: 0.9;/*kk add*/
  transform: translateY(4px);/*kk add*/
  box-shadow: none; /*kk add*/
}
.more-link {
  color: #2258A8;
  text-decoration: underline;
  font-weight: 400;
}
.site-link {
  background: linear-gradient( #F58631, #E3762D);
  box-shadow: 0 11px 0 0 #A55408;
}
.microcopy{
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0px;
  color: #E3762D;
  font-weight: bold;
  text-align: center;
}
.microcopy:before,
.microcopy:after{
  content: "";
  width: 35px;
  height: 2px;
  box-sizing: border-box;
  background-color: #E3762D;
}
.microcopy:before{
  transform: rotate(60deg);
}
.microcopy:after{
  transform: rotate(-60deg);
}
.microcopy-none{
  display:flex;
  width:100%;
}

@media (max-width: 499px) {
  .service-table {
    margin-bottom: 0px;
  }
  .site-link {
    font-size: 1.4rem;
    line-height: 1.357;
    box-shadow: 0px 6px 0px 0px rgb(166, 97, 33);
  }
  .more-link {
/*    box-shadow: 0 6px 0 0 #2258A8;*/
  }
  .service-link.site-link:hover {
    opacity: 1;
    transform: translateY(0px);
    box-shadow: 0px 6px 0px 0px rgb(166, 97, 33)
  }
  .more-link:hover {
    opacity: 1;
/*    transform: translateY(0px);*/
/*    box-shadow: 0 6px 0 0 #2258A8;*/
  }
  .microcopy,
  .microcopy-none{
    font-size: 1rem;
  }
  .microcopy:before,
  .microcopy:after{
    width: 25px;
    height: 1px;
  }
  .microcopy:before{
    transform: rotate(75deg);
  }
  .microcopy:after{
    transform: rotate(-75deg);
  }
}
.num {
  width: 170px;
  font-size: 2.0rem;
  font-weight: 400;
  margin: auto;
}
.circle {
  position: relative;
  z-index: 2;
}
.circle::before {
  position: absolute;
  content: "";
  background-image: url(../img/circle_bg.png);
  background-size: cover;
  width: 100px;
  height: 100px;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  -webkit-transform: translate(-50%,-50%);
  -moz-transform: translate(-50%,-50%);
  -ms-transform: translate(-50%,-50%);
  -o-transform: translate(-50%,-50%);
  z-index: -1;
}
.triangle {
  position: relative;
  z-index: 2;
}
.triangle::before {
  position: absolute;
  content: "";
  background-image: url(../img/triangle_bg.png);
  background-position: center;
  background-size: cover;
  width: 155px;
  height: 134px;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  -webkit-transform: translate(-50%,-50%);
  -moz-transform: translate(-50%,-50%);
  -ms-transform: translate(-50%,-50%);
  -o-transform: translate(-50%,-50%);
  z-index: -1;
}
.text  {
/*  margin-bottom: 24px;*/
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.text p {
  width: 50%;
  text-align: left;
  font-size: 1.4rem;
}
.text span {
  font-size: 1rem;
}
.text .num {
  width: 50%;
  margin-left: 24px;
  font-size: 1.4rem;
}
.card .num {
  margin-top: 1.6rem;
}
.large {
  font-size: 2rem;
}
.small {
  font-size: 1.4rem;
}
@media (max-width: 499px) {
  .small {
    font-size: 1.2rem;
  }
}
.service-comment {
  margin-bottom: 16px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  column-gap: 64px;
}
.service-comment-illust  {
  width: 324px;
}
.service-comment-text {
  position: relative;
  padding: 16px 56px;
  background-color: #E0F2FF;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}
.service-comment-text::before {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  border-top: 30px solid transparent;
  border-right: 30px solid #E0F2FF;
  border-bottom: 30px solid transparent;
  border-radius: 8px;
  -webkit-border-radius: 16px;
  -moz-border-radius: 16px;
  -ms-border-radius: 16px;
  -o-border-radius: 16px;
  left: -26px;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
}
.comment-firsttext {
  margin-bottom: 9px;
  display: flex;
  align-items: center;
}
.comment-firsttext img {
  width: 221px;
  padding: 0 16px;
}
.service-comment-text p {
  font-size: 4rem;
  line-height: 1.2;
  font-weight: bold;
}
.comment-subtext .point {
  color: #F7913E;
  text-decoration: underline;
}
.service-arrow img {
  display: block;
  width: 56px;
  margin: 0 auto;
}


/* cta */
.cta  {
  padding: 80px 0 64px;
  border: 14px solid #F3560E;
}
.cta-title {
  position: relative;
  margin-bottom: 56px;
  font-size: 3.2rem;
  line-height: 1.5;
  font-weight: bold;
}
.cta-title::before {
  position: absolute;
  content: "";
  background-image: url(../img/squeare_illust.webp);
  background-size: cover;
  width: 291px;
  height: 276px;
  bottom: 0;
  right: -24px;
}
.cta-title .point {
  color: #F35C13;
  text-decoration: underline;
}
.cta-btn {
  margin-bottom: 64px;
}
@media screen and (max-width: 499px) {
  .cta  {
    padding: 80px 0 32px;
    border: 14px solid #F3560E;
  }
  .cta-btn {
    margin-bottom: 32px;
  }
}
.cta-btn-link {
  padding: 24px 0;
  display: block;
  width: 100%;
  font-size: 2.4rem;
  font-weight: bold;
  color: #fff;
  background: linear-gradient(#F68C3C, #F25109);
  box-shadow: 0px 7px 0px 0px #A55408;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  text-align: center;
  transition: 0.3s;/*kk add*/
}
.cta-btn-link:hover {
  opacity: 0.9;/*kk add*/
  transform: translateY(4px);/*kk add*/
  box-shadow: none; /*kk add*/
}
.cta-btn-link span {
  margin-left: 234px;
  position: relative;
}
.cta-btn-link span::before {
  position: absolute;
  content: "";
  background-image: url(../img/logo_squeare_white.png);
  background-size: cover;
  width: 208px;
  height: 55px;
  top: 50%;
  left: -216px;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
}
.coupon-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  column-gap: 48px;
}
.coupon-content img {
  width: 330px;
}
.coupon-text {
  font-size: 2.4rem;
  line-height: 1.5;
}
.coupon-text .point {
  color: #F46117;
  text-decoration: underline;
}
.coupon-text .bold {
  font-weight: bold;
}
/* footer */
.footer {
  padding: 64px 0;
}
.footer-content {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.footer-logo-link img {
  width: 155px;
}
.footer-nav-link {
  display: block;
  font-size: 1.6rem;
  margin-bottom: 16px;
}
.footer-nav-link:hover {
  color: #F25109;
}
.copy-right {
  margin-top: 32px;
  font-size: 1.6rem;
}
@media screen and (max-width: 499px) {
  /* コンテンツ幅 */
  .inner {
    max-width: 100%;
  }
}
@media screen and (max-width: 1024px) {
  /* 見出し */
  .sec-title {
    font-size: 4rem;
  }
  /* header */
   /* header */
  .header {
    background-color: #fff;
    position: fixed;
    padding: 11px 16px;
    width: 100%;
    height: auto;
    display: block;
/*    overflow-x: hidden;*/
    z-index: 99;
  }
  .header-logo {
    position: relative;
    z-index: 98;
    width: 200px;
  }
  .header-menu {
    position: absolute;
    display: block;
    width: 24px;
    height: 16px;
    z-index: 99;
    right: 24px;
    top: 15px;
    z-index: 99;
  }
  .header-menu span {
    display: block;
    position: absolute;
    content: "";
    width: 100%;
    height: 2px;
    background-color: #3e3e3e;
    transition: transform 0.6s;
    -webkit-transition: transform 0.6s;
    -moz-transition: transform 0.6s;
    -ms-transition: transform 0.6s;
    -o-transition: transform 0.6s;
  }
  .header-menu span:nth-child(1) {
    top: 0px;
  }
  .header-menu span:nth-child(2) {
    top: 7px;
  }
  .header-menu span:nth-child(3) {
    top: 14px
  }
  .header-menu.is_active span:nth-child(1) {
    transform: translate(0,7px) rotate(-45deg);
    -webkit-transform: translate(0,7px) rotate(-45deg);
    -moz-transform: translate(0,7px) rotate(-45deg);
    -ms-transform: translate(0,7px) rotate(-45deg);
    -o-transform: translate(0,7px) rotate(-45deg);
  }
  .header-menu.is_active span:nth-child(2) {
    opacity: 0;
  }
  .header-menu.is_active span:nth-child(3) {
    transform: translate(0,-7px) rotate(45deg);
    -webkit-transform: translate(0,-7px) rotate(45deg);
    -moz-transform: translate(0,-7px) rotate(45deg);
    -ms-transform: translate(0,-7px) rotate(45deg);
    -o-transform: translate(0,-7px) rotate(45deg);
  }
  .header-nav {
    position: relative;
  }
  .header-nav.is_active {
    width: 100%;
    height: 100vh;
  }
  .header-list {
    display: block;
    position: absolute;
    width: 100%;
    height: 100vh;
    padding: 80px 24px 0;
    z-index: 97;
    top: 52px;
    left: 0;
    background-color: #fff;
    transform: translateX(110%);
    -webkit-transform: translateX(110%);
    -moz-transform: translateX(110%);
    -ms-transform: translateX(110%);
    -o-transform: translateX(110%);
    transition: transform 0.6s;
    -webkit-transition: transform 0.6s;
    -moz-transition: transform 0.6s;
    -ms-transition: transform 0.6s;
    -o-transition: transform 0.6s;
  }
  .header-list.is_active {
    position: relative;
    transform: translateX(0);
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
  }
  .header-list {
    padding-top: 80px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    column-gap: 0;
  }
  .header-item {
    width: 100%;
    margin-bottom: 32px;
    padding-bottom: 16px;
    border-bottom: 1px solid #DCDBDB;
  }

  /* cta */
  .cta-title::before {
    bottom: initial;
    top: -142px;
    right: -8px;
    width: 147px;
    height: 139px;
  }
  .cta-title .pc {
    display: none;
  }
  .coupon-content {
    flex-direction: column;
  }
}
@media screen and (max-width: 499px) {
  /* スライダー */
  .img-01, .img-02, .img-03 {
    width: 100%;
  }
  /* 見出し */
  .sec-title {
    font-size: 2.8rem;
    margin-bottom: 32px;
  }
  /* service */
  .service {
    background-image: url(../img/section2_bg_sp.webp);
  }
  .service-table th {
    font-size: 1.6rem;
  }
  .num {
    font-size: 1.8rem;
  }
  .large {
    font-size: 1.8rem;
  }
  .service-comment-text p {
    font-size: 1.6rem;
  }
  .service-comment-text {
    padding: 32px 16px;
  }
  .comment-firsttext img {
    width: 150px;
  }
  .service-arrow img {
    width: 41px;
  }
  
  /* cta */
  .cta-title {
    font-size: 1.6rem;
    margin-bottom: 24px;
  }
  .cta-btn-link span {
    margin-left: 159px;
    font-size: 1.6rem;
  }
  .cta-btn-link span::before {
    width: 141px;
    height: 37px;
    left: -145px;
  }
  .coupon-content img {
    width: 100%;
  }
  .coupon-text {
    font-size: 1.6rem;
  }
  /* footer */
  .footer {
    padding: 48px 0;
  }
  .footer-content {
    flex-direction: column;
    row-gap: 32px;
  }
  .copy-right {
    font-size: 1.1rem;
  }
}


.circle01 p {
  position: relative;
  z-index: 2;
}
.circle01 p::before {
  position: absolute;
  content: "";
  background-image: url(../img/circle_img01.png);
  background-size: contain;
  background-repeat: no-repeat;
  width: calc(234px /3);
  height: calc(222px /3);
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  -webkit-transform: translate(-50%,-50%);
  -moz-transform: translate(-50%,-50%);
  -ms-transform: translate(-50%,-50%);
  -o-transform: translate(-50%,-50%);
  z-index: -1;
}
.circle02 p {
  position: relative;
  z-index: 2;
}
.circle02 p::before {
  position: absolute;
  content: "";
  background-image: url(../img/circle_img02.png);
  background-size: contain;
  background-repeat: no-repeat;
  width: calc(234px /3);
  height: calc(222px /3);
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  -webkit-transform: translate(-50%,-50%);
  -moz-transform: translate(-50%,-50%);
  -ms-transform: translate(-50%,-50%);
  -o-transform: translate(-50%,-50%);
  z-index: -1;
}
.triangle1 p {
  position: relative;
  z-index: 2;
}
.triangle1 p::before {
  position: absolute;
  content: "";
  background-image: url(../img/triangle.png);
  background-size: contain;
  background-repeat: no-repeat;
  width: calc(234px /3);
  height: calc(222px /3);
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  -webkit-transform: translate(-50%,-50%);
  -moz-transform: translate(-50%,-50%);
  -ms-transform: translate(-50%,-50%);
  -o-transform: translate(-50%,-50%);
  z-index: -1;
}
@media (max-width: 499px) {
  .circle01 p::before {
    width: calc(117px / 3);
    height: calc(111px / 3);
  }
  .circle02 p::before {
    width: calc(117px / 3);
    height: calc(111px / 3);
  }
  .triangle p::before {
    width: calc(117px / 3);
    height: calc(111px / 3);
  }
}

.service-inner.ptn2{
  box-shadow: 0px 0px 4px 0px rgb(0, 0, 0, 0.25);
  width: 100%;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  padding: 0;
}
.service-box.ptn2{
  font-size: 1.1rem;
  border-top-right-radius: 10px;
  border-top-left-radius: 10px;
  height: auto;
}
.service-table.ptn2{
  white-space: normal;
}
.service-table.ptn2 .service-table-tr-th {
  width: auto;
  border-spacing: 0;
  background: #f0f0f0;
  z-index: 10;
  position: initial;
  top: 0;
}
.service-table.ptn2 th{
  background: #f0f0f0;
  z-index: 10;
  position: sticky;
  left: 0;
  color: var(--text__color);
  font-size: 1.1rem;
  vertical-align: middle;
  border: 1px #eaeaea solid;
   max-width: initial; 
   min-width: initial;
}
.service-table.ptn2 th p{
  width: 60px;
  text-align: center;
  margin: auto;
}
.service-table.ptn2 tr:nth-child(2) td,
.service-table.ptn2 tr:nth-child(3) td,
.service-table.ptn2 tr:nth-child(4) td,
.service-table.ptn2 tr:nth-child(5) td{
  vertical-align: top;
}
.service-table.ptn2 tr:last-child td{
  padding: 10px 10px;
}

.service-table.ptn2 .service-img{
  width: 160px;
}
.service-table.ptn2 .td-text{
  width: 203px;
  padding-left: 0px;
  font-size: 1.0rem;
}
.service-table.ptn2 .td-label-text,
.service-table.ptn2 .td-time,
.service-table.ptn2 span{
  font-size: 1.1rem;
}
.service-table.ptn2 .td-label-text .small,
.service-table.ptn2 .td-time .small,
.service-table.ptn2 .num,
.service-table.ptn2 .text p{
  font-size: 1.1rem;
}
.service-table.ptn2 .num{
  width: auto;
}
.service-table.ptn2 .border-bt{
  border-bottom: 0px solid var(--text__color);
}
.service-table.ptn2 td{
  border: 1px #eaeaea solid;
  padding: 15px 20px;
  font-size: 1.0rem;
  width: auto;
  max-width: initial;
}
.service-table.ptn2 .service-link{
  width: 150px;
  padding: 15px 10px;
  margin: 0 auto;
  font-size: 1.2rem;
  box-shadow: 0px 6px 0px 0px rgb(166, 97, 33);
}
.service-table.ptn2 .service-link:hover{
  box-shadow: 0px 2px 0px 0px rgb(166, 97, 33);
}
.service-table.ptn2 .service-table-link{
  row-gap: 10px;
}
.service-table.ptn2 .more-link{
  width: 100%;
  font-size: 1.2rem;
}
.service-table.ptn2 td .gmo{
  width: 100px;
}
.service-table.ptn2 td .square {
  width: 100px;
}
.service-table.ptn2 td .payjp {
  width: 80px;
}
.service-table.ptn2 td .zeus {
  width: 80px;
}

.circle::before {
  width: calc(234px /4);
  height: calc(222px /4);
  background-repeat: no-repeat;
  background-size: contain;
}


.service-table.ptn2 .service-table-tr-th{
  background: #fff;
}
.service-table.ptn2 th{
  background: #fff;
  border: 0px #eaeaea solid;
  color: #3e3e3e;
}
.service-table.ptn2 tr:nth-child(2n+2){
  background: #F7F7F9;
}
.service-table.ptn2 tr:nth-child(2n+3){
  background: #F2F1F5;
}
.service-table.ptn2 td{
  border: 0px #eaeaea solid;
  border: 1px solid #fff;
}
.service-table.ptn2 tr:nth-child(1) td{
  border-top: 0px solid #fff;
}
.service-table.ptn2 tr td:last-child{
  border-right: 0px solid #fff;
}
.service-table.ptn2 .td-text span{
  font-weight: 500;
  
}


@media (max-width: 499px) {
  .service-inner.ptn2{
/*    padding: 0 24px;
  }
  .service-box.ptn2{
/*    height:calc(100vh - 100px);*/
  }
  .service-table.ptn2{
    white-space: normal;
    font-size: 1.0rem;
  }
  .service-table.ptn2 th{
    font-size: 1.1rem;
  }
  .service-table.ptn2 .td-text{
    width: calc(MAX(100vw - 220px, 55vw));
    font-size: 1.0rem;
  }
  .service-table.ptn2 th p{
    width: 60px;
    text-align: center;
    margin: auto;
  }
  .circle::before {
    width: calc(234px /6);
    height: calc(222px /6);
  }
  .service-table.ptn2 td .gmo{
    width: 90px;
  }
  .service-table.ptn2 td .square {
    width: 80px;
  }
  .service-table.ptn2 td .payjp {
    width: 80px;
  }
  .service-table.ptn2 td .zeus {
    width: 75px;
  }
  .service-table.ptn2 td{
    padding: 15px 10px;
  }
  .service-table.ptn2 .service-link:hover{
    box-shadow: 0px 6px 0px 0px rgb(166, 97, 33);
  }
}

/* introduction */
.introduction {
   padding: 114px 0 77px; 
/*  padding: 0 0 77px;*/
  background-image: url(../img/introduction_bg.jpg);
  background-size: cover;
}
.introduction-title .small {
  display: block;
  font-size: 4rem;
}
.introduction-item {
  margin-bottom: 130px;
  padding: 40px 24px 64px;
  background-color: var(--white__color);
  box-shadow: 2px 5px 15px 5px rgb(0, 0, 0, 0.25);
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}
.introduction-item-name {
  margin-bottom: 40px;
  font-size: 3.2rem;
  font-weight: bold;
}
.introduction-item-name span {
  margin-right: 6px;
}
.introduction-item-name .num01 {
  position: relative;
  padding-left: 56px;
  color: #D3B134;
}
.introduction-item-name .num01::before {
  position: absolute;
  content: "";
  background-image: url(../img/rank_img01.png);
  background-size: cover;
  width: 40px;
  height: 36px;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
}
.introduction-item-name .num02 {
  position: relative;
  padding-left: 56px;
  color: #939393;
}
.introduction-item-name .num02::before {
  position: absolute;
  content: "";
  background-image: url(../img/rank_img02.png);
  background-size: cover;
  width: 40px;
  height: 36px;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
}
.introduction-item-name .num03 {
  position: relative;
  padding-left: 56px;
  color: #DC640F;
}
.introduction-item-name .num03::before {
  position: absolute;
  content: "";
  background-image: url(../img/rank_img03.png);
  background-size: cover;
  width: 40px;
  height: 36px;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
}
.introduction-item-data {
  margin-bottom: 48px;
  column-gap: 50px;
}
.introduction-item-dataimg {
  width: 280px;
  display: flex;
  justify-content: center;
}
.introduction-item-content{
  width: calc(100% - 280px);
}
#introduction-item1 .introduction-item-dataimg img{
  height: 100px;
  width: auto;
  object-fit: contain;
}
#introduction-item2 .introduction-item-dataimg img{
  height: 55px;
  width: auto;
  object-fit: contain;
}
#introduction-item3 .introduction-item-dataimg img{
  height: 75px;
  width: auto;
  object-fit: contain;
}
#introduction-item4 .introduction-item-dataimg img{
  height: 55px;
  width: auto;
  object-fit: contain;
}
#introduction-item5 .introduction-item-dataimg img{
  height: 75px;
  width: auto;
  object-fit: contain;
}
.introduction-item-text  {
  margin-bottom: 16px;
}
.introduction-item-text p {
  font-size: 1.8rem;
  line-height: 1.5;
  font-weight: bold;
  color: var(--text__color);
}
.introduction-item-btn {
  column-gap: 11px;
  flex-wrap: wrap;
}
.introduction-item-link {
  display: block;
  width: calc(50% - ( 11px / 2 ));
  padding: 8px 0;
  font-size: 2rem;
  font-weight: bold;
  color: var(--white__color);
  text-align: center;
}
.one-link {
  padding: 18px 0;
  width: 100%;
}
.introduction-item-link:hover {
  opacity: 0.6;
}
.introduction-item-link .small {
  font-size: 1.7rem;
}
@media (max-width: 499px) {
  .introduction{
    padding: 65px 0 44px;
  }
  .introduction-item {
    padding: 24px 10px 24px;
    margin-bottom: 40px;
    box-shadow: 1px 3px 15px 3px rgb(0, 0, 0, 0.15);
  }
  .introduction-title .small {
    font-size: 2.5rem;
  }
  .introduction-item-name {
    font-size: 2.4rem;
    margin-bottom: 20px;
  }
  .introduction-item-name .num01::before,
  .introduction-item-name .num02::before,
  .introduction-item-name .num03::before {
    width: 24px;
    height: 22px;
  }
  .introduction-item-name .num01,
  .introduction-item-name .num02,
  .introduction-item-name .num03 {
    padding-left: 30px;
  }
  .introduction-item-data {
    flex-wrap: wrap;
    margin-bottom: 15px;
  }
  .introduction-item-content{
    width: 100%;
  }
  .introduction-item-dataimg {
    width: 100%;
    justify-content: flex-start;
    margin-bottom: 10px;
  }
  #introduction-item1 .introduction-item-dataimg img{
    height: 35px;
  }
  #introduction-item2 .introduction-item-dataimg img{
    height: 45px;
  }
  #introduction-item3 .introduction-item-dataimg img{
    height: 45px;
  }
  #introduction-item4 .introduction-item-dataimg img{
    height: 30px;
  }
  #introduction-item5 .introduction-item-dataimg img{
    height: 40px;
  }
  .introduction-item-text p {
    font-size: 1.6rem;
    line-height: 1.563;
  }
  .introduction-item-link {
    width: 100%;
    font-size: 1.5rem;
    margin: 10px 0;
    padding: 6px 0 8px 0;
  }
  .introduction-item-btn {
    flex-wrap: wrap;
  }
  .introduction-item-link .small {
    font-size: 1.4rem;
    line-height: 1.357;
    margin-bottom: 2px;
  }
}
.introduction-item-btn .or-link {
  background: linear-gradient(90deg, #F58631, #E3762D);
  box-shadow: 0px 11px 0px 0px rgb(166, 97, 33);
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  transition: 0.3s;
}
.introduction-item-btn .introduction-item-link.link-padd {
  padding: 18px 0;
  font-size: 1.7rem;
}
@media (max-width: 499px) {
  .introduction-item-btn .introduction-item-link.link-padd{
    padding: 8px 0 8px 0;
    font-size: 1.4rem;
    margin: 10px 0 5px 0;
  }
}

.introduction-item-btn .or-link:hover {
  opacity: 0.9;
  transform: translateY(4px);
  box-shadow: 0px 5px 0px 0px rgb(166, 97, 33);
}

.bl-link {
  font-size: 1.6rem;
  color: #054EBA;
  transition: 0.3s;
}
.bl-link:hover {
  opacity: 0.9;
}
@media (max-width: 499px) {
  .introduction-item-btn .or-link {
    box-shadow: 0px 6px 0px 0px rgb(166, 97, 33);
    line-height: 1.25;
  }
  .bl-link {
    margin: 0px 0;
    font-size: 1.4rem;
  }
  .service-table.ptn3 .service-table-link .bl-link,
  .business_diff_box_btn .bl-link{
    font-size: 0.7rem;
  }
  .service-table.ptn3 .service-table-link .bl-link{
    width: 100%;
  }
  .introduction-item-btn .or-link:hover {
    opacity: 1;
    transform: translateY(0px);
    box-shadow: 0px 6px 0px 0px rgb(166, 97, 33);
  }
  .bl-link:hover {
    opacity: 1;
  }
}

.introduction-item-table table {
  width: 100%;
  margin-bottom: 32px;
  border: 1px solid var(--text__color);
}
.introduction-item-table table tbody{
  flex-wrap: wrap;
}
.introduction-item-table tr{
  width: 20%;
  display: flex;
  flex-wrap: wrap;
  align-content: flex-start;
}
.introduction-item-table tr:nth-child(6){
  width: 100%;
}
.introduction-item-table th {
  padding: 8px 24px;
  font-size: 1.6rem;
  font-weight: 400;
  background-color: var(--gray__color);
  text-align: center;
  width: 100%;
  border-right: 1px solid var(--text__color);
}
.introduction-item-table tr:nth-child(n+5) th,
.introduction-item-table tr:nth-child(n+5) td{
  border-right: 0px solid var(--text__color);
}
.introduction-item-table tr:nth-child(6) th{
  border-top: 1px solid var(--text__color);
}
.introduction-item-table tr:nth-child(6) td{
  text-align: left;
  line-height: 1.25;
}
.introduction-item-table td {
  display: table-cell;
  vertical-align: middle;
  width: 100%;
  padding:  0px 10px;
  height: 100px;
  font-size: 1.8rem;
  font-weight: 400;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  border-right: 1px solid var(--text__color);
}
.introduction-item-table .star {
  font-size: 2rem;
}
@media (max-width: 499px) {
  .introduction-item-table table{
    display: table;
    border: 0px;
    margin-bottom: 15px;
  }
  .introduction-item-table tr{
    width: 100%;
    display: table-row;
  }
  .introduction-item-table tbody{
    display: table-row-group;
  }
  .introduction-item-table th {
    min-width: 85px;
    font-size: 1.1rem;
    padding: 8px 5px 8px 10px;
    width: auto;
    background-color: #eee;
    font-weight: bold;
    vertical-align: middle;
    border: 1px solid #ccc;
    text-align: left;
  }
  .introduction-item-table tr:last-child th{
    border-top: 0px solid var(--text__color);
  }
  .introduction-item-table td {
    display: table-cell;
    font-size: 1.1rem;
    width: auto;
    padding: 10px 5px;
    height: auto;
    border: 1px solid #ccc;
    text-align: left;
  }
  .introduction-item-table td .p_medium{
    font-size: 1.1rem;
  }
  .introduction-item-table tr:nth-child(n+5) th,
  .introduction-item-table tr:nth-child(n+5) td{
    border: 1px solid #ccc;
  }
  .introduction-item-table tr:nth-child(6) td{
    font-size: 1rem;
    line-height: 1.5;
  }
  .introduction-item-table .star {
    font-size: 1.6rem;
  }
  .introduction-item-table .circle01 p:before,
  .introduction-item-table .circle02 p:before,
  .introduction-item-table .triangle1 p:before{
    display: none;
  }
}
.introduction-item-table .circle01,
.introduction-item-table .circle02 {
  width: 100%;
}
.p_medium{
  font-size: 1.9rem;
  text-align: left;
}
.p_small{
  font-size: 1.6rem;
}
@media (max-width: 499px) {
  .p_medium{
    font-size: 1.4rem;
  }
  .p_small{
    font-size: 1.2rem;
  }
}

.introduction-item-reviews1{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.introduction-item-reviews:first-child{
  width: 72%;
}
.introduction-item-reviews:last-child{
  width: 25%;
}
.introduction-item-reviews.last:first-child{
  width: 49%;
}
.introduction-item-reviews.last:last-child{
  width: 49%;
}
.introduction-item-reviewTitle {
  justify-content: space-between;
  margin-bottom: 16px;
}
.introduction-item-reviewTitle p {
  font-size: 2.2rem;
  font-weight: bold;
  color: var(--text__color);
}
.introduction-item-reviewsList {
  justify-content: flex-start;
  margin-bottom: 32px;
  column-gap: 8px;
}
.introduction-item-reviews:first-child li{
  width: calc(100% / 3 - ( 32px / 3 ));
}
.introduction-item-reviews:first-child .introduction-item-reviewsItem {
  padding: 15px 10px;
  background-color: #fff;
  box-shadow: 3px 3px 8px rgb(0, 0, 0, 0.20);
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
  height: 150px;
  position: relative;
  border: 1px solid #000;
}
.introduction-item-reviews:last-child .introduction-item-reviewsItem {
  padding: 15px 10px;
  width: 100%;
  background-color: #F0F0F0;
  box-shadow: 3px 3px 8px rgb(0, 0, 0, 0.20);
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
  height: 150px;
  position: relative;
  border: 1px solid #000;
}
#introduction-item5 .introduction-item-reviews:first-child .introduction-item-reviewsItem,
#introduction-item5 .introduction-item-reviews:last-child .introduction-item-reviewsItem{
  height: 130px;
}
.introduction-item-reviews:first-child .introduction-item-reviewsItem:before,
.introduction-item-reviews:first-child .introduction-item-reviewsItem:after,
.introduction-item-reviews:last-child .introduction-item-reviewsItem:before,
.introduction-item-reviews:last-child .introduction-item-reviewsItem:after{
  position: absolute;
    left: 50%;
    height: 0;
    width: 0;
    border: solid transparent;
    content: "";
}
.introduction-item-reviews:first-child .introduction-item-reviewsItem:before,
.introduction-item-reviews:last-child .introduction-item-reviewsItem:before{
  top: 100%;
    margin-left: -5px;
    border-color: transparent;
    border-top-color: #000;
    border-left-color: #000;
    border-width: 7px;
}
.introduction-item-reviews:first-child .introduction-item-reviewsItem:after{
  top: calc(100% - 1px);
    margin-left: -6.5px;
    border-color: transparent;
    border-top-color: #fff;
    border-left-color: #fff;
    border-width: 7.5px;
}
.introduction-item-reviews:last-child .introduction-item-reviewsItem:after{
  top: calc(100% - 1px);
    margin-left: -6.5px;
    border-color: transparent;
    border-top-color: #F0F0F0;
    border-left-color: #F0F0F0;
    border-width: 7.5px;
}
.introduction-item-reviews.last:first-child li {
  width: calc(100% / 2 - ( 32px / 2 ));
}
.introduction-item-reviews.last:last-child li {
  width: calc(100% / 2);
}
/*.introduction-item-reviewsList .last {
  background-color: #F0F0F0;
}*/
.introduction-item-reviewsLabel {
  font-size: 1.2rem;
  color: #939393;
  position: absolute;
  bottom: 10px;
  right: 10px;
}
.introduction-item-reviewsTit span{
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1;
  position: relative;
  z-index: 1;
}
.introduction-item-reviewsTit.nowrap span{
  font-size: 1.5rem;
}
.introduction-item-reviewsTit span:before {
  content: "";
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 1px;
  border-bottom: 10px solid #f8e4d3;
  z-index: -1;
}
.introduction-item-reviewsText {
  font-size: 1.5rem;
  line-height: 1.5;
  margin-top: 10px;
}
.introduction-item-reviewsLabelImg{
  width: 85px;
  margin: 13px auto 0;
}
.introduction-item-reviewsCommentTitle {
  margin-bottom: 16px;
}

.introduction-item-com-point{
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.introduction-item-com-pointbox{
  width: 100%;
  margin-bottom: 32px;
}
.introduction-item-com-pointTitle,
.introduction-item-com-pointimg{
  width: 100%;
}
.introduction-item-com-pointTitle{
  display: flex;
  align-items: center;
  padding-bottom: 16px;
  column-gap: 12px;
  position: relative;
}
.introduction-item-com-pointTitle span.ab{
  position: absolute;
  left: auto;
  top: auto;
  right: 0;
}
.introduction-item-com-pointTitle img{
  width: 100px;
  object-fit: contain;
}
.introduction-item-com-pointimg{
  border: 1px solid #eee;
}
.introduction-item-com-pointimg.base{
  background-image: url(../img/company_point4_base.png);
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  padding: 40px;
  column-gap: 30px;
  display: flex;
  align-items: flex-end;
}
.introduction-item-com-pointimg.base .company_point4_text{
  width: 160px;
  object-fit: contain;
}
.introduction-item-com-pointTitle h4{
  padding-bottom: 5px;
  width: calc(100% - 100px);
  border-bottom:1px solid #3282FA;
}
@media (max-width: 499px) {
  .introduction-item-com-pointTitle{
    flex-wrap: wrap;
    align-items: center;
    padding-bottom: 16px;
    column-gap: 0px;
    row-gap: 5px;
  }
  .introduction-item-com-pointTitle h4{
    width: 100%;
  }
  .introduction-item-com-pointTitle span.ab{
    bottom: 21px;
  }
  .introduction-item-com-pointbox{
    margin-bottom: 25px;
  }
  .introduction-item-com-pointTitle img{
    width: 85px;
  }
  .introduction-item-com-pointimg.base{
    width: 100%;
    padding: 10px;
    column-gap: 10px;
    align-items: flex-start;
    flex-wrap: wrap;
    justify-content: flex-end;
  }
  .introduction-item-com-pointimg.base .company_point5_item{
    width: 120px;
    object-fit: contain;
  }
}


.introduction-item-com-pointtitbox{
  width: 100%;
  margin-bottom: 32px;
  display: flex;
  flex-wrap: wrap;
  color: #111;
}
.introduction-item-com-pointtitbox-tit{
  width: 100%;
  border-top:1px solid #111;
  border-left:1px solid #111;
  border-right:1px solid #111;
  padding: 20px 20px 30px;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  column-gap: 30px;
}
.introduction-item-com-pointtitbox-tit1{
  margin-top: 20px;
}
.introduction-item-com-pointtitbox-tit h2{
  font-size: 5.4rem;
  line-height: 1.35;
}
.introduction-item-com-pointtitbox-tit h2 span{
  font-size: 4.5rem;
}
.introduction-item-com-pointtitbox-tit1 p{
  position: relative;
  font-size: 2.4rem;
  padding: 0 0 10px 40px;
  line-height: 1.25;
}
.introduction-item-com-pointtitbox-tit1 p span{
  font-size: 2.0rem;
}
.introduction-item-com-pointtitbox-tit1 p:before{
  content: '';
  background-image: url(../img/point_check_gr.png);
  background-size: contain;
  background-repeat: no-repeat;
  width: 36px;
  height: 30px;
  position: absolute;
  top: 0;
  left: 0;
}
#introduction-item5 .introduction-item-com-pointtitbox-img img{
  border-bottom:1px solid #111;
  border-left:1px solid #111;
  border-right:1px solid #111;
}
@media (max-width: 499px) {
  .introduction-item-com-pointtitbox-tit{
    flex-wrap: wrap;
    padding: 10px 15px 15px;
    column-gap: 20px;
  }
  .introduction-item-com-pointtitbox-tit1{
    margin-top: 15px;
  }
  .introduction-item-com-pointtitbox-tit h2{
    font-size: 2.2rem;
  }
  .introduction-item-com-pointtitbox-tit h2 span{
    font-size: 2.2rem;
  }
  .introduction-item-com-pointtitbox-tit1 p{
    font-size: 1.5rem;
    padding: 0 0 8px 24px;
  }
  .introduction-item-com-pointtitbox-tit1 p span{
    font-size: 1.2rem;
  }
  .introduction-item-com-pointtitbox-tit1 p:before{
    width: 20px;
    height: 18px;
  }
  #introduction-item5 .introduction-item-com-pointtitbox-img img{
    border-bottom:0px;
    border-left:0px;
    border-right:0px;
  }
}


.introduction-item-com-pointimg{
  border: 0;
}
.introduction-item-com-pointimg img{
  object-fit: contain;
}
.introduction-item-com-pointbox{
  color: #111;
  font-size: 1.6rem;
}
.sq-point1{
  display: flex;
  flex-wrap: wrap;
  row-gap: 25px;
}
.sq-point1-cont{
  width: 100%;
  display: flex;
  justify-content: space-between;
  column-gap: 40px;
}
.sq-point1-cont-lineup{
  background: #eee;
  padding: 8px;
  width: calc(360px* 2 + 24px);
  display: flex;
  flex-wrap: wrap;
  column-gap: 8px;
  row-gap: 8px;
}
.sq-point1-cont-lineup a{
  display: block;
  overflow: hidden;
}
.sq-point1-cont-lineup img{
  width: 360px;
}
.sq-point1-cont-lineup a img{
  transition: 0.3s;
}
.sq-point1-cont-lineup a:hover img{
  scale: 1.05;
}
@media (max-width: 499px) {
  .introduction-item-com-pointbox{
    font-size: 1.4rem;
  }
  .sq-point1-cont{
    flex-wrap: wrap;
    row-gap: 20px;
  }
  .sq-point1-cont-lineup{
    padding: 8px;
    width: 100%;
    column-gap: 8px;
    row-gap: 8px;
  }
  .sq-point1-cont-lineup img{
    width: 100%;
  }
  .sq-point1-cont-lineup a:hover img{
    scale: 1;
  }
}

.sq-point1-cont-present-tit .tit{
  font-weight: bold;
  font-size: 1.8rem;
}
.sq-point1-cont-present-tit .tit span{
  font-size: 3rem;
  background: linear-gradient(180deg, #408AFB 0%, #2258A8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}
.sq-point1-cont-present-tit{
  margin-bottom: 15px;
}
.sq-point1-cont-present-cont li{
  font-weight: bold;
  border-bottom: 1px solid #408BFB;
  display: flex;
  column-gap: 5px;
  align-items: center;
  position: relative;
}
.sq-point1-cont-present-cont li:first-child{
  border-top: 1px solid #408BFB;
}
.sq-point1-cont-present-cont .nom{
  font-size: 5.0rem;
  padding: 0 5px 5px 5px;
  background: linear-gradient(180deg, #408AFB 0%, #2258A8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  transform: matrix(1, 0, -0.12, 0.99, 0, 0);
  line-height: 1;
}
.sq-point1-cont-present-cont .tit{
  font-size: 2.0rem;
}
.sq-point1-cont-present-cont .tate{
  letter-spacing: 0.4rem;
}
.sq-point1-cont-present-cont li:last-child:after{
  content: 'and more...';
  position: absolute;
  top: 50%;
  right: 0;
  font-size: 1.6rem;
  font-weight: 400;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
}
#introduction-item5 .sq-point1-cont-present-cont li:last-child:after{
  display: none;
}
@media (max-width: 499px) {
  .sq-point1-cont-present{
    width: 100%;
  }
  .sq-point1-cont-present-tit .tit{
    font-size: 1.4rem;
    margin-top: 5px;
  }
  .sq-point1-cont-present-tit .tit span{
    font-size: 2.2rem;
  }
  .sq-point1-cont-present-tit{
    margin-bottom: 15px;
  }
  .sq-point1-cont-present-cont li{
    column-gap: 5px;
  }
  .sq-point1-cont-present-cont .nom{
    font-size: 3.5rem;
    padding: 0 0 5px 0;
  }
  .sq-point1-cont-present-cont .tit{
    font-size: 1.6rem;
  }
  .sq-point1-cont-present-cont .tate{
    letter-spacing: 0.2rem;
  }
  .sq-point1-cont-present-cont li:last-child:after{
    font-size: 1.2rem;
  }
}


.sq-point2-table{
  white-space: normal;
  table-layout: fixed;
}
.sq-point2-table tbody{
  width: 100%;
  table-layout: fixed;
}
.sq-point2-table-tr1 {
  width: auto;
  border-spacing: 0;
  background: #fff;
}
.sq-point2-table th{
  background: #111;
  font-size: 2rem;
  color: #fff;
  vertical-align: middle;
  padding: 32px 20px;
}
.sq-point2-table .sq-point2-table-tr1 th{
  background: #fff;
}
.sq-point2-table th p{
  text-align: center;
  margin: auto;
  width: 150px;
}
.sq-point2-table{
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 1.2;
  text-align: center;
}
.sq-point2-table td{
  border: 0px #eaeaea solid;
  padding: 10px 20px;
  width: auto;
  line-height: 1.3;
  vertical-align: middle;
}
.sq-point2-table td.device2{
  display: flex;
}
.sq-point2-table td.device2 a{
  width: 200px;
}
.sq-point2-table td a{
  display: block;
}
.sq-point2-table .bl{
  font-size: 2.0rem;
  color: #0E6AE9;
}
.sq-point2-table tr:nth-child(2n+2){
  background: #eee;
  border-bottom: 1px solid #fff;
}
.sq-point2-table tr:nth-child(2n+3){
  background: #FAFAFA;
  border-bottom: 1px solid #fff;
}
.sq-point2-table tr:nth-child(1) td:nth-child(2){
  position: relative;
  z-index: 1;
}
.sq-point2-table tr:nth-child(1) td:nth-child(2):after{
  content: '';
  border:2px solid #E3762D;
  border-radius: 4px;
  width: 100%;
  height: calc(100% + (90px * 3) + (113px * 2));
  position: absolute;
  top: 0;
  left: 0px;
  z-index: -1;
}
.sq-point2-table-tr1 img.dv.sq{width: 173px}
.sq-point2-table-tr1 img.dv.sq_l{width: 137px}
.sq-point2-table-tr1 img.dv.st{width: 148px}
.sq-point2-table-tr1 img.dv.pg{width: 67px}
.sq-point2-table-tr1 img.dv.ap{width: 74px}
.sq-point2-table-tr1 img.lg.sq{width: 130px}
.sq-point2-table-tr1 img.lg.sq_l{width: 130px}
.sq-point2-table-tr1 img.lg.st{width: 100px}
.sq-point2-table-tr1 img.lg.pg{width: 140px}
.sq-point2-table-tr1 img.lg.ap{width: 120px}
.sq-point2-table-tr1 img.lg{
  margin-top: 5px;
}

@media (max-width: 499px) {
  .sq-point2{
    overflow-x: scroll;
  }
  .sq-point2-table{
    width: 100%;
    border-collapse: collapse;
    white-space: nowrap;
    min-width: 720px;
    font-size: 1.2rem;
  }
  .sq-point2-table td{
    padding: 10px 0;
  }
  .sq-point2-table td.device2 a{
    width: 100px;
  }
  .sq-point2-table .bl{
    font-size: 1.4rem;
  }
  .sq-point2-table .bl .small{
    font-size: 1.0rem;
  }
  .sq-point2-table th{
    font-size: 1.2rem;
    padding: 25px 0px;
    width: 100px;
  }
  .sq-point2-table .sq-point2-table-tr1 th{
    background: #fff;
  }
  .sq-point2-table th p{
    width: auto;
  }
  .sq-point2-table-tr1 img.dv.sq{width: 86px}
  .sq-point2-table-tr1 img.dv.sq_l{width: 70px}
  .sq-point2-table-tr1 img.dv.st{width: 80px}
  .sq-point2-table-tr1 img.dv.pg{width: 40px}
  .sq-point2-table-tr1 img.dv.ap{width: 45px}
  .sq-point2-table-tr1 img.lg.sq{width: 80px}
  .sq-point2-table-tr1 img.lg.sq_l{width: 75px}
  .sq-point2-table-tr1 img.lg.st{width: 50px}
  .sq-point2-table-tr1 img.lg.pg{width: 70px}
  .sq-point2-table-tr1 img.lg.ap{width: 60px}
  .sq-point2-table-tr1 img{
    display: block;
    margin: auto;
  }
  .sq-point2-table:after{
    border:1px solid #E3762D;
    border-radius: 4px;
    width: 140px;
    left: 131px;
  }
  .sq-point2-table td:nth-child(2){
    width: 200px;
  }
  .sq-point2-table tr:nth-child(1) td:nth-child(2):after{
    border:1px solid #E3762D;
    width: 100%;
    height: calc(100% + (65px * 3) + (80px * 2));
    top: 0;
    left: 0px;
  }
}


.sq-point-tit{
  border-left: 10px solid #111;
  border-bottom: 2px solid #111;
  padding: 0 50px 5px 20px;
}
.sq-point-tit p{
  font-size: 2.4rem;
  font-weight: bold;
}
.sq-point-tit h3{
  font-size: 4.4rem;
  font-weight: bold;
}
@media (max-width: 499px) {
  .sq-point-tit{
    border-left: 5px solid #111;
    border-bottom: 1px solid #111;
    padding: 0 10px 5px 20px;
  }
  .sq-point-tit p{
    font-size: 1.6rem;
  }
  .sq-point-tit h3{
    font-size: 2.5rem;
  }
}


.sq-point3{
  display: flex;
  flex-wrap: wrap;
  row-gap: 55px;
}
.sq-point3-cycle{
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  row-gap: 25px;
}
.sq-point3-cycle-cont{
  width: 100%;
  display: flex;
  color: #fff;
}
.sq-point3-cycle-cont-sq,
.sq-point3-cycle-cont-pg{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  align-content: flex-start;
  padding: 35px 0;
  row-gap: 20px;
  width: 50%;
}
.sq-point3-cycle-cont-sq{
  background: #111;
}
.sq-point3-cycle-cont-pg{
  background: #0084CF;
}
.sq-point3-cycle-cont-logo{
  background: #fff;
  border-radius: 30px;
  width: 60%;
  padding: 5px 0;
}
.sq-point3-cycle-cont-logo img{
  height: 43px;
}
.sq-point3-cycle-cont-p1{
  margin:auto;
}
.sq-point3-cycle-cont-p1 .catch{
  font-size: 1.7rem;
  font-weight: bold;
  margin-bottom: 5px;
}
.sq-point3-cycle-cont-p1 .catch1{
  position: relative;
  font-size: 3.3rem;
  font-weight: bold;
}
.sq-point3-cycle-cont-p1 .catch1:last-child{
  margin-top: 10px;
}
.sq-point3-cycle-cont-p1 .catch1 img{
  width: 29px;
  height: 29px;
  margin-bottom: 2px;
}
.sq-point3-cycle-cont-p1 .catch2{
  font-size: 1.8rem;
  font-weight: bold;
  padding-left: 35px;
}
.sq-point3-cycle-cont-p1 .catch2 .sm{
  font-weight: 400;
  font-size: 1.4rem;
  margin-left: 10px;
}
.sq-point3-cycle-cont-p1 .yl{
  color: #F5D973;
}
.sq-point3-cycle-cont-p1 .big{
  font-size: 4.5rem;
}
.sq-point3-cycle-cont-p1 .smbig{
  font-size: 2.2rem;
}
@media (max-width: 499px) {
  .sq-point3-cycle-cont{
    flex-wrap: wrap;
  }
  .sq-point3-cycle-cont-sq,
  .sq-point3-cycle-cont-pg{
    padding: 15px 10px;
    row-gap: 10px;
    width: 100%;
  }
  .sq-point3-cycle-cont-logo{
    width: 86%;
    padding: 4px 0;
  }
  .sq-point3-cycle-cont-logo img{
    height: 23px;
  }
  .sq-point3-cycle-cont-p1 .catch{
    font-size: 1.1rem;
    margin-bottom: 3px;
  }
  .sq-point3-cycle-cont-p1 .catch1{
    font-size: 2.3rem;
  }
  .sq-point3-cycle-cont-p1 .catch1:last-child{
    margin-top: 10px;
  }
  .sq-point3-cycle-cont-p1 .catch1 img{
    width: 18px;
    height: 18px;
  }
  .sq-point3-cycle-cont-p1 .catch2{
    font-size: 1.2rem;
    padding-left: 35px;
  }
  .sq-point3-cycle-cont-p1 .catch2 .sm{
    font-size: .9rem;
    margin-left: 10px;
  }
  .sq-point3-cycle-cont-p1 .big{
    font-size: 3.2rem;
  }
  .sq-point3-cycle-cont-p1 .smbig{
    font-size: 1.5rem;
  }
}

.sq-point3-price{
  display: flex;
  flex-wrap: wrap;
  row-gap: 25px;
}
.sq-point3-price-cont{
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  row-gap: 40px;
  max-width: 1024px;
  margin: auto;
}
.sq-point3-price-cont-tit h3{
  font-size: 3.0rem;
  font-weight: bold;
  line-height: 1.35;
}
.sq-point3-price-cont-tit h3 span{
  font-size: 3.3rem;
  color: #408AFB;
}
@media (max-width: 499px) {
  .sq-point3-price{
    row-gap: 15px;
  }
  .sq-point3-price-cont{
    row-gap: 20px;
    max-width: initial;  }
  .sq-point3-price-cont-tit h3{
    font-size: 1.7rem;
  }
  .sq-point3-price-cont-tit h3 span{
    font-size: 2.0rem;
  }
}
.sq-point3-price-cont-table{
  width: 100%;
}
.sq-point3-table{
  white-space: normal;
  table-layout: fixed;
}
.sq-point3-table tbody{
  width: 100%;
  table-layout: fixed;
}
.sq-point3-table-tr1 {
  width: auto;
  border-spacing: 0;
  background: #fff;
}
.sq-point3-table th{
  font-size: 2.2rem;
  vertical-align: middle;
  padding: 0px 20px;
  height: 130px;
}
.sq-point3-table .sq-point3-table-tr1 th{
  height: auto;
}
.sq-point3-table th p{
  text-align: center;
  margin: auto;
  width: 150px;
}
.sq-point3-table{
  font-size: 1.6rem;
  line-height: 1.2;
  text-align: center;
  width: 100%;
}
.sq-point3-table td{
  border: 0px #eaeaea solid;
  padding: 10px 20px;
  width: auto;
  line-height: 1.3;
  vertical-align: middle;
}
.sq-point3-table .bl{
  font-size: 2.0rem;
  color: #0E6AE9;
}
.sq-point3-table tr{
  border-bottom:1px solid #7D7E7D;
}
.sq-point3-table tr:last-child{
  border-bottom: 3px solid #111;
}
.sq-point3-table tr.sq-point3-table-tr1{
  font-size: 2.4rem;
  border-bottom: 3px solid #111;
  font-weight: bold;
}
.sq-point3-table .th-img1 img{
  width: 66px;
  display: block;
  margin:auto;
}
.sq-point3-table .th-img2 img{
  width: 140px;
  display: block;
  margin:auto;
}
@media (max-width: 499px) {
  .sq-point3-price-cont-table{
    overflow-x: scroll;
  }
  .sq-point3-table{
    width: 100%;
    border-collapse: collapse;
    white-space: nowrap;
    min-width: 570px;
    font-size: 1.2rem;
  }
  .sq-point3-table td{
    padding: 10px 0;
  }
  .sq-point3-table th{
    font-size: 1.6rem;
    padding: 25px 0px;
    height: 100px;
  }
  .sq-point3-table tr.sq-point3-table-tr1{
    font-size: 1.6rem;
  }
  .sq-point3-table th p{
    width: auto;
  }
  .sq-point3-table .th-img1 img{
    width: 40px;
  }
  .sq-point3-table .th-img2 img{
    width: 100px;
  }
}

.sq-point3-price-cont-imgtxt{
  display: flex;
  align-items: center;
}
.sq-point3-price-cont-imgtxt-txt{
  width: 60%;
  background: #FFFFFF;
  box-shadow: -4px 4px 10px rgba(0, 0, 0, 0.15);
  border-radius: 20px;
  padding: 40px 30px;
  z-index: 2;
}
.sq-point3-price-cont-imgtxt-img{
  width: 50%;
  position: relative;
}
.sq-point3-price-cont-imgtxt-img img{
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  width: 650px;
}
.sq-point3-price-cont-imgtxt-txt .tit{
  font-size: 2.4rem;
  font-weight: bold;
  margin-bottom: 20px;
}
.sq-point3-price-cont-imgtxt-txt .txt{
  font-size: 2.0rem;
  line-height: 1.5;
}
.sq-point3-price-cont-imgtxt-txt .txt span{
  color: #408BFB;
  font-weight: bold;
}
.sq-point3-price-cont-imgtxt-cm.small{
  margin-top: -20px;
}
@media (max-width: 499px) {
  .sq-point3-price-cont-imgtxt{
    flex-wrap: wrap;
    justify-content: center;
  }
  .sq-point3-price-cont-imgtxt-cm.small{
    margin-top: -20px;
    font-size: 1rem;
  }
  .sq-point3-price-cont-imgtxt-txt{
    width: 90%;
    padding: 30px 20px;
    z-index: 2;
  }
  .sq-point3-price-cont-imgtxt-img{
    width: 100%;
    position: relative;
    margin-top: -20px;
  }
  .sq-point3-price-cont-imgtxt-txt .tit{
    font-size: 1.8rem;
    margin-bottom: 15px;
  }
  .sq-point3-price-cont-imgtxt-txt .txt{
    font-size: 1.4rem;
  }
  .sq-point3-price-cont-imgtxt-img img{
    transform: translateY(0%);
    -webkit-transform: translateY(0%);
    -moz-transform: translateY(-15%);
    -ms-transform: translateY(-15%);
    -o-transform: translateY(-15%);
    width: 100%;
    position: initial;
  }
}




.sq-point4{
  display: flex;
  flex-wrap: wrap;
  row-gap: 50px;
}
.sq-point4-img1{
  display: flex;
  flex-wrap: wrap;
}
.sq-point4-img1 img{
  width: 680px;
}
.sq-point4-img1 img:last-child{
  text-align: right;
  margin-right: 0;
  margin-left: auto;
}
@media (max-width: 499px) {
  .sq-point4{
    row-gap: 20px;
  }
  .sq-point4-img1 img{
    width: 100%;
  }
  .sq-point4-img1 img:last-child{
    text-align: left;
    margin-right: auto;
    margin-left: 0;
  }
}


.st-point1,
.st-point2{
  display: flex;
  justify-content: space-between;
}
.st-point1 img{
  width: 370px;
}
.st-point1 img.st-point1-cm{
  width: 320px;
}
.st-point2 .st-point2-img{
  width: 780px;
}
.st-point2 .st-point2-cm{
  width: 320px;
}
.st-point3{
  display: flex;
  flex-wrap: wrap;
  row-gap: 24px;
}
.st-point3-txt p{
  font-size: 2.0rem;
  font-weight: bold;
  line-height: 1.35;
}
.st-point3-img{
  width: 100%;
}
@media (max-width: 499px) {
  .st-point1,
  .st-point2{
    flex-wrap: wrap;
  }
  .st-point1-img{
    display: flex;
    flex-wrap: wrap;
  }
  .st-point1 img{
    width: 100%;
  }
  .st-point1 img.st-point1-cm{
    width: 100%;
  }
  .st-point2 .st-point2-img{
    width: 100%;
  }
  .st-point2 .st-point2-cm{
    width: 100%;
  }
  .st-point3{
    display: flex;
    flex-wrap: wrap;
    row-gap: 12px;
  }
  .st-point3-txt p{
    font-size: 1.6rem;
  }
}

.sttap-point2{
  text-align: center;
}
.sttap-point2 iframe{
  margin: auto;
  margin-bottom: 30px;
  width: 711px;
  height: 400px;
}

.pg-point1-ul{
  width: 100%;
  display: flex;
  justify-content: space-between;
  column-gap: 20px;
}
#introduction-item5 .pg-point1-ul{
  column-gap: 0px;
}
.pg-point1-li{
  width: 33.33%;
  display: flex;
  flex-wrap: wrap;
  align-content: flex-start;
  row-gap: 16px;
}
.pg-point1-li-img{
  width: 100%;
}
.pg-point1-li-img img{
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
}
#introduction-item5 .pg-point1-li-img img{
  border-top-left-radius: 0px;
  border-top-right-radius: 0px;
}
.pg-point1-li-tittxt{
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  row-gap: 14px;
}
#introduction-item5 .pg-point1-li-tittxt{
  padding: 0 35px 0 0;
}
.pg-point1-li-tittxt-tit{
  width: 100%;
  font-weight: bold;
  display: flex;
  column-gap: 12px;
}
.pg-point1-li-tittxt-kome{
  color: #999;
  font-size: 1.1rem;
}
.pg-point1-li:nth-child(1) .pg-point1-li-tittxt-tit img{
  width: 60px;
}
.pg-point1-li:nth-child(2) .pg-point1-li-tittxt-tit img{
  width: 69px;
}
.pg-point1-li:nth-child(3) .pg-point1-li-tittxt-tit img{
  width: 67px;
}
.pg-point1-li-tittxt-tit .casetit-big{
  font-size: 2.1rem;
}
.pg-point1-li-tittxt-tit .casetit-sm{
  font-size: 1.8rem;
}
.pg-point1-li-tittxt-tit .casetit-norm{
  font-size: 1.6rem;
}
.pg-point1-li-tittxt-txt{
  width: 100%;
  font-size: 1.4rem;
  line-height: 1.5;
}
@media (max-width: 499px) {
  .sttap-point2 iframe{
    margin: auto;
    margin-bottom: 30px;
    width: 100%;
    height: 150px;
  }
  .pg-point1-ul{
    flex-wrap: wrap;
    row-gap: 24px;
  }
  .pg-point1-li{
    width: 100%;
    row-gap: 10px;
  }
  .pg-point1-li-tittxt{
    row-gap: 10px;
  }
  .pg-point1-li-tittxt-tit{
    column-gap: 8px;
  }
  .pg-point1-li:nth-child(1) .pg-point1-li-tittxt-tit img{
    width: 50px;
  }
  .pg-point1-li:nth-child(2) .pg-point1-li-tittxt-tit img{
    width: 59px;
  }
  .pg-point1-li:nth-child(3) .pg-point1-li-tittxt-tit img{
    width: 57px;
  }
  .pg-point1-li-tittxt-tit .casetit-big{
    font-size: 1.8rem;
  }
  .pg-point1-li-tittxt-tit .casetit-sm{
    font-size: 1.4rem;
  }
  .pg-point1-li-tittxt-tit .casetit-norm{
    font-size: 1.4rem;
  }
  .pg-point1-li-tittxt-txt{
    font-size: 1.2rem;
  }
}

.pg-point1-table{
  white-space: normal;
  table-layout: fixed;
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 1.2;
  text-align: center;
  margin-top: 45px;
  margin-bottom: 5px;
}
.pg-point1-table tbody{
  width: 100%;
  table-layout: fixed;
}
.pg-point1-table-tr1 {
  width: auto;
  border-spacing: 0;
  background: #fff;
}
.pg-point1-table tr:nth-child(2),
.pg-point1-table tr:nth-child(3) {
    height: 130px;
}
.pg-point1-table th{
  background: #0084CF;
  font-size: 2rem;
  color: #fff;
  vertical-align: middle;
  padding: 32px 20px;
  border-top-left-radius: 100px;
  border-bottom-left-radius: 100px;
  border-bottom: 2px solid #fff;
}
.pg-point1-table tr:last-child th,
.pg-point1-table tr:first-child th{
  border-bottom: 0px solid #fff;
}
.pg-point1-table .pg-point1-table-tr1 th{
  background: #fff;
}
.pg-point1-table th p{
  text-align: center;
  margin: auto;
  width: 150px;
}
.pg-point1-table td{
  border-bottom: 2px #0084CF solid;
  padding: 10px 20px;
  width: auto;
  line-height: 1.3;
  vertical-align: middle;
}
.pg-point1-table td.device2{
/*  display: flex;*/
}
.pg-point1-table td.device2 a{
  width: 250px;
  margin: auto;
}
.pg-point1-table td a{
  display: block;
}
.pg-point1-table .bl{
  font-size: 2.2rem;
  color: #0E6AE9;
  background: #FFFFE3;
  border-radius: 8px;
}
.pg-point1-table tr:nth-child(1) td:nth-child(2){
  position: relative;
  z-index: 1;
}
.pg-point1-table tr:nth-child(1) td:nth-child(2):after{
  content: '';
  border:3px solid #E3762D;
  border-radius: 8px;
  width: 100%;
  height: calc(100% + (130px * 2) + 10px);
  position: absolute;
  top: -3px;
  left: 1px;
  z-index: -1;
}
.pg-point1-table-tr1 img.dv.sq{width: 173px;}
.pg-point1-table-tr1 img.dv.sq_l{width: 137px;}
.pg-point1-table-tr1 img.dv.st{width: 148px;}
.pg-point1-table-tr1 img.dv.pg{width: 80px;}
.pg-point1-table-tr1 img.dv.ap{width: 74px;}
.pg-point1-table-tr1 img.lg.sq{width: 110px;}
.pg-point1-table-tr1 img.lg.sq_l{width: 110px;}
.pg-point1-table-tr1 img.lg.st{width: 85px;}
.pg-point1-table-tr1 img.lg.pg{
  width: 150px;
  display: block;
  margin: auto;
}
.pg-point1-table-tr1 img.lg.ap{
  width: 120px;
  display: block;
  margin: auto;
}
.pg-point1-table-tr1 img.lg{
  margin-top: 5px;
}

@media (max-width: 499px) {
  .pg-point1{
    overflow-x: scroll;
  }
  .pg-point1-table{
    width: 100%;
    border-collapse: collapse;
    white-space: nowrap;
    min-width: 630px;
    font-size: 1.2rem;
  }
  .pg-point1-table td{
    padding: 10px 0;
  }
  .pg-point1-table td.device2 a{
    width: 100px;
  }
  .pg-point1-table .bl{
    font-size: 1.3rem;
  }
  .pg-point1-table .bl .small{
    font-size: .9rem;
  }
  .pg-point1-table th{
    font-size: 1.1rem;
    padding: 25px 0px;
    width: 80px;
    border-top-left-radius: 100px;
    border-bottom-left-radius: 100px;
  }
  .pg-point1-table .pg-point1-table-tr1 th{
    background: #fff;
  }
  .pg-point1-table tr:nth-child(2),
  .pg-point1-table tr:nth-child(3) {
      height: 85px;
  }
  .pg-point1-table th p{
    width: auto;
  }
  .pg-point1-table-tr1 img.dv.sq{width: 86px}
  .pg-point1-table-tr1 img.dv.sq_l{width: 75px}
  .pg-point1-table-tr1 img.dv.st{width: 80px}
  .pg-point1-table-tr1 img.dv.pg{width: 40px}
  .pg-point1-table-tr1 img.dv.ap{width: 45px}
  .pg-point1-table-tr1 img.lg.sq{width: 70px}
  .pg-point1-table-tr1 img.lg.sq_l{width: 67px}
  .pg-point1-table-tr1 img.lg.st{width: 50px}
  .pg-point1-table-tr1 img.lg.pg{width: 70px}
  .pg-point1-table-tr1 img.lg.ap{width: 60px}
  .pg-point1-table-tr1 img{
    display: block;
    margin: auto;
  }
  .pg-point1-table:after{
    border:1px solid #E3762D;
    border-radius: 4px;
    width: 140px;
    left: 131px;
  }
  .pg-point1-table td:nth-child(2){
    width: 145px;
  }
  .pg-point1-table tr:nth-child(1) td:nth-child(2):after{
    border:2px solid #E3762D;
    width: 100%;
    height: calc(100% + (85px * 2) + 7px);
  }
}




.pg-point2{
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  column-gap: 30px;
}
.pg-point2-txt{
  width: 500px;
}
.pg-point2-img{
  width: 520px;
}
@media (max-width: 499px) {
  .pg-point1,
  .pg-point2{
    flex-wrap: wrap;
  }
  .pg-point2-txt,
  .pg-point2-img{
    width: 100%;
  }
}


.pg-point3{
  margin-top: 30px;
}
.pg-point3-use1,
.pg-point3-use2{
  display: flex;
  column-gap: 70px;
  align-items: flex-start;
  padding-left: 40px;
}
.pg-point3-use2{
  margin-bottom: 70px;
}
.pg-point3-use1 img{
  width: 520px;
  object-fit: contain;
}
.pg-point3-use2 img{
  width: 347px;
  object-fit: contain;
}
.pg-point3-use-tit{
  background: #EDF4F8;
  border-radius: 10px;
  font-size: 3.0rem;
  font-weight: bold;
  padding: 45px 55px 45px 55px;
  line-height: 1.433;
}
.pg-point3-use-sm{
  font-size: 2.4rem;
}
.pg-point3-use-line{
  background: linear-gradient(transparent 75%, rgba(17, 142, 213, 0.35) 75%);
}
.pg-point3-use-tittit{
  margin-bottom: 20px;
}
.pg-point3-use-check{
  position: relative;
  font-size: 1.6rem;
  font-weight: 400;
  padding-left: 20px;
  margin-bottom: 7px;
}
.pg-point3-use-check:before{
  content: '';
  background-image: url(../img/check_bl.png);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 15px;
  height: 15px;
}
@media (max-width: 499px) {
  .pg-point3{
    margin-top: 15px;
  }
  .pg-point3-use1,
  .pg-point3-use2{
    row-gap: 20px;
    padding-left: 0px;
    flex-wrap: wrap;
  }
  .pg-point3-use2{
    margin-bottom: 30px;
  }
  .pg-point3-use1 img{
    width: 100%;
    order: 2;
  }
  .pg-point3-use2 img{
    width: 100%;
  }
  .pg-point3-use-tit{
    font-size: 2.0rem;
    padding: 10px 20px 10px 20px;
    width: 100%;
  }
  .pg-point3-use-sm{
    font-size: 1.5rem;
  }
  .pg-point3-use-tittit{
    margin-bottom: 20px;
  }
  .pg-point3-use-check{
    font-size: 1.3rem;
    padding-left: 20px;
    margin-bottom: 6px;
  }
  .pg-point3-use-check:before{
    width: 15px;
    height: 15px;
    top: 0%;
    transform: translateY(0%);
  }
}


.pg-point3-description{
  margin-top: 60px;
}
.pg-point3-example,
.pg-point3-example-ex{
  margin-top: 30px;
}
.pg-point3-function{
  margin-top: 10px;
}
@media (max-width: 499px) {
  .pg-point3-description{
    margin-top: 40px;
  }
  .pg-point3-function,
  .pg-point3-example,
  .pg-point3-example-ex{
    margin-top: 20px;
  }
}

.pg-point3-description{
  display: flex;
  justify-content: flex-start;
  column-gap: 50px;
}
.pg-point3-description-text-tit{
  font-size: 4.4rem;
  font-weight: bold;
}
.pg-point3-description-text-txt{
  font-size: 2.6rem;
  font-weight: bold;
  margin:25px 0 30px 0;
  line-height: 1.5;
}
.pg-point3-description-text-txt span{
  color: #0084CF;
}
.pg-point3-use-check.pg-point3-description-text-check{
  font-size: 1.8rem;
  margin-bottom: 15px;
}
.pg-point3-description-img{
  width: 470px;
}
.pg-point3-function-img{
  width: 100%;
}
.pg-point3-example-img{
  width: 340px;
}
@media (max-width: 499px) {
  .pg-point3-description{
    row-gap: 0px;
    flex-wrap: wrap;
  }
  .pg-point3-description-img{
    width: 100%;
  }
  .pg-point3-function-img{
    width: 80%;
    margin: auto;
  }
  .pg-point3-example-img{
    width: 70%;
    margin: auto;
  }
  .pg-point3-use-line{
    background: linear-gradient(transparent 85%, rgba(17, 142, 213, 0.35) 85%);
  }
  .pg-point3-description-text-tit{
    font-size: 2.6rem;
  }
  .pg-point3-description-text-txt{
    font-size: 1.9rem;
    margin:12px 0 10px 0;
  }
  .pg-point3-use-check.pg-point3-description-text-check{
    font-size: 1.4rem;
    margin-bottom: 10px;
  }
}

.pg-point3-function{
  display: flex;
  flex-wrap: wrap;
  row-gap: 20px;
}
.pg-point3-tit-border{
  display: inline-block;
  font-size: 2.2rem;
  font-weight: bold;
  color: #0084CF;
  border-top: 1px solid #0084CF;
  border-bottom: 1px solid #0084CF;
  padding: 7px 8px;
  margin-bottom: 5px;
}
.pg-point3-tit-border span.num{
  font-size: 2.6rem;
  font-family: 'Arial';
  font-weight: bold;
  letter-spacing: -0.03em;
}
.pg-point3-tit-tit{
  font-size: 3.6rem;
  font-weight: bold;
}
.pg-point3-tit-tit span{
  font-size: 4.0rem;
  font-weight: bold;
}
.pg-point3-tit-tit span.num{
  font-size: 4.8rem;
  font-family: 'Arial';
  font-weight: bold;
  letter-spacing: -0.03em;
}
@media (max-width: 499px) {
  .pg-point3-function{
    row-gap: 15px;
  }
  .pg-point3-tit-border{
    font-size: 1.7rem;
    padding: 4px 8px;
    margin-bottom: 5px;
  }
  .pg-point3-tit-border span.num{
    font-size: 2.0rem;
  }
  .pg-point3-tit-tit{
    font-size: 2.2rem;
  }
  .pg-point3-tit-tit span{
    font-size: 2.5rem;
    font-weight: bold;
  }
  .pg-point3-tit-tit span.num{
    font-size: 2.8rem;
  }
}

.pg-point3-example{
  display: flex;
  column-gap: 100px;
}
.pg-point3-example-txt{
  font-size: 1.8rem;
  margin-top: 25px;
  line-height: 2;
}
@media (max-width: 499px) {
  .pg-point3-example{
    flex-wrap: wrap;
    row-gap: 10px;
  }
  .pg-point3-example-txt{
    font-size: 1.4rem;
    margin-top: 10px;
    line-height: 1.75;
  }
}


.pg-point3-example-ex{
  width: 100%;
  display: flex;
  justify-content: space-between;
  column-gap: 20px;
}
.pg-point3-example-ex-li{
  width: 33.33%;
  display: flex;
  flex-wrap: wrap;
  align-content: flex-start;
  background: #EDF4F8;
  box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.15);
  border-radius: 15px 15px 0px 0px;

}
.pg-point3-example-ex-li-img{
  width: 100%;
}
.pg-point3-example-ex-li-img img{
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
}
.pg-point3-example-ex-li-tittxt{
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  padding: 10px 15px 23px 15px;
}
.pg-point3-example-ex-li-tittxt-tit{
  width: 100%;
  font-weight: bold;
  font-size: 1.7rem;
  padding: 17px 0 10px 0;
}
.pg-point3-example-ex-li-tittxt-kome{
  font-size: 1.2rem;
  display: flex;
  column-gap: 16px;
}
.pg-point3-example-ex-li-tittxt-com{
  color: #999;
}
.pg-point3-example-ex-li-tittxt-num{
  color: #999;
}
.pg-point3-example-ex-li-tittxt-txt{
  width: 100%;
  font-size: 1.4rem;
  line-height: 1.5;
}
@media (max-width: 499px) {
  .pg-point3-example-ex{
    flex-wrap: wrap;
    row-gap: 24px;
  }
  .pg-point3-example-ex-li{
    width: 100%;
    row-gap: 0px;
  }
  .pg-point3-example-ex-li-tittxt{
    padding: 10px 15px 18px 15px;
  }
  .pg-point3-example-ex-li-tittxt-tit{
    font-size: 1.4rem;
    padding: 10px 0 6px 0;
  }
  .pg-point3-example-ex-li-tittxt-tit{
    column-gap: 8px;
  }
  .pg-point3-example-ex-li-tittxt-txt{
    font-size: 1.1rem;
  }
}

.ap-point1,
.ap-point2{
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.ap-point1-txt{
  width: 500px;
}
.ap-point1-img{
  width: 590px;
}
.ap-point2-img{
  width: 780px;
}
.ap-point2-cm{
  width: 320px;
}
@media (max-width: 499px) {
  .ap-point1,
  .ap-point2{
    flex-wrap: wrap;
  }
  .ap-point1-txt,
  .ap-point1-img,
  .ap-point2-img,
  .ap-point2-cm{
    width: 100%;
  }
}


.sq-point1-cont.st-point1-cont{
  justify-content: flex-start;
}
.st-point1-cont-video{
  width: 700px;
  display: flex;
  flex-wrap: wrap;
  column-gap: 8px;
  row-gap: 8px;
}
.st-point1-cont-video iframe{
  width: 700px;
}
@media (max-width: 499px) {
  .st-point1-cont-video{
    width: 100%;
  }
  .st-point1-cont-video iframe{
    width: 100%;
  }
}

.st-point2-table{
  white-space: normal;
  table-layout: fixed;
}
.st-point2-table tbody{
  width: 100%;
  table-layout: fixed;
}
.st-point2-table-tr1 {
  width: auto;
  border-spacing: 0;
  background: #fff;
}
.st-point2-table th{
  background: #03785D;
  font-size: 2rem;
  color: #fff;
  vertical-align: middle;
  padding: 32px 20px;
  border-bottom: 1px solid #fff;
}
.st-point2-table .st-point2-table-tr1 th{
  background: #fff;
}
.st-point2-table th p{
  text-align: center;
  margin: auto;
  width: 190px;
}
.st-point2-table{
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 1.2;
  text-align: center;
}
.st-point2-table td{
  border: 0px #eaeaea solid;
  padding: 10px 20px;
  width: auto;
  line-height: 1.3;
  vertical-align: middle;
}
.st-point2-table td a{
  display: block;
}
.st-point2-table .bl{
  font-size: 2.0rem;
  color: #0E6AE9;
}
.st-point2-table td{
  border-bottom: 1px solid #DCDCDC;
}
.st-point2-table tr:nth-child(1) td:nth-child(n+2){
  position: relative;
  z-index: 1;
  border-bottom: 2px solid #111;
}
.st-point2-table tr:nth-child(1) td:nth-child(2):after{
  content: '';
  border:2px solid #FF801E;
  border-radius: 4px;
  width: 100%;
  height: calc(100% + (89px * 4) + (114px * 1));
  position: absolute;
  top: 0;
  left: 0px;
  z-index: -1;
}
.st-point2-table-tr1 img.dv.sq{width: 173px}
.st-point2-table-tr1 img.dv.st{width: 148px}
.st-point2-table-tr1 img.dv.pg{width: 67px}
.st-point2-table-tr1 img.dv.ap{width: 74px}
.st-point2-table-tr1 img.lg.sq{width: 160px}
.st-point2-table-tr1 img.lg.st{width: 100px}
.st-point2-table-tr1 img.lg.pg{width: 140px}
.st-point2-table-tr1 img.lg.ap{width: 120px}
.st-point2-table-tr1 img.lg{
  margin-top: 5px;
}

@media (max-width: 499px) {
  .st-point2{
    overflow-y: hidden;
  }
  .st-point2-table{
    width: 100%;
    border-collapse: collapse;
    white-space: nowrap;
    min-width: 620px;
    font-size: 1.1rem;
  }
  .st-point2-table td{
    padding: 10px 0;
  }
  .st-point2-table .bl{
    font-size: 1.3rem;
  }
  .st-point2-table .bl .small{
    font-size: 0.9rem;
  }
  .st-point2-table th{
    font-size: 1.1rem;
    padding: 25px 0px;
    width: 105px;
  }
  .st-point2-table .st-point2-table-tr1 th{
    background: #fff;
  }
  .st-point2-table th p{
    width: auto;
  }
  .st-point2-table-tr1 img.dv.sq{width: 86px}
  .st-point2-table-tr1 img.dv.st{width: 80px}
  .st-point2-table-tr1 img.dv.pg{width: 40px}
  .st-point2-table-tr1 img.dv.ap{width: 45px}
  .st-point2-table-tr1 img.lg.sq{width: 80px}
  .st-point2-table-tr1 img.lg.st{width: 50px}
  .st-point2-table-tr1 img.lg.pg{width: 70px}
  .st-point2-table-tr1 img.lg.ap{width: 60px}
  .st-point2-table-tr1 img{
    display: block;
    margin: auto;
  }
  .st-point2-table:after{
    border:1px solid #E3762D;
    border-radius: 4px;
    width: 140px;
    left: 131px;
  }
  .st-point2-table td:nth-child(2){
    width: 120px;
  }
  .st-point2-table tr:nth-child(1) td:nth-child(2):after{
    border:1px solid #E3762D;
    width: 100%;
    height: calc(100% + (64.2px * 4) + (77px * 1));
    top: 0;
    left: 0px;
  }
}


.st-point3-cycle-cont{
  width: 100%;
  display: flex;
  color: #fff;
}
.st-point3-cycle-cont-sq,
.st-point3-cycle-cont-pg{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  align-content: flex-start;
  padding: 35px 0;
  row-gap: 20px;
  width: 50%;
}
.st-point3-cycle-cont-sq{
  background: #03785D;
}
.st-point3-cycle-cont-pg{
  background: #25A4D5;
}
.st-point3-cycle-cont-logo{
  background: #fff;
  border-radius: 30px;
  width: 60%;
  padding: 10px 0;
  position: relative;
  text-align: center;
}
.st-point3-cycle-cont-logo img{
  height: 43px;
}
.st-point3-cycle-cont-pg .st-point3-cycle-cont-logo span{
  position: absolute;
  right: 40px;
  bottom: 11px;
  color: #25A4D5;
  font-weight: bold;
}
.st-point3-cycle-cont-p1{
  margin:auto;
}
.st-point3-cycle-cont-p1 .catch{
  font-size: 1.7rem;
  font-weight: bold;
  margin-bottom: 5px;
  padding-left: 37px;
}
.st-point3-cycle-cont-p1 .catch1{
  position: relative;
  font-size: 3.3rem;
  font-weight: bold;
}
.st-point3-cycle-cont-p1 .catch1:nth-of-type(2){
  margin-bottom: 20px;
}
.st-point3-cycle-cont-p1 .catch1 img{
  width: 29px;
  height: 29px;
  margin-bottom: 2px;
}
.st-point3-cycle-cont-p1 .underor{
  background: linear-gradient(transparent 85%, rgba(255, 128, 30, .8) 85%);
  background: linear-gradient(to right, #FF801E 0%, #FF801E 100%);
  background-repeat: no-repeat;
  background-position: left bottom;
  background-size: 100% 15%;
}
.st-point3-cycle-cont-p1 .big{
  font-size: 4.5rem;
}
.st-point3-cycle-cont-p1 .smbig{
  font-size: 2.2rem;
}
@media (max-width: 499px) {
  .st-point3-cycle-cont{
    flex-wrap: wrap;
  }
  .st-point3-cycle-cont-sq,
  .st-point3-cycle-cont-pg{
    padding: 15px 10px;
    row-gap: 10px;
    width: 100%;
  }
  .st-point3-cycle-cont-logo{
    width: 86%;
    padding: 4px 0;
  }
  .st-point3-cycle-cont-sq .st-point3-cycle-cont-logo img{
    height: 27px;
  }
  .st-point3-cycle-cont-pg .st-point3-cycle-cont-logo img{
    height: 20px;
  }
  .st-point3-cycle-cont-pg .st-point3-cycle-cont-logo span{
    bottom: 6px;
    font-size: 1.1rem;
  }
  .st-point3-cycle-cont-p1 .catch{
    font-size: 1.1rem;
    margin-bottom: 0px;
    padding-left: 23px;
  }
  .st-point3-cycle-cont-p1 .catch1{
    font-size: 2.2rem;
  }
  .st-point3-cycle-cont-p1 .catch1:nth-of-type(2){
    margin-bottom: 10px;
  }
  .st-point3-cycle-cont-p1 .catch1 img{
    width: 18px;
    height: 18px;
  }
  .st-point3-cycle-cont-p1 .catch2{
    font-size: 1.2rem;
    padding-left: 35px;
  }
  .st-point3-cycle-cont-p1 .catch2 .sm{
    font-size: .9rem;
    margin-left: 10px;
  }
  .st-point3-cycle-cont-p1 .big{
    font-size: 3.2rem;
  }
  .st-point3-cycle-cont-p1 .smbig{
    font-size: 1.5rem;
  }
}



/*スライドショー*/
.bbs {
  align-items: center;
  color: #fff;
  display: flex;
  line-height: 40px;
  overflow: hidden;
  width: 100%;
  white-space: nowrap;
  z-index: 1;
}

.bbs ul {
  animation: flowing 30s linear infinite;
  transform: translateX(100%);
  margin: 0;
  padding: 0;
}

.bbs ul li {
  display: inline-block;
  padding: 0 15px;
  width: 110%;
}

.bbs ul li img {
  width: 100%;
}

@keyframes flowing {
    0% {
        transform: translateX(0);
    }

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

@media screen and (max-width: 499px) {
  .bbs ul {
    animation: none;
    transform: translateX(0%);
  }

  .bbs ul li img {
  }

  .bbs ul li {
    width: 100%;
    padding: 0px;
  }
}



.introduction-item-reviewsComment {
  margin-bottom: 32px;
  column-gap: 40px;
  align-items: flex-start;
}
@media (max-width: 499px) {
  .fv .introduction-item-reviewsComment {
    margin-bottom: 0px;
  }
}
.introduction-item-reviewsImg {
  width: 103px;
}
.introduction-item-reviewsVoice {
  position: relative;
  width: 100%;
  padding: 16px 20px;
  background-color: #EFEFEF;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  z-index: 2;
}
.introduction-item-reviewsVoice::before {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  border-top: 20px solid transparent;
  border-right: 40px solid #EFEFEF;
  border-bottom: 20px solid transparent;
  left: -18px;
  top: 20px;
/*  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);*/
  z-index: -1;
}
.introduction-item-reviewsVoice p {
  font-size: 1.6rem;
  line-height: 1.5;
}
z {
  margin: 0 auto 0px;
}
.reviewsSite-on-img {
  width: 70%;
  margin: 0 auto 48px;
}
@media (max-width: 499px) {
  .introduction-item-reviews:first-child .introduction-item-reviewsItem {
    height: auto;
    box-shadow: 2px 2px 6px rgb(0, 0, 0, 0.15);
  }
  .introduction-item-reviews:last-child .introduction-item-reviewsItem {
    height: auto;
    box-shadow: 2px 2px 6px rgb(0, 0, 0, 0.15);
  }
  .introduction-item-reviews1{
    margin-bottom: 32px;
  }
  .introduction-item-table .circle01,
  .introduction-item-table .circle02 {
    width: auto;
  }
  .introduction-item-reviewTitle p {
    font-size: 1.8rem;
  }
  .introduction-item-reviewsList{
    flex-wrap: wrap;
    margin-bottom: 10px;
  }
  .introduction-item-reviewsVoice p {
    font-size: 1.2rem;
  }
  .introduction-item-reviewsItem {
    padding: 8px;
    width: 100%;
    border-radius: 12px;
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    -ms-border-radius: 12px;
    -o-border-radius: 12px;
  }
  .introduction-item-reviews:first-child{
    width: 100%;
  }
  .introduction-item-reviews:last-child{
    width: 100%;
  }
  .introduction-item-reviews.last:first-child{
    width: 100%;
  }
  .introduction-item-reviews.last:last-child{
    width: 100%;
  }
  .introduction-item-reviewTitle {
    justify-content: space-between;
    margin-bottom: 5px;
  }
  .introduction-item-reviewsCommentTitle {
    font-size: 1.8rem;
  }
  .introduction-item-reviewTitle p {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--text__color);
  }
  .introduction-item-reviewsTit span{
    font-size: 1.6rem;
  }
  .introduction-item-reviewsTit.nowrap span{
    font-size: 1.6rem;
  }
  .introduction-item-reviewsLabel {
    margin-top: 10px;
    position: relative;
    bottom: auto;
    right: auto;
    text-align: right;
    font-size: 1.0rem;
  }
  .introduction-item-reviewsText {
    font-size: 1.4rem;
    line-height: 1.643;
  }
  .introduction-item-reviews:first-child li {
    padding: 5px 0px;
    width: 100%;
    margin-bottom: 10px;
  }
  .introduction-item-reviews:last-child li {
    padding: 5px 0px;
    width: 100%;
  }
  .introduction-item-reviews.last:first-child li {
    width: 100%;
  }
  .introduction-item-reviews.last:last-child li {
    width: 100%;
  }
  .introduction-item-reviews.last li {
    margin-bottom: 10px;
  }
  .reviewsSite-on-img {
    margin: 0 auto 0px;
    width: 100%;
  }
  .introduction-list{
    padding-bottom: 44px;
  }
  .introduction-item-reviewsSite img {
    margin: 0 auto 32px;
  }
}


.company{
  padding: 80px 0 64px;
}
.company .sec-title{
  margin-bottom: 40px;
  font-size: 3rem;
}
.company .table_info{
  width:100%;
}
.company .table_info th{
  text-align: center;
  font-size: 60px;
  padding : 10px 5px;
}
.company .table_info td{
  border-bottom :1px solid silver;
  text-align: left;
  font-size: 2.0rem;
  padding : 20px;
}
@media (max-width: 499px) {
  .company{
    padding: 65px 0 44px;
  }
  .company .table_info tbody{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
  }
  .company .table_info tr,
  .company .table_info td{
    width: 100%;
  }
  .company .table_info tr{
    display: flex;
    flex-wrap: wrap;
  }
  .company .table_info td:first-child{
    font-weight: 700;
  }
  .company .table_info td{
    font-size: 1.6rem;
    padding : 10px 20px;
  }
}



#progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 0;
  height: 5px;
  background: #3282FA;
  z-index: 1000;
}

#progress {
  height: 70px;
  width: 70px;
  border-radius: 50%;
  position: fixed;
  bottom: 20px;
  left: 10px;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.2);
  display: grid;
  place-items: center;
  z-index: 100;
}
#progress-value {
  display: block;
  height: calc(100% - 15px);
  width: calc(100% - 15px);
  background: rgba(255, 255, 255, 1.0);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 500px;
  z-index: 100;
}
@media (max-width: 499px) {
  #progress {
    display: none;
  }
  #progress-bar {
    height: 3px;
  }
}



.banner-present-wide{
  width: 800px;
  text-align: center;
  margin: 50px auto 50px;
}
.banner-present-wide a {
  text-decoration: none;
  display: block;
}
.banner-present-wide-body {
  transition: 0.3s;
}
.banner-present-wide a:hover .banner-present-wide-body{
  opacity: 0.7;
}
@media screen and (max-width: 499px) {
  .banner-present-wide {
    margin: 0px;
    width: 100%;
    margin: 15px auto 15px;
  }
  .banner-present-wide-body {

  }
  .banner-present-wide a:hover .banner-present-wide-body{
    opacity: 1;
  }
}

.banner {
    display: none;
    position: fixed;
    margin: 15px 20px;
    z-index: 99998;
    bottom: 0;
    right: 0;
}
.banner a {
    text-decoration: none;
}

.banner-icon {
    color: #f8f8f8;
    font-size: 40px;
}

.banner-back {
    width: 300px;
    background-color: #fff;
    border-radius: 25px;
}
.banner-body {
    width: 300px;
    background: #f8f8f8;
    color: #000000;
    font-weight: bold;
    text-align: center;
    border-radius: 25px;
    -webkit-box-shadow: 0 0 7px rgb(0 0 0 / 40%);
    box-shadow: 0 0 7px rgb(0 0 0 / 40%);
    transition: 0.3s;
}
.banner-body:hover {
    opacity: 0.7;
}
.banner-body img{
  border-radius: 10px;
}
.banner-close {
    font-weight: bold;
    position: absolute;
    top: -2px;
    right: -4px;
    z-index: 99999;
    padding: 4px 8px;
    border: none;
    background-color: #f8f8f8;
    border-radius: 25px;
    cursor: pointer;
    -webkit-box-shadow: 0 0 7px rgb(0 0 0 / 40%);
    box-shadow: 0 0 7px rgb(0 0 0 / 40%);
}

@media screen and (max-width: 499px) {
    .banner {
/*        width: 100%;*/
        margin: 0px;
    }
    .banner-body {
      width: 150px;
    }
    .banner-back {
      width: 150px;
      margin: 0px;
    }
    .banner-close {
      top: 5px;
      right: 5px;
      padding: 4px;
      border-radius: 50%;
    }
    .banner-copy-br {
        display: none;
    }
}