@charset "UTF-8";
/*base*/
:root{
	--lawcolor: #0f6cb8;
	}

*{
	margin: 0px;
	padding: 0px;
	box-sizing: border-box;
	}

header, footer, nav, section, article {
	display:block;
	}

html{
	font-size: 100%;
	overflow-y: scroll; 
	}

body{
	font-size: 1em;
	color: #000000;
	background: #ffffff url('../images/bg_pc.jpg') center top no-repeat;
	background-size: cover;
	background-attachment: fixed;
	font-family: 'ヒラギノ角ゴ ProN','ヒラギノ角ゴ Pro','Hiragino Kaku Gothic ProN','Hiragino Kaku Gothic Pro',verdana,'メイリオ',Meiryo,'ＭＳ Ｐゴシック', sans-serif;
	}

ul li{
	/*list-style-type: none;*/
	list-style-position: outside;
	}

ol li{
	list-style-position: outside;
	margin: 0px 0px 5px 1.5em;
	}

p,figcaption{
	line-height: 242%;
	}

h1,h2,h3,h4,h5,h6{
	font-size: 1em;
	}

sub{
	vertical-align: baseline !important;
	font-size: 0.714em;
	}


.inner{
	width: 1000px;
	margin-left: auto;
	margin-right: auto;
	}

.bg_fff_wrap{
	background: #ffffff;
	border-top: 1px solid #dddddd;
	padding: 0 0 100px;
	}

.fade {
	transition: all 2000ms;
	opacity: 0;
	visibility: hidden;
	transform: translate(0px, 50px);
	}

.fadein {
	opacity: 1;
	visibility: visible;
	transform: translate(0px, 0px);
	}



/*float*/
.alignleft{
	float: left;
	}

.alignright{
	float: right;
	}

.cl{
	clear: both;
	}

.clearfix{
	overflow: hidden;
	}


/*text-align*/

.txt_alignleft{
	text-align: left;
	}
.txt_alignright{
	text-align: right;
	}
.txt_aligncenter{
	text-align: center;
	}

/*vertical-align*/

.txt_aligntop{
	vertical-align: top;
	}
.txt_alignmiddle{
	vertical-align: middle;
	}
.txt_alignbottom{
	vertical-align: bottom;
	}

/*link*/
a img {
    border-style: none;
	}

a:link{
	color: #000000;
	text-decoration: none;
	}

a:active{
	text-decoration: none;
	}

a:visited{
	color: #000000;
	}

a:hover{
	text-decoration: none;
	}


/*width*/

.half{
	width: calc(50% - 25px);
	}

.full{
	width: 100%;
	}



/*margin*/
.mgt1em{
	margin-top: 1em;
	}

.mgt10{
	margin-top: 10px;
	}

.mgt20{
	margin-top: 20px;
	}

.mgt30{
	margin-top: 30px;
	}

.mgt40{
	margin-top: 40px;
	}

.mgt50{
	margin-top: 50px;
	}
.mgt100{
	margin-top: 100px;
	}

/*fontsize*/
.txt_reset{
	font-size: 1em;
	}

.txt_12{
	font-size: 0.75em;
	}
.txt_16{
	font-size: 1em;
	}
.txt_18{
	font-size: 1.125em;
	}
.txt_20{
	font-size: 1.25em;
	}
.txt_24{
	font-size: 1.5em;
	}
.txt_30{
	font-size: 1.875em;
	}
.txt_36{
	font-size: 2.25em;
	}
.txt_40{
	font-size: 2.5em;
	}
.txt_50{
	font-size: 3.125em;
	}


/*fontweight*/
.txt_bold{
	font-weight: bold;
	}
.txt_normal{
	font-weight: normal;
	}

/*color*/
.col_lawson{
	color: var(--lawcolor);
	}
.col_ffffff{
	color: #ffffff;
	}
.col_999999{
	color: #999999;
	}
.col_666666{
	color: #666666;
	}
.col_da4633{/*red*/
	color: #da4633;
	}
.col_ffe113{/*yellow*/
	color: #ffe113;
	}

/*background*/
.bg_lawson{
	background: var(--lawcolor);
	color: #ffffff;
	}

