@charset "UTF-8";

html {
	scroll-behavior: smooth;
}

button {
	background-color: transparent;
	margin: 0;
	padding: 0;
	border: none;
}

span.linkPDF a:before {
	top: 0;
}

.linkSite a:before {
	top: 0.3em;
}

.icon_pdf::before {
	content:"";
	margin-right: 0.6em;
	display: inline-block;
	width: 12px;
	height: 12px;
	background: url("/card/corporation/img/icon_pdf_w.svg") no-repeat 0 0/contain;
}

.pc {
	display: block !important;
}

.pc_inl {
	display: inline !important;
}

.sp {
	display: none !important;
}

.pc_none {
	display: none !important;
}

.bgblue {
	background-color: rgba(0, 133, 198, 0.1) !important;
}

.mAuto {
	margin-left: auto;
	margin-right: auto;
}

.fontSz50 {
	font-size: 50%;
}

.fontSz150 {
	font-size: 150%;
}

.fontSz190 {
	font-size: 190%;
}

.fontNormal {
	font-weight: normal;
}


/* SP時出現する※を消す */
.headge_none li::before,
.headge_none::before {
	display: none !important;
}

@media screen and (min-width: 641px) {
	.pctxt95 {
			font-size: 95% !important
	}
}

@media screen and (max-width: 640px) {
	.pc,
	.pc_inl {
		display: none !important;
	}

	.sp {
		display: block !important;
	}

	.pc_none {
		display: inline !important;
	}

	.sp_none {
		display: none !important;
	}

	.sptxt79 {
		font-size: 79% !important
	}

	.sptxt80 {
		font-size: 80% !important
	}

	.sptxt85 {
		font-size: 85% !important
	}

	.sptxt90 {
		font-size: 90% !important
	}

	#aside {
		display: none !important;
	}

	.txtC-sp {
		text-align: center !important;
	}

	.txtL-sp {
		text-align: left !important;
	}

	.sp_w100p {
		width: 100% !important;
	}
}


.newBlueBtn {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	padding: 3% 8% 2.5% 10%;
	border-radius: 5px;
	border-bottom: 3px solid #0077b1;
	background: #008CD0;
	color: #fff !important;
	text-decoration: none !important;
	font-weight: bold;
	text-align: center;
}

@media (hover: hover) and (pointer: fine) {
	.newBlueBtn:hover {
		background: #0077b1;
		border-bottom-color: #00387B;
		color: #fff;
	}
}

/* blankアイコン */
.newBlueBtn[target="_blank"]::before {
	content: "";
	display: block;
	width: 10px;
	height: 9px;
	background: url("/card/corporation/img/icon_window_w.png") no-repeat;
	background-size: contain;
	margin-top: -5px;
	position: absolute;
	left: 17px;
	top: 50%;
}

.tblank[target="_blank"]::after {
	content: "";
	display: block;
	width: 10px;
	height: 9px;
	background: url("/card/corporation/img/icon_window_w.png") no-repeat;
	background-size: contain;
	margin-top: -5px;
	position: absolute;
	right: 17px;
	top: 50%;
}

/* PDFアイコン */
.newBlueBtn[href*=".pdf"]::after {
	content: "";
	display: block;
	width: 12px;
	height: 12px;
	background: url("/card/corporation/img/icon_pdf_w.svg") no-repeat;
	margin-top: -6px;
	position: absolute;
	right: 17px;
	top: 50%;
}


/* Text meant only for screen readers. */
.screen-reader-text {
	border: 0;
	clip: rect(1px,1px,1px,1px);
	-webkit-clip-path: inset(50%);
	clip-path: inset(50%);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute!important;
	width: 1px;
	word-wrap: normal!important;
}

sup {
	font-size: 65%;
	vertical-align: super;
}

/* アコーディオン */
.is-open {
	display: block;
}


/* -----------------------------------------
	gnav
----------------------------------------- */
.gnav {
	background-color: #085EB4;
}

.gnav_list {
	display: flex;
	width: 950px;
	margin: auto;
	border-right: 1px solid #fff;
}

.gnav_item {
	position: relative;
	flex: 1;
	border-left: 1px solid #fff;
}

.gnav_item>a {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	height: 60px;
	font-size: 1.48em;
	font-weight: bold;
	color: #fff;
	text-decoration: none;
	line-height: 1.2;
	border: 1px solid #085EB4;
	border-bottom: none;
	transition: all .3s;
}

.gnav_item>a::before {
	content: "";
	position: absolute;
	top: 1px;
	left: 1px;
	width: calc(100% - 2px);
	height: 3px;
	background-color: #085EB4;
}

.gnav_item:hover>a {
	background-color: #fff;
	color: #085EB4;
}

/* -----------------------------------------
	dropdown
----------------------------------------- */
.dropdown {
	transform: scaleY(0);
	transform-origin: center top;
	transition: all .3s;
	width: 300px;
	padding: 10px 15px;
	position: absolute;
	top: 60px;
	left: 0px;
	border: 1px solid #085EB4;
	border-top: none;
	background-color: #fff;
	z-index: 2;
}

.gnav_item:hover .dropdown {
	transform: scaleY(1);
}

.dropdown_item {
	border-bottom: 1px solid #cedff0;
}

.dropdown_item:last-child {
	border-bottom: none;
}

.dropdown_item a {
	position: relative;
	height: 44px;
	padding-left: 20px;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	font-size: 1.2em;
	font-weight: bold;
	color: #085EB4;
	text-decoration: none;
	transition: all .3s;
}

.dropdown_item a::before {
	content: '';
	display: block;
	width: 6px;
	height: 6px;
	border-top: 2px solid #085EB4;
	border-left: 2px solid #085EB4;
	transform: rotate(135deg);
	position: absolute;
	left: 0px;
	top: calc(50% - 5px);
}

.dropdown_item a:hover {
	opacity: .7;
}

/* -----------------------------------------
	Header
----------------------------------------- */
#header {
	min-height: inherit;
	line-height: 1;
}

header {
	position: relative;
}

/*
header .menuBtn {
	display:none !important;
}
*/
header #corptop {
	font-size: 90%;
	position: absolute;
	right: 10px;
	bottom: 10px;
	z-index: 9;
	display: none;
}

header #corptop a {
	text-decoration: none;
	padding-left: 17px;
	display: inline-block;
	position: relative;
}

header #corptop a:before {
	background: url(/card/common/img/cmn-parts.png) no-repeat -20px 0;
	display: block;
	content: "";
	height: 12px;
	position: absolute;
	left: 0;
	top: 0.28em;
	width: 12px;
}

nav .maniNav li.acc ul li {
	margin: 0 0 0 15px;
}

nav .maniNav li.acc>a:before {
	background-position: 0 -83px;
	height: 24px;
	margin-top: -12px;
	right: 0;
	width: 24px;
}

nav .maniNav li.acc>a.active:before {
	background-position: -25px -83px;
}

nav .maniNav li.acc ul a {
	padding-left: 18px;
}

nav .maniNav li.acc ul a:after {
	background: #008CD0;
	content: "";
	display: block;
	height: 1px;
	position: absolute;
	top: 50%;
	left: 0;
	width: 8px;
}

header img {
	vertical-align: top;
}

header.pc img {
	vertical-align: middle;
}

header.sp {
	display: none;
}

header.simple .header_in {
	width: 950px;
	margin: 0 auto;
}

@media screen and (max-width: 640px) {

	header.sp,
	header #corptop {
		display: block;
		position: fixed;
		top: 0;
		left: 0;
		right: 0;
		z-index: 99;
		background: #fff;
	}

	html.is_fixed,
	html.is_fixed body{
		overflow: hidden;
		
	}


	html.is_nav{
		scroll-padding-top: 56px;
	}

	html.is_nav body{
		padding-top: 56px;
	}


	html.is_fixed header{
		display: block;
		position: fixed;
		bottom: 0;
		overflow-y: auto;
  	overscroll-behavior-y: contain;
	}

	header.fixed {
		position: fixed;
		top: 0;
		height: 100vh;
		overflow: scroll;
	}

	header .btn {
		color: #fff;
		font-size: 1.28em;
		font-weight: bold;
		line-height: 1.6;
		min-width: 100%;
		padding: 0 35px;
		text-align: center;
		text-decoration: none;
		background: #49a914;
		border-radius: 8px;
		transition: ease .3s;
	}

	header .btn a .icon {
		color: #fff;
		padding: 12px 0 11px 42px;
		display: inline-block;
		background: url(/card/corporation/img/icon_procedure.png) no-repeat 0 center;
		background-size: 25px auto;
	}

	header .loginAreatop {
		overflow: hidden;
		padding: 10px 10px 2px;
	}

	header .loginAreatop li {
		display: table;
		float: left;
		position: relative;
		width: 48.5%;
		margin-bottom: 10px;
	}

	header .loginAreatop li:nth-child(odd) {
		margin-right: 3%;
	}

	header .loginAreatop li:before {
		content: "";
		display: block;
		height: 11px;
		left: 10px;
		margin-top: -6px;
		position: absolute;
		top: 52%;
		width: 11px;
		background: url(/card/sp/common/img/cmn-parts.png) no-repeat;
		background-size: 96px 130px;
		background-position: -37px -109px;
	}

	header .loginAreatop li a {
		-webkit-border-radius: 4px;
		border-radius: 4px;
		color: #fff;
		display: table-cell;
		font-weight: bold;
		height: 48px;
		padding: 3px 12px 0px 24px;
		text-align: center;
		text-decoration: none;
		text-shadow: 0 2px 2px rgba(0, 0, 0, .2);
		vertical-align: middle;
		line-height: 1.2;
	}

	header .loginAreatop li.shindanBtn:before {
		left: 12px;
		width: 6px;
		background-position: 0px -41px;
	}

	header .loginAreatop li.shinsaBtn a {
		background: #ff9100;
		border-bottom: 4px solid #d97b00;
		font-size: 0.9em;
	}

	header .loginAreatop li.shindanBtn a {
		background: #49a914;
		border-bottom: 4px solid #008a14;
		font-size: 1em;
		padding-right: 24px;
	}

	header .loginAreatop li.blueBtn::before {
		left: 12px;
		width: 6px;
		background-position: 0px -41px;
	}

	header .loginAreatop li.blueBtn:last-of-type::before {
		left: 10px;
		width: 11px;
		background-position: -37px -109px;
	}


	header .loginAreatop li.blueBtn a {
		background: #008CD0;
		border-bottom: 4px solid #0075ae;
		font-size: 1em;
		padding-right: 24px;
	}

	header.simple {
		border-top: none;
		border-bottom: none;
		margin-bottom: 0;
		min-height: 55px;
		min-width: 320px;
	}

	header.simple .header_in {
		padding: 0 2%;
		width: 100%;
	}
}

.loginArea_co,
.faqArea_co,
.serviceArea_co,
.linkArea_co {
	display: block !important;
}

/* -----------------------------------------
	aside
----------------------------------------- */
#aside .corp_top {
	margin: 0 0 30px;
}

.toppage #aside .corp_top {
	display: none;
}

#aside .corp_top a {
	color: #fff;
	padding: 10px 0 8px;
	text-decoration: none;
	background: #008ecf;
	border-radius: 6px;
	box-sizing: border-box;
	display: block;
	transition: ease .3s;
}

#aside .corp_top a:hover {
	background: #006fb9;
}

#aside .corp_top a p {
	font-size: 1.18em;
	font-weight: bold;
	text-align: center;
}

#aside h2 {
	font-size: 1.42em;
	font-weight: bold;
	text-align: center;
}

#aside .btn {
	margin: 15px 0 0;
}

#aside .btn a {
	text-decoration: none;
	width: 100%;
	min-height: 74px;
	display: flex;
	align-items: center;
	border-radius: 6px;
	transition: ease .3s;
}

#aside .btn a p {
	color: #fff;
	font-size: 1.14em;
	font-weight: bold;
	line-height: 1.25;
	text-align: center;
	width: 100%;
	white-space: nowrap;
}

#aside .procedure a {
	background: #49a914;
}

#aside .procedure a:hover {
	background: #2f8c0b;
}

#aside .procedure a p {
	padding: 2px 15px 0 64px;
	background: url(/card/corporation/img/icon_procedure.png) no-repeat 12px center;
}

#aside .apply a {
	background: #73a607;
}

#aside .apply a:hover {
	background: #538903;
}

#aside .apply a p {
	padding: 2px 5px 0 59px;
	background: url(/card/corporation/img/icon_card.png) no-repeat 9px center;
}

#aside .apply a p .space {
	letter-spacing: 0.15em;
	position: relative;
	left: 1px;
}

#aside .contracted .procedure a {
	justify-content: center;
	min-height: 60px;
	background: #009db9;
}

#aside .contracted .procedure a:hover {
	background: #007f9f;
}

#aside .contracted .procedure a p {
	width: auto;
	padding: 6px 0 4px 39px;
	background: url(/card/corporation/img/icon_procedure.png) no-repeat 0 center;
	background-size: 29px auto;
	display: inline-block;
}

#aside .first_time {
	border: 1px solid #008a14;
	padding: 15px;
	background: #e5f3e6;
}

#aside .first_time h2 {
	color: #008a14;
	margin: 0 0 11px;
}

#aside .first_time h2 .icon {
	padding: 0 0 0 20px;
	background: url(/card/corporation/img/icon_wakaba.png) no-repeat 0 center;
	background-size: 15px auto;
	display: inline-block;
}

#aside .first_time .diagnose {
	padding-bottom: 12px;
	text-decoration: none !important;
	background: #fff;
	display: block;
	border-radius: 6px;
	transition: ease .3s;
}

#aside .first_time .diagnose:hover {
	opacity: .7;
}

#aside .first_time .diagnose h3 {
	color: #fff;
	font-size: 1.03em;
	font-weight: bold;
	text-align: center;
	margin: 0 0 14px;
	padding: 5px;
	background: #008a14;
	border-radius: 6px 6px 0 0;
	position: relative;
}

#aside .first_time .diagnose h3::after {
	content: "";
	width: 7px;
	height: 6px;
	position: absolute;
	left: 50%;
	bottom: 0;
	transform: translateX(-50%) translateY(100%);
	background: url(/card/corporation/img/icon_triangle.png) no-repeat 0 0;
	background-size: 100% auto;
	display: block;
}

#aside .first_time .diagnose img {
	margin: 0 auto;
	display: block;
}

#aside .contracted {
	padding: 15px;
	margin: 30px 0 0;
	border: 1px solid #008a78;
	background: #ecfdfb;
}

#aside .contracted h2 {
	color: #008a78;
	margin: 0 0 12px;
}

#aside .loginArea_co {
	border: 0;
	margin-bottom: 0;
	padding: 0;
}

#aside .loginArea_co ul.linkDisc {
	margin: 15px 0 0;
}

#aside .loginArea_co ul.linkDisc li {
	margin: 12px 0 0 10px;
}

#aside ul.linkDisc li a {
	color: #000;
	font-size: 1em;
	font-weight: bold;
	text-decoration: none;
	display: inline-block;
	padding: 0 0 0 13px;
	position: relative;
	background: url(/card/corporation/img/icon_arrow.png) no-repeat 0 center;
	background-size: 7px auto;
	transition: ease .3s;
}

#aside ul.linkDisc li a:hover {
	color: #007dbb;
}

#aside ul.linkDisc li a::before {
	display: none;
}

#aside .faqArea_co {
	background: transparent;
	cursor: default;
	display: block;
	margin: 30px 0 0;
	padding: 0;
	position: relative;
}

#aside .faqArea_co::before {
	top: calc(50% - 15px);
	right: 10px;
	transform: scale(0.8);
}

#aside .faqArea_co::after {
	background: #008a78;
	display: block;
	content: "";
	width: 228px;
	height: 1px;
	margin: 0;
	position: absolute;
	bottom: auto;
	top: -15px;
	right: -15px;
	z-index: 1;
}

#aside .faqArea_co .faqCont {
	background: #fff;
	padding: 13px 10px 15px;
	border: 0;
	border-radius: 6px;
}

#aside .faqArea_co .faqCont:hover {
	background: #fff;
}

#aside .faqArea_co a {
	text-decoration: none;
	transition: ease .3s;
	display: inline-block;
}

#aside .faqArea_co h3 {
	font-size: 1.18em;
	font-weight: bold;
	line-height: 1.25;
	padding: 0 0 0 28px;
	margin-bottom: 10px;
	position: relative;
	white-space: nowrap;
}

#aside .faqArea_co a h3 {
	color: #008fcd;
	transition: ease .3s;
}

#aside .faqArea_co h3 .txt_s {
	font-size: 75%;
}

#aside .faqArea_co h3 img {
	width: 20px;
	height: auto;
	display: block;
	position: absolute;
	left: 0;
}

#aside .faqArea_co ul li {
	font-size: 0.9em;
	margin: 5px 0 0;
}

#aside .faqArea_co a ul li {
	color: #000;
	transition: ease .3s;
}

#aside .faqArea_co a:hover ul li {
	color: #008fcd !important;
}

#keyword_form {
	margin: 10px 0 0;
	position: relative;
}

#keyword_text_field {
	font-size: 13px;
	width: 100%;
	padding: 12px 6px;
	background: #eee;
	border: 0;
	border-radius: 0;
	display: block;
	box-sizing: border-box;
}

#keyword_text_field::placeholder {
	color: #979797;
}

#keyword_form .keyword_frmbtn {
	width: 19px;
	height: 23px;
	padding: 0;
	border: 0;
	background: url(/card/corporation/img/icon_search.png) no-repeat 0 center;
	background-size: 100% auto;
	transition: ease .3s;
	position: absolute;
	right: 10px;
	top: 50%;
	transform: translateY(-50%);
	cursor: pointer;
}

