@charset "UTF-8";
/*
 ============================================================
  common.css
 ============================================================
*/
/* reset
========================================================================== */
body, h1, h2, h3, h4, h5, h6, div, p, ul, ol, li, dl, dt, dd, table, tr, thead, tbody, tfoot, th, td, header, footer, nav, article, aside, section, figure, figcaption {
  margin: 0;
  padding: 0;
}

article, aside, details, figcaption, figure, footer, header, main, nav, section {
  display: block;
}

body {
  line-height: 1;
  background: #ffffff;
}

select, option, input, button, label, textarea {
  line-height: 1;
}

input {
  vertical-align: middle;
}

ol, ul {
  list-style: none;
}

em {
  font-style: normal;
}

table {
  width: 100%;
  border-spacing: 0;
  border-collapse: collapse;
  table-layout: fixed;
}

img,
a img {
  border: none;
}

img {
  vertical-align: top;
  font-size: 0;
  line-height: 0;
}

:root * {
  box-sizing: border-box;
}

div:after {
  content: '';
  display: block;
  clear: both;
}

/* base
========================================================================== */
body {
  font-family: "ヒラギノ角ゴ ProN W3","Hiragino Kaku Gothic ProN","メイリオ","Meiryo","ＭＳ Ｐゴシック",Osaka,sans-serif;
  font-size: 16px;
  line-height: 1.63;
  color: #333333;
  -webkit-text-size-adjust: 100%;
}

html * {
  max-height: 999999px;
}

a {
  color: #333;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.text_link,
p a {
text-decoration: underline;
}
.text_link:hover,
p a:hover {
text-decoration: none;
opacity: .8;
}
.text_link_pdf,
p .text_link_pdf {
text-decoration: underline;
}
.text_link_pdf:after,
p .text_link_pdf:after {
content: ' ';
display: inline-block;
width: 16px;
height: 16px;
margin: 0 8px;
background: url(../img/icon_pdf.png) no-repeat 0 0;
}
.text_link_pdf:hover {
text-decoration: none;
opacity: .8;
}
.text_link_blank,
p .text_link_blank {
text-decoration: underline;
}
.text_link_blank:before,
p .text_link_blank:before {
content: ' ';
display: inline-block;
width: 24px;
height: 16px;
background: url(../img/icon_blank.png) no-repeat 0 0;
}
.text_link_blank:hover {
text-decoration: none;
opacity: .8;
}


/* ALL
-------------------------------------------------- */
/* layout
========================================================================== */
html,
body {
  width: 100%;
}

body {
  min-width: 1200px;
  padding-top: 129px;
  background: #f0f0f0;
	word-break: break-all;
}

.display_pc {
  display: block;
}

.display_sp {
  display: none;
}

/* header
--------------------------------------------------------- */
header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background: #fff;
  z-index: 1000;
}

header.is_open .header_drawer {
  right: 0;
  transition: right 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}

header.is_open .header_gnav_icon:before {
  -webkit-transform: translateY(8px) rotate(230deg);
  transform: translateY(8px) rotate(230deg);
}

header.is_open .header_gnav_icon span {
  opacity: 0;
}

header.is_open .header_gnav_icon:after {
  -webkit-transform: translateY(-8px) rotate(135deg);
  transform: translateY(-8px) rotate(135deg);
}

header.is_close .header_drawer {
  right: -100%;
  transition: right 0.6s cubic-bezier(0.1, 0.57, 0.1, 1);
}

.header_top {
  min-width: 1200px;
  padding: 20px 0 19px 0;
  position: relative;
}

.header_logo {
  width: 130px;
  float: left;
  padding-left: 24px;
}

.header_logo img {
  width: 130px;
  height: auto;
}

.header_utility {
  padding-right: 72px;
  float: right;
}

.header_utility li {
  padding-right: 36px;
  vertical-align: top;
  display: inline-block;
}

.header_utility li a {
  font-size: 0.875rem;
}

.header_utility li:last-child a:hover {
  opacity: 0.7;
}

.header_gnav_icon {
  background: #333333;
  width: 72px;
  height: 72px;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 100;
  cursor: pointer;
}

.header_gnav_icon span {
  position: absolute;
  display: block;
  background: #fff;
  width: 20px;
  height: 4px;
  top: 34px;
  left: 26px;
}

.header_gnav_icon:before, .header_gnav_icon:after {
  position: absolute;
  content: '';
  display: block;
  background: #fff;
  width: 20px;
  height: 4px;
  top: 26px;
  left: 26px;
  transition: transform .3s;
}

.header_gnav_icon:after {
  top: 42px;
  left: 26px;
}

.header_nav {
  min-width: 1200px;
  padding: 0 24px;
  background: #008837;
}

.header_nav ul {
  width: 760px;
  float: left;
}

.header_nav ul li {
  display: inline-block;
  margin-right: 55px;
}

.header_nav ul li a {
  display: block;
  padding: 14px 0;
  color: #ffffff;
  font-size: 1.125rem;
  position: relative;
}

.header_nav ul li a:hover {
  text-decoration: none;
  opacity: 0.7;
}

.header_nav ul li.is_active a:after {
  display: block;
  position: absolute;
  content: '';
  width: 100%;
  height: 4px;
  bottom: 0;
  background: #ffffff;
}

.header_nav ul li.is_active a.is_open::after {
  left: 50%;
  margin-left: -7px;
  width: 0;
  height: 0;
  background: transparent;
  border-style: solid;
  border-width: 0 7px 7px 7px;
  border-color: transparent transparent #ffffff transparent;
}

.header_search {
  float: right;
  width: 360px;
  margin-top: 12px;
  background: #33a05f;
  border-radius: 3px;
}

.header_search input[type="text"] {
  width: 320px;
  margin: 0;
  padding: 5px 10px 6px 10px;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  appearance: none;
  font-size: 1rem;
  line-height: 1.5;
  color: #ffffff;
}

.header_search input[type="submit"] {
  margin-left: 5px;
  background: url(../img/icon_header_search.png) no-repeat 0 0;
  text-indent: -9999px;
  width: 17px;
  height: 16px;
  border: none;
  cursor: pointer;
}

.header_drop {
  width: 100%;
  background: #fff;
  position: absolute;
  top: 0;
  left: -99999px;
}

.header_drop_bg {
  display: none;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 11;
}

.header_drop_nav01 {
  border-bottom: 1px solid #d2d2d2;
  position: relative;
}

.header_drop_nav01 > ul {
  display: flex;
  width: 1200px;
  margin: 0 auto;
}

.header_drop_nav01 > ul > li {
  display: flex;
  align-items: center;
  border-left: 1px solid #d2d2d2;
}

.header_drop_nav01 > ul > li:last-child {
  border-right: 1px solid #d2d2d2;
}

.header_drop_nav01 > ul > li:last-child > a {
  width: 198px;
}

.header_drop_nav01 > ul > li > a {
  display: flex;
  align-items: center;
  width: 199px;
  height: 60px;
  font-weight: bold;
}

.header_drop_nav01 > ul > li > a:hover {
  text-decoration: none;
  position: relative;
}

.header_drop_nav01 > ul > li > a:hover::after {
  content: '';
  width: 100%;
  height: 2px;
  background: #0e9f48;
  position: absolute;
  bottom: -1px;
  left: 0;
}

.header_drop_nav01 > ul > li > a.is_open {
  position: relative;
}

.header_drop_nav01 > ul > li > a.is_open::after {
  content: '';
  width: 100%;
  height: 2px;
  background: #0e9f48;
  position: absolute;
  bottom: -1px;
  left: 0;
}

.header_drop_nav01 > ul > li > a figure {
  width: 70px;
  text-align: center;
  line-height: 0;
}

.header_drop_nav02 {
  width: 100%;
  padding-top: 32px;
  background: #fff;
  position: absolute;
  top: 61px;
  left: 0;
}

.header_drop_nav02_box {
  display: flex;
}

.header_drop_nav02_box a {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 10px;
  font-size: 0.9375rem;
  font-weight: bold;
  text-align: center;
  line-height: 1.3;
  background: #f5f5f5;
  border-radius: 4px;
  box-shadow: inset 0px -2px 0px 0px rgba(0, 0, 0, 0.2);
  position: relative;
}

.header_drop_nav02_box .header_drop_nav02_last {
 margin-right: 30px;
}

.header_drop_nav02_box .header_drop_nav02_last a {
  align-items: center;
  width: 216px;
  height: 172px;
  padding-bottom: 0;
  background: #ffffff;
  box-shadow: none;
}

.header_drop_nav02 ul {
  display: flex;
}

.header_drop_nav02 li {
  margin-right: 30px;
}

.header_drop_nav02 li:last-child {
  margin-right: 0;
}

.header_drop_nav02 a {
  text-decoration: none;
}

.header_drop_nav02 a:hover {
  opacity: 0.7;
}

.header_drop_nav02_card5 li a {
  width: 216px;
  height: 172px;
}

.header_drop_nav02_card6 li a, .header_drop_nav02_card6 .header_drop_nav02_last a {
  width: 175px;
  height: 172px;
}

.header_drop_nav02_card7 ul {
  flex-wrap: wrap;
}

.header_drop_nav02_card7 ul li:nth-child(3n) {
  margin-right: 0;
}

.header_drop_nav02_card7 ul li:nth-child(n+4) {
  margin-top: 20px;
}

.header_drop_nav02_card7 ul li a {
  width: 298px;
  height: 76px;
}

.header_drop_nav02_icon {
  margin-left: -47px;
  position: absolute;
  top: 14px;
  left: 50%;
}

.header_drop_nav02_icon img {
  line-height: 0;
}

.header_drop_nav02_txt {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 2em;
  margin-bottom: 10px;
}

.header_drop_nav02_01 .header_drop_nav02_last a, .header_drop_nav02_05 .header_drop_nav02_last a, .header_drop_nav02_06 .header_drop_nav02_last a {
  color: #0e9f48;
  border: 1px solid #0e9f48;
}

.header_drop_nav02_02 .header_drop_nav02_last a {
  color: #f4bf1a;
  border: 1px solid #f4bf1a;
}

.header_drop_nav02_03 .header_drop_nav02_last a {
  color: #d5477f;
  border: 1px solid #d5477f;
}

.header_drop_nav02_04 .header_drop_nav02_last a {
  color: #1ca997;
  border: 1px solid #1ca997;
}

.header_drop_nav02_06 .header_drop_nav02_box ul {
  flex-wrap: wrap;
  width: 954px;
}
.header_drop_nav02_06 .header_drop_nav02_box ul li {
width: -webkit-calc(33.33% - 20px);
width: calc(33.33% - 20px);
}
.header_drop_nav02_06 .header_drop_nav02_box ul li:nth-child(4) {
margin-right: 0;
}

.header_drop_nav02_06 .header_drop_nav02_box ul li:nth-child(3n) {
  margin-right: 0;
}

.header_drop_nav02_06 .header_drop_nav02_box ul li a {
  /*flex-direction: column;*/
	flex-wrap: wrap;
  align-items: center;
  width: 298px;
  background: none;
  box-shadow: none;
}

.header_drop_nav02_06 .header_drop_nav02_box ul li a span {
	display: block;
	width: 100%;
  margin-bottom: 10px;
}
.header_drop_nav02_06 .header_drop_nav02_box ul li a span img {
width: auto;
max-width: 100%;
height: auto;
}

.header_drop_nav03 {
  padding-top: 42px;
  border-top: 1px solid #d2d2d2;
  transition: all .3s ease-in-out;
}

.header_drop_nav03 .header_drop_inner {
  display: flex;
}

.header_drop_nav03_box01 {
  width: 384px;
  height: 192px;
  /*padding: 32px 48px;*/
  /*border: 2px solid #dbdbdb;*/
}

.header_drop_nav03_box01 .btn, .header_drop_nav03_box01 .btn_small {
  display: table;
  width: 100%;
}

.header_drop_nav03_box01 .btn a {
  font-size: 1.25rem;
  font-weight: bold;
  line-height: 1.4;
}

.header_drop_nav03_box01 .btn_small {
  /*margin-top: 16px;*/
  margin-top: 10px;
}

.header_drop_nav03_box01 .btn_small a {
  /*height: 40px;*/
  height: 30px;
}

.header_drop_nav03 .header_drop_inner .header_drop_nav03_box01 .btn{
margin-top: 22px;
}

.header_drop_nav03 .header_drop_inner .header_drop_nav03_box01 .btn a{
height: 50px;
font-size: 14px;
}

.header_drop_nav03 .header_drop_inner .header_drop_nav03_box01 .btn_type01 a{
box-shadow: none;
background: #1ca997;
}

.header_drop_nav03 .header_drop_inner .header_drop_nav03_box01 .btn.s_triangle{
margin-top: 0;
margin-bottom: -5px;
}

.header_drop_nav03 .header_drop_inner .header_drop_nav03_box01 .btn.s_triangle a{
height:85px;
font-size: 20px;
}

.header_drop_nav03 .header_drop_inner .header_drop_nav03_box01 .btn_type01.s_triangle a{
background: url("../img/bg_triangle.jpg") no-repeat;
border-radius: 0;
}

.header_drop_nav03 .header_drop_inner .header_drop_nav03_box01 .btn_type01.s_triangle a span{
position: relative;
bottom: 7px;
}

.header_drop_nav03_box02 {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 792px;
  margin-left: 24px;
  padding: 26px 40px;
  background: url(../img/bg_header_drop01.png) 0 0 no-repeat;
}

.header_drop_inner {
  width: 1200px;
  margin: 0 auto;
}

.header_drop_bnr_box + .header_drop_bnr_box {
  margin-left: 40px;
}

.header_drop_bnr_box p {
  margin-top: 13px;
  color: #fff;
  font-weight: bold;
  text-align: center;
}

.header_drop_bnr_box a:hover {
  opacity: 0.7;
}

.header_drop_close {
  margin-top: 32px;
}

.header_drop_close a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 50px;
  font-weight: bold;
  border-top: 1px solid #d2d2d2;
}

