@charset "utf-8";
/******option******/
img {
	-ms-interpolation-mode: bicubic;
}
a {
	color: #000000;
	text-decoration: none;
}
a:hover {
	color: #0c3388;
	text-decoration: underline;
}
.text-center {
	text-align: center;
}
.text-right {
	text-align: right;
}
.flex-right {
	display: flex;
	justify-content: flex-end;
}
.bold {
	font-weight: bold;
}
.clear {
	clear: both;
}
@media screen and (min-width:900px){
	.break {
		display: block;
		margin-left: -0.4em;
	}
}
/************************************
html・body・wrapper
************************************/
html, body {
	position: relative;
}
body {
	color: #353535;
	font-family: "Noto Sans JP", "Hiragino Sans W3", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	-webkit-text-size-adjust: none;
	font-size: 62.5%;
	font-weight: 400;
	line-height: 1;
	color: #353535;
}
#wrapper {
	position: relative;
	font-size: 1.600em;
}
/************************************
header
************************************/
#header {
	padding: 15px 20px;
	height: 88px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
#header-logo {
	max-width: 300px;
	width: 85%;
	display: flex;
	align-items: center;
}
#header-logo a {
	width: 56%;
}
#header-logo .header-logo02 {
	width: 22%;
	margin: 0 3%;
}
#header-logo .header-logo03 {
	width: 10%;
}
#header-logo img {
	width: 100%;
	display: block;
}
@media screen and (min-width: 950px){
	#header {
		padding: 18px 25px;
		height: auto;
	}
}
@media screen and (min-width:1100px){
	#header-logo {
		max-width: 455px;
	}
}
/************************************
sp-btn
************************************/
#sp-btn,
#sp-btn span {
	transition: all .4s;
	margin: 0;
}
#sp-btn {
	position: fixed;
	z-index: 9999;
	top: 22px;
	right: 15px;
	width: 44px;
	height: 44px;
	cursor: pointer;
	text-align: center;
	background: #0c3388;
	border-radius: 50%;
}
#sp-btn span {
	position: absolute;
	left: 10px;
	width: 24px;
	height: 2px;
	background-color: #FFFFFF;
}
#sp-btn span:nth-of-type(1) {
	top: 16px;
}
#sp-btn span:nth-of-type(2) {
	top: 21px;
}
#sp-btn span:nth-of-type(3) {
	top: 26px;
}
#sp-btn.active {
	background: none;
}
#sp-btn.active span:nth-of-type(1) {
	-webkit-transform: translateY(5px) rotate(-45deg);
	transform: translateY(5px) rotate(-45deg);
}
#sp-btn.active span:nth-of-type(2) {
	left: 50%;
	opacity: 0;
	-webkit-animation: active-menu-bar02 .8s forwards;
	animation: active-menu-bar02 .8s forwards;
}
@-webkit-keyframes active-menu-bar02 {
	100% {
		height: 0;
	}
}
@keyframes active-menu-bar02 {
	100% {
		height: 0;
	}
}
#sp-btn.active span:nth-of-type(3) {
	-webkit-transform: translateY(-5px) rotate(45deg);
	transform: translateY(-5px) rotate(45deg);
}
@media screen and (min-width:950px){
	#sp-btn {
		display: none;
	}
}
/************************************
global-nav
************************************/
#nav {
	position: fixed;
	right: 0;
	top: 0;
	display: none;
	z-index: -10;
	width: 100%;
	height: 100%;
	overflow-y: scroll;
	-webkit-overflow-scrolling: touch;
	padding-top: 85px;
	background-color: #0c3388;
}
#nav.active {
	display: block;
	z-index: 9998;
}
#global-nav li {
	list-style: none;
	font-size: 1em;
	font-weight: bold;
	position: relative;
}
#global-nav li a {
	padding: 1rem 1rem;
	display: block;
	color: #FFFFFF;
	text-decoration: none;
	border-bottom: 1px solid rgba(255,255,255,0.4);
	position: relative;
}
#global-nav li:first-child a {
	border-top: 1px solid rgba(255,255,255,0.4);
}
#global-nav a::before {
	content: '';
	height: 9px;
	width: 9px;
	display: block;
	border: 1px solid rgba(255,255,255,0.8);
	border-left-width: 0;
	border-top-width: 0;
	transform: rotate(-45deg);
	-webkit-transform: rotate(-45deg);
	-moz-transform: rotate(-45deg);
	-o-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	position: absolute;
	top: 50%;
	right: 20px;
	margin-top: -5px;
}
#global-nav a::after {
	content: '';
	height: 1px;
	width: 15px;
	display: block;
	background: rgba(255,255,255,0.8);
	position: absolute;
	top: 50%;
	right: 20px;
	margin-top: -1px;
}
#global-nav li a.blank::before,
#global-nav li a.blank::after,
#global-nav li a.no-link::before,
#global-nav li a.no-link::after {
	display: none;
}
#global-nav li a.blank {
	background: url(../images/common/blank-white.png) no-repeat right 20px center;
	background-size: 15px;
}
#global-nav li ul {
	display: none;
}
#global-nav li ul.active {
	display: block;
	position: relative;
	z-index: 20;
}
#global-nav li ul li {
	background: rgba(255,255,255,0.15);
}
#global-nav li .trigger {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 10;
	cursor: pointer;
}
#global-nav li .trigger::before,
#global-nav li .trigger::after {
	content: '';
	height: 1px;
	width: 15px;
	display: block;
	background: rgba(255,255,255,0.8);
	position: absolute;
	top: 23px;
	right: 20px;
}
#global-nav li .trigger::after {
	height: 15px;
	width: 1px;
	top: 16px;
	right: 27px;
}
#global-nav li .trigger.active::after {
	display: none;
}
@media screen and (min-width:950px){
	#nav {
		position: relative;
		right: auto;
		top: auto;
		display: flex;
		flex-direction: column-reverse;
		align-items: flex-end;
		z-index: 1;
		width: auto;
		height: auto;
		overflow-y: inherit;
		padding-top: 0;
		background: none;
	}
	#global-nav {
		display: flex;
	}
	#global-nav li.sp {
		display: none;
	}
	#global-nav li a {
		padding: 0.5em 1em;
		color: #353535;
		border-bottom: 0;
		border-left: 1px solid rgba(0,0,0,0.1);
	}
	#global-nav li a:hover {
		color: #0c3388;
	}
	#global-nav li:nth-child(1) a {
		border-top: 0;
		border-left: 0;
	}
	#global-nav a::before,
	#global-nav a::after {
		display: none;
	}
	#global-nav li a.blank {
		background: url(../images/common/blank-white.png) no-repeat right 10px center;
		background-size: 15px;
	}
	#global-nav li:hover ul {
		display: block;
		position: absolute;
		top: 100%;
		width: 270px;
		left: 50%;
		margin-left: -135px;
		z-index: 20;
		border-radius: 6px;
		padding-top: 1em;
	}
	#global-nav li:hover ul li {
		width: auto;
	}
	#global-nav li:hover ul li a {
		background-color: #0c3388;
		border-bottom: 1px solid rgba(255,255,225,0.4);
		padding: 0.6em 1em;
		color: #FFFFFF;
	}
	#global-nav li:hover ul li:hover a {
		background-color: #546FAB;
	}
	#global-nav li:hover ul li a::after {
		display: none;
	}
	#global-nav li:hover ul li:first-child a {
		border-top: 0;
		border-radius: 6px 6px 0 0;
	}
	#global-nav li:hover ul li:last-child a {
		border-bottom: 0;
		border-radius: 0 0 6px 6px;
	}
	#global-nav li .trigger {
		display: none;
	}
}
/************************************
pc-nav
************************************/
#pc-nav {
	display: none;
}
@media screen and (min-width:950px){
	#pc-nav {
		display: flex;
	}
	#pc-nav li {
		width: 20%;
		list-style: none;
	}
	#pc-nav li a {
		display: block;
		border-bottom: 0;
		padding: 0.8rem 0;
		text-align: center;
		color: #FFFFFF;
		font-size: 0.85em;
		border-left: 1px solid rgba(255,255,255,0.5);
	}
	#pc-nav li:first-child a {
		border-left: 0;
	}
	#pc-nav li a .blank {
		padding-right: 1.3em;
		background: url(../images/common/blank-white.png) no-repeat right top 0.37em;
		background-size: 12px;
	}
	#pc-nav li a:hover {
		text-decoration: none;
		opacity: 0.7;
	}
	#pc-nav li.global-nav-visa a {
		background-color: #01856D;
	}
	#pc-nav li.global-nav-jcb a {
		background-color: #0065af;
	}
	#pc-nav li.global-nav-visa2 a {
		background-color: #0ba589;
	}
	#pc-nav li.global-nav-jcb2 a {
		background-color: #1282D4;
	}
	#pc-nav li.global-nav-plus a {
		background-color: #4EBBD8;
	}
}
@media screen and (min-width:1100px){
	#pc-nav li a {
		font-size: 0.9em;
	}
	#pc-nav li a .blank {
		background-size: 13px;
	}
}
/************************************
home-top
************************************/
#home-top {
	padding: 2.5em 20px;
	background: url(../images/home/home-top-bg.png) no-repeat center;
	background-size: cover;
	color: #FFFFFF;
	text-shadow: 0 0 10px rgba(0,0,0,0.7);
	text-align: center;
	line-height: 1.4;
	font-size: 4vw;
	font-weight: bold;
	font-family: "Noto Serif JP", "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
}
@media screen and (min-width:700px){
	#home-top {
		font-size: 2em;
		padding: 4em 20px;
	}
}
/************************************
page-head
************************************/
#page-head {
	font-size: 1rem;
	text-align: center;
	font-weight: bold;
	background-color: #F6F7F9;
	padding: 2em 20px;
}
#page-head span {
	font-size: 2.4em;
	display: block;
	color: #0c3388;
	margin-bottom: 0.7em;
	position: relative;
}
#page-head span::before {
	content: '';
	height: 1px;
	width: 30px;
	background-color: #E31B13;
	border-radius: 2px;
	position: absolute;
	bottom: -15px;
	left: 50%;
	margin-left: -15px;
}
/************************************
main
************************************/
#main {
	margin: 0 auto;
	padding: 0 20px;
	max-width: 1160px;
	line-height: 1.7;
}
#main.min {
	max-width: 940px;
}
#main.antisocial {
	padding: 3em 20px;
}
#main.privacy p,
#main.antisocial p,
#main.news p {
	margin: 1em 0;
}
#main.privacy p.space,
#main.news p.space {
	margin-bottom: 3em;
}
#main p.space {
	margin: 2em 0;
}
#main a.blank {
	background: url(../images/common/blank-red.png) no-repeat right 5px top 6px;
	background-size: 15px;
	padding-right: 1.5em;
}
#main a.pdf {
	background: url(../images/common/pdf-icon-red.png) no-repeat right 5px top 6px;
	background-size: 15px;
	padding-right: 1.6em;
}
.arrow {
	position: relative;
	padding-left: 1.5em;
}
.arrow::before {
	content: '';
	height: 1em;
	width: 1em;
	background-color: #0c3388;
	border-radius: 2px;
	position: absolute;
	top: 0.40em;
	left: 0;
}
.arrow::after {
	content: '';
	height: 0.4em;
	width: 0.4em;
	display: block;
	border: 2px solid #FFFFFF;
	border-left-width: 0;
	border-top-width: 0;
	transform: rotate(-45deg);
	-webkit-transform: rotate(-45deg);
	-moz-transform: rotate(-45deg);
	-o-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	position: absolute;
	top: 0.70em;
	left: 0.2em;
}
/************************************
page-title
************************************/
.page-title {
	font-size: 1.6em;
	line-height: 1.4;
	margin: 2.5em 0 1em;
	color: #0c3388;
	font-weight: bold;
	display: flex;
	align-items: center;
	position: relative;
}
.page-title::after {
	content: "";
	flex-grow: 1;
	height: 1px;
	background: #0c3388;
	display: block;
	margin-left: 0.7em;
	opacity: 0.3;
}
.page-title .date {
	position: absolute;
	top: -1.5em;
	left: 0;
	font-size: 1rem;
	color: #353535;
}
.page-title.visa img {
	height: 35px;
	margin-right: 1em;
}
.page-title.jcb img {
	height: 83px;
	margin-right: 0.8em;
}
@media screen and (max-width:530px){
	.page-title.visa,
	.page-title.jcb {
		flex-direction: column;
	}
	.page-title.visa img,
	.page-title.jcb img {
		display: block;
		margin: 0 auto 1em;
	}
}
/************************************
contents-title
************************************/
.contents-title {
	font-size: 1.3em;
	line-height: 1.4;
	margin: 2.5em 0 1em;
	color: #0c3388;
	font-weight: bold;
}
.contents-title.business {
	margin: 0;
	padding-bottom: 2em;
	text-align: center;
}
.contents-sub-title {
	font-size: 1.3em;
	line-height: 1.4;
	margin: 2em 0 1em;
	background: rgba(0,64,152,0.05);
	font-weight: bold;
	padding: 0.5em 0.8em;
	border-radius: 4px;
}
.contents-subsub-title {
	font-size: 1.15em;
	line-height: 1.4;
	margin: 2em 0 1em;
	font-weight: bold;
	padding-left: 1.5em;
	position: relative;
}
.contents-subsub-title::before {
	content: "";
	position: absolute;
	top: 0.7em;
	left: 0;
	width: 0.8em;
	height: 3px;
	background-color: #0c3388;
}
/************************************
table
************************************/
.normal-table {
	width: 100%;
	border-collapse: separate;
	border-spacing: 0;
	border-top: 1px solid rgba(0,0,0,0.1);
	border-left: 1px solid rgba(0,0,0,0.1);
	margin-bottom: 1em;
}
.normal-table th,
.normal-table td {
	border-bottom: 1px solid rgba(0,0,0,0.1);
	border-right: 1px solid rgba(0,0,0,0.1);
	padding: 15px 15px;
	display: block;
	width: 100%;
	vertical-align: top;
}
.normal-table th {
	background: rgba(0,64,152,0.05);
	text-align: left;
}
@media screen and (min-width:978px){
	.normal-table th,
	.normal-table td {
		border-bottom: 1px solid rgba(0,0,0,0.1);
		border-right: 1px solid rgba(0,0,0,0.1);
		padding: 15px 1.5rem;
		display: table-cell;
		width: auto;
	}
	.normal-table th {
		width: 30%;
	}
}
/************************************
circle-list
************************************/
.circle-list.min-space {
	margin-bottom: 1.5em;
}
.circle-list li {
	list-style: none;
	position: relative;
	padding: 0 0 0 1.4em;
	margin: 5px 0;
}
.circle-list li::before {
	content: "";
	height: 10px;
	width: 10px;
	background-color: #0c3388;
	border-radius: 50%;
	position: absolute;
	top: 0.6em;
	left: 0;
}
/************************************
▼point-list▼
************************************/
.point-list {
	margin-bottom: 9px;
}
.point-list.min-space {
	margin-bottom: 1.5em;
}
.point-list.space {
	margin-bottom: 3em;
}
.point-list li {
	position: relative;
	list-style: none;
	margin: 10px 0;
}
.point-list.wide li p {
	padding: 0 0 0 40px;
}
.point-list li p {
	padding: 0 0 0 30px;
}
.point-list li p.point {
	padding: 0;
	margin: 0 !important;
	position: absolute;
	top: 0;
	left: 0;
}
/************************************
arrow-list
************************************/
.arrow-list.space {
	margin-bottom: 3em;
}
.arrow-list li {
	position: relative;
	list-style: none;
	padding-left: 1.5em;
	margin: 0.5em 0;
}
.arrow-list li::before {
	content: '';
	height: 1em;
	width: 1em;
	background-color: #0c3388;
	border-radius: 2px;
	position: absolute;
	top: 0.35em;
	left: 0;
}
.arrow-list li::after {
	content: '';
	height: 0.4em;
	width: 0.4em;
	display: block;
	border: 2px solid #FFFFFF;
	border-left-width: 0;
	border-top-width: 0;
	transform: rotate(-45deg);
	-webkit-transform: rotate(-45deg);
	-moz-transform: rotate(-45deg);
	-o-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	position: absolute;
	top: 0.65em;
	left: 0.2em;
}
@media screen and (min-width:700px){
	.arrow-list.flex {
		display: flex;
		flex-wrap: wrap;
	}
	.arrow-list.flex li {
		margin-right: 3em;
	}
}
/************************************
pan-list
************************************/
#pan-list {
	font-size: 0.6em;
	background-color: #F6F7F9;
}
#pan-list p {
	margin: 0 auto;
	padding: 1.5em 20px;
	max-width: 1160px;
}
#pan-list a {
	color: #0c3388;
	text-decoration: underline;
}
/************************************
home-contents-title
************************************/
.home-contents-title {
	color: #0c3388;
	font-weight: normal;
	font-size: 1rem;
	text-align: center;
	line-height: 1.4;
}
.home-contents-title.white {
	color: #FFFFFF;
	text-shadow: 0 0 10px rgba(0,0,0,0.5);
}
.home-contents-title span {
	font-size: 3.0em;
	display: block;
}
/************************************
home-information
************************************/
#home-information {
	padding: 3em 20px;
	background: url(../images/home/home-information-bg.png) no-repeat center;
	background-size: cover;
}
#home-information-box {
	max-width: 1160px;
	margin: 2em auto;
	line-height: 1.4;
}
.home-information-list {
	background-color: #FFFFFF;
	box-shadow: 0 0 4px 0 rgba(0,0,0,0.2);
	border-radius: 4px;
	padding: 3em 30px 2em;
	margin-top: 2em;
}
.home-information-list img {
	height: 55px;
	display: block;
	margin: 0 auto 3em;
}
.solo .home-information-list img,
.home-information-list:nth-child(2) img {
	height: 83px;
}
.home-information-list ul {
	margin-top: 3em;
}
.home-information-list ul.houjin {
	margin-top: 2em;
}
.home-information-list li {
	position: relative;
	list-style: none;
	padding-left: 1.5em;
	margin: 0.5em 0;
}
.home-information-list li::before {
	content: '';
	height: 1em;
	width: 1em;
	background-color: #0c3388;
	border-radius: 2px;
	position: absolute;
	top: 0.2em;
	left: 0;
}
.home-information-list .houjin li::before {
	background-color: #01856D;
}
.home-information-list li::after {
	content: '';
	height: 0.4em;
	width: 0.4em;
	display: block;
	border: 2px solid #FFFFFF;
	border-left-width: 0;
	border-top-width: 0;
	transform: rotate(-45deg);
	-webkit-transform: rotate(-45deg);
	-moz-transform: rotate(-45deg);
	-o-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	position: absolute;
	top: 0.5em;
	left: 0.2em;
}
.home-information-list li a.blank {
	background: url(../images/common/blank-red.png) no-repeat right 5px;
	background-size: 15px;
	padding-right: 1.5em;
}
@media screen and (min-width:700px){
	#home-information-box {
		display: flex;
	}
	#home-information-box.solo {
		justify-content: center;
	}
	.home-information-list {
		width: 48%;
		padding: 2em 30px;
	}
	.home-information-list:nth-child(1) img {
		margin: 14px auto 3.95em;
	}
	.home-information-list:nth-child(2) {
		margin-left: 4%;
	}
}
@media screen and (min-width:1100px){
	.home-information-list ul {
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
		margin-top: 2em;
	}
	.home-information-list li {
		width: 43%;
		margin-left: 3%;
	}
	.home-information-list li.right {
		margin-left: 49%;
	}
}
/************************************
home-news
************************************/
#home-news {
	padding: 3em 20px;
}
#news-list {
	max-width: 1160px;
	margin: 2em auto;
	line-height: 1.4;
}
#news-list li {
	list-style: none;
}
#home-news #news-list li:has(.type01),
#home-news #news-list li:has(.type02) {
	display: none;
}
#news-list li a,
#news-list li div {
	padding: 1em 0;
	border-bottom: 1px solid #DDDDDD;
	display: block;
	position: relative;;
}
#news-list li a:hover {
	background-color: rgba(0,64,152,0.1);
}
#news-list li:first-child a,
#news-list li:first-child div {
	border-top: 1px solid #DDDDDD;
}
#news-list li .blank {
	background: url(../images/common/blank-red.png) no-repeat right 5px center;
	background-size: 15px;
	padding-right: 1.8em;
}
#news-list li a:hover {
	text-decoration: none;
}
#news-list li p.category {
	margin-bottom: 0.5em;
	padding: 0.2em;
	font-size: 0.8em;
	border-radius: 2px;
	color: #FFFFFF;
	width: 180px;
	text-align: center;
}
#news-list li p.category.type01 {
	background-color: #00AA81;
}
#news-list li p.category.type02 {
	background-color: #004098;
}
#news-list li p.category.type03 {
	background-color: #d32784;
}
#news-list li p.category.type04 {
	background-color: #FF0000;
}
#news-list li p.text {
	line-height: 1.7;
}
#news-list li a p.text {
	text-decoration: underline;
}
@media screen and (min-width:1100px){
	#news-list li a,
	#news-list li div {
		padding: 1em 0 1em 210px;
	}
	#news-list li p.category {
		position: absolute;
		top: 1.4em;
		left: 0;
	}
}
.news-btn {
	display: block;
	text-align: center;
	border: 1px solid #0c3388;
	width: 230px;
	margin: 0 auto;
	padding: 1em 0 1em 1.5em;
	color: #0c3388;
	border-radius: 4px;
	position: relative;
}
.news-btn:hover {
	text-decoration: none;
	background-color: rgba(0,64,152,0.1);
}
.news-btn::before {
	content: '';
	height: 1em;
	width: 1em;
	background-color: #0c3388;
	border-radius: 2px;
	position: absolute;
	top: 1.1em;
	left: 1.4em;
}
.news-btn::after {
	content: '';
	height: 0.4em;
	width: 0.4em;
	display: block;
	border: 2px solid #FFFFFF;
	border-left-width: 0;
	border-top-width: 0;
	transform: rotate(-45deg);
	-webkit-transform: rotate(-45deg);
	-moz-transform: rotate(-45deg);
	-o-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	position: absolute;
	top: 1.3em;
	left: 1.6em;
}
/************************************
home-link
************************************/
#home-link {
	padding: 3em 20px;
	background-color: #F6F7F9;
}
#home-link-box {
	max-width: 1160px;
	margin: 2em auto;
	line-height: 1.4;
}
.home-link-list {
	background-color: #FFFFFF;
	box-shadow: 0 0 4px 0 rgba(0,0,0,0.2);
	border-radius: 4px;
	margin-top: 2em;
	display: flex;
	flex-direction: column;
	height: 100%;
}
.home-link-list-title {
	font-size: 1.3em;
	line-height: 1.4;
	background: rgba(0,64,152,0.7);
	font-weight: bold;
	padding: 1em 0.8em;
	border-radius: 4px 4px 0 0;
	color: #FFFFFF;
	text-align: center;
}
.home-link-list ul {
	padding: 1em 1.5em;
}
.home-link-list li {
	position: relative;
	list-style: none;
	margin: 1em 0;
}
.home-link-list li a {
	display: block;
	border-radius: 4px;
	border: 3px solid rgba(0,64,152,0.3);
	padding: 1.5em 50px 1.5em 1em;
	background: url(../images/common/blank-red.png) #FFFFFF no-repeat right 1em center;
	background-size: 15px;
}
.home-link-list li a:hover {
	text-decoration: none;
	background-color: rgba(0,64,152,0.1);
}
.home-link-box-banner {
	display: flex;
	flex-direction: column;
	align-items: center;
	margin-top: 2em;
	font-size: 0.9em;
}
.home-link-box-banner img {
	width: 100%;
	margin: 0 auto 0.5em;
	display: block;
}
@media screen and (min-width:700px){
	#home-link-box {
		display: flex;
	}
	.home-link-box-inner {
		width: 48%;
		display: flex;
		flex-direction: column;
	}
	.home-link-box-inner:nth-child(2) {
		margin-left: 4%;
	}
}
/************************************
card-box
************************************/
.card-box {
	margin-top: 3em;
}
.card-box-title {
	background: rgba(0,64,152,0.05);
	font-size: 1.3em;
	padding: 0.5em 0.8em;
	border-radius: 4px;
}
.card-box-title a {
	display: inline-block;
	width: 100%;
	max-width: 7em;
	text-align: center;
	padding: 0.1em;
	margin:  0 0 0 1em;
	color: #FFFFFF;
	border-radius: 6px;
	background-color: #0065af;
}
.card-box-title a:hover {
	opacity: 0.7;
	color: #FFFFFF;
	text-decoration: none;
}
.card-box img {
	width: 100%;
	margin: 1em auto;
	display: block;
}
.card-box.houjin img {
	width: 90%;
	margin-bottom: 2em;
}
.card-box .contents-title {
	margin: 0.5em 5% 0;
}
.card-box p {
	margin: 0.5em 5% 0;
}
.half-box {
	margin-bottom: 2em;
}
@media screen and (min-width:900px){
	.card-box {
		display: flex;
	}
	.card-box-title {
		width: 20%;
		text-align: center;
		padding-top: 1em;
	}
	.card-box-title a {
		display: block;
		margin: 0.5em auto 0;
	}
	.half {
		display: flex;
		flex-wrap: wrap;
		width: 80%;
	}
	.half-box {
		width: 48%;
		margin-left: 2%;
	}
	.half-box.wide {
		margin-right: 50%;
	}
	.half-box img {
		margin-top: 0;
	}
}
/************************************
title-table
************************************/
.title-table {
	width: 100%;
	border-collapse: separate;
	border-spacing: 0;
	border-top: 1px solid rgba(0,0,0,0.1);
	border-left: 1px solid rgba(0,0,0,0.1);
	margin-bottom: 1em;
}
.title-table th,
.title-table td {
	border-bottom: 1px solid rgba(0,0,0,0.1);
	border-right: 1px solid rgba(0,0,0,0.1);
	padding: 15px 15px;
	display: block;
	width: 100%;
	vertical-align: top;
}
.title-table th {
	background: rgba(0,64,152,0.05);
	text-align: left;
	color: #0c3388;
}
@media screen and (min-width:978px){
	.title-table th,
	.title-table td {
		border-bottom: 1px solid rgba(0,0,0,0.1);
		border-right: 1px solid rgba(0,0,0,0.1);
		padding: 15px 1.5rem;
		display: table-cell;
		width: auto;
	}
	.title-table th {
		width: 30%;
		text-align: center;
		vertical-align: middle;
	}
}
/************************************
jcb-table
************************************/
.jcb-table {
	width: 100%;
	border-collapse: separate;
	border-spacing: 0;
	border-top: 1px solid rgba(0,0,0,0.1);
	border-left: 1px solid rgba(0,0,0,0.1);
	margin: 1em 0;
}
.jcb-table.pc {
	display: none;
}
.jcb-table th,
.jcb-table td {
	border-bottom: 1px solid rgba(0,0,0,0.1);
	border-right: 1px solid rgba(0,0,0,0.1);
	padding: 15px;
	vertical-align: top;
}
.jcb-table th {
	background: rgba(0,0,0,0.05);
	text-align: left;
}
.jcb-table th.bg01 {
	background: rgba(0,64,152,0.05);
	width: 30%;
}
.jcb-table td {
	width: 70%;
}
@media screen and (min-width:1100px){
	.jcb-table {
		display: none;
	}
	.jcb-table.pc {
		display: block;
	}
	.jcb-table th,
	.jcb-table td {
		padding: 15px 1.5rem;
	}
	.jcb-table th {
		text-align: center;
		vertical-align: middle;
	}
	.jcb-table th.bg01,
	.jcb-table td {
		width: auto;
	}
}
/************************************
jcb-box
************************************/
.jcb-box-number {
	margin: 2em 0;
}
.jcb-box-info {
	margin: 2em 0;
	padding: 1.5em;
	border: 1px solid #DDDDDD;
}
@media screen and (min-width:800px){
	.jcb-box {
		display: flex;
		justify-content: space-between;
		align-items: center;
	}
	.jcb-box-info {
		width: 65%;
	}
}
@media screen and (min-width:1100px){
	.jcb-box-info {
		display: flex;
		justify-content: center;
		align-items: center;
		width: 75%;
	}
	.jcb-box-info div {
		margin: 0 1em;
	}
}
/************************************
footer
************************************/
#footer {
	background-color: #0c3388;
	color: #FFFFFF;
	line-height: 1.5;
}
.footer-inner {
	padding: 2em 20px;
	max-width: 1160px;
	margin: 0 auto;
}
@media screen and (min-width:1100px){
	.footer-inner {
		display: flex;
		justify-content: space-between;
	}
}
.footer-inner-box {
	max-width: 690px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	align-items: center;
}
#footer-pleace {
	margin-bottom: 2em;
}
#footer-pleace h5 {
	font-size: 1.3em;
	line-height: 1.4;
}
#footer-pleace p {
	margin-top: 1em;
}
#footer-pleace p img {
	width: 17px;
	display: inline-block;
	vertical-align: middle;
}
#footer-registered {
	padding: 2em 0;
	border-top: 1px solid rgba(255,255,255,0.4);
	border-bottom: 1px solid rgba(255,255,255,0.4);
	width: 100%;
}
#footer-registered h5 {
	font-size: 1.15em;
	line-height: 1.4;
	margin-bottom: 0.5em;
}
#footer-registered table {
	width: 100%;
	border-collapse: separate;
	border-spacing: 0;
	border-top: 1px solid #FFFFFF;
	border-left: 1px solid #FFFFFF;
}
#footer-registered table th,
#footer-registered table td {
	border-bottom: 1px solid #FFFFFF;
	border-right: 1px solid #FFFFFF;
	padding: 7px 10px;
	vertical-align: top;
}
@media screen and (min-width:1100px){
	#footer-registered {
		padding: 0;
		border: 0;
	}
}
#footer-list {
	display: flex;
	flex-wrap: wrap;
}
#footer-list ul {
	margin-top: 1em;
}
#footer-list ul li {
	position: relative;
	list-style: none;
	margin-top: 0.5em;
	padding-left: 1.5em;
}
#footer-list ul li.footer-list-title {
	font-size: 1.15em;
	font-weight: bold;
}
#footer-list ul li.footer-list-title.space {
	margin-top: 1em;
}
#footer-list a {
	color: #FFFFFF;
}
#footer-list a.blank {
	background: url(../images/common/blank-white.png) no-repeat right 5px;
	background-size: 15px;
	padding-right: 1.5em;
}
#footer-list ul li::before {
	content: '';
	height: 1em;
	width: 1em;
	background-color: #FFFFFF;
	border-radius: 2px;
	position: absolute;
	top: 5px;
	left: 0;
}
#footer-list ul li::after {
	content: '';
	height: 0.4em;
	width: 0.4em;
	display: block;
	border: 2px solid #0c3388;
	border-left-width: 0;
	border-top-width: 0;
	transform: rotate(-45deg);
	-webkit-transform: rotate(-45deg);
	-moz-transform: rotate(-45deg);
	-o-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	position: absolute;
	top: 38%;
	left: 0.2em;
}
@media screen and (min-width:320px){
	#footer-list ul {
		width: 100%;
	}
}
@media screen and (min-width:560px){
	#footer-list ul {
		width: auto;
		margin-right: 3em;
	}
}
@media screen and (min-width:720px){
	#footer-list {
		justify-content: center;
	}
	#footer-list ul {
		margin-right: 0;
	}
	#footer-list ul:nth-child(2) {
		margin-left: 3em;
		margin-right: 3em;
	}
}
@media screen and (min-width:1100px){
	#footer-list ul {
		margin-top: 2.2em;
	}
	#footer-list ul li {
		margin-bottom: 1em;
	}
}
#footer-banner,
#home-banner {
	background-color: #F6F7F9;
	padding: 25px 1em;
	font-size: 2.7vw;
}
.banner-list {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	line-height: 1.5;
	margin: 0 auto;
	max-width: 560px;
}
.banner-list li {
	list-style: none;
	width: 46%;
	margin: 0.5em 2%;
	max-width: 276px;
}
.banner-list img {
	width: 100%;
	display: block;
	margin-bottom: 0.5em;
}
.banner-list span {
	display: block;
	font-weight: bold;
	position: relative;;
	padding-left: 1.5em;
}
.banner-list span::before {
	content: '';
	height: 1em;
	width: 1em;
	background-color: #FFFFFF;
	border-radius: 2px;
	position: absolute;
	top: 0.3em;
	left: 0;
}
.banner-list li.visa span::before {
	background-color: #01856D;
}
.banner-list li.visa a {
	color: #01856D;
}
.banner-list li.jcb span::before {
	background-color: #0065af;
}
.banner-list li.jcb a {
	color: #0065af;
}
.banner-list li.visa2 span::before {
	background-color: #0ba589;
}
.banner-list li.visa2 a {
	color: #0ba589;
}
.banner-list li.jcb2 span::before {
	background-color: #0182DF;
}
.banner-list li.jcb2 a {
	color: #0182DF;
}
.banner-list li.awabank span::before {
	background-color: #2DA3BF;
}
.banner-list li.awabank a {
	color: #2DA3BF;
}
.banner-list li.fishing span {
	font-size: 0.88em;
}
.banner-list li.fishing span::before {
	background-color: #123467;
}
.banner-list li.fishing a {
	color: #123467;
}
.banner-list span::after {
	content: '';
	height: 0.4em;
	width: 0.4em;
	display: block;
	border: 2px solid #FFFFFF;
	border-left-width: 0;
	border-top-width: 0;
	transform: rotate(-45deg);
	-webkit-transform: rotate(-45deg);
	-moz-transform: rotate(-45deg);
	-o-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	position: absolute;
	top: 0.6em;
	left: 0.2em;
}

