@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;600;700&display=swap');

/* -------------------------------------------
   general style
---------------------------------------------- */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, main, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
}
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, main {
  display: block;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}
html,
body {
  -webkit-font-smoothing: antialiased;
  font-family: "Yu Gothic", "游ゴシック体", "YuGothic", "Hiragino Kaku Gothic Pro",  'Open Sans', "Avenir Next", "Helvetica Neue", Helvetica, Verdana,
     "Meiryo UI", "メイリオ", Meiryo,
    "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-family: 'Poppins', sans-serif;
  color: #000;
  font-size: 16px;
  min-height: 100%;
  width: 100%;
  height: 100%;
}
.pc-none {
  display: block;
}
.sp-none {
  display: none;
}
.wrap {
  width: calc(100% - 48px);
  max-width: 640px;
  margin: 0 auto;
  position: relative;
  padding-right: 0;
  padding-left: 0;
}
.clearfix::after {
  content: "";
  display: table;
  clear: both;
}
/*--- link ---*/
a {
  text-decoration: none;
  color: #3669DE;
}
a:link {
  text-decoration: none;
  color: #3669DE;
}
a:visited {
  text-decoration: none;
  color: #3669DE;
}
a:hover {
  text-decoration: none;
  color: #3669DE;
}
a:active {
  text-decoration: none;
}
.form-control {
  -webkit-transition: all 0.15s ease-in-out 0s;
  transition: all 0.15s ease-in-out 0s;
}

a,
.btn {
  -webkit-transition: all 0.15s;
  transition: all 0.15s;
  border-radius: 0px;
}
button {
  border: none;
  text-align: center;
  text-decoration: none;
  display: inline-block;
}
/*--- Typography ---*/

.serif {
  font-family: Garamond, "Times New Roman", "游明朝", "Yu Mincho", "游明朝体",
    "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3",
    "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
}
p {
  font-size: 16px;
  line-height: 1.75;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font: 400 16px/1.5;
  margin: 0;
  font-feature-settings:"palt";
}
h1 {
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.25;
  letter-spacing: 2px;
  
}
h2 {
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0;
}
h3 {
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0;
  margin-bottom: 8px;
}
h4 {
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0;
}
h5 {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0;
}
h6 {
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0;
}

/*--- Color ---*/

.blue {
  color: #3669DE;
}
.blue-bg {
  background: #3669DE;
}


.black {
  color: #000;
}
.black-bg {
  background: #000;
}
.black-2a {
  color: #2a2a2a;
}
.black-2a-bg {
  background: #2a2a2a;
}

.black-99 {
  background: #999;
}
.black-99-bg {
  color: #999;
}
.black-dd {
  background: #ddd;
}
.black-dd-bg {
  background: #ddd;
}
.black-ef {
  background: #efefef;
}
.black-ef-bg {
  background: #efefef;
}
.black-fa {
  background: #fafafa;
}
.black-fa-bg {
  background: #fafafa;
}
.white {
  background: #fff;
}
.white-bg{
  background: #fff;
}

/* -----------------------------------
   loader
-------------------------------------- */
#lottie{
  width:50%;
  height:50%;
  display:block;
  overflow: hidden;
  transform: translate3d(0,0,0);
  text-align: center;
  opacity: 1;
  position: fixed;
  top:0;
  left:0;
  right:0;
  bottom:0;
  margin: auto;
  z-index: 999999;
}
#lottie {
  -webkit-animation: lotties 2.5s forwards;
          animation: lotties 2.5s forwards;
}
@keyframes lotties {
  70% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    display: none;
    z-index: -1;
  }
}
.loader{
  position:fixed;
  top:0;
  left:0;
  right:0;
  bottom:0;
  background-color:#000;
  z-index:99999;
}
.loader {
  -webkit-animation: loaderbg 3s forwards;
          animation: loaderbg 3s forwards;
}
@keyframes loaderbg {
  70% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    display: none;
    z-index: -1;
  }
}


