@charset "utf-8";
/*=================================
1: reset-CSS
2: setting
3: header
4: gnav
5: contents
6: footer
=================================*/


/* 1: reset-CSS
================================== */
/*
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com
Twitter: @rich_clark
*/

html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
	margin:0;
	padding:0;
	border:0;
	outline:0;
	font-size:100%;
	vertical-align:baseline;
	background:transparent;
	font-weight: normal;
}
body {
	line-height:1;
}
article,aside,details,figcaption,figure,
footer,header,hgroup,menu,nav,section,main {
	display:block;
}
li {
	list-style:none;
}
blockquote, q {
	quotes:none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content:'';
	content:none;
}
a {
	margin:0;
	padding:0;
	font-size:100%;
	vertical-align:baseline;
	background:transparent;
}

/* change colours to suit your needs */
ins {
	background-color:#ff9;
	color:#000;
	text-decoration:none;
}

/* change colours to suit your needs */
mark {
	background-color:#ff9;
	color:#000;
	font-style:italic;
	font-weight:bold;
}

del {
	text-decoration: line-through;
}
abbr[title], dfn[title] {
	border-bottom:1px dotted;
	cursor:help;
}
table {
	border-collapse:collapse;
	border-spacing:0;
}

/* change border colour to suit your needs */
hr {
	display:block;
	height:1px;
	border:0;
	border-top:1px solid #cccccc;
	margin:1em 0;
	padding:0;
}
input, select {
	vertical-align:middle;
}

/* 2: setting
================================== */
*, *:before, *:after {
	box-sizing: border-box;
}

/* clearfix*/
.cf:after { content: ""; clear: both; display: block; }
.clear { clear: both;}

html {
	overflow: auto;
	font-size: 62.5%;
	scroll-padding-top:110px;
}
body {
	font-family: 'Hiragino Kaku Gothic Pro', 'ヒラギノ角ゴ Pro W3', 'Yu Gothic', '游ゴシック', '游ゴシック体', YuGothic, Meiryo, メイリオ, Osaka, 'MS PGothic', arial, helvetica, sans-serif;
	font-feature-settings : "palt";
	font-weight: 500;
	color: #262626;
	font-size: 16px;
	font-size: 1.6rem;
	line-height: 1.7;
	-webkit-print-color-adjust: exact;/* baskground_print */
	word-wrap: break-word;
	overflow-wrap: break-word;
	-webkit-font-smoothing: antialiased;/* safari_textBold*/
	-webkit-text-size-adjust: 100%;/* safari_textBold*/
}
@media all and (-ms-high-contrast:none){/*ieは游ゴシック変な空白ができるため指定から外す*/
	body {
		font-family: 'Hiragino Kaku Gothic Pro', Meiryo, 'ヒラギノ角ゴ Pro W3', メイリオ, Osaka, 'MS PGothic', arial, helvetica, sans-serif;}
	}
@media all and (max-width: 768px) {
	body {
		min-width: 100%;
	}
}
img {
	display: block;
	line-height: 0;
}
input[type="submit"],
input[type="button"] {
	border-radius: 0;
	-webkit-box-sizing: content-box;
	-webkit-appearance: button;
	appearance: button;
	border: none;
	box-sizing: border-box;
	cursor: pointer;
}
input[type="submit"]::-webkit-search-decoration,
input[type="button"]::-webkit-search-decoration {
	display: none;
}
input[type="submit"]::focus,
input[type="button"]::focus {
	outline-offset: -2px;
}
a {
	-webkit-transition: all .2s;
	transition: all .2s;
	color: #359ED2;
}
a:hover {
	color: #3aa9ef;
	text-decoration: none;
}
a img {
	-webkit-transition: all .2s;
	transition: all .2s;
}
a img:hover {
	opacity:.7;
}
.blank {
	background: url(../img/cmn/icn_blank.svg) right center no-repeat;
	background-size: 14px;
	padding-right: 23px;
}
.tel,
.tel:hover {
	color: #262626;
	text-decoration: none;
}

/* 3: header
================================== */
#header {
	position: fixed;
	z-index: 999;
	width: 230px;
	height: 100%;
	background: #EEEEEE;
	overflow-y: auto;
	border-right: 1px solid #E6E9EE;
}
@media all and (max-width: 768px) {
	#header {
		position: static;
		width: 100%;
		height: auto;
		background: #EEEEEE;
		overflow-y: visible;
		border-right: none;
	}
}
#header h1 {
	padding: 30px 0;
	background: #FFF;
	text-align: center;
	color: #221817;
	text-decoration: none;
	font-size: 1.1rem;
	font-weight: bold;
}
@media all and (max-width: 768px) {
	#header h1 {
		padding: 10px 16px;
		text-align: left;
		font-size: 1rem;
	}
	.logo a {
		display: block;
	}
	
	#header h1 br {
		display:none;
	}
}
#header h1 img {
	display: inline-block;
	width: 138px;
	height: auto;
	margin-top: 5px;
}
#header .sp,
.sp_none {
	display: none!important;
}
.pc_show {
	display:block!important;
}
@media all and (max-width: 768px) {
	#header .sp {
		display: block!important;
		width: 173px;
		height: auto;
		margin-top: 0;
	}
	#header .pc {
		display: none;
	}
	.pc_show {
		display:none!important;
	}
	.sp_none {
		display: block!important;
	}
}

