@charset "utf-8";
@import "reset.css";
@import "renewal_qa.css";
body, html {
  height: 100%;
}

#warapper {
  position: relative;
  width: 800px;
  margin: 0 auto;
  padding: 0 0 260px;
  height: auto;
 /*- min-height: calc(100% - 260px); 縮小表示の際にfooterとの間に余白ができるため、コメントアウト 20220930 -*/
  -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, .2);
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, .2);
  overflow: hidden;
}

#warapper #pagetop {
  text-align: right;
  margin-right: 40px;
  margin-bottom: 10px;
  padding: 10px 0;
}

#warapper #pagetop a {
  color: #2388d8;
}


/*-------------------------------------------
ヘッダー
-------------------------------------------*/

#header {
  width: 100%;
  margin: 0 0 10px;
  height: 100px;
  background: #ffffff url(../img/rokin_logo.svg) no-repeat;
  background-position: 10px 50%;
  border-bottom: 4px solid #006CB8;
  -webkit-box-shadow: 0 0 6px 0 rgba(0, 0, 0, .4);
  box-shadow: 0 0 6px 0 rgba(0, 0, 0, .4);
}


/*-------------------------------------------
メインイメージ
-------------------------------------------*/

#topimage {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 5px auto 20px;
  padding: 26px 0 20px;
  width: calc( 740px - 6px);
  background-color: #0066bb;
  background-image: -o-linear-gradient(130deg, #2288dd 0%, #0066bb 30%, #0077dd 70%, #2299cc 100%);
  background-image: linear-gradient(320deg, #2288dd 0%, #0066bb 30%, #0077dd 70%, #2299cc 100%);
  outline: solid 1px #2288dd;
  -webkit-box-shadow: inset 0 0 0 2px #ffffff;
  box-shadow: inset 0 0 0 2px #ffffff;
  color: #ffffff;
  font-size: 24px;
  font-weight: bold;
  text-align: center;
  line-height: 36px;
  letter-spacing: 2px;
}


/*-------------------------------------------
タブメニュー
-------------------------------------------*/

#tab_menu {
  margin: 0 auto;
  width: 740px;
  border-bottom: 4px solid #004499;
}

#tab_menu a {
  text-decoration: none;
}

#tab_menu ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

#tab_menu li.nav_tab {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: relative;
  width: calc( 740px / 5 - 3px);
  /* ※タブ数で分割後、余白分減算 */
  height: 80px;
  padding: 40px 0 5px 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background: -o-linear-gradient(#e4f6ff, #cce7ff);
  background: -webkit-gradient(linear, left top, left bottom, from(#e4f6ff), to(#cce7ff));
  background: linear-gradient(#e4f6ff, #cce7ff);
  border: 1px solid #b8d0f5;
  border-bottom: 0;
  border-radius: 12px 12px 0 0;
  color: #004499;
  text-align: center;
  font-size: 13px;
  font-weight: bold;
}

#tab_menu li.nav_tab span p {
  font-size: 11px;
}

#tab_menu li.nav_tab:hover {
  background: -o-linear-gradient(#eeffff, #bbddff);
  background: -webkit-gradient(linear, left top, left bottom, from(#eeffff), to(#bbddff));
  background: linear-gradient(#eeffff, #bbddff);
}

#tab_menu li.active {
  background: -o-linear-gradient(#0077dd, #004499);
  background: -webkit-gradient(linear, left top, left bottom, from(#0077dd), to(#004499));
  background: linear-gradient(#0077dd, #004499);
  color: #ffffff;
  border: 1px solid #0074d6;
  border-bottom: 0;
}

#tab_menu li.active:hover {
  background: -o-linear-gradient(#0077dd, #004499);
  background: -webkit-gradient(linear, left top, left bottom, from(#0077dd), to(#004499));
  background: linear-gradient(#0077dd, #004499);
  color: #ffffff;
  border: 1px solid #0074d6;
  border-bottom: 0;
}

#tab_menu li svg {
  position: absolute;
  top: 6px;
  left: 0;
  right: 0;
  margin: auto;
  width: 30px;
  height: 30px;
  fill: #004499;
}

#tab_menu li.active svg {
  fill: #ffffff;
}


/*-------------------------------------------
メインコンテンツエリア
-------------------------------------------*/

#main {
  margin: 0px 10px 10px 9px;
}


/*-------------------------------------------
メインコンテンツ
-------------------------------------------*/

#contents {
  margin: 0 30px;
}

#contents a {
  outline: none;
}

#item h2 {
  position: relative;
  font-size: 120%;
  border-bottom: 2px solid #0088dd;
  margin-top: 40px;
  margin-bottom: 20px;
  color: #004499;
  padding: 2px 0 2px 35px;
  -webkit-box-shadow: 0 3px 3px 0 rgba(0, 0, 0, .1);
  box-shadow: 0 3px 3px 0 rgba(0, 0, 0, .1);
}

#item h2 svg {
  position: absolute;
  left: 6px;
  bottom: 3px;
  fill: #004499;
}

#item div.h2_inner {
  padding: 0 14px;
}

#item div.h2_inner img {
  margin-bottom: 10px;
}

#item .h2_topcommentarea {
  padding: 16px 20px;
  background-color: #fffbee;
  outline: 1px solid #ffbb55;
  color: #004499;
  font-size: 110%;
  font-weight: bold;
}

#item div.h2_inner span.red {
  color: #ff0000;
}