/* -----------------------------------
   header
-------------------------------------- */
#header {
  width: 100%;
  height: 64px;
  display: block;
  margin: 0 auto;
  position: fixed;
  top: 0;
  z-index: 9999;
  -webkit-transition: 0.15s;
  -webkit-transition: all 0.15s ease-in-out;
  transition: all 0.15s ease-in-out;
  background: #fff;
  box-shadow: 0 0 2px rgba(0,0,0,0.1);
}
.header-wrap{
  width: 100%;
  height: 64px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header-logo {
  display: flex;
}
.header-logo img{
  width: auto;
  height: 40px;
  margin-left: 16px;
  margin-top: 8px;
}
.header-cta a{
  background: #3669DE;
  border-radius: 50px;
  position: relative;
  display: block;
  padding: 10px 20px;
  color:#FFF;
  font-size: 0.875rem;
  font-weight: 700;
  margin-right:16px;
  box-shadow: 0 0 4px rgba(0,0,0,0.2);
  z-index: 1;
  transition: .2s;
  text-decoration: none;
  overflow: hidden;
}

.header-cta a::before {
  position: absolute;
  content: '';
  display: block;
  top: -180px;
  left: 0;
  width: 30px;
  height: 170px;
  background-color: #fff;
  animation: shiny 5s linear infinite;
  overflow: hidden;
}
@-webkit-keyframes shiny {
  0% { -webkit-transform: scale(0) rotate(45deg); opacity: 0; }
  80% { -webkit-transform: scale(0) rotate(45deg); opacity: 0.5; }
  81% { -webkit-transform: scale(4) rotate(45deg); opacity: 1; }
  100% { -webkit-transform: scale(50) rotate(45deg); opacity: 0; }
}



/* -----------------------------------
   top
-------------------------------------- */
/*--- kv ---*/
.kv{
  position: relative;
  width: 100%;
  height: 75vh;
  overflow: hidden;
}
.kv-wrap{
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content:flex-start;
  align-items: center;
}
.kv-img{
  width: 100%;
  height: 75vh;
}
.kv-img img{
  width: 100%;
  height: 75vh;
  object-fit: cover;
  overflow: hidden;
}
.kv-title{
  width: 85%;
  display: block;
  top:120px;
  position: absolute;
}
.kv-title img{
  width: 100%;
}
.device-ol{
  width: 100px;
  position: absolute;
  bottom: 24px;
  left: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.device-img{
  width: 90%;
  margin-bottom: 8px;
}
.device-txt{
  width: 100%;
}
.kv-cta{
  position: relative;
  background: #efefef;
  padding-top: 8px;
  padding-bottom: 32px;
}
.kv-cta a{
  position: relative;
  width: calc(100% - 16px);
  display: block;
  margin: 0 auto;
  margin-top: 8px;
}
.kv-cta img{
  width: 100%;
  box-shadow: 0 1px 8px rgba(0,0,0,0.1);
}
.kv-cta-txt{
  position: relative;
  width: 90%;
  display: block;
  margin: 0 auto;
  margin-top: 16px;
  text-align: center;
}
.kv-cta-txt h5{
  font-size: 0.75rem;
  margin-bottom: 8px;
}
.kv-cta-txt p{
  font-size: 0.75rem;
}
/* page-title */
.page-head{
  text-align: center;
  margin-bottom: 24px;
}
.page-head h2{ 
  font-size: 2rem;
  letter-spacing: 2px;
} 
.page-head p{
  padding: 16px 0 0;
  line-height: 2;
}
/* cta */
.cta{
  padding: 24px 0;
}
.cta img{
  width: calc(100% - 16px);
  display: block;
  margin: 0 auto;
  box-shadow: 0 0 16px rgba(0,0,0,0.2);
}
.bg-fa{
  background: #fafafa;
  padding-bottom: 48px;
}
/* intro */
.overview-info{
  position: relative;
  width: calc(100% - 48px);
  max-width: 640px;
  margin: 40px auto;
  position: relative;
  padding-right: 0;
  padding-left: 0;
}
.overview-info img{
  width: 100%;
}
.overview-img{
  position: relative;
  width: 100%;
  height: auto;
}
.overview-img-ph{
  width: 100%;
  height: 430px;
}
.overview-img-ph img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  overflow: hidden;
}
.overview-img-txt{
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.overview-img-txt h3{
  margin: auto;
  text-align: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
}



.case{
  position: relative;
  display: flex;
  width: 100%;
  padding: 24px 0;
  background: #000;
}
.case-wrap{
  width: calc(100% - 16px);
  background: #fff;
  display: block;
  margin: 0 auto;
}
.case-wrap-inner{
  width: calc(100% - 32px);
  display: block;
  margin: 0 auto;
  padding: 40px 16px;
}
.case-intro h3{
  font-size: 1.125rem;
  font-weight: 400;
  text-align: center;
  line-height: 2;
  margin-bottom: 40px;
  letter-spacing: 1px;
}
.case-intro h3 span{
  font-weight: 700;
}
.case-con{
  position: relative;
  margin: 64px auto 0;
}
.case-con-ph img:first-child{
  width: 100%;
}
.case-con-ph img:nth-child(2){
  width: auto;
  height: 64px;
  position: absolute;
  right: 0;
  top: -24px;
}
.case-con-txt h2{
  text-align: center;
  padding: 8px 0;
  letter-spacing: 2px;
}
.case-con-txt p{
  margin-bottom: 24px;
  text-align: justify;
}
.case-con-msg{
  position: relative;
  margin-bottom: 24px;
}
.case-con-msg:last-child{
  margin-bottom: 0;
}
.case-con-msg h3{
  text-align: center;
  margin-bottom: 0;
  padding: 4px 0;
}
/* price */
.price-table {
  border: solid 1px #ddd;
  border-radius: 4px;
  font-size: 0.75rem;
}
table th,
table td {
  border: solid 1px #ddd;
}
.price-table td{
  padding: 16px 8px;
  font-size: 0.75rem;
  text-align: right;
}
.price-table td:first-child {
  font-weight: 700;
  padding: 16px 8px;
  width: 20%;
  text-align: left;
  color:#000;
  background: #fafafa;
}
.price-table th {
  padding: 14px 4px;
  text-align: center;
  width: 20%;
}
.price-table:first-child th {
  font-weight: 700;
  color:#000;
  background: #fafafa;
}
.price-table tr td:nth-child(2) {
  color:#000;
  font-weight: 700;
}

/* device */
.device{
  position: relative;
  padding: 48px 0;
}
.device-contents{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.device-contents-wrap{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 16px 0;

}
.device-contents-wrap img{
  width: 80%;
  height: auto;
  margin-bottom: 16px;
}
.device-contents-wrap h4{
  text-align: center;
  margin-bottom: 16px;
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 1px;
}
.device-contents-wrap dl{
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  font-size: 0.875rem;
  width: 100%;
  position: relative;
}
.device-contents-wrap dt{
  width: 40%;
  padding: 6px 0;
  font-weight: 700;
}
.device-contents-wrap dd{
  position: relative;
  width: 60%;
  padding: 6px 0;
  text-align: left;
}
.device-wrap p{
  font-size: 0.75rem;
  color: #999;
}
/* voice */
.voice-wrap .page-head h2{
  font-size: 1.5rem;
}
.voice-contents{
  position: relative;
  padding: 16px 0;
}
.voice-contents-wrap{
  display: flex;
  width: 100%;
  justify-content: flex-start;
  align-items: flex-start;
  margin-bottom: 24px;
}
.voice-contents-wrap img{
  width: 16%;
  height: auto;
  margin-right: 3%;
}
.voice-contents-wrap p{
  width: 80%;
  font-size: 0.875rem;
  line-height: 1.5;
}

/* faq */
#faq{
  background: #fafafa;
  padding:48px 0;
  margin-top: 24px;
}
.faq-wrap{
  max-width: 640px;
}
.faq-contents{
  padding: 16px 0 0;
}
.faq-check{
  display: none;
}
.faq-label{
  background: #fff;
  border:1px solid #efefef;
  border-radius: 3px;
  color: #222;
  display: block;
  margin-bottom: 8px;
  padding: 12px 48px 12px 16px;
  position: relative;
  transition: all 0.3s;
  font-weight: 700;
  font-size: 0.875rem;
}

.faq-q{
  margin-right: 8px;
}
.faq-label:after{
  box-sizing: border-box;
  content: '＋';
  font-size: 1rem;
  display: block;
  position: absolute;
  right: 0;
  top: 0;
  height: auto;
  padding: 16px 20px;
  transition: all 0.3s;
  color: #ddd;
}
.faq-show{
  display: block;
  height: 0;
  opacity: 0;
  padding: 0 10px;
  transition: .2s;
  visibility: hidden;
}
.faq-show p{
  font-size: 0.875rem;
}
.faq-check:checked + .faq-label:after{
  content: '−';
}
.faq-check:checked + .faq-label + .faq-show{
  height: auto;
  opacity: 1;
  padding: 10px;
  visibility: visible;
  margin-bottom: 20px;
}
.faq-link{
  color: #3669DE;
}
.faq-link:visited{
  color: #3669DE;
}


/* step */
.step{
  background: #fafafa;
  position: relative;
  padding: 0 0 48px; 
}
.step-contents{
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 16px 0 24px;
}
.step-contents-wrap{
  position: relative;
  display: flex;
  flex-direction: column;
  border:1px solid #efefef;
  width: 100%;
  height: auto;
  padding:  24px 0;
  text-align: center;
  background: #fff;

}
.step-contents-wrap h3{
  font-size: 2rem;
  font-weight: 200;
  margin-bottom: 0;
}
.step-contents-wrap h4{
  font-weight: 400;
}
.step-contents-wrap h4 span{
  font-weight: 700;
}
.step-contents-arrow{
  position: absolute;
  bottom: -16px;
  right: 0;
  left: 0;
  margin: auto;
  transform: rotate(90deg);
  z-index: 99;
}
.step-contents-arrow img{
  width: 40px;
}
.step-credit h3{
  font-size: 0.875rem;
  font-weight: 700;
  text-align: center;
}
.step-credit p{
  font-size: 0.875rem;
  text-align: center;
  margin-bottom: 16px;
}

/* support */
.support{
  background: #fafafa;
  position: relative;
  padding: 0 0 24px; 
}
.support-contents {
  display: flex;
  flex-direction: column-reverse;
  border:1px solid #efefef;
  border-radius: 4px;
  padding: 8px 8px 24px 8px;
  background: #fff;
}
.support-txt{
  position: relative;
  padding:16px 0 0;
  width: 90%;
  margin: 0 auto;
}
.support-tel{
  padding: 8px 0;
}
.support-tel h5{
  margin-bottom: 8px;
}
.support-img img{
  width: 100%;
  height: 200px;
  overflow: hidden;
  object-fit: cover;
}
.support-txt-cap{
  font-size:0.875rem;
  margin-bottom: 16px;
}
.support-txt-cap-s{
  font-size: 0.75rem;
}
/* subimg */
.subimg{
  position: relative;
  width: 100%;
  height:auto;
}
.subimg-wrap{
  display: flex;
  align-items: flex-end;
  height: 480px;
}
.subimg-contents{
  display: flex;
  flex-direction: column-reverse;
  padding-bottom: 40px;
  align-items: center;
  z-index: 99;
}
.subimg-device{
  width: 65%;
}
.subimg-device img{
  width: 100%;
}
.subimg-title {
  width: 90%;
  margin-bottom: 24px;
}
.subimg-title img{
  width: 100%;
}
.subimg-ph{
  position: absolute;
  width: 100%;
  height: 480px;
  overflow: hidden;
  object-fit: cover;
  top: 0;
  bottom: 0;
}





/* =========================================
   PC min-width:768px
============================================ */
@media only screen and (min-width:768px) {
  .pc-none {
    display: none;
  }
  .sp-none {
    display: block;
  }

.wrap {
  width: calc(100% - 160px);
  max-width: 880px;
  margin: 0 auto;
  position: relative;
  padding:0;
}
.serif {
  font-family: Garamond, "Times New Roman", "游明朝", "Yu Mincho", "游明朝体",
    "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3",
    "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
}
p {
  font-size: 16px;
  line-height: 1.75;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font: 400 16px/1.5;
  margin: 0;
  font-feature-settings:"palt";
}
h1 {
  font-size: 3rem;
  font-weight: 400;
  line-height: 1.25;
  letter-spacing: 2px;
  
}
h2 {
  font-size: 3rem;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0;
}
h3 {
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0;
  margin-bottom: 8px;
}
h4 {
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0;
}
h5 {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0;
}
h6 {
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0;
}
#lottie{
  width:30%;
  height:30%;
}
/* header */

#header{
  width: 100%;
  display: block;
  position: fixed;
  height: 80px;
}
.header-wrap{
  display: flex;
  width: calc(100% - 48px);
  margin: 0 auto;
  position: relative;
  padding:0;
  height: 80px;
}
.header-logo{
  align-items: flex-end;
}
.header-logo img{
  height: 40px;
  width: auto;
  margin-left: 0;
  margin-top: 8px;
  margin-right: 16px;
}
.header-logo p{
  margin-bottom: 2px;
  font-size: 1rem;
  line-height: 1.4;
}
.header-logo p span{
  font-weight: 700;
}
.header-cta a{
  display: inline-block;
  width: auto;
  background: #3669DE;
  border-radius: 50px;
  padding: 12px 40px;
  margin-right:0;
  color:#FFF;
  font-size: 1rem;
  font-weight: 700;
  box-shadow: 0 0 8px rgba(0,0,0,0.2);
  transition: all .3;
}
.header-cta span{
  display: inline;
}
.header-cta a:hover{
  background: #1E4AAF;
}
/* kv */
.kv{
  position: relative;
  width: 100%;
  height: 80vh;
}
.kv-wrap{
  width: 100%;
  height: 80vh;
  padding-top: 0;
  overflow: hidden;
  display: flex;
  flex-direction: row-reverse;
  justify-content: center;
  align-items: center;
}
.kv-img {
  width: 100%;
  height: 80vh;
}
.kv-img img{
  width: 100%;
  height: 80vh;
  object-fit: cover;
  overflow: hidden;
}
.kv-title{
  width: 30vw;
  height: 136px;
  position: absolute;
  top:0;
  bottom: 0;
  right: 10%;
  margin: auto;
}
.kv-title img{
  width: 100%;
  height: auto;
}
.device-ol{
  width: 200px;
  bottom: 40px;
  left: 40px;
}
.device-img{
  width: 85%;
  margin-bottom: 16px;
}
.device-txt{
  width: 100%;
}
.kv-cta a{
  position: relative;
  width: 880px;
  display: block;
  margin: 0 auto;
  margin-top: 8px;
}
.kv-cta-txt h5{
  font-size: 1rem;
  margin-bottom: 8px;
}
/* page-title */
.page-head{
  margin-bottom: 24px;
}
.page-head h2{ 
  font-size: 3rem;
} 
.page-head p{
  padding: 16px 0 0;
  line-height: 2;
}
/* cta */
.cta{
  padding:0;
  padding-bottom: 48px;
}
.cta img{
  width: 880px;
  display: block;
  margin: 0 auto;
  box-shadow: 0 0 16px rgba(0,0,0,0.2);
}
.bg-fa{
  background: #fafafa;
  padding-bottom: 80px;
}
/* intro */
.overview-info{
  position: relative;
  width: 880px;
  max-width: none;
  margin: 64px auto;
}
.overview-img-ph{
  width: 100%;
  height: 75vh;
}
.overview-img-txt h3{
  font-size: 1.75rem;
  letter-spacing: 4px;
  line-height: 1.75;
  font-weight: 600;
}
/* case pc */
.case{
  padding: 80px 0;
}
.case-wrap{
  width: 960px;
}
.case-wrap-inner{
  width: calc(100% - 80px);
  display: block;
  margin: 0 auto;
  padding: 64px 0;
}
.case-intro h3{
  font-size: 2rem;
  text-align: center;
  line-height: 1.875;
  margin-bottom: 64px;
}
.case-con{
  margin: 120px auto 0;
}
.case-con:first-child{
  margin: 80px auto 0;
}
.case-con-ph img:nth-child(2){
  height: 120px;
  top: -40px;
}
.case-con-txt h2{
  padding: 16px 0;
}
.case-con-txt p{
  margin-bottom:40px;
}
.case-con-msg{
  margin-bottom: 40px;
}
.case-con-msg h3{
  padding: 8px 0;
}

/* price */
.price-table {
  font-size: 1rem;
  width: 100%;
}
.price-table td{
  padding: 24px 16px;
  font-size: 1rem;
  text-align: center;
}
.price-table td:first-child {
  padding: 24px 24px;
  width: 20%;
  text-align: left;
}

/* device */
.device{
  padding: 80px 0;
}
.device-contents{
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  padding: 40px 0;
}
.device-contents-wrap{
  padding: 0;
  width: 45%;
  border-right: 1px solid #efefef;
}
.device-contents-wrap:first-child{
  padding-right: 5%;
}
.device-contents-wrap:last-child{
  border-right:none;
}
.device-contents-wrap img{
  width: 60%;
}
/* voice */
.voice-wrap .page-head h2{
  font-size: 2.5rem;
}
.voice-contents{
  padding: 24px 0 40px;
}
.voice-contents-wrap{
  margin-bottom: 40px;
  align-items: center;
}
.voice-contents-wrap img{
  width: 12%;
  margin-right: 3%;
}
.voice-contents-wrap p{
  width: 85%;
  font-size: 1.125rem;
  line-height: 1.5;
  font-weight: 700;
}
/* faq */
#faq{
  padding:80px 0;
}
.faq-label{
  cursor: pointer;
  font-size: 1rem;
  margin-bottom: 16px;
}

