  @charset "UTF-8";
/* CSS Document */
/* ======================================================
* style.css
* ------------------------------------------------------
* - keyframes
* - Common
* - Header
* - Main
* - Footer
* - modal
====================================================== */
/* ------------------------------------------------------
*  keyframes
------------------------------------------------------ */
@keyframes vertical {
  0% { 
      transform:translateY(-30px); 
  }
  100% { 
    transform:translateY(0px); 
  }
}

/* ----------------------- PC ----------------------- */
/* ------------------------------------------------------
* common
------------------------------------------------------ */
.pic{
  width: 100%;
}
.pc{
  display: block;
}
.sp{
  display: none;
}

	/* ------------------------------------------------------
	 * Header
	------------------------------------------------------ */
@media print, screen and (min-width: 768px) {
	.Header {
		position: relative;
		z-index: 400;
	}
	
	/* ----- HeaderBody ----- */
	.HeaderBody {
		position: relative;
		display: -webkit-flex;
		display: flex;
		-webkit-flex-direction: row;
		flex-direction: row;
		-webkit-flex-wrap: nowrap;
		flex-wrap: nowrap;
		-webkit-align-items: center;
		align-items: center;
		-webkit-justify-content: space-between;
		justify-content: space-between;
		height: 79px;
		margin: 0 auto;
		padding: 0 40px 0 30px;
		border-bottom: 1px solid #eee;
		background-color: #fff;
		z-index: 410;
	}
	
	/* header-identity */
	.header-identity a,
	.header-identity span {
    display: block;
    width: auto;
    height: 42px;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
	}
  .header-identity h1{
    width: auto;
    height: 42px;
    padding: 0;
    margin: 0;
    position: relative;
  }
	.header-identity a img{
    width: auto;
    height: 42px;
  }
	/* ----- sp-HeaderBody ----- */
	.sp-HeaderBody {
		display: none !important;
	}

/* home-header-link */
	.home-header-link {
		display:none;
	}
	
	
	/* ----- Cnav ----- */
	.Cnav {
		position: relative;
		z-index: 300;
		background-color: #fff;
	}
	.Cnav::before {
		content: "";
		opacity: 0;
		transition-property: opacity;
		transition-duration: .4s;
	}
	.is-Cnav-open.Cnav::before {
		content: "";
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background: rgba(0, 0, 0, .4);
		z-index: 100;
		opacity: 1;
	}
	
	/* CnavBody */
	.CnavBody {
		position: relative;
		background-color: #fff;
	}
	
	/* CnavBody */
	.CnavMenu {
		position: relative;
		z-index: 320;
		background-color: #fff;
	}
	
	/* cnavList */
	.cnavList {
		display: -webkit-flex;
		display: flex;
		-webkit-flex-direction: row;
		flex-direction: row;
		-webkit-flex-wrap: nowrap;
		flex-wrap: nowrap;
		-webkit-justify-content: center;
		justify-content: center;
	}
	.cnavList li {
		display: table;
		position: relative;
	}
	.cnavList li a {
		display: table-cell;
		height: 79px;
		padding: 0 23px;
		vertical-align: middle;
		transition-property: background-color, color;
		transition-duration: .2s;
		text-decoration: none;
	}
	.cnavList li a > .link_label {
		position: relative;
		display: inline-block;
		padding: 0 0 0 24px;
		line-height: 1.4;
	}
  .cnavList li.icon-link_v3 a  > .link_label {
		margin-left: -24px;
	}
	.cnavList li a > .link_label::after {
		content: "";
		position: absolute;
		top: 50%;
		left: 4px;
		width: 8px;
		height: 8px;
		margin-top: -6px;
		border-top: 1px solid #969696;
		border-right: 1px solid #969696;
		-webkit-transform: rotate(45deg);
		transform: rotate(45deg);
		transition-property: margin-top;
		transition-duration: .2s;
	}
  .cnavList li.icon-link_v3 a  > .link_label::after {
		display: none;
	}
  
	.cnavList li a > .link_label::before {
		content: "";
		position: absolute;
		bottom: -1px;
		left: 24px;
		width: calc(100% - 24px);
		height: 1px;
		background-color: #333;
		transform: scaleX(0);
		transform-origin: bottom left;
		transition: transform .2s;
	}
	.cnavList > li > a:hover > .link_label::before,
	.cnavList > li.is-current > a > .link_label::before {
		transform: scaleX(1);    
	}

	.cnavList > li:after {
		content: "";
		position: absolute;
		left: 0;
		right: 0;
		margin-left: auto;
		margin-right: auto;
		bottom: 0;
		width: 0;
		height: 0;
		border-style: solid;
		border-width: 0 10px 10px 10px;
		border-color: transparent transparent #00b5ac;
		transition-delay: .45s;
		transition-property: opacity;
		transition-duration: .2s;
		opacity: 0;
	}
	.cnavList > li.is-Cnav-showing:after {
		content: "";
		position: absolute;
		left: 0;
		right: 0;
		margin-left: auto;
		margin-right: auto;
		bottom: 0;
		width: 0;
		height: 0;
		border-style: solid;
		border-width: 0 10px 10px 10px;
		border-color: transparent transparent #00b5ac;
		opacity: 1;
	}
		

	
	/* headerUtility */
	.HeaderUtility {
		display: -webkit-flex;
		display: flex;
	}
	
	/* headerUtility-list */
	.headerUtility-list {
		display: -webkit-flex;
		display: flex;
		-webkit-flex-direction: row;
		flex-direction: row;
		-webkit-flex-wrap: nowrap;
		flex-wrap: nowrap;
	}
	.headerUtility-list li {
		margin-left: 15px;
	}
	.headerUtility-list li:first-child {
		margin-left: 0;
	}
	.headerUtility-list li a {
		font-size: 1.4rem;
		text-decoration: none;
	}
	.headerUtility-list li a span {
		position: relative;
		display: inline-block;
	}
}
/* ------------------------------------------------------
* main
------------------------------------------------------ */
@media print, screen and (min-width: 768px) {
	/* ----- pageGuide ----- */
	.pageGuide {
		width: 100%;
		padding: 0 8px;
		background-color: #fff;
		border-top: 1px solid #d6d6d6;
		border-bottom: 1px solid #d6d6d6;
	}
	.pageGuide.is-fixed {
		position: fixed;
    top: 0;
    left: 0;
    width: 100%;
		z-index: 100;
	}
	
	/* breadcrumbs */
	.breadcrumbs {
		display: -webkit-flex;
		display: flex;
		-webkit-flex-direction: row;
		flex-direction: row;
		-webkit-flex-wrap: wrap;
		flex-wrap: wrap;
		max-width: 1100px;
		margin: 0 auto;
		padding: 14px 0 3px;
	}
	.breadcrumbs li {
		position: relative;
		margin-left: 6px;
		padding: 0 0 0 18px;
		font-size: 1.3rem;
		line-height: 20px;
    list-style: none;
	}
	.breadcrumbs li:before {
		content: "";
		position: absolute;
		top: 50%;
		left: 0;
		width: 6px !important;
		height: 6px !important;
		margin-top: -4px;
		border-top: 1px solid #909090 !important;
		border-right: 1px solid #909090 !important;
		-webkit-transform: rotate(45deg) !important;
	  transform: rotate(45deg) !important;
	}
	.breadcrumbs li:first-child {
		margin-left: 0;	
		padding-left: 0;
		line-height: 18px;
	}
	.breadcrumbs li:first-child:before {
		display: none;
	}
	.breadcrumbs li:first-child > a {
		display: inline-block;
		width: 18px;
		height: 16px;
		background: url(/english/rd_sp/images/rd_sp_ic02.png) no-repeat 0 0;
		background-size: contain;
		overflow: hidden;
		text-indent: 100%;
		white-space: nowrap;
		vertical-align: -4px;
	}
	.breadcrumbs li sup {
		font-size: 1.1rem;
	}
	.breadcrumbs li sub {
		font-size: 1.1rem;
		bottom: -0.1em;
	}
  
}

	
	/* ------------------------------------------------------
	 * Footer
	------------------------------------------------------ */
	.Footer {
		margin-top: 20px;
		padding: 0 20px;
		background-color: #000;
		position: relative;
	}

	
	/* ----- FooterNavi ----- */