/* 4: gnav
================================== */
#nav {
	background: #EEEEEE;
	padding-bottom: 80px;
	/* border-top: 4px solid #073190; */
}
@media all and (max-width: 768px) {
	#nav {
		border-top: none;
		padding-bottom:0;
	}
}
.menu_trigger {
	display: none;
}
@media all and (max-width: 768px) {
	.menu_trigger {
		display: block;
		position: absolute;
		top: 15px;
		right: 10px;
		width: 36px;
		height: 36px;
		background: none;
		border: none;
		text-indent: -900em;
		overflow: hidden;
		cursor: pointer;
		outline: none;
		z-index: 9999;
		-webkit-transition: .35s ease-in-out;
		-moz-transition: .35s ease-in-out;
		transition: .35s ease-in-out;
	}
	.menu_trigger img {
		width: 24px;
		height: auto;
		margin: 10px auto 0;
	}
	.menu_trigger span {
		position: absolute;
		left: 0;
		right: 0;
		display: inline-block;
		width: 24px;
		height: 2px;
		margin: 0 auto;
		transition: all .4s;
		background-color: #073190;
	}
	.menu_trigger span:nth-of-type(1) {
		top: 10px;
	}
	.menu_trigger span:nth-of-type(2) {
		top: 24px;
	}
	.menu_trigger span:nth-of-type(3) {
		bottom: 17px;
	}
	.menu_trigger.active {
		background: #073190;
		border-radius: 4px;
	}
	.menu_trigger.active span {
		background: #FFF;
	}
	.menu_trigger.active span:nth-of-type(1) {
		-webkit-transform: translateY(7px) rotate(-45deg);
		transform: translateY(7px) rotate(-45deg);
	}
	.menu_trigger.active span:nth-of-type(2) {
		opacity: 0;
	}
	.menu_trigger.active span:nth-of-type(3) {
		-webkit-transform: translateY(0px) rotate(45deg);
		transform: translateY(0px) rotate(45deg);
	}
	.menuwrapper {
		position: fixed;
		top: 0;
		right: -75%;
		width: 75%;
		height: 100%;
		margin: 0;
		padding: 75px 0 0;
		background: #EEE;
		-webkit-transition: .35s ease-in-out;
		-moz-transition: .35s ease-in-out;
		transition: .35s ease-in-out;
		z-index: 777;
		overflow-y: scroll;
	}
	.menuwrapper.menu_active {
		right: 0;
	}
	.layer {
		display: none;
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background-color: #000;
		-ms-filter: "alpha(opacity=50)";/* ie 8 */
		opacity: 0.6;
		z-index: 200;
	}
	.fixbody {
		overflow: hidden;
		width: 100%;
		height: 100%;
	}
}
.menu {
	padding: 25px 0 5px 15px;
}
@media all and (max-width: 768px) {
	.menu {
		padding: 10px 26px 0;
	}
}
.menu li {
	margin-bottom: 20px;
	padding-left: 35px;
	font-weight:bold;
}
.menu li a {
	color: #444;
	font-weight: bold;
	text-decoration: none;
}
@media all and (max-width: 768px) {
	.menu li a {
		display: block;
	}
}
.menu li a span {
	display: block;
	font-size: 1.4rem;
	font-weight: bold;
	color: #444;
}
.menu li a:hover,
.sub_menu li a:hover {
	color: #3aa9ef;
}
.menu .nav01 {
	background: url(../../../../../img/icn_nav01.svg) no-repeat left center;
	margin-bottom:0;
}
.menu .nav02 {
	background: url(../../../../../img/icn_nav02.svg) no-repeat left center;
	margin-bottom:0;
}
.menu .nav03 {
	background: url(../img/cmn/icn_nav03.svg) no-repeat left center;
	margin-bottom:0;
}
.menu .nav04 {
	background: url(../img/cmn/icn_nav04.svg) no-repeat left center;
}
.menu .nav05 {
	background: url(../img/cmn/icn_nav05.svg) no-repeat left center;
}
.menu .nav06 {
	background: url(../../../../../img/icn_nav06.svg) no-repeat left center;
}
.menu .nav07 {
	background: url(../../../../../img/icn_nav07.svg) no-repeat left center;
}
.menu .nav08 {
	background: url(../../../../../img/cmn/icn_nav06.svg) no-repeat left center;
}
.menu .nav01 a,
.menu .nav02 a {
	color: #073190;
}
.sub_menu {
	margin: 0 0 20px 15px;
}
@media all and (max-width: 768px) {
	.sub_menu {
		margin: 0 26px 20px;
	}
}
.btn_shiryou {
	margin: 0 0 20px 15px;
}
@media all and (max-width: 768px) {
	.btn_shiryou {
		margin: 0 26px 40px;
	}
}
.sub_menu li a,
.btn_shiryou a {
	padding-left: 20px;
	color: #444;
	text-decoration: none;
	font-weight: bold;
	font-size: 1.4rem;
	background: url(../img/cmn/icn_arw.svg) no-repeat left center;
	background-size: 12px;
}
.btn_shiryou a {
	display: block;
	max-width: 190px;
	width: 100%;
	padding: 10px;
	background : url(../img/cmn/icn_arwW.svg),-moz-radial-gradient(269.68% 63.89%, circle farthest-side, rgba(255, 153, 0, 1) 0%, rgba(255, 130, 0, 1) 100%);
	background : url(../img/cmn/icn_arwW.svg),-webkit-radial-gradient(269.68% 63.89%, circle farthest-side, rgba(255, 153, 0, 1) 0%, rgba(255, 130, 0, 1) 100%);
	background : url(../img/cmn/icn_arwW.svg),-webkit-gradient(radial,269.68% 63.89% ,0 , 269.68% 63.89%, 174.69 ,color-stop(0,rgba(255, 153, 0, 1) ),color-stop(1,rgba(255, 130, 0, 1) ));
	background : url(../img/cmn/icn_arwW.svg),-o-radial-gradient(269.68% 63.89%, circle farthest-side, rgba(255, 153, 0, 1) 0%, rgba(255, 130, 0, 1) 100%);
	background : url(../img/cmn/icn_arwW.svg),-ms-radial-gradient(269.68% 63.89%, circle farthest-side, rgba(255, 153, 0, 1) 0%, rgba(255, 130, 0, 1) 100%);
	background : url(../img/cmn/icn_arwW.svg),radial-gradient(269.68% 63.89%, circle farthest-side, rgba(255, 153, 0, 1) 0%, rgba(255, 130, 0, 1) 100%);
	border-radius : 4px;
	filter: progid:DXImageTransform.Microsoft.Alpha(Stlye=2);
	background-repeat: no-repeat;
	background-position: 5%;
	text-align: center;
	text-shadow: 0px 1px 0px rgba(0, 0, 0, 0.2);
	color: #FFF;
}
@media all and (max-width: 768px) {
	.btn_shiryou a {
		max-width: 100%;
	}
}

.inr_sec .btn_shiryou a {
	max-width:300px;
	margin:1em auto;
	width:100%;
}

.inr_sec li .btn_shiryou a {
	padding-left:40px;
	min-width:300px;
}
@media all and (max-width: 768px) {
	.inr_sec li .btn_shiryou a {
		min-width: 100%;
	}
}