.bg_ffffff{
	background: #ffffff;
	}

.bg_d7edfb{
	background: #d7edfb;
	}

.bg_eaeef1{
	background: #eaeef1;
	}

div.bg_eaeef1{
	padding: 50px;
	}

/*box*/
.box_lawson{
	border: 1px solid var(--lawcolor);
	background: #ffffff;
	}

/*h*/
.h_bg_lawson{
	background: var(--lawcolor);
	color: #ffffff;
	font-size: 1.5em;
	padding: 15px 0;
	text-align: center;
	}

/*icon*/
.icon_newwin{
	padding: 0px 17px 1px 0px;
	background: url('../images/icon_newwin.png') right top no-repeat;
	}

.icon_pdf{
	display: inline-block;
	min-height: 32px;
	padding: 5px 0 0 40px;
	background: url('../images/icon_pdf.svg') left top no-repeat;
	}


/*li*/

li.disc{
	list-style-type: disc;
	margin: 0px 0px 5px 1.5em;
	}

li.square{
	list-style-type: none;
	margin: 0px 0px 5px 0;
	padding-left: 20px;
	position: relative;
	}

li.square::before{
	content: "";
	width: 14px;
	height: 14px;
	background-color: #333333;
	position: absolute;
	top: 5px;
	left: 0;
	}

li.circle{
	list-style-type: none;
	margin: 0px 0px 5px 0;
	padding-left: 20px;
	position: relative;
	}

li.circle::before{
	content: "";
	width: 14px;
	height: 14px;
	border-radius: 100%;
	background-color: #333333;
	position: absolute;
	top: 3px;
	left: 0;
	}

li.icon_link{
	position: relative;
	width: 220px;
	padding-left: 20px;
	}

li.icon_link::before{
	content: '';
	position: absolute;
	bottom: 8px;
	left: 0;
	border-top: 5px solid transparent;
	border-right: 0px solid transparent;
	border-left: #333333 11px solid;
	border-bottom: 5px solid transparent;
	}

ol.wrap{
	list-style-type: none;
	margin-left: 0em;
	}

ol.wrap li {
	counter-increment: cnt;
	margin-bottom: 20px;
	}

ol.wrap li:before {
	content: "(" counter(cnt) ") ";
	display:inline-block;
	margin-left:-2em;
	width: 2em;
	}


/*table*/
table.tbl_01{
	width: 100%;
	border-spacing: 0px;
	border-bottom: 1px solid #666666;
	border-right: 1px solid #666666;
	}

table.tbl_01 th,table.tbl_01 td{
	border-top: 1px solid #666666;
	border-left: 1px solid #666666;
	padding: 20px 10px;
	line-height: 180%;
	}

table.tbl_01 .bdnone{
	border-top: none;
	border-left: none;
	}

table.tbl_01 th{
	}

table.tbl_01 td{
	}


/*flex*/
.flex{
	display: flex;
	}

.align_items_start{
	align-items: start;
	}

.align_items_center{
	align-items: center;
	}

.justify_content_space_between{
	justify-content: space-between;
	}

.justify_content_start{
	justify-content: flex-start;
	}

.justify_content_center{
	justify-content: center;
	}

.flex_wrap{
	flex-wrap: wrap;
	}

/*hide*/
.sp,.mainmenu_btn{
	display: none;
	}

/*header*/
header{
	width: 100%;
	height: 110px;
	background: #ffffff;
	}

header .header_wrap{
	height: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	}

header .header_tit{
	margin-left: 24px;
	line-height: 1.2;
	}

header .header_tit img.logo_lawson{
	display: block;
	width: 187px;
	height: 29px;
	margin-bottom: 10px;
	}

header .header_tit a span{
	position: relative;
	z-index: 1;
	}

header .header_tit a span::after{
	content: '';
	position: absolute;
	left: 0;
	bottom: -2px;
	width: 0%;
	height: 1px;
	background: var(--lawcolor);
	z-index: -1;
	transition: all 0.4s;
	}

header .header_tit a:hover span::after{
	width: 100%;
	}

header .header_right{
	display: flex;
	flex-flow: column;
	align-items: flex-end;
	margin-right: 30px;
	}