@media screen and (min-width:600px){
	#footer-banner,
	#home-banner {
		font-size: 1em;
	}
}
@media screen and (min-width:900px){
	#footer-banner,
	#home-banner {
		font-size: 1.4vw;
	}
	.banner-list {
		max-width: inherit;
	}
	.banner-list li {
		width: 23%;
		margin: 0.5em 1%;
	}
}
@media screen and (min-width:1280px){
	#footer-banner,
	#home-banner {
		font-size: 1.0vw;
	}
	.banner-list li {
		width: 15.1%;
		margin: 0.5em 0.7%;
	}
	.banner-list li.fishing span {
		font-size: 0.83em;
	}
}
@media screen and (min-width:1700px){
	#footer-banner,
	#home-banner {
		font-size: 1em;
	}
	.banner-list li.fishing span {
		font-size: 0.88em;
	}
}

#footer-etc {
	background-color: #FFFFFF;
	color: #353535;
}
#footer-etc-list li {
	list-style: none;
	padding: 1em 0;
	border-bottom: 1px solid rgba(0,0,0,0.1);
	font-size: 0.8em;
}
#footer-etc-list li:first-child {
	border-top: 1px solid rgba(0,0,0,0.1);
}
#copy {
	text-align: center;
	margin-top: 1.5em;
}
@media screen and (min-width:1100px){
	#footer-etc-list {
		display: flex;
		align-items: center;
	}
	#footer-etc-list li {
		padding: 0 1em;
		border-left: 1px solid rgba(0,0,0,0.1);
		border-bottom: 0;
		font-size: 0.8em;
	}
	#footer-etc-list li:first-child {
		border-top: 0;
		border-left: 0;
		padding-left: 0;
	}
	#copy {
		margin-top: 0;
	}
}