.btn_shiryou a:hover {
	opacity: 0.7;
}


/* 5: contents
================================== */
#content,
#footer {
	width: calc(100% - 230px);
	min-width: 900px;
	margin-left: 230px;
}
@media all and (max-width: 768px) {
	#content,
	#footer {
		width: 100%;
		min-width: 100%;
		margin-left: 0;
	}
}
.inr {
	max-width: 1000px;
	margin: 0 auto;
	padding: 40px 20px 60px;
}
.inr_sec {
	max-width: 1000px;
	margin: 0 auto;
	padding: 0 40px 60px;
}
@media all and (max-width: 768px) {
	.inr_sec {
		padding: 0 20px 60px;
	}
}

.inr_sec p {
	margin:1em;
}

.fB {font-size:1.8rem;}
.mB1em {margin-bottom:1em;}

.bg_gray {
	background: #EEEEEE;
}
.bg_yellow {
	background: #ffffcc;
}

.bg_blue {
	background: #dce5fb;
}
.more {
	text-align: center;
}
.more a {
	display: inline-block;
	padding: 10px 80px;
	background : url(../img/cmn/icn_arw.svg), -moz-linear-gradient(665.59% 38.21% -90deg,rgba(255, 255, 255, 1) 0%,rgba(221, 221, 221, 1) 100%);
	background : url(../img/cmn/icn_arw.svg), -webkit-linear-gradient(-90deg, rgba(255, 255, 255, 1) 0%, rgba(221, 221, 221, 1) 100%);
	background : url(../img/cmn/icn_arw.svg), -webkit-gradient(linear,665.59% 38.21% ,665.59% 145.21% ,color-stop(0,rgba(255, 255, 255, 1) ),color-stop(1,rgba(221, 221, 221, 1) ));
	background : url(../img/cmn/icn_arw.svg), -o-linear-gradient(-90deg, rgba(255, 255, 255, 1) 0%, rgba(221, 221, 221, 1) 100%);
	background : url(../img/cmn/icn_arw.svg), -ms-linear-gradient(-90deg, rgba(255, 255, 255, 1) 0%, rgba(221, 221, 221, 1) 100%);
	background : url(../img/cmn/icn_arw.svg), linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(221, 221, 221, 1) 100%);
	background-repeat: no-repeat;
	background-position: 5%;
	border : 1px solid #DDD;
	border-radius : 4px;
	font-size: 1.5rem;
	font-weight: bold;
	color: #000;
	text-decoration: none;
	box-shadow: 0px 2px 0px #B2B2B2;
}
@media all and (max-width: 768px) {
	.more a {
		width: 100%;
		max-width: 320px;
		padding: 10px 30px;
		text-align: center
	}
}
.more a:hover {
	margin: 2px 0 -2px;
	opacity: 0.7;
	box-shadow: none;
}
.ttlDesign1 {
	margin-bottom: 40px;
	text-align: center;
}
@media all and (max-width: 768px) {
	.ttlDesign1 {
		font-size: 1.3rem;
	}
}
.ttlDesign1 span {
	position: relative;
	display: block;
	margin-bottom: 5px;
	font-size: 3.8rem;
	font-family: Georgia, "游明朝体", "YuMincho", "游明朝", "Yu Mincho", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN W3", HiraMinProN-W3, "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
	line-height: 1.4;
}


.home .ttlDesign1 span {
	border-bottom:solid 1px #000;
	display:inline;
}

.card_twin .ttlDesign1 span,
.seikyu .ttlDesign1 span {
	font-size:3.2rem;
	font-weight:bold;
}

@media all and (max-width: 768px) {
	.ttlDesign1 span {
		font-size: 3.2rem;
	}
}
not(.home) .ttlDesign1 span:after {
	content: '';
	position: absolute;
	bottom: 0;
	display: inline-block;
	width: 200px;
	height: 1px;
	left: 50%;
	-moz-transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translateX(-50%);
	background-color: #00192D;
}
@media all and (max-width: 768px) {
	.ttlDesign1 span:after {
		width: 150px;
	}
}
.ttlDesign2 {
	margin-bottom: 30px;
	font-size: 2.6rem;
	font-weight: bold;
	color: #000;
	border-bottom: 4px solid #073190;
}
.ttlDesign2 span {
	display:block;
	font-size: 2.1rem;
	background:#ffffcc;
	padding:0.2em;
	margin-bottom:0.5em;
}

@media all and (max-width: 768px) {
	.ttlDesign2 {
		font-size: 2rem;
	}
}

.ttlDesign3 {
	position:relative;
	margin-bottom: 10px;
	font-size: 2.0rem;
	font-weight: bold;
	color: #000;
	border-bottom: 2px dotted #073190;
	z-index:-1;
}
	.ttlDesign3::before {
		content:"";
		display:inline-block;
		width:25px;
		height:25px;
		background:url(../img/cmn/mark.svg);
		background-size: contain;
		vertical-align: middle;
		margin-right:5px;
	}

.kameiten .ttlDesign3::before {
	background:none;
	width:0;
}

.kameiten .flexbox_sbwap.three li {
	width:calc(100%/3 - 10px);
	margin:1em 5px;
}

.ttlDesign4 {
    border: solid 1px #80bcfa;
    padding: 0.2em;
    margin-bottom: 0.5em;
    text-align: left;
}

.tableDesign1,
.tableDesign5 {
	width: 100%;
	text-align: left;
}
.tableDesign1 th,
.tableDesign1 td {
	padding: 12px 20px;
	border: 1px solid #cccccc;
}
.tableDesign1 th {
	width: 15%;
	background: #d6e0f8;
	vertical-align: middle;
}

.tableDesign5 {
	border:0;
	border-top:solid 1px #ccc;
}

.tableDesign5 th,
.tableDesign5 td {
	border-bottom: 1px solid #cccccc;
	border-top:0;
	border-right:0;
	border-left:0;
	text-align:left;
	background:none;
	padding:20px 0;
}
.tableDesign5 th {
	font-weight:bold;
}
.ttlDesign6 {
    background:#0e3481;
    padding: 0.2em;
    margin-bottom: 0.5em;
    text-align: center;
	color:white;
	font-weight:bold;
}