/*mainmenu*/
#mainmenu{
	margin-top: 40px;
	}

#mainmenu ul{
	display: flex;
	list-style-type: none;
	}

#mainmenu ul li{
	padding: 0 15px;
	}
#mainmenu ul li:last-child{
	padding: 0 0 0 15px;
	}
#mainmenu ul li.mainmenu_top{
	display: none;
	}

#mainmenu ul li a{
	text-decoration: none;
	position: relative;
	font-weight: bold;
	}
#mainmenu ul li a::after{
	content: '';
	position: absolute;
	left: 0;
	bottom: -10px;
	width: 0%;
	height: 1px;
	background: var(--lawcolor);
	z-index: 2;
	transition: all 0.4s;
	}

#mainmenu ul li a:hover::after,#mainmenu ul li.current a::after{
	width: 100%;
	}



/*main*/
main{
	}


/*pdf_downroad*/

#pdf_downroad{
	}

#pdf_downroad h1{
	display: flex;
	align-items: center;
	width: calc(100% - ((100% - 1100px) / 2));
	height: 190px;
	padding-left: calc((100% - 1100px) / 2);
	font-size: 1.875em;
	color: #ffffff;
	background: #0f6cb8; /* Old browsers */
	background: -moz-linear-gradient(left,  #0f6cb8 0%, #0058a0 100%); /* FF3.6-15 */
	background: -webkit-linear-gradient(left,  #0f6cb8 0%,#0058a0 100%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(to right,  #0f6cb8 0%,#0058a0 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#0f6cb8', endColorstr='#0058a0',GradientType=1 ); /* IE6-9 */
	position: relative;
	}

#pdf_downroad h1::after{
	content: '';
	display: block;
	width: 400px;
	height: 283px;
	background: url('../images/pdf_downroad_cover.jpg') no-repeat;
	background-size: cover;
	box-shadow: 0 0 10px rgba(15,108,184,0.2);
	position: absolute;
	top: 40px;
	right: 50px;
	}

#pdf_downroad .inner{
	width: 1100px;
	}

#pdf_downroad a.btn_full{
	display: block;
	width: 340px;
	height: 70px;
	border: 1px solid var(--lawcolor);
	font-weight: bold;
	color: #ffffff;
	background: var(--lawcolor);
	margin: 63px 0 40px;
	}

#pdf_downroad a.btn_full span.btn_full_txt{
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	position: relative;
	z-index: 1;
	}

#pdf_downroad a.btn_full span.btn_full_txt::before{
	content: '';
	position: absolute;
	right: 20px;
	top: 50%;
	transform: translateY(-50%);
	width: 24px;
	height: 30px;
	background: url('../images/icon_pdf.svg') no-repeat;
	background-size: 24px 30px;
	}
#pdf_downroad a.btn_full span.btn_full_txt::after{
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	width: 0%;
	height: 100%;
	background: #ffffff;
	z-index: -1;
	transition: all 0.4s;
	}

#pdf_downroad a.btn_full:hover{
	color: var(--lawcolor);
	}

#pdf_downroad a.btn_full:hover span.btn_full_txt::after{
	width: 100%;
	}

#pdf_downroad h2{
	margin: 40px 0 20px; 
	color: var(--lawcolor);
	}

#pdf_downroad ul.pdf_downroad_item{
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	list-style-type: none;
	}

#pdf_downroad ul.pdf_downroad_item li{
	width: calc(50% - 20px);
	padding: 0;
	}

#pdf_downroad ul.pdf_downroad_item.three li{
	width: calc((100% - 80px) / 3);
	padding: 0;
	}

#pdf_downroad ul.pdf_downroad_item li a{
	display: block;
	width: 100%;
	text-decoration: none;
	position: relative;
	z-index: 1;
	padding: 15px 10px;
	border-bottom: 1px solid #dddddd;
	}

#pdf_downroad ul.pdf_downroad_item li a::before{
	content: 'PDF';
	position: absolute;
	bottom: 10px;
	right: 10px;
	display: flex;
	align-items: center;
	height: 34px;
	padding: 0 30px 0 20px;
	background: #eaf6fd url('../images/icon_pdf.svg') right 10px center no-repeat;
	background-size: 12px 16px;
	}


