@charset "UTF-8";
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
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, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-style: normal;
  line-height: 1;
  text-decoration: none;
}

@media screen and (min-width: 769px) {
  html {
   max-width: 1200px;
   margin: auto;
  }
}

* {
  box-sizing: border-box;  /* paddingやborderを含めて幅を計算 */
  margin: 0;               /* すべての要素の初期マージンを0に */
  padding: 0;              /* すべての要素の初期パディングを0に */
}

article, aside, details, figcaption, figure,
footer, header, menu, nav, section, main, canvas {
  display: block;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

input, textarea {
  font-family: inherit;
  font-size: inherit;
}

select, option, button {
  font-family: inherit;
  font-size: inherit;
}

input, button, textarea, select {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

ol, ul, li {
  list-style: none;
}

a {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  color: inherit;
  font-weight: inherit;
  font-style: inherit;
  text-decoration: none;
  vertical-align: baseline;
}


/* pcsp
----------------------*/
@media screen and (max-width: 768px) {
  .is-pc {
    display: none !important;
  }
    
  img {
    width:100%;
    height: auto;
  }
}

@media screen and (min-width: 769px) {
  .is-sp {
    display: none !important;
  }
}


/* function
----------------------*/
/* mixin
----------------------*/
/* common
----------------------*/
html {
  font-size: 62.5%;
  -webkit-font-smoothing: antialiased;
  scroll-behavior: smooth;
}

body {
  font-size: 14px;
  font-size: 1.4rem;
  font-family: "Noto Sans JP", sans-serif;
  margin: auto;
}

#container {
  margin: auto;
  width: 100%;
}

@media screen and (max-width: 768px) {
  body {
    width:100%;
    max-width: 768px;
    overflow-x: hidden;  
  }
}

@media screen and (min-width: 769px) {
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
}


/* floating
----------------------*/
.floating {
  position: fixed;
  left: 0;
  bottom: 0;
  display: none;
  background: #fff;
  width:100%;
  box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.35);
  z-index:99;
  box-sizing: border-box;
  height: 100px;
  padding-top:25px;
}

.floating_box {
  display: -webkit-flex;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  width:500px;
  margin:0 auto 10px;
}

@media screen and (max-width: 768px) {
  .floating {
    height: auto;
    padding:4vw 0;
  }

  .floating_box {
    width:90%;
    margin:0 auto 10px;
  }

  .floating_box div {
    width:47%;
  }
}


/* all
----------------------*/
.btn_box {
  background:#fff;
  width:100%;
  padding-bottom:40px;
  border-radius: 0 0 8px 8px;
}

.btn_box.pt { padding-top:20px; }

.btn_lead {
  font-size:18px;
  font-weight:700;
}

.btn_lead span {
  color:#2167ae;
}

.btn_box a.btn {
  display:block;
  background: url("/NonSitecore/_/media/landingpage/brpg/kanwa/kanwa2/img/cta04_bg_pc.png") left top no-repeat;
  color:#fff;
  font-weight:700;
  text-align: center;
  box-sizing: border-box;
  position: relative;
  width:540px;
  height: 72px;
  margin:10px auto 0;
  background-size: 540px;
  font-size:19px;
  padding-top:25px;
  padding-left:30px;
}

.btn_box a.btn.case2 {
  padding-top:10px;
  line-height: 1.3;
}

.btn_box a.btn.yellow {
  background: url("/NonSitecore/_/media/landingpage/brpg/kanwa/kanwa2/img/cta03_bg_pc.png") left top no-repeat;
  background-size: 540px;
}

.btn_box a.btn:hover {
  opacity: .6;
  transition: .7s ease;
}