.header_drop_close a span {
  margin-right: 24px;
  line-height: 0;
}

ul.sp_drop {
  display: none;
}

.sp_bnr_box {
  margin-top: 40px;
}

.sp_bnr_box + .sp_bnr_box {
  margin-top: 20px;
}

.sp_bnr_box img {
  width: 100%;
}

.header_drawer {
  background: #333333;
  position: fixed;
  width: 100%;
  top: 0;
  right: -100%;
  z-index: 10;
  overflow-y: scroll;
}

.header_drawer a {
  color: #fff;
}

.header_drawer_img {
  background: url(../img/bg_header_drawer.png) no-repeat;
  background-size: cover;
}

.header_drawer_bg {
  float: right;
  width: 1200px;
  margin-left: 200px;
  background: #333333;
  opacity: 0.9;
}

.header_drawer_inner {
  margin: 0 auto 0 auto;
  padding: 120px 0;
  width: 880px;
  position: relative;
}

.header_drawer_utility {
  position: absolute;
  top: 85px;
  left: 0;
}

.header_drawer_utility ul {
  margin-top: 5px;
  float: left;
}

.header_drawer_utility ul li {
  display: inline-block;
  padding: 0 30px 0 32px;
}

.header_drawer_utility ul:first-child {
display: none;
}

.header_drawer_utility ul:nth-child(2) li:nth-child(1) {
  background: url(../img/icon_header_personal.png) no-repeat 0 0;
  background-size: 17px 24px;
}

.header_drawer_utility ul:nth-child(2) li:nth-child(2) {
  background: url(../img/icon_header_company.png) no-repeat 0 0;
  background-size: 24px 27px;
}

.header_drawer_utility ul:nth-child(2) li:nth-child(3) {
  background: url(../img/icon_header_exchange.png) no-repeat 0 0;
  background-size: 24px 23px;
}

.header_drawer_search {
  float: left;
  width: 360px;
  background: #999;
  border-radius: 3px;
}

.header_drawer_search input[type="text"] {
  width: 320px;
  margin: 0;
  padding: 4px 10px 4px 10px;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  appearance: none;
  font-size: 1rem;
  line-height: 1.5;
  color: #fff;
}

.header_drawer_search input[type="submit"] {
  margin-left: 5px;
  background: url(../img/icon_header_search.png) no-repeat 0 0;
  text-indent: -9999px;
  width: 17px;
  height: 16px;
  border: none;
  cursor: pointer;
}

.header_drawer_facebook {
  float: left;
  margin: 0 0 0 22px;
}

.header_drawer_facebook a {
  display: block;
  width: 32px;
  height: 32px;
  background: #fff url(../img/icon_facebook.png) no-repeat 0 0;
  background-size: 32px 32px;
  text-indent: -9999px;
  border-radius: 3px;
}

.header_drawer_facebook a:hover {
  opacity: 0.7;
}

.header_drawer_gnav {
  padding-top: 50px;
}

.header_drawer_gnav > div {
  width: 272px;
  margin-right: 32px;
  float: left;
}

.header_drawer_gnav > div:last-child {
  margin-right: 0;
}

.header_drawer_gnav_tit a {
  display: block;
  margin-bottom: 18px;
  padding: 4px 0 6px 0;
  font-size: 1.75rem;
  border-bottom: 2px solid #0e9f48;
  line-height: 1.8;
}

.header_drawer_gnav_tit a:hover {
  text-decoration: none;
  opacity: 0.7;
}

.header_drawer_gnav .is_close .header_drawer_gnav_content {
  display: block;
}

.header_drawer_gnav_content li {
  margin-top: 8px;
}

.header_drawer_gnav_content li .link a {
  font-size: 1.125rem;
  background-position: 0 3px;
}

.header_drawer_lnav {
  margin-top: 45px;
  padding: 27px 34px;
  background: #434343;
}

.header_drawer_lnav dl {
  float: left;
  width: 250px;
}

.header_drawer_lnav dl:nth-child(2) {
  width: 270px;
}

.header_drawer_lnav dl + dl {
  margin-left: 20px;
}

.header_drawer_lnav dl dt {
  margin-bottom: 16px;
  font-size: 1.125rem;
  color: #ffffff;
}

.header_drawer_lnav dl:nth-child(4) dt {
  display: none;
}

.header_drawer_lnav dl dd {
  margin-top: 6px;
  font-size: 0.875rem;
}

/* content
--------------------------------------------------------- */
/* topicpath */
.topicpath {
  padding: 9px 0 7px 0;
  background: #e2e2e2;
  color: #3a3a3a;
  font-size: 0.875rem;
}

.topicpath li {
  padding-right: 5;
  position: relative;
  display: inline-block;
}

.topicpath li + li {
  padding-left: 12px;
}

.topicpath li + li:before {
  content: ">";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}

/* inner */
.l_inner {
  width: 1200px;
  margin: 0 auto;
}

/* content */
.l_content {
  width: 1200px;
  padding: 28px 40px 80px 40px;
  background: #ffffff;
}

.l_content + .l_content {
  margin-top: 40px;
}

/* column */
.column {
  margin-top: 40px;
  overflow: hidden;
}

.column > ul,
.column > div {
  float: left;
}

.column > div.panel {
	float: none;
}

.column > ul + ul,
.column > ul + div,
.column > div + ul,
.column > div + div {
  margin-left: 32px;
}

/* grid */
.grid1 {
  width: 32px;
}

.grid2 {
  width: 64px;
}

.grid3 {
  width: 96px;
}

.grid4 {
  width: 128px;
}

.grid5 {
  width: 160px;
}

.grid6 {
  width: 192px;
}

.grid7 {
  width: 224px;
}

.grid8 {
  width: 256px;
}

.grid9 {
  width: 288px;
}

.grid10 {
  width: 320px;
}

.grid11 {
  width: 352px;
}

.grid12 {
  width: 384px;
}

.grid13 {
  width: 416px;
}

.grid14 {
  width: 448px;
}

.grid15 {
  width: 480px;
}

.grid16 {
  width: 512px;
}

.grid17 {
  width: 544px;
}

.grid18 {
  width: 576px;
}

.grid19 {
  width: 608px;
}

.grid20 {
  width: 640px;
}

.grid21 {
  width: 672px;
}

.grid22 {
  width: 704px;
}

.grid23 {
  width: 736px;
}

.grid24 {
  width: 768px;
}

.grid25 {
  width: 800px;
}

.grid26 {
  width: 832px;
}

.grid27 {
  width: 864px;
}

.grid28 {
  width: 896px;
}

.grid29 {
  width: 928px;
}

.grid30 {
  width: 960px;
}

.grid31 {
  width: 992px;
}

.grid32 {
  width: 1024px;
}

.grid33 {
  width: 1056px;
}

.grid34 {
  width: 1088px;
}

.grid35 {
  width: 1120px;
}

.grid36 {
  width: 1152px;
}

/* responsive */
/* footer
--------------------------------------------------------- */
footer {
  margin-top: 80px;
  background: #008837;
}

.footer_nav {
  padding: 67px 0 168px 0;
  font-size: 0.875rem;
  background: #fff url(../img/bg_footer_nav.png) no-repeat 50% 100%;
}

.footer_nav dl {
  float: left;
  width: 240px;
}

.footer_nav dl dt {
  margin-bottom: 14px;
  padding-bottom: 12px;
  font-weight: bold;
  position: relative;
}

.footer_nav dl dt:after {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 2px;
  background: #008837;
}

.footer_nav dl dd + dd {
  margin-top: 5px;
}

.footer_utility {
  padding: 26px 0 16px 0;
  background: #fff;
}

.footer_utility_logo {
  width: 330px;
  float: left;
}

.footer_utility_logo a img {
  width: 111px;
  vertical-align: middle;
}

.footer_utility_logo a + a {
  margin-left: 30px;
}

.footer_utility_logo a + a + img {
  width: 131px;
}

.footer_utility_nav {
  float: left;
  width: 870px;
}

.footer_utility_nav li {
  display: inline-block;
  padding-right: 30px;
  margin-bottom: 10px;
  font-size: 0.875rem;
}

.footer_pagetop .l_inner {
  position: relative;
}

.footer_pagetop .l_inner p {
  width: 60px;
  height: 60px;
  margin: -34px 0 0 0;
  background: #0e9f48;
  box-shadow: 0px 2px 0px 0px #0b7f3a;
  border-radius: 50%;
  position: absolute;
  right: 0;
  top: 0;
  text-indent: -99999px;
  cursor: pointer;
}

.footer_pagetop .l_inner p:hover {
  background: #51b77a;
}

.footer_pagetop .l_inner p:before {
  content: '';
  display: block;
  width: 20px;
  height: 12px;
  position: absolute;
  top: 24px;
  left: 20px;
  background: url(../img/icon_pagetop_pc.png) no-repeat 0 0;
}

.footer_copyright {
  padding: 15px 0 17px 0;
  color: #fff;
  text-align: center;
  font-size: 0.75rem;
}

/* module
========================================================================== */
/* headline
--------------------------------------------------------- */
h2 + *, h3 + *, h3 + *, h4 + * {
  margin-top: 20px;
}

* + h2 {
  margin-top: 52px;
}

.hl_block {
  padding: 96px 0 50px 0;
  text-align: center;
}

.hl_block h1 {
  font-size: 2.5rem;
  font-weight: normal;
}

.hl_block img {

  margin: 5px 12px 0 0;
  vertical-align: top;
}

h1.hl {
  padding-bottom: 6px;
  font-size: 2.5rem;
  font-weight: normal;
  border-bottom: 1px solid #0e9f49;
}

h2.hl {
  padding-bottom: 6px;
  font-size: 2.5rem;
  font-weight: normal;
  border-bottom: 1px solid #0e9f49;
}

h3.hl {
  padding-left: 17px;
  font-size: 2rem;
  font-weight: normal;
  border-left: 8px solid #0e9f49;
}

* + h3.hl {
  margin-top: 40px;
}

h4.hl {
  font-size: 1.375rem;
  font-weight: bold;
}

h4.hl_bg {
  padding: 5px 0 4px 16px;
  background: #e2fbec;
  border-left: 1px solid #0e9f48;
  font-size: 1.375rem;
}

h4.hl_bg span {
  display: inline-block;
  padding: 0 20px;
  margin-left: 20px;
  background: #0e9f48;
  color: #ffffff;
  border-radius: 50px;
  vertical-align: middle;
  font-size: 1.25rem;
}

h4.hl_bg span sup {
  font-size: 0.75rem;
  font-weight: normal;
}

h4.hl_bg + p {
  padding: 0 16px;
}

* + h4.hl {
  margin-top: 40px;
}

* + h4.hl_bg {
  margin-top: 50px;
}

p + h4.hl_bg {
  margin-top: 34px;
}

h5.hl {
  font-size: 1.125rem;
  font-weight: bold;
}

/* table
--------------------------------------------------------- */
.table th,
.table td {
  padding: 14px 20px;
  border: 2px solid #e6e6e6;
}

.table_tit {
  background: #0e9f49;
  color: #ffffff;
  text-align: left;
  font-size: 1.125rem;
}

.table_tit_color02 {
  background: #b3b3b3;
}

.table_subtit {
  background: #f5f5f5;
}

.table_bg {
  background: #e6e6e6;
}

.table_icon01 {
  background: url(../img/icon_table01.png) no-repeat 50% 50%;
}

.table_icon02 {
  background: url(../img/icon_table02.png) no-repeat 50% 50%;
}

.table caption {
  margin-bottom: 10px;
  font-size: 1.125rem;
  font-weight: bold;
  text-align: left;
}

.table + .table {
  margin-top: 20px;
}

/* txt
--------------------------------------------------------- */
.txt_left {
  text-align: left;
}

.txt_center {
  text-align: center;
}

.txt_right {
  text-align: right;
}

.txt_top {
  vertical-align: top;
}

.txt_middle {
  vertical-align: middle;
}

.txt_bold {
  font-weight: bold;
}

.txt_line {
	text-decoration: underline;
}

.txt_normal {
  font-weight: normal;
}

.txt_indent {
  text-indent: 1em;
}

.emphasis01 {
  margin-bottom: 4px;
  color: #d60000;
  font-weight: bold;
}

.emphasis02 {
  margin-bottom: 4px;
  font-size: 1.5rem;
  color: #d60000;
  font-weight: bold;
}

/* link
--------------------------------------------------------- */
.link a {
  padding-left: 25px;
  background: url(../img/icon_arrow.png) no-repeat 0 40%;
	text-decoration: none;
}
.link a:hover {
	text-decoration: underline;
	opacity: 1;
}
.link_pdf a {
	text-decoration: none;
}
.link_pdf a:hover {
	text-decoration: underline;
	opacity: 1;
}
.link_pdf > a:after {
  content: ' ';
  display: inline-block;
  width: 16px;
  height: 16px;
  margin: 0 8px;
  background: url(../img/icon_pdf.png) no-repeat 0 0;
}
.link_blank a {
	text-decoration: none;
}
.link_blank a:hover {
	text-decoration: underline;
	opacity: 1;
}
.link_blank > a:before {
  content: ' ';
  display: inline-block;
  width: 24px;
  height: 16px;
  background: url(../img/icon_blank.png) no-repeat 0 0;
}
.campaign_slider .link_blank > a:before {
content: none;
}

.link_child_list {
margin-left: 1.5em;
}

/* btn
--------------------------------------------------------- */
.btn,
.btn_small {
  display: inline-block;
vertical-align: top;
	margin-top: 10px;
}
.btn button,
.btn input[type="submit"],
.btn a,
.btn_small button,
.btn_small a {
  display: table-cell;
  min-width: 256px;
  height: 72px;
  vertical-align: middle;
  border-radius: 4px;
  font-size: 1.125rem;
  text-align: center;
  text-decoration: none;
}
.panel .btn a,
.panel .btn_small a {
min-width: auto;
}

