@charset "UTF-8";
html{
  scroll-padding-top: 80px;
}
:root {
  --color:#DB831F;
  --bg:#F8DEC0;
  .c02{
    --color:#006CB7;
    --bg:#99D9F3;
  }
  .c03{
    --color:#1E9E59;
    --bg:#A8DFC2;
  }
  .c04{
    --color:#E4504A;
    --bg:#F6CDCC;
  }
  .c05{
    --color:#3F6394;
    --bg:#B5CFF2;
  }
  .c06{
    --color:#AA9524;
    --bg:#EFDD75;
  }
}
.total_support{
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  *{
    box-sizing: border-box;
  }
  a{
    color: #000;text-decoration: none;
    &.tdu{
      text-decoration: underline;
    }
  }
}
.color{
  color: var(--color);
}
.bg{
  background: var(--bg);
}
.bold{
  font-weight: bold;
}
.f_14{font-size: 1.4rem;}
.f_18{font-size: 1.8rem;}
.f_20{font-size: 2rem;}
.f_24{font-size: 2.4rem;}
.f_32{font-size: 3.2rem;}
.f_40{font-size: 4rem;}

.mt_10{margin-top: 10px;}
.mt_20{margin-top: 20px;}
.mt_30{margin-top: 30px;}
.mt_40{margin-top: 40px;}
.mt_50{margin-top: 50px;}
.mt_60{margin-top: 60px;}

.indent{
  text-indent: -1em;
  padding-left: 1em;
}
.indent_2{
  text-indent: -2em;
  padding-left: 2em;
}

.intro{
  background: url('../img/bg_intro_left.png') no-repeat,url('../img/bg_intro_right.png') no-repeat,url("../img/bg_intro.png") no-repeat;
  background-position: top left,top right,center;
  -webkit-background-size: auto,auto,cover;
  background-size: auto,auto,cover;
  padding: 70px 0 35px;
}
.intro_inner{
  max-width: 720px;
  width: 90%;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap:20px;
  line-height: 2;
  color: #035089;
  font-size: 2rem;
  font-weight: bold;
  .str{
    font-size: 2.4rem
  }
}

.anchor{
  padding: 40px 0;
}
.anc_flex{
  max-width: 1024px;
  width: 90%;
  margin: auto;
  display: flex;
  gap:20px;
  flex-wrap: wrap;
}
.anc_card{
  max-width: 328px;
  width: 100%;
  background: var(--bg);
  padding: 10px;
  text-align: center;
  border-radius: 8px;
  &::after{
    content: '';
    display: block;
    width: 100%;
    height: 8px;
    background: url("../img/arrow_anc.svg") no-repeat center;
    -webkit-background-size: contain;
    background-size: contain;
    margin-top: 7px;
  }
}
.anc_head{
  min-height: 50px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.c04 .anc_head{
  padding-left: 50px;
}
.anc_num {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  line-height: 1;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--color);
  color: #fff;
  font-weight: bold;
  position: absolute;
  top: 0;
  left: 0;
  span:first-child{
    font-size: 1.2rem;
  }
  span:last-child{
    font-size: 2.8rem;
  }
}
.acn_tit{
  font-size: 2.4rem;
  font-weight: bold;
}
.anc_body {
  background: #fff;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  line-height: 1.33;
  gap: 10px;
  min-height: 170px;
  margin-top: 7px;
}