/*----- 法人のお客さま -----*/
.business-head-text {
	margin-top: 3.5em;
	display: flex;
	justify-content: center;
}
.page-title.business::before {
	content: "";
	flex-grow: 1;
	height: 1px;
	background: #0c3388;
	display: block;
	margin-right: 0.7em;
	opacity: 0.3;
}
.business-attention {
	margin-top: 3em;
	background-color: #FFF6CF;
	padding: 2em;
}
.business-attention h3 {
	color: #A4550F;
}
.business-attention a {
	text-decoration: underline;
}
.business-link {
	background-color: #e0f5f1;
	padding: 2em;
}
.business-link.visa {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
}
.business-link.jcb {
	background-color: #dbe8f1;
}
.business-link-btn {
	display: block;
	width: 100%;
	max-width: 320px;
	text-align: center;
	padding: 0.7em 1em;
	font-size: 1.3em;
	margin: 0 auto 0;
	background-color: #01856D;
	color: #FFFFFF;
	border-radius: 6px;
}
.visa .business-link-btn {
	max-width: 350px;
	margin: 0.5em;
}
.visa .business-link-btn.gold {
	background-color: #a37d11;
}
.jcb .business-link-btn {
	background-color: #0065af;
}
.business-link-btn:hover {
	opacity: 0.7;
	color: #FFFFFF;
	text-decoration: none;
}
.business-text {
	display: flex;
	justify-content: center;
}
.business-merit {
	display: flex;
	flex-direction: column;
}
.business-merit-inner {
	border: 3px solid #E0E1FF;
	border-radius: 6px;
	padding: 1.5em 1em;
	margin: 1em auto;
	max-width: 360px;
}
.business-merit-inner img {
	width: 100%;
	display: block;
}
.business-merit h3 {
	display: flex;
	justify-content: center;
	color: #0c3388;
	margin: 1em 0;
}
@media screen and (min-width:960px){
	.business-merit {
		flex-direction: row;
		justify-content: space-between;
	}
	.business-merit-inner {
		width: 32%;
		margin: 1em 0;
		max-width: inherit;
	}
}
.business-card {
	width: 100%;
	overflow-x: auto;
	position: relative;
}
.business-card-table {
	width: 100%;
	min-width: 700px;
	border-collapse: collapse;
}
.business-card-table th,
.business-card-table td {
	border-bottom: 2px solid rgba(0,0,0,0.1);
	width: 42%;
	padding: 0.7em;
	vertical-align: top;
	text-align: left;
	font-size: 0.9em;
	vertical-align: middle;
}
.business-card-table th.business-card-table-title {
	padding-top: 1.5em;
	color: #0c3388;
}
.business-card-table .business-card td {
	text-align: center;
}
.business-card-table .business-card img {
	display: block;
	margin: 0 auto 1em;
	max-width: 400px;
}
.business-card-table th {
	width: 16%;
}
.business-card-table img {
	width: 100%;
	display: block;
}
.business-card-table img.visa-img {
	max-width: 80px;
}
.business-card-table ul li {
	list-style: none;
	position: relative;
	padding: 0 0 0 1.4em;
	margin: 5px 0;
}
.business-card-table ul li::before {
	content: "";
	height: 10px;
	width: 10px;
	background-color: #0c3388;
	border-radius: 50%;
	position: absolute;
	top: 0.6em;
	left: 0;
}
@media screen and (min-width:960px){
	.business-card-table th,
	.business-card-table td {
		font-size: 1em;
	}
}
.business-service {
	display: flex;
	flex-direction: column;
}
.business-service-inner {
	border: 3px solid #E0E1FF;
	border-radius: 6px;
	padding: 1.5em 1em;
	margin: 1em auto;
	max-width: 360px;
}
.business-service-inner img {
	width: 100%;
	max-width: 100px;
	margin: 0 auto;
	display: block;
}
.business-service h3 {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	margin: 1em 0;
	line-height: 1.5;
}
.business-service .gold {
	background-color: #897c22;
	width: 100%;
	text-align: center;
	font-size: 0.9em;
	color: #FFFFFF;
	margin-bottom: 0.5em;
	display: block;
}
.business-service .gold.important {
	background-color: #ffe82e;
	color: #0c3388;
}
@media screen and (min-width:960px){
	.business-service {
		flex-direction: row;
		flex-wrap: wrap;
		width: 102%;
		margin-left: -1%;
	}
	.business-service-inner {
		width: 31.33333%;
		margin: 1em 1%;
		max-width: inherit;
	}
	.business-service h3 {
		height: 3em;
		text-align: center;
	}
}