#item div.h2_inner span.blue {
  color: #0077cc;
  font-weight: bold;
}

#item h3 {
  font-size: 110%;
  margin-top: 25px;
  margin-bottom: 20px;
  padding: 6px 4px 5px 10px;
  background: #e0f0ff;
  border-left: 3px solid #55aaee;
  border-bottom: 1px solid #ccc;
}

#item div.h3_inner {
  margin: 0 0 40px 10px;
}

#item div.h3_inner img {
  display: block;
  width: 100%;
  max-width: 670px;
  margin: 0 auto 5px;
  outline: 0;
}

#item div.h3_inner img.page_sp_img {
  display: block;
  width: 100%;
  max-width: 360px;
  margin: 0 auto 5px;
  outline: 0;
}

#item div.h3_inner .embed_img {
  margin-bottom: 20px;
}

#item h4 {
  font-size: 110%;
  color: #fff;
  text-align: center;
  margin-bottom: 20px;
  padding: 6px 5px;
  background: #006CB8;
}



/*
#item div.h4_inner img {
  display: block;
  width: 100%;
  max-width: 670px;
  margin: 0 auto 5px;
  outline: 0;
}

#item div.h4_inner img.page_sp_img {
  display: block;
  width: 100%;
  max-width: 360px;
  margin: 0 auto 5px;
  outline: 0; 
}
*/

#item .subtitle01 {
  display: block;
  margin-top: 25px;
  padding-left: 1em;
  text-indent: -1em;
  color: #0077cc;
  font-size: 120%;
  font-weight: bold;
}

#item ul {
  margin-top: -15px;
  margin-bottom: 20px;
}

#item p {
  margin-bottom: 20px;
}

#item .pointwaku {
  width: calc(720px - 28px - 40px);
  margin: 0 auto 10px;
  padding: 20px 20px 15px;
  outline: solid 3px #F2412F;
  outline-offset: -3px;
  font-weight: bold;
  line-height: 1.7em;
  font-size: 150%;
  text-align: center;
}

#item .pointwaku .fontred {
  color: #dd0000;
}

#item .pointwaku .fontred .fontred_inner1 {
  margin-left: 1em;
}

#item .annotation-indent {
  display: block;
  padding-left: 1em;
  text-indent: -1em;
}

#item ul.topic li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: left;
  -ms-flex-pack: left;
  justify-content: left;
  padding: 20px 0 0;
}

#item ul.topic li div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

