@charset "UTF-8";

:root {
  --black: #303033;
  --black_b: #47474B;
  --blue: #193cb4;
  --blue_2: #0968B7;
  --red: #E60012;
  --white: #fff;
  --gray: #CFCFCF;
  --gray_2: #E5E5E5;
  --light: #ccc;
}

body{
  overflow-x: hidden;
  font: 16px/1.5 "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "MSPゴシック", "MS PGothic", sans-serif;
  color: var(--black);
}

.pc-only{
  display: block;
}
.sp-only{
  display: none;
}

@media screen and (max-width:767px) {
  .pc-only{
    display: none;
  }
  .sp-only{
    display: block;
  }
}

.flow_img_pc{
  display: block;
}
.flow_img_sp{
  display: none;
}

@media screen and (max-width:767px) {
  .flow_img_pc{
    display: none;
  }
  .flow_img_sp{
    display: block;
  }
}


.kabuyu-auth-help{
  width: 100%;
  max-width: 1000px;
  margin: auto;
  padding: 70px 0;
}

.wrapper__block{
  margin-bottom: 100px;
}

h2{
  text-align: center;
  font-size: 24px;
  margin: 0 0 80px 0;
}

h3{
  font-size: 24px;
  margin: 0;
}

h4{
    font-size: 18px;
    margin: 0 0 10px 0;
}

@media screen and (max-width:767px) {
  h2{
    margin: 0 0 40px 0;
    font-size: 20px;
  }
  h3{
    font-size: 18px;
  }
  h4{
    font-size: 16px;
}
}

.flow_img{
  display: block;
  width: 100%;
  height: auto;
}

.wrapper__help{
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 20px;
  margin-bottom: 25px;
}

.wrapper__help__txt{
  width: 50%;
  line-height: 1.6;
}

.wrapper__help__img{
  width: 50%;
}

.flow_img_pc{
  width: 100%;
}

.flow_img_sp{
  width: 100%;
}

@media screen and (max-width: 767px) {
  .kabuyu-auth-help{
    padding: 40px 0;
    width: 100%;
    max-width: 95%;
  }
  .wrapper__block{
    margin-bottom: 40px;
  }
  .wrapper__help {
    flex-direction: column;
    gap: 0;
  }
  .wrapper__help__txt{
    width: 100%;
  }
  .wrapper__help__img{
    width: 100%;
  }
}



/* 注意点 */
.wrapper__atention{
  background: #F1F1F1;
  text-align: center;
  padding: 17px;
}

.kabuyu-auth-helop__back-to-top{
  border: 1px solid var(--black_b);
  border-radius: 8px;
  width: 100%;
  max-width: 320px;
  height: 52px;
  line-height: 52px;
  font-size: 18px;
  text-decoration: none;
  color: var(--black_b);
  display: block;
  margin: auto;
  text-align: center;
  position: relative;
}
.kabuyu-auth-helop__back-to-top::before{
  position: absolute;
  top: 50%;
  left: 20px;
  display: inline-block;
  content: '';
  width: 6px;
  height: 6px;
  margin-top: -3px;
  border-bottom: 2px solid var(--black_b);
  border-left: 2px solid var(--black_b);
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