.business-service-point {
	font-size: 0.8em;
}
.business-service-point li {
	position: relative;
	padding-left: 1.5em;
	list-style: none;
	margin-top: 0.5em;
}
.business-service-point li .point {
	position: absolute;
	top: 0;
	left: 0;
}

.business-application {
	margin-top: 2em;
}
.business-application-inner {
	position: relative;
	padding: 1.4em 1em;
	border-radius: 6px;
	margin-bottom: 4.5em;
	border: 3px solid rgba(0,0,0,0.1);
	text-align: center;
}
.business-application-inner::after {
	content: "";
	width: 0;
	height: 0;
	position: absolute;
	bottom: -40px;
	left: 50%;
	margin-left: -20px;
	border-left: 20px solid transparent;
	border-right: 20px solid transparent;
	border-top: 20px solid #F4964A;
}
.business-application-inner.last::after {
	display: none;
}
.business-application-step {
	background-color: #0c3388;
	color: #FFFFFF;
	max-width: 7em;
	margin: -2.3em auto 1em;
	border-radius: 999px;
}
.business-application img {
	display: block;
	width: 100%;
	max-width: 100px;
	margin: 0 auto 1em;
}
@media screen and (min-width:960px){
	.business-application {
		display: flex;
		flex-direction: row;
		justify-content: space-between;
	}
	.business-application-inner {
		width: 23%;
		margin: 1em 0;
		max-width: inherit;
	}
	.business-application-inner::after {
		position: absolute;
		top: 50%;
		margin-top: -10px;
		bottom: auto;
		left: calc(100% - 10px);
		margin-left: auto;
		transform: rotate(-90deg);
	}
	.business-application-step {
		margin-bottom: 2em;
	}
	.business-application-description {
		height: 3em;
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
	}
}
.business-contact-text {
	font-size: 2.2em;
	font-weight: bold;
	text-align: center;
	margin-bottom: 2em;
	color: #0c3388;
}
.business-contact-text span {
	background: url(../images/business/business-contact-text.png) no-repeat left 0.3em;
	background-size: 0.6em;
	padding-left: 1em;
}