/* step */
.step{
  padding: 0 0 80px;
}
.step-contents{
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0 40px;
}
.step-contents-wrap{
  width: 33%;
  padding:  32px 0 40px;
  text-align: center;
  border-radius: 4px;
}
.step-contents-wrap h3{
  font-size: 2.75rem;
}
.step-contents-arrow{
  position: absolute;
  bottom: 32px;
  top: 0;
  right: -24px;
  left: auto;
  margin: auto;
  transform: rotate(0);
  z-index: 99;
  width: 40px;
  height: 9px;
}

/* support */
.support{
  padding: 0 0 48px; 
}
.support-wrap .page-head p{
  line-height: 2.5;
  margin-bottom: 24px;
}
.support-contents {
  flex-direction: row;
  padding: 8px;
  justify-content: space-between;
}
.support-txt{
  width: 56%;
  padding: 24px 0 0;
}
.support-tel h5{
  margin-right:  0;
  font-size: 1.5rem;
  font-weight: 600;
}
.support-img{
  width: 35%;
}
.support-img img{
  width: 100%;
  height: 300px;
}
.support-txt-cap-s{
  width: 90%;
}
/* subimg */
.subimg-wrap{
  height: 400px;
  align-items: center;
  justify-content: center;
}
.subimg-contents{
  flex-direction: row;
  justify-content: center;
  padding-bottom: 0;
}
.subimg-device{
  width: 40%;
  margin-right: 5%;
}
.subimg-title {
  width: 40%;
  margin-bottom: 0;
  margin-left: 5%;
}
.subimg-ph{
  height: 400px;
}


}

