@charset "utf-8";

/******************************************
汎用classの定義
- Title Style
- Section Style
- List Style
- Button Style
- Table Style
- Form Style
- Text Style
- Stopgap Class
- Clearfix
*******************************************/


.pcNone {
	display: none !important;
}
@media screen and (max-width:767px){
	.spNone {
		display: none !important;
	}
	.pcNone {
		display: inline-block !important;
		vertical-align: bottom;
	}
}


/* ----------------------------------------

- Title Style

---------------------------------------- */

/* title
------------------------------- */
.title01 {
	font-size: 200%;
	font-family: 'Noto Serif JP', serif;
	font-weight: bold;
	position: relative;
	text-align: center;
	margin-bottom: 60px;
}
.title01:after{
	content: "";
    background: #461c8a;
    width: 60px;
    height: 1px;
    display: block;
    margin: 15px auto 0;
}
.title02 {
	font-size: 200%;
	font-family: 'Noto Serif JP', serif;
	font-weight: bold;
	position: relative;
	text-align: center;
	margin-bottom: 60px;
	color: #fff;
}
.title02:after{
	content: "";
    background: #fff;
    width: 60px;
    height: 1px;
    display: block;
    margin: 15px auto 0;
}
.title03 {
    font-size: 186.7%;
	font-family: 'Noto Serif JP', serif;
	color: #461c8a;
	font-weight: bold;
	margin-bottom: 30px;
}
.title03 span{
    font-size: 57.1%;
	font-family: 'Noto Serif JP', serif;
	color: #262626;
	font-weight: bold;
	display: block;
}
.title04 {
    font-size: 200%;
	font-family: 'Noto Serif JP', serif;
	color: #262626;
	font-weight: bold;
	padding-bottom: 15px;
	border-bottom: 1px solid #461c8a;
	margin-bottom: 35px;
}
.title05 {
    font-size: 160%;
	font-family: 'Noto Serif JP', serif;
	color: #461c8a;
	font-weight: bold;
	margin-bottom: 25px;
}
.title05 .sizS {
    font-size: 75%;
}
.title06 {
    font-size: 133.33%;
	color: #262626;
	font-weight: bold;
	margin-bottom: 20px;
	padding-left: 15px;
	border-left: 3px solid #461c8a;
}
@media screen and (max-width:767px){
	/*スマホ指定*/
	.title01 {
		font-size: 145.5%;
		margin-bottom: 25px;
	}
	.title02 {
		font-size: 157.1%;
		margin-bottom: 25px;
	}
	.title03 {
	    font-size:142.9%;
		margin-bottom: 15px;
	}
	.title03 span{
	    font-size: 60%;
	}
	.title04 {
    	font-size: 180%;
    	padding-bottom: 10px;
		margin-bottom: 25px;
	}
	.title05 .sizS {
		font-size: 60%;
		display: inline-block;
	}
	.title06 {
		font-size: 121.42%;

	}

}

/* ----------------------------------------

- Section Style

---------------------------------------- */

/* section
------------------------------- */
.section01 {
	margin-bottom: 70px;
}
.section02 {
	margin-bottom: 60px;
}

@media screen and (max-width:767px){
	.section01 {
	margin-bottom: 35px;
}
.section02 {
	margin-bottom: 30px;
}

}
/* box_01
------------------------------- */

.box_01 > li{
	width: 505px;
}
.box_01 > li:nth-child(2n){
	float: right;
}
.box_01 > li:nth-child(2n+1){
	float: left;
}


@media screen and (max-width:767px){
	.box_01 > li {
	    width: 100%;
	}
	.box_01 > li:nth-child(2n){
		float: none;
	}
	.box_01 > li:nth-child(2n+1){
		float: none;
	}
}


/* box_02
------------------------------- */

.box_02 > li{
	width: 50%;
}
.box_02 > li{
	float: left;
}


/* box_03
------------------------------- */

.box_03 > li{
	width: 510px;
	border: 5px solid #e8edfc;
	padding: 30px;
}
.box_03 > li:nth-child(2n){
	float: right;
}
.box_03 > li:nth-child(2n+1){
	float: left;
}