.content.c01 {background: #FFF8F0;}
.content.c02 {background: #E6F8FF;}
.content.c03 {background: #E9F4EE;}
.content.c04 {background: #FEF5F8;}
.content.c05 {background: #ECF0F5;}
.content.c06 {background: #F4F3EB;}

.cont_inner {
  max-width: 1024px;
  width: 90%;
  margin: auto;
  padding: 60px 0;
}
.cont_head {
  display: flex;
  align-items: center;
  font-size: 2.4rem;
  font-weight: bold;
  padding: 0 30px;
  height: 66px;
  border-radius: 8px;
  background: var(--bg);
}
.cont_top {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 15px;
  background: #fff;
  border: 2px solid var(--color);
  padding: 30px 5%;
}
.top_right {
  display: flex;
  flex-direction: column;
  text-align: center;
}
.top_bnr {
  background: var(--color);
  padding: 10px 30px;
  border-radius: 8px;
  color: #fff;
  font-weight: bold;
  margin-top: 10px;
  min-width: 550px;
}
/* =======================
   ボタンリセット
======================= */
.pop_btn,.flow_btn {
  appearance: none;
  -webkit-appearance: none;
  border: none;
  background: none;
  padding: 0;
  margin: 0;
  font: inherit;
  color: inherit;
  cursor: pointer;
}
/* =======================
   ボタンデザイン
======================= */
.pop_btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 328px;
  margin: 40px auto 0;
  height: 60px;
  background: var(--bg);
  padding: 14px 20px;
  border: none;
  transition: all .2s ease;
  gap:15px;
}
/* =======================
   矢印アイコン風
======================= */
.pop_btn {
}

.pop_btn::after {
  content: '＋';
  font-weight: bold;
  color: var(--color);
  font-size: 2.4rem;
}

.pop_box {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
}

.pop_box.is-active {
  display: block;
  width: 100%;
  height: 100%;
}

/* マスク */
.pop_mask {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  cursor: pointer;
}

/* 本体 */
.poo_main {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);

  width: min(90%, 600px);
  max-height: 80vh;
  overflow-y: auto;

  background: #fff;
  padding: 20px;
  border-radius: 8px;
}
.pop_head {
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 10px;
}

.cont_div{
  margin-top: 40px;
}
.cont_border{
  font-size: 2.4rem;
  font-weight: bold;
  color: var(--color);
  border-bottom: 2px solid var(--color);
  padding-bottom: 5px;
}
.cont_flow{
  display: flex;
  flex-direction: column;
  gap:10px;
  margin-top: 20px;
}
.flow_box {
  display: flex;
  align-items: center;
  padding: 30px;
  background: #fff;
  border-radius: 8px;
  position: relative;
  &:has(.flow_btn){
    min-height: 140px;
    padding-right: 400px;
  }
}
.flow_num{
  font-size: 2rem;
  font-weight: bold;
  color: var(--color);
  min-width: 2em;
}
.flow_cont{
  display: flex;
  align-items: center;
  gap:10px;
  flex-wrap: wrap;
}
a.flow_btn {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 368px;
  width: 100%;
  height: 80px;
  border-radius: 8px;
  background: #fff;
  font-size: 2rem;
  font-weight: bold;
  color: var(--color);
  border: 2px solid var(--color);
  position: absolute;
  right: 30px;
  top: calc(50% - 40px);
  box-shadow: 0 6px 0 var(--color);
  text-align: center;
  &::after{
    content: '';
    display: block;
    width: 8px;
    height: 11px;
    background: url("../img/arrow_01.svg") no-repeat center;
    -webkit-background-size: contain;
    background-size: contain;
    margin-left: 10px;
  }
}
.flow_btn.code_btn {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 368px;
  width: 100%;
  height: 60px;
  border-radius: 8px;
  background: #7F8984;
  font-weight: bold;
  color:#fff;
  position: absolute;
  right: 30px;
  top: calc(50% - 30px);
  text-align: center;
  &::after{
    content: '';
    display: block;
    width: 8px;
    height: 11px;
    background: url("../img/arrow_00.svg") no-repeat center;
    -webkit-background-size: contain;
    background-size: contain;
    margin-left: 10px;
  }
}
.c02 a.flow_btn {
  &::after{
    background: url("../img/arrow_02.svg") no-repeat center;
    -webkit-background-size: contain;
    background-size: contain;}
}
.c03 a.flow_btn {
  &::after{
    background: url("../img/arrow_03.svg") no-repeat center;
    -webkit-background-size: contain;
    background-size: contain;}
}
.cont_other{
  padding: 30px 45px;
  background: #fff;
  border-radius: 8px;
  line-height: 2;
  margin-top: 20px;
  position: relative;
}
.code_box{
  width: 100%;
  white-space: pre-line;
}
.other_flex {
  display: flex;
  flex-direction: row-reverse;
  gap:20px;
}
.other_block {
  width: 100%;
  max-width: 385px;
}
a.other_link {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 368px;
  width: 100%;
  height: 60px;
  border-radius: 8px;
  background: #7F8984;
  font-weight: bold;
  color:#fff;
  position: absolute;
  right: 30px;
  bottom: 50px;
  text-align: center;
  &::after{
    content: '';
    display: block;
    width: 8px;
    height: 11px;
    background: url("../img/arrow_00.svg") no-repeat center;
    -webkit-background-size: contain;
    background-size: contain;
    margin-left: 10px;
  }
}
@media screen and ( max-width: 767px ){
.f_14{font-size: 1.2rem;}
.f_18{font-size: 1.8rem;}
.f_20{font-size: 1.8rem;}
.f_24{font-size: 2rem;}
.f_32{font-size: 2.4rem;}
.f_40{font-size: 2.4rem;}
  
.intro {
  -webkit-background-size: 60% auto, 60% auto, cover;
  background-size: 60% auto, 60% auto, cover;
}
.intro_inner {
  font-size: 1.6rem;
  .str {
    font-size: min(2.4rem, 5vw);
  }
}
.top_bnr {
  min-width: 0px;
}
a.flow_btn{
  position: static;
  height: 60px;
  margin-top: 20px;
  line-height: 1.25;
}
.flow_btn.code_btn{
  position: static;
}
  a.other_link{
  position: static;
    margin-top: 20px;
  }
.flow_box {
  padding: 10px 5% 30px;
  flex-direction: column;
  align-items: flex-start;
  &:has(.flow_btn) {
    padding-right: 5%;
  }
}
.acn_tit {
  font-size: 2rem;
}
.cont_head {
  font-size: 2rem;
  padding: 10px 5%;
}
.cont_top {
  flex-direction: column;
  padding: 20px 5%;
}
.cont_other {
  padding: 20px 5%;
  line-height: 1.5;
}
.qr {
  width: 100%;
  text-align: center;
}
.other_flex {
  flex-direction: column;
}
.other_block {
  max-width: 100%;
}
}