/* CSS Document */


/*=========================================================
 standard body --update: 2024.5.15
===========================================================*/
#body{
	width: 1160px;
	font-size: 1rem;
	/*text-align: justify;
	text-justify:inter-ideograph;*/
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

#body *{
	box-sizing: border-box;
}
#body.full-width{
	display: block;
}
#body.full-width .content .inner,
#body.full-width .bread{
	width: 1160px;
}
#body.full-width .content .inner {
	line-height: 1.9375rem;
}
#body .bread{
	width: 100%;
}
#main{
	float: none;
	width: 800px;
	flex: 0 0 auto;
	line-height: 1.875;
	padding-top: 10px;
}
#sub{
	float: none;
	width: 300px;
	flex: 0 0 auto;
}
#sub .banner{
	display: none;
}

p.bread,
.bottom p.bread{
	font-size: 0.875rem;
	padding-bottom: 8px;
}

p.caption,
p.note{
	font-size: 0.875rem;
	line-height: 1.7;
}

/*clearfix reset
*****************/
/*#main ul:after, #main dl:after, #body:after, #main:after, #bnav:after, article:after, hgroup:after, footer:after, section:after, #main .section:after, #main .col:after {
	display: none;
}*/

#body:after, #main:after, #bnav:after,
#bnav *:after{
	display: none;
}

/*grid
*****************/

#body .col {
	float: none;
	flex: 0 0 auto;
}

/* grid in #main */
#body .l { margin-right: 0; }

.col2 .col,
.full-width .col2 .col,
.col6 .col2 .col,
.full-width .col6 .col2 .col,
.col5 .col2 .col,
.full-width .col5 .col2 .col,
.col4 .col2 .col,
.full-width .col4 .col2 .col,
.col3 .col2 .col,
.full-width .col3 .col2 .col{ width: calc((100% - 40px)/2); }

.col3 .col,
.full-width .col3 .col,
.col2 .col3 .col,
.full-width .col2 .col3 .col,
.col4 .col3 .col,
.full-width .col4 .col3 .col,
.col5 .col3 .col,
.full-width .col5 .col3 .col,
.col6 .col3 .col,
.full-width .col6 .col3 .col{ width: calc((100% - 80px)/3); }
.col3 .col.span-2,
.full-width .col3 .col.span-2{ width: calc((100% - 80px)*2/3 + 40px); }

.col4 .col,
.full-width .col4 .col { width: calc((100% - 120px)/4); }
.col4 .col.span-2,
.full-width .col4 .col.span-2{ width: calc((100% - 120px)*2/4 + 40px); }
.col4 .col.span-3,
.full-width .col4 .col.span-3{ width: calc((100% - 120px)*3/4 + 80px); }

.col5 .col,
.full-width .col5 .col{ width: calc((100% - 160px)/5); }
.col5 .col.span-2,
.full-width .col5 .col.span-2{ width: calc((100% - 160px)*2/5 + 40px); }
.col5 .col.span-3,
.full-width .col5 .col.span-3{ width: calc((100% - 160px)*3/5 + 80px); }
.col5 .col.span-4,
.full-width .col5 .col.span-4{ width: calc((100% - 160px)*4/5 + 120px); }

.col6 .col,
.full-width .col6 .col{ width: calc((100% - 200px)/6); }
.col6 .col.span-2,
.full-width .col6 .col.span-2{ width: calc((100% - 200px)*2/6 + 40px); }
.col6 .col.span-3,
.full-width .col6 .col.span-3{ width: calc((100% - 200px)*3/6 + 80px); }
.col6 .col.span-4,
.full-width .col6 .col.span-4{ width: calc((100% - 200px)*4/6 + 120px); }
.col6 .col.span-5,
.full-width .col6 .col.span-5{ width: calc((100% - 200px)*5/6 + 160px); }

.col.c-narrow,.col .c-narrow{width: 75%;}
.col.c-narrow--60, .col .c-narrow--60{width: 60%;}

/*new styles
=======================================*/

/*********************************************************
  =Object
---------------------------------------------------------- */

/*---------Component------------------*/

/*layout*/
.c-inner--bodyWidth{
	width: 1160px;
	margin: 0 auto;
}

.c-flex--between{
	display: flex;
	justify-content: space-between;
}
.c-flex--start{
	display: flex;
	justify-content: flex-start;
}
.c-flex--end{
	display: flex;
	justify-content: flex-end;
}
.c-flex--center{
	display: flex;
	justify-content: center;
}
.c-flex--center.column{
	flex-direction: column;
}
.c-flex--wrap{
	flex-wrap: wrap;
}
.c-flexitem--center{
	align-items: center;
}
.c-flexitem--top{
	align-items: flex-start;
}
.c-flexitem--bottom{
	align-items: flex-end;
}
.c-flexcontent--center{
	align-content: center;
}