@media screen and (max-width:767px){
	.box_03 > li {
	    width: 100%;
    	padding: 20px;
	}
	.box_03 > li:nth-child(2n){
		float: none;
	}
	.box_03 > li:nth-child(2n+1){
		float: none;
		margin-bottom: 10px;
	}
}




/* zoomImg
------------------------------- */
.zoomImgBox01 {
	position: relative;
	overflow: hidden;
}
.zoomImgBox01 .zoomImg01 {
	width: 100%;
	-webkit-transition: transform 0.5s ease;
	-moz-transition: transform 0.5s ease;
	-ms-transition: transform 0.5s ease;
	-o-transition: transform 0.5s ease;
	transition: transform 0.5s ease;
}
.zoomImgBox01 .zoomImg01 img {
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	-o-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	width: 100%;
}
.zoomImgBox01:hover .zoomImg01 {
	-webkit-transform: scale(1.1);
	-moz-transform: scale(1.1);
	-ms-transform: scale(1.1);
	-o-transform:scale(1.1);
	transform: scale(1.1);
}
@media screen and (max-width:767px){
	.zoomImgBox01:hover .zoomImg01 {
		transform: none !important;
	}
}

/* imgSec
------------------------------- */
.imgSec01 {
	margin-bottom: 15px;
}
.imgSec01 .imgL {
	float: left;
	margin: 3px 25px 10px 0;
}
.imgSec01 .imgR {
	float: right;
	margin: 3px 0 10px 25px;
}
.imgSec01 .inTxt {
	overflow: hidden;
}
@media screen and (max-width:767px) {
	.imgSec01 .spFlClear {
		float: none;
		margin: 0 0 10px;
		text-align: center;
	}
}

/* col02
------------------------------- */
.blk_col02 > div {
	width: 50%;
	float: left;
}
@media screen and (max-width:767px) {
	.blk_col02.spColClear > div {
		width: initial;
		float: none;
	}
	.blk_col02.spColClear > div:first-child {
		margin-bottom: 10px;
	}
}



/* ----------------------------------------

- List Style

---------------------------------------- */

/* blklink_list
------------------------------- */
.blklink_list li{
	margin-bottom: 15px;
	position: relative;
	display: inline-block;
	letter-spacing: normal;
}
.blklink_list li a{
	margin-bottom: 15px;
}
.blklink_list li i.fa-clone{
	color: #cfcfcf;
	padding-left: 10px;
}
.blklink_list li span{
	position: relative;
	padding-right: 25px;
}
.blklink_list li span:before{
    content: "";
	position: absolute;
    top: 50%;
    transform: translate(0,-50%);
    -webkit-transform: translate(0,-50%);
    right: 0;
    margin:auto;
    background-image: url(/files/img/common/arw_01.png);
    width: 16px;
    height: 8px;
    background-size: contain;
    background-repeat: no-repeat;
}
/* pageLink
------------------------------- */
.pageLink ul {
	border-left: 1px solid #461c8a;
	border-top: 1px solid #461c8a;
	margin-bottom: 70px;
}
.pageLink li {
	width: 20%;
	float: left;
	text-align: center;
}
.pageLink a {
	width: 100%;
	font-size: 106.66%;
	color: #461c8a;
	display: inline-block;
	border-right: 1px solid #461c8a;
	border-bottom: 1px solid #461c8a;
	color: #461c8a;
	padding: 20px 20px 35px 20px;
	background: url(/files/img/common/arw_05.png) center bottom 15px no-repeat;
}
.pageLink a:hover {
	text-decoration: none;
    opacity: .7;
}
@media screen and (max-width:767px){
	.pageLink ul {
		margin-bottom: 35px;
	}
	.pageLink li {
		width: 50%;
	}
	.pageLink a {
		padding: 10px 10px 25px 10px;
	background: #fff url(/files/img/common/arw_05.png) center bottom 8px no-repeat;
	}
}








/* defList
------------------------------- */
.defList {
	padding-left: 30px;
	margin-bottom: 15px;
}
ul.defList > li {
	list-style-type: disc;
}
ol.defList > li {
	list-style-type: decimal;
}