/************************************
card-box
************************************/
.card-box .half-box a:hover {
	opacity: 0.7;
	text-decoration: none;
}
.card-box-btn {
	display: block;
	width: 90%;
	text-align: center;
	padding: 0.7em 1em;
	font-size: 1.3em;
	margin: 0 auto;
	background-color: #01856D;
	color: #FFFFFF;
	border-radius: 6px;
}
@media (any-hover: hover) {
	a:hover .card-box-btn {
		opacity: 0.7;
		color: #FFFFFF;
	}
}
/************************************
platinum-title
************************************/
.platinum-title {
	margin: 60px 0 40px;
	padding: 24px;
	font-size: 7vw;
	text-align: center;
	color: #0c3388;
	line-height: 1.7;
}
.platinum-title.business-p {
	font-size: 5.5vw;
}
.platinum-title img {
	display: block;
	margin: 0 auto;
	max-width: 300px;
	width: 100%;
}
.platinum-title span {
	font-size: 1rem;
	font-weight: normal;
	display: block;
	margin-top: 0.5em;
	color: #353535;
}
@media screen and (min-width:400px) {
	.platinum-title {
		font-size: 1.9em;
	}
}
@media screen and (min-width:500px) {
	.platinum-title.business-p {
		font-size: 1.9em;
	}
}
.platinum-link {
	display: flex;
	border-radius: 6px;
	max-width: 800px;
	margin: 0 auto 60px;
	border: 1px solid #DDDDDD;
	box-shadow: 0 0 3px rgba(0,0,0,0.08);
}
.platinum-link li {
	list-style: none;
	width: calc(100%/3);
	text-align: center;
	font-size: 4vw;
}
.platinum-link li a {
	position: relative;
	padding: 18px 0 42px;
	display: block;
}
.platinum-link li:nth-child(2) a {
	border-left: 1px solid #DDDDDD;
	border-right: 1px solid #DDDDDD;
}
.platinum-link li a::before {
	content: '';
	height: 20px;
	width: 20px;
	background-color: #0c3388;
	border-radius: 50%;
	position: absolute;
	bottom: 13px;
	left: 50%;
	transform: translateX(-50%);
}
.platinum-link li a::after {
	content: '';
	height: 7px;
	width: 7px;
	display: block;
	border: 2px solid #FFFFFF;
	border-left-width: 0;
	border-top-width: 0;
	transform: rotate(45deg) translateX(-50%);
	position: absolute;
	bottom: 18px;
	left: 49.8%;
}
@media (any-hover: hover) {
	.platinum-link li a:hover {
		background-color: #F6F7F9;
		text-decoration: none;
	}
}
@media screen and (min-width:400px) {
	.platinum-link li {
		font-size: 1em;
	}
}
.platinum-contents {
	margin-bottom: -1px;
	padding: 60px 0;
	border-top: 1px solid rgba(0,0,0,0.1);
	border-bottom: 1px solid rgba(0,0,0,0.1);
}
.platinum-contents.bg {
	background-color: #F6F7F9;
}
.platinum-box {
	margin: 0 auto;
	padding: 0 20px;
	max-width: 1160px;
	line-height: 1.7;
}
.platinum-contents-title {
	text-align: center;
	font-size: 1.6em;
	margin-bottom: 60px;
	color: #0c3388;
}
.platinum-brand-img {
	display: block;
	width: 100%;
	max-width: 100px;
}
.point-caption {
	list-style: none;
	position: relative;
	padding: 0 0 0 1.4em;
	font-size: 0.9em;
}
.point-caption::before {
	content: "※";
	position: absolute;
	top: 0;
	left: 0;
}
.pick-text {
	color: #0c8846;
	font-weight: bold;
}
/************************************
platinum-table
************************************/
.platinum-table {
	width: 100%;
	border-collapse: separate;
	border-spacing: 0;
	border-top: 1px solid rgba(0,0,0,0.2);
	border-left: 1px solid rgba(0,0,0,0.2);
	background-color: #FFFFFF;
	max-width: 800px;
	margin: 0 auto 1em;
}
.platinum-table th,
.platinum-table td {
	border-bottom: 1px solid rgba(0,0,0,0.2);
	border-right: 1px solid rgba(0,0,0,0.2);
	padding: 15px 15px;
	display: block;
	width: 100%;
	vertical-align: top;
}
.platinum-table th {
	background: rgba(0,64,152,0.05);
	text-align: left;
}
@media screen and (min-width:978px){
	.platinum-table th,
	.platinum-table td {
		border-bottom: 1px solid rgba(0,0,0,0.2);
		border-right: 1px solid rgba(0,0,0,0.2);
		padding: 15px 1.5rem;
		display: table-cell;
		width: auto;
	}
	.platinum-table th {
		width: 25%;
	}
}
.business-tokuten {
	counter-reset: number 0;
}
.business-tokuten-box {
	position: relative;
	background-color: #F6F7F9;
	border-radius: 6px;
	margin: 80px 0 0;
	padding: 54px 24px 24px;
}
.business-tokuten-box::before {
	counter-increment: number 1;
	content: counter(number,decimal-leading-zero);
	position: absolute;
	top: -30px;
	left: 50%;
	transform: translateX(-50%);
	background-color: #0c3388;
	height: 60px;
	width: 60px;
	border-radius: 50%;
	color: #FFFFFF;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 21px;
	font-weight: bold;
	line-height: 1;
}
.business-tokuten-box:nth-child(1)::before {
	background-color: #d14242;
}
.business-tokuten-box:nth-child(2)::before {
	background-color: #ce7442;
}
.business-tokuten-box:nth-child(3)::before {
	background-color: #d3a739;
}
.business-tokuten-box:nth-child(4)::before {
	background-color: #5b8e25;
}
.business-tokuten-box:nth-child(5)::before {
	background-color: #398937;
}
.business-tokuten-box:nth-child(6)::before {
	background-color: #268c82;
}
.business-tokuten-box:nth-child(7)::before {
	background-color: #206191;
}
.business-tokuten-box:nth-child(8)::before {
	background-color: #38389e;
}
.business-tokuten-box:nth-child(9)::before {
	background-color: #592f89;
}
.business-tokuten-box img {
	width: 100%;
	max-width: 100px;
	margin: 0 auto 15px;
	display: block;
}
.business-tokuten-box h3 {
	color: #0c3388;
	display: flex;
	line-height: 1.4;
	margin-bottom: 0.7em;
	justify-content: center;
}
.business-tokuten-box-point {
	font-size: 0.9em;
}
.business-tokuten-box-point li {
	position: relative;
	padding-left: 1.5em;
	list-style: none;
	margin-top: 0.5em;
}
.business-tokuten-box-point li .point {
	position: absolute;
	top: 0;
	left: 0;
}
.business-tokuten-box .blank {
	background: url(../images/common/blank-red.png) no-repeat right 0 top 0.3em;
	background-size: 1em;
	padding-right: 1.5em;
}
.business-tokuten-box-point-text {
	font-size: 0.9em;
	margin-top: 0.7em;
	text-decoration: underline;
}
@media screen and (min-width:640px){
	.business-tokuten-box {
		margin: 60px 20px 0;
		padding: 24px 24px 24px 165px;
	}
	.business-tokuten-box::before {
		top: -20px;
		left: -20px;
		transform: translateX(0);
	}
	.business-tokuten-box h3 {
		justify-content: flex-start;
	}
	.business-tokuten-box img {
		position: absolute;
		top: 50%;
		left: 30px;
		transform: translateY(-50%);
	}
}