#pdf_downroad ul.pdf_downroad_item li a::after{
	content: '';
	position: absolute;
	left: 0;
	bottom: -1px;
	width: 0%;
	height: 1px;
	background: var(--lawcolor);
	z-index: 2;
	transition: all 0.4s;
	}

#pdf_downroad ul.pdf_downroad_item li a:hover::after{
	width: 100%;
	}

/*footer*/
footer{
	background: #ffffff;
	}

footer .bn_wrap{
	background: #eaf6fd; /* Old browsers */
	background: -moz-linear-gradient(left,  #eaf6fd 0%, #cfe2f1 100%); /* FF3.6-15 */
	background: -webkit-linear-gradient(left,  #eaf6fd 0%,#cfe2f1 100%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(to right,  #eaf6fd 0%,#cfe2f1 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#eaf6fd', endColorstr='#cfe2f1',GradientType=1 ); /* IE6-9 */
	padding: 40px 0;
	}

footer .bn_wrap .inner{
	width: 1100px;
	}

footer .bn_wrap a.btn_footer{
	display: block;
	width: calc(50% - 25px);
	height: 76px;
	border: 1px solid var(--lawcolor);
	font-weight: bold;
	color: #ffffff;
	background: var(--lawcolor);
	}
footer .bn_wrap a.btn_footer span.btn_txt{
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	position: relative;
	z-index: 1;
	}

footer .bn_wrap a.btn_footer span.btn_txt::after{
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	width: 0%;
	height: 100%;
	background: #ffffff;
	z-index: -1;
	transition: all 0.4s;
	}
footer .bn_wrap a.btn_footer:hover{
	color: var(--lawcolor);
	}
footer .bn_wrap a.btn_footer:hover span.btn_txt::after{
	width: 100%;
	}

footer p.copyright{
	text-align: center;
	padding: 50px 0;
	line-height: 1;
	}
/* Media Queries
==========================================================================*/
@media screen and (max-width:1025px) {

html {
	-webkit-text-size-adjust: none;
	}

.inner,#pdf_downroad .inner,footer .bn_wrap .inner{
	width: calc(100% - 60px);
	}
#pdf_downroad h1{
	width: calc(100% - 50px);
	padding-left: 50px;
	}
#pdf_downroad h1::after{
	width: 300px;
	height: 212px;
	}
}


@media screen and (max-width:767px) {
body{
	font-size: 0.875em;
	overflow-x: hidden;
	background: none;
	position: relative;
	}
body::before{
	content: '';
	display: block;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	height: calc(var(--vh, 1vh) * 100);
	background: #ffffff url('../images/bg_sp.jpg') center top no-repeat;
	background-size: 100% auto;
	z-index: -2;
	}

img {
	max-width: 100%;
	height: auto;
     }

/*hide*/
.pc{
	display: none;
	}
.sp{
	display: block;
	}



.bg_fff_wrap{
	padding: 0 0 50px;
	}



.flex{
	display: block;
	}
.flex.spflex{
	display: flex;
	}
/*margin*/
.mgt20{
	margin-top: 10px;
	}

.mgt30{
	margin-top: 15px;
	}

.mgt40{
	margin-top: 20px;
	}

.mgt50{
	margin-top: 25px;
	}

.mgt100{
	margin-top: 50px;
	}
/*background*/
div.bg_eaeef1{
	padding: 25px;
	}

/*h*/
.h_bg_lawson{
	padding: 10px 0;
	}

/*table*/
table.tbl_01 th,table.tbl_01 td{
	padding: 5px;
	}
table.tbl_sp tr{
	display: block;
	}
table.tbl_sp th,table.tbl_sp td{
	display: list-item;
	list-style-type: none;
	width: auto;
	padding: 10px;
	word-break: break-all;
	}

table.tbl_sp th{
	width: calc(100% - 20px);
	border-bottom: none;
	padding-bottom: 0;
	}

header{
	position: fixed;
	top: 0;
	z-index: 90;
	height: 55px;
	}

header .header_tit{
	margin-left: 10px;
	font-size: 0.5em;
	}

header .header_tit img.logo_lawson{
	display: block;
	width: 94px;
	height: 14px;
	margin-bottom: 5px;
	}

header .header_right{
	margin-right: 64px;
	}


.mainmenu_btn{
	display: block;
	position: absolute;
	width: 30px;
	height: 24px;
	top: 15px;
	right: 10px;
	z-index: 100;
	background: url('../images/menu_open.png') center center no-repeat;
	background-size: 30px 24px;
	}
.mainmenu_btn.active{
	background: url('../images/menu_close.png') center center no-repeat;
	background-size: 23px 23px;
	}


#mainmenu{
	display: none;
	position: fixed;
	margin-top: 0;
	top: 55px;
	left: 0;
	z-index: 99;
	width: 100%;
	height: calc(100vh - 55px);
	overflow: auto;
	background: #0058a0; /* Old browsers */
	background: -moz-linear-gradient(top,  #0058a0 0%, #0f6cba 100%); /* FF3.6-15 */
	background: -webkit-linear-gradient(top,  #0058a0 0%,#0f6cba 100%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(to bottom,  #0058a0 0%,#0f6cba 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#0058a0', endColorstr='#0f6cba',GradientType=0 ); /* IE6-9 */
	}

#mainmenu .sp_wrap{
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100%;
	}

#mainmenu ul{
	display: block;
	}

