﻿/* 全体の指定 */
html{
    font-size: calc(0.875rem + ((1vw - 3.2px) * 1.8605));
}
.wrap{
    width: 100%;
    text-align: center;
}
.box{
    width: 94%;
    margin: 0 auto;
    max-width: 750px;
    text-align: center;
    padding: 8% 0 10% 0;/* 上下の余白 */
}
body{
    font-size: 0.8rem;
    font-family: 'Noto Sans JP', sans-serif, 'ＭＳ ゴシック','ヒラギノ角ゴシック','Hiragino Sans','Hiragino Kaku Gothic ProN','ヒラギノ角ゴ ProN W3',sans-serif;
    margin: 0;
    padding: 0; 
}
.text-bold{
    font-weight: 900;
}
a:hover{
    opacity: 0.8;
    transition: 0.3s ease-in-out;
}
img{
    width: 100%;
}

/* フェードインの設定 */
.fadein {
    opacity : 0;
    transform: translateY(20px);
    transition: all 1.5s;
  }

/* /* 読み込み時のアニメーション */
body{
    animation: fadein 1.5s ease 0s 1 normal;
    min-width: 320px;
}

@keyframes fadein{
    0%{
        opacity: 0;
    }
    100%{
        opacity: 1;
    }
}

/* PC用のコンテンツを消す */

.fv{
    width: 100%;
    margin: 0 auto;
    padding-top: 0%;
    position: relative;
}
.fv img{
    width: 100%;
}
.world{
    position: absolute;
    z-index: 10;
    top: 20%;
    left: 25%;
}
.fv-text-box{
    width: 100%;
    position: absolute;
    top: 34.5%;
    left: 50%;
    transform: translateX(-50%);
}
.fv-title{
    margin-bottom: 7%;
}
.fv-title-sub{
    width: 91%;
    position: absolute;
    bottom: -12%;
    right: -4%;    
}



/* 導入部 */
.introduction{
    background: #eee;
}
.introduction .box{
    padding: 5% 0 10% 0;
    width: 100%;
}
.introduction h1.introduction-h1{
    color: #fff;
    background: #000;
    padding: 5% 0;
    font-weight: 400;
    font-size: 6vw;
}
.text-red{
    color: #f08080;
}
.introduction-ul{
    width: 92%;
    margin: 0 auto;
    margin-bottom: 5%;
    text-align: left;
}

.introduction-img-wrap{
    margin: 10px 0 20px 0;
}

.img-shadow{
        box-shadow: 2px 2px 8px #cccccc;
}

.introduction-img-bottom{
    padding-bottom: 60px;
}

.m-size-bottom{
    width: 80%;
    height: 80%;
}

.s-size{
    width: 90%;
    height: 90%;
    margin: 0 auto;
}

.introduction-margin{
    margin-bottom: 20px;
}

/* 見え方を統一するためにフォントサイズを細かく変更する */
@media screen and (min-width: 450px) and (max-width: 750px) {
    .introduction-ul li {font-size: 1.3rem;}
    .introduction h1{font-size: 2.4rem;}
  }
@media screen and (min-width: 320px) and (max-width: 449px) {
.introduction-ul li {font-size: 1.1rem;}
.introduction h1{font-size: 1.4rem;}
}

.introduction-ul li{
    font-weight: bold;
    margin-bottom: 2.5%;
    margin-left: 6%;
    position: relative;
}
.introduction h2{
    width: 100%;
    margin: 0 auto 2.8% auto;
    font-size: 4.3vw;
    font-weight: 400;
    background-image: url(../images/introduction-background01-s.png);
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-size: 70%;
    color: #fff;
    text-align: center;
    padding: 20% 0;
    letter-spacing: 0.1rem;
    line-height: 1.65;
}

/* 改行したら字下げする */
.ul-circle{
    content: '';
    width: 0.3rem;
    height: 0.3rem;
    display: inline-block;
    background: #333;
    border-radius: 50%;
    position: absolute;
    top: 0.8rem;
    left: -1rem;
}
/* PC用のコンテンツを消す */
.pc-only{
    display: none;
}

/* 動く→ */
.introduction-triangle{
    position: relative;
    margin-top: -2.5%;
    margin-bottom: 10%;
}
.introduction-triangle span{
    position: absolute;
    top: 0;
    left: 48%;
    transform: translateX(-45%);
    width: 7vw;
    height: 7vw;
    border-left: 2px solid #000;
    border-bottom: 2px solid #000;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    -webkit-animation: sdb 2s infinite;
    animation: sdb 2s infinite;
    opacity: 0;
    box-sizing: border-box;
}
.introduction span:nth-of-type(1) {
    -webkit-animation-delay: 0s;
    animation-delay: 0s;
  }