#keyword_form .keyword_frmbtn:hover {
	opacity: .7;
}

#aside .more {
	padding: 0 0 20px;
	margin: 30px 0 0;
	border: solid 1px #008ecf;
}

#aside .more h2 {
	color: #fff;
	padding: 5px;
	background: #008ecf;
}

#aside .more .morelink_top,
#aside .more .morelink_bnr {
	padding: 20px 14px 0;
}

#aside .more .morelink_top a,
#aside .more ul.morelink li a{
	text-decoration: none;
	width: 100%;
	padding: 10px;
	box-sizing: border-box;
	display: flex;
	align-items: center;
	border: solid 1px #c7eafa;
	border-radius: 6px;
	transition: ease .3s;
}

#aside .more ul.morelink li a {
	justify-content: center;
	padding: 8px 0;
	border: solid 1px #c7eafa;
}

#aside .more .morelink_bnr a{
	text-decoration: none;
	width: 100%;
	display: flex;
	align-items: center;
	transition: ease .3s;
}

#aside .more .morelink_top a:hover,
#aside .more ul.morelink li a:hover {
	border: solid 1px #008ecf;
}

#aside .more .morelink_bnr a:hover{
	opacity:0.7;
}

#aside .more .morelink_top a img {
	width: 69px;
	min-width: 69px;
	margin-right: 12px;
}

#aside .more .morelink_top a .image img,
#aside .more ul.morelink li a .image img {
	display: block;
}

#aside .more .morelink_top a p {
	color: #000;
	font-size: 1em;
	font-weight: bold;
	line-height: 1.4;
	text-decoration: none;
}

#aside .more ul.morelink {
	width: 100%;
	padding: 0 14px;
	box-sizing: border-box;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

#aside .more ul.morelink li {
	width: calc(50% - 10px);
	margin: 20px 0 0;
}

#aside .loginArea_co .loginBtn a:before {
	display: none;
}

#aside .loginArea_co .loginBtn a span {
	margin: 0 0 5px;
}

#aside .loginArea_co .loginBtn a span:after {
	content: "";
	width: 10px;
	height: 9px;
	margin-left: 4px;
	display: inline-block;
	background: url(/card/corporation/img/icon_window_w.png) no-repeat 0 0;
	background-size: 100% auto;
	position: relative;
	top: -1px;
}

#aside .loginArea_co .loginBtn .txt_s {
	font-size: 100%;
}

#aside .banner_viewgiftticket {
	margin-top: 30px;
}

#aside .banner_viewgiftticketLink {
	transition: ease .3s;
	display: block;
	width: 100%;
	height: 100%;
}

#aside .banner_viewgiftticketLink:hover,
#aside .banner_viewgiftticketLink:focus {
	opacity: 0.7;
}

#aside .banner_dxpo {
	margin-top: 30px;
}


/* -----------------------------------------
	footer
----------------------------------------- */
#footer .nav {
	margin-bottom: 35px;
	display: flex;
	justify-content: center;
}

#footer .nav p.ttl {
	font-size: 15px;
	font-weight: bold;
}

#footer .nav p.ttl:not(:first-child) {
	margin-top: 40px;
}

#footer .nav p.ttl span {
	position: relative;
	display: block;
	padding-left: 17px;
	color: #007dbb;
}

#footer .nav p.ttl span::before {
	content: "";
	display: block;
	width: 11px;
	height: 11px;
	background-color: #007dbb;
	border-radius: 11px;
	position: absolute;
	top: 0.5em;
	left: 0;
}

#footer .nav .navCard {
	width: 260px;
}

#footer .nav .navSupport {
	width: 310px;
}

#footer .nav .navOther {
	width: 310px;
	margin-top: 0;
}

#footer .nav .navCard ul,
#footer .nav .navSupport ul {
	float: none;
	font-size: 13px;
	width: 100%;
}

#footer .nav .navCard ul li,
#footer .nav .navSupport ul li,
#footer .nav .navOther ul li.innerNav {
	margin-left: 5px;
	margin-bottom: 8px;
}

#footer .nav ul li span {
	display: inline-block;
}

#footer .nav .navOther li {
	margin-bottom: 11px;
}

#footer .nav .navOther a {
	font-size: 15px;
	font-weight: bold;
}

#footer .nav .navOther a::before {
	top: 0.4em;
}

#footer .nav .innerNav a {
	font-size: 12px;
	font-weight: normal;
}

footer.simple {
	text-align: center;
	padding: 25px 0;
	background: #fafafa;
	border-top: 1px solid #e6e6e6;
	color: #888888;
}
#footer a.navigation_link.link-pdf::after {/* 20250115 */
	margin-bottom: -1px !important;
	width: 12px !important;
	height: 12px !important;
	background: url("/card/corporation/img/icon_pdf_w.svg") no-repeat !important;
}

@media screen and (max-width: 640px) {
	footer.simple {
		padding: 7% 0;
		margin-top: 20px !important;
	}

	footer.simple .copy {
		display: block;
		margin: 0;
		font-family: "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "メイリオ", 'Meiryo', "ＭＳ Ｐゴシック", Helvetica, Arial, sans-serif;
		font-size: 88%;
	}

	footer .btn {
		color: #fff;
		font-size: 1.28em;
		font-weight: bold;
		line-height: 1.6;
		min-width: 100%;
		padding: 0 35px;
		text-align: center;
		text-decoration: none;
		background: #49a914;
		border-radius: 8px;
		transition: ease .3s;
	}

	footer .btn a .icon {
		color: #fff;
		padding: 12px 0 11px 42px;
		display: inline-block;
		background: url(/card/corporation/img/icon_procedure.png) no-repeat 0 center;
		background-size: 25px auto;
	}

	footer nav {
		margin-top: 5px;
	}

	footer .loginArea {
		overflow: hidden;
		padding: 10px 10px 2px;
	}

	footer .loginArea li {
		display: table;
		float: left;
		position: relative;
		width: 48.5%;
		margin-bottom: 10px;
	}

	footer .loginArea li:nth-child(odd) {
		margin-right: 3%;
	}

	footer .loginArea li:before {
		content: "";
		display: block;
		height: 11px;
		left: 10px;
		margin-top: -6px;
		position: absolute;
		top: 52%;
		width: 11px;
		background: url(/card/sp/common/img/cmn-parts.png) no-repeat;
		background-size: 96px 130px;
		background-position: -37px -109px;
	}

	footer .loginArea li a {
		-webkit-border-radius: 4px;
		border-radius: 4px;
		color: #fff;
		display: table-cell;
		font-weight: bold;
		height: 48px;
		padding: 3px 12px 0px 24px;
		text-align: center;
		text-decoration: none;
		text-shadow: 0 2px 2px rgba(0, 0, 0, .2);
		vertical-align: middle;
		line-height: 1.2;
	}

	footer .loginArea li.shindanBtn:before {
		left: 12px;
		width: 6px;
		background-position: 0px -41px;
	}

	footer .loginArea li.shinsaBtn a {
		background: #ff9100;
		border-bottom: 4px solid #d97b00;
		font-size: 0.9em;
	}

	footer .loginArea li.shindanBtn a {
		background: #49a914;
		border-bottom: 4px solid #008a14;
		font-size: 1em;
		padding-right: 24px;
	}

	footer .loginArea li.blueBtn:before {
		left: 12px;
		width: 6px;
		background-position: 0px -41px;
	}

	footer .loginArea li.blueBtn:last-of-type::before {
		left: 10px;
		width: 11px;
		background-position: -37px -109px;
	}

	footer .loginArea li.blueBtn a {
		background: #008CD0;
		border-bottom: 4px solid #0075ae;
		font-size: 1em;
		padding-right: 24px;
	}
}

/*----------------------------------------------------
法人のお客さま
-----------------------------------------------------*/
#article {
	width: 695px;
}

#main .breadCrumbs {
	margin: 0 auto 20px;
}

#main .newsec .section {
	margin: 0 0 70px;
}

.va-m {
	vertical-align: bottom;
}

.corporation .keyVisual {
	background: url(../img/contentshead_blue_bg.jpg) no-repeat left top;
	border-bottom: #e6e6e6 1px solid;
}

.corporation .keyVisual h1 {
	padding: 10px;
}

.corporation .head_right {
	float: left;
	width: 400px;
	margin-left: 30px;
}

.corporation table.card_table th,
.corporation table.card_table td {
	padding: 5px;
	vertical-align: middle;
}

.corporation table.card_table th {
	width: 25%;
	background-color: #e9e9e9;
}

.vcc_caution {
	background: #eef8ff url(../img/suica_charge/sc_bg_caution.jpg) no-repeat left top / contain;
	padding: 25px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.twocol {
	width: 100%;
	display: flex;
}

@media screen and (max-width: 640px) {
	.twocol {
		display: block;
	}
}


/*----------------------------------------------------
ご申請用フォーマットダウンロードページ
（JR東日本グループ・関係企業さま専用）
-----------------------------------------------------*/
.id_format_attention {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 1.3em;
	font-weight: bold;
	color: #e60012;
}

.id_format_attention::before {
	display: block;
	content: "";
	width: 36px;
	height: 36px;
	-webkit-mask: url(../img/icon_caution.svg) no-repeat 50%/contain;
	mask: url(../img/icon_caution.svg) no-repeat 50%/contain;
	background-color: #e60012;
}

.id_format_group {
	display: flex;
	gap: 25px;
}

.id_format_item {
	flex: 1;
	border: 1px solid #cce8f6;
	border-radius: 5px;
	background-color: #f0f8fc;
	padding: 23px 29px 29px;
}

.id_format_label {
	font-size: 1.3em;
	font-weight: bold;
	margin-bottom: 12px !important;
}

.id_format_links {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
}

.id_format_links li {
	flex: 1;
}

.id_format_links a {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: flex-end;
	height: 130px;
	padding-bottom: 10px;
	background-color: #00ac00;
	border-radius: 5px;
	text-decoration: none !important;
	font-size: 1.1em;
	font-weight: bold;
	color: #fff !important;
	text-align: center;
	line-height: 1.4;
	box-shadow: inset 0px -3px 0px rgba(0, 0, 0, .2);
	transition: ease .3s;
}

.id_format_item:nth-child(2) .id_format_links a {
	background-color: #008ed5;
}

.id_format_links a:hover {
	opacity: .7;
}

.id_format_links a::before {
	content: "";
	position: absolute;
	top: 10px;
	right: 18px;
	width: 40px;
	height: 50px;
	background: url(../img/icon_excel.png) no-repeat 50%/contain;
}

.id_format_links span {
	position: absolute;
	top: 1px;
	left: 1px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.3em;
	font-weight: bold;
	color: #00ac00;
	width: 44px;
	height: 44px;
	background-color: #fff;
	border-top-left-radius: 4px;
	border-bottom-right-radius: 4px;
}

.id_format_item:nth-child(2) .id_format_links span {
	color: #008ed5;
}

.id_format_faq {
	margin-top: 30px;
}

.id_format_faq a {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	border: 1px solid #ddd;
	border-radius: 5px;
	padding: 15px 40px;
	font-size: 1.3em;
	font-weight: bold;
	color: #008cd0;
	text-decoration: none !important;
}

.id_format_faq a::after {
	content: "";
	width: 6px;
	height: 6px;
	border-top: 2px solid #008cd0;
	border-right: 2px solid #008cd0;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
	flex: 0 0 6px;
}

.id_format_faq a:hover {
	color: #f60;
}

.id_format_faq a:hover::after {
	border-color: #f60;
}

.id_flow_step {
	display: flex;
	flex-direction: column;
	gap: 15px;
}

.id_flow_step li {
	display: flex;
}

.id_flow_step span {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 90px;
	height: 40px;
	background-color: #f0f8fc;
	font-size: 1.4em;
	font-weight: bold;
	color: #008cd0;
	margin-right: 25px;
	letter-spacing: -0.02em;
}

.id_flow_step span::before {
	content: "STEP";
	font-size: 0.5em;
	margin-right: 0.3em;
	letter-spacing: 0;
}

.id_flow_step span::after {
	content: '';
	position: absolute;
	top: 50%;
	left: 100%;
	transform: translateY(-50%);
	border: 20px solid transparent;
	border-left: 15px solid #f0f8fc;
}

.id_flow_step p {
	flex: 1;
	padding-top: 0.5em;
}

.id_flow_recipient {
	text-align: center;
	border: 1px solid #ddd;
	padding: 20px;
	margin-top: 30px;
	line-height: 1;
}

.id_flow_recipient .address a {
	font-size: 1.5em;
	font-weight: bold;
	color: #008cd0;
	text-decoration: none !important;
}

.id_flow_recipient .address a:hover {
	color: #f60;
}

.id_notes li {
	list-style: disc;
	margin-left: 1em;
}

.id_benefits_wrapper {
	margin-top: 65px;
}


.id_benefits {
	display: flex;
	gap: 15px;
	padding: 25px;
	border: 1px solid #D8D1E0;
	background: linear-gradient(45deg, #f0eff9 0%, #eff7ff 100%);
}

.id_benefits_title {
	padding: 8px 10px;
	background-color: #6D558C;
	color:#fff;
	font-size: 1.0625rem;/*17px*/
	text-align: center;
}

.id_benefits_desc {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px;
	justify-content: space-between;
}

.id_benefits_desc01 {
	width: 100%;
}

.id_benefits_desc03 {
	line-height: 1.3;
}

.id_benefits_other {
	margin-top: 15px;
	padding: 8px 0;
	background-color: #876aae;
	color:#fff;
	font-weight: bold;
	text-align: center;
}

.id_benefits_btnArea {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	flex-shrink: 0;
	gap: 16px;
	width: 165px;
}

.id_benefits_btn {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 15px;
	height: 100%;
	border-radius: 5px;
	border-bottom: 3px solid #0077b1;
	background-color: #008CD0;
	color: #fff !important;
	text-decoration: none !important;
	font-weight: bold;
	text-align: center;
	transition-duration: .2s;
}

.id_benefits_btn::after {
	content: "";
	display: block;
	width: 12px;
	height: 12px;
	background: url("/card/corporation/img/icon_pdf_w.svg") no-repeat;
	position: absolute;
	right: 10px;
	top: 10px;
}

@media (hover: hover) and (pointer: fine) {
	.id_benefits_btn:hover {
		opacity: .8;
	}
}



.id_benefits_btn_orange {
	border-bottom: 3px solid #bb5a1f;
	background-color: #e66c21;
	line-height: 1.3;
}



@media screen and (max-width: 640px) {
	.id_format_attention {
		font-size: 1.16em;
	}

	.id_format_attention::before {
		width: 26px;
		height: 26px;
	}

	.id_format_group {
		flex-direction: column;
		gap: 20px;
	}

	.id_format_item {
		padding: 15px 20px 20px;
	}

	.id_format_faq {
		margin-top: 20px;
	}

	.id_format_faq a {
		padding: 10px 20px;
		font-size: 1.2em;
	}

	.id_format_faq a::after {
		width: 8px;
		height: 8px;
		flex: 0 0 8px;
	}
}

/*----------------------------------------------------
VISAタッチ搭載およびデザイン変更のご案内
------------------------------------------------------*/
.contactless_use {
	display: flex;
	justify-content: space-between;
	margin-bottom: 30px;
}

.contactless_use>div {
	width: 31%;
}

.contactless_use img {
	width: 100%;
	max-width: 300px;
}

.contactless_use>div p:nth-child(2) {
	background-color: #008cd0;
	color: #fff;
	padding: 5px 10px;
	font-weight: bold;
}

.contactless_note {
	padding: 20px 15px 20px 65px;
	background: url("../img/contactless_img05.png") no-repeat 20px 20px #eee;
	margin-bottom: 10px;
}

.contactless_note li {
	text-indent: -3.7em;
	padding-left: 3.7em;
}

#main .toTopRwd {
	position: static !important;
}

.cardbox {
	justify-content: center;
}

.cardbox p {
	max-width: 300px;
	padding: 0 15px;
	margin: 0 auto;
	box-sizing: border-box;
}

@media screen and (max-width: 640px) {
	.contactless_use {
		display: block;
	}

	.contactless_use>div {
		width: 300px;
		margin: 0 auto 10%;
	}

	.cardbox {
		display: block;
	}

	#article .cardbox p,
	#article .cardbox p:last-child {
		padding: 0;
		margin-bottom: 1.5em;
	}

	#article .cardbox>p:nth-child(1) {
		margin-bottom: -30px !important;
	}

}

/* 202208 法人のお客さまへのおしらせ　追加 */

.caution dl.dateList_imp {
	margin-bottom: 10px;
	overflow: hidden;
}

.caution dl.dateList_imp dt {
	clear: both;
	width: 11em;
	float: left;
	margin-bottom: 5px;
}

.caution dl.dateList_imp dd {
	width: 470px;
	float: left;
	margin-bottom: 5px;
}

/* トップ */

.caution ul li {
	margin-bottom: 5px;
	display: block;
}

.caution ul.menuList {
	text-align: center;
	margin-top: 28px;
}

.caution ul.menuList li {
	display: inline;
}


/* 法人のお客さま内　共通 */
.ibk {
	display: inline-block;
}

.newsec img {
	max-width: 100%;
	height: auto;
	display: block;
	margin: 0 auto;
}

#main .contact_mail {
	margin: 60px 0;
}

#main .contact_mail h2,
.section h2.secttl {
	font-size: 1.9em;
	font-weight: bold;
	padding: 0 15px 10px;
	margin: 0 0 25px;
	position: relative;
	border-bottom: solid 2px #eee;
	position: relative;
	z-index: 1;
}