.btn button:hover,
.btn input[type="submit"]:hover,
.btn a:hover,
.btn_small button:hover,
.btn_small a:hover {
  opacity: 0.7;
	cursor: pointer;
}

.btn button em,
.btn a em,
.btn_small button em,
.btn_small a em {
  display: block;
}

.btn button,
.btn_small button {
  border: none;
}

.btn.link_blank > a,
.btn_small.link_blank > a {
  padding-left: 34px;
  position: relative;
}

.btn.link_blank > a:before,
.btn_small.link_blank > a:before {
  position: absolute;
  top: 50%;
  left: 10px;
  margin-top: -8px;
}

.btn_small a {
  min-width: 126px;
  font-size: 1rem;
  height: 48px;
}

.btn_type01 a {
  box-shadow: 0px 2px 0px 0px #0b7f3a;
  background: #0e9f48;
  color: #ffffff;
}

.btn_type02 a {
  box-shadow: 0px 2px 0px 0px #cccccc;
  background: #ffffff;
  color: #0e9f48;
}

.btn_type03 a {
  box-shadow: 0px 2px 0px 0px #cccccc;
  background: #f5f5f5;
  color: #0e9f48;
}

.btn_type04 a {
  background: #ffffff;
  color: #0e9f48;
  border: 1px solid #0e9f48;
}

.btn_type05 a {
  box-shadow: 0px 2px 0px 0px #168779;
  background: #1ca997;
  color: #ffffff;
}

.btn_type06 a {
  box-shadow: 0px 2px 0px 0px #166687;
  background: #1c80a9;
  font-size: 1.5rem;
  color: #ffffff;
  font-weight: bold;
}

.btn_type07 button,
.btn_type07 a {
  box-shadow: 0px 2px 0px 0px #ab0000;
  background: #d60000;
  font-size: 1.5rem;
  color: #ffffff;
  font-weight: bold;
}

.btn_type07 button span,
.btn_type07 a span {
  display: inline-block;
  width: 100%;
  margin-top: 8px;
  font-size: 1rem;
  line-height: 1.2;
}

.btn_type08 > span,
.btn_type08 button,
.btn_type08 a {
  box-shadow: 0px 2px 0px 0px #bc4e00;
  background: #eb6100;
  font-size: 1.5rem;
  color: #ffffff;
  font-weight: bold;
}
.btn_type08 > span {
  display: inline-block;
	border-radius: 4px;
}
.btn_type08 span input[type="submit"],
.btn_type08 button span,
.btn_type08 a span,
.btn_type06 a span {
  display: inline-block;
  width: 100%;
  font-size: 1rem;
  line-height: 1.2;
}
.btn_type08 span input[type="submit"] {
background: none;
border: none;
font-size: 1.125rem;
color: #ffffff;
font-weight: bold;
}

.btn_type09 button,
.btn_type09 a {
  box-shadow: 0px 2px 0px 0px #c69600;
  background: #fabe00;
  font-size: 1.5rem;
  color: #ffffff;
}

.btn_type09 button span,
.btn_type09 a span {
  display: inline-block;
  width: 100%;
  margin-top: 8px;
	font-size: 1.125rem;
  line-height: 1.2;
}
.btn_icon08 a {
  padding-right: 10px;
  line-height: 1.3;
}

.btn_icon08 a::before {
  width: 40px;
  height: 31px;
  background: url("../img/icon_header_drop05.png") 0 0 no-repeat;
  margin-top: -15px;
}




.btn_narrow a {
  min-width: 208px;
  height: 40px;
  background: #ffffff;
  font-size: 1rem;
  font-weight: bold;
  color: #0e9f48;
  border: 1px solid #0e9f48;
}

.btn_productSummary {
  margin-top: 40px;
}

.btn_productSummary a {
  min-width: 292px;
  background: #ffffff;
  color: #0e9f48;
  border: 1px solid #0e9f48;
}

.btn_icon01 a {
  min-width: 150px;
}

.btn_icon01 a span {
  padding-left: 22px;
  position: relative;
}

.btn_icon01 a span:before {
  content: ' ';
  position: absolute;
  width: 16px;
  height: 16px;
  top: 0;
  left: 0;
  background: url(../img/icon_tit_s16.png) no-repeat 0 0;
}

.btn_icon02 a span {
  padding-left: 38px;
  position: relative;
}

.btn_icon02 a span:before {
  content: ' ';
  position: absolute;
  width: 32px;
  height: 32px;
  top: -5px;
  left: 0;
  background: url(../img/icon_tit_s32.png) no-repeat 0 0;
}

.btn_icon03, .btn_icon04, .btn_icon05, .btn_icon06, .btn_icon07 {
  vertical-align: top;
}

.btn_icon03 a, .btn_icon04 a, .btn_icon05 a, .btn_icon06 a, .btn_icon07 a {
  display: flex;
  align-items: center;
  justify-content: center;
  vertical-align: top;
  padding-top: 7px;
  padding-left: 64px;
  font-size: 1.375rem;
  position: relative;
}

.btn_icon03 a::before, .btn_icon04 a::before, .btn_icon05 a::before, .btn_icon06 a::before, .btn_icon07 a::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 22px;
}

.btn_icon03 a::before {
  width: 38px;
  height: 35px;
  background: url("../img/personal/icn_btn_simu.png") 0 0 no-repeat;
  margin-top: -18px;
}

.btn_icon04 a {
  line-height: 1.3;
}

.btn_icon04 a::before {
  width: 42px;
  height: 28px;
  background: url("../img/personal/icn_btn_sumai.png") 0 0 no-repeat;
  margin-top: -14px;
}

.btn_icon05 a {
  padding-right: 10px;
}

.btn_icon05 a::before {
  width: 38px;
  height: 23px;
  background: url("../img/personal/icn_btn_shop.png") 0 0 no-repeat;
  margin-top: -12px;
}

.btn_icon06 a {
  padding-right: 30px;
}

.btn_icon06 a::before {
  width: 32px;
  height: 40px;
  background: url("../img/personal/icn_btn_doc.png") 0 0 no-repeat;
  margin-top: -20px;
}

.btn_icon07 a {
  padding-right: 10px;
  line-height: 1.3;
}

.btn_icon07 a::before {
  width: 40px;
  height: 31px;
  background: url("../img/personal/icn_btn_net.png") 0 0 no-repeat;
  margin-top: -15px;
}

.btn_icon08 a span,
.btn_icon09 a span,
.btn_icon10 a span,
.btn_icon11 a span,
.btn_icon12 a span,
.btn_icon13 a span{
  padding-left: 42px;
  position: relative;
}
.btn_icon08 a span:before,
.btn_icon09 a span:before,
.btn_icon10 a span:before,
.btn_icon11 a span:before,
.btn_icon12 a span:before,
.btn_icon13 a span:before{
  content: ' ';
  position: absolute;
  width: 32px;
  height: 32px;
  top: -5px;
  left: 0;
}
.btn_icon08 a span:before {
  background: url("../img/icon_smart_01.png") no-repeat 0 0;
}
.btn_icon09 a span:before {
  background: url("../img/icon_smart_02.png") no-repeat 0 0;
}
.btn_icon10 a span:before {
  background: url("../img/icon_smart_03.png") no-repeat 0 0;
}
.btn_icon11 a span:before {
  background: url("../img/icon_smart_04.png") no-repeat 0 0;
}
.btn_icon12 a span:before {
  background: url("../img/icon_smart_05.png") no-repeat 0 0;
}
.btn_icon13 a span:before {
  background: url("../img/icon_smart_06.png") no-repeat 0 0;
}

.btn_txt01 a {
  color: #333333;
  font-weight: bold;
  font-size: 1rem;
}

.btn_box01 {
  margin-top: 56px;
  padding: 32px 0 30px;
  text-align: center;
  background: #f5f5f5;
}

.btn_box01 .btn_caption {
  font-size: 1.125rem;
  font-weight: bold;
}

.btn_box01 .btn_caption span {
  display: inline-block;
  padding: 0 30px;
  position: relative;
}

.btn_box01 .btn_caption span::before, .btn_box01 .btn_caption span::after {
  content: "";
  width: 24px;
  height: 1px;
  border-top: 2px solid #000;
  position: absolute;
  top: 50%;
  transform: translateY(-55%);
}

.btn_box01 .btn_caption span::before {
  left: 0;
  transform: rotateZ(60deg);
}

.btn_box01 .btn_caption span::after {
  right: 0;
  transform: rotateZ(-60deg);
}

.btn_box01 .btn_caption + .btn {
  margin-top: 16px;
}

.btn_box01 .btn.btn_big a {
  min-width: 352px;
}

.btn_box01 .btn + .btn {
  margin-left: 32px;
}

.btn_box01 .btn > .btn_caption {
  display: inline-block;
  margin-bottom: 16px;
}

.btn_box01 .btn_type07 a {
  min-width: 288px;
}

.btn_box02 {
  text-align: center;
	letter-spacing: -.4em;
}
.btn_box02.txt_left {
  text-align: left;
}
.btn_box02 .btn {
	letter-spacing: normal;
  margin-right: 32px;
}
.btn_box02 .btn:last-child {
  margin-right: 0;
}
.btn_box02.btn_box_flag .btn.grid5:nth-child(5n) {
  margin-right: 0;
}



.btn_box03 {
  margin-top: 35px;
  text-align: center;
}

/* list
--------------------------------------------------------- */
.list > dt {
  font-weight: bold;
}

.list > dd {
  margin-top: 3px;
}

.list > dd + dt {
  margin-top: 10px;
}

.list_type02 {
  margin-top: 16px;
  text-align: left;
}

.list_type02 dt {
  display: inline-block;
  padding: 0 20px;
  background: #0e9f48;
  color: #ffffff;
  border-radius: 50px;
}

.list_type02 dd {
  margin-top: 10px;
}

.list_type02_num {
  padding-left: 1em;
  text-indent: -1em;
}

.list_note > li {
  padding-left: 1em;
  position: relative;
}

.list_note > li:before {
  content: '※';
  position: absolute;
  top: 0;
  left: 0;
}

.list_note_outer {
  padding: 20px 26px;
  background: #f0f0f0;
}

.list_disc {
  margin-left: 1.5em;
}

.list_disc > li {
  list-style-type: disc;
}

.list_num {
  margin-left: 1.5em;
}

.list_num > li {
  list-style-type: decimal;
}

.list_parentheses{
counter-reset: my-counter;
margin:0;
}
.list_parentheses > li{
padding-left: 2em;
}
.list_parentheses > li:before{
display: block;
content: "(" counter(my-counter) ") ";
counter-increment: my-counter;
float: left;
margin-left: -30px;
}

.list_num_circle {
}
.list_num_circle > li {
text-indent: -1.35em;
padding-left: 1.35em;
}
.list_num_circle > li * {
text-indent: 0;
}
.list_num_circle > li > .list_num_circle > li {
text-indent: -1.35em;
}
.txt_circle.text_circle_type02 .circle {
vertical-align: top;
padding-top: 2em;
}
.txt_circle.text_circle_type02 .circle:before {
top: 0;
margin-top: 0;
}

.list_kana > li {
text-indent: -1.6em;
padding-left: 1.6em;
}

.list_upper_latin {
  margin-left: 1.5em;
}

.list_upper_latin > li {
  list-style-type: upper-latin;
}

.list_attention_indent {
padding-left: 4em;
text-indent: -4em;
}
.list_attention_indent.list_attention_indent_attention {
padding-left: 1.7em;
text-indent: -1.7em;
}
.list_attention_indent.list_attention_indent_attention_num {
padding-left: 2.7em;
text-indent: -2.7em;
}
.list_attention_indent.list_attention_indent_remittance {
padding-left: 10em;
text-indent: -10em;
}
.list_attention_indent.list_attention_indent_one {
padding-left: 1em;
text-indent: -1em;
}

/* panel
--------------------------------------------------------- */
.panel {
  padding: 30px;
  border: 4px solid #f5f5f5;
}

.panel_tit {
  font-size: 1.375rem;
  font-weight: bold;
}
.panel_tit div,
.panel_tit span {
	font-size: 1.125rem;
	display: inline-block;
	margin-top: 15px;
}
.panel_txt {
  margin-top: 12px;
  line-height: 1.5;
}

.panel .btn {
  margin-top: 20px;
}

.panel_icon .panel_tit {
  min-height: 48px;
  padding: 8px 0 0 64px;
  position: relative;
}

.panel_icon .panel_tit img {
  position: absolute;
  top: 0;
  left: 0;
}

/* box
--------------------------------------------------------- */
/* note */
.box_note {
  margin-top: 40px;
  padding: 30px 36px;
  border: 4px solid #f5f5f5;
}

.box_note_tit {
  padding-bottom: 16px;
  font-size: 1.375rem;
  font-weight: bold;
  border-bottom: 2px solid #f5f5f5;
}

.box_note_tit img {
  margin-right: 16px;
  vertical-align: middle;
}

.box_note_content {
  padding-top: 34px;
}

/* contact */
.box_contact {
  margin-top: 40px;
  padding: 30px 36px;
  border: 4px solid #0e9f48;
}

.box_contact_tit {
  padding-bottom: 10px;
  font-size: 1.375rem;
  font-weight: bold;
  border-bottom: 2px solid #f5f5f5;
}

.box_contact_content {
  padding-top: 25px;
}

.box_contact_subtit {
  line-height: 1.75;
}

.box_contact_tel {
  margin-top: 8px;
}

.box_contact_tel span {
  font-size: 1.5rem;
  color: #0e9f48;
  line-height: 1.16;
}
.icon_tel .box_contact_tel {
display: table;
margin-top: 15px;
}
.icon_tel .box_contact_tel + .box_contact_tel {
margin-top: 8px;
}
.icon_tel .box_contact_tel figure {
display: table-cell;
vertical-align: middle;
min-width: 55px;
}
.icon_tel .box_contact_tel span {
display: table-cell;
vertical-align: middle;
}
.column > div.panel .icon_tel {
letter-spacing: -.4em;
}
.column > div.panel .icon_tel .icon_tel_item {
display: inline-block;
letter-spacing: normal;
margin-left: 25px;
}
.column > div.panel .icon_tel .icon_tel_item:first-child {
margin-left: 0;
}