.kameiten .ttlDesign6 {
	font-size:1.8rem;
}

@media all and (max-width: 768px) {
	.tableDesign1 {
		border-bottom: 1px solid #cccccc;
	}
	.tableDesign1 th,
	.tableDesign1 td {
		display: block;
		width: 100%;
		padding: 8px 16px;
		border-bottom: none;
	}
	.tableDesign5 th,
	.tableDesign5 td {
		display: block;
		width: 100%;
	}
	.tableDesign5 th {
		border-bottom: none;
	}
}
.list_dot {
	margin-bottom: 20px;
}
.list_dot > li {
	position: relative;
	width: 100%;
	margin-bottom: 2px;
	padding-left: 20px;
}
.list_dot > li:before {
	position: absolute;
	top: 10px;
	left: 7px;
	content: "";
	width: 5px;
	height: 5px;
	border-radius: 50%;
	background: #A0A5B4;
}
.boxDesign1 {
	margin-bottom: 40px;
	padding: 20px 30px;
	background: #eeeeee;
	border-radius: 4px;
}
.inr_sec > .boxDesign1:last-child {
	margin-bottom: 0;
}
.ttl_boxDesign1 {
	margin-bottom: 20px;
	padding: 10px;
	background: #FFF;
	font-size: 1.8rem;
	font-weight: bold;
}
@media all and (max-width: 768px) {
	.ttl_boxDesign1 {
		font-size: 1.6rem;
	}
}
.dl_float dt {
	float: left;
	margin-bottom: 5px;
}
@media all and (max-width: 768px) {
	.dl_float dt {
		float: none;
		margin-bottom: 0;
		font-weight: bold;
	}
}
.dl_float dd {
	margin: 0 0 5px 6em;
}
@media all and (max-width: 768px) {
	.dl_float dd {
		margin: 0 0 8px 0;
	}
}

/*----------繝医ャ繝励�繝ｼ繧ｸ---------- */
.main_img img {
	position: relative;
	width: 100%;
}
@media all and (max-width: 768px) {
	.main_bg {
		height: 170px;
		background: url(../img/top/hd_ttl.png), url(../img/top/mainimg_sp.jpg);
		background-repeat:no-repeat;
		background-size: contain, cover;
		background-position: left, right;
	}
	.main_bg img {
		display: none;
	}
}
.main_img .news {
	position: absolute;
	top: 30px;
	right: 30px;
	margin-left: 60%;
	padding: 20px 30px;
	background: #FFF;
	box-shadow: 0px 2px 0px rgba(0,0,0,0.2);
	border-radius : 4px;
	-webkit-transition: all .2s;
	transition: all .2s;
}
@media all and (max-width: 768px) {
	.main_img .news {
		position: static;
		margin-left: 0;
	}
	.news_bg {
		padding: 20px;
		background: #EEE;
	}
}
.main_img .news:hover {
	opacity: 0.9;
}
.main_img .news img {
	width: 100%;
	max-width: 390px;
	height: auto;
	margin: 0 auto;
}
.info_box {
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: flex;
	-webkit-align-items: center; /* Safari */
	align-items: center;
	max-width: 890px;
	margin: 0 auto 20px;
}
@media all and (max-width: 768px) {
	.info_box {
		display: block;
	}
}
.info_box h2 {
	position: relative;
	margin-right: 40px;
	text-align: center;
}
@media all and (max-width: 768px) {
	.info_box h2 {
		margin-right: 0;
		margin-bottom: 30px;
		font-size: 1.3rem;
	}
}
.info_box h2:before {
	content: "";
	display: block;
	position: absolute;
	bottom: -20px;
	left: 45%;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 10px 10px 0 10px;
	border-color: #FECD02 transparent transparent transparent;
}
@media all and (max-width: 768px) {
	.info_box h2:before {
		bottom: -10px;
		left: 48%;
		border-width: 7px 7px 0 7px;
	}
}
.info_box span {
	display: block;
	line-height: 1.2;
	font-size: 3.4rem;
	font-family: Georgia, "貂ｸ譏取悃菴�", "YuMincho", "貂ｸ譏取悃", "Yu Mincho", "繝偵Λ繧ｮ繝取�譛� ProN W3", "Hiragino Mincho ProN W3", HiraMinProN-W3, "繝偵Λ繧ｮ繝取�譛� ProN", "Hiragino Mincho ProN", "繝偵Λ繧ｮ繝取�譛� Pro", "Hiragino Mincho Pro", "HGS譏取悃E", "�ｭ�ｳ �ｰ譏取悃", "MS PMincho", serif;
}
@media all and (max-width: 768px) {
	.info_box span {
		font-size: 2.8rem;
	}
}
.info_list li {
	margin-bottom: 5px;
	padding-left: 20px;
	background: url(../img/cmn/icn_check.svg) no-repeat left 0.5em;
}
.imgGift img {
	max-width: 100%;
}
.parallelBox {
	display: -webkit-flex;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	align-items: top;
	padding: 40px 20px 60px;
}
@media all and (max-width: 768px) {
	.parallelBox {
		display: block;
	}
}
#merchant {
	width: 40%;
	min-width: 360px;
	margin: 0 auto;
	padding-bottom:2em;
}
@media all and (max-width: 768px) {
	#merchant {
		width: 100%;
		min-width: 360px;
		margin-right: 0;
		margin-bottom: 40px;
	}
}
.kamei_bnr {
	margin: 0 auto 40px;
	padding: 0 20px;
}
.kamei_bnr img {
	max-width: 430px;
	margin: 0 auto;
}
.kamei_bnr img {
	width: 100%;
	text-align: center;
}
.card {
	width: calc(100% - 40% - 40px);
}

.card_twin {
	width:calc(100%/2 - 20px);
	margin:0 10px;
}

@media all and (max-width: 768px) {
	.card_twin {
		width:100%;
		margin:0 0 1em 0;
	}
}

.card_twin:first-child {
	border-right: dashed 1px #fff;
	padding:0 10px 0 0;
}

.card_twin:nth-child {
	padding:0 0 0 10px;
}

.card_twin:nth-child(2) .card_list {
}

.card_twin td:first-child {
	width:45%;
}

table.card_list,
table.card_list td {
	border:0;
	text-align:center;
}