#main .contact_mail h2::after,
.section h2.secttl::after {
	content: "";
	width: 200px;
	height: 2px;
	position: absolute;
	bottom: -2px;
	left: 0;
	background: #008ecf;
}

#main .contact_mail h3 {
	font-size: 1.2em;
	font-weight: bold;
	margin: 0 15px 20px;
}

#main .contact_mail p {
	font-size: 0.95em;
	margin: 0 15px;
}

#main .contact_mail .button {
	text-align: center;
	margin: 25px 0 0;
}

#main .contact_mail .button a {
	color: #fff;
	font-size: 1.2em;
	font-weight: bold;
	width: 450px;
	padding: 11px 15px;
	display: inline-block;
	box-sizing: border-box;
	background: #008fcd;
	border-radius: 8px;
	transition: ease .3s;
}

#main .contact_mail .button a:hover {
	opacity: .7;
}

#main .contact_mail .button a .icon {
	padding: 2px 0 2px 50px;
	display: inline-block;
	background: url(/card/corporation/img/icon_mail.png) no-repeat 0 center;
	background-size: auto 100%;
}

#main .contact_mail .telnum {
	margin: 30px 40px;
	padding: 30px 10px 30px 13px;
	border: solid 1px #eee;
}

#main .contact_mail .telnum .twocol {
	align-items: flex-end;
}

#main .contact_mail .telnum h4 {
	width: 276px;
	min-width: 276px;
	margin: 0 20px 0 0;
}

#main .contact_mail .telnum h4 img {
	width: 100%;
	height: auto;
	display: block;
}

#main .contact_mail .telnum p {
	margin: 0;
}

@media screen and (max-width: 640px) {
	#main .contact_mail {
		margin: 45px -2%;
	}

	#main .contact_mail h2,
	.section h2.secttl {
		font-size: 1.6em;
		line-height: 1.4;
	}

	#main .contact_mail h2::after,
	.section h2.secttl::after {
		width: 144px;
	}

	#main .contact_mail h3 {
		font-size: 1.1em;
	}

	#main .contact_mail .button {
		padding: 0 15px;
	}

	#main .contact_mail .button a {
		font-size: 1.1em;
		max-width: 450px;
		width: auto;
		padding: 10px;
		margin: 0 auto;
		display: block;
	}

	#main .contact_mail .button a .icon {
		padding: 0 0 0 38px;
		background-size: auto 22px;
	}

	#main .contact_mail .telnum {
		margin: 30px 15px;
		padding: 20px 10px 20px 15px;
	}

	#main .contact_mail .telnum .twocol {
		display: block;
	}

	#main .contact_mail .telnum h4 {
		margin: 0 0 15px;
	}

	#main .contact_mail .telnum h4 img {
		width: auto;
		max-width: 100%;
	}

}


/* 法人のお客さま TOP */
.mainimg {
	margin: 0 0 70px;
}

.mainimg a {
	display: block;
	transition: ease .3s;
}

.mainimg a:hover {
	opacity: .7;
}

#main .section h2.secttl {
	font-size: 2.1em;
	padding: 0 15px 6px;
	margin: 0 0 30px;
}

#main .section h2.secttl .sub {
	font-size: 54%;
	line-height: 1.1;
	display: block;
}

.merit_list ul {
	padding: 0 15px;
	box-sizing: border-box;
}

.merit_list ul li {
	width: 100%;
	margin: 25px 0 0;
	display: flex;
	align-items: center;
}

.merit_list ul li .hd {
	width: 72px;
	min-width: 72px;
	margin: 0 20px 0 0;
}

#main .merit_list ul li h3,
#main .taxi-ticket .opcont_box h3,
#main .taxi-ticket .apply_btn h3 {
	font-size: 1.428em;
	font-weight: bold;
	line-height: 1.33;
	letter-spacing: 0.05em;
	margin: 0;
}

#main .merit_list ul li h3 .st {
	color: #008ecf;
	font-size: 150%;
}

.merit_list ul.twocol li {
	width: 50%;
	padding: 0 15px 0 0;
	box-sizing: border-box;
}

.merit_list ul.twocol li .hd {
	width: 51px;
	min-width: 51px;
	margin-right: 12px;
}

.merit_list ul.twocol li p {
	font-size: 1.21em;
	font-weight: bold;
	line-height: 1.33;
	letter-spacing: 0.05em;
}

.merit_list ul.twocol li p .blue {
	color: #008ecf;
}

#merit .movie {
	width: 560px;
	margin: 50px auto 0;
}

#merit .movie iframe {
	display: block;
}

.card_lineup .bluebox {
	margin: 30px 0 0;
	padding: 30px 15px;
	background: #e5f3fa;
}

#main div h3.icottl {
	color: #0168b0;
	font-size: 1.7em;
	font-weight: bold;
	padding: 0 0 0 48px;
	margin: 0 0 20px;
	position: relative;
}

#main div h3.icottl .icon {
	width: 36px;
	height: 36px;
	position: absolute;
	left: 0;
}

.card_lineup .card a {
	color: #000;
	text-decoration: none;
	padding: 19px;
	border: solid 1px #fff;
	background: #fff;
	display: block;
	cursor: pointer;
	transition: ease .3s;
}

.card_lineup .card a:hover {
	border: solid 1px #008ecf;
	background: #f5fafd;
}

.card_lineup .card+.card {
	margin-top: 30px;
}

.card_lineup .card .twocol {
	position: relative;
	align-items: center;
}

.card_lineup .card .text {
	margin-top: -10px;
}

.card_lineup .card .name {
	position: absolute;
	top: 0;
	right: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 120px;
	height: 30px;
	font-weight: bold;
	background-color: #fff6cd;
}

.card_lineup .card .image {
	width: 254px;
	min-width: 254px;
	margin-right: 20px;
}

#main .card_lineup .card h4 {
	font-size: 1.71em;
	font-weight: bold;
	white-space: nowrap;
}

#main .card_lineup .card h4 .sub {
	font-size: 58.4%;
	display: block;
}

#main .card_lineup .card h5 {
	font-size: 1.14em;
	color: #f98138;
	margin: 0 0 15px;
}

#main .card_lineup .card h5.new {
	line-height: 40px;
	padding: 0 0 0 46px;
	background: url(/card/corporation/img/icon_new.png) no-repeat 0 0;
	background-size: auto 100%;
}

#main .card_lineup .card h5.emphasis {/* 20250115 */
	position: relative;
	display: inline-block;
	border: solid #f98138;
	border-width: 1px 0;
	padding: 0.1em 0.5em;
	font-size: 1rem;/* 16px */
}

#main .card_lineup .card ul {
	width: 100%;
	display: flex;
	justify-content: space-between;
}

#main .card_lineup .card ul li {
	color: #fff;
	font-size: 1.28em;
	font-weight: bold;
	line-height: 1.25;
	text-align: center;
	margin: 20px 0 0;
	padding: 8px 5px;
	width: calc(33.33% - 7px);
	background: #008ecf;
	border-radius: 6px;
}

#main .card_lineup .card ul li .sml {
	font-size: 66%;
	margin-left: 0.5em;
	display: inline-block;
}

#main .section.service_list h2.secttl {
	margin-bottom: 0 !important;
}

.service_list ul {
	width: 100%;
	padding: 0 15px;
	display: flex;
	flex-wrap: wrap;
	box-sizing: border-box;
}

.service_list ul li {
	width: calc(33.33% - 21px);
	margin: 30px 0 0 31px;
}

.service_list ul li:nth-child(3n-2) {
	margin-left: 0;
}

.service_list ul li a {
	color: #000;
	text-decoration: none;
	display: block;
	cursor: pointer;
}

.service_list ul li .image {
	width: 100%;
	height: 150px;
	display: flex;
	align-items: center;
	justify-content: center;
	border: solid 1px #c7eafa;
	box-sizing: border-box;
	border-radius: 6px;
	transition: ease .3s;
	overflow: hidden;
}

.service_list ul li .image img {
	width: auto;
	max-width: 100%;
	display: block;
}

.service_list ul li a p {
	color: #000;
	font-size: 1em;
	line-height: 1.28;
	text-align: center;
	margin: 15px 0 0;
	transition: ease .3s;
}

.service_list ul li a:hover .image {
	border: solid 1px #008ecf;
}

.service_list ul li a:hover p {
	color: #008ecf;
}

.corp_news {
	position: relative;
	margin: 0 0 60px;
	padding: 30px 15px;
	background: #e5f3fa;
}

.corp_news > ul > li {
	width: 100%;
	display: flex;
	margin: 15px 0 0;
}

.corp_news .date {
	font-size: 1.14em;
	line-height: 1.33;
	width: 10.3em;
	min-width: 10.3em;
	text-align: justify;
}

.corp_news > ul > li > p,
.corp_news > ul > li > ul > li {
	font-size: 1.14em;
	line-height: 1.33;
}

.corp_news a:hover {
	text-decoration: none;
}

.corp_news_moreBtn {
	position: absolute;
	top: 35px;
	right: 20px;
	cursor: pointer;
}
@media screen and (max-width: 640px) {
	.corp_news_moreBtn {
		top: 25px;
		right: 15px;
	}
}

.corp_news_moreBtn::before {
	content: "";
	display: block;
	width: 28px;
	height: 28px;
	background: url("/card/corporation/img/icon_plus.png") no-repeat;
	background-size: contain;
}

.corp_news_moreBtn.is-open::before {
	background: url("/card/corporation/img/icon_minus.png") no-repeat;
	background-size: contain;
}

/* もっとみるで表示されるコンテンツ */
#corp_news_more {
	display: none;
}

@media screen and (max-width: 640px) {

	#main .content.toppage,
	#main .content.corporate,
	#main .content.cardless,
	#main .content.business {
		padding-left: 0;
		padding-right: 0;
	}

	#main .newsec .section,
	.mainimg {
		margin: 0 0 50px;
	}

	#main .section h2.secttl {
		font-size: 1.8em;
		margin: 0 0 25px;
	}

	.merit_list ul li {
		margin: 20px 0 0;
	}

	.merit_list ul li .hd {
		width: 60px;
		min-width: 60px;
		margin: 0 15px 0 0;
	}

	#main .merit_list ul li h3,
	#main .taxi-ticket .opcont_box h3,
	#main .taxi-ticket .apply_btn h3,
	.merit_list ul.twocol li p {
		font-size: 1.2em;
	}

	#main .merit_list ul li h3 br {
		display: none;
	}

	.merit_list ul.twocol {
		display: block;
	}

	.merit_list ul.twocol li {
		width: auto;
		padding: 0;
		margin: 20px 0 0;
	}

	#merit .movie {
		width: auto;
		margin: 40px 15px 0;
	}

	#merit .movie .frame {
		width: 100%;
		padding-top: 56.25%;
		position: relative;
	}

	#merit .movie iframe {
		position: absolute;
		top: 0;
		right: 0;
		width: 100%;
		height: 100%;
	}

	#main div h3.icottl {
		font-size: 1.4em;
		padding: 0 0 0 38px;
	}

	#main div h3.icottl .icon {
		width: 30px;
		height: 30px;
	}

	.card_lineup .card+.card {
		margin-top: 20px;
	}

	.card_lineup .card a {
		padding: 14px;
	}

	.card_lineup .card .twocol {
		display: block;
		padding-top: 45px;
	}

	.card_lineup .card .text {
		margin-top: 0;
	}

	.card_lineup .card .image {
		width: 80%;
		max-width: 254px;
		min-width: inherit;
		margin: 0 auto 10px;
	}

	#main .card_lineup .card h4 {
		font-size: 1.4em;
		white-space: normal;
		text-align: center;
	}

	#main .card_lineup .card ul {
		margin: 5px 0 0;
		justify-content: center;
		flex-wrap: wrap;
	}

	#main .card_lineup .card ul li {
		font-size: 1.1em;
		margin: 10px 5px 0;
		width: calc(50% - 10px);
	}

	.service_list ul li {
		width: calc(50% - 7px);
		margin: 25px 0 0;
	}

	.service_list ul li:nth-child(odd) {
		margin-right: 7px;
	}

	.service_list ul li:nth-child(even) {
		margin-left: 7px;
	}

	.corp_news {
		margin: 0 0 45px;
		padding: 25px 15px;
		background: #e5f3fa;
	}

	.corp_news > ul > li {
		display: block;
	}

	.corp_news .date {
		font-size: 1.1em;
		width: auto;
		min-width: inherit;
		margin: 0 0 3px;
	}

	.corp_news > ul > li > p,
	.corp_news > ul > li > ul > li {
		font-size: 1.1em;
		margin-left: 1em;
	}

	#article p.linkDisc,
	#article ul li.linkDisc {
		margin: 0 15px;
	}

}


@media screen and (max-width: 480px) {
	#main .section h2.secttl {
		font-size: 1.6em;
	}

	#main .merit_list ul li h3,
	#main .taxi-ticket .opcont_box h3,
	#main .taxi-ticket .apply_btn h3,
	.merit_list ul.twocol li p {
		font-size: 1em;
	}

	.merit_list ul li .hd {
		width: 45px;
		min-width: 45px;
		margin: 0 12px 0 0;
	}

	#main .merit_list ul li h3 .st {
		font-size: 140%;
	}

	.merit_list ul.twocol li {
		margin: 20px 0 0;
	}

	.merit_list ul.twocol li .hd {
		width: 45px;
		min-width: 45px;
		margin-right: 12px;
	}

	#main div h3.icottl {
		font-size: 1.22em;
		padding: 0 0 0 36px;
	}

	#main div h3.icottl .icon {
		top: 50%;
		transform: translateY(-50%);
	}

	#main .card_lineup .card ul {
		margin: 15px 0 0;
		display: block;
	}

	#main .card_lineup .card ul li {
		margin: 10px 0 0;
		width: auto;
	}

	.service_list ul li {
		margin-top: 20px;
	}

	.service_list ul li a p {
		font-size: 0.9em;
		margin: 10px 0 0;
	}

	.service_list ul li .image {
		height: 130px;
	}

}

/* 法人下層 共通 */
.detail_btn {
	text-align: center;
	margin: 30px 0 0;
}

.detail_btn a {
	position: relative;
	color: #fff !important;
	font-weight: bold;
	line-height: 1;
	text-decoration: none !important;
	padding: 11px 20px 10px;
	background: #008fcd;
	border-radius: 8px;
	display: inline-block;
	transition: ease .3s;
}

.detail_btn a:hover {
	background: #4db1dc;
}

.detail_btn a .arrow {
	padding: 1px 0 0 15px;
	display: inline-block;
	background: url(/card/corporation/img/icon_arrow_w.png) no-repeat 0 center;
	background-size: 7px auto;
}

.detail_btn a .linkSite::before {
	content: "";
	width: 12px;
	height: 12px;
	flex: 0 0 12px;
	display: inline-block;
	-webkit-mask: url(/card/common/img/cmn-parts.png) no-repeat -85px 0;
	mask: url(/card/common/img/cmn-parts.png) no-repeat -85px 0;
	background-color: #fff;
	margin-right: 0.6em;
}

.detail_btn a .sml {
	font-size: 85%;
}

.detail_btn.windowicon a {
	padding-left: 40px;
}

@media screen and (max-width: 640px) {
	.detail_btn a .linkSite {
		display: flex;
		align-items: center;
	}
}

@media screen and (max-width: 480px) {
	.detail_btn a {
		padding: 10px 20px;
	}

}

/* ビューコーポレートカード */
.mainimg {
	position: relative;
	overflow: hidden;
}

.newsec .mainimg .twocol {
	width: 100%;
	padding: 0 27px 0 24px;
	box-sizing: border-box;
	align-items: center;
	justify-content: space-between;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
}

.newsec .mainimg .card {
	margin-left: 20px;
}

#main .newsec .mainimg p {
	color: #fff;
	font-size: 1.14em;
	font-weight: bold;
	line-height: 1.33;
	margin-bottom: 8px;
}

#main .newsec .mainimg h1 {
	color: #fff;
	font-size: 2.14em;
	font-weight: bold;
	line-height: 1.2;
	margin: 0;
}

#main .newsec .mainimg h1 img {
	width: 100%;
	max-width: 100%;
	height: auto;
}

.newsec .mainimg .btn {
	margin: 15px 0 0;
}

.newsec .mainimg .btn a {
	color: #fff;
	font-size: 1.28em;
	font-weight: bold;
	line-height: 1.33;
	text-decoration: none;
	padding: 8px 14px 7px 41px;
	border-radius: 8px;
	background: url(/card/corporation/img/icon_procedure_sml.png) no-repeat 15px 9px #e66c21;
	background-size: 20px auto;
	display: inline-block;
}

.newsec .mainimg .btn a:hover {
	background-color: #ee9864;
	opacity: 1;
}

.merit_link {
	position: relative;
}

.merit_bnr {
	position: absolute;
	top: -20px;
	right: 0px;
	z-index: 2;
}

.merit_bnr a {
	transition: ease .3s;
}

.merit_bnr a:hover {
	opacity: .7;
}

.merit_link ul {
	width: 100%;
	display: flex;
	justify-content: space-between;
}

.merit_link ul li {
	width: calc(25% - 12px);
}

.merit_link ul li a {
	color: #fff;
	text-decoration: none;
	padding: 15px 0 30px;
	border-radius: 8px;
	display: block;
	transition: ease .3s;
	position: relative;
}

.merit_link ul li a::after {
	content: "";
	width: 14px;
	height: 7px;
	background: url(/card/corporation/img/icon_arrow_w_down.png) no-repeat 0 0;
	background-size: 100% auto;
	position: absolute;
	bottom: 15px;
	left: 50%;
	transform: translateX(-50%);
}

.merit_link ul li a:hover {
	opacity: .7;
}