/* capList
------------------------------- */
.capList > li {
	position: relative;
	padding-left: 16px !important;
	margin-bottom: 3px;
}
.capList > li:before {
	content: '※';
	display: block;
	position: absolute;
	left: 0;
	top: 0;
}

/* ----------------------------------------

- Button Style

---------------------------------------- */

/* btn
------------------------------- */
/*btn_01*/
.btn_01 {
	position: relative;
	z-index: 1;
	margin: 0 auto;
	width: 100%;
}
.btn_01 a{
	background-color: #fff;
    display: inline-block;
    color: #262626;
    text-decoration: none;
    text-align: center;
    width: 100%;
    height: auto;
    position: relative;
}
.btn_01 a:hover{
	opacity: 0.7;
}
.btn_01 a span{
	display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    -webkit-transform: translate(-50%,-50%);
}
.btn_01 a span:before{
	content: "";
	width: 16px;
	height: 4px;
	position: absolute;
	top: 50%;
	transform: translate(0,-50%);
	-webkit-transform: translate(0,-50%);
}
/*btn_02*/
.btn_02 a {
	display: inline-block;
	color: #3b177b;
	border: 1px solid #3b177b;
	padding: 10px;
	min-width: 140px;
	text-align: center;
}
@media screen and (max-width:767px){ 
	.btn_02 a {
		min-width: none;
	}
}
.btn_02.blank a span {
	position: relative;
	margin-right: 17px;
}
.btn_02.blank a span:before {
	 content: "\f24d";
	 display: inline-block;
    font-family: "Font Awesome 5 Free";
	vertical-align: middle;
	font-size: 90%;
	color: #3b177b;
	border: none;
	position: absolute;
	right: -17px;
	top: 50%;
	-webkit-transform: translateY(-50%); /* Safari用 */
	transform: translateY(-50%);
}
/*mapbtn*/
.mapbtn a {
	display: inline-block;
	color: #3b177b;
	border: 1px solid #3b177b;
	padding: 10px;
	min-width: 140px;
	text-align: center;
}
.mapbtn a span {
	position: relative;
	margin-left: 15px;
}
.mapbtn a span:before {
	 content: "\f3c5";
	 display: inline-block;
    font-family: "Font Awesome 5 Free";
    font-weight: bold;
	vertical-align: middle;
	color: #3b177b;
	position: absolute;
	left: -15px;
	top: 50%;
	-webkit-transform: translateY(-50%); /* Safari用 */
	transform: translateY(-50%);
}

@media screen and (max-width:767px){ 
	.mapbtn a {
		min-width: none;
	}
}

/*btn_03*/

.btn_03 a{
    display: inline-block;
	min-width: 500px;
	position: relative;
    color: #461c8a;
    border: 1px solid #461c8a;
    text-decoration: none;
    text-align: center;
    position: relative;
    font-weight: bold;
    font-size: 133.33%;
    padding: 25px 65px;
    background: url(/files/img/common/arw_01_L.png) center right 25px no-repeat;
    margin-top: 30px;
}
.btn_03 a:hover{
	opacity: 0.7;
}

@media screen and (max-width:767px){
	.btn_03 a{
		min-width: auto;
	    width: 100%;
	    font-size: 120%;
	    margin:30px auto 0;
    	padding: 15px 35px;
    	background: url(/files/img/common/arw_01.png) center right 25px no-repeat;
    	background-position: center right 15px;
    	background-size: 20px auto;

	}
}

/*btn_04*/
.btn_04 {
	text-align: center;
}
.btn_04 a{
    display: inline-block;
	min-width: 400px;
	position: relative;
    color: #461c8a;
    border: 1px solid #461c8a;
    text-decoration: none;
    text-align: center;
    position: relative;
    font-weight: bold;
    font-size: 120%;
    padding: 20px 65px;
    background: url(/files/img/common/arw_01_R.png) center left 25px no-repeat;
    margin-top: 30px;
}
.btn_04 a:hover{
	opacity: 0.7;
}