@media all and (max-width: 768px) {
	.card_twin:nth-child(2) .card_list {
		margin-top:0;
	}
	
	.card_twin:first-child {
		border:0;
	}
	
	.card_twin {
		padding:0!important;
	}
}


.card_list {
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: center; /* Safari */
	justify-content: center;
}
.card_list li {
	margin: 0 10px;
	text-align: center;
	width:calc(100%/2);
}
.card_list img {
	width: 100%;
	filter: drop-shadow(1px 3px 4px #CCC);
	-webkit-filter: drop-shadow(1px 3px 4px #CCC);
	max-width:210px;
}
@media all and (max-width: 768px) {
	.card_list li {
		width: calc( calc(100% - 30px) / 2);
		max-width: 250px;
		margin: 0;
	}
	.card_list li:first-child {
		margin-right: 30px;
	}
	.card_list li img {
		width: 100%;
	}
	.card_list .more a {
		padding-left: 20px;
		max-width:100%;
		background-position:5%;
	}
}
.card_list h3 {
	margin: 10px 0;
	font-size: 2.1rem;
	font-weight: bold;
}
@media all and (max-width: 768px) {
	.card_list h3 {
		font-size: 1.8rem;
	}
}
.card_list p {
	/*margin-bottom: 20px;*/
}
@media all and (max-width: 768px) {
	.card_list p {
		text-align: left;
	}
	.card_list p.more {
		text-align: center;
	}
	.card_list p br {
		display: none;
	}
}
.card_list .more a {
	width: 100%;
	max-width: 240px;
	padding: 10px 16px;
}

.card_order {width:50%; background:#fccb00; text-align:center;}
.iten {width:50%; background:#063190;}
.iten a {display:block; background:#063190; color:white; font-weight:bold; font-size:2.0rem; text-align:center; line-height:90px;}
@media all and (max-width: 768px) {
.card_order,.iten {width:100%;}
}

.card_detail {
	border:solid 1px #ccc;
	padding:0.5em;
	font-size:1.6rem;
	margin:0 1em;
}

.flexbox_wap {/* 謚倥ｊ霑斐＠縺ｮ縺ｿ */
	display: -webkit-flex;
	display: flex;
	-webkit-flex-wrap: wrap; /* Safari */
	flex-wrap: wrap;
}
.flexbox_sbwap {/* 謚倥ｊ霑斐＠縺ｮ縺ｿ */
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: space-between; /* Safari */
	justify-content: space-between;
	-webkit-flex-wrap: wrap; /* Safari */
	flex-wrap: wrap;
}

.support li {width:48%;}
.support .flexbox_sbwap {
	align-items:center;
}

.flexbox_cwap {
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: center; /* Safari */
	justify-content: center;
	-webkit-flex-wrap: wrap; /* Safari */
	flex-wrap: wrap;
}

.service_list {
	display: -webkit-flex;
	display: flex;
	-webkit-flex-wrap: wrap; /* Safari */
	flex-wrap: wrap;
	justify-content: center;
	-webkit-flex-wrap: wrap; /* Safari */
}
@media all and (max-width: 768px) {
	#service {
		padding-bottom: 40px;
	}
	.service_list {
		max-width: 540px;
		margin: 0 auto;
	}
}
.service_list li {
	width: calc(100%/3 - 30px);
	margin:1em 5px 30px 15px;
}
@media all and (max-width: 768px) {
	.service_list li {
		display: -webkit-flex;
		display: -moz-flex;
		display: -ms-flex;
		display: flex;
		-webkit-align-items: center; /* Safari */
		align-items: center;
		width: 100%;
		margin-bottom: 20px;
		padding: 20px 10px;
		background: #EDF2F9;
	}
	.service_list li:last-child {
		margin-bottom: 0;
	}
	.service_list .service_img {
		margin-right: 15px;
	}
	.service_list .service_txt {
		width: calc(100% - 115px);
	}
}
.service_list h3 {
	margin: 10px 0;
	text-align: center;
}
@media all and (max-width: 768px) {
	.service_list h3 {
		margin: 0 0 5px;
		text-align: left;
	}
}
.service_list h3 a {
	font-size: 1.8rem;
	font-weight: bold;
	text-decoration: none;
}
@media all and (max-width: 768px) {
	.service_list h3 a {
		font-size: 1.5rem;
	}
}
.service_list h3 a:hover {
	text-decoration: underline;
}
.service_list img {
	width: 100%;
	max-width: 266px;
	margin: 0 auto;
	filter: drop-shadow(1px 3px 4px #E6E9EE);
	-webkit-filter: drop-shadow(1px 3px 4px #E6E9EE);
}
@media all and (max-width: 768px) {
	.service_list img {
		max-width: 100px;
	}
}
.kashikin_bnr a {
	display: block;
	width: 530px;
	margin: 0 auto 80px;
	padding: 30px 50px;
	background : -moz-linear-gradient(665.59% 38.21% -90deg,rgba(255, 255, 255, 1) 0%,rgba(221, 221, 221, 1) 100%);
	background : -webkit-linear-gradient(-90deg, rgba(255, 255, 255, 1) 0%, rgba(221, 221, 221, 1) 100%);
	background : -webkit-gradient(linear,665.59% 38.21% ,665.59% 145.21% ,color-stop(0,rgba(255, 255, 255, 1) ),color-stop(1,rgba(221, 221, 221, 1) ));
	background : -o-linear-gradient(-90deg, rgba(255, 255, 255, 1) 0%, rgba(221, 221, 221, 1) 100%);
	background : -ms-linear-gradient(-90deg, rgba(255, 255, 255, 1) 0%, rgba(221, 221, 221, 1) 100%);
	background : linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(221, 221, 221, 1) 100%);
	background-repeat: no-repeat;
	background-position: 10%;
	border : 1px solid #DDD;
	border-radius : 4px;
	box-shadow: 0px 2px 0px #B2B2B2;
}
@media all and (max-width: 768px) {
	.kashikin_bnr {
		padding: 0 20px;
	}
	.kashikin_bnr a {
		width: 100%;
		padding: 30px;
	}
	.kashikin_bnr img {
		width: 100%;
	}
}
.kashikin_bnr a:hover {
	opacity: 0.7;
}

/*----------荳句ｱ､繝壹�繧ｸ蜈ｱ騾�---------- */
.fR {
	float:right;
	overflow:hidden;
	/*width:400px;*/
}

.hojin .fR, .kameiten .fR {width:400px;}
	.fR img {
		max-width:100%;
	}

.kameiten .icon1,
.kameiten .icon2,
.kameiten .icon3 {
	position:relative;
}

	.kameiten .icon1::before {
		content:"";
		display: inline-block;
		background:url(/img/icon1.png) no-repeat;
		width:30px;
		height:30px;
		background-size: contain;
		vertical-align: middle;
		margin-right:0.5em;
	}

	.kameiten .icon2::before {
		content:"";
		display: inline-block;
		background:url(/img/icon2.png) no-repeat;
		width:30px;
		height:30px;
		background-size: contain;
		vertical-align: middle;
		margin-right:0.5em;
	}

	.kameiten .icon3::before {
		content:"";
		display: inline-block;
		background:url(/img/icon3.png) no-repeat;
		width:30px;
		height:30px;
		background-size: contain;
		vertical-align: middle;
		margin-right:0.5em;
	}

.shikaku {
	margin-left:2em;
	text-indent:-1em;
}

.shikaku li::before {
    content: "笳�";
}

@media all and (max-width: 768px) {
	.hojin .fR,.kameiten .fR {
		width:100%;
	}
	.fR {
		float:none;
		margin:0 auto;
		width:auto;
		text-align:center;
	}
	
	.fR img {
		margin:0 auto;
		max-width:100%;
	}
	
}

.disc li,
ol.numer ul.disc li {
	list-style:disc!important;
	margin-left:1em;
}

.m1em {margin:1em;}
.mT1em {margin-top:1em;}
.mL1em {margin-left:1em;}
.mB1em {margin-bottom:1em;}
.fS {font-size:1.3rem;}
.tR {text-align:right;}
.tC {text-align:center;}
.waku {border:solid 1px #666;}
.fB {font-weight:bold;}
.red {color:red;}
.fL {float:left;}
.box {background: #d9ecff; padding:0.5em;}

.flexbox_sb {/* 謚倥ｊ霑斐＠縺ｪ縺励�豌ｴ蟷ｳ譁ｹ蜷醍ｫｯ謠�∴ */
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: flex;
	-webkit-justify-content: space-between; /* Safari */
	justify-content: space-between;
}
.flexbox_wap {/* 謚倥ｊ霑斐＠縺ｮ縺ｿ */
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: flex;
	-webkit-flex-wrap: wrap; /* Safari */
	flex-wrap: wrap;
}

.indent li,
div.indent {margin-left:1em; text-indent:-1em;}
.maru {margin-left:2em;}
.maru li {position:relative; marign-left:2em; text-indent:-1em;}
.maru li::before {content:"笳�";}
ol.number li {margin-left:1em; list-style:demical;}
.indent .disc li {text-indent:0;}
.kameiten dt {
    float: left;
}
dd {
    margin-left: 1em;
    margin-bottom: 1em;
}
	.sitemap dt {
		margin-top:1em;
		position:relative;
	}
	.sitemap dd {
		margin-bottom:0;
		position:relative;
	}
	
	
	.sitemap dt::before {
		content:"";
		display:inline-block;
		width:15px;
		height:15px;
		background:url(../img/cmn/mark.svg);
		background-size: contain;
		vertical-align: middle;
		margin-right:5px;
	}
	
	.sitemap dd::before {
		content:"繝ｻ";
	}

.main_sec {
	padding: 60px 40px;
	background: url(../img/cmn/mainimg_sec.jpg) no-repeat center;
	background-size: cover;
}
@media all and (max-width: 768px) {
	.main_sec {
		padding: 30px 20px;
	}
}
.main_sec h2 {
	font-size: 3.2rem;
	font-weight: bold;
	color: #FFF;
	text-shadow: 1px 3px 3px rgba(0, 0, 0, 0.3);
}
@media all and (max-width: 768px) {
	.main_sec h2 {
		font-size: 2.4rem;
	}
}
.pankuzu {
	width: 100%;
	margin-bottom: 40px;
	font-size: 1.3rem;
	background: #fafafa;
	border-top: 1px solid #e6e9ee;
	border-bottom: 1px solid #e6e9ee;
}
@media all and (max-width: 768px) {
	.pankuzu {
		margin-bottom: 30px;
	}
}
.pankuzu ul {
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: flex;
	-webkit-flex-wrap: wrap; /* Safari */
	flex-wrap: wrap;
	/*max-width: 1000px;*/
	margin: 0 auto;
	padding: 5px 40px;
}
@media all and (max-width: 768px) {
	.pankuzu ul {
		padding: 5px 20px;
	}
}
.pankuzu li {
	padding:0.2em 0;
	background:url(../img/cmn/icn_arw_gray.svg) no-repeat center right;
	background-size: 5px;
	padding-right: 15px;
	margin-right: 10px;
}
.pankuzu li:last-child {
	background: none;
}


/*----------莨夂､ｾ譯亥�---------- */
.access_img {
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: flex;
}
@media all and (max-width: 768px) {
	.access_img {
		display: block;
	}
}
.map {
	margin-right: 40px;
	width:600px;
}
@media all and (max-width: 768px) {
	.map {
		margin-right: 0;
		margin-bottom: 30px;
		text-align: center;
		width:auto;
	}
	.map img {
		width: 100%;
	}
}
.map_img {
	display: inline-block;
	padding: 10px;
	border: 1px solid #e6e9ee;
}
.map_img img {
	max-width: 340px;
}
@media all and (max-width: 768px) {
	.map_img img {
		max-width: 500px;
		margin: 0 auto;
	}
	.img_gaikan img {
		max-width: 240px;
		margin: 0 auto;
	}
}
.map_blank {
	text-align: right;
}
@media all and (max-width: 768px) {
	.map_blank {
		display: none;
	}
}


table {
	border:solid 1px #666;
}

th,td {
	border:solid 1px #666;
	padding:0.5em;
}

th {
	text-align:center;
	background:#eee;
}


@media all and (max-width: 768px) {
	.scroll {
		overflow: auto;
	}
	
	.scroll table {
		width:600px;
	}
}

/*縺雁撫縺�粋繧上○*/
.form_box td select, .form_box td input[type="text"], .form_box td input[type="email"], .form_box td input[type="tel"], .form_box td textarea {

    width: 100%;
    max-width: 450px;
    padding: 10px;
    border: 1px solid #becad6;
    font-size: 1.6rem;
    transition: box-shadow 250ms cubic-bezier(.27,.01,.38,1.06),border 250ms cubic-bezier(.27,.01,.38,1.06);
    border-radius: 3px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.select_box {
	overflow:hidden;
    background: url(../img/cmn/icn_arw_btm.svg) 95% center no-repeat white;
    background-size: auto;
    background-size: 15px;
    max-width: 450px;
    z-index:99;
}

	.select_box select {
		background: transparent;
	}

input[type="submit"] {
	display: block;
	width: 12em;
	margin:20px auto;
	padding: 15px 20px 15px 10px;
	background : url(../img/cmn/icn_arwW.svg) no-repeat 90% center #073190;
	background-size: 8px;
	border :1px solid #FFF;
	border-color : #FFFFFF;
	border-radius : 6px / 10px;
	box-shadow : 0px 2px 2px rgba(0, 0, 0, 0.4);
	color: #FFF;
	font-weight: bold;
	font-size: 1.6rem;
	text-decoration: none;
	text-align: center;
	-webkit-transition: all .2s;
	transition: all .2s;
}
.entryform input[type="submit"]:hover {
	background : url(../img/cmn/icn_arwW.svg) no-repeat 90% center #ffc15b;
	background-size: 8px;
}


input#zip1, input#zip2, input#zip11, input#zip22 {
	width: 5em;
  }

/* 6: footer
================================== */
/* go top繝懊ち繝ｳ */
#page-top {
	position: fixed;
	bottom: 30px;
	right: 20px;
	font-weight: bold;
	font-size: 80%;
	z-index: 5;
	text-align: center;
}
@media all and (max-width: 768px) {
	#page-top {
		bottom: 20px;
		right: 10px;
	}
}
#page-top a {
	position: relative;
	display: block;
	width: 50px;
	height: 50px;
	background: rgba(12, 46, 147, 0.8);
	color: #fff;
	opacity: 0.7;
}
@media all and (max-width: 768px) {
	#page-top a {
		width: 40px;
		height: 40px;
	}
}
#page-top a:hover {
	opacity: 0.7;
}
#page-top a:active {
	opacity: 1;
}
#page-top a:after {
	position: absolute;
	right: 19px;
	top: 43%;
	display: block;
	content: "";
	width: 12px;
	height: 12px;
	border-top: 3px solid #FFF;
	border-right: 3px solid #FFF;
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
}
@media all and (max-width: 768px) {
	#page-top a:after {
		right: 14px;
		top: 40%;
	}
}
#footer,
.ft_logo {
	text-align: center;
	clear:both;
}
.ft_logo img {
	width: 210px;
	height: auto;
}
.footer_nav {
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: flex;
	-webkit-justify-content: center; /* Safari */
	justify-content: center;
	flex-wrap: wrap;
}

