@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;700&display=swap');



/*-----------------------------------------
-------------------------------------------
-------------------------------------------
-------------------------------------------

目次　※各々レスポンシブ対応あり

01 共通部分設定＆リセットCSS
02 ヘッダーの設定
03 コンテンツの設定
04 フッターの設定

-------------------------------------------
-------------------------------------------
-----------------------------------------*/

/*-----------------------------------------
01 共通部分設定＆リセットCSS
-------------------------------------------*/
body{
  padding: 0;
  margin: 0;
  counter-reset: number 0;
}
div.body {
  margin: auto;
  counter-reset: number 0;
}
@media screen and (min-width:769px) {
div.body{
  min-width: 1080px;
}
}
div.body *{
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
}
.center {
  width: 100%;
  max-width: 1200px;
  margin: auto;
  padding: 0 10px;
  text-align: center;
}
.center2 {
  width: 100%;
  max-width: 1000px;
  margin: auto;
  padding: 0 10px;
  text-align: center;
}
.body a {
  transition: all 0.3s ease 0s;
  text-decoration: none;
}

.body a:hover {
  opacity: 1;
}

.body img {
  width: 100%;
  height: auto;
  vertical-align:top;
}
.body a,
.body p,
.body h2,
.body h3,
.body span,
.body div{
  text-shadow: none;
  margin: auto;
  padding: 0;
  font-family: var(--fnt-main);
}
.body li{
  list-style: none;
}

.pc {
  display: block;
}

.sp,
.sp2 {
  display: none;
}

@media screen and (max-width:768px) {
  .sp {
    display: block!important;
  }

  .pc {
    display: none!important;
  }
}
@media screen and (max-width:450px) {
  .sp2 {
    display: block!important;
  }
}



:root {
  --gray01:#EFF2F4;
  --gray02:#E6E6E6;
  --blue01:#0868B5;
  --blue02:#21ABE9;
  --blue03:#0099D9;
  --blue04:#004F99;
  --yellow01:#FFD800;
  --yellow02:#FFEE9C;
  --orange01:#F59000;
  --fnt-main:'Noto Sans JP', sans-serif;
  --gradient-blue:160deg, var(--blue03) 0%, var(--blue04) 100%;
}

/*-----------------------------------------
01 共通部分設定＆リセットCSS　ここまで
-------------------------------------------*/