a.c-inline_link{text-decoration: underline;}
a.c-inline_link:hover{background-color: #f0f0f0;}

.c-border_box{
	box-sizing: border-box;
	border: #ccc 1px solid;
	padding: 1.125rem 1.5rem;
}

.c-wbk{
	background-color: #fff;
}
.c-gbk{
	background-color: #edeef0;
}
.c-gbk--middle{
	background-color: #D9DCE0;
}

.c-align--center{
	text-align: center;
}
.c-align--left{
	text-align: left;
}
.c-align--right{
	text-align: right;
}

.c-mb--1{
	margin-bottom: 1.875rem !important;
}
.c-mb--2{
	margin-bottom: 3.75rem !important;
}
.c-mb--3{
	margin-bottom: 5.625rem !important;
}
.c-mt--1{
	margin-top: 1.875rem !important;
}
.c-mt--2{
	margin-top: 3.75rem !important;
}
.c-mt--3{
	margin-top: 5.625rem !important;
}
.c-mr--1{
	margin-right: 1.5rem !important;
}
.c-mr--2{
	margin-right: 5rem !important;
}
.c-ml--1{
	margin-left: 1.5rem !important;
}
.c-ml--2{
	margin-left: 3rem !important;
}

.c-small_txt{
	font-size: 81.25%;
	line-height: 1.5;
}
.c-indent{
	padding-left: 1.25rem !important;
}
.c-num_indent{
	padding-left: 1em;
	text-indent: -1em;
}
.c-summary{
	font-size: 0.875rem;
	line-height: 1.5;
	margin-top: 0.25rem;
}
.c-tight_spacing{
	letter-spacing: -0.02em;
}
.c-paren{
	display: inline-block;
	margin-left: -0.4375em;
	margin-right: -0.4375em;
}
.c-fill-width{
	width: 100%;
	height: auto;
}
.c-fill-height{
	height: 100%;
	width: auto;
}
.c-img--shadow{
	box-shadow: 1px 2px 12px -2px rgba(0,0,0,0.3);
}
.c-img--radius{
	border-radius: 6px;
	overflow: hidden;
}
.c-border_img{
	border: #ccc 1px solid;
}
.c-iblock{
	display: inline-block; /*for IE Bug*/
}
.c-normal{
	font-weight: normal !important;
}

/*btn*/
.c-bn_btn{
	position: relative;
	background-color: #fff;
	box-shadow: 1px 2px 12px -2px rgba(0,0,0,0.35);
	text-align: left;
}
.c-bn_btn.c-align_height{
	height: 100%;
}
.c-bn_btn.c-padding{
	padding: 1.0625rem 1.5rem 1.25rem 1.375rem;
}
.c-bn_btn.small{
	font-size: 0.875rem;
}
.c-bn_btn.small.c-padding{
	padding: 0.125rem 1.8125rem 0.125rem 1.8125rem;
}
.c-bn_btn a{
	color: #101010;
	text-decoration: none;
}
.c-bn_btn.c-arrow_right{
	padding-right: 40px;
}
.c-bn_btn.c-arrow_right::after{
	content: "";
	display: block;
	width: 12px; height: 24px;
	background: url("../image/bn_arrow/arrow_right_m_red.svg") no-repeat 50% 50%;
	position: absolute;
	right: 16px; top: 50%;
	margin-top: -13px;
}
.c-bn_btn.small.c-arrow_right::after{
	width: 7px; height: 13px;
	background: url("../image/bn_arrow/arrow_right_s_red.svg") no-repeat 50% 50%;
	right: 12px; top: 50%;
	margin-top: -7px;
}

#main .c-bn_btn h3,
#main .c-bn_btn h4,
.c-bn_btn h3,
.c-bn_btn h4{
	margin: 0;
	font-size: 1.125rem;
	font-weight: 500;
	line-height: 1.5;
	font-family:"Roboto","Noto Sans JP","メイリオ", Meiryo, "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "ＭＳ ゴシック", sans-serif;
}

.c-bn_btn .c-summary{
	margin-top: 0.25rem;
}

.c-bn_btn.p-pdf_icon{
	display: block;
	padding: 1.125rem 1rem 1.25rem 3.5rem;
	line-height: 1.5;
	/*font-size: 1rem;*/
	background: #fff url("/common/image/icon_pdf_large.png") no-repeat 0.5rem 48%;
	text-decoration: none;
	color: #212121;
}

/*c-block_hover*/
.c-block_hover{
	position: relative;
}
.c-block_hover a:before{
	content: '';
	display: block;
	box-sizing: border-box;
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0px; top: 0px;
	transition: all 0.3s;
	border: #a6c4eb 1px solid;
	border-radius: 2px;
	background-color: rgba(166,196,235,0.3);
	opacity: 0;
}
.c-block_hover:hover a:before{
	border-width: 2px;
	opacity: 1;
}

/*box_article*/
.c-box_article{
	padding: 0rem 1.875rem; /*30px*/
}
.c-box_article.c-border{
	padding-left: 29px;
	padding-right: 29px;
	border: #ccc 1px solid;
	background-color: inherit;
}
.c-box_article.c-radius{
	border-radius: 6px;
}
.c-box_article.c-padding{
	padding: 1.5625rem;
}

/**/
.c-boxshadow{
	box-shadow: 1px 2px 12px -2px rgba(0,0,0,0.35);
}


/*---------Project------------------*/

/*p-thumb_link*/
.p-thumb_link{
	display: flex;
	justify-content: flex-start;
}
.p-thumb_link.c-vertical{
	flex-direction: column;
	justify-content: flex-start;
	height: 100%;
}
.p-thumb_link__img{
	flex: 0 0 auto;
	width: 30%;
}
.p-thumb_link__txt{
	flex: 1 0 auto;
	width: 30%;
	padding: 0.75rem 1.5rem 1.125rem;
}
/*for IE11 Bug*/
@media all and (-ms-high-contrast:none){ /* IE11 */
  *::-ms-backdrop, .p-thumb_link__txt {
		padding: 0.5rem 1.5rem 1.375rem;
	}
}
.c-vertical .p-thumb_link__img{
	width: 100%;
	height: auto;
}
.c-vertical .p-thumb_link__txt{
	width: 100%;
	height: auto;
	display: flex;
	justify-content: center;
	flex-direction: column;
	align-items: center;
	padding-left: 0.875rem;
	padding-right: 0.875rem;
}
.c-arrow_right .p-thumb_link__txt{
	padding-right:40px;
}
.p-thumb_link.c-arrow_right.large::after{
	content: "";
	display: block;
	width: 24px;
	height: 44px;
	background: url("../image/bn_arrow/arrow_right_l_red.svg") no-repeat 0px 50%;
	position: absolute;
	right: 20px; top: 50%;
	margin-top: -22px;
}
.p-thumb_link.c-arrow_right::after{
	width: 14px;
	height: 24px;
	background: url("../image/bn_arrow/arrow_right_m_red.svg") no-repeat 0px 50%;
	position: absolute;
	right: 16px; top: 50%;
	margin-top: -13px;
}
.p-thumb_link h3.c-small{
	font-size: 1.25rem;
}
.p-thumb_link h4{
	margin-bottom: 0.5rem;
}
.p-thumb_link a{
	color: #212121;
	text-decoration: none;
}

/**/
.p-thumb_link__img.large{
	width: 40%;
}
.p-thumb_link__img.small{
	width: 25%;
}
.p-thumb_link__img.free{
	width: auto;
}


/*
 Utility
*/

.u-mb--none{
	padding-bottom: 0 !important;
	margin-bottom: 0 !important;
}
.u-spMb--1{}

br.u-spBr{
	display: none;
}
br.u-spNone{}
.u-spNarrow{}


/*=========================================================
 sp
===========================================================*/

body.sp #body{
	padding-bottom: 0;
}