.merit_link ul li .board img {
	width: 100%;
	max-width: 88px;
}

.merit_link ul li a p {
	font-size: 1.42em;
	font-weight: bold;
	line-height: 1.33;
	text-align: center;
	margin: 8px 0 0;
	white-space: nowrap;
}

.merit_link ul li a p .sml {
	display: inline-block;
	transform: scaleX(0.9);
}

.merit_link ul li:nth-child(1) a {
	background: #008ecf;
}

.merit_link ul li:nth-child(2) a {
	background: #0083bf;
}

.merit_link ul li:nth-child(3) a {
	background: #009db9;
}

.merit_link ul li:nth-child(4) a {
	background: #0d57b3;
}

.merit_link ul.fourcol li {
	width: calc(25% - 12px);
}

.merit_cont {
	padding: 0 0 30px;
	overflow: hidden;
}

#merit_01 {
	background: #e5f3fa;
}

#merit_02 {
	background: #e5f2f8;
}

#merit_03 {
	background: #e5f5f8;
}

#merit_04 {
	background: #e6eef7;
}

#merit_05 {
	background: #e9edf7;
}

#merit_option {
	background: #dce4f8;
}

#main .merit_cont h3 {
	color: #fff;
	font-size: 1.92em;
	line-height: 1.25;
	padding: 16px 10px 15px;
	margin: 0 0 30px;
}

#main #merit_01 h3 {
	background: #008ecf;
}

#main #merit_02 h3 {
	background: #0083bf;
}

#main #merit_03 h3 {
	background: #009db9;
}

#main #merit_04 h3 {
	background: #0d57b3;
}

#main #merit_05 h3 {
	background: #204191;
}

#main #merit_option h3 {
	display: flex;
	background: #00bda5;
	padding-left: 20px;
	padding-right: 20px;
}

#main #merit_option h3::after {
	content: "登録無料";
	font-size: 18px;
	padding: 6px 20px 5px;
	background-color: #fff;
	color: #00bda5;
	border-radius: 15px;
	margin-left: auto;
}

@media screen and (max-width: 640px) {
	#main #merit_option h3::after {
		padding: 22px 5px 5px;
	}
}

#main .merit_cont h3 .col {
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
}

#main .merit_cont h3 .col img {
	margin: 0 10px 0 0;
	position: relative;
}

.merit_cont .cardtop {
	width: 100%;
	padding: 0 15px;
	display: flex;
	align-items: center;
}

.merit_cont .cardtop .image {
	width: 230px;
	min-width: 230px;
	margin-right: 30px;
}

.merit_cont .halfcol {
	width: 100%;
	padding: 0 15px;
	margin: 30px 0 0;
	display: flex;
}

/* メリット3（もとは01） */
.business #merit_03 .cardtop,
.business #merit_03 .halfcol {
	padding: 0 !important;
}

.merit_cont .halfcol .col:nth-child(1) {
	width: 47.8%;
	padding: 0 20px 0 0;
}
.merit_cont .halfcol .col:nth-child(2) {
	width: 52.2%;
}

/* メリット3（もとは01） */
.business #merit_03 .halfcol .col:nth-child(1) {
	width: 40%;
}
.business #merit_03 .halfcol .col:nth-child(2) {
	width: 60%;
}

.merit_cont .cardtop h4,
.merit_cont .halfcol h4 {
	font-size: 1.428em;
	font-weight: bold;
	line-height: 1.5;
	margin: 0 0 8px;
}

.merit_cont .cardtop p,
.merit_cont .halfcol p {
	font-size: 1.14em;
	line-height: 1.6;
	margin: 6px 0 0;
}

.merit_cont .halfcol .col p.chushaku {
	font-size: 0.714em;
	line-height: 1.33;
	text-indent: -1em;
	margin: 0 0 0 10px;
}

.merit_cont ul.charge_desc {
	width: 100%;
	display: flex;
	position: relative;
	justify-content: space-between;
}

.merit_cont ul.charge_desc::after {
	content: "";
	width: 17px;
	height: 38px;
	background: url(/card/corporation/img/icon_arrow_big.png) no-repeat 0 0;
	background-size: 100% auto;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translateX(-50%) translateY(-50%);
}

.merit_cont ul.charge_desc li {
	width: calc(50% - 13px);
	padding: 10px 1px 5px;
	background: #fff;
}

/* メリット3（もとは01） */
.business #merit_03 ul.charge_desc li {
	border: solid 5px #e5f3fa;
}

#main .merit_cont ul.charge_desc li h5 {
	color: #008ecf;
	font-size: 0.928em;
	line-height: 1.38;
	text-align: center;
	margin: 0 0 12px;
}

#main .merit_cont ul.charge_desc li p.train {
	font-size: 0.857em;
	line-height: 1.6;
	padding: 0 0 0 18px;
	margin: 0 10px 20px;
	text-align: center;
	background: url(/card/corporation/corporate/img/icon_train.png) no-repeat 0 0;
	background-size: 14px auto;
}

#main .merit_cont ul.charge_desc li p.icons {
	font-size: 0.857em;
	line-height: 1.33;
	padding: 0;
	margin: 0 10px 10px;
	text-align: center;
}

#main .merit_cont ul.charge_desc li p.icons .icon {
	margin: 0 0 3px;
	display: block;
}

#main .merit_cont ul.charge_desc li p.chushaku {
	font-size: 0.714em;
	line-height: 1.33;
	text-indent: -1em;
	padding: 0 0 0 1em;
	margin: 15px 10px 0;
}

.merit_cont .detail_btn {
	margin: 25px 0 10px;
}

.merit_cont .detail_btn a:hover {
	opacity: .7;
}

#merit_01 .detail_btn a {
	background: #008ecf;
}

#merit_02 .detail_btn a {
	background: #0083bf;
}

#merit_03 .detail_btn a {
	background: #009db9;
}

#merit_04 .detail_btn a {
	background-color: #0d57b3;
}

#merit_04 dl {
	width: 440px;
	margin: 0 auto;
	border: 3px solid #e6eef7;
	padding: 10px 20px;
}
#merit_04 dt {
	color: #0d57b3;
	font-weight: bold;
}

#merit_04 .flexContainer {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
#merit_04 .flexContainer > .w60 {
	width: 60%;
}
#merit_04 .flexContainer > .w40 {
	width: 38%;
}

@media screen and (max-width: 640px) {
	#merit_04 dl {
		width: 100%;
		margin: 0 auto;
	}
	#merit_04 .flexContainer > .w60,
	#merit_04 .flexContainer > .w40 {
		width: 100%;
	}
}

#merit_05 .meritMore {
	display: flex;
	align-items: center;
	margin-top: 40px;
}
#merit_05 .meritMore img {
	width: 140px;
}
#merit_05 .meritMore > div:last-of-type {
	width: 80%;
}
#merit_05 ul.view li::first-letter{
	color: #007cc8;
}
#merit_05 ul.uc li::first-letter{
	color: #1d2088;
}
@media screen and (max-width: 640px) {
	#merit_05 .meritMore {
		display: block;
		margin-top: 30px;
	}
	#merit_05 .meritMore > div:last-of-type {
		width: 100%;
		margin-top: 10px;
	}
}


#merit_option .detail_btn {
	text-align: right;
}

#merit_option .detail_btn a {
	background-color: #00bda5;
}

.merit_service {
	padding: 20px;
	margin: 30px 15px 0;
	background: #fff;
	display: flex;
	align-items: stretch;
}

.merit_service .image {
	width: 254px;
	min-width: 254px;
	min-height: 160px;
	margin: 0 20px 0 0 !important;
	border-radius: 8px;
	border: solid 1px #f3f3f3;
	display: flex;
	align-items: center;
}

.merit_service .image a {
	padding: 11px 0;
	min-height: 160px;
	display: block;
	display: flex;
	align-items: center;
	transition: ease .3s;
}

.merit_service .image a.nolink {
	cursor: default;
}

.merit_service .image a:hover {
	opacity: .7;
}

.merit_service .image a.nolink:hover {
	opacity: 1;
}

.merit_service .card_image {
	min-height: inherit !important;
	border: 0;
}

.merit_service .card_image a {
	padding: 0 !important;
	min-height: inherit !important;
}

.merit_service .text_box {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
}

/* メリット2 */
.business #merit_02 .merit_service .text_box .text h4 + p {
	margin-top: 0.5em;
}


#main .merit_service h4 {
	width: 100%;
	font-size: 1.71em;
	font-weight: bold;
	line-height: 1.25;
	margin: 0;
}

#main .merit_service h4 a {
	color: #000;
	text-decoration: none;
}

#main .merit_service h4 a:hover {
	color: #f60;
	text-decoration: underline;
}

#main .merit_service p {
	width: 100%;
	font-size: 1em;
	line-height: 1.6;
	margin: 10px 0 0;
}

#main .merit_service p+p {
	margin: 17px 0 0;
}

#main .merit_service h4+p.chushaku {
	margin: 1em 0 0;
}

#main .merit_service p.chushaku {
	font-size: 0.857em;
	line-height: 1.5;
	padding-left: 1em;
	text-indent: -1em;
}

#main .merit_service p.chushaku.red {
	color: #f00;
}

#main .merit_service p.chushaku+p.chushaku {
	margin: 0;
}

#main .merit_service p a:hover {
	color: #f60;
}

.merit_service_s {
	display: flex;
	gap: 30px;
	margin: 30px 15px 0;
}

.merit_service_s .item {
	width: calc(50% - 15px);
	flex-direction: column;
	background: #fff;
	padding: 20px;
}

.merit_service_s .item h4 {
	font-size: 1.5em;
	line-height: 1.4;
	text-align: center;
	margin-bottom: 15px;
}

#main .merit_service_s h4 a {
	color: #000;
	text-decoration: none;
}

#main .merit_service_s h4 a:hover {
	color: #f60;
	text-decoration: underline;
}

.merit_service_s .item .inner {
	display: flex;
	gap: 15px;
}

.merit_service_s .item .image {
	width: 130px;
	min-height: 100px;
	border-radius: 8px;
	border: solid 1px #f3f3f3;
	display: flex;
	align-items: center;
}

.merit_service_s .item p {
	font-size: 0.8rem;
	flex: 1;
}

.merit_service_s .item .inner+.detail_btn {
	margin: 15px 0 0;
}

.merit_service_s .item .inner+.detail_btn a {
	font-size: 0.83rem;
}

.choiceCard_list {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.choiceCard_list dl {
	display: flex;
	align-items: center;
}

.choiceCard_list dt {
	width: 100px;
	height: 100px;
	flex: 0 0 100px;
	border-radius: 100px;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
}

.choiceCard_list dt.kojin {
	background-color: #cceeff;
}

.choiceCard_list dt.kojin strong {
	color: #007ebc;
}

.choiceCard_list dt.yakushoku {
	background-color: #ffe7e9;
}

.choiceCard_list dt.yakushoku strong {
	color: #e60012;
}

.choiceCard_list dt strong {
	display: block;
	font-size: 1.0rem;
}

.choiceCard_list dt span.s {
	display: block;
	font-size: 0.8rem;
}

.choiceCard_list dd {
	flex: 1;
	margin-left: 1em;
}

.choiceCard_caution {
	position: relative;
	background: #eef8ff url(../img/suica_charge/sc_bg_caution.jpg) no-repeat left top/160px;
	padding: 25px 25px 20px 100px;
	margin-top: 30px;
}

.choiceCard_caution h3 {
	font-size: 1.1rem;
	margin-bottom: 0.2em !important;
}

.choiceCard_caution .chushaku {
	line-height: 1.8;
}

.choiceCard_caution .chushaku li {
	margin: 0;
	padding-left: 1em;
	text-indent: -1em;
}

.hyotable table {
	border: 0;
	border-top: solid 1px #ddd;
	border-left: solid 1px #ddd;
}

.hyotable table th,
.hyotable table td {
	font-size: 1em;
	line-height: 1.4;
	vertical-align: middle;
	padding: 10px 15px;
	background: #e9e9e9;
	border: 0;
	border-bottom: solid 1px #ddd;
	border-right: solid 1px #ddd;
}

.hyotable table th {
	white-space: nowrap;
}

.hyotable table th.head {
	color: #fff;
	font-weight: bold;
	text-align: center;
	background: #008ed0;
	border-right: solid 1px #008ed0;
	position: relative;
}

.hyotable table th.head::before {
	content: "";
	width: 100%;
	height: 1px;
	position: absolute;
	top: -1px;
	left: 0;
	background: #008ed0;
}

.hyotable table th.head::after {
	content: "";
	width: 1px;
	height: 100%;
	position: absolute;
	top: 0;
	left: -1px;
	background: #008ed0;
}

.hyotable table td {
	background: #fff;
}

.hyotable table td .bland {
	padding: 5px 0;
	display: inline-block;
}

.hyotable table td .bland img {
	width: 44px;
	height: auto;
	position: relative;
	top: 1px;
}

#main .hyotable table td p {
	font-size: 1em;
	line-height: 1.66;
	margin: 0;
}

#main .hyotable table td p .st {
	color: #f00;
	font-weight: bold;
}

#main .hyotable table td p a {
	color: #007dbb;
}

#main .hyotable p.chushaku {
	font-size: 0.857em;
	margin: 0;
	padding-left: 1em;
	text-indent: -1em;
}

#main .hyotable p.chushaku.red {
	color: #f00;
	text-align: right;
}

#main .hyotable p.tblink {
	font-size: 1em;
	text-align: right;
	margin: 12px 0 0;
}

#main .hyotable table td p a:hover,
#main .hyotable p.tblink a:hover,
#main .apply_btn p a:hover {
	color: #f60;
}

/* #main .hyotable p.tokuyaku {
	font-size: 1em;
	margin: 0 0 15px 19px;
}

#main .hyotable p.tokuyaku a {
	padding: 0 0 0 14px;
	background: url(/card/corporation/img/icon_arrow.png) no-repeat 0 center;
	background-size: 7px auto;
}

#main .hyotable p.tokuyaku a:hover {
	text-decoration: none;
} */

.case_study .twocol {
	padding: 0 15px;
	align-items: center;
}

.case_study .image {
	width: 318px;
	min-width: 318px;
	margin: 0 30px 0 0;
}

#main .case_study p {
	font-size: 1.28em;
	line-height: 1.6;
	font-weight: bold;
	margin: 0;
}

#main .case_study .detail_btn {
	margin: 25px 0 0;
}

#main .apply_btn p {
	font-size: 114.3%;
	line-height: 1.6;
	margin: 0 15px;
}

#main .apply_btn p .st {
	font-weight: bold;
}

#main .apply_btn p.chushaku {
	font-size: 1em;
	text-indent: -1em;
	padding-left: 1em;
	margin: 5px 15px 0;
}

#main .business .apply_btn p.chushaku {
	font-size: 0.857em;
	margin: 15px 15px 0;
}

.apply_btn .btn {
	text-align: center;
	margin: 25px 15px 0;
}
.business .apply_btn .btn {
	margin: 30px 15px 0;
}

.apply_btn .btn a {
	color: #fff;
	font-size: 1.28em;
	font-weight: bold;
	line-height: 1.6;
	min-width: 450px;
	padding: 0 35px;
	text-align: center;
	text-decoration: none;
	background: #e66c21;
	display: inline-block;
	border-radius: 8px;
	transition: ease .3s;
}

.apply_btn .btn a:hover {
	opacity: .7;
}

.apply_btn .btn a .icon {
	padding: 12px 0 11px 42px;
	display: inline-block;
	background: url(/card/corporation/img/icon_procedure.png) no-repeat 0 center;
	background-size: 34px auto;
}

.apply_btn .btn a .sml {
	font-size: 78%;
}