.platinum-service {
	display: flex;
	flex-direction: column;
}
.platinum-service-inner {
	border: 1px solid #DDDDDD;
	box-shadow: 0 0 3px rgba(0,0,0,0.08);
	background-color: #FFFFFF;
	border-radius: 6px;
	padding: 1em 24px 1.5em;
	margin: 0 auto 2em;;
	max-width: 360px;
	transition: all .4s;
	display: block;
	position: relative;
}
.platinum-service-inner::before {
	content: "";
	background: url(../images/common/blank-white.png) #0c3388 center / 15px no-repeat;
	width: 30px;
	height: 30px;
	position: absolute;
	bottom: 0;
	right: 0;
	border-radius: 0 0 6px 0;
}
.platinum-service-inner img {
	width: 100%;
	margin: 0 auto 10px;
	display: block;
}
.platinum-service h3 {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	line-height: 1.5;
	color: #0c3388;
}
@media (any-hover: hover) {
	.platinum-service-inner:hover {
		box-shadow: 0 0 0 3px #0c3388 inset;
		text-decoration: none;
		opacity: 0.7;
	}
}
@media screen and (min-width:960px){
	.platinum-service {
		flex-direction: row;
		flex-wrap: wrap;
		width: 102%;
		margin-left: -1%;
	}
	.platinum-service-inner {
		width: 31.33333%;
		margin: 0 1% 2em;
		max-width: inherit;
	}
	.platinum-service h3 {
		height: 3em;
		text-align: center;
	}
}