#mainmenu ul li{
	padding: 25px 0;
	text-align: center;
	}
#mainmenu ul li:last-child{
	padding: 25px 0;
	}
#mainmenu ul li.mainmenu_top{
	display: block;
	}

#mainmenu ul li a{
	font-size: 1.714em;
	color: #ffffff;
	}
#mainmenu ul li a::after{
	background: #ffffff;
	}
#mainmenu ul li a:hover::after,#mainmenu ul li.current a::after{
	width: 0%;
	}

/*main*/
main{
	margin-top: 55px;
	}



/*pdf_downroad*/

#pdf_downroad{
	}

#pdf_downroad h1{
	width: calc(100% - 10px);
	height: 110px;
	padding-left: 27px;
	margin-bottom: 60vw;
	}

#pdf_downroad h1::after{
	width: calc(100% - 50px);
	height: 60vw;
	top: 90px;
	right: auto;
	left: 30px;
	}

#pdf_downroad .inner{
	width: calc(100% - 60px);
	}

#pdf_downroad a.btn_full{
	width: 100%;
	margin: 0 0 20px;
	}
#pdf_downroad a.btn_full:hover{
	color: #ffffff;
	}

#pdf_downroad a.btn_full:hover span.btn_full_txt::after{
	width: 0%;
	}

#pdf_downroad h2{
	margin: 20px 0 10px; 
	}

#pdf_downroad ul.pdf_downroad_item{
	display: block;
	}

#pdf_downroad ul.pdf_downroad_item li,#pdf_downroad ul.pdf_downroad_item.three li{
	width: 100%;
	padding: 0;
	}

#pdf_downroad ul.pdf_downroad_item li{
	min-height: 48px;
	}

#pdf_downroad ul.pdf_downroad_item li a{
	padding: 15px 10px;
	height: 100%;
	}

#pdf_downroad ul.pdf_downroad_item.three li a{
	padding: 5px 10px 10px;
	}

#pdf_downroad ul.pdf_downroad_item li a::before{
	bottom: auto;
	top: 50%;
	transform: translateY(-50%);
	}


#pdf_downroad ul.pdf_downroad_item li a:hover::after{
	width: 0%;
	}

#pdf_downroad ul.pdf_downroad_item li a span.link_txt{
	display: inline-block;
	padding-right: 80px;
	}


/*footer*/

footer .bn_wrap{
	padding: 25px 0;
	}

footer .bn_wrap .inner{
	width: calc(100% - 60px);
	}
footer .bn_wrap a.btn_footer{
	width: 100%;
	}
footer .bn_wrap a.btn_footer:hover{
	color: #ffffff;
	}
footer .bn_wrap a.btn_footer:hover span.btn_txt::after{
	width: 0%;
	}

footer .bn_wrap a.btn_footer:first-child{
	margin-bottom: 25px;
	}

footer p.copyright{
	padding: 25px 0;
	}
}

@media print{
}