@media screen and (max-width:767px){
	.btn_04 a{
		min-width: auto;
	    width: 70%;
	    font-size: 114.3%;
	    margin:30px auto 0;
    	padding: 15px 35px;
    	background: url(/files/img/common/arw_01_R.png) center left 25px no-repeat;
    	background-position: center left 15px;
    	background-size: 20px auto;

	}
}



/*btn_05*/
.btn_05 a{
    display: inline-block;
	min-width: 220px;
	position: relative;
    color: #461c8a;
    border: 1px solid #461c8a;
    text-decoration: none;
    text-align: center;
    position: relative;
    font-weight: bold;
    font-size: 106.66%;
    padding: 13px 60px 13px 45px;
    background: url(/files/img/common/arw_01_L.png) center right 15px no-repeat;
    -webkit-background-size: 26px auto;
    background-size: 26px auto;
}
.btn_05 a:hover{
	opacity: 0.7;
}
@media screen and (max-width:767px){
	.btn_05 a{
    	background: url(/files/img/common/arw_01.png) center right 15px no-repeat;
	}
}


/* ----------------------------------------

- Table Style

---------------------------------------- */

/* tbl
------------------------------- */
.tbl01 {
	width: 100%;
	margin-bottom: 20px;
}

.tbl01 th,
.tbl01 td {
	padding: 13px 15px;
	border: 1px solid #ccc;
	vertical-align: top;
}
.tbl01 th {
	background-color: #eee;
	font-weight: 700;
}
@media screen and (max-width:767px){
	.tbl01 th {
		padding-top: 11px;
		padding-bottom: 10px;
	}
}

table.tbl02 {
    width: 100%;
}
table.tbl02 th,
table.tbl02 td {
    padding: 18px 20px;
    border: 1px solid #ccc;
    vertical-align: top;
}
table.tbl02 th{
	background-color: #e8edfc;
    font-weight: 700;
    text-align: center;
    width: 20%;
    text-align: left;
    vertical-align: middle;
}
table.tbl02 td{
    width: 80%;
}

@media screen and (max-width:767px){
    table.tbl02,table.tbl02 tbody,table.tbl02 tr,table.tbl02 th, table.tbl02 td{
      display: block;
    }
    table.tbl02 th,
	table.tbl02 td {
	    padding: 12px 20px;
}
    table.tbl02 th{
      width: 100%;
    }
    table.tbl02 td{
        width: 100%;
        border-top: none;
        border-bottom: none;
    }
    table.tbl02 tr:last-child{
        border-bottom: 1px solid #ccc;
    }
}
/* scroll
------------------------------- */

p.scrollMark {
    display: none;
}
@media screen and (max-width:767px){
		/* sp scroll */
	.tblWrap {
		width: 100%;
		overflow-x: auto;
		position: relative;
	}

	.tblWrap .tbl01 {
		table-layout: inherit;
	}
	.tblWrap .tbl01 th,
	.tblWrap .tbl01 td {
		display: table-cell;
		white-space: nowrap;
	}
/*	.tblWrap .tbl01 thead td,
	.tblWrap .tbl01 tbody td {
		border-left: 1px solid #ccc;
	}*/
	p.scrollMark {
		display: block;
		width:100%;
		height:100%;
		background:rgba(102,102,102,.5);
		top:0;
		left:0;
		text-align: center;
		padding-top: 10%;
		position: absolute;
	}
	p.scrollMark img {
		max-height: 85%;
		max-width: 90px;
	}
}

/* table common
------------------------------- */
table.vaM th,table.vaM td {
	vertical-align: middle;
}
table.alnC th,table.alnC td {
	text-align: center;
}
table.alnC td .mapbtn {
	text-align: left;
}

/* noborder */
.tblNoBdr{ border: none !important;}
.tblNoBdr th,
.tblNoBdr td {
	border: none !important;
	vertical-align: top;
	background: #fff;
}
.tblNoBdr th { padding: 4px 15px 4px 0;}
.tblNoBdr td { padding: 4px 0;}
table .tblNoBdr th { padding-top: 6px;}
@media screen and (max-width:767px){
	.tblNoBdr td { padding-top: 2px;}
	table .tblNoBdr th { padding-top: 5px;}
}