.btn_box a.btn img {
  position: absolute;
  left:60px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.btn_box .text_link a {
  display: block;
  font-size:16px;
  color:#2167ae;
  font-weight:700;
  padding-top:10px;
  text-decoration: underline;
}

.bg_white { background:#fff; }

@media screen and (max-width: 768px) {
  .btn_box {
    padding-bottom:5.333vw;
  }

  .btn_box.pt { padding-top:3.906vw; }
  .btn_lead { font-size:3.906vw; }

  .btn_box a.btn {
    background: url("/NonSitecore/_/media/landingpage/brpg/kanwa/kanwa2/img/cta04_bg_sp.png") left top no-repeat;
    background-size: 100%;
    width:92%;
    height: 14vw;
    margin:2.604vw auto 0;
    font-size:3.906vw;
    padding-top:4.8vw;
    padding-left:6vw;
  }

  .btn_box a.btn.case2 {
    padding-top:1.309vw;
  }
    
  .btn_box a.btn.yellow {
    background: url("/NonSitecore/_/media/landingpage/brpg/kanwa/kanwa2/img/cta03_bg_sp.png") left top no-repeat;
    background-size: 100%;
  }

  .btn_box a.btn img {
    left:8vw;
    width:5.5vw;
  }

  .btn_box a.btn.yellow img {
    left:15vw;
    width:8vw;
  }

  .btn_box .text_link a {
    font-size:3.906vw;
    padding-top:1.309vw;
  }
}


/* he_header
----------------------*/
.he_header img {
  width: 100%;
  height: auto;
}

.he_header .inner {
  width: 100%;
  padding: 16px 68px 17px;
  margin: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.he_header h1 {
  width: 167.5px;
}

.he_header .tel {
  width: 422px;
}

@media screen and (max-width: 768px) {
  .he_header .inner {
    padding: 2.9333333333vw 4.2666666667vw 2.4vw 3.7333333333vw;
  }

  .he_header h1 {
    width: 26.896vw;
  }

  .he_header .tel {
    width: 56.5333333333vw;
  }
}


/* he_mv
----------------------*/
.he_mv {
  width:100%;
  position: relative;
  background:#fff3e5;
}

.he_mv p {
  width:100%;
  max-width: 680px;
  margin:0 auto;    
  color:#434343;
  font-size:12px;
  padding-bottom:20px;
  box-sizing: border-box;
  line-height: 1.3;
}

.he_mv h2 img {
  width: 100%;
  height: auto;
}

@media screen and (max-width: 768px) {
  .he_mv p {
    font-size:2.933vw;
    padding:0 5.208vw 3.906vw;
    text-align: left;
    line-height: 1.4;
  }
}


/* he_sv
----------------------*/
.he_sv {
  width:100%;
  background: linear-gradient(180deg,rgba(255, 243, 229, 1) 34%, rgba(255, 255, 255, 1) 50%);
  padding:40px 0 80px;
  margin-top:40px;
  text-align: center;
}

.he_sv h2 {
  margin-bottom:30px;
}

.he_sv .person {
  margin-bottom:30px;
}

.he_sv .sv_graph {
  padding:0 0 10px 0;
  position: relative;
  width:568px;
  margin:0 auto;
}

.he_sv .sv_graph a.bot01 {
  position: absolute;
  left:94px;
  bottom:28px;
}

.he_sv .sv_graph a.bot02 {
  position: absolute;
  left:258px;
  bottom:28px;
}

.he_sv .sv_graph a.bot03 {
  position: absolute;
  right:16px;
  bottom:28px;
}

.he_sv .sv_graph a img:hover {
  opacity: .6;
  transition: .7s ease;
}

.he_sv .small {
  font-size:12px;
  width:568px;
  margin:auto;
  text-align: left;
  line-height: 1.3;
  padding-left:2.2rem;
  text-indent: -2.2rem;
}

@media screen and (max-width: 768px) {
  .he_sv {
    width:100%;
    padding:7.813vw 0;
    margin-top:3.906vw;
  }

  .he_sv h2 {
    width:75%;
    margin:0 auto 6.51vw;
  }

  .he_sv .person {
    width:89.2%;
    margin: 0 5.4% 6.51vw 5.4%;
  }

  .he_sv .sv_graph {
    padding:0 0 2.604vw 0;
    width:92%;
    overflow-x: scroll;
  }
    
  .he_sv .sv_graph_inner {
    width:140.234vw;
    position: relative;
  }

  .he_sv .sv_graph a.bot01 {
    width:31.901vw;
    height: 8.464vw;
    left:23.438vw;
    bottom:3.646vw;
  }

  .he_sv .sv_graph a.bot02 {
    width:31.901vw;
    height: 8.464vw;
    left:63.542vw;
    bottom:3.646vw;
  }

  .he_sv .sv_graph a.bot03 {
    width:31.901vw;
    height: 8.464vw;
    right:3.646vw;
    bottom:3.646vw;
  }

  .he_sv .small {
    font-size:2.933vw;
    width:92%;
    color: #434343;
    margin: 1.309vw auto 0;
  }
 
  .my-icon {
    overflow: hidden; /* 右に動く際に画像がはみ出ないようにする */
    width: 100vw;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    z-index: 9999;
  }

  .animate-image {
    opacity: 0; /* 初期は隠す */
    transform: translateX(-50px); /* 初期位置を少し左に */
    transition: all 1s ease-out; /* 移動の滑らかさ */
    width: 31.901vw;
  }

  /* JavaScriptで付与するクラス */
  .animate-image.show {
    opacity: 0;
    animation: swipe-move 1.5s ease-in-out 3 forwards 2s;
    animation-delay: 1s;
    animation-direction: reverse;
  }    
}

/* 消える動きの定義 */
@keyframes swipe-move {
  20% {
    opacity: 1;
  }
  80% {
    opacity: 1;
  }
  100% {
    transform: translateX(50px);
    opacity: 0;
  }
}


/* he_reason
----------------------*/
.he_reason {
  color:#434343;
  background: #fff3e5;
  text-align: center;
}

.he_reason h2 {
  max-width: 1200px;
  background: url("/NonSitecore/_/media/landingpage/brpg/kanwa/kanwa2/img/reason_ttl_bg.png") left top repeat;
  background-size: 95px;
  text-align: center;
  padding:10px 0;
  border-top:3px solid #b9506d;
  border-bottom:3px solid #b9506d;
}

.he_reason h2 img {
  width:495px;
  height: auto;
}

.he_reason .reason_arrow h3 {
  max-width: 700px;
  text-align: center;
  padding:30px 0 10px;
  margin:0 auto;
}

.he_reason .reason_arrow h3 img {
  width:100%;
  height: auto;
}

.he_reason .reason_arrow {
  background: url("/NonSitecore/_/media/landingpage/brpg/kanwa/kanwa2/img/reason_bg_pc.png") center bottom no-repeat #fff;
  background-size: 100%;
  text-align: center;
  padding-bottom:100px;
  margin-bottom:30px;
}

.he_reason .reason_arrow.pb {
  padding-bottom:50px;
}

.he_reason .reason_txt {
 font-size:20px;
 font-weight: 700;
 line-height: 1.6;
 padding:20px 0 0 0;
}

.he_reason .reason_txt span {
  color:#cd2f59;
  font-size:26px;
}

.he_reason .reason_box {
  border:2px solid #b9506d;
  border-radius: 8px;
  background: #fff;
  text-align: center;
  width: 700px;
  box-sizing: border-box;
  position: relative;
  margin:40px auto 0;
  padding:0 20px 20px;
}

.he_reason .reason_box.mt {
  margin:10px auto 0;
  padding:0 0 30px;
}

.he_reason .reason_box.mt2 {
  margin:15px auto 0;
  padding:0 0 30px;
}

.he_reason .reason_box.mt3 {
  margin:30px auto 0;
  padding:0 20px 80px;
}

.he_reason .reason_box .reason_txt {
  border-bottom:3px dotted #7f7f7f;
  padding:20px 0 15px;
}

.he_reason .reason_box .reason_txt.redline {
  border-bottom:2px solid #cd2f59;
  padding:20px 0 15px;
}

.he_reason .reason_box .reason_txt2 {
  font-size: 21.6px;
  font-weight:600;
  background: #b9506d;
  color:#fff;
  padding:8px 0 10px;
  display: -webkit-flex;
  display: flex;
  align-items: baseline;
  justify-content: center;
}

.he_reason .reason_box .reason_txt2 span.small-text {
  font-size: 17.3px;
}

.he_reason .reason_box .reason_txt2 img {
  margin:0 2px -7px 0;
}

.he_reason .reason_box .reason_txt3 {
  font-size: 19.5px;
  font-weight:600;
  padding-top: 30px;
  display: -webkit-flex;
  display: flex;
  align-items: baseline;
  justify-content: center;
}

.he_reason .reason_box .reason_txt3 img {
  margin:0 2px -7px 2px;
}

.he_reason .reason_box .reason_txt4 {
  font-size: 12px;
  font-weight:500;
  padding-top:10px;
}

.he_reason .reason_txt5 {
  font-size: 25.95px;
  font-weight:700;
  color: #cd2f59;
  line-height: 1.3;
  padding-top:30px;
  position: relative;
  width:585px;
  margin:0 auto;
}

.he_reason .reason_txt5:before {
  display: inline-block;
  content: "";
  background: url("/NonSitecore/_/media/landingpage/brpg/kanwa/kanwa2/img/slash.png") left bottom no-repeat;
  background-size: 100%;
  width:15px;
  height: 25px;
  position: absolute;
  left:0;
  bottom:0;  
}

.he_reason .reason_txt5:after {
  display: inline-block;
  content: "";
  background: url("/NonSitecore/_/media/landingpage/brpg/kanwa/kanwa2/img/slash.png") left bottom no-repeat;
  background-size: 100%;
  width:15px;
  height: 25px;
  position: absolute;
  right:0;
  bottom:0;
  transform: scaleY(-1); 
}

.he_reason .reason_txt6 {
  font-size: 12px;
  width:600px;
  margin:10px auto 30px;
  line-height: 1.3;
  text-align: left;
}

.he_reason .reason_txt7 {
  font-size: 25.95px;
  color:#b9506d;
  font-weight:700;
  padding-top:30px;
}

.he_reason .reason_txt8 {
  font-size: 25.95px;
  font-weight:700;
  color: #cd2f59;
  line-height: 1.3;
  padding-top:30px;
  position: relative;
}

.he_reason .reason_txt8 sup {
  font-size: 10px;
  font-weight:700;
  vertical-align: top;
}

.he_reason .reason_txt8 span {
  font-size: 17.3px;
  color: #434343;
}

.he_reason .reason_txt9 {
  font-size:32.5px;
  font-weight:900;
  color:#cd2f59;
  padding-bottom:10px;
}

.he_reason .reason_box .reason_txt10 {
  font-size: 19.5px;
  font-weight:600;
  padding-top: 30px;
}

.he_reason .reason_box .reason_txt10 span.strong-bg {
  background: #b9506d;
  color:#fff;
  line-height: 1.4;
  padding:0 0 0 2px;
}

.reason_box ul.reason_check {
  width: 430px;
  margin:0 auto;
  padding-top: 15px;
  box-sizing: border-box;
}

.reason_box ul.reason_check li {
  background: url("/NonSitecore/_/media/landingpage/brpg/kanwa/kanwa2/img/check.png") left top 8px no-repeat;
  background-size: 15px;
  font-size:20px;
  color:#434343;
  font-weight: 700;
  text-align: left;
  padding:5px 0 0 30px;
  margin-bottom:10px;
}

.reason_box ul.reason_check li span {
  color:#cd2f59;
}

.he_reason .banner {
  padding-bottom:60px;
}

.he_reason .application {
  position: relative;
  width:560px;
  margin:0 auto 40px;
}

.he_reason .application p {
  position: absolute;
  font-size:12px;
  padding-left:1.2rem;
  text-indent: -1.2rem;
  left:0;
  bottom:-5px;
  text-align: left;
  line-height: 1.4;
  letter-spacing: -.7px;
}

.he_reason .customize {
  margin-bottom:20px;
}

@media screen and (max-width: 768px) {
  .he_reason h2 {
    max-width: 768px;
    background: url("/NonSitecore/_/media/landingpage/brpg/kanwa/kanwa2/img/reason_ttl_bg.png") left top repeat;
    background-size: 12.37vw;
    padding:3.906vw 0;
  }

  .he_reason h2 img {
    width:77%;
    height: auto;
  }

  .he_reason .reason_arrow h3 {
    max-width: 704px;
    width:92%;
    padding:6.51vw 0 1.309vw;
  }

  .he_reason .img_nayami {
    width:73%;
    height: auto;
    margin:0 13.5%;
  }

  .he_reason .reason_arrow {
    background: url("/NonSitecore/_/media/landingpage/brpg/kanwa/kanwa2/img/reason_bg_sp.png") center bottom no-repeat #fff;
    background-size: 100%;
    padding-bottom:13.021vw;
    margin-bottom:6.21vw;
  }

  .he_reason .reason_arrow.pb {
    padding-bottom:10vw;
  }

  .he_reason .reason_txt {
    font-size:4vw;
    padding:5.208vw 0 0 0;
  }

  .he_reason .reason_txt span {
    font-size:5.6vw;
  }

  .he_reason .img_logo {
    width:44.921875%;
    height: auto;
  }

  .he_reason .reason_box {
    margin:5.208vw auto 0;
    padding:0 3.906vw 5.208vw;
    width:92%;
  }

  .he_reason .reason_box.mt {
    padding:0 0 5.208vw;
  }

  .he_reason .reason_box.mt2 {
    margin:2.604vw auto 0;
    padding:0 0 5.208vw;
  }

  .he_reason .reason_box.mt3 {
    margin:5.208vw auto 0;
    padding:0 3.906vw 0;
  }

  .he_reason .reason_box .reason_txt {
    padding:3.906vw 0 2.604vw;
  }

  .he_reason .reason_box .reason_txt.redline {
    padding:5.208vw 0 2.604vw;
    line-height: 1.4;
  }

  .he_reason .reason_box .reason_txt2 {
    font-size: 5.333vw;
    padding:2.604vw 0;
  }

  .he_reason .reason_box .reason_txt2 span.small-text {
    font-size: 4vw;
  }

  .he_reason .reason_box .reason_txt2 img {
    margin:0 0 -1.5vw 0;
    padding:0 3px;
    width:16vw;
    height: auto;
  }

  .he_reason .reason_box .reason_txt3 {
    font-size: 4.267vw;
    padding-top: 30px;
    display: block;
    line-height: 1.5;
  }

  .he_reason .reason_box .reason_txt3 img {
    width:15.365vw;
    height: auto;
    margin:0 2px -1.5vw 2px;
  }

  .he_reason .reason_box .reason_txt4 {
    font-size: 2.933vw;
    padding-top:1.309vw;
    letter-spacing: -.7px;
  }

  .he_reason .reason_txt5 {
    font-size: 6.4vw;
    line-height: 1.3;
    padding-top:6.51vw;
    width:88.542vw;
  }

  .he_reason .reason_txt5:before {
    width:3.906vw;
    height: 6.51vw;
  }

  .he_reason .reason_txt5:after {
    width:3.906vw;
    height: 6.51vw;
  }

  .he_reason .reason_txt6 {
    font-size: 2.933vw;
    margin:2.604vw auto 30px;
    width:80%;
  }

  .he_reason .reason_txt7 {
    font-size: 6.4vw;
    padding-top:6.51vw;
  }

  .he_reason .reason_txt8 {
    font-size: 5.333vw;
    padding-top:5vw;
    letter-spacing: -.7px;
  }

  .he_reason .reason_txt8 sup {
    font-size: 2.933vw;
  }

  .he_reason .reason_txt8 span {
    font-size: 4vw;
  }

  .he_reason .reason_txt9 {
    font-size:8vw;
    padding-bottom:3.906vw;
  }

  .he_reason .reason_box .reason_txt10 {
    font-size: 4.267vw;
    padding-top: 3.906vw;
    line-height: 1.5;
  }

  .reason_box ul.reason_check {
    width: 100%;
    padding-top: 3.906vw;
  }

  .reason_box ul.reason_check li {
     background: url("/NonSitecore/_/media/landingpage/brpg/kanwa/kanwa2/img/check.png") left top 1.8vw no-repeat;
    background-size: 2.604vw;
    font-weight:700;
    font-size:4.259vw;
    line-height: 1.5;
    padding:0 0 0 5.208vw;
    margin-bottom:2.604vw;
  }

  .he_reason .reason_arrow2 {
    width: 23.4375%;
    margin: 0 auto;
  }  
    
  .he_reason .banner {
    width:92%;
    margin:0 auto;
    padding-bottom:7.813vw;
  }

  .he_reason .application {
    width:93%;
    margin:0 auto 7.813vw;
  }

  .he_reason .application p {
    font-size:2.9vw;
    padding-left:1em;
    text-indent: -1em;
    bottom:-1.309vw;
    letter-spacing: -1px;
  }

  .he_reason .customize {
    width:85.9375%;
    margin:0 auto 7.813vw;
  }
}


/* brpg-checklist
----------------------*/
@keyframes flashing {
  0% {
	opacity: 0;
  }
  100% {
	opacity: 1;
  }
}

.brpg-checklist {
  max-width: 940px;
  margin: 0 auto;
  text-align: left;
}

.brpg-checklist .pz-checklist-accordion {
	position: relative;
	border-top: 1px solid #E2E2E2;
}

.brpg-checklist .pz-checklist-accordion__trg {
	position: absolute;
	top: 100%;
	left: 50%;
	transform: translateX(-50%);
	width: 404px;
	padding: 2px 20px 2px 10px;
	font-size: 2.2rem;
	color: #000;
	background: #FFB852;
	border-radius: 0 0 6px 6px;
}

.brpg-checklist .pz-checklist-accordion__trg::after {
	content: "";
	position: absolute;
	top: 30%;
	right: 32px;
	transform: translateY(-50%) rotate(-135deg);
	margin-top: 3px;
	width: 14px;
	height: 14px;
	border-left: 2px solid #000;
	border-top: 2px solid #000;
	transition: 0.4s;
}

.brpg-checklist .pz-checklist-accordion__trg.is-opend {
	font-size: 0;
}

.brpg-checklist .pz-checklist-accordion__trg.is-opend::before {
	font-size: 2.2rem;
	content: "閉じる";
}

.brpg-checklist .pz-checklist-accordion__trg.is-opend::after {
	top: 50%;
	transform: translateY(-50%) rotate(45deg);
}

.brpg-checklist .pz-checklist-accordion__content {
	padding-top: 40px;
	padding-bottom: 12px;
	border-bottom: 1px solid #E2E2E2;
    display: none;
}

.brpg-checklist .pz-checklist {
	margin-top: 0;
	margin-bottom: 0;
	border-bottom: 1px solid #E2E2E2;
}

.brpg-checklist .pz-checklist--no-border {
	border-bottom: none;
}

.brpg-checklist .pz-checklist__row {
	display: block;
	width: 100%;
	padding: 34px 0 28px 0;
	border-top: 1px solid #dcdddd;
}

.brpg-checklist .pz-checklist__row:first-child {
	border-top: none;
}

.brpg-checklist .pz-checklist__row--mb {
	margin-bottom: 30px;
}

.brpg-checklist .pz-checklist__wrap {
	display: flex;
	position: relative;
}

.brpg-checklist .pz-checklist__side:nth-child(1) {
	width: 10%;
	flex-shrink: 0;
}

.brpg-checklist .pz-checklist__side:nth-child(3) {
	width: 15%;
	flex-shrink: 0;
}

.brpg-checklist .pz-checklist__badge {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	width: 70px;
	height: 70px;
	margin-top: 3px;
	margin-bottom: 11px;
	color: #000;
	background: #FFB852;
	border-radius: 26px;
	font-size: 18px;
	line-height: 1;
	text-align: center;
}

.brpg-checklist .pz-checklist__badge span {
	display: block;
	margin-top: 4px;
	font-size: 26px;
	font-weight: bold;
}

.brpg-checklist .pz-checklist__checkbox {
	position: relative;
	width: 85%;
	margin-left: auto;
	margin-right: auto;
}

.brpg-checklist .pz-checklist__checkbox__balloon {
	position: relative;
	display: block;
	width: 72px;
	margin: 0 auto 18px;
	font-size: 1.59rem;
	text-align: center;
	color: #FFFFFF;
	background: #9D0238;
	font-weight: bold;
    padding:.3rem 0;
}

.brpg-checklist .pz-checklist__checkbox__balloon::before {
	content: "";
	position: absolute;
	top: 99%;
	left: 50%;
	transform: translateX(-50%);
	border-right: 10px solid transparent;
	border-top: 10px solid #9D0238;
	border-left: 10px solid transparent;
}

.brpg-checklist .pz-checklist__checkbox__main {
	position: relative;
	width: 55px;
	height: 56px;
	margin: 0 auto;
	border: 2px solid #9D0238;
}

.brpg-checklist .pz-checklist__checkbox__main input {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 44px;
	height: 44px;
	background: url(/NonSitecore/_/media/Images/ZurichLife/product/brpg/kanwa/tokucho_pc/i-check.svg) no-repeat center center/contain;
    border: none;
    outline: none;
}

.brpg-checklist .pz-checklist__checkbox__main input:checked {
	background: url(/NonSitecore/_/media/Images/ZurichLife/product/brpg/kanwa/tokucho_pc/i-check_checked.svg) no-repeat center center/contain;
}

.brpg-checklist .pz-checklist__checkbox__text {
	margin-top: 4px;
	font-size: 14px;
	text-align: center;
	font-feature-settings: "palt";
}

.brpg-checklist .pz-checklist__main {
	width: 75%;
	padding: 0 10px 0 20px;
}

.brpg-checklist .pz-checklist__text {
	font-size: 18px;
	line-height: 1.3;
	letter-spacing: 0.06em;
	text-align: justify;
	position: relative;
	font-feature-settings: "palt";
}

.brpg-checklist .pz-checklist__text span {
	color: #e60012;
}

.brpg-checklist .pz-checklist__text strong {
	font-weight: bold;
}

.brpg-checklist .pz-checklist__text a,
.brpg-checklist .pz-checklist__text button {
	color: #004ea2;
	display: inline-block;
	pointer-events: auto;
	position: relative;
	top: -2px;
	font-weight: bold;
	text-decoration: underline;
}

.brpg-checklist .pz-checklist__text small {
	font-size: 1rem;
	vertical-align: top;
}

.brpg-checklist .pz-checklist__note {
	margin-top: 7px;
	margin-bottom: 0;
	padding-left: 1em;
	text-indent: -1em;
	font-feature-settings: "palt";
}

.brpg-checklist .pz-checklist__note__text {
	font-size: 14px;
	line-height: 1.5;
	margin-top: 6px;
}

.brpg-checklist .pz-checklist__note__text.--no-indent {
	padding-left: 0;
	text-indent: 0;
	margin-left: -1.3rem;
}

.brpg-checklist .pz-checklist__note__text .text__blue {
	color: #004ea2;
	text-decoration: underline;
}

.brpg-checklist .pz-checklist__note__text > span {
	font-size: 14px;
	text-indent: 0;
	display: inline-block;
	margin-top: 8px;
}

.brpg-checklist .pz-checklist__box {
	text-align: left !important;
	margin-top: 10px;
	font-size: 16px;
	padding: 16px 24px;
	line-height: 1.35;
	border: 1px solid #E2E2E2;
}

.brpg-checklist .pz-checklist__balloon {
	margin-bottom: 8px;
}

.pz-wrapper-315 {
	max-width: 940px;
	margin-left: auto;
	margin-right: auto;
}

.brpg-checklist .pz-checklist-add {
	position: relative;
	margin-bottom: 0;
	padding: 15px 0 25px;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}

.brpg-checklist .pz-checklist-add__text {
	width: 100%;
	position: relative;
	margin-bottom: 20px;
	padding-bottom: 46px;
	text-align: center;
	font-size: 20px;
	line-height: 1.4;
	letter-spacing: 0.05em;
	font-feature-settings: "palt";
}

.brpg-checklist .pz-checklist-add__text strong {
	font-weight: bold;
	color: #9D0238;
}

.brpg-checklist .pz-checklist-add__text::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	border-right: 34px solid transparent;
	border-top: 32px solid #FFB852;
	border-left: 34px solid transparent;
}

.brpg-checklist .pz-checklist-add > .pz-checklist-box {
	width: calc(50% - 5px);
	padding: 15px;
}

.brpg-checklist .pz-checklist-add > .pz-checklist-box:not(:last-child) {
	margin-right: 10px;
	margin-bottom: 0;
}

.brpg-checklist .pz-checklist-box {
	position: relative;
	margin-top: 0;
	border: 2px solid #FFB852;
	font-feature-settings: "palt";
}

.brpg-checklist .pz-checklist-box:not(:last-child) {
	margin-bottom: 8px;
}

.brpg-checklist .pz-checklist-box--balloon {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
}

.brpg-checklist .pz-checklist-box--balloon::before {
	content: "";
	position: absolute;
	bottom: -29px;
	left: 263px;
	margin-left: -15px;
	border-right: 22px solid #FFF;
	border-top: 22px solid transparent;
	border-bottom: 22px solid transparent;
	transform: rotate(45deg);
	z-index: 2;
}

.brpg-checklist .pz-checklist-box--balloon::after {
	content: "";
	position: absolute;
	bottom: -41px;
	left: 260px;
	margin-left: -18px;
	border-right: 30px solid #b5b5b6;
	border-top: 30px solid transparent;
	border-bottom: 30px solid transparent;
	transform: rotate(45deg);
	z-index: 1;
}

.brpg-checklist .pz-checklist-box__head {
	display: flex;
	align-items: center;
	margin-bottom: 16px;
}

.brpg-checklist .pz-checklist-box__head__heading {
	position: relative;
	width: 100%;
	font-size: 16px;
	line-height: 1.3;
	letter-spacing: 0.05em;
    text-align: center;
}

.brpg-checklist .pz-checklist-box__head__heading__small {
	font-size: 16px;
    text-align: center;
}

.brpg-checklist .pz-checklist-box__head__heading__small span {
	font-weight: bold;
}

.brpg-checklist .pz-checklist-box__head__heading strong {
	font-size: 16px;
	color: #9D0238;
}

.brpg-checklist .pz-checklist-box__head__main {
	display: flex;
	align-items: center;
	width: 58%;
	flex-shrink: 0;
	padding-top: 7px;
	font-size: 12px;
}

.brpg-checklist .pz-checklist-box__head__main > span {
	display: block;
	width: 50px;
	height: 50px;
	padding-top: 10px;
	margin-right: 5px;
	font-size: 14px;
	text-align: center;
	background: #FFB852;
	border-radius: 20px;
	color: #000;
	font-weight: normal;
	position: relative;
	box-sizing: border-box;
}

.brpg-checklist .pz-checklist-box__head__main > span em {
	position: absolute;
	font-size: 16px;
	font-weight: bold;
	top: 25px;
	left: calc(50% - 5px);
}

.brpg-checklist .pz-checklist-box__list {
	margin-top: 7px;
	padding-top: 7px;
	padding-left: 0;
	margin-bottom: 0;
	border-top: solid 1px #E2E2E2;
    width:100%;
}

.brpg-checklist .pz-checklist-box__list__item {
	font-size: 14px;
	line-height: 1.5;
	letter-spacing: 0.05em;
    padding-left:1.2rem;
    text-indent: -1.2rem;
}

.brpg-checklist .pz-checklist-box__list__item span {
	font-weight: bold;
}

.brpg-checklist .pz-checklist-box__list__item::before {
	content: "・";
	font-weight: bold;
	margin-right: 4px;
	line-height: 16px;
	color: #FFB852;
}

/* [START] 2023/01追加 */
/* 告知02 */
.pz-checklist__row__02 {
	overflow: hidden;
	position: relative;
	pointer-events: none;
}

/* 告知03 */
.pz-checklist__row__03 {
	overflow: hidden;
	position: relative;
	pointer-events: none;
	padding: 0;
	border: 0;
}

.brpg-checklist .pz-checklist__row__03 {
	display: none;
}

/* 告知03_02 */
.pz-checklist__row__03_02 {
	border-top: 5px solid #dcdddd;
	padding: 34px 0 28px 0;
}

.pz-checklist__row__02::before,
.pz-checklist__row__03::before {
	content: "";
	width: 100%;
	height: 100%;
	background: rgba(255, 255, 255, 0.7);
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
}

.-hi-auto {
	transition: 0.5s ease-in-out;
	pointer-events: auto;
	padding: 34px 0 28px 0;
	border-top: 5px solid #dcdddd;
}

.-hi-auto::before {
	content: "";
	background: rgba(255, 255, 255, 0);
	z-index: -1;
	transition: 0.5s ease-in-out;
}

.pz-checklist__checkbox__balloon.-flashing {
	animation-name: flashing;
	animation-duration: 1.5s;
	animation-iteration-count: infinite;
	animation-timing-function: linear;
	animation-delay: 0s;
}

@media screen and (max-width: 768px) {
    .brpg-checklist {
        padding-bottom: 13.021vw;
        margin: 0;
    }

    .brpg-checklist .pz-checklist-accordion__trg {
        width: 100%;
        font-size: 5.208vw;
    }

    .brpg-checklist .pz-checklist-accordion__trg::after {
        right: 20px;
        transform: translateY(-50%) rotate(-135deg);
        margin-top: 3px;
        width: 1.953vw;
        height: 1.953vw;
    }

    .brpg-checklist .pz-checklist-accordion__trg.is-opend::before {
        font-size: 5.208vw;
    }

    .brpg-checklist .pz-checklist-accordion__content {
        margin-top: -10px;
        padding-top:5.208vw;
        padding-bottom: 2.604vw;
    }

    .brpg-checklist .pz-checklist__row {
        padding: 4vw 0 3.906vw 0;
        margin-bottom: 10px;
    }

    .brpg-checklist .pz-checklist__row--mb {
        margin-bottom: 5.208vw;
    }

    .brpg-checklist .pz-checklist__wrap {
        flex-wrap: wrap;
    }

    .brpg-checklist .pz-checklist__side:nth-child(1) {
        width: 46px;
        min-height: 147px;
    }

    .brpg-checklist .pz-checklist__side:nth-child(3) {
        width: 44px;
        position: absolute;
        left: 0;
        top: 80px;
    }

    .brpg-checklist .pz-checklist__badge {
        width: 44px;
        height: 62px;
        font-size: 14px;
    }

    .brpg-checklist .pz-checklist__badge span {
        font-size: 20px;
    }

    .brpg-checklist .pz-checklist__checkbox {
        width: 90%;
    }

    .brpg-checklist .pz-checklist__checkbox__balloon {
        width: 42px;
        margin: 0 auto 8px;
        font-size: 10px;
    }

    .brpg-checklist .pz-checklist__checkbox__balloon::before {
        border-right: 6px solid transparent;
        border-top: 6px solid #9D0238;
        border-left: 6px solid transparent;
    }

    .brpg-checklist .pz-checklist__checkbox__main {
        width: 42px;
        height: 42px;
    }

    .brpg-checklist .pz-checklist__checkbox__main input {
        width: 23px;
        height: 21px;
        background: url(/NonSitecore/_/media/Images/ZurichLife/product/brpg/kanwa/tokucho_sp/i-check.svg) no-repeat center center/contain;
    }

    .brpg-checklist .pz-checklist__checkbox__main input:checked {
        background: url(/NonSitecore/_/media/Images/ZurichLife/product/brpg/kanwa/tokucho_sp/i-check_checked.svg) no-repeat center center/contain;
    }

    .brpg-checklist .pz-checklist__checkbox__text {
        font-size: 10px;
    }

    .brpg-checklist .pz-checklist__main {
        width: calc(100% - 46px);
        padding: 0 0 0 10px;
    }

    .brpg-checklist .pz-checklist__text {
        font-size: 16px;
    }

    .brpg-checklist .pz-checklist__note__text {
        font-size: 12px;
        text-align: left;
        line-height: 1.6;
    }

    .brpg-checklist .pz-checklist__box {
        font-size: 14px;
        padding: 8px 10px;
    }

    .brpg-checklist .pz-checklist-add {
        padding: 2.604vw 0 3.906vw;
        display: block;
    }

    .brpg-checklist .pz-checklist-add__text {
        font-size: 18px;
    }

    .brpg-checklist .pz-checklist-add__text::after {
        border-right: 24px solid transparent;
        border-top: 22px solid #FFB852;
        border-left: 24px solid transparent;
    }

    .brpg-checklist .pz-checklist-add > .pz-checklist-box {
        width: 100%;
        padding: 10px;
    }

    .brpg-checklist .pz-checklist-add > .pz-checklist-box:not(:last-child) {
        margin-bottom: 20px;
    }

    .brpg-checklist .pz-checklist-box__head__heading {
        font-size: 14px;
        text-align: left;
    }

    .brpg-checklist .pz-checklist-box__head__heading strong {
        font-size: 22px;
    }

    .brpg-checklist .pz-checklist-box__head__main {
        width: 52%;
        font-size: 16px;
    }

    .brpg-checklist .pz-checklist-box__head__main > span {
        width: 44px;
        height: 62px;
        padding-top: 5px;
        margin-right: 7px;
        border-radius: 30px;
    }

    .brpg-checklist .pz-checklist-box__head__main > span em {
        font-size: 20px;
        left: calc(50% - 8px);
    }

    .brpg-checklist .pz-checklist-box__list__item {
        font-size: 12px;
        line-height: 1.4;
        text-align: left;
    }

    /* [START] 2023/01追加 */
    /* 告知02 */

    .pz-checklist__row__02 {
        margin-bottom:20px;
    }

    /* 告知03 */

    .pz-checklist__row__03 {
        margin-bottom:10px;
    }

    /* 告知03_02 */
    .pz-checklist__row__03_02 {
        border-top: 3px solid #dcdddd;
        padding: 12px 0 10px 0;
    }

    .-hi-auto {
        padding: 12px 0 10px 0;
        border-top: 3px solid #dcdddd;
    }
}

/* modal-content
----------------------*/
.pz-js-modal-content {
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition: 0.4s;
	background: rgba(255, 255, 255, 0.8);
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	z-index: 100000;
	overflow: auto;
}

.pz-js-modal-content.is-visible {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
}

.pz-js-modal-inner {
	width: 990px;
	margin: 20px auto;
	padding-bottom: 50px;
	position: absolute;
	top: 20px;
	left: 50%;
	transform: translateX(-50%);
	font-size: 1.4rem;
	font-family: "ヒラギノ角ゴシック", Hiragino Kaku Gothic ProN, "ヒラギノ角ゴ ProN W3", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

.pz-js-modal-inner button {
	font-family: "ヒラギノ角ゴシック", Hiragino Kaku Gothic ProN, "ヒラギノ角ゴ ProN W3", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

.pz-js-modal-inner ul,
.pz-js-modal-inner li {
	list-style: none;
}

.pz-js-modal-inner strong {
	font-weight: bold;
}

.pz-js-modal-inner .color-blue {
	color: #004ea2;
}

.pz-js-modal-inner .color-orange {
	color: #ea5548;
}

.pz-js-modal-inner .color-orange2 {
	color: #f0831e;
}

.pz-js-modal-inner .color-orange3 {
	color: #e17767;
}

.pz-js-modal-inner h2,
.pz-js-modal-inner h3,
.pz-js-modal-inner h4 {
	font-size: inherit;
	line-height: inherit;
	font-weight: inherit;
	color: inherit;
	position: inherit;
	margin: inherit;
}

.pz-js-modal-inner h2 {
	padding: inherit;
}

.pz-js-modal-inner h2::before {
	content: none;
}

.pz-js-modal-inner h2::after {
	content: none;
}

.pz-modal-fig-table-2 {
	margin-bottom: 0;
	border-top: 1px solid #231815;
}

.pz-modal-fig-table-2 tr {
	text-align: left;
}

.pz-modal-fig-table-2 th {
	width: 180px;
	padding: 16px 8px 16px 16px;
	font-size: 2rem;
	color: #004ea2;
	font-weight: bold;
	border-right: 1px solid #231815;
    border-bottom: 1px solid #231815;
	text-align: left;
	vertical-align: top;
	font-feature-settings: "palt";
}

.pz-modal-fig-table-2 td {
	width: calc(100% - 180px);
	padding: 16px 16px 8px 16px;
	font-size: 2rem;
	line-height: 1.4782;
	font-feature-settings: "palt";
	letter-spacing: 0.08em;
    border-bottom: 1px solid #231815;
}

.pz-modal-head-3 {
	position: relative;
	padding: 20px 4px;
	background: #eef6fc;
}

.pz-modal-head-3__title {
	font-size: 2rem;
	font-weight: bold;
	color: #004ea2;
}

.pz-modal-content {
	padding: 15px 100px 40px;
	background: #ffffff;
}

.pz-modal-content--lightblue {
	padding: 0;
	border-right: 40px solid #eef6fc;
	border-bottom: 44px solid #eef6fc;
	border-left: 40px solid #eef6fc;
}

/* [END] 2023/01追加 */

.pz-btn-close {
	display: block;
	position: absolute;
	top: 0;
	right: 10px;
	width: 30px;
	height: 100%;
}

.pz-btn-close__hidden-text {
	display: block;
	white-space: nowrap;
	text-indent: 100%;
	overflow: hidden;
}

.pz-btn-close::before,
.pz-btn-close::after {
	content: "";
	display: block;
	width: 20px;
	height: 2px;
	border-radius: 2px;
	position: absolute;
	top: 50%;
	left: 50%;
	transform-origin: left center;
}

.pz-btn-close::before {
	transform: rotate(45deg) translate(-50%);
}

.pz-btn-close::after {
	transform: rotate(-45deg) translate(-50%);
}

.pz-btn-close--gray::before,
.pz-btn-close--gray::after {
	background: #898989;
}

.pz-btn-close--white::before,
.pz-btn-close--white::after {
	background: #FFFFFF;
}

.pz-btn-close--black::before,
.pz-btn-close--black::after {
	background: #040000;
}

.pz-btn-close--sm {
	right: 8px;
}

.pz-btn-close--sm::before,
.pz-btn-close--sm::after {
	width: 32px;
}

@media screen and (max-width: 768px) {
    .pz-js-modal-content {
        width: 100%;
        height: 100%;
    }

    .pz-js-modal-inner {
        width: 88%;
    }

    .pz-modal-main-pink-border {
        border: 4px solid #d596a7;
        background: #ffffff;
    }

    .pz-js-accordion-content {
        display: none;
    }

    .pz-js-tab-content {
        display: none;
    }

    .pz-modal-head-3 {
        padding: 12px 2px;
    }

    .pz-modal-head-3__title {
        font-size: 1.55rem;
        text-align: center;
    }

    .pz-modal-content {
        padding: 15px 17px;
    }

    .pz-modal-content--lightblue {
        border-right: 10px solid #eef6fc;
        border-bottom: 10px solid #eef6fc;
        border-left: 10px solid #eef6fc;
    }
    
    .pz-modal-fig-table-2 {
        border-bottom: 0;
    }

    .pz-modal-fig-table-2 tr {
        border-bottom: 1px solid #231815;
    }

    .pz-modal-fig-table-2 th {
        width: 30%;
        padding: 14px 6px 14px 14px;
        font-size: 14px;
    }

    .pz-modal-fig-table-2 td {
        width: 70%;
        text-align: left;
        padding: 12px 12px 6px 12px;
        font-size: 14px;
    }    

    /* [END] 2023/01追加 */
    .pz-btn-close {
        right: 0;
    }

    .pz-btn-close--sm {
        right: 4px;
    }

    .pz-btn-close--sm::before,
    .pz-btn-close--sm::after {
        width: 16px;
    }     
}


/* brpg-plan
----------------------*/
.pz-wrapper-325 {
	max-width: 700px;
	margin-left: auto;
	margin-right: auto;
}

.customize_category {
  font-size: 20px;
  font-weight:600;
  padding:20px 0;
}

.brpg-plan .pz-plan-radio-wrap {
	display: flex;
	margin: 0 auto;
	justify-content: space-between;
	flex-wrap: wrap;
}

.brpg-plan .pz-plan-radio-wrap--mb {
	width: 100%;
	margin-bottom: 3px;
}

.brpg-plan .pz-plan-radio-wrap--mb > .pz-plan-radio {
	width: calc(25% - 12px);
	margin-left: 12px;
}

.brpg-plan .pz-plan-radio-wrap--mb > .pz-plan-radio:nth-of-type(1) {
	margin-left: 0;
}

.brpg-plan .pz-plan-radio {
	display: block;
	position: relative;
	width: 48.7%;
	height: 38px;
	margin-bottom: 7px;
}

.brpg-plan .pz-plan-radio--lg {
	width: 49.3%;
	height: 50px;
	margin-bottom: 4px;
}

.brpg-plan .pz-plan-radio__input {
	position: absolute;
}

.brpg-plan .pz-plan-radio__input:checked + .pz-plan-radio__text {
	background: #b9506d;
	color: #FFFFFF;
}

.brpg-plan .pz-plan-radio__text {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 50px;
	border: 1px solid #9D0238;
	border-radius: 30px;
	font-size: 20px;
	font-weight: bold;
	color: #9D0238;
}

.brpg-plan .pz-plan-intro {
	position: relative;
	font-size: 22px;
	line-height: 1.45;
	text-align: center;
	margin: 32px auto 24px;
}

.brpg-plan .pz-plan-intro--arrow {
	padding-top: 68px;
}

.brpg-plan .pz-plan-intro--arrow::before {
	content: "";
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	display: block;
	margin: 0 auto 6px;
	width: 0;
	height: 0;
	border-top: 34px solid #FFB852;
	border-left: 32px solid transparent;
	border-right: 34px solid transparent;
}

.brpg-plan .pz-plan-hope {
	margin-bottom: 8px;
}

.brpg-plan .pz-plan-hope__row {
	display: flex;
	justify-content: space-between;
}

.brpg-plan .pz-plan-hope__col {
	display: flex;
	flex-direction: column;
	width: 152px;
}

.brpg-plan .pz-plan-hope__col--lg {
	width: calc(100% - 160px);
}

.brpg-plan .pz-plan-hope__type {
	background: #FFB852;
	width: 100%;
	height: calc(100% - 7px);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	color: #000;
	line-height: 100%;
	font-size: 14px;
	font-weight: bold;
}

.brpg-plan .pz-plan-hope__type em {
	font-weight: normal;
}

.brpg-plan .pz-plan-hope__type span {
	font-size: 18px;
}

.brpg-plan .pz-plan-hope-button {
	display: block;
	width: 100%;
	margin: 0 0 7px;
	padding: 20px 47px;
	border: 1px solid #E2E2E2;
	color: #000;
	text-align: center;
	font-size: 18px;
	border-radius: 50px;
	font-feature-settings: "palt";
}

.brpg-plan .pz-plan-hope-button.is-active {
	border-color: #b9506d;
	background: #b9506d;
	color: #FFFFFF;
	font-weight: bold;
}

.brpg-plan .pz-plan-price {
	background: #FEF4E7;
	display: flex;
	align-items: center;
	justify-content: space-between;
	border-right: solid 1px #E2E2E2;
	border-left: solid 1px #E2E2E2;
	padding: 10px 40px 15px;
	width: 100%;
	margin: 0 auto;
	position: relative;
}

.brpg-plan .pz-plan-price__text {
	font-size: 18px;
	line-height: 1.34;
}

.brpg-plan .pz-plan-price__price {
	font-size: 19px;
}

.brpg-plan .pz-plan-price__result {
	font-size: 36px;
	font-weight: bold;
	line-height: 1;
}

.brpg-plan .pz-plan-detail {
	display: none;
	margin-bottom: 10px;
}

.brpg-plan .pz-plan-detail__head {
	background: #9D0238;
	color: #FFFFFF;
	text-align: center;
	font-size: 2.4rem;
	font-weight: bold;
	line-height: 1;
	padding: 18px 30px;
	border-radius: 10px;
	position: relative;
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
}

.brpg-plan .pz-plan-detail__head .dli-plus {
	position: absolute;
	right: 20px;
	top: calc(50% - 0.6em);
	transition: all 0.3s;
}

.brpg-plan .pz-plan-detail__head .dli-plus > span {
	position: absolute;
	display: inline-block;
	vertical-align: middle;
	color: #fff;
	line-height: 1;
	width: 1em;
	height: 0.1em;
	background: currentColor;
	border-radius: 0.1em;
	position: relative;
}

.brpg-plan .pz-plan-detail__head .dli-plus > span::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: inherit;
	border-radius: inherit;
	transform: rotate(90deg);
}

.brpg-plan .pz-plan-detail__head.is-opend {
	border-top-right-radius: 10px;
	border-top-left-radius: 10px;
	border-bottom-left-radius: 0;
	border-bottom-right-radius: 0;
}

.brpg-plan .pz-plan-detail__head.is-opend .dli-plus > span::before {
	display: none;
}

.brpg-plan .pz-plan-detail__head h3::before {
	content: none;
}

.brpg-plan .pz-plan-detail__head__text {
	font-size: 22px;
}

.brpg-plan .pz-plan-detail__head__note {
	display: inline-block;
	background: #f8edf0;
	padding: 0.4em 2.7em 0.4em;
	margin-left: 20px;
	border-radius: 2em;
	font-weight: normal;
	font-size: 14px;
	color: #9D0238;
}

.brpg-plan .pz-plan-detail__content {
	padding: 23px 40px 24px;
	background: #fff;
	border-left: solid 1px #E2E2E2;
	border-right: solid 1px #E2E2E2;
	border-bottom: solid 1px #E2E2E2;
	border-bottom-left-radius: 10px;
	border-bottom-right-radius: 10px;
}

.brpg-plan .pz-plan-detail__content__head {
	display: flex;
	justify-content: space-between;
	flex-direction: row-reverse;
	margin-bottom: -28px;
	position: relative;
	z-index: 10;
}

.brpg-plan_text {
	display: block;
	padding-bottom: 56px;
    font-size:12px;
    text-align: left;
}

.brpg-plan .pz-plan-table {
	font-size: 16px;
	border: 2px solid #fff;
    width:100%;
    border-collapse:separate;
    border-spacing:0;
}

.brpg-plan .pz-plan-table th,
.brpg-plan .pz-plan-table td {
	position: relative;
	border: 1px solid #fff;
	font-weight: 500;
}

.brpg-plan .pz-plan-table th {
	background: hsla(339deg, 97%, 31%, 0.1);
	width: 58%;
	padding: 17px 20px 15px;
	text-align: left;
	line-height: 1.36;
}

.brpg-plan .pz-plan-table th br {
	display: none;
}

.brpg-plan .pz-plan-table td {
	width: 42%;
	padding: 0.4em 0;
	background: hsla(35deg, 100%, 66%, 0.2);
	text-align: center;
	line-height: 1.2;
}

.brpg-plan .pz-plan-table__flex {
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: left;
}

.brpg-plan .pz-plan-table__flex > div:nth-child(1) {
	margin-right: 10px;
}

.brpg-plan .pz-plan-table__flex > div:nth-child(2) {
	margin-left: 10px;
	text-align: right;
}

.brpg-plan .pz-plan-table__itemFlex {
	display: flex;
	width: 100%;
	justify-content: center;
	align-items: center;
}

.brpg-plan .pz-plan-table__itemFlex-text {
	margin-right: 6px;
}

.brpg-plan .pz-plan-table__heading {
	text-align: left;
	color: #9D0238;
	font-size: 18px;
	margin-bottom: 23px;
}

.brpg-plan .pz-plan-table__red {
	color: #9D0238;
	display: inline-block;
    text-align: right;
    padding-left: 30px;
}

.brpg-plan .pz-plan-table__blue {
	color: #004ea2;
	display: inline-block;
    text-align: left;
}
.lady-blue{
    width: 150px;
}

.brpg-plan .pz-plan-table__lg-text {
	font-size: 22px;
}

.brpg-plan .pz-plan-table__sm-text {
	font-size: 18px;
	padding-top: 4px;
}

.brpg-plan .pz-plan-table__bold {
	font-weight: bold;
}

.brpg-plan .pz-plan-table__help {
	display: block;
	width: 41px;
	position: absolute;
	top: 50%;
	right: 10px;
	transform: translateY(-50%);
}

.brpg-plan .pz-plan-table__help img {
	display: block;
}

.brpg-plan .pz-plan-table__plus {
	position: absolute;
	z-index: 10;
	display: block;
	bottom: 0;
	left: 50%;
	transform: translate(-50%, 50%);
	width: 12px;
}

@media screen and (max-width: 768px) {
    .pz-wrapper-325 {
        max-width: 768px;
        width: 90.68%;
    }
    
    .customize_category {
        font-size: 16px;
        padding:3.906vw 0;
    }

    .brpg-plan .pz-plan-radio-wrap--mb {
        margin-bottom: 8px;
    }

    .brpg-plan .pz-plan-radio-wrap--mb > .pz-plan-radio {
        width: 48%;
        margin-bottom: 0;
        margin-left: 0;
        height: 46px;
    }

    .brpg-plan .pz-plan-radio--lg {
        width: 48%;
        height: 46px;
        margin-bottom:0;
    }

    .brpg-plan .pz-plan-radio__text {
        height: 40px;
        font-size: 16px;
    }

    .brpg-plan .pz-plan-intro {
        font-size: 16px;
        margin: 20px auto 15px;
    }

    .brpg-plan .pz-plan-intro--arrow {
        padding-top: 48px;
    }

    .brpg-plan .pz-plan-intro--arrow::before {
        border-top: 24px solid #FFB852;
        border-left: 22px solid transparent;
        border-right: 24px solid transparent;
    }

    .brpg-plan .pz-plan-hope__col {
        width: 75px;
    }

    .brpg-plan .pz-plan-hope__col--lg {
        width: calc(100% - 75px);
        margin-right: 10px;
    }

    .brpg-plan .pz-plan-hope__type {
        padding: 10px auto;
    }

    .brpg-plan .pz-plan-hope__type p {
        text-align: center;
        font-size: 12px;
    }

    .brpg-plan .pz-plan-hope-button {
        padding: 12px 16px;
        font-size: 14px;
    }

    .brpg-plan .pz-plan-price {
        padding: 18px 20px 8px;
    }

    .brpg-plan .pz-plan-price__text {
        font-size: 14px;
        text-align: left;
    }

    .brpg-plan .pz-plan-price__result {
        font-size: 30px;
    }

    .brpg-plan .pz-plan-detail__head {
        display: block;
    }

    .brpg-plan .pz-plan-detail__head__note {
        margin-left: 0;
        padding: 0.5em 2.7em 0.5em;
        margin-top: 10px;
    }

    .brpg-plan .pz-plan-detail__content {
        padding: 20px 10px 10px;
    }

    .brpg-plan_text {
        padding-bottom: 30px;
        font-size: 2.933vw;
        text-align: center;
    }

    .brpg-plan .pz-plan-table {
        font-size: 12px;
    }

    .brpg-plan .pz-plan-table th,
    .brpg-plan .pz-plan-table td {
        border: 2px solid #fff;
    }

    .brpg-plan .pz-plan-table th {
        width: 47%;
    }

    .brpg-plan .pz-plan-table th br {
        display: block;
    }
    
    .brpg-plan .pz-plan-table td {
        width: 53%;
        font-size: 12px;
        padding: 0.8em 0;
        line-height: 1.4;
    }
    
    .brpg-plan .pz-plan-table__heading {
        margin-bottom: 10px;
    }

    .brpg-plan .pz-plan-table__red {
        padding-left: 10px;
    }

    .lady-blue {
        display: block;
        text-align: center;
    }
    
    .brpg-plan .pz-plan-table__lg-text {
        font-size: 18px;
    }

    .brpg-plan .pz-plan-table__sm-text {
        font-size: 14px;
    } 
}


/* he_compare
----------------------*/
.he_compare {
  background: #daf6fa;
  width:100%;
  padding:40px 0;
}

.he_compare .compare_inner {
  background: #fff;
  border-radius: 10px;
  padding:30px 0;
  width:700px;
  margin:0 auto;
  text-align: center;
}

.he_compare .compare_text,
.he_compare .compare_text2 {
  font-size:16px;
  font-weight:700;
  color:#434343;
  line-height: 1.7;
  padding-top:30px;
}

.he_compare .compare_text span {
  font-size:20px;
  color:#b9506d;   
}

.he_compare .compare_text2 span {
  font-size:20px;
  color:#1aa7a4;
}

.he_compare a.compare_btn {
  margin-top:30px;
  display: block;
}

.he_compare .compare_text3 {
  font-size:12px;
  font-weight:400;
  color:#434343;
  line-height: 1.3;
  padding:20px 0 0 1.2rem;
  text-indent: -1.2rem;
  width:500px;
  margin: 0 auto;
  text-align: left;
}

.he_compare .compare_text3 span {
  color:#b9506d;    
}

.he_compare .compare_inner a img:hover {
  opacity: .6;
  transition: .7s ease;
}

@media screen and (max-width: 768px) {
  .he_compare {
    padding:5.208vw 0;
  }

  .he_compare .compare_inner {
    padding:5.208vw 0;
    width:94%;
  }

  .he_compare h3 {
    width:85%;
    margin:0 auto;
  }    
    
  .he_compare .compare_text,
  .he_compare .compare_text2 {
    font-size:3.733vw;
    padding-top:5.208vw;
  }

  .he_compare .compare_text span,
  .he_compare .compare_text2 span {
    font-size:4.799vw;
  }

  .he_compare a.compare_btn {
    width:94%;
    margin:5.208vw auto 0;
  }

  .he_compare .compare_text3 {
    font-size:2.933vw;
    padding:3.906vw 0 0 1.2rem;
    text-indent: -1.2rem;
    width:94%;
  }

  .he_compare .compare_inner a img:hover {
    opacity: 1;
  }
}


/* cta
----------------------*/
.cta {
  padding:10px 0 0;
}

.cta.pb {
  padding:10px 0 60px;
}

.cta h3 {
  font-weight:700;
  text-align: center;
  color:#434343;
  font-size:18px;
  padding-top:15px;
}

.cta h3 span {
  color:#2167ae;
}

.cta a.btn {
  display:block;
  background: url("/NonSitecore/_/media/landingpage/brpg/kanwa/kanwa2/img/cta02_bg_pc.png") left top no-repeat;
  color:#fff;
  font-weight:700;
  text-align: center;
  box-sizing: border-box;
  position: relative;
  width:540px;
  height: 72px;
  margin:20px auto 0;
  background-size: 540px;
  font-size:19px;
  padding-top:25px;
  padding-left:30px;
}

.cta a.btn img {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.cta a.btn.bg02 {
  background: url("/NonSitecore/_/media/landingpage/brpg/kanwa/kanwa2/img/cta03_bg_pc.png") left top no-repeat;
  background-size: 540px;
  margin:10px auto 0;
}

.cta a:hover {
  opacity: .6;
  transition: .7s ease;
}

.cta a.btn img {
  left:60px;
}

.cta a.btn.bg02 img {
  left:60px;
}

.cta .text_link a {
  display: block;
  font-size: 16px;
  color: #2167ae;
  font-weight: 700;
  padding-top: 10px;
  text-decoration: underline;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .cta {
    padding:3.906vw 0 3vw;
  }

  .cta h3 {
    font-size:3.906vw;
    padding-top:2vw;
  }

  .cta a.btn {
    background: url("/NonSitecore/_/media/landingpage/brpg/kanwa/kanwa2/img/cta02_bg_sp.png") left top no-repeat;
    background-size: 100%;
    width:91.333%;
    height: 15vw;
    margin:2vw auto 0;
    font-size:3.906vw;
    padding-top:5.333vw;
    padding-left:6vw;
  }

  .cta a.btn img {
    left:8.5vw;
    width: 6.933vw;
  }

  .cta a.btn.bg02 img {
    left:8.5vw;
    width: 8vw;
  }

  .cta a.btn.bg02 {
    background: url("/NonSitecore/_/media/landingpage/brpg/kanwa/kanwa2/img/cta03_bg_sp.png") left top no-repeat;
    background-size: 100%;
    font-size: 3.906vw;
  }
    
  .cta .text_link a {
    font-size: 3.906vw;
    padding-top: 1.309vw;
  }
}


/* he_flow
----------------------*/
.he_flow {
  color:#434343;
  background: #eef8fd;
  padding:0 0 50px;
}

.he_flow h2 {
  background: #2167ae;
  max-width:1200px;
  margin:0 auto;
  text-align: center;
  color:#fff;
  padding:10px 0 20px;
  font-size:29px;
  font-weight: 700;
  line-height: 1.3;
}

.he_flow h2 span { font-size:17px; }

.he_flow .he_lead {
  font-size:13px;
  font-weight: 700;
  position:relative;
  line-height: 1.4;
  width:700px;
  margin:20px auto 0;
  text-align: center;
}

.he_flow .he_lead:before {
  content: "＼";
  position: absolute;
  bottom: 0;
  left: 120px;
  font-weight:700;
}

.he_flow .he_lead:after {
  content: "／";
  position: absolute;
  bottom: 0;
  right: 120px;
  font-weight:700;
}

.he_flow .flow_box {
  width:700px;
  margin:20px auto 0;
  border:2px solid #2167ae;
  border-radius: 8px;
  text-align: center;
  background: #fff;
}

.he_flow .toggle {
  background: #2167ae;
  text-align: center;
  padding:15px 0;
  cursor: pointer;
  position: relative;
}

.he_flow .toggle span.arrow {
  position: absolute;
  top: 50%;
  border-radius: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: #fff;
  right: 32px;
  width: 24px;
  height: 24px;
}

.he_flow .toggle span.arrow:before {
  content: "";
  position: absolute;
  border: 0;
  border-bottom: solid 2px #2167ae;
  border-right: solid 2px #2167ae;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);  
  width: 6px;
  height: 6px;
  top: 7px;
  left: 8px;
}

.he_flow .toggle.is-opend span.arrow:before {
  content: "";
  border: 0;
  border-top: solid 2px #2167ae;
  border-right: solid 2px #2167ae;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  top: 9px;
}

.he_flow .toggle span.text01 {
  font-size:16px;
  font-weight:700;
  width: 475px;
  margin: auto;
  background:#23366f;
  color:#fff;
  display: block;
  padding:5px 0 7px;
}

.he_flow .toggle span.text02,
.he_flow .toggle span.text03,
.he_flow .toggle span.text04 {
  display: block;
  font-size:29px;
  font-weight:700;
  color:#fff;
  background: url("/NonSitecore/_/media/landingpage/brpg/kanwa/kanwa2/img/flow_ico01.png") left top no-repeat;
  background-size: 45px;
  width:340px;
  margin:8px auto 0;
  padding:8px 0 8px 20px;
}

.he_flow .toggle span.text03 {
  background: url("/NonSitecore/_/media/landingpage/brpg/kanwa/kanwa2/img/flow_ico02.png") left top no-repeat;
  background-size: 45px;
}

.he_flow .toggle span.text04 {
  background: url("/NonSitecore/_/media/landingpage/brpg/kanwa/kanwa2/img/flow_ico03.png") left top no-repeat;
  background-size: 45px;
  width:435px;
  padding:8px 0 8px 45px;
}

.he_flow .toggle span.text02 span,
.he_flow .toggle span.text03 span,
.he_flow .toggle span.text04 span {
  color:#fffdd5;
}

.he_flow #consultation .panel.active { display:block; }

.he_flow .panel {
  padding:20px 0 0 0;
  display: none;
}

.he_flow .flow_inner_box {
  width:633px;
  margin:0 auto 20px;
  border:1px solid #2167ae;
  border-radius: 8px;
}

.he_flow .flow_inner_box figure {
  background: #d9eafd;
  border-radius: 8px 8px 0 0;
}

.he_flow .flow_inner_box .inner {
  border-top:1px solid #2167ae;
  text-align: center;
  padding:25px 0;
}

.he_flow .flow_inner_box .merit_copy {
  font-size:17px;
  font-weight:700;
  position: relative;
  line-height: 1.6;
  margin-bottom:20px;
}

.he_flow .flow_inner_box span.strong {
  color:#ff7569;
}

.he_flow .flow_inner_box span.u-line {
  background:linear-gradient(transparent 60%, #d9eafd 60%);
}

.he_flow .flow_inner_box .merit_copy:before,
.he_flow .flow_inner_box .merit_copy:after {
    content: "";
    position: absolute;
    bottom:0;
    background:url("/NonSitecore/_/media/landingpage/brpg/kanwa/kanwa2/img/slash.png") left bottom no-repeat;
    background-size: 100%;
    width: 25px;
    height: 42px;
}

.he_flow .flow_inner_box .merit_copy:before {
    left:110px;
}

.he_flow .flow_inner_box .merit_copy:after {
    right:110px;
    transform: scaleX(-1);
}

.he_flow .flow_inner_box .merit_copy.third:before {
    left:50px;
}

.he_flow .flow_inner_box .merit_copy.third:after {
    right:50px;
}

.he_flow .flow_inner_box .merit_txt {
  font-size:17px;
  font-weight:700;
  line-height: 1.6;
  margin-bottom:20px;
}

.he_flow .flow_inner_box .merit_box {
  width:530px;
  margin:0 auto;
  display: -webkit-flex;
  display: flex;
  justify-content: space-evenly;
  flex-wrap: wrap;  
}

.he_flow .flow_inner_box .merit_box div.upload {
  width:160px;
}

.he_flow .flow_inner_box .merit_txt2 {
  font-size: 14px;
  font-weight: 700;
  color: #2167ae;
  height: 55px;
  border-bottom: 2px dotted #2167ae;
  padding: 10px 0 5px;
  line-height: 1.3;
}

.he_flow .flow_inner_box .merit_txt3 {
  font-size:11px;
  font-weight:700;
  padding:10px 0 5px;
  line-height: 1.4;
}

.he_flow .flow_inner_box .merit_txt3.left {
  text-align: left;
}

.he_flow .flow_inner_box .merit_txt3 span {
  color:#2167ae;
}

.he_flow .flow_inner_box .merit_txt3 span.underline {
  color:#434343;
  text-decoration: underline;
}

.he_flow .flow_inner_box .merit_txt4 {
  font-size:11px;
  font-weight:700;
  text-align: left;
  line-height: 1.4;
  text-indent: -1em;
  padding-left: 1em;
  letter-spacing: -.4px;
  margin-top:-5px;
}

.he_flow .flow_inner_box .documents_box {
  width:540px;
  margin:20px auto 0;
  border:1px solid #2167ae;
  background: #f4f4f4;
  border-radius: 8px;
  padding-bottom:15px;
}

.he_flow .flow_inner_box .documents_txt {
  font-size:15px;
  font-weight:700;
  background: #fff;
  text-align: center;
  border-radius: 8px 8px 0 0;
  border-bottom:1px solid #2167ae;
  padding:8px 0;
  position: relative;
}

.he_flow .flow_inner_box .documents_txt span {
    color:#2167ae;
}

.he_flow .flow_inner_box .documents_txt:before {
  content: "";
  position: absolute;
  width:22px;
  height: 22px;
  background: url("/NonSitecore/_/media/landingpage/brpg/kanwa/kanwa2/img/icon.png") left top no-repeat;
  background-size: 100%;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left:120px;
}

.he_flow .flow_inner_box .documents_txt2 {
  font-size:13px;
  font-weight:700;
  text-align: center;
  padding-top:15px;
}

.he_flow .flow_inner_box .documents_box ul {
  width:500px;
  margin:0 auto;
  display: -webkit-flex;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.he_flow .flow_inner_box .documents_box ul li {
  width:48.5%;
  display: block;
  font-size:13px;
  font-weight:700;
  text-align: center;
  border:1px solid #434343;
  background: #fff;
  color:#2167ae;
  border-radius: 5px;
  padding:5px 0;
  box-sizing: border-box;
  margin-top:10px;
}

.he_flow .merit_box2 {
  width:635px;
  margin:15px auto 0;
  display: -webkit-flex;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;  
}

.he_flow .merit_box2.long {
  width:635px;
  margin:15px auto 30px;
  display: block;
}

.he_flow .merit_box2 div {
  width:305px;
  border:1px solid #434343;
  padding:10px;
  box-sizing: border-box;
  border-radius: 8px;
  text-align: center;
}

.he_flow .merit_box2 div figure {
    border-bottom:2px dotted #434343;
    padding-bottom:10px;
}

.he_flow .merit_box2 div p {
  font-size:13px;
  font-weight:700;
  padding-top:13px;
  height: 75px;
  line-height: 1.4;
  box-sizing: border-box;
}

.he_flow .merit_box2 div:first-child p {
  padding-top:20px;
}

.he_flow .merit_box2.long div {
  width:635px;
}

.he_flow .merit_box2.long div p {
  padding:13px 0;
  height: auto;
}

@media screen and (max-width: 768px) {
  .he_flow {
    padding:0 0 8vw;
  }

  .he_flow h2 {
    max-width:768px;
    margin:8vw auto 0;
    padding:1.309vw 0 3vw;
    font-size:5.6vw;
  }

  .he_flow h2 span { font-size:3.2vw; }

  .he_flow .he_lead {
    font-size:3.733vw;
    padding:0 0 2.604vw 0;
    width:100%;
  }

  .he_flow .he_lead:before {
    left: 10vw;
    font-size:3.906vw;
  }

  .he_flow .he_lead:after {
    right: 10vw;
  }    
    
  .he_flow .flow_box {
    width:92%;
    margin:3.906vw auto 0;
  }

  .he_flow .toggle {
    padding:3.906vw 0;
  }

  .he_flow .toggle span.arrow {
    right: 2.6666666667vw;
    width: 4.8vw;
    height: 4.8vw;
  }

  .he_flow .toggle span.arrow:before {
    width: 1.3333333333vw;
    height: 1.3333333333vw;
    top: 1.0666666667vw;
    left: 1.6vw;
  }

  .he_flow .toggle.is-opend span.arrow:before {
    top: 1.8666666667vw;
  }

  .he_flow .toggle span.text01 {
    font-size:2.933vw;
    width: 71.333vw;
    padding:.677vw 0 1.309vw;
  }

  .he_flow .toggle span.text02,
  .he_flow .toggle span.text03,
  .he_flow .toggle span.text04 {
    font-size:5.6vw;
    background-size: 9.333vw;
    width:60vw;
    margin:1.309vw auto 0;
    padding:1.309vw 0 2.604vw 9vw;
  }

  .he_flow .toggle span.text03 {
    background-size: 9.333vw;
  }

  .he_flow .toggle span.text04 {
    background-size: 9.333vw;
    width:85vw;
    padding:1.309vw 0 2.604vw 5vw;
    letter-spacing: -.3px;
  }

  .he_flow .panel {
    padding:4vw 0 0 0;
    display: none;
  }

  .he_flow .flow_inner_box {
    width:90%;
    margin:0 auto 20px;
  }

  .he_flow .flow_inner_box .img {
    width:92%;
    margin:0 auto;
  }

  .he_flow .flow_inner_box .inner {
    padding:4vw 0;
  }

  .he_flow .flow_inner_box .merit_copy {
    font-size:3.2vw;
    margin-bottom:2.604vw;
  }

  .he_flow .flow_inner_box .merit_copy:before,
  .he_flow .flow_inner_box .merit_copy:after {
    width: 6vw;
    height: 10.633vw;
  }

  .he_flow .flow_inner_box .merit_copy:before {
    left:1.309vw;
  }

  .he_flow .flow_inner_box .merit_copy:after {
    right:1.309vw;
  }

  .he_flow .flow_inner_box .merit_copy.third:before {
    left:1.309vw;
  }

  .he_flow .flow_inner_box .merit_copy.third:after {
    right:1.309vw;
  }

  .he_flow .flow_inner_box .merit_txt {
    font-size:3.2vw;
    margin-bottom:2.604vw;
  }

  .he_flow .flow_inner_box .merit_box {
    width:92%;
    display: block;
  }

  .he_flow .flow_inner_box .merit_box div.upload {
    width:100%;
    display: -webkit-flex;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    border-bottom:2px dotted #2167ae;
    margin-top:3.906vw;
    padding-bottom:2.604vw;
  }
    
  .he_flow .flow_inner_box .merit_box div.ill {
    width:33vw;
  }

  .he_flow .flow_inner_box .merit_box div.ill img {
    width:18.667vw;
    height: auto;
    margin: auto;
  }    
    
  .he_flow .flow_inner_box .merit_box div.txt {
    width:39vw;
  }

  .he_flow .flow_inner_box .merit_box div.txt .pt {
    padding-top:4vw;
  }
    
  .he_flow .flow_inner_box .merit_txt2 {
    font-size:3.2vw;
    height: auto;
    border-bottom:none;
    padding:2.604vw 0 1.309vw;
  }

  .he_flow .flow_inner_box .merit_txt3 {
    font-size:2.933vw;
    padding:0;
    text-align: left;
  }

  .he_flow .flow_inner_box .merit_txt4 {
    font-size:2.933vw;
    text-indent: -1em;
    padding-left: 1em;
    margin-top:0;
  }
    
  .he_flow .flow_inner_box .documents_box {
    width:92%;
    margin:2.604vw auto 0;
    padding-bottom:3.2vw;
  }

  .he_flow .flow_inner_box .documents_txt {
    font-size:3.2vw;
    padding:1.309vw 0 2vw;
  }

  .he_flow .flow_inner_box .documents_txt:before {
    width:3.906vw;
    height: 3.906vw;
    left:8vw;
  }

  .he_flow .flow_inner_box .documents_txt2 {
    font-size:2.933vw;
    padding-top:2.604vw;
    padding-bottom:1.309vw;
  }

  .he_flow .flow_inner_box .documents_box ul {
    width:58.667vw;
    display: block;
  }

  .he_flow .flow_inner_box .documents_box ul li {
    width:100%;
    font-size:3.2vw;
    padding:1.309vw 0;
    margin-top:2vw;
  }

  .he_flow .flow_inner_box .merit_box div:last-of-type.upload {
    border:none;
  }
    
  .he_flow .flow_inner_box .merit_box div.ill2 {
    width:32vw;
    padding-bottom:2.604vw;
  }

  .he_flow .flow_inner_box .merit_box div.ill2 img {
    width:100%;
    height: auto;
  }    

  .he_flow .flow_inner_box .merit_box div.txt2 {
    width:42vw;
    padding-bottom:2.604vw;
    padding-top:2.604vw;
  }   

  .he_flow .flow_inner_box .merit_box div:first-of-type .txt2 {
    padding-top:0;
  }   

  .he_flow .flow_inner_box .merit_box div.txt2 .merit_txt3 {
    font-size:3.2vw;
    font-weight:700;
    text-align: center;
  }    

  .he_flow .flow_inner_box .merit_box div.txt2 span {
    color:#2167ae;
  }

  .he_flow .merit_box2 {
    width:92%;
    margin:0 auto;
    display: block;
    padding-bottom:3.906vw;
  }

  .he_flow .merit_box2.long {
    width:92%;
    margin:0 auto;
  }

  .he_flow .merit_box2 div {
    width:100%;
    padding:2.604vw;
    margin:0 0 2.604vw;
  }

  .he_flow .merit_box2 div figure {
    padding-bottom:2.604vw;
  }

  .he_flow .merit_box2 div p {
    font-size:3.733vw;
    padding-top:3.906vw;
    padding-bottom:3.906vw;
    height: auto;
  }

  .he_flow .merit_box2 div:first-child p {
    padding-top:3.906vw;
  }

  .he_flow .merit_box2.long div {
    width:100%;
  }

  .he_flow .merit_box2.long div p {
    padding:3.906vw 0;
  }
}


/* he_faq
----------------------*/
.he_faq {
  color: #434343;
  text-align: center;
  padding-top: 54px;
  padding-bottom: 56px;
}

.he_faq h2 {
  position: relative;
  display: inline-block;
  width: 570px;
  margin: 0 auto 12px;
  padding: 16px;
  border-radius: 50px;
  background-color: #434343;
  text-align: center;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.5;
  margin-top: 15px;
  color: #ffffff;
}

.he_faq h2::after {
  content: "";
  position: absolute;
  bottom: 1px;
  left: 50%;
  border-style: solid;
  border-width: 12px 20px 0 0;
  border-color: #434343 transparent transparent;
  translate: -50% 100%;
  transform: skew(-10deg);
  transform-origin: top;
}

.he_faq .faq_box {
  background: #fff;
  margin: 20px auto 0;
  border-radius: 8px;
  border: 2px solid #434343;
  max-width:700px;
} 
    
.he_faq .toggle {
  position: relative;
  margin: auto;
  text-align: center;
  font-weight: 600;
  color: #434343;
  cursor: pointer;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  line-height: 1.2;
  background: #d9eafd;
  border-radius: 8px;
  padding: 25px 0 25px;
  font-size: 23px;  
}

.he_faq .toggle:before {
  content:"";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left:25px;
  width:55px;
  height: 55px;
  background: url("/NonSitecore/_/media/landingpage/brpg/kanwa/kanwa2/img/q.png") center top no-repeat;
  background-size: 100%;
}

.he_faq .toggle span {
  position: absolute;
  top: 50%;
  border-radius: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: #434343;
  right: 32px;
  width: 24px;
  height: 24px;      
}

.he_faq .toggle span:before {
  content: "";
  position: absolute;
  border: 0;
  border-bottom: solid 2px #fff;
  border-right: solid 2px #fff;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  width: 6px;
  height: 6px;
  top: 7px;
  left: 8px;
}

.he_faq .toggle.is-opend {
  border-radius: 8px 8px 0 0;
}

.he_faq .toggle.is-opend span:before {
  content: "";
  border: 0;
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  top: 9px;
}

.he_faq .panel {
  display: none;
  color: #434343;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  overflow: hidden;
  text-align: left;
  margin:auto;
  position: relative;
  font-size:15px;
  padding:30px 40px 30px 40px;
  width:100%;
}

.he_faq .panel a { color:#2167ae; text-decoration: underline; }

.he_faq .panel:before {
  content:"";
  position: absolute;
  top: 20px;
  left:25px;
  width:55px;
  height: 55px;
  background: url("/NonSitecore/_/media/landingpage/brpg/kanwa/kanwa2/img/a.png") center top no-repeat;
  background-size: 100%;
}

.he_faq .panel p {
  line-height: 1.4;
  padding-left: 60px;
}

.he_faq .panel ul {
  padding:40px 0 0 15px;
}

.he_faq .panel ul li {
  list-style: disc;
}

.he_faq .panel ul li::marker {
  color: #2167ae;
}

.he_faq .panel .hyo {
  margin-top:30px;
}

@media screen and (max-width: 768px) {
  .he_faq {
    padding-top: 4vw;
    padding-bottom: 10.6666666667vw;
  }

  .he_faq h2 {
    width: 92%;
    margin: 0 auto;
    padding: 2.604vw 0;
    font-size: 5.067vw;
    margin-top: 3.906vw;
  }

  .he_faq h2::after {
    bottom: 2px;
  }    
    
  .he_faq .faq_box {
    margin-top: 4.2666666667vw;
    width: 91.4666666667%;
  }
    
  .he_faq .toggle {
    padding: 4vw 5.3333333333vw 4vw 7vw;
    font-size: 3.466vw;
  }
    
  .he_faq .toggle:before {
    left:3.906vw;
    width:8vw;
    height: 8vw;
  }
    
  .he_faq .toggle span {
    right: 2.6666666667vw;
    width: 4.8vw;
    height: 4.8vw;
  }

  .he_faq .toggle span:before {
    width: 1.3333333333vw;
    height: 1.3333333333vw;
    top: 1.0666666667vw;
    left: 1.6vw;
  }

  .he_faq .toggle.is-opend span:before {
    top: 1.8666666667vw;
  }

  .he_faq .panel {
    width: 91.4666666667%;
    padding: 3.906vw 0 4vw 3.906vw;
    font-size:3.2vw;
  }
    
  .he_faq .panel:before {
    top: 3.906vw;
    left:0;
    width:8vw;
    height: 8vw;
  }    

  .he_faq .panel p {
    line-height: 1.4;
    padding-left: 7.792vw;
  }

  .he_faq .panel p.faq_hyo {
    padding-left: 0;
    margin-left: -3.906vw;
  }

  .he_faq .panel ul {
    padding:5.208vw 0 0 1.953vw;
  }

  .he_faq .panel .hyo {
    margin-top:5.208vw;
  }
}


/* he_footer_info
----------------------*/
.he_footer_info {
  width: 100%;
  background: #eef0f1;
  color: #434343;
}

.he_footer_info .form_foot {
  width: 648px;
  margin: 0 auto;
  padding:30px 0;
}

.he_footer_info .form_foot .txt_foot {
  padding-bottom:20px;
  padding-top:30px;
}

.he_footer_info .form_foot h3 {
  font-weight: 500;
  font-size: 1.2rem;
}

.he_footer_info .form_foot p {
  font-weight: 400;
  line-height: 1.3333333333;
  margin-top: 7px;
  font-size: 1.2rem;
}

.he_footer_info .form_foot span {
  display: block;
  font-size:13px;
  font-weight:700;
  text-align: center;
  line-height: 1.4;
  position: relative;
}

.he_footer_info .form_foot span:before {
  content: "＼";
  position: absolute;
  bottom: 0;
  left: 110px;
  font-weight:700;
}

.he_footer_info .form_foot span:after {
  content: "／";
  position: absolute;
  bottom: 0;
  right: 110px;
  font-weight:700;
}

.he_footer_info .form_foot .button {
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  text-decoration: none;
  color: #2167ae;
  border-radius: 10px;
  border: 1px solid #2167ae;
  position: relative;
  transition: 0.3s;
  background-color: #fff;
  font-size: 16px;
  width: 410px;
  height: 30px;
  margin:0 auto;
}

.he_footer_info .form_foot .button:last-of-type {
  margin:10px auto 0;
}

.he_footer_info .form_foot .button::before, .he_footer_info .form_foot .button::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  transform-origin: 100% 50%;
  background-color: #2167ae;
  border-radius: 2px;
  will-change: transform;
  transition: .3s;
  right: 15px;
  height: 2px;
  width: 11px;
}

.he_footer_info .form_foot .button::before {
  transform: translateY(-50%) rotate(45deg);
}

.he_footer_info .form_foot .button::after {
  transform: translateY(-50%) rotate(-45deg);
}

.he_footer_info .form_foot .button:hover::before {
  transform: translate(5px, -50%) rotate(45deg);
}

.he_footer_info .form_foot .button:hover::after {
  transform: translate(5px, -50%) rotate(-45deg);
}

@media screen and (max-width: 768px) {
  .he_footer_info .form_foot {
    padding: 5.333vw 0;
    width:92%;
  }
    
  .he_footer_info .form_foot .txt_foot {
    padding-bottom:4vw;
    padding-top:5vw;
  }     

  .he_footer_info .form_foot h3 {
    font-size: 3.2vw;
    padding-top:2.993vw;
  }

  .he_footer_info .form_foot p {
    margin-top: 1.3333333333vw;
    font-size: 3.2vw;
  }
    
  .he_footer_info .form_foot span {
    font-size:3.646vw;
  }

  .he_footer_info .form_foot span:before {
    left: 7vw;
  }

  .he_footer_info .form_foot span:after {
    right: 7vw;
  }
    
  .he_footer_info .form_foot .button {
    font-size: 3.2vw;
    width: 78.667vw;
    height: 8vw;
    margin:0 auto;
  }

  .he_footer_info .form_foot .button:last-of-type {
    margin:1.309vw auto 0;
  }

  .he_footer_info .form_foot .button::before, .he_footer_info .form_foot .button::after {
    right: 15px;
    height: 2px;
    width: 8px;
  } 
}


/* he_footer
----------------------*/
.he_footer {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: auto;
  color: #434343;
  width: 720px;
  padding: 17px 0 200px;
}

.he_footer .text {
  text-align: right;
  font-weight: 400;
  font-size: 1.2rem;
  margin-bottom: 7px;
}

.he_footer ul {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.he_footer ul li {
  position: relative;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin-top: 13px;
  margin-right: 32px;
  padding-left: 14px;
  font-size: 1.2rem;
}

.he_footer ul li ::before {
  content: "＞";
  position: absolute;
  top: 0;
  left: 0;
}

.he_footer ul li a {
  color: #434343;
}

.he_footer .copyright {
  text-align: center;
  color: #A5A5A5;
  font-weight: 600;
  margin-top: 38px;
  font-size: 1.2rem;
}

@media screen and (max-width: 768px) {
  .he_footer {
    width: 91.4666666667%;
    padding: 4vw 0 40vw;
  }

  .he_footer .text {
    font-size: 3.2vw;
    margin-bottom: 3.4666666667vw;
  }

  .he_footer ul li {
    width: 100%;
    padding-left: 4.2666666667vw;
    font-size: 3.2vw;
  }
  .he_footer ul li + li {
    margin-top: 2.9333333333vw;
  }

  .he_footer .copyright {
    margin-top: 4vw;
    font-size: 3.2vw;
  }
}