.fade-in {
	opacity: 0;
	transform: translate(0, 60px);
	transition: ease-out .4s;
}
.fade-in.show {
	opacity: 1;
	transform: translate(0, 0);
}


.movie-list {
	display: flex;
	flex-wrap: wrap;
}
.movie-list-inner {
	width: 100%;
}
.youtube {
	position: relative;
	width: 100%;
	padding-top: 56.25%;
	margin-bottom: 1.5em;
}
.youtube iframe {
	position: absolute;
	top: 0;
	right: 0;
	width: 100% !important;
	height: 100% !important;
}
.movie-list-btn {
	display: block;
	width: 100%;
	margin: 2em auto 3em;
	text-align: center;
	padding: 0.7em 1em;
	font-size: 1.3em;
	background-color: #01856D;
	color: #FFFFFF;
	border-radius: 6px;
}
.movie-list-btn span {
	background: url(../images/common/blank-white.png) right center / 0.8em no-repeat;
	padding-right: 1.5em;
}
@media (any-hover: hover) {
	.movie-list-btn:hover {
		opacity: 0.7;
		color: #FFFFFF;
		text-decoration: none;
	}
}
@media screen and (min-width:640px){
	.movie-list-inner {
		width: 48%;
		margin-left: 4%;
	}
	.movie-list-inner:nth-child(2n+1) {
		margin-left: 0;
	}
}
@media screen and (min-width:900px){
	.movie-list-inner {
		width: 31.9999%;
		margin-left: 2%;
	}
	.movie-list-inner:nth-child(2n+1) {
		margin-left: 2%;
	}
	.movie-list-inner:nth-child(3n+1) {
		margin-left: 0;
	}
}
/*----- scroll-hint -----*/
.scroll-hint {
	display: none;
}
.business-card .scroll-hint {
	position: absolute;
	top: 5%;
	left: 50%;
	transform: translate(-50%, 0);
	padding: 10px;
	background: #0c3388;
	color: #fff;
	font-weight: 700;
	line-height: 1.4;
	display: none;
	animation: scroll-hint-animation 2s infinite ease;
	border-radius: 6px;
	opacity: 0.9;
}