/* point */
.point_icon {
  display: block;
  min-height: 88px;
  text-align: center;
  background: url(../img/icon_point.png) no-repeat 0 0;
  background-size: 88px 88px;
}

/* qa */
.qa {
  padding-bottom: 32px;
  border-bottom: 2px solid #f5f5f5;
}

.qa a {
  text-decoration: underline;
}

.qa a:hover {
  text-decoration: none;
  opacity: .7;
}

.qa_q {
  display: block;
  min-height: 48px;
  padding: 10px 0 20px 68px;
  position: relative;
}

.qa_q:before {
  content: ' ';
  position: absolute;
  width: 48px;
  height: 48px;
  top: 0;
  left: 0;
  background: url(../img/icon_qa_q.png) no-repeat 0 0;
}

.qa_a {
  display: block;
  min-height: 80px;
  padding: 10px 0 20px 68px;
  position: relative;
}

.qa_a:before {
  content: ' ';
  position: absolute;
  width: 48px;
  height: 48px;
  top: 0;
  left: 0;
  background: url(../img/icon_qa_a.png) no-repeat 0 0;
}

.qa_a + .qa_q {
  padding-top: 42px;
  border-top: 2px solid #f5f5f5;
}

.qa_a + .qa_q:before {
  top: 32px;
}

.qa_a + .qa_q {
  margin-top: 32px;
}

.qa_a .list_note {
  margin-top: 24px;
  font-size: 14px;
}

.qa_a .list_disc {
  margin-top: 26px;
}

.qa_a .link,
.qa_a .link_blank {
  margin-top: 15px;
}

.qa_a .list {
  margin-top: 10px;
}

.qa_a .list dd > .list_disc,
.qa_a .table td > .list_disc {
  margin-top: 0;
}

.qa.js_accordion_qa > .qa_q {
  margin-top: 42px;
  padding-right: 42px;
  position: relative;
  cursor: pointer;
}

.qa.js_accordion_qa > .qa_q:after {
  display: block;
  content: '';
  width: 32px;
  height: 32px;
  position: absolute;
  top: 8px;
  right: 0;
  background: url(../img/icon_accordion_open.png) no-repeat 0 0;
  transform: rotate(0deg);
}

.qa.js_accordion_qa > .qa_q.is_open:after {
  transform: rotate(180deg);
}

.qa.js_accordion_qa > .qa_a {
  width: 100%;
  min-height: auto;
  display: none;
}

.qa.js_accordion_qa > .qa_a + .qa_q:after {
  top: 40px;
}

/* accordion */
.accordion {
  border-bottom: 2px solid #ebebeb;
}

.accordion_tit {
  padding: 30px 0 30px 50px;
  font-size: 1.375rem;
  font-weight: bold;
  background: url(../img/icon_accordion_close.png) no-repeat 0 31px;
  cursor: pointer;
}

.accordion_tit.is_open {
  background: url(../img/icon_accordion_open.png) no-repeat 0 31px;
}

.accordion_content {
  display: none;
}

.accordion_content + .accordion_tit {
  border-top: 2px solid #ebebeb;
}

.accordion_content .qa_a {
  border-bottom: 0;
}

/* width
--------------------------------------------------------- */
.w10p {
  width: 10%;
}

.w15p {
  width: 15%;
}

.w25p {
  width: 25%;
}

.w30p {
  width: 30%;
}

.w100p {
  width: 100%;
}

.w100p.btn_small a, .w100p.btn a {
  width: 1200px;
}

/* element
--------------------------------------------------------- */
.step li {
  position: relative;
  padding-left: 105px;
}

.step li + li {
  margin-top: 16px;
}

.step li:last-child:before, .step li:last-child:after {
  display: none;
}

.step li:before {
  display: block;
  content: '';
  position: absolute;
  width: 2px;
  top: 104px;
  left: 42px;
  height: calc(100% - 104px);
  background: #0e9f48;
}

.step li:after {
  position: absolute;
  content: '';
  width: 9px;
  height: 9px;
  bottom: 0px;
  left: 38px;
  border-top: 2px solid #0e9f48;
  border-right: 2px solid #0e9f48;
  -webkit-transform: rotate(140deg);
  transform: rotate(140deg);
}

.step li .step_content {
  padding: 0 20px 35px 0;
}

.step li:last-child .step_content {
  padding-bottom: 0;
}

.step li li {
margin-top: 0;
padding-left: 0;
}
.step li li:before {
content: none;
}
.step li li:after {
content: none;
}

.step_tit {
  padding: 26px 0 0 0;
  font-weight: bold;
  font-size: 1.375rem;
}

.step_content {
  margin-top: 20px;
}

.step_icon01 {
  background: url(../img/icon_step01.png) no-repeat 0 0;
  background-size: 88px 88px;
}

.step_icon02 {
  background: url(../img/icon_step02.png) no-repeat 0 0;
  background-size: 88px 88px;
}

.step_icon03 {
  background: url(../img/icon_step03.png) no-repeat 0 0;
  background-size: 88px 88px;
}
.step_icon04 {
  background: url(../img/icon_step04.png) no-repeat 0 0;
  background-size: 88px 88px;
}
.step_icon05 {
  background: url(../img/icon_step05.png) no-repeat 0 0;
  background-size: 88px 88px;
}
.step_icon06 {
  background: url(../img/icon_step06.png) no-repeat 0 0;
  background-size: 88px 88px;
}
.step_icon07 {
  background: url(../img/icon_step07.png) no-repeat 0 0;
  background-size: 88px 88px;
}
.step_icon08 {
  background: url(../img/icon_step08.png) no-repeat 0 0;
  background-size: 88px 88px;
}
.step_icon09 {
  background: url(../img/icon_step09.png) no-repeat 0 0;
  background-size: 88px 88px;
}

.news {
  position: relative;
}

.news_outer > div {
  position: relative;
}

.news_tit {
  padding: 0 184px 20px 0;
  font-size: 1.375rem;
  font-weight: bold;
  border-bottom: 2px solid #0e9f48;
}

.news_content ul {
  margin-top: 10px;
}

.news_content ul li {
  padding: 16px 0 19px 0;
}

.news_content ul li + li {
  border-top: 1px dotted #d9d9d9;
}

.news_content ul li span {
  display: block;
  float: left;
  width: 140px;
}
.news_content ul li span.ico_new {
width: 60px;
color: #ff0000;
font-weight: bold;
}

.news_content ul li p {
  overflow: hidden;
}
.news_pager {
min-height: 35px;
}
.news_pager:after {
content: "";
display: block;
clear: both;
}
.news_pager .news_pager_prev,
.news_pager .news_pager_next {
position: relative;
width: 30px;
height: 30px;
background: #0e9f48;
border: none;
border-radius: 5px;
box-shadow: 0px 2px 0px 0px #0b7f3a;
cursor: pointer;
z-index: 10;
text-indent: -9999px;
}
.news_pager .news_pager_prev a,
.news_pager .news_pager_next a {
display: block;
width: 100%;
height: 100%;
}
.news_pager .news_pager_prev {
float: left;
}
.news_pager .news_pager_next {
float: right;
}
.news_pager .news_pager_prev:before,
.news_pager .news_pager_next:before {
content: "";
position: absolute;
top: 50%;
margin-top: -4px;
width: 8px;
height: 8px;
bottom: 0px;
border-top: 2px solid #fff;
border-right: 2px solid #fff;
}
.news_pager .news_pager_next:before {
left: 12px;
-webkit-transform: rotate(45deg);
transform: rotate(45deg);
}
.news_pager .news_pager_prev:before {
right: 12px;
-webkit-transform: rotate(225deg);
transform: rotate(225deg);
}
.news_pager .news_pager_prev:after,
.news_pager .news_pager_next:after {
content: "";
position: absolute;
top: 50%;
left: 50%;
width: 14px;
height: 2px;
margin-left: -8px;
background: #fff;
}
.news_pager .news_pager_next:after {
margin-left: -8px;
}
.news_pager .news_pager_prev:after {
margin-left: -6px;
}

.news_note {
  margin-top: 15px;
  padding: 16px 17px 16px 17px;
  background: #faf9d4;
  color: #d60000;
  border: 2px solid #d60000;
  font-size: 1.25rem;
}

.news_note_icon {
  padding-left: 47px;
  background: url(../img/icon_note.png) no-repeat 0 2px;
}

.news_note_outer {
  display: block;
}

.news_note_outer:hover {
  opacity: 0.7;
  text-decoration: none;
}

.news_btn {
  position: absolute;
  right: 0;
  top: 0;
	margin-top: 0;
}

.news_btn a {
  width: 164px;
  padding: 8px 0 6px 0;
}

/* slider
--------------------------------------------------------- */
/* slider */
.bx-prev,
.bx-next,
.slick-arrow {
  position: absolute;
  top: 50%;
  width: 60px;
  height: 60px;
  background: #0e9f48;
  border: none;
  border-radius: 5px;
  box-shadow: 0px 2px 0px 0px #0b7f3a;
  cursor: pointer;
  margin-top: -30px;
  z-index: 10;
  text-indent: -9999px;
}

.bx-prev:hover,
.bx-next:hover,
.slick-arrow:hover {
  opacity: 0.7;
}

.bx-prev:before, .bx-prev:after,
.bx-next:before,
.bx-next:after,
.slick-arrow:before,
.slick-arrow:after {
  position: absolute;
  content: '';
  z-index: 12;
}

.bx-prev:before,
.bx-next:before,
.slick-arrow:before {
  top: 50%;
  left: 22px;
  margin-top: -6px;
  width: 12px;
  height: 12px;
  bottom: 0px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
}

.bx-prev:after,
.bx-next:after,
.slick-arrow:after {
  top: 50%;
  left: 50%;
  width: 18px;
  height: 2px;
  margin-left: -9px;
  background: #fff;
}

.bx-prev,
.slick-prev {
  left: 0;
  z-index: 5;
}

.bx-prev:before,
.slick-prev:before {
  -webkit-transform: rotate(225deg);
  transform: rotate(225deg);
}

.bx-next,
.slick-next {
  right: 0;
  z-index: 5;
}