@media screen and (max-width: 640px) {
	.newsec .mainimg .image img {
		width: 120%;
		max-width: 120%;
		position: relative;
		left: -10%;
	}

	.newsec .mainimg .twocol {
		padding: 0 15px;
	}

	#main .newsec .mainimg h1 img {
		max-width: 357px;
	}

	#main .newsec .mainimg p,
	.newsec .mainimg .btn a {
		font-size: 1em;
	}

	.newsec .mainimg .btn a {
		padding: 6px 12px 6px 34px;
		background: url(/card/corporation/img/icon_procedure_sml.png) no-repeat 11px 7px #e66c21;
		background-size: 18px auto;
	}

	.merit_link ul {
		padding: 0 7px;
		justify-content: center;
		flex-wrap: wrap;
	}

	.merit_link ul li {
		width: calc(50% - 16px);
		margin: 15px 8px 0;
	}

	.merit_link ul li:nth-child(1),
	.merit_link ul li:nth-child(2) {
		margin-top: 0;
	}

	.merit_bnr {
		position: relative;
		width: 60vw;
		margin: auto;
		transform: translateX(-8px);
	}

	#main .merit_cont h3 {
		text-align: center;
		padding: 14px 10px 12px;
		margin: 0 0 25px;
	}

	#main .merit_cont h3 br {
		display: none;
	}

	#main .merit_cont h3 .col {
		display: block;
	}

	#main .merit_cont h3 .col img {
		max-width: 96px;
		margin: 0 auto 10px;
	}

	.merit_cont .cardtop,
	.merit_cont .halfcol {
		display: block;
	}

	.merit_cont .cardtop .image {
		width: 100%;
		margin: 0 0 15px;
	}

	.merit_cont .cardtop .image img {
		max-width: 230px;
	}

	.merit_cont .halfcol .col:nth-child(1),
	.merit_cont .halfcol .col:nth-child(2) {
		width: auto !important;
		padding: 0 !important;
	}

	.merit_cont ul.charge_desc {
		justify-content: center;
	}

	.merit_cont ul.charge_desc li {
		width: calc(50% - 13px);
		max-width: 160px;
		margin: 0 13px 0 0;
	}

	.merit_cont ul.charge_desc li:nth-child(2) {
		margin: 0 0 0 13px;
	}

	.merit_cont .halfcol h4 br,
	#main .merit_cont ul.charge_desc li p.chushaku br {
		display: none;
	}

	.merit_cont ul.charge_desc {
		margin: 15px 0 0;
	}

	#main .merit_cont ul.charge_desc li p.icons .icon img {
		width: auto;
	}

	.merit_cont .detail_btn {
		margin: 20px 0 5px;
	}

	.merit_service {
		padding: 15px;
		margin: 25px 15px 0;
		display: block;
	}

	.merit_service .image {
		width: auto;
		min-width: inherit;
		min-height: 150px;
		margin: 0 auto 15px !important;
	}

	.merit_service .image a {
		width: 100%;
		min-height: 150px;
		padding: 15px 0;
	}

	.merit_service .image img {
		max-width: 200px;
	}

	#main .merit_service h4 {
		font-size: 1.28em;
		line-height: 1.33;
	}

	#main .merit_service p+p {
		margin: 12px 0 0;
	}

	#main .merit_service h4 br {
		display: none;
	}

	.merit_service_s {
		gap: 16px;
		margin: 25px 15px 0;
	}

	.merit_service_s .item {
		width: calc(50% - 8px);
		padding: 10px;
	}

	.merit_service_s .item h4 {
		font-size: 1.2em;
		margin-bottom: 10px;
	}

	.merit_service_s .item .inner {
		flex-direction: column;
		gap: 10px;
	}

	.merit_service_s .item .image {
		width: 100%;
	}

	.merit_service_s .item p {
		font-size: 2.9vw;
	}

	.merit_service_s .item .inner+.detail_btn {
		margin: 10px 0 0;
	}

	.merit_service_s .item .inner+.detail_btn a {
		display: flex;
		justify-content: center;
		align-items: center;
		height: 44px;
		font-size: 3.0vw;
		line-height: 1.4;
		padding: 5px 10px;
	}

	.choiceCard_list {
		margin: 0 15px;
	}

	.choiceCard_list dd {
		font-size: 0.85rem;
	}

	.choiceCard_caution {
		position: relative;
		background: #eef8ff url(../img/suica_charge/sc_bg_caution.jpg) no-repeat left top/110px;
		padding: 20px 20px 20px 70px;

	}

	.choiceCard_caution h3 {
		font-size: 3.8vw;
	}

	.choiceCard_caution .chushaku {
		font-size: 3.0vw;
	}

	.hyotable {
		padding: 0 15px;
	}

	.hyotable table th,
	.hyotable table td {
		padding: 10px;
	}

	#main .hyotable table td.others p+p {
		margin-top: 5px;
	}

	#main .hyotable p.chushaku.red {
		font-size: 0.73rem;
		text-align: left;
	}

	.case_study .twocol {
		display: block;
	}

	.case_study .image {
		width: 100%;
		max-width: 318px;
		margin: 0 auto 15px;
	}

	#main .case_study .detail_btn {
		margin: 20px 0 0;
	}

	#main .case_study p {
		font-size: 1.14em;
	}

	#main .apply_btn p {
		font-size: 1.1em;
	}

	#main .apply_btn p .st {
		font-size: 1.036em;
		margin: 0 0 10px;
		display: inline-block;
	}

	.apply_btn .btn a {
		min-width: inherit;
	}

	.apply_btn .btn a .sml {
		display: block;
	}
}

@media screen and (max-width: 480px) {
	.business .newsec .mainimg {
		background: url(/card/corporation/business/img/main_bg.jpg) no-repeat 30% center;
		background-size: cover;
	}

	.corporate .newsec .mainimg {
		background: url(/card/corporation/corporate/img/main_bg.jpg) no-repeat 30% center;
		background-size: cover;
	}

	.cardless .newsec .mainimg {
		background: url(/card/corporation/cardless/img/main_bg.jpg) no-repeat 59% center;
		background-size: cover;
	}

	.newsec .mainimg .image {
		display: none;
	}

	.newsec .mainimg .twocol {
		padding: 20px 15px 25px;
		position: relative;
		top: 0;
		transform: none;
		flex-wrap: wrap;
		flex-direction: column-reverse;
	}

	#main .newsec .mainimg p {
		text-align: center;
	}

	.newsec .mainimg .card {
		width: 100%;
		margin: 0 0 20px;
	}

	.newsec .mainimg .card img {
		max-width: 240px;
	}

	.newsec .mainimg .btn {
		text-align: center;
		margin: 20px 0 0;
	}

	.newsec .mainimg .btn a {
		padding: 7px 14px 7px 41px;
		background: url(/card/corporation/img/icon_procedure_sml.png) no-repeat 15px 7px #e66c21;
		background-size: 20px auto;
	}

	.merit_link ul {
		padding: 0 10px;
	}

	.merit_link ul li {
		width: calc(50% - 10px);
		margin: 10px 5px 0;
	}

	.merit_link ul li .board img {
		max-width: 82px;
	}

	#main .merit_cont h3 {
		font-size: 1.85em;
		margin: 0 0 20px;
	}

	#main .merit_cont h3 .col img {
		max-width: 100px;
	}

	.merit_cont .cardtop h4,
	.merit_cont .halfcol h4 {
		font-size: 1.28em;
	}

	.merit_cont ul.charge_desc {
		display: block;
	}

	.merit_cont ul.charge_desc::after {
		display: none;
	}

	.merit_cont ul.charge_desc li {
		width: 100%;
		max-width: 200px;
		margin: 0 auto;
		position: relative;
	}

	.merit_cont ul.charge_desc li:nth-child(2) {
		margin: 30px auto 0;
	}

	.merit_cont ul.charge_desc li:nth-child(2)::after {
		content: "";
		width: 17px;
		height: 38px;
		background: url(/card/corporation/img/icon_arrow_big.png) no-repeat 0 0;
		background-size: 100% auto;
		position: absolute;
		top: 5px;
		left: 50%;
		transform: translateX(-50%) translateY(-100%) rotate(90deg);
	}

	/* メリット3（もとは01） */
	.business #merit_03 ul.charge_desc li:nth-child(2)::after {
		top: 0;
	}

	#main .merit_cont ul.charge_desc li p.train {
		width: 100%;
		max-width: 140px;
		margin: 0 auto 15px;
	}

	.hyotable table tr,
	.hyotable table th,
	.hyotable table td {
		width: 100%;
		display: block;
	}

	.hyotable table th {
		text-align: center;
	}

	.hyotable table td {
		padding: 10px 15px;
	}

	.apply_btn .btn a {
		padding: 0 25px;
	}

}


/* ビュー法人カードレスサービス */
#main .newsec .mainimg h1+p {
	margin: 20px 0 0;
}

#main .newsec .mainimg .card h2 {
	color: #cacaca;
	font-size: 1.14em;
	font-weight: bold;
	text-align: center;
	margin: 5px 0 2px;
}

#main .newsec .mainimg .card p {
	color: #cacaca;
	font-size: 0.857em;
	text-align: center;
	margin: 0;
	white-space: nowrap;
}

.cardless .merit_cont .twocol {
	align-items: center;
}

#main .cardless .merit_cont .twocol p {
	font-size: 1.14em;
}

.cardless .merit_cont .twocol.leftimg .image {
	margin: 0 25px 0 0;
}

.cardless .merit_cont .twocol.rightimg {
	flex-direction: row-reverse;
}

.cardless .merit_cont .twocol.rightimg .image {
	margin: 0 0 0 30px;
}

.cardless #merit_01.merit_cont .twocol.rightimg {
	margin-top: 20px;
}

.cardless #merit_01.merit_cont h3 {
	margin-bottom: 20px;
}

.cardless #merit_01 .twocol.leftimg .image {
	width: 214px;
	min-width: 214px;
	padding-left: 15px;
	box-sizing: content-box;
}

#main .cardless #merit_01 .twocol.leftimg p {
	padding-right: 15px;
}

.cardless #merit_01 .twocol.rightimg .image {
	width: 193px;
	min-width: 193px;
	padding-right: 15px;
	box-sizing: content-box;
}

#main .cardless #merit_01 .twocol.rightimg p {
	padding-left: 20px;
}

.cardless #merit_02 .twocol.leftimg .image {
	width: 208px;
	min-width: 208px;
	padding-left: 22px;
	box-sizing: content-box;
}

#main .cardless #merit_02 .twocol.leftimg p {
	padding-right: 20px;
}

.cardless #merit_03 .twocol.rightimg .image {
	width: 315px;
	min-width: 315px;
	padding-right: 18px;
	box-sizing: content-box;
}

#main .cardless #merit_03 .twocol.rightimg p {
	padding-left: 15px;
}

.cardless #merit_04 .twocol.leftimg .image {
	width: 243px;
	min-width: 243px;
	margin-right: 30px;
	padding-left: 15px;
	box-sizing: content-box;
}

.cardless #merit_04 .twocol.leftimg .image p {
	color: #0d57b3;
	font-size: 1.28em;
	font-weight: bold;
	line-height: 1.33;
	text-align: center;
	margin: 0 0 15px;
}

#main .cardless #merit_04 .twocol.leftimg .text p {
	padding-right: 20px;
}

.cardless #merit_02 .twocol.leftimg .text p+p,
.cardless #merit_04 .twocol.leftimg .text p+p {
	margin-top: 25px;
}

.blbox {
	margin: 25px 15px 0;
	background: #fff;
}

#main .blbox h4 {
	color: #0d57b3;
	font-size: 1.28em;
	font-weight: bold;
	text-align: left;
	padding: 10px 15px 0;
}

#main .redtxt {
	margin: 25px 15px 0;
}

#main .redtxt p.chushaku {
	color: #f90000;
	font-size: 1em;
	padding-left: 1em;
	text-indent: -1em;
	margin: 0;
}

#main .blbox .twocol {
	width: 100%;
	align-items: flex-start;
}

#main .blbox ul {
	width: 55%;
	padding: 15px;
}

#main .blbox .twocol ul:nth-child(1) {
	width: 45%;
}

#main .blbox ul li {
	font-size: 1.14em;
	text-indent: -1em;
	padding: 0 0 0 1em;
	margin: 0 0 4px;
	box-sizing: border-box;
}

@media screen and (max-width: 640px) {
	.merit_link ul.fourcol li {
		width: calc(50% - 16px);
	}

	#main .cardless .merit_cont .twocol p {
		font-size: 1em;
	}

	.cardless #merit_01 .twocol.leftimg .image {
		width: 180px;
		min-width: 180px;
	}

	.cardless #merit_01 .twocol.rightimg .image {
		width: 170px;
		min-width: 170px;
	}

	.cardless #merit_02 .twocol.leftimg .image {
		width: 180px;
		min-width: 180px;
		padding-left: 15px;
	}

	.cardless #merit_03 .twocol.rightimg .image {
		width: 230px;
		min-width: 230px;
		padding-right: 15px;
		margin-left: 15px;
	}

	.cardless #merit_04 .twocol.leftimg .image {
		width: 180px;
		min-width: 180px;
		margin-right: 20px;
	}

	#main .blbox h4 {
		padding: 10px 10px 0;
	}

	#main .blbox ul {
		padding: 10px;
	}

	#main .blbox ul li {
		font-size: 1em;
	}

}


@media screen and (max-width: 480px) {
	#main .newsec .mainimg p {
		font-size: 0.9em;
	}

	.cardless .merit_cont .twocol {
		display: block;
	}

	.cardless .merit_cont .twocol .image {
		width: auto !important;
		min-width: inherit !important;
		margin: 0 0 15px !important;
		padding: 0 15px !important;
	}

	.cardless .merit_cont .twocol .image img {
		width: auto !important;
		max-width: 100% !important;
	}

	.cardless .merit_cont .twocol .text {
		padding: 0 15px !important;
	}

	.cardless .merit_cont .twocol .text p {
		padding: 0 !important;
	}

	.cardless #merit_01.merit_cont .twocol.rightimg {
		margin-top: 30px;
	}

	#main .blbox .twocol {
		padding: 10px;
		display: block;
	}

	#main .blbox ul {
		padding: 0 !important;
		width: auto !important;
	}

}

/* ビュービジネスオナーズカード */
#main .newsec .mainimg p.chushaku {
	color: #fff;
	font-size: 0.857em;
	line-height: 1.2;
	margin: 0;
	position: absolute;
	bottom: 10px;
	left: 20px;
}

.merit_opcl {
	margin: 0 15px;
	border: solid 1px #008fcd;
	background: #fff;
}

.merit_opcl+.merit_opcl {
	margin-top: 30px;
}

#main .merit_opcl h4.opttl {
	color: #008fcd;
	font-size: 1.428em;
	line-height: 1.2;
	padding: 12px 35px 12px 15px;
	position: relative;
	cursor: pointer;
}

#main #merit_02 .merit_opcl h4.opttl {
	color: #008fcd;
}

#main #merit_03 .merit_opcl h4.opttl {
	color: #009db9;
}

#main #merit_04 .merit_opcl h4.opttl {
	color: #0d57b3;
}

#main #merit_05 .merit_opcl h4.opttl {
	color: #204191;
}

#main .merit_opcl h4.opttl::after {
	content: "";
	width: 20px;
	height: 20px;
	background: url(/card/corporation/img/icon_plus.png) no-repeat 0 0;
	background-size: 100% auto;
	position: absolute;
	top: 50%;
	right: 15px;
	transform: translateY(-50%);
}

#main .merit_opcl h4.opttl.on::after {
	background-image: url(/card/corporation/img/icon_minus.png);
}

#main .merit_opcl h5 {
	font-size: 1.428em;
	font-weight: bold;
	line-height: 1.5;
}

.opcl_box {
	padding: 15px;
	display: none;
}

#main .opcl_box p {
	font-size: 1.14em;
	line-height: 1.6;
	margin: 0;
}

.efficiency {
	width: 100%;
	margin: 20px 0 0;
	display: flex;
	position: relative;
}

.efficiency::after {
	content: "";
	width: 72px;
	height: 45px;
	background: url(/card/corporation/business/img/merit_yajirushi.png) no-repeat 0 0;
	background-size: 100% auto;
	position: absolute;
	top: calc(50% - 0.5em);
	left: 44%;
	transform: translateY(-50%) translateX(-50%);
}

.efficiency .col {
	width: 50%;
}

.efficiency .col:nth-child(1) {
	padding-top: 6px;
	padding-right: 50px;
}

.efficiency .col:nth-child(2) {
	padding-right: 50px;
}

#main .efficiency .col p {
	color: #008ecf;
	font-size: 1em;
	font-weight: bold;
	line-height: 1.2;
	text-align: center;
	margin: 12px 0 0;
}

.next_arrow {
	height: 43px;
	margin: 30px 0 25px;
	background: url(/card/corporation/business/img/merit_bigarrow.png) no-repeat center 0;
	background-size: auto 100%;
}

#main .next_arrow p {
	color: #008ecf;
	font-size: 1.28em;
	font-weight: bold;
	line-height: 1.1;
	text-align: center;
	margin: 0;
}

.example {
	margin: 25px 0 0;
}

.example .threecol {
	width: 100%;
	margin: 20px 0 0;
	display: flex;
	align-items: flex-start;
}

#main .example .threecol h5 {
	color: #fff;
	font-size: 1em;
	line-height: 1.7;
	padding: 6px 10px;
	background: #006bb4;
	white-space: nowrap;
}

#main .example .threecol:nth-child(2) h5 {
	background: #62a157;
}

.example .threecol .image {
	width: 324px;
	min-width: 324px;
	margin: 12px 10px 0 15px;
}

#main .opcl_box .example p {
	font-size: 1em;
	font-weight: bold;
	line-height: 1.33;
	margin: 12px 0 0;
}

#main .opcl_box .example p .chushaku {
	font-size: 0.857em;
	margin: 15px 0 0;
	display: block;
}

/* メリット3（もとは01） */
.business #merit_03 .detail_btn {
	margin: 20px 0 15px;
}

.opcl_box .border_box {
	margin: 25px 0 0;
	padding: 15px;
	border: solid 1px #eee;
}

.opcl_box .border_box .ekinet {
	margin: 15px 0 0;
	align-items: flex-start;
}

.opcl_box .ekinet .image {
	width: 252px;
	padding: 35px 20px;
	margin: 0 30px 0 0;
	border: solid 1px #eee;
}

#main .opcl_box .border_box .ekinet p+p {
	margin-top: 10px;
}

#main .opcl_box p .st {
	color: #f00;
}

.section a.window::after {
	content: "";
	width: 10px;
	height: 9px;
	background: url(/card/corporation/img/icon_window.png) no-repeat 0 0;
	background-size: 100% auto;
	display: inline-block;
	margin: 0 0 0 8px;
}

.section a.pdf::after {
	background: url(/card/shared/img/icon_pdf.svg) no-repeat 0 0;
	content: "";
	width: 14px;
	height: 14px;
	background-size: 100% auto;
	display: inline-block;
	margin: 0 0 0 8px;
}

.ex-ic {
	margin: 30px 0 15px;
}

.ex-ic .image,
.uc-etc .image {
	width: 252px;
	min-width: 252px;
	margin-right: 20px;
	border: solid 1px #eee;
	padding: 20px;
	border-radius: 8px;
	display: block;
}

#main .ex-ic .image p,
#main .uc-etc .image p {
	font-size: 0.857em;
	text-align: center;
	margin: 12px 0 0;
}

/* メリット3（もとは01） */
.business #merit_03 .ex-ic .detail_btn {
	margin-top: 12px;
}