.footer_c {
	background: #EEE;
	padding: 12px 0;
	margin-bottom: 20px;
}

@media all and (max-width: 768px) {
	.footer_nav {
		-webkit-flex-wrap: wrap; /* Safari */
		flex-wrap: wrap;
		font-size: 1.3rem;
	}
}

.footer_nav li {
	width:calc(100%/2);
	border-right:solid 1px #dfdddd;
	margin-bottom:5px;
}

.footer_nav.five li {
	width:calc(100%/5);
}

	.footer_nav li a {
		display:block;
		padding:0.5em;
	}

	.footer_nav:not(.five) li:nth-child(4n) {
		border:0;
	}

.footer_nav li:before {
}
.footer_nav li:first-child:before {
	content: none;
}
@media all and (max-width: 768px) {
	.footer_nav li,
	.footer_nav.five li {
		width: 100%;
		border:0;
	}
}
.ft_link a {
	display: inline-block;
	margin-bottom: 8px;
	font-size: 1.3rem;
	color: #262626;
	text-decoration: none;
}
.ft_link a:hover {
	color: #3aa9ef;
	text-decoration: underline;
}
.ft_logo img {
	display: inline-block;
	margin-bottom: 20px;
}
.copy {
	margin-bottom: 30px;
	font-size: 1rem;
	color: #686868;
}