.bx-next:before,
.slick-next:before {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

/* slick-dots */
.slick-dots {
  margin-top: 20px;
}

.slick-dots li {
  margin: 0 10px;
  display: inline-block;
}

.slick-dots li button {
  display: block;
  width: 14px;
  height: 14px;
  padding: 0;
  border-radius: 50%;
  background: #dbdbdb;
  border: none;
  text-indent: -9999px;
  cursor: pointer;
}

.slick-dots li.slick-active button {
  background: #43a047;
}

/* SP
-------------------------------------------------- */
@media only screen and (max-width: 640px) {
  /* layout
========================================================================== */
  html a:hover,
  body a:hover {
    text-decoration: none;
  }
  body {
    padding-top: 68px;
    min-width: 320px;
  }
  .display_pc {
    display: none;
  }
  .display_sp {
    display: block;
  }
  /* header
--------------------------------------------------------- */
  .header_top {
    min-width: 100%;
    height: 68px;
  }
  .header_logo {
    padding-left: 16px;
  }
  .header_logo img {
    width: 95px;
  }
  .header_utility li {
    display: none;
  }
  .header_utility li:last-child {
    display: block;
    padding-right: 0;
    position: absolute;
    top: 16px;
    right: 84px;
  }
  .header_gnav_icon {
    width: 68px;
    height: 68px;
  }
  .header_nav {
    display: none;
  }
  .header_search {
    margin-top: 64px;
    float: none;
    width: 100%;
  }
  .header_search input[type="text"] {
    width: calc(100% - 40px);
  }
  .header_drop {
    display: none !important;
  }
  .header_drop_bg {
    display: none !important;
  }
  ul.sp_drop {
    display: none;
  }
  ul.sp_drop > li {
    margin-top: 0;
    border-top: 1px solid #474747;
  }
  ul.sp_drop > li > a {
    padding: 20px 0 20px 88px;
    background-position: 64px 50%;
  }
  .sp_bnr_box {
    margin-top: 40px;
  }
  .sp_bnr_box + .sp_bnr_box {
    margin-top: 20px;
  }
  .sp_bnr_box img {
    width: 100%;
  }
  .header_drawer_img {
    background: none;
  }
  .header_drawer_bg {
    float: none;
    width: auto;
    margin-left: 0;
    opacity: 1;
  }
  .header_drawer_inner {
    width: 100%;
    padding: 0 20px 0 20px;
  }
  .header_drawer_utility {
    position: relative;
    top: 0;
    left: 0;
  }
  .header_drawer_utility ul {
    float: none;
    width: 100%;
  }
  .header_drawer_utility ul li {
    display: block;
    padding: 0;
    border-bottom: 1px solid #474747;
  }
  .header_drawer_utility ul {
  display: block;
  }
  .header_drawer_utility ul:first-child {
    display: block;
  }
  .header_drawer_utility ul:first-child li:nth-child(1) {
  display: block;
  }
  .header_drawer_utility ul:nth-child(2) li:nth-child(1) {
    display: none;
  }
  .header_drawer_utility ul:nth-child(2) li:nth-child(2) {
    display: none;
  }
  .header_drawer_utility ul:nth-child(2) li:nth-child(3) {
    background-position: 20px 50%;
  }
  .header_drawer_utility ul:first-child li:first-child a {
  display: block;
  padding: 20px 20px 20px 50px;
  font-size: 0.875rem;
  line-height: 1.7;
  position: relative;
  background: url(../../img_v2/icon_visual_link04.png) no-repeat 16px 50%;
  -webkit-background-size: 24px 23px;
  background-size: 20px 25px;
}
  .header_drawer_utility ul:nth-child(2) li:nth-child(3) a {
    display: block;
    padding: 20px 20px 20px 52px;
    font-size: 0.875rem;
    line-height: 1.7;
    position: relative;
  }
  .header_drawer_utility ul li a:before {
    content: '';
    display: block;
    width: 20px;
    height: 20px;
    position: absolute;
    top: 22px;
    right: 12px;
    background: url(../img/icon_drawer_nav_close.png) no-repeat 0 0;
    background-size: 20px 20px;
  }
  .header_drawer_smart {
    position: relative;
    top: 0;
    left: 0;
  }
  .header_drawer_smart ul {
    float: none;
    width: 100%;
  }
  .header_drawer_smart ul li {
    display: block;
    padding: 0;
    border-bottom: 1px solid #474747;
  }
  .header_drawer_smart ul {
  display: block;
	}
  .header_drawer_smart ul:nth-child(2) li:nth-child(3) {
    background-position: 20px 50%;
  }
  .header_drawer_smart ul:first-child li:first-child a {
  display: block;
  padding: 20px 20px 20px 20px;
  font-size: 0.875rem;
  line-height: 1.7;
  position: relative;
  }
  .header_drawer_smart ul li a:before {
    content: '';
    display: block;
    width: 20px;
    height: 20px;
    position: absolute;
    top: 22px;
    right: 12px;
    background: url(../img/icon_drawer_nav_close.png) no-repeat 0 0;
    background-size: 20px 20px;
  }
  .header_drawer_search {
    margin-top: 32px;
    float: none;
    width: 100%;
  }
  .header_drawer_search input[type="text"] {
    width: calc(100% - 40px);
  }
  .header_drawer_facebook {
    float: none;
    margin: 40px 0 0 0;
    padding-bottom: 40px;
  }
  .header_drawer_facebook a {
    margin: 0 auto;
    width: 20px;
    height: 20px;
    background: url(../img/icon_facebook_sp.png) no-repeat 0 0;
    background-size: 20px 20px;
  }
  .header_drawer_gnav {
    position: relative;
    padding-top: 70px;
  }
  .header_drawer_gnav > div {
    width: 100%;
    margin-right: 0;
  }
  .header_drawer_gnav .is_open .header_drawer_gnav_tit a:before {
    background: url(../img/icon_drawer_nav_open.png) no-repeat 0 0;
    background-size: 20px 20px;
  }
  .header_drawer_gnav_btn {
    width: calc((100% - 10px)/3);
  }
  .header_drawer_gnav_btn_box {
    margin-bottom: 15px;
  }
  .header_drawer_gnav_btn_box ul {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .header_drawer_gnav_btn_box li:nth-child(1) a {
    background: #484848 url(../img/icon_header_atm.png) no-repeat 50% 10px;
    background-size: 25px 18px;
  }
  .header_drawer_gnav_btn_box li:nth-child(2) a {
    background: #484848 url(../img/icon_header_kojin.png) no-repeat 50% 10px;
    background-size: 15px 21px;
  }
  .header_drawer_gnav_btn_box li:nth-child(3) a {
    background: #484848 url(../img/icon_header_hojin.png) no-repeat 50% 10px;
    background-size: 22px 24px;
  }
  .header_drawer_gnav_btn a {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    width: 100%;
    height: 60px;
    border: 1px solid #ffffff;
    border-radius: 3px;
    line-height: 1.7;
    font-size: 0.875rem;
  }
  .header_drawer_gnav_tit a {
    padding: 20px;
    margin-bottom: 0;
    font-size: 1.25rem;
    line-height: 1.2;
    position: relative;
  }
  .header_drawer_gnav_tit a:before {
    content: '';
    display: block;
    width: 20px;
    height: 20px;
    position: absolute;
    top: 22px;
    right: 12px;
    background: url(../img/icon_drawer_nav_close.png) no-repeat 0 0;
    background-size: 20px 20px;
  }
  .header_drawer_gnav_content {
    display: none;
  }
  .header_drawer_gnav_content .is_open {
    display: block;
  }
  .header_drawer_gnav_content > li {
    margin-top: 0;
  }
  .header_drawer_gnav_content > li a {
    display: block;
    padding: 20px 0 20px 44px;
    font-size: 0.875rem;
    line-height: 1.7;
    background-position: 20px 50%;
  }
  .header_drawer_gnav_content > li + li {
    border-top: 1px solid #0e9f48;
  }
  .header_drawer_gnav_content > li.sp_btn_drop > a {
    background: none;
    position: relative;
  }
  .header_drawer_gnav_content > li.sp_btn_drop > a::before {
    content: '';
    display: block;
    width: 20px;
    height: 20px;
    position: absolute;
    top: 22px;
    right: 12px;
    background: url(../img/icon_drawer_nav_close.png) no-repeat 0 0;
    background-size: 16px 16px;
  }
  .header_drawer_gnav_content > li.sp_btn_drop > a.is_open::before {
    background: url(../img/icon_drawer_nav_open.png) no-repeat 0 0;
    background-size: 16px 16px;
  }
  .header_drawer_lnav {
    margin-top: 10px;
    padding: 0;
    background: none;
  }
  .header_drawer_lnav dl {
    width: 100%;
  }
  .header_drawer_lnav dl:nth-child(2) {
    width: 100%;
  }
  .header_drawer_lnav dl + dl {
    margin-left: 0;
  }
  .header_drawer_lnav dl dt {
    margin-bottom: 0;
    font-size: 0.875rem;
    border-bottom: 1px solid #474747;
  }
  .header_drawer_lnav dl:nth-child(4) dt {
    display: block;
    background: url(../../img_v2/icon_visual_link04.png) no-repeat 16px 50%;
    -webkit-background-size: 24px 23px;
    background-size: 20px 25px;
    padding-left: 31px;
  }
  .header_drawer_lnav dl dt span,
  .header_drawer_lnav dl dt a {
    display: block;
    padding: 20px;
    position: relative;
  }
  .header_drawer_lnav dl dt span:before,
  .header_drawer_lnav dl dt a:before {
    content: '';
    display: block;
    width: 20px;
    height: 20px;
    position: absolute;
    top: 22px;
    right: 12px;
    background: url(../img/icon_drawer_nav_close.png) no-repeat 0 0;
    background-size: 20px 20px;
  }
  .header_drawer_lnav dl dt span:hover,
  .header_drawer_lnav dl dt a:hover {
    text-decoration: none;
  }
  .header_drawer_lnav dl dt.is_open span:before,
  .header_drawer_lnav dl dt.is_open a:before {
    background: url(../img/icon_drawer_nav_open.png) no-repeat 0 0;
    background-size: 20px 20px;
  }
  .header_drawer_lnav dl dd {
    display: none;
    padding: 10px 20px;
  }
  .header_drawer_lnav dl dd:last-child {
    border-bottom: 1px solid #474747;
  }
  /* content
--------------------------------------------------------- */
  /* topicpath */
  .topicpath {
    display: none;
  }
  /* inner */
  .l_inner {
    width: 100%;
  }
  /* content */
  .l_content {
    width: 100%;
    padding: 33px 12px 45px 12px;
  }
  /* column */
  .column {
    margin-top: 20px;
  }
  .column > ul,
  .column > div {
    float: none;
  }
  .column > ul + ul,
  .column > ul + div,
  .column > div + ul,
  .column > div + div {
    margin-left: 0;
    margin-top: 10px;
  }
  /* grid */
  .grid1 {
    width: 100%;
  }
  .grid2 {
    width: 100%;
  }
  .grid3 {
    width: 100%;
  }
  .grid4 {
    width: 100%;
  }
  .grid5 {
    width: 100%;
  }
  .grid6 {
    width: 100%;
  }
  .grid7 {
    width: 100%;
  }
  .grid8 {
    width: 100%;
  }
  .grid9 {
    width: 100%;
  }
  .grid10 {
    width: 100%;
  }
  .grid11 {
    width: 100%;
  }
  .grid12 {
    width: 100%;
  }
  .grid13 {
    width: 100%;
  }
  .grid14 {
    width: 100%;
  }
  .grid15 {
    width: 100%;
  }
  .grid16 {
    width: 100%;
  }
  .grid17 {
    width: 100%;
  }
  .grid18 {
    width: 100%;
  }
  .grid19 {
    width: 100%;
  }
  .grid20 {
    width: 100%;
  }
  .grid21 {
    width: 100%;
  }
  .grid22 {
    width: 100%;
  }
  .grid23 {
    width: 100%;
  }
  .grid24 {
    width: 100%;
  }
  .grid25 {
    width: 100%;
  }
  .grid26 {
    width: 100%;
  }
  .grid27 {
    width: 100%;
  }
  .grid28 {
    width: 100%;
  }
  .grid29 {
    width: 100%;
  }
  .grid30 {
    width: 100%;
  }
  .grid31 {
    width: 100%;
  }
  .grid32 {
    width: 100%;
  }
  .grid33 {
    width: 100%;
  }
  .grid34 {
    width: 100%;
  }
  .grid35 {
    width: 100%;
  }
  .grid36 {
    width: 100%;
  }
  /* responsive */
  .img_responsive {
    width: 100%;
  }
  /* footer
--------------------------------------------------------- */
  footer {
    margin-top: 40px;
    background: #ffffff;
  }
  .footer_nav {
    display: none;
  }
  .footer_utility {
    padding: 14px 0 0 0;
  }
  .footer_utility_logo {
    width: 100%;
    text-align: center;
  }
  .footer_utility_logo a img {
    vertical-align: middle;
    width: 78.5px;
  }
  .footer_utility_logo a + a {
    margin-left: 24px;
  }
  .footer_utility_logo a + a img {
    width: 95.5px;
  }
  .footer_utility_nav {
    display: none;
  }
  .footer_pagetop .l_inner p {
    width: 100%;
    padding: 16px 0;
    position: relative;
    border-radius: 0;
    background: #f0f0f0;
    box-shadow: none;
    text-indent: 0px;
    text-align: center;
  }
  .footer_pagetop .l_inner p span {
    padding: 5px 0 5px 28px;
    background: url(../img/icon_pagetop_sp.png) no-repeat 0 4px;
    background-size: 20px 20px;
    color: #0e9f48;
  }
  .footer_pagetop .l_inner p:hover {
    background: #f0f0f0;
  }
  .footer_pagetop .l_inner p:before {
    display: none;
  }
  .footer_copyright {
    padding: 24px 5px 24px 5px;
    color: #000000;
    font-size: 0.875rem;
  }
  /* module
========================================================================== */
  /* headline
--------------------------------------------------------- */
  * + h2 {
    margin-top: 32px;
  }
  .hl_block {
    padding: 32px 10px 28px 10px;
  }
  .hl_block h1 {
    font-size: 2rem;
    line-height: 1.5;
  }
  h1.hl {
    font-size: 1.75rem;
    line-height: 1,5;
  }
  h2.hl {
    font-size: 1.75rem;
    line-height: 1,5;
  }
  h3.hl {
    font-size: 1.5rem;
  }
  h4.hl {
    font-size: 1.25rem;
  }
  h4.hl_bg {
    position: relative;
    font-size: 1rem;
  }
  h4.hl_bg span {
    margin-left: 0;
    position: absolute;
    top: -34px;
    left: 0;
    font-weight: normal;
    font-size: 0.875rem;
  }
  h4.hl_bg + p {
    padding: 0 16px;
  }
  * + h4.hl_bg {
    margin-top: 60px;
  }
  p + h4.hl_bg {
    margin-top: 42px;
  }
  h5.hl {
    font-size: 1rem;
  }
  /* table
--------------------------------------------------------- */
  .table th,
  .table td {
    padding: 10px;
  }
  .table td {
    font-size: 0.875rem;
  }
  .table_tit {
    font-size: 0.875rem;
  }
  .table_tit_color02 {
    background: #b3b3b3;
  }
  .table_layout02 {
    border: 2px solid #e6e6e6;
  }
  .table_layout02 thead {
    display: none;
  }
  .table_layout02 tbody > tr:nth-child(1) .table_tit:nth-child(2) {
    border-top: none;
  }
  .table_layout02 .list dd {
    font-size: 0.875rem;
  }
  .table_layout02 .table_subtit {
    width: 32%;
  }
  .table_layout02 .table_icon01,
  .table_layout02 .table_icon02,
  .table_layout02 .table_tit {
    display: block;
    width: 100%;
    border-left: none;
    vertical-align: top;
    border-bottom: none;
    border-right: none;
  }
  /* txt
--------------------------------------------------------- */
  /* link
--------------------------------------------------------- */
  /* btn
--------------------------------------------------------- */
  .btn,
  .btn_small {
    display: block;
  }
  .btn button,
  .btn a,
  .btn_small button,
  .btn_small a {
    width: 640px;
  }
  .btn + .btn,
  .btn + .btn_small,
  .btn_small + .btn,
  .btn_small + .btn_small {
    margin-top: 10px;
  }
  .btn_small a {
    width: 640px;
    padding: 22px 0;
  }
  .btn_type07 button,
  .btn_type07 a {
    font-size: 1rem;
  }
  .btn_narrow a, .btn_productSummary a {
    min-width: 100%;
    padding: 0;
  }
  .btn_icon03 a, .btn_icon04 a, .btn_icon05 a, .btn_icon06 a, .btn_icon07 a {
    padding: 0 10px 0 56px;
  }
  .btn_icon03 a::before, .btn_icon04 a::before, .btn_icon05 a::before, .btn_icon06 a::before, .btn_icon07 a::before {
    left: 14px;
  }
  .btn_box01 {
    margin-top: 32px;
    padding: 20px;
  }
  .btn_box01 .btn.btn_big a {
    width: 640px;
    min-width: 100%;
  }
  .btn_box01 .btn + .btn {
    margin-left: 0;
  }
  .btn_box01 .btn + .btn > .btn_caption {
    margin-top: 10px;
  }
  .btn_box01 .btn > .btn_caption {
    display: inline-block;
    margin-bottom: 4px;
  }
  .btn_box01 .btn_type07 a {
    width: 100%;
    min-width: 100%;
  }
	.btn_box02 .btn {
		margin-right: 0;
	}
	.btn_box02.btn_box_flag .btn {
		display: inline-block;
	}
	.btn_box02.btn_box_flag .btn.grid5 {
		width: 50%;
	}
  .btn_box03 {
    margin-top: 20px;
  }
  /* list
--------------------------------------------------------- */
  .list_type02 {
    font-size: 0.875rem;
  }
  .list_type02 dd {
    margin-top: 5px;
  }
	.list_attention_indent.list_attention_indent_remittance {
		padding-left: 0;
		text-indent: 0;
	}

  /* panel
--------------------------------------------------------- */
  .panel {
    margin-top: 16px;
    padding: 20px;
  }
  .panel_outer {
    margin-top: 16px;
  }
  /* box
--------------------------------------------------------- */
  /* note */
  .box_note {
    margin-top: 32px;
    padding: 25px 16px;
  }
  .box_note_tit {
    font-size: 1.25rem;
  }
  .box_note_content {
    padding-top: 12px;
  }
  /* contact */
  .box_contact {
    margin-top: 32px;
    padding: 22px 16px;
  }
  .box_contact_tit {
    font-size: 1.25rem;
  }
  .box_contact_content {
    padding-top: 12px;
  }
  .box_contact_tel span {
    font-size: 1.25rem;
  }
  /* point */
  .point_icon {
    background-position: 50% 0;
  }
  /* qa */
  .qa.js_accordion_qa > .qa_a {
    width: 100%;
    min-height: auto;
    display: none;
  }
  .qa.js_accordion_qa > .qa_a + .qa_q:after {
    top: 40px;
  }
  /* accordion */
  /* width
--------------------------------------------------------- */
  .w15p {
    width: auto;
  }
  .w25p {
    width: auto;
  }
  .w30p {
    width: auto;
  }
  /* element
--------------------------------------------------------- */
  .step li {
    padding-left: 0;
  }
  .step li:before {
    height: 32px;
    top: auto;
    bottom: 0;
  }
  .step li .step_content {
    padding-right: 0;
  }
  .step_tit {
    display: table-cell;
    height: 88px;
    padding: 0 0 0 97px;
    font-size: 1.25rem;
    vertical-align: middle;
  }
  .step_content {
    margin-top: 16px;
    padding-bottom: 45px;
  }
  .news_outer > div {
    position: relative;
  }
  .news_tit {
    padding: 0 0 13px 0;
    font-size: 1.75rem;
    font-weight: normal;
    border-bottom: 2px solid #e6e6e6;
  }
  .news_content ul li {
    padding: 12px 0 12px 0;
    border-bottom: 1px dotted #d9d9d9;
  }
  .news_content ul li + li {
    border-top: none;
  }
  .news_content ul li span {
    width: 100%;
    float: none;
  }
  .news_content ul li p {
    margin-top: 5px;
  }
  .news_note + .news_btn {
    margin-top: 10px;
  }
  .news_btn {
    position: relative;
    margin-top: 16px;
  }
  .news_outer + .news_outer {
    margin-top: 30px;
  }
  /* slider
--------------------------------------------------------- */
  /* slider */
  .bx-prev,
  .bx-next,
  .slick-arrow {
    width: 30px;
    height: 30px;
    margin-top: -15px;
  }
  .bx-prev:before,
  .bx-next:before,
  .slick-arrow:before {
    left: 10px;
    margin-top: -3px;
    width: 6px;
    height: 6px;
    border-top: 1px solid #fff;
    border-right: 1px solid #fff;
  }
  .bx-prev:after,
  .bx-next:after,
  .slick-arrow:after {
    width: 10px;
    height: 1px;
    margin-left: -6px;
  }
  /* slick-dots */
}



/*
 ============================================================
  style.css 20190223 add
 ============================================================
*/
.l_content {
  padding: 28px 40px 40px 40px;
}

.l_content + .l_content {
  margin-top: 48px;
}

.l_content + .consul {
  margin-top: 56px;
}

.l_content + .useful {
  margin-top: 56px;
}

.l_content + .useful + .consul {
  margin-top: 40px;
}

.l_content a:hover {
  opacity: .7;
}

.column_box01 {
  padding: 38px 32px;
  background: #f5f5f5;
}

* + .column_box01 {
  margin-top: 32px;
}

.column_box01_center {
  text-align: center;
}

.column_box02 {
  padding: 38px 32px;
  background: #e2fbec;
}

* + .column_box02 {
  margin-top: 32px;
}

.column_box02_center {
  text-align: center;
}

.fs22 {
  font-size: 1.375rem;
}

.mt0 {
  margin-top: 0 !important;
}

.mt12 {
  margin-top: 12px;
}

.mt16 {
  margin-top: 16px;
}

.mt24 {
  margin-top: 24px;
}

.mt32 {
  margin-top: 32px;
}

.mt40 {
  margin-top: 40px;
}

.mt56 {
  margin-top: 56px;
}

/* h1 */
.h1_ttl {
  margin-bottom: 40px;
  background-size: cover;
  background-position: 50% 50%;
  background-repeat: no-repeat;
}

.h1_ttl .h1_ttl_txt {
  display: table-cell;
  vertical-align: middle;
  height: 140px;
}

.h1_ttl h1 {
  font-size: 2rem;
  font-weight: bold;
}

.h1_ttl.h1_ttl_size01 {
  width: 100%;
}

.h1_ttl.h1_ttl_size01 .h1_ttl_txt {
  height: 300px;
}

.h1_ttl_house01 {
  background-image: url(/personal/borrow/house/img_v2/bg_h1_01.png);
}

.h1_ttl_house02 {
  background-image: url(/personal/borrow/house/img_v2/bg_h1_02.png);
}

.h1_ttl_house03 {
  background-image: url(/personal/borrow/house/img_v2/bg_h1_03.png);
  background-position: 50% 100%;
}

.h1_ttl_house04 {
  background-image: url(/personal/borrow/house/img_v2/bg_h1_04.png);
}

.h1_ttl_house05 {
  background-image: url(/personal/borrow/house/img_v2/bg_h1_05.png);
}

.h1_ttl_house06 {
  background-image: url(/portal/special/ymguts/img/bnr_pagetop.png);
}

.h1_ttl_01 {
  background-image: url(/personal/borrow/img_v2/bg_h1_01.png);
  background-position: 50% 100%;
}

.h1_ttl_02 {
  background-image: url(/personal/borrow/img_v2/bg_h1_02.png);
  background-position: 50% 75%;
}

.h1_ttl_03 {
  background-image: url(/personal/borrow/img_v2/bg_h1_03.png);
  background-position: 50% 100%;
}

.h1_ttl_04 {
  background-image: url(/personal/borrow/img_v2/bg_h1_04.png);
  background-position: 50% 75%;
}

.h1_ttl_05 {
  background-image: url(/personal/borrow/img_v2/bg_h1_05.png);
  background-position: 50% 50%;
}

.h1_ttl_06 {
  background-image: url(/portal/special/ymguts/img/bnr_pagetop.png);
  background-position: 0% 0%;
}


.h1_ttl_loansim {
  background-image: url(/personal/loan_sim/img_v2/bg_h1.png);
  background-position: 50% 50%;
}

.h1_ttl_smart {
  background-image: url(/personal/convenience/img_v2/bg_h1_01.png);
  background-position: 50% 50%;
}

/*-- list --*/
/*list note*/
.list_note {
  margin-top: 12px;
  font-size: 0.875rem;
}

.list_label {
  font-size: 0;
  margin: -30px 0 0 0;
}

.list_label > li {
  display: inline-block;
  width: 302px;
  margin: 26px 8px 8px 30px;
  padding: 10px 0 11px 0;
  background: #ffffff;
  box-shadow: 8px 8px 0 #7fd2c1;
  font-weight: bold;
  text-align: center;
  font-size: 1.375rem;
}

.list_label > li.list_label_txt {
  background: none;
  box-shadow: none;
}

.list_doc {
  margin: 40px auto 0 auto;
  padding: 28px;
  border: 4px solid #f5f5f5;
}

.list_doc hr {
  margin: 30px 0;
  border-style: none;
  border-top: dotted 2px #d9d9d9;
}

.list_doc > div {
  display: flex;
}

.list_doc > div + div {
  margin-top: 30px;
}

.list_doc_box {
  width: 300px;
  padding: 0 24px 0 0;
  border-right: dotted 2px #d9d9d9;
}

.list_doc_box:nth-child(2) {
  width: 330px;
  padding-left: 24px;
  padding-right: 24px;
}

.list_doc_box:nth-child(3) {
  padding: 0 0 0 24px;
  border-right: none;
}

.list_doc_icon {
  width: inherit;
  height: 130px;
  display: table-cell;
  vertical-align: middle;
  text-align: center;
}


.list_doc_tit {
  text-align: center;
  font-weight: bold;
  font-size: 1.125rem;
}

.list_doc_subtxt {
  font-size: 0.875rem;
}

.list_doc + .list_note {
  margin-left: auto;
  margin-right: auto;
}

/*footer*/
footer {
  margin-top: 120px;
}

/*box point*/
.box_point {
  display: table;
  margin-top: 56px;
}

.box_point > div {
  vertical-align: middle;
  display: table-cell;
}

.box_point_tit {
  width: 140px;
  min-height: 132px;
  background: #0e9f48;
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
  text-align: center;
}

.box_point_tit img {
  margin: 0 auto;
}

.box_point_txt {
  padding: 16px 24px;
  border: 2px solid #e6e6e6;
}

.box_point_txt .list dt {
  color: #d60000;
  font-size: 1.125rem;
}

.box_point_txt .list dt + dd {
  margin-top: 12px;
}

.box_point + .box_point {
  margin-top: 16px;
}

.box_point_karikae {
  width: 100%;
  letter-spacing: -.4em;
  text-align: center;
}

.box_point_karikae > div {
  width: 310px;
  display: inline-block;
  letter-spacing: normal;
  font-weight: bold;
  text-align: center;
}

.box_point_karikae > div + div {
  margin-left: 30px;
}

.box_point_karikae_tit {
  display: table-cell;
  width: inherit;
  height: 66px;
  color: #ffffff;
  background: #1ca997;
  vertical-align: middle;
  line-height: 1.2;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  font-size: 1.5rem;
}

.box_point_karikae_tit span {
  font-size: 1.125rem;
}

.box_point_karikae_txt {
  padding: 14px 0 13px 0;
  background: #ffffff;
  vertical-align: middle;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
  color: #d60000;
  font-size: 3.5rem;
}

.box_point_karikae_txt span {
  font-size: 1.25rem;
}

/*belt*/
.belt {
  display: table;
  width: 100%;
  padding: 4px;
  background: #0e9f49;
}

h2 + .belt, h3 + .belt, .belt_under + .belt {
  margin-top: 40px;
}

.belt .belt_hd, .belt .belt_tit {
  display: table-cell;
  vertical-align: middle;
}

.belt .belt_tit {
  padding: 3px 0 0 20px;
  font-size: 2rem;
  color: #fff;
  font-weight: bold;
}

.btn_box01 + .belt {
  margin-top: 56px;
}

.belt01 {
  width: 700px;
  padding: 2px;
}

.belt01 .belt_hd {
  width: 54px;
  height: 54px;
}

.belt01 .belt_tit {
  font-size: 1.375rem;
}

.belt02 .belt_hd {
  width: 72px;
  height: 72px;
}

.belt02 .belt_tit {
  font-size: 2rem;
}

.belt03 .belt_hd {
  width: 120px;
  height: 120px;
}

.belt_under {
  padding: 24px 60px 40px;
  border: 4px solid #f5f5f5;
  border-top: none;
}

.belt_under .overlaid + .overlaid {
  margin-top: 40px;
  padding-top: 40px;
  border-top: 2px dotted #d2d2d2;
}

.belt_under_box {
  display: flex;
  align-items: center;
  flex-direction: row-reverse;
}

.belt_under_icn {
  width: 192px;
  text-align: right;
}

.belt_under_txt {
  width: 800px;
}

/*arrow triangle*/
.arrow_triangle {
  margin: 24px 0;
  text-align: center;
  position: relative;
}

.arrow_triangle .nagare_img {
  position: absolute;
  top: 50%;
  right: 20%;
  transform: translateY(-50%);
}

/*figure*/
.img_center {
  width: 992px;
  margin: 16px auto 0;
  text-align: center;
}

* + .img_center {
  margin-top: 40px;
}

.img_center + .img_center {
  margin-top: 32px;
}

.img_center + .list {
  margin-top: 20px;
}

.img_center .image_graph {
  padding-left: 32px;
  text-align: left;
}

.img_center .image_graph + figure {
  margin-top: 12px;
}

.img_center figcaption {
  margin-top: 16px;
  font-size: 0.875rem;
  text-align: left;
}

.img_center figcaption .list_note {
  margin-top: 4px;
}

.img_center_column2 figure {
  display: inline-block;
  width: 450px;
}

.img_center_column2 figure + figure {
  margin-left: 25px;
}

/*parallel*/
.parallel .parallel_txt {
  float: left;
}

.parallel .btn, .parallel .parallel_img {
  float: right;
}

/*table*/
.table {
  margin: 32px auto 0;
}

.table .table_em01 {
  color: #d60000;
  font-weight: bold;
}

.table .table_em02 {
  font-size: 1.25rem;
  color: #d60000;
  font-weight: bold;
}

.table a {
  text-decoration: underline;
}

.table p + .txt_bold {
  margin-top: 12px;
}

.table + ul {
  margin: 16px auto 0;
  font-size: 0.875rem;
}

.table + ul.list_disc {
  padding-left: 1.2em;
}

.table_bold {
  font-weight: bold;
}

/*panel_point*/
.panel_point {
  width: 992px;
  margin: 40px auto 0;
}

.panel_point .point_box {
  float: left;
  padding: 40px 31px;
  border: 4px solid #0e9f49;
  position: relative;
}

.panel_point .point_num {
  position: absolute;
  top: -4px;
  left: -4px;
}

.panel_point .point_num p {
  display: table-cell;
  vertical-align: middle;
  text-align: center;
  width: 80px;
  height: 80px;
  font-size: 0.875rem;
  color: #fff;
  line-height: 1;
  background: #0e9f49;
}

.panel_point .point_num span {
  display: inline-block;
  margin-top: 6px;
  font-size: 2rem;
}

.panel_point .point_box_icon, .panel_point .point_tit {
  text-align: center;
}

.panel_point .point_box_icon {
  margin-bottom: 24px;
}

.panel_point .point_tit {
  display: table-cell;
  vertical-align: middle;
  width: 408px;
  font-size: 1.5rem;
  font-weight: bold;
}

.panel_point .point_txt {
  margin-top: 12px;
}

.panel_point .btn {
  margin-top: 16px;
}

.panel_point01 .point_box {
  width: 480px;
}

.panel_point01 .point_box:nth-child(even) {
  margin-left: 32px;
}

.panel_point01 .point_box:nth-child(n+3) {
  margin-top: 32px;
}

.panel_point02 .point_box {
  width: 310px;
}

.panel_point02 .point_box + .point_box {
  margin-left: 31px;
}

/*panel card*/
.panel_card {
  display: flex;
  justify-content: center;
  margin: 35px auto 0;
}

.panel_card .card_box {
  margin: 0 7px 7px 0;
  text-align: center;
  background: #f5f5f5;
  box-shadow: 7px 7px 0 #e6e6e6;
}

.panel_card .card_box + .card_box {
  margin-left: 32px;
}

.panel_card .card_tit {
  display: table-cell;
  vertical-align: middle;
  font-size: 1.125rem;
  font-weight: bold;
}

.panel_card .card_icon {
  margin-top: 16px;
}

.panel_card_txt {
  margin: 35px auto 0 auto;
  font-size: 1.375rem;
  font-weight: bold;
}

.panel_card_txt + .panel_card {
  margin-top: 10px;
}

.panel_card + .panel_card_txt {
  margin-top: 10px;
}

.panel_card_more_arrow {
  height: 100px;
  position: relative;
}

.panel_card_more_arrow:before, .panel_card_more_arrow:after {
  display: block;
  content: '';
  position: absolute;
  left: 50%;
  width: 0;
  height: 0;
  border-style: solid;
  margin-left: -44px;
  border-width: 38px 44px 0 44px;
}

.panel_card_more_arrow:before {
  top: 35px;
  border-color: #1ca997 transparent transparent transparent;
}

.panel_card_more_arrow:after {
  top: 20px;
  border-color: #7fd2c1 transparent transparent transparent;
}

.panel_card_more_txt {
  text-align: center;
  font-size: 2rem;
}

.panel_card_more_txt span {
  font-weight: bold;
}

.panel_card01 {
  width: 992px;
}

.panel_card01 .card_box {
  width: 217px;
  padding: 32px 10px;
}

.panel_card01 .card_tit {
  width: 197px;
}

.panel_card02 {
  width: 994px;
}

.panel_card02 .card_box {
  width: 300px;
  padding: 26px 10px 32px 10px;
  margin: 0 10px 10px 0;
  box-shadow: 10px 10px 0 #e6e6e6;
}

.panel_card02 .card_tit {
  width: 280px;
  font-size: 1.5rem;
}

.panel_card02 .btn {
  margin-top: 24px;
}

.panel_card03 {
  margin-top: 16px;
  width: 992px;
}

.panel_card03 .card_box {
  width: 460px;
  padding: 26px 20px 32px 20px;
  margin: 0 20px 20px 0;
  box-shadow: 20px 20px 0 #e6e6e6;
}

.panel_card03 .card_tit {
  width: 440px;
  font-size: 1.5rem;
}

.panel_card03 .card_tit span {
  font-size: 1.125rem;
}

.panel_card03 .btn {
  margin-top: 24px;
}

/* panel_step */
.panel_step {
  margin-top: 40px;
  display: flex;
  justify-content: center;
}

.panel_step > div {
  width: 218px;
  border: solid 4px #0e9f49;
}

.panel_step > div + div {
  margin-left: 40px;
  position: relative;
}

.panel_step > div + div a {
  text-decoration: underline;
}

.panel_step > div + div:before {
  display: block;
  content: '';
  position: absolute;
  top: 50%;
  left: -34px;
  margin-top: -24px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 24px 0 24px 20px;
  border-color: transparent transparent transparent #1ca996;
}

.panel_step_icon {
  text-align: center;
}

.panel_step_tit {
  padding: 7px 0 10px 0;
  background: #0e9f49;
  color: #ffffff;
  text-align: center;
  font-weight: bold;
  font-size: 1.125rem;
}

.panel_step_box {
  padding: 24px 12px 14px 12px;
}

.panel_step_subtit {
  margin-top: 10px;
  font-weight: bold;
  text-align: center;
  font-size: 1.125rem;
}

.panel_step_txt {
  margin-top: 6px;
}

/*product summary*/
.product_summary li a, .product_summary .table a {
  text-decoration: underline;
}

.product_summary li a:hover, .product_summary .table a:hover {
  text-decoration: none;
  opacity: .7;
}

/* box_loan */
.box_loan {
  margin-top: 40px;
  padding: 0 16px;
  display: flex;
  align-items: center;
}

.box_loan > div:first-child {
  width: 480px;
  margin-right: auto;
  position: relative;
}

.box_loan > div:first-child .column_box01 {
  width: 400px;
}

.box_loan > div:first-child:after {
  content: '';
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 38px 0 38px 32px;
  border-color: transparent transparent transparent #1ca996;
  margin-top: -38px;
  position: absolute;
  top: 50%;
  right: -20px;
}

.box_loan .box_loan_type01 .column_box01 {
  padding-left: 24px;
  padding-right: 24px;
}

.box_loan .box_loan_type01 .column_box01 p {
  color: #d60000;
  text-align: center;
  font-weight: bold;
  font-size: 2.75rem;
}

.box_loan .box_loan_type01 .column_box01 p span {
  color: #333333;
  font-size: 1.25rem;
  font-weight: normal;
}

.box_loan .box_loan_type02 .column_box01 {
  padding: 24px;
}

.box_tit_tit {
  padding: 5px 0 3px 0;
  color: #ffffff;
  font-size: 1.25rem;
  text-align: center;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}

.box_tit_txt {
  padding: 12px 16px 20px 16px;
  background: #ffffff;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
}

.box_tit + .box_tit {
  margin-top: 24px;
}

.box_tit.box_tit_color01 .box_tit_tit {
  background: #0e9f48;
}

.box_tit.box_tit_color02 .box_tit_tit {
  background: #1c80a9;
}

/* box_info */
.box_info {
  margin-top: 16px;
  text-align: center;
  letter-spacing: -.4em;
}

.box_info_column {
  display: inline-block;
  letter-spacing: normal;
  padding: 16px 24px;
  border: 2px solid #0e9f48;
  border-radius: 5px;
  vertical-align: top;
}

.box_info_column + .box_info_column {
  margin-left: 80px;
}

.box_info_tit {
  color: #0e9f48;
  font-weight: bold;
  font-size: 1.25rem;
}

.box_info_tit span {
  font-size: 1rem;
}

.box_info_txt {
  margin-top: 5px;
  text-align: left;
}

.box_info_icon {
  position: relative;
}

.box_info_icon:before, .box_info_icon:after {
  display: block;
  content: '';
  position: absolute;
  width: 6px;
  height: 32px;
  background: #0e9f48;
  top: 50%;
  border-radius: 3px;
  right: -45px;
  margin-top: -16px;
}

.box_info_icon:after {
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}

.box_info_type02 {
  margin-left: auto;
  margin-right: auto;
}

.box_info_type02:nth-child(1) .box_info_icon:before, .box_info_type02:nth-child(1) .box_info_icon:after {
  display: none;
}

.box_info_type02 .box_info_column {
  padding-top: 30px;
}

.box_info_type02 .box_info_img {
  display: inline-block;
  padding-left: 64px;
  text-align: left;
}

.box_info_type02 .box_info_txt {
  margin-top: 12px;
}

.box_info_type02 .box_info_icon:before, .box_info_type02 .box_info_icon:after {
  width: 10px;
  height: 56px;
  top: -68px;
  left: 50%;
  margin-top: 0;
  border-radius: 6px;
}

.box_info_type02 + .box_info_type02 {
  margin-top: 80px;
}

/*useful*/
.useful {
  width: 1120px;
  margin: 0 auto;
}

.useful h2 {
  padding: 8px 0;
  font-size: 1.5rem;
  background: #1ca997;
  border-radius: 4px 4px 0 0;
  color: #ffffff;
  text-align: center;
}

.useful_box {
  margin-top: 0;
  padding: 48px 0;
  background: #ffffff;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
  text-align: center;
}

.useful_btn {
  display: inline-block;
  letter-spacing: -.4em;
}

.useful_btn li {
  letter-spacing: normal;
  display: inline-block;
}

.useful_btn li .btn a {
  width: 285px;
  padding-left: 70px;
  text-align: left;
  position: relative;
}

.useful_btn li .btn a:before {
  content: '';
  display: block;
  position: absolute;
  top: 20px;
  left: 16px;
}

.useful_btn li + li {
  margin-left: 30px;
}

.useful_icon01 .btn a:before {
  width: 36px;
  height: 35px;
  background: url(../img/personal/icon_btn_useful01.png) no-repeat 0 0;
}

.useful_icon02 .btn a:before {
  width: 33px;
  height: 33px;
  background: url(../img/personal/icon_btn_useful02.png) no-repeat 0 0;
}

.useful_icon03 .btn a:before {
  width: 35px;
  height: 32px;
  background: url(../img/personal/icon_btn_useful03.png) no-repeat 0 0;
}

/*consul*/
.consul {
  width: 1120px;
  margin: 0 auto;
  padding: 0;
}

.consul section {
  background: #fff;
  border-radius: 4px;
}

.consul h2 {
  padding: 8px 0;
  font-size: 1.5rem;
  color: #fff;
  text-align: center;
  background: #1c80a9;
  border-radius: 4px 4px 0 0;
}

.consul_box {
  margin-top: 0;
  padding: 40px 96px;
}

.consul_box .sumai {
  float: left;
  width: 608px;
  padding: 34px 32px 34px 48px;
  text-align: center;
  background: #e3f5fc;
  border-radius: 4px;
}

.consul_box .sumai div {
  float: left;
}

.consul_box .sumai p {
  font-size: 1.5rem;
}

.consul_box .sumai p span {
  font-size: 2rem;
  font-weight: bold;
}

.consul_box .sumai .consul_img {
  float: right;
}

.consul_box .btn_box02 {
  float: left;
  margin-left: 32px;
}

.consul_box .btn_box02 .btn + .btn {
  margin-top: 9px;
}

.consul_box .btn_box02 .btn a {
  min-width: 288px;
  font-size: 1rem;
  font-weight: bold;
  background: #f5f5f5;
  box-shadow: 0px 2px 0px 0px #cccccc;
}

.oblique_icon {
  display: inline-block;
  padding: 0 20px;
  font-size: 1.125rem;
  color: #1c80a9;
  font-weight: bold;
  position: relative;
}

.oblique_icon::before, .oblique_icon::after {
  content: "";
  width: 12px;
  height: 18px;
  margin-top: -9px;
  position: absolute;
  top: 50%;
}

.oblique_icon::before {
  left: 0;
  background: url("../img/personal/icn_oblique_left.png");
}

.oblique_icon::after {
  right: 0;
  background: url("../img/personal/icn_oblique_right.png");
}

.btn_consul {
  float: left;
  margin-top: 15px;
  text-align: center;
  font-weight: bold;
  background: #fff;
  border: 1px solid #1c80a9;
  border-radius: 4px;
}

.btn_consul a {
  display: block;
  padding: 20px 0;
  font-size: 1.25rem;
  color: #1c80a9;
}

.btn_consul a:hover {
  opacity: .7;
  text-decoration: none;
}

/* karikae */
.h3_lead {
  margin-top: 40px;
  padding-left: 25px;
  color: #d60000;
  font-weight: bold;
}

.h3_lead + h3.hl {
  margin-top: -6px;
}

/* eco_car */
.eco_car_box01 {
  display: table;
  width: 100%;
}

.eco_car_box01 div {
  display: table-cell;
  vertical-align: middle;
}

.eco_car_icn {
  padding: 0 92px 0 77px;
  position: relative;
}

.eco_car_icn::after {
  content: "";
  width: 36px;
  height: 328px;
  background: url("/personal/borrow/eco_car/img_v2/arr_eco_car01.png") 0 0/contain no-repeat;
  position: absolute;
  top: 0;
  right: 0;
}

.eco_car_list {
  padding-left: 34px;
}

/* SP
-------------------------------------------------- */
@media only screen and (max-width: 640px) {
  /*
 ============================================================
  style.css
 ============================================================
*/
  img {
    max-width: 100%;
    height: auto;
  }
  .l_content {
    padding: 32px 12px 20px;
  }
  .l_content + .l_content, .l_content + .consul {
    margin-top: 20px;
  }
  .l_content + .useful {
    margin-top: 32px;
  }
  .l_content + .useful + .consul {
    margin-top: 20px;
  }
  .column_box01 {
    padding: 20px 16px;
  }
  * + .column_box01 {
    margin-top: 20px;
  }
  .column_box01_center {
    text-align: left;
  }
  .column_box02 {
    padding: 20px;
  }
  * + .column_box02 {
    margin-top: 20px;
  }
  .column_box02_center {
    text-align: left;
  }
  .fs22 {
    font-size: 1rem;
  }
  /* h1 */
  .h1_ttl {
    margin-bottom: 0;
  }
  .h1_ttl .h1_ttl_txt {
    width: 250px;
    padding-left: 12%;
  }
  .h1_ttl h1 {
    font-size: 1.25rem;
  }
  .h1_ttl.h1_ttl_size01 .h1_ttl_txt {
    height: 150px;
  }
  /*-- list --*/
  /*list note*/
  .list_label {
    margin: 0;
  }
  .list_label > li {
    width: calc(100%-8px);
    margin: 0 8px 8px 0;
    font-size: 1.125rem;
  }
  .list_label > li + li {
    margin-top: 16px;
  }
  .list_label > li.list_label_txt {
    padding-bottom: 0;
  }
  .list_doc {
    margin: 20px auto 0 auto;
    padding: 0 16px;
  }
  .list_doc hr {
    display: none;
    margin: 0;
  }
  .list_doc > div {
    display: block;
  }
  .list_doc > div:last-child > div:last-child {
    border-bottom: none;
  }
  .list_doc_box {
    width: 100%;
    padding: 24px 0 24px 0;
    border-right: none;
    border-bottom: dotted 2px #d9d9d9;
  }
  .list_doc_box:nth-child(2) {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
  }
  .list_doc_box:nth-child(3) {
    padding: 24px 0;
    /*padding-left: 0;*/
    border-right: none;
  }
  .list_doc_icon {
    display: block;
    height: auto;
    margin-top: 15px;
  }
  .list_doc_icon + * {
    margin-top: 15px;
  }
  .list_doc_tit {
    font-size: 1rem;
  }
  /*footer*/
  footer {
    margin-top: 120px;
  }
  /*box point*/
  .box_point {
    display: block;
    margin-top: 28px;
  }
  .box_point > div {
    display: block;
  }
  .box_point_tit {
    width: 100%;
    padding: 22px 0 18px 0;
    min-height: inherit;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    border-bottom-left-radius: 0;
  }
  .box_point_tit img {
    height: 20px;
  }
  .box_point_txt {
    padding: 12px 17px;
    border: 4px solid #e6e6e6;
    border-top: none;
  }
  .box_point_txt .list dt {
    font-size: 1rem;
  }
  .box_point_karikae > div {
    width: 100%;
  }
  .box_point_karikae > div + div {
    margin-left: 0;
    margin-top: 16px;
  }
  .box_point_karikae_tit {
    display: block;
    height: auto;
    padding: 12px 0;
    font-size: 1.25rem;
  }
  .box_point_karikae_tit span {
    font-size: 1rem;
  }
  .box_point_karikae_txt {
    padding: 2px 0;
    font-size: 2.75rem;
  }
  .box_point_karikae_txt span {
    font-size: 1.25rem;
  }
  /*belt*/
  .belt .belt_tit {
    padding: 0 0 0 20px;
    font-size: 1rem;
  }
  .belt01 {
    width: 100%;
  }
  .belt02 {
    width: 100%;
  }
  .belt02 .belt_hd {
    width: 56px;
    height: 56px;
  }
  .belt03 {
    width: 100%;
  }
  .belt03 .belt_hd {
    width: 72px;
    height: 72px;
  }
  .belt_under {
    padding: 20px;
  }
  .belt_under_box {
    display: block;
  }
  .belt_under_icn {
    width: 100px;
    margin: 0 auto 20px;
    text-align: center;
  }
  .belt_under_txt {
    width: 100%;
  }
  /*arrow triangle*/
  .arrow_triangle {
    margin: 16px 0;
  }
  .arrow_triangle .nagare_img {
    width: 45%;
    height: auto;
    top: 40%;
    right: 2%;
  }
  /*figure*/
  .img_center {
    width: 100%;
  }
  .img_center .scroll {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    overflow-x: auto;
  }
  .img_center .scroll::-webkit-scrollbar {
    height: 5px;
  }
  .img_center .scroll::-webkit-scrollbar-track {
    border-radius: 5px;
    background: #eee;
  }
  .img_center .scroll::-webkit-scrollbar-thumb {
    border-radius: 5px;
    background: #666;
  }
  .img_center .scroll img {
    max-width: 600px;
    margin-right: 10px;
  }
  .img_center .image_graph {
    padding-left: 0;
  }
  .img_center .image_graph + figure {
    margin-top: 16px;
  }
  .img_center figure img {
    max-width: inherit;
  }
  .img_center .noScroll img {
    max-width: 100%;
  }
  .img_center_column2 figure {
    width: 100%;
  }
  .img_center_column2 figure + figure {
    margin-left: 0;
    margin-top: 20px;
  }
  /*parallel*/
  .parallel .parallel_txt, .parallel .parallel_img, .parallel .btn {
    float: none;
    margin-left: 0;
  }
  .parallel .parallel_img, .parallel .btn {
    margin-top: 20px;
  }
  /*table*/
  .table + ul {
    margin: 16px auto 0;
    font-size: 0.875rem;
  }
  .table + ul.list_disc {
    padding-left: 1.2em;
  }
  /*panel_point*/
  .panel_point {
    width: 100%;
    margin-top: 20px;
  }
  .panel_point .point_box {
    float: none;
    padding: 16px;
  }
  .panel_point .point_num p {
    width: 60px;
    height: 60px;
    font-size: 0.8125rem;
  }
  .panel_point .point_num span {
    margin-top: 3px;
    font-size: 1.875rem;
  }
  .panel_point .point_box_icon {
    margin-bottom: 16px;
  }
  .panel_point .point_box_icon img {
    max-width: 80px;
    height: auto;
  }
  .panel_point .point_tit {
    font-size: 1.25rem;
  }
  .panel_point .point_txt {
    margin-top: 16px;
  }
  .panel_point .btn {
    margin-top: 12px;
  }
  .panel_point01 .point_box {
    width: 100%;
  }
  .panel_point01 .point_box:nth-child(even) {
    margin-left: 0;
  }
  .panel_point01 .point_box:nth-child(n+2) {
    margin-top: 20px;
  }
  .panel_point02 .point_box {
    width: 100%;
  }
  .panel_point02 .point_box + .point_box {
    margin-top: 20px;
    margin-left: 0;
  }
  /*panel card*/
  .panel_card {
    display: block;
  }
  .panel_card + .panel_card {
    margin-top: 0;
  }
  .panel_card .card_box {
    margin-top: 19px;
    position: relative;
  }
  .panel_card .card_box + .card_box {
    margin-left: 0;
  }
  .panel_card .card_tit {
    float: right;
    display: flex;
    align-items: center;
    min-height: 60px;
    font-size: 1rem;
    text-align: left;
  }
  .panel_card .card_icon {
    margin-top: 0;
    position: absolute;
    top: 50%;
    left: 20px;
    transform: translateY(-50%);
  }
  .panel_card .card_icon img {
    max-width: 60px;
  }
  .panel_card_txt {
    margin: 19px auto 0 auto;
    font-size: 1.125rem;
    font-weight: bold;
  }
  .panel_card_txt + .panel_card {
    margin-top: 0;
  }
  .panel_card_more_arrow {
    height: 50px;
  }
  .panel_card_more_arrow:before, .panel_card_more_arrow:after {
    margin-left: -38px;
    border-width: 19px 38px 0 38px;
  }
  .panel_card_more_arrow:before {
    top: 18px;
  }
  .panel_card_more_arrow:after {
    top: 10px;
  }
  .panel_card_more_txt {
    font-size: 1.5rem;
  }
  .panel_card01 {
    width: 100%;
  }
  .panel_card01 .card_box {
    width: calc(100% - 7px);
    padding: 12px 20px;
  }
  .panel_card01 .card_tit {
    width: calc(94% - 60px);
  }
  .panel_card02 {
    width: 100%;
  }
  .panel_card02 .card_box_inner {
    position: relative;
  }
  .panel_card02 .card_box {
    padding: 12px 10px 12px 10px;
    margin: 0 7px 7px 0;
    box-shadow: 7px 7px 0 #e6e6e6;
  }
  .panel_card02 .card_box + .card_box {
    margin-top: 23px;
  }
  .panel_card02 .card_icon {
    left: 0;
  }
  .panel_card02 .card_tit {
    width: calc(94% - 60px);
    font-size: 1.25rem;
  }
  .panel_card02 .btn {
    margin-top: 12px;
  }
  .panel_card03 {
    width: 100%;
    margin-top: 0;
  }
  .panel_card03 .card_box {
    margin: 0 8px 8px 0;
    box-shadow: 8px 8px 0 #e6e6e6;
    width: calc(100% - 8px);
    padding: 12px 13px;
  }
  .panel_card03 .card_box + .card_box {
    margin-top: 28px;
  }
  .panel_card03 .card_tit {
    display: block;
    width: 100%;
    float: none;
    text-align: center;
    line-height: 1.5;
    font-size: 1.25rem;
  }
  .panel_card03 .card_tit span {
    font-size: 1rem;
  }
  .panel_card03 .card_icon {
    position: relative;
    top: 0;
    left: 0;
    margin-top: 15px;
    transform: translateY(0);
  }
  .panel_card03 .card_icon img {
    max-width: 100px;
  }
  /* panel_step */
  .panel_step {
    margin-top: 20px;
    display: block;
  }
  .panel_step > div {
    width: 100%;
  }
  .panel_step > div + div {
    margin-top: 50px;
    margin-left: 0;
  }
  .panel_step > div + div:before {
    top: -36px;
    left: 50%;
    margin-top: 0;
    margin-left: -38px;
    border-width: 18px 38px 0 38px;
    border-color: #1ca996 transparent transparent transparent;
  }
  .panel_step_box {
    display: flex;
    padding: 15px 16px 12px 16px;
    position: relative;
  }
  .panel_step_inner {
    padding-left: 72px;
  }
  .panel_step_icon {
    width: 60px;
    position: absolute;
    top: 50%;
    left: 16px;
    transform: translateY(-50%);
  }
  .panel_step_icon img {
    max-width: 60px;
    height: auto;
  }
  .panel_step_tit {
    padding: 5px 0 7px 0;
    font-size: 1rem;
  }
  .panel_step_subtit {
    margin-top: 0;
    text-align: left;
    font-size: 1rem;
  }
  .panel_step .list_note {
    margin-top: 6px;
  }
  /*product summary*/
  .product_summary .table th {
    width: 30%;
  }
  /* box_loan */
  .box_loan {
    display: block;
    margin-top: 20px;
  }
  .box_loan > div:first-child {
    width: 100%;
    padding-bottom: 38px;
  }
  .box_loan > div:first-child .column_box01 {
    width: 100%;
  }
  .box_loan > div:first-child:after {
    border-width: 22px 26px 0 26px;
    border-color: #1ca996 transparent transparent transparent;
    top: auto;
    bottom: 8px;
    right: 50%;
    margin-top: 0;
    margin-right: -26px;
  }
  .box_loan .box_loan_type01 .column_box01 {
    padding: 0;
    font-size: 2rem;
  }
  .box_loan .box_loan_type01 .column_box01 p span {
    font-size: 1rem;
  }
  .box_loan .box_loan_type02 .column_box01 {
    padding: 12px;
  }
  .box_tit + .box_tit {
    margin-top: 24px;
  }
  .box_tit.box_tit_color01 .box_tit_tit {
    background: #0e9f48;
  }
  .box_tit.box_tit_color02 .box_tit_tit {
    background: #1c80a9;
  }
  /* box_info */
  .box_info_column {
    padding: 8px 12px;
  }
  .box_info_column + .box_info_column {
    margin-left: 0;
    margin-top: 42px;
  }
  .box_info_tit {
    font-size: 1rem;
  }
  .box_info_tit span {
    font-size: 0.875rem;
  }
  .box_info_icon:before, .box_info_icon:after {
    width: 4px;
    height: 24px;
    right: 50%;
    top: auto;
    bottom: -35px;
  }
  .box_info_type02 .box_info_column {
    padding-top: 15px;
  }
  .box_info_type02 .box_info_img {
    padding-left: 0;
    margin-top: 42px;
  }
  .box_info_type02 .box_info_icon:before, .box_info_type02 .box_info_icon:after {
    width: 4px;
    height: 24px;
    right: 50%;
    top: -42px;
  }
  .box_info_type02 + .box_info_type02 {
    margin-top: 60px;
  }
  /*useful*/
  .useful {
    width: calc(100% - 24px);
    margin: 0 12px;
  }
  .useful h2 {
    padding: 12px 0;
    font-size: 1.25rem;
  }
  .useful_box {
    padding: 20px;
  }
  .useful_btn {
    width: 100%;
  }
  .useful_btn li {
    display: block;
  }
  .useful_btn li .btn a {
    width: 640px;
  }
  .useful_btn li + li {
    margin-left: 0;
    margin-top: 12px;
  }
  /*consul*/
  .consul {
    width: 100%;
    padding: 0 12px;
  }
  .consul h2 {
    padding: 12px 0;
    font-size: 1.25rem;
  }
  .consul_box {
    padding: 12px 12px 20px;
  }
  .consul_box .sumai {
    float: none;
    width: 100%;
    padding: 20px 8px;
  }
  .consul_box .sumai p {
    font-size: 1.125rem;
  }
  .consul_box .sumai p span {
    font-size: 1.5rem;
    font-weight: bold;
  }
  .consul_box .sumai .consul_img {
    float: none;
    margin-left: 0;
  }
  .consul_box .btn_box02 {
    float: none;
    margin: 20px 0 0;
    padding: 0 8px;
  }
  .consul_box .btn_box02 .btn + .btn {
    margin-top: 12px;
  }
  .consul_box .btn_box02 .btn a {
    min-width: inherit;
  }
  .oblique_icon {
    font-size: 1rem;
  }
  .btn_consul a {
    font-size: 1rem;
  }
  /* karikae */
  /* eco_car */
  .eco_car_box01 {
    display: block;
  }
  .eco_car_box01 div {
    display: block;
  }
  .eco_car_icn {
    max-width: 320px;
    padding: 0 0 56px;
    margin: 0 auto 32px;
    text-align: center;
    background: url("/personal/borrow/eco_car/img_v2/arr_eco_car02.png") 0 100%/contain no-repeat;
  }
  .eco_car_icn::after {
    content: none;
  }
  .eco_car_list {
    padding: 0;
  }
  .eco_car_list .list_label {
    text-align: center;
  }
}



/*# sourceMappingURL=../../_maps/common/css/common.css.map */