.introduction span:nth-of-type(2) {
    top: 2.5vw;
    -webkit-animation-delay: .15s;
    animation-delay: .15s;
  }
  @-webkit-keyframes sdb {
    0% {
      opacity: 0;
    }
    50% {
      opacity: 1;
    }
    100% {
      opacity: 0;
    }
  }
  @keyframes sdb {
    0% {
      opacity: 0;
    }
    50% {
      opacity: 1;
    }
    100% {
      opacity: 0;
    }
  }

  /* ベネフィット部 */
  /* 鍵かっこ */
  .benefit{
      overflow: hidden;
  }
  .plt{
      position: relative;
      padding-left: 2vw;
  }
  .plt:before{
      content: '「';
      display: inline-block;
      position: absolute;
      top: 0;
      left: -4vw;
  }
  .plt:after{
    content: '」';
    display: inline-block;  
    top: 0;
    right: 0;
  }

  .benefit-text{
      width: 100%;
      max-width: 750px;
      margin: 0 auto;
      padding: 5% 0 65% 8%;
      background-image: url(../images/event2-1-m.png);
      background-size: 75%;
      background-position: 50% 70%; 
      background-repeat: no-repeat;
  }
  .benefit-text p{
      width: 97%;
      font-size: 3.5vw;
  }
  .benefit-text merit{
      font-weight: bold;
　　  font-family: Century;
　　  color: #ffffff;
  }
  .benefit-text01 p{
    margin-bottom: 2.5%;
  }
  .benefit-text02{
        padding: 5% 0 65% 8%;
        background-image: url(../images/event2-2-m.png);  
        background-size: 75%;
        background-position: 50% 70%; 
        background-repeat: no-repeat;  
  }
  .benefit-text03{
    padding: 5% 0 80% 8%;
    background-image: url(../images/event2-3-m.png); 
    background-size: 75%;
    background-position: 50% 70%; 
    background-repeat: no-repeat;
}
 .benefit-text04{
        padding: 5% 0 80% 8%;
        background-image: url(../images/event2-4-m.png);  
        background-size: 75%;
        background-position: 50% 70%; 
        background-repeat: no-repeat;  
  }
  .benefit-text05{
    padding: 5% 0 80% 8%;
    background-image: url(../images/event2-5-m.png); 
    background-size: 75%;
    background-position: 50% 70%; 
    background-repeat: no-repeat;
} 
 .benefit-text06{
        padding: 5% 0 80% 8%;
        background-image: url(../images/event2-6-m.png);  
        background-size: 75%;
        background-position: 50% 70%; 
        background-repeat: no-repeat;  
  }
  .benefit-text07{
    padding: 5% 0 80% 8%;
    background-image: url(../images/event2-7-m.png); 
    background-size: 75%;
    background-position: 50% 70%; 
    background-repeat: no-repeat;
} 
.benefit h2{
     font-size: 6vw; 
     margin-bottom: 1%;
  }
  .benefit01,.benefit02,.benefit03,.benefit04,.benefit05,.benefit06,.benefit07{
      text-align: left;
  }
  .benefit02{
      background: #eee;
  }

  /* 中間CV */
  .contact{
      background: #0085c7;
  }
  .contact img{
      width: 100%;
  }
  .contact .box{
      padding: 4% 0;
  }
  .contact-box p{
      font-weight: 900;
      color: #fff;
      font-size: 0.95rem;
      margin-bottom: 1%;
  }
  .hover-other-than:hover img:not(:hover) {
    opacity: 0.1;
  }
  .hover-other-than a:hover{
      opacity: 1;
  }


  /* 全体共通のセクションタイトルの下のborder */
  .section-title{
      font-size: 1.3rem;
      font-weight: 900; 
      margin-bottom: 6%; 
  }
  .section-title:after{
      content: '';
      display: block;
      width: 1rem;
      height: 2px;
      margin: 5% auto 6% auto;
      background: #000;
  }
  .service-image p{
      margin-bottom: 4%;
  }
  .service-image-drawing{
      position: relative;
      margin-bottom: 2%;
  }

  @keyframes roll{
    0%{
        transform: rotate(0deg);
    }
    100%{
        transform: rotate(360deg);
    }
  }
  @keyframes roll02{
    0%{
        transform: rotate(0deg);
    }
    100%{
        transform: rotate(-360deg);
    }
  }


  /* タブメニュー背景 */
.service-menu{
    background-color: #aad0ff;
    height: auto;
    padding-bottom: 6%;
}
.service-menu h2{
    color: #fff;
}
.service-menu h2:after{
    background: #fff;
}

/* タブメニュー */
/* レイアウト */
.tab{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 0.7% 0;
}
/* クリックメニュー */
ul.tab li {
    flex-basis: 32.3%;
    margin: 0.7% 0;
    padding: 2.2% 0;
    background-color: #fff;
    color: #333;
    cursor: url(../images/mouse.png), auto;
    font-weight: 700;
    border-radius: 5px;
    border: 2px solid #c9c9c9;
    position: relative;
    transition: 0.2s ease-in-out;
    font-size: 3vw;
} 
_:-ms-lang(x)::-ms-backdrop, ul.tab li {
    flex-basis: 32%;
  }