.indent_second{
	margin-left: 1em;
}

div.indent2 {
    margin-left: 2em;
    text-indent: -2em;
}


ul.disc2 {}

ul.disc2 li{
	list-style-type: none;
	padding-left: 1em;
}

ul.disc2.np li{
	list-style-type: none;
	padding-left: 0em;
}


ul.disc2 li:before{
	content: "繝ｻ";
}

div.indent1-6 {
    margin-left: 1.6em;
    text-indent: -1.6em;
}

.mL2{
	margin-left: 2em;
}

.mL1s{
	margin-left: 1em;
}

.day {
	margin-right:1em;
	font-weight:bold;
	width:9.5em;
}

.naiyo {
	width:calc(100% - 11em);
}
@media all and (max-width: 768px) {
		.day,.naiyo {
			width:100%;
		}
		.tab_content_description li {
			margin-bottom:0.5em;
		}
}

.seikyu {
	width:50%;
	text-align:center;
}

	.seikyu img {
		margin:1em auto;
		max-width:100%;
		height:auto;
	}
@media all and (max-width: 768px) {
	.seikyu {
		width:100%;
		padding-top:0;
		padding-bottom:20px;
	}
}

.seikyu .more {
	margin-top:60px;
}
@media all and (max-width: 768px) {
	.seikyu .more {
		margin-top:0;
	}
}