#item ul.topic li .topic-title {
  width: 180px;
  height: 50px;
  margin-right: 12px;
  background-color: #0066bb;
  background-image: -o-linear-gradient(130deg, #2288dd 0%, #0066bb 30%, #0077dd 70%, #2299cc 100%);
  background-image: linear-gradient(320deg, #2288dd 0%, #0066bb 30%, #0077dd 70%, #2299cc 100%);
  outline: solid 1px #2288dd;
  -webkit-box-shadow: inset 0 0 0 1px #ffffff;
  box-shadow: inset 0 0 0 1px #ffffff;
  color: #ffffff;
}


/* ---- 体験版ボタンエリア ---- */

#item div.btn_area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  margin: 20px 0 30px;
  padding: 0 50px;
  height: 80px;
  background-color: #e6f3ff;
  background-image: -o-linear-gradient(top, #eef9ff 0%, #e6f3ff 50%, #eef9ff 100%);
  background-image: -webkit-gradient(linear, left top, left bottom, from(#eef9ff), color-stop(50%, #e6f3ff), to(#eef9ff));
  background-image: linear-gradient(180deg, #eef9ff 0%, #e6f3ff 50%, #eef9ff 100%);
  color: #004499;
  font-weight: bold;
  border-radius: 3px;
  -webkit-box-shadow: inset 0 0 0 1px #99ccee;
  box-shadow: inset 0 0 0 1px #99ccee;
}

#item div.btn_area img {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 20px;
  width: 200px;
  margin: auto;
  outline: none;
}


/* ---- 別ページへリンクボタンエリア ---- */

.pagelink_btn_area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 30px 0;
}

.pagelink_btn_area a {
  text-decoration: none;
}

.pagelink_btn_area span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: relative;
  margin: 0 10px;
  width: 330px;
  height: 40px;
  background-color: #004499;
  color: #ffffff;
  font-weight: bold;
  border-radius: 24px;
  border: 1px solid #004499;
  box-shadow: 0 0.5em 0.5em  rgba(0,0,0,0.1);  /*--水平方向 垂直方向 影のぼかし 色--*/
}

.pagelink_btn_area span:hover {
  background-color: #bbddff;
  color: #004499;
}


/*
.pagelink_btn_area span svg {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 10px;
  margin: auto;
  margin-right: 10px;
}
*/


/*-------------------------------------------
2023年リニューアル案内で追記
-------------------------------------------*/

#item p.emphasis {
  margin: -1em 0 16px 0;
  font-weight: bold;
  line-height: 1.5em;
  font-size: 110%;
  padding-left: 1em;  
}


#item span.blue {
  color: #0077cc;
  font-weight: bold;
}

#item p.subtitle02 {
  width:20%;
  font-size: 110%;
  font-weight: bold;
  color: #fff;
  text-align: center;
  border: 1px solid #F2412F;
  border-radius: 6px;
  background: #F2412F;
  margin: 25px 10px -1em;
  padding: 6px 1em;
}

#item h5 {
  font-size: 110%;
  color: #006CB8;
  text-align: center;
  border: 2px solid #006CB8;
  border-radius: 6px;
  margin-bottom: 20px;
  padding: 6px 5px;
}

/* ---- 注目点（電球）、！エリアなど ---- */

#item div.pointwaku_small {
  /* width: calc(720px - 28px - 40px); */
  margin-bottom: 20px;
  padding: 20px 20px 3px 20px;
  outline: 2px solid #ffbb55;
  border-radius: 6px; 
  color: #000000;
  font-size: 110%;
}

#item div.pointwaku_small_qa {
  margin-bottom: 20px;
  margin-left: 3.2em;
  margin-right: 1.3em;
  padding: 20px 20px 3px 20px;
  outline: 2px solid #ffbb55;
  border-radius: 6px; 
  color: #000000;
  font-size: 110%;
}

#item p.point {
  margin-bottom: 16px;
  padding-left: 1.6em;
  padding-bottom: 0.3em;
  background: url(../img/point.svg) no-repeat left top;
  background-size: 1.2em;
}

#item p.point_exclamation {
  margin-bottom: 16px;
  padding-left: 1.8em;
  padding-bottom: 0.2em;
  background: url(../img/exclamation_mark.svg) no-repeat left top;
  background-size: 1.3em;
}

#item p.point_text {
  margin-bottom: 16px;
  font-weight: bold;
  line-height: 1.7em;
  font-size: 110%;
  color: #0066bb;
}


/* ---- リスト ---- */

#item ol {
  margin: auto 20px 20px;
  list-style-type: auto;
}

#item ul.list_circle_big {
  margin: auto 20px 20px;
  font-weight: bold;
  color: #0066bb;
}

#item ul.list_circle_big li {
  position: relative;
  padding-left: 15px;
  line-height: 1.4em;
  font-size: 110%;
}

#item ul.list_circle_big li:before {
  content: "";
  position: absolute;
  top: .3em;
  left: 0;
  width: 10px;
  height: 10px;
  background-color: #0066bb;
  border-radius: 50%;
}

#item ul.list_circle_big .annotation-indent {
  display: block;
  padding-left: 1em;
  text-indent: -1em;
  font-size: 110%;
}