.ex-ic .text h5,
.uc-etc .text h5 {
	margin: -5px 0 5px;
}

/* メリット3（もとは01） */
#main .business #merit_03 p.chushaku {
	font-size: 0.857em;
	margin: 15px 0 0;
	padding-left: 1em;
	text-indent: -1em;
}

.uc-etc {
	margin: 0 0 25px;
}

/* メリット3（もとは01） */
.business #merit_03 .uc-etc .detail_btn {
	margin: 15px 0;
}

.opcl_box .uc-etc+h5+.border_box {
	padding: 20px 15px;
	margin: 20px 0 0;
}

.ekiren {
	margin: 10px 0 20px;
	align-items: flex-start;
}

.ekiren .image {
	width: 252px !important;
	min-width: 252px !important;
	padding: 20px;
	border: solid 1px #eee;
	margin-right: 30px;
}

#main .ekiren .text h5 {
	margin: -5px 0 5px;
}

.tokuten {
	padding: 25px 15px 20px;
	margin: 40px 0 20px;
	position: relative;
	border: solid 1px #009db9;
}

.tokuten .ttl {
	position: absolute;
	top: -12px;
	left: -1px;
}

#main .merit_opcl h6 {
	font-size: 1.14em;
}

/* メリット3（もとは01） */
#main .business #merit_03 .ekiren p.chushaku {
	font-size: 1em;
	text-indent: -1em;
	padding-left: 1em;
	margin: 5px 0 0;
}

/* メリット4（もとは02） */
#main .business #merit_04 .image {
	margin: 15px 0;
}
#main .business #merit_04 p.chushaku {
	font-size: 0.857em;
	padding-left: 1em;
	text-indent: -1em;
}

/* メリット1（もとは03） */
#main .business #merit_01 .merit_opcl h5 {
	text-align: center;
	margin: 25px 0 0;
}
#main .business #merit_01 .twocol {
	justify-content: space-between;
}
#main .business #merit_01 .twocol .col {
	width: calc(50% - 15px);
	margin: 15px 0 0;
	background: #f0f0f0;
}
#main .business #merit_01 .twocol .col .title {
	padding: 12px 15px;
	background: #707070;
}
#main .business #merit_01 .twocol .col:nth-child(2) {
	background: #fdf2e5;
}
#main .business #merit_01 .twocol .col:nth-child(2) .title {
	background: #ee8203;
}
#main .business #merit_01 .twocol .col .image {
	padding: 20px 10px;
}

/* さらに（もとは04） */
#main .business #merit_05 .merit_opcl h5 {
	margin: 20px 0 5px;
}
#main .business #merit_05 .merit_opcl ul li {
	font-size: 1.14em;
	text-indent: -1em;
	padding-left: 1em;
}
#main .business #merit_05 .merit_opcl p {
	margin: 8px 0 0;
	text-align: right;
}
#main .business #merit_05 .merit_opcl .opcl_box p:nth-child(1) {
	margin: 0 !important;
	text-align: left;
}

@media screen and (max-width: 640px) {
	.newsec .mainimg .twocol {
		top: 44%;
	}

	#main .newsec .mainimg p.chushaku {
		padding: 0 15px;
		left: 0;
	}

	.efficiency .col:nth-child(1) {
		padding: 0 55px 0 0;
	}

	.efficiency .col:nth-child(2) {
		padding: 0 0 0 30px;
	}

	.efficiency::after {
		width: 50px;
		height: 31px;
		top: calc(50% - 1em);
		left: 48%;
	}

	.opcl_box {
		padding: 10px 15px 15px;
	}

	.example .threecol {
		margin: 25px 0 0;
		display: block;
	}

	.example .threecol .image {
		width: auto;
		min-width: inherit;
		margin: 15px auto;
	}

	.example .threecol .image {
		max-width: 324px;
	}

	#main .example .threecol h5 {
		white-space: normal;
	}

	#main .merit_opcl h5 br,
	#main .example .threecol h5 br {
		display: none;
	}

	#main .opcl_box .example p {
		line-height: 1.5;
	}

	#main .merit_opcl h5 {
		font-size: 1.28em;
	}

	.opcl_box .border_box .ekinet,
	.opcl_box .border_box .ekiren {
		display: block;
	}

	.opcl_box .border_box .ekinet .image {
		padding: 30px 20px;
		margin: 0 auto 15px;
	}

	.ex-ic,
	.uc-etc {
		margin-top: 20px;
		display: block;
	}

	.uc-etc {
		margin-top: 0 !important;
	}

	.ex-ic .image,
	.uc-etc .image {
		margin: 0 auto 15px;
	}

	.ex-ic .image img,
	.uc-etc .image img {
		max-width: 230px;
	}

	.ex-ic .text,
	.uc-etc .text {
		padding: 0;
	}

	.ex-ic .text h5,
	.uc-etc .text h5 {
		margin: 0 0 10px;
	}

	.ekiren .image {
		margin: 0 auto 15px;
	}

	.ekiren .image img {
		max-width: 78px;
	}

	/* メリット1（もとは03） */
	#main .business #merit_01 .twocol {
		display: block;
	}
	#main .business #merit_01 .twocol .col {
		width: auto;
		margin: 20px 0 0;
	}
	#main .business #merit_01 .twocol .col .title img {
		width: auto;
		height: 16px;
	}
	#main .business #merit_01 .twocol .col:nth-child(2) .title img {
		height: 15px;
	}
	#main .business #merit_01 .twocol .col .image img {
		max-width: 274px;
	}

	/* さらに（もとは04） */
	#main .business #merit_05 .merit_opcl p br.pc {
		display: none;
	}

}

@media screen and (max-width: 480px) {
	#main .newsec .mainimg p.chushaku {
		padding: 0 15px 5px;
		position: relative;
	}

	/* さらに（もとは04） */
	#main .opcl_box p,
	#main .business #merit_05 .merit_opcl ul li {
		font-size: 1em;
	}
	#main .business #merit_05 .merit_opcl ul li br {
		display: none;
	}
	#main .business #merit_05 .merit_opcl p {
		margin: 5px 0 0;
	}

	#main .next_arrow p {
		font-size: 1.14em;
	}

	.efficiency .col:nth-child(1) {
		padding: 0 40px 0 0;
	}

	.efficiency .col:nth-child(2) {
		padding: 0 0 0 15px;
	}

	.efficiency::after {
		width: 36px;
		height: 22px;
	}

	.next_arrow {
		height: 38px;
		margin: 25px 0 20px;
	}

	.opcl_box .border_box .ekinet {
		margin: 10px 0 0;
	}

	.tokuten {
		padding: 20px 10px 15px;
		margin: 30px 0 20px;
	}

}

/* 各種お手続き */
.guidebtn {
	padding: 0 15px;
	margin: 0 0 25px;
	align-items: center;
}

#main .guidebtn p {
	font-size: 1.14em;
	margin: 0 30px 0 0;
}

#main .guidebtn p .st {
	font-size: 113%;
	font-weight: bold;
}

.guidebtn a {
	width: 232px;
	min-width: 232px;
	color: #fff !important;
	font-size: 1.14em;
	font-weight: bold;
	line-height: 1.5;
	text-decoration: none;
	padding: 11px 10px 10px;
	background: #008fcd;
	border-radius: 8px;
	display: inline-block;
	transition: ease .3s;
}

.guidebtn a:hover {
	opacity: .7;
}

.guidebtn a .arrow {
	padding: 1px 0 0 15px;
	display: inline-block;
	background: url(/card/corporation/img/icon_arrow_w.png) no-repeat 0 center;
	background-size: 7px auto;
}

.guidebtn a .arrow .sml {
	transform: scaleX(0.86);
	transform-origin: left 0;
	display: inline-block;
	white-space: nowrap;
}

.purpose_search {
	padding: 0 0 15px;
	background: #e5f3fa;
}

.purpose_search .comm_con {
	padding: 30px 15px 15px;
}

#main .purpose_search h3 {
	color: #fff;
	font-size: 1.428em;
	font-weight: bold;
	text-align: center;
	padding: 0 15px;
	margin: 0;
	background: #008ecf;
}

#main .purpose_search h3 .icon {
	padding: 11px 0 11px 33px;
	display: inline-block;
	background: url(/card/corporation/img/icon_search_w.png) no-repeat 0 center;
	background-size: 26px auto;
}

#main .comm_con h4 {
	color: #008ecf;
	font-size: 1.28em;
	font-weight: bold;
	line-height: 1.33;
	padding: 0 0 0 26px;
	background: url(/card/corporation/img/icon_comment.png) no-repeat 0 1px;
	background-size: 20px auto;
}

#main .comm_con ul {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	flex-direction: column;
}

#main .comm_con:nth-child(2) ul {
	height: 222px;
}

#main .comm_con:nth-child(3) ul {
	height: 160px;
}

#main .comm_con:nth-child(4) ul {
	height: 182px;
}
#main .comm_con:nth-child(5) ul {
	flex-direction: row;
}

#main .comm_con ul li {
	font-size: 1.14em;
	line-height: 1.4;
	width: 50%;
	padding: 0 15px 0 22px;
	margin: 17px 0 0;
	background: url(/card/corporation/img/icon_arrow.png) no-repeat 9px 3px;
	background-size: 7px auto;
}

#main .comm_con ul li.dummy {
	background: none;
}

#main .comm_con ul li a {
	color: #000;
}

#main .comm_con ul li a:hover {
	color: #f60;
	text-decoration: underline;
}

#registration {
	background: #e5f3fa;
}

#registration .register {
	padding: 30px 15px;
}

#main #registration h3 {
	color: #fff;
	font-size: 1.428em;
	font-weight: bold;
	line-height: 50px;
	padding: 0 0 0 15px;
	margin: 0;
	background: #008ecf;
	display: block;
	white-space: nowrap;
}

#main #registration h3 .invoice {
	color: #fff;
	text-decoration: none;
	padding: 0 13px 0 44px;
	display: block;
	float: right;
	background: url(/card/corporation/img/icon_search_w.png) no-repeat 15px center #03b2d8;
	background-size: 23px auto;
	transition: ease .3s;
}

#main #registration h3 .invoice:hover {
	background-color: #4fc9e4;
}

#main .comm_con h4 .btn {
	color: #fff;
	font-size: 77.7%;
	line-height: 30px;
	text-decoration: none;
	padding: 0 30px 0 32px;
	display: block;
	float: right;
	background: url(/card/corporation/img/icon_hatena.png) no-repeat 8px center #008fcd;
	background-size: 18px auto;
	transition: ease .3s;
	display: block;
	float: right;
	position: relative;
	border-radius: 6px;
}

#main .comm_con h4 .btn:hover {
	opacity: .7;
}

#main .comm_con h4 .btn::after {
	content: "";
	width: 14px;
	height: 7px;
	background: url(/card/corporation/img/icon_arrow_w_down.png) no-repeat 0 0 #008fcd;
	background-size: 100% auto;
	position: absolute;
	top: 50%;
	right: 9px;
	transform: translateY(-50%);
}

#registration dl {
	width: 100%;
	display: flex;
	align-items: flex-start;
}

#registration dl dt {
	width: 150px;
	min-width: 150px;
	margin: 0 10px 0 0;
	background: #008ecf;
	display: flex;
	align-items: center;
}

#registration dl dt p {
	color: #fff;
	font-size: 1.428em;
	font-weight: bold;
	width: 100%;
	text-align: center;
	margin: 0;
}

#registration .register dl:nth-child(1) dt {
	height: 120px;
}

#registration .register dl:nth-child(2) dt {
	height: 230px;
}

#registration .register dl:nth-child(3) dt {
	height: 90px;
}

#registration dl dt .sml {
	font-size: 80%;
	display: block;
}

#registration dl dd img {
	display: block;
}

@media screen and (max-width: 640px) {
	#main .content.guide {
		padding: 15px 0 1%;
	}

	.guidebtn {
		margin: 0 0 35px;
		display: block;
	}

	#main .guidebtn p {
		margin: 0 0 20px;
	}

	#main .guidebtn p .sp {
		display: inline;
	}

	.guidebtn .btn {
		text-align: center;
	}

	.guidebtn .btn a {
		text-align: left;
	}

	#main .comm_con ul {
		height: auto !important;
		margin: 15px 0 0;
		display: block;
	}

	#main .comm_con ul li {
		width: auto;
		margin: 12px 0 0;
	}

	#main .comm_con ul li.dummy {
		display: none;
	}

	#registration .register {
		padding: 20px 10px;
	}

	#registration dl {
		align-items: stretch;
	}

	#registration dl dt {
		width: 100px;
		min-width: 100px;
		height: auto !important;
		margin: 0 5px 0 0;
	}

	#registration .register dl:nth-child(1) dt,
	#registration .register dl:nth-child(2) dt {
		margin-bottom: 1.1%;
	}

	#registration dl dt p {
		font-size: 1.14em;
		line-height: 1.33;
	}

}

@media screen and (max-width: 480px) {
	.purpose_search .comm_con {
		padding: 25px 15px 10px;
	}

	#main .guidebtn p {
		font-size: 1em;
	}

	#main .comm_con h4 .btn {
		margin: 10px auto 15px;
		float: left;
	}

	#main .comm_con ul {
		clear: both;
	}

	#main .comm_con ul li {
		font-size: 1em;
	}

	#main .purpose_search h3 {
		font-size: 1.28em;
	}

	#main .purpose_search h3 .icon {
		padding: 9px 0 9px 26px;
		background: url(/card/corporation/img/icon_search_w.png) no-repeat 0 center;
		background-size: 22px auto;
	}

	#main #registration h3 .invoice {
		font-size: 77.7%;
		padding: 0 10px 0 36px;
		background-size: 20px auto;
		background-position: 10px center;
	}

	#main #registration h3 {
		font-size: 1.28em;
		line-height: 44px;
	}

	#registration dl dt {
		width: 74px;
		min-width: 74px;
	}

	#registration dl dt p {
		font-size: 0.857em;
	}

}

/* ビュータクシーチケット */
#main .section h2.opttl {
	padding-right: 45px;
	position: relative;
	cursor: pointer;
}

#main .section h2.opttl::before {
	content: "";
	width: 26px;
	height: 26px;
	background: url(/card/corporation/img/icon_plus.png) no-repeat 0 0;
	background-size: 100% auto;
	position: absolute;
	top: 50%;
	right: 15px;
	transform: translateY(-50%);
}

#main .section h2.opttl.on::before {
	background-image: url(/card/corporation/img/icon_minus.png);
}

#main h3.bkttl {
	font-size: 2.1em;
	font-weight: bold;
	margin: -5px 15px -5px;
}

#main p.circle {
	font-size: 1.28em;
	margin: 10px 0 0;
	padding: 0 0 0 27px;
	position: relative;
}

#main p.circle::before {
	content: "";
	width: 13px;
	height: 13px;
	border: solid 3px #d1f5ff;
	position: absolute;
	top: 5px;
	left: 0;
	border-radius: 50%;
}

#main p.circle .chushaku {
	font-size: 77.77%;
	text-indent: -1em;
	padding-left: 1em;
	display: inline-block;
}

#main p.circle .numtxt {
	font-size: 88.8%;
	font-weight: bold;
}

.taxi-ticket .bluebox {
	margin: 25px 0 0;
	padding: 20px 15px;
	background: #e5f3fa;
}

#main .taxi-ticket .bluebox h4 {
	color: #008fcd;
	font-size: 1.428em;
	font-weight: bold;
	line-height: 1.33;
	margin: 0 0 15px;
}

#main .taxi-ticket .bluebox ul {
	padding: 0;
}

#main .taxi-ticket .bluebox ul li {
	margin: 12px 0 0;
	padding: 0 0 0 25px;
	position: relative;
	display: block;
}

#main .taxi-ticket .bluebox ul li::before {
	content: "";
	width: 3px;
	height: 3px;
	position: absolute;
	top: 12px;
	left: 11px;
	border-radius: 50%;
	background: #008fcd;
}

#main .taxi-ticket .bluebox ul li p {
	font-size: 1.28em;
	line-height: 1.6;
	margin: 0;
}

#main .taxi-ticket .bluebox ul li p.chushaku {
	font-size: 1em;
	margin: 3px 0 0;
	padding-left: 1em;
	text-indent: -1em;
}

.opcont_box {
	padding: 0 15px;
	display: none;
}

.opcont_box *:first-child {
	margin-top: 0 !important;
}

.taxi-ticket .opcont_box .image {
	margin: 45px 0 0;
}

.taxi-ticket .opcont_box .image h4 {
	font-size: 1.42em;
	font-weight: bold;
	text-align: center;
	margin: 0 0 10px;
}

#fee .image h4 {
	text-align: left;
}

#main .taxi-ticket .opcont_box h3 {
	margin-top: 30px;
	margin-bottom: 15px;
}

#main .taxi-ticket .apply_btn h3 {
	margin-top: 25px;
}

#main .taxi-ticket .merit_list ul li h3 .st {
	display: inline-block;
	position: relative;
	padding-left: 40px;
}

#main .taxi-ticket .opcont_box h3 .st,
#main .taxi-ticket .apply_btn h3 .st {
	color: #008ecf;
	font-size: 120%;
	display: inline-block;
	position: relative;
	padding-left: 30px;
}

#main .merit_list ul li h3 .st .num,
#main .taxi-ticket .opcont_box h3 .st .num,
#main .taxi-ticket .apply_btn h3 .st .num {
	position: absolute;
	left: 0;
}

#main .taxi-ticket .opcont_box .image+h3 {
	margin-top: 50px;
}

.taxi-ticket #usage .opcont_box .image {
	margin: 35px 0 0;
}

.taxi-ticket #arrives .opcont_box .image {
	margin: 28px 0 0;
}