.heads-up_bnr a{
	display: block;
	width: 95%;
	margin: 0 auto;
	padding: 30px 50px;
	background : -moz-linear-gradient(665.59% 38.21% -90deg,rgba(255, 255, 255, 1) 0%,rgba(221, 221, 221, 1) 100%);
	background : -webkit-linear-gradient(-90deg, rgba(255, 255, 255, 1) 0%, rgba(221, 221, 221, 1) 100%);
	background : -webkit-gradient(linear,665.59% 38.21% ,665.59% 145.21% ,color-stop(0,rgba(255, 255, 255, 1) ),color-stop(1,rgba(221, 221, 221, 1) ));
	background : -o-linear-gradient(-90deg, rgba(255, 255, 255, 1) 0%, rgba(221, 221, 221, 1) 100%);
	background : -ms-linear-gradient(-90deg, rgba(255, 255, 255, 1) 0%, rgba(221, 221, 221, 1) 100%);
	background : linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(240, 207, 207, 1) 100%);
	background-repeat: no-repeat;
	background-position: 10%;
	border : 1px solid #DDD;
	border-radius : 4px;
	box-shadow: 0px 2px 0px #B2B2B2;
}
@media all and (max-width: 768px) {
	.heads-up_bnr {
		padding: 0 20px;
	}
	.heads-up_bnr a {
		width: 100%;
		padding: 30px;
	}
	.heads-up_bnr img {
		width: 100%;
	}
}
.heads-up_bnr a:hover {
	opacity: 0.7;
}

.header_logo{
	display: none;
}

@media all and (min-width: 768px) {

	.header_logo{
		display: flex;
		justify-content: space-between;
		padding: 5px 20px;
		border-bottom: 4px solid #073190;
		height: 75px;
		position: fixed;
		background: #fff;
		z-index: 99;
		width: 100%;
		align-items: flex-start;
	}
	.main_logo{
		display:flex;align-items :baseline;
	}
	header#header{
		margin-top: 75px;
	}
	#content{padding-top: 75px;}
	
	.logo {width:220px; padding-top:5px;}
	
	.logo img {width:100%;}


	
}

@media (max-width: 768px) {
	#header {
	  background: #fff;

	}
	#header .sp {
		width: 220px;
	  }
  }


  .flexbox_wap.houjin li {width:50%;}
  .flexbox_wap li img {max-width:100%; height:auto; margin:0 auto;}
  
  #info2 .flexbox_wap li {width:calc(100%/3 - 10px); text-align:center; margin: 0 5px 10px 5px; font-size:85%;}
  #info2 .flexbox_wap li img {width:100%; height:auto;}
  .heads-up_bnr div {width:calc(100%/2 - 10px);}
  .heads-up_bnr a {padding:20px 10px;}
  .heads-up_bnr a img,.cre_banner li img {max-width:100%; height:auto; margin:0 auto;}
  .cre_banner .flexbox_wap {max-width:1000px; margin:0 auto;}
  .cre_banner li img {max-width:350px; width:100%;}
  .cre_banner {padding: 40px 20px 60px;}
  .cre_banner li {text-align:center; margin:0 10px 10px 10px; width:calc(100%/3 - 20px);}
  .card_list .more a {max-width:320px;}
  @media (max-width: 500px) {
  .flexbox_wap li {width:100%;}
  }
  @media (max-width: 768px) {
  .heads-up_bnr div {width:100%;}
  .heads-up_bnr a {margin-bottom:20px;}
  #info2 .flexbox_wap li {width:100%; margin-bottom:20px;}
  }
  .new {color:red; font-weight:bold; padding:0 0.5em; margin-left:0.5em; }

/*繧ｫ繝ｼ繝峨ｒ逕ｳ縺苓ｾｼ繧*/
.popup__wrapper {
  position: relative;
  width: 1100px;
  max-width: 100%;
  margin: auto;
  z-index: 2;
}
.popup__inner {
  width: 1100px;
  max-width: 100%;
  margin: auto;
  padding: 7.27% 7.27% 5.45%;
  background-color: #fff;
  border-radius: 17px;
}
.popup__cards {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.popup__cards {
  border-bottom: solid 1px #000;
}
@media only screen and (max-width: 768px) {
  .popup__cards {
    display: block;
    margin-bottom: 10%;
  }
  .popup__cards:first-of-type {
    padding-bottom: 10%;
  }
}
.popup__cardsInner {
  width: calc(100% - 360px);
}
@media only screen and (max-width: 768px) {
  .popup__cardsInner {
    width: 100%;
  }
}
.popup__cardItem {
  display: flex;
  align-items: center;
  padding: 20px 0;
}
.popup__cardItem figure {
  width: 191px;
  margin-right: 29px;
}
@media only screen and (max-width: 900px) {
  .popup__cardItem figure {
    width: 140px;
  }
}
@media only screen and (max-width: 768px) {
  .popup__cardItem {
    padding: 0 0 5%;
  }
  .popup__cardItem figure {
    width: 40%;
    margin-right: 5%;
  }
}
.popup__cardName {
  width: calc(100% - 220px);
  font-size: 2.3rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}
@media only screen and (max-width: 900px) {
  .popup__cardName {
    width: calc(100% - 160px);
  }
}
@media only screen and (max-width: 768px) {
  .popup__cardName {
    font-size: 19px;
    font-size: 2.96875vw;
    width: 55%;
  }

.popuo__application {
margin-bottom:10px;
}
}
.popup__application {
  position: relative;
  width: 360px;
  height: 70px;
  margin: auto;
}
.popup__application {
height:60px;
  padding-left: 10px;
  line-height: 60px;
  font-size: 1.9rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  background-color: #00318e;
  color: #ffffff;
}
.popup__application a {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding-left: 10px;
  line-height: 1.2;
  font-size: 1.9rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  background-color: #00318e;
  color: #ffffff;
height:60px;
}

@media only screen and (max-width: 768px) {
  .popup__application {
    width: 100%;
    height: auto;
  }
  .popup__application a {
    padding: 1em;
    font-size: 19px;
    font-size: 2.96875vw;
  }
  .popup__application a br {
    display: none;
  }
}

.btn a {
	display:block;
	background:#0e3481;
	color:white;
	text-align:center;
	padding:0.5em;
	text-decoration:none;
	border:solid 1px #0e3481;
	font-size:1.5rem;
}

.btn a:hover {
	color:#0e3481;
	background:white;
}
.info_btn_list .more {
	margin:0 1em;
}

.tab_content_description .more {
	margin:1em;
}


@media only screen and (max-width: 768px) {
.support .flexbox_sbwap li {
	width:100%;
}
	.support .flexbox_sbwap img {
		margin:0.5em auto;
	}
	
	.flexbox_wap.info_btn_list {
		display:block;
	}
	
	.info_btn_list .more {
		margin:0 0 0.5em 0;
	}
	
	.tab_content_description .more {
		width:100%;
		margin:0 0 10px 0;
	}
}