#item p.list_asterisk {
  position: relative;
  margin-top: -1.2em;
  padding-left: 1.2em;
  line-height: 1.4em;
  font-size: 110%;
  font-weight: bold;
  color: #0066bb;
}

#item ul.list_circle {
  margin: -1.4em 20px 20px 2.7em;
}

#item ul.list_circle li {
  position: relative;
  padding-left: 15px;
  line-height: 1.4em;
}

#item ul.list_circle li:before {
  content: "";
  position: absolute;
  top: .3em;
  left: 0;
  width: 10px;
  height: 10px;
  background-color: #000000;
  border-radius: 50%;
}









/* ---- ※の文章 ---- */

#item div.note_qa {
  text-indent: -1em;
  margin-left: 3.5em;
  margin-top: -1.4em;
}

#item div.note_qa::before {
	content: "※";
}

/* ---- 口座開設など ---- */

table.open_account {
  margin-top: 25px;
  margin-bottom: 20px;
  padding: 10px;
  border-collapse: separate;
  border-spacing: 1em;
  width: 100%;
  background: #e3f2f9;
  color: #000000;
}

table.open_account th {
  padding: 1em;
  text-align: center;
  font-size: 120%;
  color: #ffffff;
  background: #006cb8;
  border: solid 1px #ffffff;
}

table.open_account td {
  padding: 1.5em;
  text-align: left;
  background: #ffffff;
  border: solid 2px #c0c0c0;
}


/* 行指定で変更
table.open_account tr:nth-child(5) td {
  margin-top: 0;
  text-decoration: none;
  color: #004499;
  background: #e6e6fa;  
}
 */

#item p.open_account img {
  display: block;
  width: 100%;
  max-width: 670px;
  margin: 0 auto 5px;
  outline: 0;
}

div.account_link {
  margin-top: 1em;
  padding: 1.5em;
  background: #e6e6fa;
  color: #000000;
}

div.account_link a {
  text-decoration: none;
  color: #004499;
  padding: 7px 0px 7px 20px;
  background: url(../img/link-icon.png) left center/15px auto no-repeat;
}

#item ul.list_circle_table {
  margin-bottom: 0;
}

#item ul.list_circle_table li {
  margin-top: 1em;
  position: relative;
  padding-left: 15px;
  line-height: 1.4em;
}

#item ul.list_circle_table li:before {
  content: "";
  position: absolute;
  top: .3em;
  left: 0;
  width: 10px;
  height: 10px;
  background-color: #000000;
  border-radius: 50%;
}


/* ---- 戻るボタン ---- */

.pagelink_btn_area span.back {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: relative;
  margin: 0 10px;
  width: 330px;
  height: 40px;
  background-color: #ffffff;
  color: #004499;
  font-weight: bold;
  border-radius: 24px;
  border: 1px solid #004499;
}

.pagelink_btn_area span.back:hover {
  background-color: #bbddff;
  color: #004499;
}


/*　ボタンのテキスト末尾＞
.pagelink_btn_area span::after {
  content: " ";
  position: absolute;
  right: 8px;
  width: 15px;
  height: 15px;
  background-image: url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2224%22%20height%3D%2224%22%20fill%3D%22none%22%20stroke%3D%22%23000%22%20stroke-width%3D%223.5%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%3E%3Cpath%20d%3D%22M9%2018l6-6-6-6%22%2F%3E%3C%2Fsvg%3E');
  background-size: 100%;
}
*/

/* ---- チェックボックス ---- */
.ibschk_flex {
  display: flex;
}
.ibschk_area {
  width: 25px;
}
.ibschk {
  transform: scale(2);
  margin-top: 2px;
  accent-color: #006cb8;
}
.ibschkguidance_area {
  width: 100%;
}

/*-------------------------------------------
フッター
-------------------------------------------*/

#footer {
  position: absolute;
  bottom: 0;
  width: 100%;
}

#footer .info {
  width: 96%;
  min-height: 202px;
  margin: 0 auto;
  background: url(../img/info.png) no-repeat center bottom;
  background-size: contain;
}

#footer p {
  width: calc( 100% + 4px);
  margin: 20px -2px -2px;
  padding: 16px 0;
  background-color: #004499;
  color: #ffffff;
  border-top: 1px solid #004499;
  -webkit-box-shadow: inset 0 0 0px 2px #ffffff;
  box-shadow: inset 0 0 0px 2px #ffffff;
  text-align: center;
}