ul.tab li.first-tab{
    flex-basis: 100%;
    margin-right: 0;
    margin-bottom: 0.7%;
    border-radius: 5px;
    background-color: #961d0d;
    border-color: #961d0d;
    color: #fff;
    padding: 1% 0;
}
ul.tab li:hover {
    color: #961d0d;
}
ul.tab li.first-tab:hover{
    cursor: default;
    color: #fff;
}
ul.tab li.active {
    background-color: #961d0d;
    color: #fff;
    transition: 1s ease;
    border: 2px solid #961d0d;
}
/* 右の切り替わるタブ */

div.tabContent {
    border: 1px solid #ccc;
    display: none;
    background: #fff;
    border: 2px solid #961d0d;
    border-radius: 5px;
}
div.active {
    display: block;
    height: auto;
}

/* タブが開いた時の表示コンテンツ */
div.tabContent:first-child{
    font-weight: bold;
    color: #961d0d;
    position: relative;
    padding-top: 20%;
    padding-bottom: 20%;
}
div.tabContent:first-child p{
    margin-bottom: 8%;
}
div.tabContent-base{
    font-weight: bold;
    position: relative;
    text-align: left; 
    padding-bottom: 5%;
}
.tab-text{
    width: 92%;
    margin: 5% auto 0 auto;
}
.tab-text h3{
    font-size: 0.95rem;
    margin-bottom: 7%;
    position: relative;
}
.tab-text p{
    width: 100%;
    font-weight: 400;
    font-size: 0.9rem;
}

.tab-s-only{
    width: 60%;
    margin: 6% auto;
}

/* タブが開いた後の表示コンテンツの装飾 */
.tab-text-p{
    margin-top: 1%;
    position: relative;
    padding-left: 0.8rem;
}
.tab-text-p-f{
    margin-top: 3%;
    margin-bottom: 1%;
}
.tab-text-p:before{
    content: '';
    display: block;
    width: 2.2vw;
    height: 2.2vw;
    border-radius: 50%;
    background: #333;
    position: absolute;
    top: 0.4rem;
    left: 0;  
}


/* 装飾系クラス */
/* タブの矢印 */
li:hover .arrow{
    border-color: #961d0d #961d0d transparent transparent;
}
ul.tab li.active .arrow{
    border-color: #fff #fff transparent transparent; 
}


/* 案内画像 */
.annai-img{
    position: relative;
}
div.tabContent:first-child img{
    width: 40%;
    animation: mouse-move 2s infinite ease-in-out alternate-reverse;
}

  /* 他社との違い */
  .lead-text{
      text-align: left;
      margin-left: 1%;
  }
  .lead-image img{
      margin-bottom: 2%;
  }
   .lead-text p{
      font-size: 0.8rem;
  }

/* タブメニュー背景 */
.service-example{
    width: 100%;
    height: auto;
    padding-bottom: 8%;
}
.service-example-box p:nth-child(2){
    margin-bottom: 4%;
}

/* アコーディオンメニュー */
/*ボックス全体*/
.accbox {
    margin: 0;
    padding: 0;
    text-align: left;
    width: 100%;
}
.acc-box00{
    background: #eee;
}
/* アニメーションのための設定 */
.result-left{
    transform: scale(0.7,0.7);
    transition: 1s ease-in-out;
    opacity: 0.1;
}
.result-right{
    transform: scale(0.7,0.7);
    transition: 1s ease-in-out;
    transition-delay: 0.5s;
    opacity: 0.1;
}

/*ラベル*/
.accbox label {
    display: block;
    margin: 1% auto 1% auto;
    padding : 4% 0 4% 14%;
    color: #fff;
    background: #535353;
    cursor :pointer;
    transition: all 0.5s;
    font-size: 3.3vw;
    letter-spacing: 0.1rem;
    position: relative;
    border-radius: 5px;
    box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.2);
}

.label-img{
    width: 7%;
    display: block;
    position: absolute;
    top: 6vw;
    left: 4%;
}


/* 下のコンテンツとの余白の調整 */
.service-example{
    padding-bottom: 0;
}

/* 導入までの流れ */
.flow{
    background: #eee;
}

  /* 必須 */
  .required{
      display: inline-block;
      color:#FF0000;
      font-weight: 400;
      font-size: 3vw;
  }

 

/* footer */
.company{
    width: 100%;
    text-align: center;
    background-color: #0085c7;
    color: #fff;
    font-size: 0.6rem;
}
.footer-box{
    width: 90%;
    max-width: 1079px;
    margin: 0 auto;
}
th{
    vertical-align: top;
}
.company table{
    margin-bottom: 2%;
}
small{
    font-weight: bold;
    line-height: 5;
}
.company td, .company th{
    padding: 1% 0;
}
.company th{
    width: 20%;
}
.company td{
    padding-left: 18%;
}
.company-name{
    text-align: left;
    font-size: 0.95rem;
    margin-bottom: 4%;
    font-weight: 700;
}
p.copyright{
    border-top: 1px solid #000;
}
.footer-box h3:before{
    content: '';
    display: block;
    width: 1.4rem;
    height: 4px;
    margin: 2% auto 2% auto;
    background: #000;
}
