#main .taxi-ticket .contact_mail {
	margin: 0 !important;
}

#main .taxi-ticket .contact_mail .telnum {
	margin-top: 15px !important;
	margin-bottom: 15px !important;
}

.taxi-ticket .inner {
	padding: 0 15px;
}

#main .taxi-ticket .apply_btn .inner p.chushaku {
	font-size: 1.14em;
	margin: 25px 0 0;
}

#main .taxi-ticket .applyBox {
	display: flex;
}
#main .taxi-ticket .applyBox .sticker {
	width: 50%;
	margin-bottom: 20px;
}
#main .taxi-ticket .applyBox .sticker li {
	margin-top: 10px;
	padding: 10px;
	border: #007dbb 3px solid;
	border-radius: 10px;
	color: #007dbb;
	text-align: center;
	font-weight: bold;
}

#main .taxi-ticket .attention {
	display: flex;
	align-items: start;
	padding: 20px;
	background-color: #f6f6f6;
	margin-top: 30px;
}
#main .taxi-ticket .attention img {
	margin: 0 10px 0 0;
	width: 40px;
}
#main .taxi-ticket .attention li {
	text-indent: -1em;
	padding-left: 1em;
}

#main .taxi-ticket .ticketImg {
	display: flex;
}
#main .taxi-ticket .ticketImg img {
	width: 50%;
	margin: 0 20px 0 0;
}

@media screen and (max-width: 640px) {
	#main .content.taxi-ticket {
		padding: 15px 0 1%;
	}

	#main .section h2.opttl::before {
		width: 23px;
		height: 23px;
		top: 45%;
	}

	#main h3.bkttl {
		font-size: 1.8em;
	}

	#main .taxi-ticket .merit_list ul li h3 .st {
		padding-left: 34px;
	}

	#main .taxi-ticket .opcont_box h3 .st,
	#main .taxi-ticket .apply_btn h3 .st {
		padding-left: 28px;
	}

	#main p.circle {
		font-size: 1.14em;
		padding-left: 22px;
	}

	#main p.circle::before {
		width: 10px;
		height: 10px;
		top: 4px;
	}

	#main .taxi-ticket .bluebox ul li p {
		font-size: 1.14em;
	}

	#main .taxi-ticket .bluebox ul li p.chushaku {
		font-size: 0.928em;
		margin: 6px 0 0;
	}

	.taxi-ticket .opcont_box .image h4 {
		font-size: 1.28em;
	}

	.taxi-ticket .opcont_box .image {
		margin: 35px 0 0;
	}

	#usage .image.sticker img {
		max-width: 194px;
	}

	#main .taxi-ticket .opcont_box .image+h3 {
		margin-top: 40px;
	}

	.taxi-ticket .bluebox {
		margin: 25px 15px 0;
		padding: 15px;
	}

	#main .taxi-ticket .bluebox ul li {
		padding: 0 0 0 20px;
	}

	#main .taxi-ticket .bluebox ul li::before {
		top: 11px;
		left: 6px;
	}

	#main .taxi-ticket .applyBox {
		display: block;
	}
	#main .taxi-ticket .applyBox .sticker {
		margin: 0 auto 30px;
		width: 80%;
	}
	#main .taxi-ticket .applyBox .sticker li {
		border: #007dbb 1px solid;
		font-weight: nomal;
	}
	
	#main .taxi-ticket .ticketImg {
		display: block;
	}
	#main .taxi-ticket .ticketImg img {
		width: 100%;
		margin: 0 0 20px 0;
	}
	
}

@media screen and (max-width: 480px) {
	#main .section h2.opttl::before {
		width: 21px;
		height: 21px;
	}

	#main h3.bkttl {
		font-size: 1.6em;
	}

	#main .taxi-ticket .opcont_box h3 {
		margin-bottom: 10px;
	}

	#main .taxi-ticket .merit_list ul li h3 .st,
	#main .taxi-ticket .opcont_box h3 .st,
	#main .taxi-ticket .apply_btn h3 .st {
		padding-left: 24px;
	}

	#main p.circle {
		font-size: 1em;
		padding-left: 19px;
		margin: 7px 0 0;
	}

	#main p.circle::before {
		width: 9px;
		height: 9px;
		top: 3px;
	}

	#main .taxi-ticket .bluebox h4 {
		font-size: 1.28em;
		margin: 0 0 10px;
	}

	#main .taxi-ticket .bluebox ul li p {
		font-size: 1em;
	}

	#main .taxi-ticket .bluebox ul li p.chushaku {
		font-size: 0.857em;
		margin: 4px 0 0;
	}

	.taxi-ticket .opcont_box .image h4 {
		font-size: 1.14em;
	}

	.taxi-ticket .opcont_box .image {
		margin: 30px 0 0;
	}

	.taxi-ticket #usage .opcont_box .image {
		margin: 27px 0 0;
	}

	.taxi-ticket #arrives .opcont_box .image {
		margin: 25px 0 0;
	}

	#usage .image.sticker img {
		max-width: 190px;
	}

	#main .taxi-ticket .apply_btn p.circle {
		margin-top: 10px;
	}

	#main .taxi-ticket .apply_btn .inner p.chushaku {
		font-size: 1em;
		margin: 15px 0 0;
	}

	#main .taxi-ticket .bluebox ul li {
		padding: 0 0 0 18px;
	}

	#main .taxi-ticket .bluebox ul li::before {
		top: 9px;
	}

}

/* かんたん診断フォーム */
.shindan #article {
	width: 100%;
	max-width: 950px;
}

#shindanform h1 {
	margin: 70px 0 44px;
}

#shindanform h2 {
	color: #fff;
	font-size: 2.14em;
	font-weight: bold;
	line-height: 1;
	text-align: center;
	width: 100%;
	max-width: 500px;
	padding: 15px 10px;
	margin: 0 auto;
	position: relative;
	background: #008ed0;
	border-radius: 35px;
}

.question {
	padding: 0 15px;
}

.question .twocol {
	max-width: 820px;
	margin: 50px auto 0;
	justify-content: space-between;
}

.question .threecol {
	width: 100%;
	margin: 50px auto 0;
	justify-content: space-between;
	display: flex;
}

.question .shindan_btn {
	width: calc(50% - 30px);
}

.question .threecol .shindan_btn {
	width: calc(33.33% - 20px);
}

.question .shindan_btn a {
	color: #008ed0;
	font-size: 2.14em;
	font-weight: bold;
	line-height: 1.33;
	text-decoration: none;
	padding: 20px 28px;
	min-height: 380px;
	border: solid 3px #008ecf;
	display: block;
	border-radius: 30px;
	position: relative;
	transition: ease .3s;
	cursor: pointer;
}

.question .threecol .shindan_btn a {
	font-size: 1.85em;
	min-height: 340px;
	padding: 20px;
	white-space: nowrap;
}

#shindan_btn5 {
	text-align: center;
}

.question .shindan_btn a:hover {
	text-decoration: underline;
	background: #ecf8fb;
}

.question .shindan_btn a .image {
	width: 100%;
	padding: 0 15px;
	position: absolute;
	bottom: 30px;
	left: 50%;
	transform: translateX(-50%);
}

.question .shindan_btn a .image img {
	width: 100%;
	height: auto;
}

#shindan_Q1,
#shindan_Q2,
#shindan_A1,
#shindan_A2,
#shindan_A3,
#shindan_A4 {
	display: none;
}

#shindan_Q1.show,
#shindan_Q2.show,
#shindan_A1.show,
#shindan_A2.show,
#shindan_A3.show,
#shindan_A4.show {
	display: block;
}

#shindan_Q1.question .shindan_btn:nth-child(1) a .image img {
	max-width: 175px;
}

#shindan_Q1.question .shindan_btn:nth-child(2) a .image img {
	max-width: 333px;
}

#shindan_Q2.question .shindan_btn:nth-child(1) a .image img {
	max-width: 161px;
}

#shindan_Q2.question .shindan_btn:nth-child(2) a .image img {
	max-width: 140px;
}

#shindan_Q2.question .shindan_btn:nth-child(3) a .image img {
	max-width: 146px;
}

#shindanform .answer h2 {
	margin-bottom: 30px;
}

#shindanform .answer h2::after {
	content: "";
	width: 22px;
	height: 21px;
	background: url(/card/corporation/shindan/img/osusume_arrow.png) no-repeat 0 0;
	background-size: 100% auto;
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateY(100%) translateX(-50%);
}

.card_box {
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 30px 15px;
	background: #e5f3fa;
}

.card_plus {
	width: 100%;
	display: flex;
	justify-content: space-between;
	position: relative;
}

.plus_img {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translateX(-50%) translateY(-50%);
}

.card_plus .card_box {
	width: calc(50% - 40px);
	display: block;
}

.card_box .image {
	width: 253px;
	min-width: 253px;
	margin-right: 30px;
}

.card_plus .card_box .image {
	margin: 0 auto 20px;
}

#shindanform .card_box .text p {
	font-size: 1.28em;
	font-weight: bold;
	line-height: 1.5;
	margin: 0;
}

#shindanform .card_box .text h3 {
	font-size: 2.14em;
	font-weight: bold;
	line-height: 1.5;
	margin: 0;
}

#shindanform .card_plus .card_box p,
#shindanform .card_plus .card_box h3 {
	text-align: center;
}

#shindanform .card_plus .card_box:nth-child(3) h3 {
	font-size: 1.95em;
	white-space: nowrap;
}

#shindanform .points {
	padding: 0 220px 0 240px;
	margin: 55px 0 68px;
}

#shindanform .points:after {
	content: "";
	display: block;
	clear: both;
}

#shindanform .points:before {
	content: "";
	display: block;
	clear: both;
}

#shindanform .points p {
	font-size: 1.42em;
	line-height: 1.4;
	padding: 10px 25px;
	margin: 0;
	position: relative;
	background: #dff7fe;
	border-radius: 25px;
	display: inline-block;
}

#shindanform .points .people1 {
	position: relative;
}

#shindanform .points .people1 p::before,
#shindanform .points .people2 p::before {
	content: "";
	width: 42px;
	height: 15px;
	background: url(/card/corporation/shindan/img/comment_arrow.png) no-repeat 0 0;
	background-size: 100% auto;
	position: absolute;
	bottom: -4px;
	left: -20px;
}

#shindanform .points .people2 p::before {
	left: auto;
	right: -20px;
	transform: rotateY(180deg);
}

#shindanform .points .people1 p .icon {
	position: absolute;
	top: -28px;
	left: -16px;
}

#shindanform .points .people1 .image {
	position: absolute;
	top: 2px;
	left: -118px;
}

#shindanform .points .people2 {
	margin-top: 30px;
	float: right;
	position: relative;
}

#shindanform .points .people2 p .icon {
	position: absolute;
	top: -28px;
	right: -22px;
}

#shindanform .points .people2 .image {
	position: absolute;
	top: -18px;
	right: -100px;
}

.twotable {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
}

#main #shindanform .hyotable {
	max-width: 700px;
	margin: 70px auto 35px;
}
#main #shindanform .hyotable2 {
	max-width: 900px;
}

#main #shindanform .twotable table {
	width: calc(50% - 40px);
}
#main #shindanform .hyotable2 .twotable .w430 {
	max-width: 430px;
	margin-bottom: 40px;
}
#main #shindanform .hyotable2 .twotable table {
	width: 100%;
}

#main #shindanform .twotable table th {
	max-width: 8.5em;
	min-width: 8.5em;
	white-space: normal;
}

#main #shindanform .twotable table th.head {
	max-width: none;
	min-width: inherit;
}

#shindanform .apply_btn .btn a {
	min-width: 305px;
	background-color: #008fcd;
	padding: 20px 0;
}

#shindanform .apply_btn .btn p {
	font-size: 0.857em;
	font-weight: normal;
	text-align: center;
	margin: 28px 0 0;
}

#shindanform .apply_btn .btn p+p {
	margin-top: 10px;
}

#shindanform .apply_btn .btn p a {
	color: #008fcd;
	font-weight: normal;
	line-height: 1.4;
	min-width: inherit;
	padding: 0;
	text-align: center;
	text-decoration: underline;
	background: transparent;
	display: inline-block;
	border-radius: 0;
}

#shindanform .apply_btn .btn p a:hover {
	color: #f60;
}

#shindanform .backbtn {
	margin-top: 60px;
}

#shindanform .backbtn a {
	color: #fff;
	font-size: 1.14em;
	line-height: 1;
	padding: 10px 20px;
	background: #008fcd;
	display: inline-block;
	border-radius: 8px;
	transition: ease .3s;
	cursor: pointer;
}

#shindanform .backbtn a:hover {
	opacity: .7;
}

#shindanform .backbtn a .arrow {
	padding: 0 0 0 16px;
	display: inline-block;
	position: relative;
}

#shindanform .backbtn a .arrow::before {
	content: "";
	width: 7px;
	height: 14px;
	background: url(/card/corporation/img/icon_arrow_w.png) no-repeat 0 0;
	background-size: 100% auto;
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%) rotate(180deg);
}

@media screen and (max-width:640px) {
	.content.shindan {
		padding-left: 0;
		padding-right: 0;
	}

	#shindanform h1 {
		margin: 40px 15px;
	}

	#shindanform h2 {
		font-size: 1.71em;
		padding: 12px 10px;
	}

	.question .twocol,
	.question .threecol {
		margin: 35px 0 0;
		display: block;
	}

	.question .threecol .shindan_btn,
	.question .shindan_btn {
		width: 100%;
		margin: 25px 0 0;
	}

	.question .shindan_btn a,
	.question .threecol .shindan_btn a {
		font-size: 1.85em;
		min-height: inherit;
	}

	.question .shindan_btn a .image {
		margin: 20px 0 0;
		padding: 0;
		position: relative;
		bottom: 0;
		left: 0;
		transform: translateX(0);
	}

	#shindan_Q1.question .shindan_btn:nth-child(2) a .image {
		margin-top: 80px;
	}

	.answer {
		padding: 0 15px;
	}

	#shindanform .answer h2 {
		margin-bottom: 27px;
	}

	#shindanform .answer h2::after {
		width: 19px;
		height: 18px;
	}

	.card_plus {
		display: block;
	}

	.card_box {
		width: auto;
		display: block;
		margin: 0 -15px;
		padding: 25px 20px 20px;
	}

	.card_box .image,
	.card_plus .card_box .image {
		width: 100%;
		max-width: 240px;
		min-width: inherit;
		margin: 0 auto 20px;
	}

	.plus_img {
		margin: 15px 0;
		position: relative;
		top: 0;
		left: 0;
		transform: translateX(0) translateY(0);
	}

	.plus_img img {
		max-width: 40px;
	}

	.card_plus .card_box {
		width: auto;
		display: block;
	}

	#shindanform .card_box .text p {
		font-size: 1.14em;
		text-align: center;
	}

	#shindanform .card_box .text h3,
	#shindanform .card_plus .card_box:nth-child(3) h3 {
		font-size: 1.85em;
		text-align: center;
	}

	#shindanform .points {
		padding: 0;
		margin: 50px 0 60px;
	}

	#shindanform .points p {
		font-size: 1.28em;
		padding: 10px 20px;
	}

	#shindanform .points .people1 p {
		margin-left: 95px;
	}

	#shindanform .points .people2 p {
		margin-right: 80px;
	}

	#shindanform .points .people1 p .icon {
		width: 40px;
		height: 40px;
		top: -25px;
		left: -13px;
	}

	#shindanform .points .people2 p .icon {
		width: 40px;
		height: 40px;
		top: -25px;
		right: -20px;
	}

	#shindanform .points .people1 p::before,
	#shindanform .points .people2 p::before {
		width: 30px;
		height: 11px;
		bottom: -2px;
		left: -10px;
	}

	#shindanform .points .people2 p::before {
		left: auto;
		right: -10px;
	}

	#shindanform .points .people1 .image {
		width: 80px;
		height: 97px;
		top: -4px;
		left: 0;
	}

	#shindanform .points .people2 .image {
		width: 72px;
		height: 90px;
		right: 0;
	}

	#shindanform .points .people2 {
		margin-top: 50px;
	}

	#main #shindanform .hyotable {
		padding: 0;
		margin: 50px auto 30px;
	}

	.twotable {
		margin: 0;
		display: block;
	}

	#main #shindanform .twotable table {
		width: 100%;
	}

	#main #shindanform .twotable table+table {
		margin-top: 25px;
	}

	#shindanform .backbtn {
		margin-top: 30px;
	}

	#main .toTop a {
		right: 3% !important;
		bottom: 10px !important;
	}
}