body.sp #main{
	font-size: 0.9375rem !important;
	padding-top: 0;
	padding-bottom: 0;
}

.sp #main h1.title_large{
	font-size: 1.4375rem;
}
.sp #main h2.heading_line{
	font-size: 1.25rem;
	overflow: visible;
}
.sp #main h3.heading_line{
	font-size: 1.0625rem;
}
.sp p.caption,
.sp p.note{
	font-size: 0.75rem;
	line-height: 1.5;
}

.sp .c-summary{
	font-size: 0.75rem;
}

.sp	.c-inner--bodyWidth{
	width: 100%;
	padding-left: 4%;
	padding-right: 4%;
}

.sp .c-flex--start,
.sp .c-flex--end,
.sp .c-flex--between,
.sp .c-flex--center{
	display: inherit;
}
.sp .col .c-flex_center { display: flex; }

.sp .col.c-narrow--60,
.sp .col .c-narrow--60,
.sp .col3 .col,
.sp .col4 .col,
.sp .col5 .col,
.sp .col5 .col.span-2
{width: 75% !important; margin-left: auto; margin-right: auto;}

.sp .col.c-narrow { width: 100% !important; }
.sp .col .c-narrow { width: 100% !important; }
.sp .col2 .col { width: 100% !important; }
.sp .col3 .col.span-2 { width: 100% !important; }
.sp .col4 .col.span-2 { width: 100% !important; }
.sp .col4 .col.span-3 { width: 100% !important; }
.sp .col5 .col.span-3 { width: 100% !important; }
.sp .col5 .col.span-4 { width: 100% !important; }

.sp .c-box_article{
	padding-left:1.25rem !important;
	padding-right:1.25rem !important;
}

.sp .u-fullWidth{
	width: 106.2% !important;
	margin-left: -3.1% !important;
	margin-right: -3.1% !important;
}
.sp #main .u-spNarrow,
.sp #main .col.u-spNarrow{
	width: 75% !important; margin-left: auto; margin-right: auto;
}

.sp .p-thumb_link__txt{
	padding: 0.5rem 1rem 0.6875rem;
}

.sp .c-vertical .p-thumb_link__img{
	width: 100%;
}

.sp .u-spMb--1{
	margin-bottom: 1.875rem;
}
.sp .u-spMb--2{
	margin-bottom: 3.75rem;
}

.sp br.u-spNone{
	display: none;
}
.sp br.u-spBr{
	display: inline;
}
.sp .u-spNarrow,
.sp .col.u-spNarrow{
	width: 75% !important; margin-left: auto; margin-right: auto;
}