@keyframes scroll-hint-animation {
	0% {
		transform: translate(-50%, 0);
	}
	50% {
		transform: translate(-40%, 0);
	}
	100% {
		transform: translate(-50%, 0);
	}
}

.business-card .scroll-hint--show {
	display: block;
}

/*----- faq-box -----*/
.faq-box {
}
.faq-box dt {
	background-color: rgba(0,64,152,0.05);
	padding: 1.5rem 3.5rem;
	position: relative;
	font-weight: bold;
	font-size: 1.15em;
	cursor: pointer;
	margin: 1em 0 0;
	transition: all .4s;
	border-radius: 6px;
}
.faq-box dt.active {
	border-radius: 6px 6px 0 0;
}
.faq-box dd {
	position: relative;
	background-color: #f6fff5;
	padding: 1.5rem 1.5rem 1.5rem 3.5rem;
	display: none;
	border-radius: 0 0 6px 6px;
}
@media (any-hover: hover) {
	.faq-box dt:hover {
		background-color: rgba(0,64,152,0.15);
	}
	.faq-box dt.active:hover {
	background-color: rgba(0,64,152,0.05);
	}
}
.faq-box dt::before,
.faq-box dd::before {
	content: "Q.";
	position: absolute;
	font-size: 1.15rem;
	top: 1.6rem;
	left: 1.2rem;
	color: #0c3388;
	font-weight: bold;
}
.faq-box dd::before {
	content: "A.";
	color: #22a835;
}

.faq-box dt::after {
	content: '＋';
	position: absolute;
	font-size: 1.15em;
	top: 50%;
	right: 1.2rem;
	transform: translateY(-50%);
	color: #0c3388;
}
.faq-box dt.active::after {
	content: 'ー';
}



.business-visa-promise-title {
	text-align: center;
	margin:3em 0 1em;
}
.business-visa-promise-title-text {
	font-size: 1.2em;
}
.business-visa-promise-title-text span {
	position: relative;
	color: #0c3388;
}
.business-visa-promise-title-text span::before {
	content: "";
	position: absolute;
	top: -7px;
	left: 50%;
	width: 6px;
	height: 6px;
	margin-left: -3px;
	border-radius: 50%;
	background-color: #a37d11;
}

@media screen and (max-width:710px){
	.business-visa-promise-title-text {
		display: block;
	}
}

.business-visa-promise {
	margin-bottom: 5em;
	display: flex;
	flex-wrap: wrap;
}
.business-visa-promise-inner {
	border: 3px solid #E0E1FF;
	border-radius: 6px;
	padding: 1.5em 1em;
	margin: 1em auto;
	max-width: 550px;
	width: 100%;
}
.business-visa-promise-head {
	display: flex;
	flex-direction: column;
}
.business-visa-promise-head img {
	width: 100%;
	max-width: 100px;
	margin: 0 auto;
	display: block;
}
.business-visa-promise-head h3 {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	margin: 1em 0;
	line-height: 1.5;
}
.business-visa-promise-head h3 .none {
	display: none;
}
@media screen and (min-width:640px){
	.business-visa-promise-head {
		flex-direction: row;
		justify-content: space-between;
		margin: 0 0 1em;
	}
	.business-visa-promise-head img {
		margin: 0;
	}
	.business-visa-promise-head h3 {
		width: calc(100% - 120px);
		align-items: flex-start;
	}
	.business-visa-promise-head h3 .none {
		display: block;
	}
}
@media screen and (min-width:1164px){
	.business-visa-promise {
		justify-content: space-between;
	}
	.business-visa-promise-inner {
		margin: 1em 0;
	}
}