@media print, screen and (min-width: 768px) {
	.FooterNavi {
		padding-top: 30px;
	}
	.FooterPageTop {
		display: none;
	}
	
	/* footerNavi-list */
	.footerNavi-list {
		display: -webkit-flex;
		display: flex;
		-webkit-flex-direction: row;
		flex-direction: row;
		-webkit-flex-wrap: wrap;
		flex-wrap: wrap;
		-webkit-justify-content: center;
		justify-content: center;
		margin: 0 auto;
	}
	.footerNavi-list li {
		position: relative;
		font-size: 1.6rem;
		font-weight: bold;
		margin-right: 70px;
	}
	.footerNavi-list li:last-child {
		margin-right: 0;
	}
	.footerNavi-list li a {
		position: relative;
		display: inline-block;
		padding-left: 18px;
		color: #fff;
		text-decoration: none;
	}
	.footerNavi-list li a::before {
		content: "";
		position: absolute;
		bottom: -1px;
		left: 18px;
		width: calc(100% - 18px);
		height: 1px;
		background-color: #fff;
		transform: scaleX(0);
		transform-origin: bottom left;
		transition: transform .2s;
	}
	.footerNavi-list li a::after {
		content: "";
		position: absolute;
		top: .4em;
		left: 0;
		width: 6px !important;
		height: 6px !important;
		margin-left: 0;
		background: none;
		border-top: 1px solid #fff !important;
		border-right: 1px solid #fff !important;
		-webkit-transform: rotate(45deg) !important;
		transform: rotate(45deg) !important;
	}

	.footerNavi-list li a:hover::before {
		transform: scaleX(1);    
	}
	.footerNavi-list li a:hover::after {
		animation: pattern05 .4s;
	}
	
	/* ----- FooterUtility ----- */
	.FooterUtility {
		padding: 20px 30px;
		border-bottom: 1px solid #1a1a1a;
	}
	
	/* footerUtility-list */
	.footerUtility-list {
		display: -webkit-flex;
		display: flex;
		-webkit-flex-direction: row;
		flex-direction: row;
		-webkit-flex-wrap: wrap;
		flex-wrap: wrap;
		-webkit-justify-content: center;
		justify-content: center;
		margin: 0 auto;
	}
	.footerUtility-list li {
		font-size: 1.3rem;
	}
	.footerUtility-list li a {
		padding: 0 18px;
		color: #fff;
	}
	
	/* ----- FooterBody ----- */
	.FooterBody {
		display: -webkit-flex;
		display: flex;
		-webkit-flex-direction: row;
		flex-direction: row;
		-webkit-flex-wrap: wrap;
		flex-wrap: wrap;
		-webkit-justify-content: space-between;
		justify-content: space-between;
		padding: 30px;
	}
	
	/* footer-grouplist */
	.footer-group_list {
		display: -webkit-flex;
		display: flex;
		-webkit-flex-direction: row;
		flex-direction: row;
		-webkit-flex-wrap: wrap;
		flex-wrap: wrap;
	}
  
	.footer-group_top,
	.footer-group_hd span,
	.footer-group_noe span,
	.footer-group_nex span,
	.footer-group_nmm span {
		display: inline-block;
		overflow: hidden;
		text-indent: 100%;
		white-space: nowrap;
	}
  .footer-group_list dt{
    height: 22px;
    margin-right: -30px;
  }
  .footer-group_list dt img{
    height: 22px;
  }
	.footer-group_list dd {
    margin-left: 50px;
	}
	.footer-group_list dd a:hover {
		/*opacity: .8;*/
	}
	.footer-group_hd .a-blank,
	.footer-group_noe .a-blank,
	.footer-group_nex .a-blank,
	.footer-group_nmm .a-blank {
		display: inline-block;
		padding-right: 20px;
	}

.footer-group_list dd a{
  position: relative;
  display: block;
  transition-property: opacity;
		transition-duration: .2s;
  height: 22px;
}
.footer-group_list dd a img{
    height: 22px;
	}
.footer-group_list dd a::before{
  content: "";
		position: absolute;
		top: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
		right: 0;
		display: inline-block;
		width: 10px;
		height:10px;
		background: url(/english/rd_sp/images/rd_sp_ic01.png) no-repeat 0 0;
		background-size: contain;
}
	
	/* footer-copyright */
	.footer-copyright_label {
		display: block;
		font-size: 1.4rem;
		color: #cbcbcb;
		line-height: 20px;
    	/*margin-top: 30px;*/
	}
}