@media screen and (max-width:767px){
	.sp_tblcol_clear > tbody,
	.sp_tblcol_clear > tbody > tr,
	.sp_tblcol_clear > tbody > tr > th,
	.sp_tblcol_clear > tbody > tr > td {
		display: block;
		padding: 0;
	}
	.sp_tblcol_clear > tbody > tr {
		padding-top: 5px;
	}
	.sp_tblcol_clear > tbody > tr:first-child {
		padding-top: 0;
	}
}
.scrollMark {
  display: none;
}

@media all and (max-width: 767px) {
  .scroll {
    overflow: auto;
    white-space: nowrap;
    margin-bottom: 20px;
    position: relative;
  }
  .scroll table {
  	width: auto;
  }
  .scroll::-webkit-scrollbar {
    height: 5px;
  }
  .scroll::-webkit-scrollbar-track {
    background: #F1F1F1;
  }
  .scroll::-webkit-scrollbar-thumb {
    background: #BCBCBC;
  }
  .scrollMark {
    display: block;
    width: 100%;
    height: 100%;
    background: rgba(102, 102, 102, 0.5);
    top: 0;
    left: 0;
    text-align: center;
    padding-top: 10%;
    position: absolute;
    box-sizing: border-box;
    z-index: 3;
  }
  .scrollMark img {
    max-height: 85%;
    max-width: 90px;
  }
  .scroll .headFixed thead,
  .scroll .headFixed tbody {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  }
  .scroll .headFixed thead th.headFixedFirst,
  .scroll .headFixed tbody th{
    position: -webkit-sticky;
    position: sticky;
    left: 0;
    z-index: 1;
    border-left: 1px solid #a8a8a8;
  }
  .scroll .headFixed thead th.headFixedFirst {
    z-index: 2;
  }
}

/* ----------------------------------------

- Form Style
(input要素の幅は適宜調整する)

---------------------------------------- */
input.txt,
textarea.txt,
select.txt {
	padding: 5px;
	border: 1px solid #ddd;
	border-radius: 3px;
	max-width: 100%;
}
input.txt:focus,
textarea.txt:focus {
	background: #fff5d6;
}
textarea.txt {
	width: 100%;
}
input.check {
	position: relative;
	top: 2px;
	margin-right: 3px;
}

/* error */
input.err,
textarea.err,
select.err {
	border-color: #ff6060;
	background: #fff0f0;
}
input.err:focus,
textarea.err:focus {
	border-color: #ee5959;
}
.errorTxt {
	margin-top: 10px;
	color: #ff0000;
	line-height:1.1;
}