@media screen and (max-width:480px) {
	#shindanform h1 {
		margin: 30px 10px;
	}

	#shindanform h2 {
		font-size: 1.42em;
		padding: 10px;
	}

	.question .twocol,
	.question .threecol {
		margin: 25px 0 0;
	}

	.question .shindan_btn {
		margin: 20px 0 0;
	}

	.question .shindan_btn a,
	.question .threecol .shindan_btn a {
		font-size: 1.71em;
		padding: 20px 25px;
	}

	.question .shindan_btn a .image {
		width: auto;
		margin: 10px -10px 0;
	}

	#shindan_Q1.question .shindan_btn:nth-child(1) a .image img {
		width: 50%;
	}

	#shindan_Q1.question .shindan_btn:nth-child(2) a .image {
		margin-top: 35px;
	}

	.card_box {
		padding: 20px 15px 17px;
	}

	.card_box .image,
	.card_plus .card_box .image {
		max-width: 220px;
	}

	.plus_img {
		margin: 10px 0;
	}

	.plus_img img {
		max-width: 30px;
	}

	#shindanform .card_box .text p {
		font-size: 1em;
	}

	#shindanform .card_box .text h3,
	#shindanform .card_plus .card_box:nth-child(3) h3 {
		font-size: 1.71em;
		line-height: 1.33;
		margin-top: 5px;
	}

	#shindanform .points {
		margin: 45px 0 50px;
	}

	#shindanform .points p {
		font-size: 1.1em;
		padding: 8px 16px;
		border-radius: 40px;
	}

	#shindanform #shindan_A4 .points .people2 {
		margin-top: 60px;
	}

	#shindanform .points .people1 p {
		margin-left: 80px;
	}

	#shindanform .points .people1 .image {
		width: 72px;
		height: 88px;
		left: -5px;
	}

	#shindanform .points .people2 .image {
		width: 63px;
		height: 79px;
		right: -5px;
	}

	#shindanform .points .people1 p::before {
		bottom: 0;
		left: -7px;
	}

	#shindanform .points .people2 p::before {
		bottom: 0;
		left: auto;
		right: -7px;
	}

	#shindanform .points .people1 p .icon {
		width: 35px;
		height: 35px;
		top: -22px;
		left: -14px;
	}

	#shindanform .points .people2 p .icon {
		width: 35px;
		height: 35px;
		top: -23px;
		right: -14px;
	}

	#shindanform .apply_btn .btn {
		margin: 30px 0 0;
	}

	#shindanform .apply_btn .btn a {
		min-width: 250px;
	}

	#shindanform .apply_btn .btn p {
		font-size: 0.785em;
		margin: 20px 0 0;
	}

	#main #shindanform .hyotable {
		padding: 0;
		margin: 40px auto 30px;
	}

	#main #shindanform .twotable table th {
		max-width: none;
		min-width: inherit;
	}

}

@media screen and (max-width:380px) {
	#shindanform .card_plus .card_box:nth-child(3) h3 {
		font-size: 6.3vw;
	}

}

@media screen and (min-width: 641px) {
	#main .section .headline2 {
		font-size: 115%;
	}
}

/* -----------------------------------------
	atu
----------------------------------------- */
.atu .headBox h1 {
	font-size: 1.8rem !important;
	line-height: 1.4;
}

.atu .headBox .s {
	display: block;
	font-size: 1.2rem;
}

.atu_desc .red {
	color: #e60012;
}

@media screen and (max-width: 640px) {
	.atu {
		margin-top: 20px;
	}

	.atu .headBox h1 {
		font-size: 1.8rem !important;
		line-height: 1.4;
	}

	.atu .headBox .s {
		display: block;
		font-size: 3.8vw;
		margin-top: 0.5em;
	}

	.atu_desc .red {
		color: #e60012;
	}
}

.atu_service {
	margin: 0 0 50px;
}

.atu_service_list {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
}

.atu_service_list li {
	width: calc(33.33333% - 20px);
}

.atu_service_list a {
	text-decoration: none;
	transition: all .3s;
}

.atu_service_list a:hover {
	opacity: .7;
}

.atu_service_image {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 150px;
	border: 1px solid #c7eafa;
	border-radius: 6px;
}

.atu_service_text {
	font-size: 1.0rem;
	font-weight: bold;
	color: #007dbb;
	text-align: center;
	margin-top: 8px;
}

@media screen and (max-width: 640px) {
	.atu_service {
		margin: 0 0 30px !important;
	}

	.atu_service_list {
		gap: 10px;
	}

	.atu_service_list li {
		width: calc(50% - 5px);
	}

	.atu_service_image {
		height: 90px;
	}

	.atu_service_image img {
		width: 70px;
		height: auto;
	}

	.atu_service_text {
		font-size: 0.85rem;
		font-weight: bold;
		color: #007dbb;
		text-align: center;
		margin-top: 8px;
	}
}

.atu_link {
	margin: 0 0 50px !important;
}

@media screen and (max-width: 640px) {
	.atu_link {
		margin: 0 0 30px !important;
	}
}

.atu_caution {
	position: relative;
	background-color: #f7f7f7;
	padding: 25px;
	padding-left: 80px;
	margin: 0 0 50px;
}

.atu_caution::before {
	display: block;
	position: absolute;
	top: 25px;
	left: 25px;
	content: "";
	width: 36px;
	height: 36px;
	background: url(../img/icon_caution.svg) no-repeat 50%/contain;
}

.atu_caution h3 {
	font-size: 0.98rem;
	margin-bottom: 0.2em !important;
}

.atu_caution h3 .red {
	color: #e60012;
}

.atu_caution ul {
	display: flex;
	flex-wrap: wrap;
	margin-top: 1em;
}

.atu_caution li {
	width: 50%;
}

.atu_caution li::before {
	content: "● ";
}

@media screen and (max-width: 640px) {
	.atu_caution {
		padding: 20px;
		padding-left: 65px;
	}

	.atu_caution::before {
		top: 20px;
		left: 20px;
		width: 30px;
		height: 30px;
	}

	.atu_caution h3 {
		font-size: 0.9rem;
	}

	.atu_caution ul {
		flex-direction: column;
	}

	.atu_caution li {
		width: 100%;
	}
}

.atu_btns {
	margin: 0 0 50px;
}

.atu_btns .btn {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	width: 400px;
	height: 80px;
	border-radius: 10px;
	background-color: #f98138;
	font-size: 1.5rem;
	font-weight: bold;
	line-height: 1.4;
	text-decoration: none;
	color: #fff;
	margin: auto;
	padding-left: 44px;
	transition: all .3s;
}

.atu_btns .btn:before {
	background: url(/card/corporation/img/icon_procedure.png) no-repeat center/contain;
	display: block;
	content: "";
	position: absolute;
	top: 48%;
	left: 20px;
	transform: translateY(-50%);
	width: 44px;
	height: 44px;
}

.atu_btns .btn .s {
	display: block;
	font-size: 0.9rem;
}

.atu_btns .btn:hover {
	opacity: .7;
}

.atu_btns p {
	text-align: center;
	margin-top: 10px;
}

.atu_btns p a {
	position: relative;
}

@media screen and (max-width: 640px) {
	.atu_btns {
		margin: 0 0 30px;
	}

	.atu_btns .btn {
		width: 100%;
	}
}

.atu_contact_box {
	display: flex;
	align-items: center;
	gap: 30px;
	border: 1px solid #fff17f;
	background-color: #fffee3;
	padding: 30px;
	margin-bottom: 20px;
}

.atu_contact_box:last-child {
	margin-bottom: 0;
}

.atu_contact_box h3 {
	flex: 0 0 40%;
	font-size: 0.9rem;
	margin-bottom: 0 !important;
}

.atu_contact_box .tel {
	flex: 1;
	text-align: center;
}

.atu_contact_box .tel p {
	margin: 0;
	line-height: 1;
}

.atu_contact_box .label {
	font-size: 0.9rem;
	font-weight: bold;
	margin: 0 !important;
}

.atu_contact_box .number {
	display: flex;
	gap: 8px;
	font-size: 1.8rem;
	font-weight: bold;
	margin-top: 10px !important;
	margin-bottom: 10px !important;
}

@media screen and (min-width: 641px) {
	.atu_contact_box .number {
		padding-left:20px;
	}
}

@media screen and (max-width: 640px) {
	.atu_contact_box {
		text-align: center;
	}
	.atu_contact_box .number {
		padding-right:25px;
	}
}

.atu_contact_box .number::before {
	content: "";
	width: 30px;
	height: 30px;
	background: url(/card/corporation/web_service/img/atu_icon_tel.png) no-repeat center/contain;
}

.atu_contact_box .number a {
	color: #000;
	text-decoration: none;
}

.atu_contact_box .time {
	font-size: 0.8rem;
}

.atu_contact_box .btns {
	flex: 1;
	text-align: center;
}

.atu_contact_box .btns p {
	font-size: 0.9rem;
	margin-bottom: 10px !important;
}

.atu_contact_box .btns ul {
	display: flex;
	gap: 10px;
}

.atu_contact_box .btns li {
	flex: 1;
}

.atu_contact_box .btns a {
	display: block;
	padding: 12px;
	border: 1px solid #beebfc;
	border-radius: 5px;
	text-decoration: none;
	text-align: center;
	background: #fff;
	transition: all .3s;
}

.atu_contact_box .btns a:hover {
	color: #007dbb;
	opacity: .7;
}

.atu_contact_box .btns .s {
	display: block;
	font-size: 0.8rem;
	font-weight: bold;
	line-height: 1;
	margin-top: 3px;
}

@media screen and (max-width: 640px) {
	.atu_contact_box {
		flex-direction: column;
		gap: 20px;
		padding: 20px;
	}

	.atu_contact_box h3 {
		flex: 0 0 36%;
	}

	.atu_contact_box .label {
		font-size: 0.82rem;
	}

	.atu_contact_box .btns {
		width: 100%;
	}

	.atu_contact_box .btns img {
		display: block;
		width: auto;
		height: 20px;
		margin: 0 auto 10px;
	}
}

.ico_external {
	position: relative;
	display: inline-flex;
}

.ico_external:before {
	background: url(/card/common/img/cmn-parts.png) no-repeat -85px 0;
	display: block;
	content: "";
	position: absolute;
	top: 0em;
	right: -16px;
	width: 12px;
	height: 12px;
}

/* -----------------------------------------
	bnr
----------------------------------------- */
.bnr_campaign {
	margin-bottom: 30px;
}

.bnr_campaign a {
	transition: all .3s;
}

.bnr_campaign a:hover {
	opacity: .7;
}

@media screen and (max-width: 640px) {
	.bnr_campaign {
		margin-bottom: 0;
	}
}

/* -----------------------------------------
	modal
----------------------------------------- */
#modal-window {
	border-radius: 30px;
}

.modal-close {
	position: absolute;
	top: 35px;
	right: 30px;
	width: 40px;
	height: 40px;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
	cursor: pointer;
}

.modal-close span:first-child {
	width: 100%;
	height: 4px;
	background: #000;
	position: absolute;
	top: 50%;
	left: 0;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}

.modal-close span:last-child {
	height: 100%;
	width: 4px;
	background: #000;
	position: absolute;
	left: 50%;
	top: 0;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
}

#modal-template {
	display: none;
}

.modal-box {
	position: relative;
	background: #fff;
}

.modal-title {
	font-size: 1.6rem;
	text-align: center;
	margin-bottom: 20px;
}

.modal-inner {
	display: flex;
	gap: 40px;
}

.modal-image {
	order: 2;
	width: 440px;
}

.modal-text {
	flex: 1;
	text-align: left;
}

.modal-text h4 {
	font-size: 1.1rem;
	margin-top: 1em;
}

.modal-text h4:first-child {
	margin-top: 0;
}

.modal-text p {
	font-size: 0.9rem;
}

.modal-text ul li {
	font-size: 0.9rem;
	list-style: disc;
	margin-left: 1.5em;
}

.modal-btn {
	margin-top: 20px;
}

.modal-btn p {
	font-size: 1.0rem;
}

.modal-btn a {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 400px;
	height: 60px;
	border-radius: 10px;
	background-color: #f98138;
	color: #fff !important;
	font-size: 1.4rem;
	font-weight: bold;
	text-decoration: none !important;
	margin: 5px auto;
	transition: all .3s;
}

.modal-btn a::before {
	content: "";
	width: 34px;
	height: 34px;
	background: url(/card/corporation/img/icon_procedure.png) no-repeat center/contain;
	margin-top: -3px;
	margin-right: 10px;
}

.modal-btn a:hover {
	opacity: 0.7;
}

@media screen and (max-width: 768px) {
	#modal-window {
		border-radius: 4vw;
	}

	.modal-close {
		top: 4vw;
		right: 4vw;
		width: 6.66667vw;
		height: 6.66667vw;
	}

	.modal-close span:first-child {
		height: 2px;
	}

	.modal-close span:last-child {
		width: 2px;
	}

	.modal-title {
		font-size: 4.6vw;
	}

	.modal-inner {
		flex-direction: column;
		gap: 20px;
	}

	.modal-image {
		order: 1;
		width: 100%;
	}

	.modal-text {
		order: 2;
	}

	.modal-text h4 {
		font-size: 1.0rem;
	}

	.modal-text p {
		font-size: 0.8rem;
	}

	.modal-text ul li {
		font-size: 0.8rem;
	}

	.modal-btn {
		text-align: center;
		margin-top: 30px;
	}

	.modal-btn a {
		width: 100%;
		font-size: 1.3rem;
	}

	.modal-btn a::before {
		width: 24px;
		height: 24px;
	}

	.modal-btn a:hover {
		opacity: 0.7;
	}
}

/*---------------------------------
微調整
---------------------------------*/



/* corporate
--------------------------------------------*/
/* choiceCard_ex
--------------------------------------------*/
.choiceCard_ex {
	border-radius: 20px;
	border: 5px solid #e7e7e7;
	margin: 40px 0 0;
	padding: 0 0 40px;
}

.choiceCard_ex h2 {
	margin: -28px 0 0;
}
.choiceCard_ex h2 img {
	max-width: 323px;
	height: auto;
}
.choiceCard_ex .choiceCard_ex_ul1 {
	margin: 20px auto 0;
	max-width: 600px;
}
.choiceCard_ex .choiceCard_ex_ul1 li + li {
	margin-top: 25px;
	border-top: 2px dotted #ddd;
	padding-top: 25px;
}
.choiceCard_ex .choiceCard_ex_ul2 {
	background-color: #f1f1f1;
	margin: 30px auto 0;
	max-width: 600px;
	box-sizing: border-box;
	padding: 20px 25px;
}
.choiceCard_ex .choiceCard_ex_ul2 li {
	font-size: 14px;
	line-height: 1.5;
	text-indent: -1em;
	padding-left: 1em;
}
.choiceCard_ex .choiceCard_ex_ul2 li + li {
	margin-top: 3px;
}
.choiceCard_ex img.image_sp {
	display: none;
}
@media screen and (max-width: 640px) {
	.choiceCard_ex {
		border-radius: 10px;
		border: 4px solid #e7e7e7;
		margin: 35px 10px 0;
		padding: 0 15px 20px;
	}
	
	.choiceCard_ex h2 {
		margin: -20px 0 0;
	}
	.choiceCard_ex h2 img {
		max-width: 180px;
		height: auto;
	}
	.choiceCard_ex .choiceCard_ex_ul1 {
		margin: 10px auto 0;
	}
	.choiceCard_ex .choiceCard_ex_ul1 li + li {
		margin-top: 20px;
		padding-top: 15px;
	}
	.choiceCard_ex .choiceCard_ex_ul2 {
		margin: 20px auto 0;
		padding: 15px 20px;
	}
	.choiceCard_ex .choiceCard_ex_ul2 li {
		font-size: 13px;
		line-height: 1.6;
	}
	.choiceCard_ex img.image_pc {
		display: none;
	}
	.choiceCard_ex img.image_sp {
		display: block;
	}
}

/* choiceCard_catch
--------------------------------------------*/
.choiceCard_catch {
	margin: 30px 0;
	text-align: center;
	font-weight: bold;
	font-size: 23px;
	line-height: 1.6;
	align-items: center;
	display: flex;
	justify-content: center;
}

@media screen and (min-width: 641px) {
	.choiceCard_catch {
		margin-top:50px;
	}
}

.choiceCard_catch br {
	display: none;
}

.choiceCard_catch::before,
.choiceCard_catch::after {
	background-color: #333;
	border-radius: 5px;
	content: "";
	height: 3px;
	width: 30px;
}

.choiceCard_catch::before {
	margin-right: 8px;
	transform: rotate(60deg);
}

.choiceCard_catch::after {
	margin-left: 8px;
	transform: rotate(-60deg);
}
@media screen and (max-width: 640px) {
	.choiceCard_catch {
		margin: 25px 0;
		font-size: 18px;
		line-height: 1.5;
	}
	.choiceCard_catch br {
		display: inline;
	}
	
	.choiceCard_catch::before,
	.choiceCard_catch::after {
		height: 2px;
		width: 48px;
	}
	
	.choiceCard_catch::before {
		margin-right: 3px;
	}
	
	.choiceCard_catch::after {
		margin-left: 3px;
	}
}

/* choiceCard_reason
--------------------------------------------*/
.choiceCard_reason {
	background-color: #e5fbf8;
	padding: 25px 30px 30px;
}
.choiceCard_reason h2 {
	color: #06a994;
	font-size: 20px;
	font-weight: bold;
	line-height: 1;
	text-align: center;
}
.choiceCard_reason ul {
	margin: 25px 0 0;
}
.choiceCard_reason li {
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.choiceCard_reason li + li {
	margin-top: 20px;
}
.choiceCard_reason li p {
	background-color: #fff;
	font-size: 16px;
	line-height: 1.8;
	width: 87%;
	box-sizing: border-box;
	padding: 18px 20px;
	border-radius: 10px;
	position: relative;
}

.choiceCard_reason li p::after {
    content: "";
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
    border-color: transparent #fff transparent transparent;
    border-width: 15px 30px 15px 0;
    position: absolute;
    left: -15px;
    bottom: calc(50% - 15px);
}
.choiceCard_reason li figure {
	width: 10%;
}
.choiceCard_reason li img {
	height: 70px;
	width: auto;
}
@media screen and (max-width: 640px) {
	.choiceCard_reason {
		padding: 20px 15px;
	}
	.choiceCard_reason h2 {
		font-size: 18px;
	}
	.choiceCard_reason ul {
		margin: 20px 0 0;
	}
	.choiceCard_reason li + li {
		margin-top: 15px;
	}
	.choiceCard_reason li p {
		font-size: 13px;
		width: 85%;
	}
	.choiceCard_reason li img {
		width: 100%;
		max-width: 35px;
		height: auto;
	}
}