/*-------------------------- SP ----------------------------------- */

@media only screen and (max-width: 767px) {
  .pc{
    display: none;
  }
  .sp{
    display: block;
  }
	.Header {
		position: relative;
		box-shadow: 0 0 3px 0 rgba(0, 0, 0, .2);
		transition-property: top;
		transition-duration: .4s;
	}
	.Header.is-Header-open::before {
		content: "";
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background: rgba(0, 0, 0, .4);
		z-index: 200;
		opacity: 1;
	}
	
	/* ----- HeaderBody ----- */
	.HeaderBody {
		position: relative;
		display: -webkit-flex;
		display: flex;
		-webkit-flex-direction: row;
		flex-direction: row;
		-webkit-flex-wrap: nowrap;
		flex-wrap: nowrap;
		background-color: #fff;
		border-bottom: 1px solid #eee;
		z-index: 230;
	}
	
	/* header-identity */
	.header-identity  {
		width: calc(100% - 50px);
		height: 50px;
		padding: 10px 15px;
		background-color: #fff;
		z-index: 250;
	}
	.header-identity a,
	.header-identity span {
		display: block;
		width: 280px;
		height: 18px;
	}
  h1.identity_logo img {
    width: 50%;
  }
  
	/* home-header-link */
	.home-header-link {
		display:none;
	}
		/* headerUtility-list */
	.headerUtility-list {
		display: none;
	}

	/* ------------------------------------------------------
	 * Cnav
	------------------------------------------------------ */

	/* ----- Cnav ----- */
	.Cnav {
		position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
		height: 100%;
		padding-right: 25%;
		-webkit-transition: left .2s;
    transition: left .2s;
		z-index: 210;
	}
	.is-body-cnav .Cnav {
		left: 0;
		z-index: 250;
	}
	.is-body-cnav .Cnav::before {
		content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .4);
    z-index: 250;
	}
	.is-body-cnav .CnavBody {
		position: relative;
		overflow-y: scroll;
		height: 100%;
		padding-bottom: 56px;
		background-color: #fff;
    z-index: 250;
		-webkit-overflow-scrolling: touch;
	}
	.is-body-cnav .CnavMenu {
	}
	.CnavMenu .cnavList > .has-CnavChild > a,
	.CnavMenu .cnavList > li > a {
		position: relative;
		display: block;
		padding: 10px 15px;
		font-size: 1.4rem;
		color: #fff;
	}
	.CnavMenu .cnavList > .has-CnavChild > a::after {
		content: "";
    font-size: 1.6rem;
    line-height: 0;
		position: absolute;
		right: 10px;
		top: 50%;
   -webkit-transform: translateY(-50%);
   transform: translateY(-50%);
		width: 13px;
		height: 13px;
		background: url(/english/rd_sp/images/rd_sp_ic_plus.png) no-repeat;
		background-size: cover;
		border: none;
		-webkit-transform: rotate(0deg);
	  transform: rotate(0deg);
	}
	.CnavMenu .cnavList > .has-CnavChild > .is-open::after {
		content: "";
    background: url(/english/rd_sp/images/rd_sp_ic_minus.png) no-repeat;
		background-size: cover;
	}
	.CnavMenu .cnavList > li > a::after {
		content: "";
		position: absolute;
		top: 50%;
		right: 14px;
		width: 8px;
		height: 8px;
		margin-top: -4px;
		border-top: 1px solid #fff;
		border-right: 1px solid #fff;
		-webkit-transform: rotate(45deg);
	  transform: rotate(45deg);
	}
	.CnavMenu .CnavChild-inner {
		display: none;
	}
	.CnavMenu .CnavChild_image {
		display: none !important;
	}
  .CnavMenu .CnavChild_title{
    padding: 0!important;
    margin: -15px 0 -16px 0!important;
  }
	.CnavMenu .CnavChild_title a,
	.CnavMenu .CnavChild_body .CnavChild_item a,
	.CnavMenu .CnavChild_sublink .sublink_link a,
	.CnavMenu .CnavChild_csr-banner .csr-banner_link a {
		position: relative;
		display: block;
		padding: 12px 15px 12px 30px;
	}
	.CnavMenu .CnavChild_title a::after,
	.CnavMenu .CnavChild_body .CnavChild_item a::after,
	.CnavMenu .CnavChild_sublink .sublink_link a::after,
	.CnavMenu .CnavChild_csr-banner .csr-banner_link a::after {
		content: "";
		position: absolute;
		top: 1.3em;
		left: 10px;
		width: 8px;
		height: 8px;
		border-top: 1px solid #969696;
		border-right: 1px solid #969696;
		-webkit-transform: rotate(45deg);
	  transform: rotate(45deg);
		margin-top: 0;
	}
	.CnavMenu .CnavChild_sublink .sublink_link,
	.CnavMenu .CnavChild_sublink .sublink_link li,
	.CnavMenu .CnavChild_csr-banner .csr-banner_link,
	.CnavMenu .CnavChild_csr-banner .csr-banner_link li {
		margin-top: 0;
		line-height: 1.6;
	}
	.CnavMenu .CnavChild_sublink .sublink_link li,
	.CnavMenu .CnavChild_csr-banner .csr-banner_link li {
		line-height: 1.6 !important;
	}
	.CnavMenu .CnavChild_sublink .sublink_link li a{
		color:#333333;
	}
	.CnavMenu .headerUtility-list {
		display: block;
		padding: 10px 0;
	}
	.CnavMenu .headerUtility-list > li > a {
		position: relative;
		display: block;
		padding: 12px 15px 12px 30px;
	}
	.CnavMenu .headerUtility-list > li > a::after {
		content: "";
		position: absolute;
		top: 50%;
		left: 10px;
		width: 8px;
		height: 8px;
		margin-top: -4px;
		border-top: 1px solid #969696;
		border-right: 1px solid #969696;
		-webkit-transform: rotate(45deg);
	  transform: rotate(45deg);
	}
	.CnavMenu .headerUtility-list > li:nth-child(3) {
		display: none;
	}
	

	/* ----- category setting ----- */
	.CnavMenu .cnavList > li > a {
		background-color: #00b5ad;
		border-bottom: 1px solid #008481;
	}
	.CnavMenu .cnavList .consumer a {
		background-color: #00b5ad;
		padding: 15px;
	}
	
	.Header,
	.pageGuide,
	.pageHead,
	.container,
	.Assist,
	.licence-text,
	.Footer {
		transition-property: margin-left;
		transition-duration: .2s;
		width: 100vw;
	}

  /* ------------------------------------------------------
  * main
  ------------------------------------------------------ */
  /* ----- pageGuide ----- */
	.pageGuide {
		/*position: absolute;
    top: 0;
    left: 0;*/
		width: 100%;
		border-bottom: 1px solid #eee;
	}
	/*.pageGuide.is-fixed {
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		background-color: #fff;
		z-index: 100;
	}*/
	
	/* breadcrumbs */
	.breadcrumbs {
		display: -webkit-flex;
		display: flex;
		-webkit-flex-direction: row;
		flex-direction: row;
		-webkit-flex-wrap: wrap;
		flex-wrap: wrap;
		margin-top: -5px;
		padding: 16px 8px 5px;
	}
	.breadcrumbs li {
		position: relative;
		margin-top: 0px;
		margin-left: 6px;
		padding: 0 0 0 14px;
		font-size: 1.4rem;
		line-height: 1.2;
    margin-bottom: 2px;
	}
	.breadcrumbs li:before {
		content: "";
		position: absolute;
		top: 0.54em;
		left: 0;
		width: 6px !important;
		height: 6px !important;
		margin-top: -4px;
		border-top: 1px solid #909090 !important;
		border-right: 1px solid #909090 !important;
		-webkit-transform: rotate(45deg) !important;
	  transform: rotate(45deg) !important;
	}
	.breadcrumbs li:first-child {
		margin-left: 0;	
		padding-left: 0;
	}
	.breadcrumbs li:first-child:before {
		display: none;
	}
	.breadcrumbs li:first-child > a {
		display: inline-block;
		width: 16px;
		height: 14px;
		background: url(/english/rd_sp/images/rd_sp_ic02.png) no-repeat 0 0;
		background-size: contain;
		overflow: hidden;
		text-indent: 100%;
		white-space: nowrap;
	}
	.breadcrumbs li sup {
		font-size: 1.0rem;
		top:-0.3em;
	}
	.breadcrumbs li sub {
		font-size: 1.0rem;
		bottom: -0.1em;
	}

  /* ------------------------------------------------------
	 * Footer
	------------------------------------------------------ */
		.Footer {
		transition-property: margin-left;
		transition-duration: .2s;
		width: 100vw;
	}
	.Footer {
		padding: 34px 18px 22px;
		background-color: #000;
		position: relative;
	}

	#emergency .Footer {
		margin-top: 15px;
		padding: 15px 18px;
	}
	
	#emergency .FooterBody {
		border-top: none;
		padding-top: 0;
		margin-top: 0;
	}
	/* .footerNavi-list */
	.footerNavi-list {
		display: -webkit-flex;
		display: flex;
		-webkit-flex-direction: row;
		flex-direction: row;
		-webkit-flex-wrap: wrap;
		flex-wrap: wrap;
	}
	.footerNavi-list > li {
		width: calc((100% - 15px) / 2);
		margin-top: 14px;
		font-size: 1.3rem;
	}
	.footerNavi-list > li:nth-child(2n){
		margin-left:15px;
	}	
	.footerNavi-list > li:nth-child(-n+2) {
		margin-top: 0;
	}
	.footerNavi-list > li > a {
		position: relative;
		display: inline-block;
		padding-left: 20px;
		color: #fff;
	}
	.footerNavi-list > li > a:before {
		content: "";
		position: absolute;
		top: 6px;
		left: 0;
		width: 8px;
		height: 8px;
		border-top: 1px solid #fff;
		border-right: 1px solid #fff;
		-webkit-transform: rotate(45deg);
	  transform: rotate(45deg);
	}
	
	/* ----- FooterUtility ----- */
	
	/* .footerUtility-list */
	.footerUtility-list {
		display: -webkit-flex;
		display: flex;
		-webkit-flex-direction: row;
		flex-direction: row;
		-webkit-flex-wrap: wrap;
		flex-wrap: wrap;
		margin-top: 20px;
	}
	.footerUtility-list > li {
		width: calc((100% - 15px) / 2);
		margin-top: 13px;
		font-size: 1.2rem;
		letter-spacing: -0.5px;
	}
	.footerUtility-list > li:nth-child(2n)  {
		margin-left:15px;
	}		
	.footerUtility-list > li:nth-child(-n+2) {
		margin-top: 0;
	}
	.footerUtility-list > li > a {
		position: relative;
		display: inline-block;
		padding-left: 20px;
		color: #fff;
	}
	.footerUtility-list > li > a:before {
		content: "";
		position: absolute;
		top: 4px;
		left: 0;
		width: 8px;
		height: 8px;
		border-top: 1px solid #fff;
		border-right: 1px solid #fff;
		-webkit-transform: rotate(45deg);
	  transform: rotate(45deg);
	}
	
	/* ----- FooterBody ----- */
	.FooterBody {
		margin-top: 15px;
		padding-top: 10px;
		border-top: 1px solid #1a1a1a;
	}
	
	/* footer-grouplist */
	.footer-group_list {
		display: -webkit-flex;
		display: flex;
		-webkit-flex-direction: column;
		flex-direction: column;
		-webkit-flex-wrap: wrap;
		flex-wrap: wrap;
    padding-top: 10px;
	}
	.footer-group_top,
	.footer-group_hd span,
	.footer-group_noe span,
	.footer-group_nex span,
	.footer-group_nmm span {
		display: inline-block;
		overflow: hidden;
		text-indent: 100%;
		white-space: nowrap;
		color: #fff;
		margin-top: 8px;
	}
	.footer-group_top {
		width: 85px;
		height: 14px;
		margin-left: auto;
		margin-right: auto;
	}
	.footer-group_list dt {
		text-align: center;
	}
	.footer-group_list dd {
		margin-left: 8px;
		line-height: 13px;
		text-align: center;
	}
	.footer-group_list dd a {
		transition-property: opacity;
		transition-duration: .2s;
   
	}
	.footer-group_list dd a:hover {
		opacity: .8;
	}
	.footer-group_top + dd {
		margin-left: 8px;
	}
	.footer-group_hd .a-blank,
	.footer-group_noe .a-blank,
	.footer-group_nex .a-blank,
	.footer-group_nmm .a-blank {
		display: inline-block;
	}
 .footer-group_list dd a{
  position: relative;
  display: block;
   padding: 3px 20px 3px 0;
}
.footer-group_list dd a::before{
  content: "";
		position: absolute;
		top: 40%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
		right: 0;
		display: inline-block;
		width: 10px;
		height:10px;
		background: url(/english/rd_sp/images/rd_sp_ic01.png) no-repeat 0 0;
		background-size: contain;
}
	
	/* footer-copyright */
	.footer-copyright {
		margin-top: 10px;
		text-align: center;
	}
	.footer-copyright_label {
		font-size: 1rem;
		color: #cbcbcb;
		line-height: 1;
	}
	
	/* ----- Pagetop ----- */
	.pagetop {
		position: absolute;
		display: block;
		width: 40px;
		height: 40px;
		top: -20px;
		left: 0;
		right: 0;
		margin: 0 auto;
	}
	.pagetop a {
		position: relative;
		display: block;
		width: 40px;
		height: 40px;
		text-indent: -9999px;
		overflow: hidden;
		background-color: #888;
		border-radius: 20px;
	}
	.pagetop a:after {
		position: absolute;
		content: "";
		display: block;
		top: 50%;
		left: 0;
		right: 0;
		margin-top: -4px;
		margin-left: auto;
		margin-right: auto;
		width: 14px;
		height: 14px;
		background-image: none;
		border-top: 2px solid #fff;
		border-right: 2px solid #fff;
		-webkit-transform: rotate(-45deg);
	  transform: rotate(-45deg);
	}
	
}