/*  option and required  */
td.required,
td.option {
	font-weight: 400;
	color: #fff;
	vertical-align: middle;
}
td.required p,
td.option p {
	width: 3.5em;
	margin: 0 auto;
	-webkit-border-radius: 12px;
	-moz-border-radius: 12px;
	border-radius: 12px;
	text-align: center;
}
td.option			{ background: #f5f5f5;}
td.option p		{ background: #a6a6a6;}
td.required		{ background: #fff0f0;}
td.required p	{ background: #ff6060;}

@media screen and (max-width:767px){
	select.txt {
		border-color: #ccc;
		background: #fff;
	}
}

/* pager
------------------------------- */
ul.pager {
	margin-top: 40px;
	text-align: center;
	font-size: 1.143em;
	font-weight: bold;
}
ul.pager a {
	text-decoration: none;
}
ul.pager li,
ul.pager ol {
	display: inline-block;
}
ul.pager li ol li {
	border:1px solid #3b177b;
}
ul.pager ol {
	margin: 0 14px;
}
ul.pager li ~ li {
	margin-left: 16px;
}
ul.pager .sendPage span,
ul.pager .sendPage a,
ul.pager ol li a,
ul.pager ol li span {
	display: inline-block;
	width: 48px;
	height: 48px;
	line-height: 48px;
	background-color: #fff;
	box-sizing: border-box;
}
ul.pager .sendPage a,
ul.pager ol li a{
	color: #3b177b;
}
ul.pager .sendPage a:hover,
ul.pager ol li a:hover,
ul.pager ol li span.current {
	background: #3b177b;
	color: #fff;
	border-color: #3b177b;
}
ul.pager .sendPage {
	vertical-align: top;
}
ul.pager .sendPage span {
	position: relative;
	border:1px solid #3b177b;
}
ul.pager .sendPage span:after {
	content: "";
    display: inline-block;
    width: 18px;
    height: 9px;
    background-size: 100% auto !important;	
    position: absolute;
    top: 50%;
    transform: translate(0,-50%);
    -webkit-transform: translate(0,-50%);
    right: 0;
    left:0;
    margin:auto;
    background: url(/files/img/common/arw_01_L.png) no-repeat 50% 50%;
}
ul.pager li:first-child span:after {
	background: url(/files/img/common/arw_01_R.png) no-repeat 50% 50%;

}

@media screen and (max-width:850px){
	ul.pager li {
		margin-bottom: 5px;
	}
	ul.pager {
		margin-top: 20px;
	}
	ul.pager ol {
		margin: 0 14px;
	}
	ul.pager .sendPage span,
	ul.pager .sendPage a,
	ul.pager ol li a,
	ul.pager ol li span {
		display: inline-block;
		width: 35px;
		height: 35px;
		line-height: 35px;
	}
	ul.pager li ~ li {
		margin-left: 5px;
	}
	ul.pager ol {
	margin: 0 10px;
}
}
@media screen and (max-width:320px){
	ul.pager .sendPage span,
	ul.pager .sendPage a,
	ul.pager ol li a,
	ul.pager ol li span {
		display: inline-block;
		width: 30px;
		height: 30px;
		line-height: 30px;
	}
}
/* ----------------------------------------

- Text Style

---------------------------------------- */
/*.iconPdf {
	background: url(../../img/common/icon_pdf.png) no-repeat 0 .1em;
	padding-left: 20px;
}*/
.txtarea {
	margin-bottom: 30px;
}
.lead {
	margin-bottom: 20px;
}
.note01 {
	color: #715e5e;
}
table .note01 {
	margin-top: 5px;
}
.fw400 { font-weight: 400 !important;}
.fwB { font-weight: 700 !important;}

.txt_indent {
	padding-left: 1.15em;
	text-indent: -1.15em;
}
.txt_indent02 {
	padding-left: 2.15em;
	text-indent: -2.15em;
}
.txt_indent_mark {
	margin-right: .15em;
}

/* ----------------------------------------

- Width

---------------------------------------- */
.w50     { width: 50px !important;}
.w150    { width: 150px !important;}
.w100    { width: 100px !important;}
.w200    { width: 200px !important;}
.w250    { width: 250px !important;}
.w300    { width: 300px !important;}
.w350    { width: 350px !important;}
.w5per  { width: 5% !important;}
.w7per  { width: 7% !important;}
.w8per  { width: 8% !important;}
.w10per  { width: 10% !important;}
.w13per  { width: 13% !important;}
.w15per  { width: 15% !important;}
.w17per  { width: 17% !important;}
.w18per  { width: 18% !important;}
.w20per  { width: 20% !important;}
.w22per  { width: 22% !important;}
.w25per  { width: 25% !important;}
.w30per  { width: 30% !important;}
.w35per  { width: 35% !important;}
.w40per  { width: 40% !important;}
.w45per  { width: 45% !important;}
.w50per  { width: 50% !important;}
.w60per  { width: 60% !important;}
.w70per  { width: 70% !important;}
.w80per  { width: 80% !important;}
.w90per  { width: 90% !important;}
.w100per { width: 100% !important;}
.w5em    {  width: 5em !important;}
.w10em   {  width: 10em !important;}
.w15em   {  width: 15em !important;}
.w20em   {  width: 20em !important;}
@media screen and (max-width:767px){
  .spwAuto    { width: auto !important;}
	.sp_w50     { width: 50px !important;}
	.sp_w150    { width: 150px !important;}
	.sp_w100    { width: 100px !important;}
	.sp_w200    { width: 200px !important;}
	.sp_w250    { width: 250px !important;}
	.sp_w300    { width: 300px !important;}
	.sp_w350    { width: 350px !important;}
	.sp_w5per   { width: 5% !important;}
	.sp_w8per   { width: 8% !important;}
	.sp_w10per  { width: 10% !important;}
	.sp_w15per  { width: 15% !important;}
	.sp_w20per  { width: 20% !important;}
	.sp_w25per  { width: 25% !important;}
	.sp_w30per  { width: 30% !important;}
	.sp_w35per  { width: 35% !important;}
	.sp_w40per  { width: 40% !important;}
	.sp_w45per  { width: 45% !important;}
	.sp_w50per  { width: 50% !important;}
	.sp_w60per  { width: 60% !important;}
	.sp_w70per  { width: 70% !important;}
	.sp_w80per  { width: 80% !important;}
	.sp_w90per  { width: 90% !important;}
	.sp_w100per { width: 100% !important;}
	.sp_w5em    { width: 5em !important;}
	.sp_w10em   { width: 10em !important;}
	.sp_w15em   { width: 15em !important;}
	.sp_w20em   { width: 20em !important;}
}

/* ----------------------------------------

- Stopgap Class
(以下は暫定的、又はイレギュラーな場合のみ使用。通常は使用しない)

---------------------------------------- */
.clear {
	clear: both;
}
.hidden {
	height: 0;
	width: 0;
	overflow: hidden;
}
.mgt0 { margin-top: 0 !important;}
.mgt3 {	margin-top: 3px !important;}
.mgt5 {	margin-top: 5px !important;}
.mgt10 {	margin-top: 10px !important;}
.mgt13 {	margin-top: 13px !important;}
.mgt15 {	margin-top: 15px !important;}
.mgt20 {	margin-top: 20px !important;}
.mgt30 {	margin-top: 30px !important;}
.mgt40 {	margin-top: 40px !important;}
.mgb0 { margin-bottom: 0 !important;}
.mgb3 {	margin-bottom: 3px !important;}
.mgb5 {	margin-bottom: 5px !important;}
.mgb10 {	margin-bottom: 10px !important;}
.mgb13 {	margin-bottom: 13px !important;}
.mgb15 {	margin-bottom: 15px !important;}
.mgb20 {	margin-bottom: 20px !important;}
.mgb30 {	margin-bottom: 30px !important;}
.mgb40 {	margin-bottom: 40px !important;}
.alnC { text-align: center !important;}
.alnR { text-align: right !important;}
.alnL{ text-align: left !important;}
.nowrap { white-space: nowrap;}
.breakWord { word-wrap: break-word;}

@media screen and (max-width:767px){
	.sp_mgt0 { margin-top: 0 !important;}
	.sp_mgt5 {	margin-top: 5px !important;}
	.sp_mgt10 {	margin-top: 10px !important;}
	.sp_mgt15 {	margin-top: 15px !important;}
	.sp_mgt20 {	margin-top: 20px !important;}
	.sp_mgt30 {	margin-top: 30px !important;}
	.sp_mgt40 {	margin-top: 40px !important;}
	.sp_mgb0 { margin-bottom: 0 !important;}
	.sp_mgb5 {	margin-bottom: 5px !important;}
	.sp_mgb10 {	margin-bottom: 10px !important;}
	.sp_mgb15 {	margin-bottom: 15px !important;}
	.sp_mgb20 {	margin-bottom: 20px !important;}
	.sp_mgb30 {	margin-bottom: 30px !important;}
	.sp_mgb40 {	margin-bottom: 40px !important;}

	.spNone { display: none !important; }
}
.fntS {
	font-size: 86.66%;
}
/* ----------------------------------------

clearfix

---------------------------------------- */

/* Modern Browsers
------------------------------- */
.clearfix:after,
.imgSec01:after {
	display: block;
	visibility: hidden;
	clear: both;
	height: 0;
	content: ".";
	line-height: 0;
}

/* Legacy IE
------------------------------- */
.clearfix,
.imgSec01 {
	*zoom: 1;
}