/* =========================================
   PC min-width:1600px
============================================ */
@media only screen and (min-width:1600px) {
  body {
    font-size: 18px;
    line-height: 1.75;
  }
  p {
    font-size: 18px;
    line-height: 1.75;
  }

}

/* -----------------------------------
   footer
-------------------------------------- */
.footer{
  background: #000;
}
.safooter-service{
  width: 100%;
  margin: 0 auto;
  position: relative;
  padding-left: 0;
  margin-top: 40px;
  margin-bottom: 40px;
}
.safooter-service-wrap{
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
  width: 100%;
}
.safooter-service-content{
  width: 100%;
  display: flex;
  justify-content: space-between;
  margin-bottom: 16px;
}
.safooter-service-content:last-child{
margin-bottom: 0;
}
.safooter-service-content a{
  display: flex;
  width: 100%;
  padding: 24px 40px;
  border:4px solid #efefef;
  justify-content: space-between;
  -webkit-transition: all 0.15s;
  transition: all 0.15;
}
.safooter-service-content a:hover{
  border:4px solid #efefef;
}
.safooter-service-content a:active{
  border:4px solid #efefef;
}
.safooter-service-content a:visited{
  border:4px solid #efefef;
}
.safooter-service-content-txt{
  font-size: 16px;
  font-weight: 700;
  color: #efefef;
}
.safooter-border{
  width: 100%;
  height: 1px;
  background: #efefef;
}
.safooter-base{
  width: 100%;
  margin: 0 auto;
  position: relative;
  padding-left: 0;
  padding-top: 40px;
  padding-bottom: 80px;
  background: #000;
}
.safooter-base-wrap{
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}
.safooter-base-logo{
  margin-bottom: 24px;
  width: 240px;
}
.safooter-base-info p{
  text-align: left;
  font-size: 12px;
  line-height: 2;
}
.safooter-base-tel{
  font-weight: 700;
}
.safooter-base-product a{
  color:#efefef;
  padding-right: 4px;
  border-right: 1px solid #ccc;
  -webkit-transition: all 0.15s;
  transition: all 0.15;
}
.safooter-base-product a:hover{
  opacity: .5;
}
.safooter-base-product a:last-child{
  border-right: none;
  padding-right: 0;
}
.safooter-base-cr{
  color:#888;
}

/* PC */
@media only screen and (min-width:768px) {
  .safooter-service{
    margin-top: 120px;
    margin-bottom: 40px;
  }
  .safooter-service-wrap{
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    width: 100%;
  }
  .safooter-service-content{
    width: 48%;
    display: flex;
    justify-content: space-between;
    margin-bottom: 0;
  }
  .safooter-service-content a:hover{
    border:4px solid #000;
  }
  .safooter-base{
    padding-bottom: 160px;
  }
  .safooter-base-wrap{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
  .safooter-base-logo{
    margin-bottom: 0;
  }
  .safooter-base-info p{
    text-align: right;
  }
}