/*-----------------------------------------
02 ヘッダーの設定
-------------------------------------------*/
section.headGrp{
  position: relative;
}
section.headGrp div.wrap01{
  padding: 30px 10px 120px;
background: url(https://d3t0ae4e2cnggp.cloudfront.net/resource/20240423/kv-01_new.png)no-repeat,var(--gray01);
background-size: cover;
background-position:center;
position: relative;
}
div.header_flex{
  display: flex;
}
h2.header_title{
  max-width: 650px;
  background: none;
}
p.header_text{
  display: block;
  width: 100%;
  max-width: 225px;
  margin: 0 auto auto 10px;
}
div.header_logo{
  max-width: 200px;
  margin: 0 0 auto auto;
}

@media screen and (max-width:768px) {
  section.headGrp div.wrap01{
    padding: 30px 10px 120px;
  background: url(https://d3t0ae4e2cnggp.cloudfront.net/resource/20240423/kv-01_sp.png)no-repeat,var(--gray01);
  background-size:contain;
  background-position:center 70%;
  padding-bottom: 30px;
  }
  section.headGrp div.wrap01 div.center{
    max-width: 500px;
  }
  div.header_flex{
    flex-direction: column;
  }
  h2.header_title{
    width: 100%;
    order: 2;
  }
  p.header_text{
    width: 50%;
    max-width: 200px;
    order: 3;
    margin: 20px 0 40px auto;
  }
  div.header_logo{
    order: 1;
    margin: auto auto 20px;
  }
  
}
@media screen and (max-width:450px) {
  section.headGrp div.wrap01{
    padding: 30px 10px 120px;
  background: url(https://d3t0ae4e2cnggp.cloudfront.net/resource/20240423/kv-01_sp.png)no-repeat,var(--gray01);
  background-size:contain;
  background-position:center 65%;
  padding-bottom: 30px;
  }
}

/*-----------------------------------------
02 ヘッダーの設定　ここまで
-------------------------------------------*/

/*-----------------------------------------
03 コンテンツの設定
-------------------------------------------*/

/*無料調査お申込みフォームのボタン--------*/
div.formBtnGrp{
  width: calc(100% - 20px);
  max-width: 800px;
  margin: auto;
}

div.formBtnGrp a{
  display: flex;
  border: 3px solid #fff;
  background: #fff;
  padding: 25px 20px 20px 20px;
  border-radius: 0 10px 10px 10px;
  filter: drop-shadow(3px 3px 7px rgba(0,0,0,0.25));
  position: relative;
}
div.formBtnGrp a:hover{
  background: #e5f1f7;
}
div.formBtnGrp a::before,
div.formBtnGrp a::after{
  display: inline-block;
  background: var(--yellow01);
  position: absolute;
}
div.formBtnGrp a::before{
  content: "※外部サイトに飛びます";
  padding: 5px 20px;
  font-size: 16px;
  font-weight: 700;
  white-space: nowrap;
  color: var(--blue01);
  top: -37px;
  left: -3px;
  border-radius: 10px 10px 0 0;
  line-height: 1.5;
}
div.formBtnGrp a::after{
  content: "";
  width: 10px;
  height: 30px;
  top: -33px;
  left: 212px;
  clip-path: polygon(0 0, 100% 100%, 0 100%);
}
div.form_icon{
  margin: auto 15px auto auto;
}
div.form_text{
  margin: auto auto auto 15px;
}
div.formBtnGrp a span{
  color: var(--blue01);
  font-weight: 700;
  line-height: 1.35;
}
div.formBtnGrp a span.small{
  display: block;
  font-size: 22px;
  margin-bottom: 0.25em;
}
div.formBtnGrp a span.fnt-orange{
  color: var(--orange01);
  font-size: 30px;
}
div.formBtnGrp a span.strong{
  font-size: 30px;
}
span.form_arrow{
  display: inline-block;
  width: 15px;
  height: 15px;
  margin: auto 0 auto auto;
  transform: rotate(45deg);
  border-top: 3px solid var(--blue01);
  border-right: 3px solid var(--blue01);
}

@media screen and (min-width:769px) {
  section.headGrp div.formBtnGrp{
    position: absolute;
    bottom: -62px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 999;
  }
  }
  
@media screen and (max-width:768px) {
  div.formBtnGrp a::after{
    display: none;
  }
  div.formBtnGrp{
    max-width: 500px;
  }
  div.form_icon{
    margin-right: 10px;
  }
  div.form_text{
    margin-left: 0;
  }
  }
    
@media screen and (max-width:550px) {
  div.form_icon{
    display: none;
  }
  div.formBtnGrp a{
    padding:15px;
  }
  div.form_text{
    margin: 0 auto;
  }
  div.formBtnGrp a span.small{
    font-size: 4vw;
  }
  div.formBtnGrp a span.fnt-orange,
  div.formBtnGrp a span.strong{
    font-size: 6vw;
    letter-spacing: 0.1em;
  }
  span.form_arrow{
    width: 10px;
    height: 10px;
  }
  
}

/*無料調査お申込みフォームのボタン　ここまで--------*/

/*トラブルでデータが読みだせなくなった--------*/
.mainGrp div.wrap01{
  background: var(--blue04);
  background: -moz-linear-gradient(var(--gradient-blue));
  background: -webkit-linear-gradient(var(--gradient-blue));
  background: linear-gradient(var(--gradient-blue));
  padding: 100px 0 60px;
  position: relative;
}
.mainGrp div.wrap01::before,
.mainGrp div.wrap01::after{
  content: "";
  position: absolute;
}
.mainGrp div.wrap01::before{
  bottom: -3px;
  left: 0;
  width: 100%;
  height: 60%;
  background: #fff;
  clip-path: polygon(0 0, 50% 70%, 100% 0, 100% 100%, 0 100%);
}
.mainGrp div.wrap01::after{
  bottom: 20%;
  left: 50%;
  transform: translateX(-50%);
  background: url(https://d3t0ae4e2cnggp.cloudfront.net/resource/20240423/arrow-01.png)no-repeat;
  background-size: contain;
  width: 30px;
  height: 30px;
}
.mainGrp div.wrap01 div.flex{
  display: flex;
  align-items: flex-start;
}
.mainGrp div.wrap01 div.flex>div{
  margin: auto auto 0 auto;
  max-width: 220px;
  position: relative;
  z-index: 99;
}
p.komarigoto{
display: inline-block;
margin: 0 auto auto;
font-size:34px;
font-weight: 700;
color: #fff;
}
@media screen and (max-width:768px) {
  .mainGrp div.wrap01{
    padding: 30px 0 40px;
  }
  .mainGrp div.wrap01::before{
    height:45%;
  }
  .mainGrp div.wrap01::after{
    width: 20px;
    height: 20px;
  }
  .mainGrp div.wrap01 div.flex{
    justify-content: center;
  }
  .mainGrp div.wrap01 div.flex>div{
    width: 22%;
    margin: 0 10px 0;
  }
  p.komarigoto{
    margin: 0 0 auto;
    font-size: 24px;
  }
}
@media screen and (max-width:550px) {
  .mainGrp div.wrap01{
    padding: 25px 0 0px;
  }
  .mainGrp div.wrap01::before{
    height:20px;
    clip-path: polygon(0 0, calc(50% - 10px) 0, 50% 10px, calc(50% + 10px) 0, 100% 0, 100% 100%, 0 100%);
  }
  .mainGrp div.wrap01::after{
    display: none;
  }
  p.komarigoto{
    width: 60%;
    font-size: 5vw;
    text-align: left;
  }
  .mainGrp div.wrap01 div.flex>div.illust_01{
    width: 30%;
    margin-top: 20px;
  }
  .mainGrp div.wrap01 div.flex>div.illust_02{
    display: none;
  }
}

/*トラブルでデータが読みだせなくなった　ここまで--------*/



/*そんなお悩みもロジテック～--------*/
.mainGrp div.wrap02{
  background: url(https://d3t0ae4e2cnggp.cloudfront.net/resource/20240423/haikei-01.png)no-repeat;
  background-size: cover;
  background-position: center top;
  padding-bottom: 60px;
}


div.kaiketsuGrp{
  display: inline-block;
  padding: 0 30px;
  margin: 0 auto 20px;
  position: relative;
}
div.kaiketsuGrp::before,
div.kaiketsuGrp::after{
  content: "";
  position: absolute;
  bottom: 0;
  width: 8px;
  height: 70%;
  border-left: 3px solid var(--blue01);
  border-right: 3px solid var(--blue01);
}
div.kaiketsuGrp::before{
  left: 0;
  transform: rotate(-10deg);
}
div.kaiketsuGrp::after{
  right: 0;
  transform: rotate(10deg);
}
div.kaiketsuGrp p{
color: var(--blue01);
font-weight: 700;
text-align: center;
}
p.kaiketsu_title{
  font-size: 38px;
  margin-bottom: 0.35em;
  line-height: 1.25;
  letter-spacing: 0.05em;
}
p.kaiketsu_title>span{
  font-size: 42px;
  color: var(--blue02);
}
p.kaiketsu_text{
  font-size: 18px;
}

@media screen and (max-width:768px) {
  .mainGrp div.wrap02{
    background: url(https://d3t0ae4e2cnggp.cloudfront.net/resource/20240423/haikei-01_sp.png)no-repeat;
    background-size: cover;
    background-position: center top;
    padding-bottom: 60px;
  }
  .mainGrp div.wrap02 div.center{
    max-width: 500px;
  }
  p.kaiketsu_title{
    font-size: 27px;
  }
  p.kaiketsu_title>span{
    font-size: 27px;
  }
  p.kaiketsu_text{
    font-size: 16px;
  }
}
@media screen and (max-width:550px) {
  div.kaiketsuGrp{
    margin-top: 20px;
    padding: 0 20px;
  }
div.kaiketsuGrp::before,
div.kaiketsuGrp::after{
  width: 6px;
  border-left: 2px solid var(--blue01);
  border-right: 2px solid var(--blue01);
}
  div.kaiketsuGrp::before{
    left: 5px;
    transform: rotate(-6deg);
  }
  div.kaiketsuGrp::after{
    right: 5px;
    transform: rotate(6deg);
  }
  p.kaiketsu_title,
  p.kaiketsu_title>span{
    font-size: 5.5vw;
    }
  p.kaiketsu_text{
    font-size: 3.5vw;
  }
}
/*そんなお悩みもロジテック～　ここまで--------*/


/*データ復旧が可能なメディアの説明--------*/
div.aboutGrp{
  max-width: 1000px;
  padding: 0 10px;
}
div.about_flex{
  max-width: 800px;
  display: flex;
}
div.about_text{
width: calc(100% - 180px);
}
div.about_text p{
  font-weight: 700;
  font-size: 17px;
  text-align: justify;
}
div.about_text p>span{
  display: block;
  margin: 0.35em 0 0;
  font-size: 14px;
  font-weight: 400;
  color: #818181;
  padding-left: 1em;
  text-indent: -1em;
}
div.about_illust{
width: 120px;
margin: auto auto 0 auto;
}


div.about_media{
  background: #fff;
  padding: 30px 15px 15px;
  filter: drop-shadow(3px 3px 6px rgba(0,0,0,0.3));
}
div.about_media_center{
  max-width: 850px;
}
p.about_media_title{
  display: block;
  padding: 3px 0px 3px 20px;
  margin-bottom: 20px;
  line-height: 1;
  text-align: left;
  font-weight: 700;
  font-size: 20px;
  position: relative;
}
p.about_media_title::before{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background: var(--blue01);
}
div.about_media_flex{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
div.about_media_item{
  display: flex;
  width: calc(calc(100% / 3) - 10px);
  height: 70px;
  padding: 10px 10px 10px 90px;
  margin: 0 0 20px;
  background: var(--gray02);
  position: relative;
}
div.about_media_item_img{
  position: absolute;
  top: 50%;
  left: -10px;
  transform: translateY(-50%);
  width: 110px;
}
div.about_media_item p{
  font-weight: 700;
  font-size: 16px;
}

@media screen and (max-width:768px) {
  div.about_text{
    width: calc(100% - 130px);
    margin: auto auto auto 5px;
    padding-bottom: 20px;
  }
  div.about_text p{
    font-size: 15px;
  }
  div.about_illust{
    width: 100px;
  }
  div.about_media_item{
    width: calc(calc(100% / 2) - 10px);
  }
  div.about_media_item p{
    font-size: 14px;
  }
}

@media screen and (max-width:550px) {
  div.about_media_center{
    max-width: 350px;
  }
  div.about_text{
    width: 100%;
  }
  div.about_illust{
    display: none;
  }
  div.about_media_item{
    width: calc(calc(100% / 1) - 0px);
    height: 60px;
    padding-left: 25%;
  }
  div.about_media_item p{
    font-size: 16px;
  }
}
@media screen and (max-width:400px) {
  p.about_media_title{
    font-size: 16px;
  }
  div.about_media_item p{
    font-size: 4.5vw;
  }
  div.about_media_item_img{
    width: 28%;
  }
}
/*データ復旧が可能なメディアの説明　ここまで--------*/





/*お客様に選ばれる　ロジテック　データ復旧サービス--------*/
.mainGrp div.wrap03{
  background: var(--blue04);
  background: url(https://d3t0ae4e2cnggp.cloudfront.net/resource/20240423/haikei-02.png)no-repeat,-moz-linear-gradient(var(--gradient-blue));
  background: url(https://d3t0ae4e2cnggp.cloudfront.net/resource/20240423/haikei-02.png)no-repeat,-webkit-linear-gradient(var(--gradient-blue));
  background: url(https://d3t0ae4e2cnggp.cloudfront.net/resource/20240423/haikei-02.png)no-repeat,linear-gradient(var(--gradient-blue));
  background-size: cover;
  background-attachment: fixed;
  padding: 60px 0px;
}
.mainGrp div.wrap03 div.center{
  max-width: 800px;
}
p.contact_title{
  font-weight: 700;
  font-size: 45px;
  line-height: 1.35;
  text-align: left;
  margin-bottom: 60px;
  color: #fff;
}
.mainGrp div.wrap03 div.formBtnGrp{
  width: 100%;
  text-align: left;
}
.mainGrp div.wrap03 div.formBtnGrp a::after{
  top: -32.5px;
}

div.contact_info{
  display: flex;
  justify-content: space-between;
  margin: 30px 0;
}
div.contact_info>div{
  width: calc(50% - 15px);
  margin: 0;
  padding-left: 20px;
  position: relative;
}
div.contact_info>div::before{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background: #fff;
  width: 5px;
  height: 100%;
}
div.contact_info>div p{
  text-align: left;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
}
div.contact_text p{
  text-align: left;
  font-size: 16px;
  margin-bottom: 0.5em;
}
div.contact_text p:last-of-type{
  margin-bottom: 0;
}
div.contact_text p.come{
  color: #fff;
  padding-left: 1em;
  text-indent: -1em;
}
div.contact_text p.fnt-yellow{
  color: var(--yellow02)
}
@media screen and (max-width:768px) {
  .mainGrp div.wrap03{
    background: var(--blue04);
    background: url(https://d3t0ae4e2cnggp.cloudfront.net/resource/20240423/haikei-02_sp.png)no-repeat,-moz-linear-gradient(var(--gradient-blue));
    background: url(https://d3t0ae4e2cnggp.cloudfront.net/resource/20240423/haikei-02_sp.png)no-repeat,-webkit-linear-gradient(var(--gradient-blue));
    background: url(https://d3t0ae4e2cnggp.cloudfront.net/resource/20240423/haikei-02_sp.png)no-repeat,linear-gradient(var(--gradient-blue));
    background-size: cover;
    background-attachment: fixed;
    padding: 60px 20px;
  }
  .mainGrp div.wrap03 div.center{
    max-width: 500px;
  }
  p.contact_title{
    font-size: 30px;
  }
  .mainGrp div.wrap03 div.formBtnGrp{
    width: calc(100% - 0px);
  }
  div.contact_info{
    flex-direction: column;
  }
  div.contact_info>div{
    width: 100%;
   padding: 20px 10px;
  }
  
  div.contact_info>div::before{
    width: 100%;
    height: 2px;
  }
  div.contact_info>div:last-of-type::after{
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    background: #fff;
    width: 100%;
    height: 2px;
  }
  div.contact_info>div p{
    text-align: center;
  }
}
@media screen and (max-width:500px) {
  p.contact_title{
    font-size: 5.75vw;
  }
  div.contact_info>div p{
    font-size: 4vw;
  }
  div.contact_text p{
    font-size: 14px;
  }
}
/*お客様に選ばれる　ロジテック　データ復旧サービス　ここまで--------*/


/*選ばれる7つの理由--------*/
.mainGrp div.wrap04{
  background: var(--gray02);
  padding: 70px 10px 60px;
}
p.reason_title{
  font-weight: 700;
    font-size: 30px;
    line-height: 1.35;
    margin-bottom: 1em;
    color: #000;
    letter-spacing: 0.1em;
    text-align: center;
}
p.reason_title>span{
  color: var(--blue01);
  font-size: 40px;
  font-weight: 700;
  display: inline-block;
  vertical-align: baseline;
}
div.reason_flex{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
div.reason_item{
  width: calc(calc(100% / 4) - 15px);
  margin: 30px 7px 20px;
  padding: 45px 20px 30px;
  background: #fff;
  border-radius: 10px;
  position: relative;
}
div.reason_item::before{
  counter-increment: number ;
  content: counter(number) " ";
  position: absolute;
  top: -25px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
  align-items: center;
  width: 47px;
  height: 50px;
  padding: 0 0 3px;
  background: var(--blue01);
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  clip-path: polygon(50% 0, 100% 20%, 100% 80%, 50% 100%, 0 80%, 0 20%);
}
p.reason_text{
  font-weight: 700;
  font-size: 17px;
  color: #000;
  text-align: center;
}
p.reason_text>span{
  font-weight: 700;
  font-size: 17px;
  color: var(--blue01);
  vertical-align: baseline;
}
@media screen and (max-width:768px) {
  .mainGrp div.wrap04{
    padding: 60px 10px 40px;
  }
.mainGrp div.wrap04 div.center{
  max-width: 500px;
}
p.reason_title{
  font-size: 26px;
}
p.reason_title>span{
  font-size: 36px;
}
div.reason_item{
  width: calc(calc(100% / 1) - 0px);
}
p.reason_text,
p.reason_text>span{
  font-size: 20px;
}
}
@media screen and (max-width:500px) {
p.reason_title{
  font-size: 6vw;
}
p.reason_title>span{
  font-size: 7vw;
}
div.reason_item{
  padding: 33px 10px 23px;
}
div.reason_item::before{
  top: -22px;
  width: 37px;
  height: 40px;
  font-size: 24px;
}
p.reason_text,
p.reason_text>span{
  font-size: 18px;
}
}
@media screen and (max-width:300px) {
p.reason_text,
p.reason_text>span{
  font-size: 5.75vw;
}
}
/*選ばれる7つの理由　ここまで--------*/





/*データ復旧の流れ--------*/
/*選ばれる7つの理由--------*/
.mainGrp div.wrap05{
  padding: 70px 10px 60px;
}
.mainGrp div.wrap05 div.center{
  max-width: 1000px;
}
p.flow_title{
  font-weight: 700;
    font-size: 30px;
    line-height: 1.35;
    margin-bottom: 1em;
    color: #000;
    letter-spacing: 0.1em;
    text-align: center;
}

/*横並び*/
div.flow_flex{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  background: url(https://d3t0ae4e2cnggp.cloudfront.net/resource/20240423/illust-04.png)no-repeat;
  background-size: 300px;
  background-position: right calc(100% - 30px);
}
div.flow_flex::after{
  content: "";
  width: calc(calc(100% / 3) - 10px);
}
/*アイテム*/
div.flow_item{
  margin: 40px 0 30px;
width: calc(calc(100% / 3) - 10px);
background: #EAF6FD;
padding: 40px 25px 25px;
position: relative;
}
div.flow_item::before{
  content: "";
  width: 20px;
  height: 20px;
  position: absolute;
  top: -1px;
  right: -1px;
  background: #fff;
  clip-path: polygon(0 0, 100% 0, 100% 100%);
}
div.flow_item::after{
  content: "";
  display: block;
  width: 25px;
  height: 25px;
  position: absolute;
  top: 50%;
  right: -20px;
  transform: translateY(-50%);
  background: url(https://d3t0ae4e2cnggp.cloudfront.net/resource/20240423/arrow-02.png)no-repeat;
  background-size: contain;
  z-index: 99;
}
div.flow_item:last-of-type::after{
  display: none;
}
div.flow_number{
  width: 70px;
  height: 70px;
  position: absolute;
  top: -45px;
  left: 20px;
}

p.flow_item_title{
  font-size: 24px;
  font-weight: 700;
  text-align: left;
  color: var(--blue01);
  margin-bottom: 0.75em;
  line-height: 1.35;
}

a.flow_btn,
a.flow_btn_2{
  display: flex;
  align-items: center;
  padding: 10px 30px 10px 20px;
  border-radius: 10px;
  margin: 0 0 20px;
  font-size: 20px;
  font-weight: 700;
  text-align: left;
  position: relative;
}
a.flow_btn span,
a.flow_btn_2 span {
  position: absolute;
  top: 50%;
  right: 15px;
  display: inline-block;
  width: 10px;
  height: 10px;
  transform: rotate(45deg)translateY(-50%);
}

a.flow_btn{
  background: #fff;
  color: var(--blue01);
  border: 3px solid var(--blue01);
}
a.flow_btn span{
  border-top: 3px solid var(--blue01);
  border-right: 3px solid var(--blue01);
}

a.flow_btn_2{
  background: var(--blue01);
  color:#fff;
  border: 3px solid #fff;
}
a.flow_btn_2 span{
  border-top: 3px solid #fff;
  border-right: 3px solid #fff;
}

a.flow_btn:hover{
  background: #fffae0;
}
a.flow_btn_2:hover{
  background: #284583;
}

div.flow_icon{
  max-width: 145px;
  margin-bottom: 20px;
}

p.flow_item_text{
  font-size: 14px;
  font-weight: 400;
  padding-left: 1em;
  text-indent: -1em;
  text-align: left;
  color: var(--blue01);
}
p.flow_item_date{
  width: calc(100% - 20px);
  display: inline-block;
  padding: 5px 15px;
  background: var(--orange01);
  font-size: 15px;
  font-weight: 700;
  text-align: center;
  color: #fff;
  border-radius: 100px;
}
p.flow_item_date::before{
  content: "";
  position: absolute;
  top: -9px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--orange01);
  width: 20px;
  height: 10px;
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
}

/*よくある質問はこちら*/
div.flow_questionBtn{
  max-width: 600px;
  margin: 40px auto 0;
}
div.flow_questionBtn a{
  display: block;
  padding: 15px 20px 15px 10px;
  background: #EAF6FD;
  border: 3px solid var(--blue01);
  border-radius: 100px;
  font-size: 24px;
  font-weight: 700;
  color: var(--blue01);
  position: relative;
}
div.flow_questionBtn a:hover{
  background: #c4e4f7;
}
div.flow_questionBtn a span{
  position: absolute;
  top: 50%;
  right: 30px;
  display: inline-block;
  width: 15px;
  height: 15px;
  transform: rotate(45deg) translateY(-60%);
  border-top: 3px solid var(--blue01);
  border-right: 3px solid var(--blue01);
}
@media screen and (min-width:769px) {
  p.flow_item_date{
    position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  }
  
}
@media screen and (max-width:768px) {
  
  .mainGrp div.wrap05 div.center{
    max-width: 500px;
  }
  div.flow_flex{
    background-size: 250px;
    background-position: center bottom;
    padding-bottom: 150px;
  }
  div.flow_flex::after{
    display: none;
  }
  div.flow_item{
    width: calc(calc(100% / 1) - 0px);
    margin-bottom: 60px;
  }
  div.flow_item::after{
    top: inherit;
    bottom: -25px;
    left: 50%;
    right: inherit;
    transform:rotate(90deg)translate(-50%, 50%);
  }
  p.flow_item_title,
  p.flow_item_text{
    text-align: center;
  }
  p.flow_item_text{
    padding-left: 0;
    text-indent: 0;
  }
  div.flow_number{
    left: 50%;
    transform: translateX(-50%);
  }
  a.flow_btn,
  a.flow_btn_2{
    font-size: 20px;
    padding: 15px 30px 15px 20px;
    justify-content: center;
  }
  a.flow_btn_2{
    margin-bottom: 0;
  }
  a.flow_btn br,
  a.flow_btn_2 br{
    display: none;
  }
  a.flow_btn span{
    border-top: 2px solid var(--blue01);
    border-right: 2px solid var(--blue01);
  }
  a.flow_btn_2 span{
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
  }
  p.flow_item_date{
    font-size: 20px;
    width: 100%;
    position: relative;
    margin-top: 20px;
  }
  div.flow_questionBtn{
    margin-top: 20px;
  }
}
@media screen and (max-width:500px) {
  div.flow_item{
    padding: 40px 15px 25px;
  }
  p.flow_item_title{
    font-size: 6.5vw;
  }
  a.flow_btn, a.flow_btn_2{
    font-size: 16px;
  }
  p.flow_item_date{
    font-size: 4vw;
  }
  div.flow_questionBtn a{
    font-size: 5.5vw;
  }
  div.flow_questionBtn a span{
    width: 10px;
    height: 10px;
  }
}
/*データ復旧の流れ　ここまで--------*/


/*--------*/

/*　ここまで--------*/





/*--------*/

/*　ここまで--------*/


/*--------*/

/*　ここまで--------*/



/*-----------------------------------------
03 コンテンツの設定ここまで
-------------------------------------------*/

/*-----------------------------------------
04 フッターの設定
-------------------------------------------*/
.footGrp{
  padding: 40px 20px;
}
ul.list_ul{
  padding: 0;
  display: inline-block;
  text-align: center;
}
li.list_li{
  display: block;
  text-align: left;
  font-size: 15px;
  color: #b1b1b1;
  padding-left: 1em;
  text-indent: -1em;
  margin-bottom: 0.6em;
}
li.list_li::before{
content: "・";
}
@media screen and (max-width:1080px) {}

@media screen and (max-width:768px) {}
@media screen and (max-width:500px) {
  li.list_li{
    font-size: 14px;
  }
}
/*-----------------------------------------
04 フッターの設定ここまで
-------------------------------------------*/





/*ハンバーガーメニュー-----------------------------*/
#g-nav {
  /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
  position: fixed;
  z-index: 999;
  /*ナビのスタート位置と形状*/
  top: 0;
  right: -120%;
  width: 25%;
  height: 100vh;
  /*ナビの高さ*/
  background: var(--blue04);
  /*動き*/
  transition: all 0.6s;
}

/*アクティブクラスがついたら位置を0に*/
#g-nav.panelactive {
  right: 0;
}

/*ナビゲーションの縦スクロール*/
#g-nav.panelactive #g-nav-list {
  /*ナビの数が増えた場合縦スクロール*/
  position: fixed;
  z-index: 999;
  width: 25%;
  height: 100vh;
  /*表示する高さ*/
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

/*ナビゲーション*/
#g-nav ul {
  /*ナビゲーション天地中央揃え*/
  position: absolute;
  z-index: 999;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: calc(100% - 20px*2);
  max-width: 400px;
  max-width: max-content;
  padding-left: 0;
}

/*リストのレイアウト設定*/
#g-nav li {
  list-style: none;
  text-align: center;
  padding: 0;
  border-top: 3px dotted rgba(255, 255, 255, 0.5);
}
#g-nav li:last-of-type{
  border-bottom: 3px dotted rgba(255, 255, 255, 0.5);
}
#g-nav li a {
  text-decoration: none;
  padding: 0.75em 0;
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: bold;
  font-size: 20px;
  letter-spacing: 0.1em;
  color: #fff!important;
}
#g-nav li a.fnt-orange{
  color: var(--orange01)!important;
}
#g-nav li a.fnt-blue{
  color: var(--blue01)!important;
}
#g-nav li a:hover{
  opacity: 0.75;
}
/*========= ボタンのためのCSS ===============*/
.openbtn {
  position: fixed;
  z-index: 9999;
  /*ボタンを最前面に*/
  bottom: 90px;
  right: -4px;
  cursor: pointer;
  width: 70px;
  height: 70px;
  background: var(--blue02)!important;
  border: 3px solid #fff;
  border-radius: 3px 0 0 3px;
}

/*×に変化*/
.openbtn span {
  display: inline-block;
  transition: all .4s;
  position: absolute;
  left: 17px;
  height: 3px;
  border-radius: 2px;
  background-color: #fff;
  width: 45%;
}

.openbtn span:nth-of-type(1) {
  top: 17px;
}

.openbtn span:nth-of-type(2) {
  top: 30px;
}

.openbtn span:nth-of-type(3) {
  top: 43px;
}

.openbtn.active span:nth-of-type(1) {
  top: 26px;
  left: 22px;
  transform: translateY(6px) rotate(-45deg);
  width: 40%;
}

.openbtn.active span:nth-of-type(2) {
  opacity: 0;
}

.openbtn.active span:nth-of-type(3) {
  top: 38px;
  left: 22px;
  transform: translateY(-6px) rotate(45deg);
  width: 40%;
}
@media (min-width: 769px) {
  #g-nav,
  #g-nav.panelactive #g-nav-list{
    max-width: 360px;
  }
}
@media (max-width: 768px) {
  #g-nav li a{
    font-size: 20px;
    text-align: left;
  }
  .openbtn {
    width: 60px;
    height: 55px;
    bottom: 110px;
  }

  .openbtn span {
    left: 15px;
  }

  .openbtn span:nth-of-type(1) {
    top: 15px;
  }

  .openbtn span:nth-of-type(2) {
    top: 25px;
  }

  .openbtn span:nth-of-type(3) {
    top: 35px;
  }

  .openbtn.active span:nth-of-type(1) {
    top: 18px;
    left: 17px;
  }

  .openbtn.active span:nth-of-type(3) {
    top: 30px;
    left: 17px;
  }

  #g-nav {
    width: 100%;
  }

  /*ナビゲーションの縦スクロール*/
  #g-nav.panelactive #g-nav-list {
    /*ナビの数が増えた場合縦スクロール*/
    width: 100%;
  }

}

/*ハンバーガーメニューここまで---------------*/



  
  
  
  
/*SS________EC-CUBE対策リセット*/
#fil{
  margin: 0 auto;
}
main.l-container {
  width:100%;
}
.c-main{
  padding-bottom: 0 ;
  padding-left: 0;
  padding-right: 0;
}
#contentInner{
  width: auto;
  padding-bottom: 0;
}
#wide_main_contents{
  width: 100%;
}

.c-breadcrumb {
    width: 1200px;
    margin: auto;
  }
  @media (max-width: 1230px) {
    main.l-container {
      width:123rem;
    }
  }
@media (max-width: 768px) {
  .pc{
    display: none!important;
  }
  .sp{
    display: block;
  }
  .l-container{
    width:120rem;
  }
  #contentInner{
    width: 1200px;
    padding-bottom: 0;
  }
  #wide_main_contents{
    width:1200px
  }
}


