
@charset "UTF-8";
/* CSS Document */


/* Reset
------------------------------------------------------------*/
h1,h2,h3,h4,h5,h6 { font-size: 100%; }
address,em { font-style: normal; }
strong,th { font-weight: normal; }
table {
	border-collapse: collapse;
	border-spacing: 0;
}
th { text-align: left; }
legend { display: none;	}
img,fieldset { border: 0; }
img { vertical-align: middle; }
li { list-style-type: none; }
h1,h2,h3,h4,h5,h6,p,ul,li,dl,dt,dd { margin: 0px; }
ul { padding: 0px; }
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section { display: block; }
*:first-child+html body {
	font-size: 64.5%; /*IE Hack*/
}
html {
	overflow-y: scroll; /*ページ切り替え時のガタつき防止*/
	-webkit-text-size-adjust: none /*PC上とスマフォで文字サイズ固定&スマフォの縦と横画面で文字サイズ固定*/
}
img {
    box-shadow: #000 0 0 0;/*firefoxのfadeのずれ調整*/
} 
img, x:-moz-any-link, x:default {
    box-shadow: #000 0 0 0; /*IE以下のfadeのずれ調整*/
}


/* トップページ
------------------------------------------------------------*/

/* common */
body {
    position: relative;
    margin: 0;
    padding: 0;
    font-size: 16px;
    /*font-family: 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', 'メイリオ', Meiryo, 'ＭＳ Ｐゴシック', sans-serif;*/
	font-family:"Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
    line-height: 1.6em;
    color: #333;
    background-color: #fff;
}
a {
    text-decoration: none;
    color: #333;
}
a:visited{
	color: #333;
}
a:hover {
    text-decoration:underline;
}

/* button */
a.button {
    min-width: 200px;
	padding: 15px 50px;
    text-align: center;
    text-decoration: none;
	font-weight: bold;
    outline: none;
	line-height: 1.1em;
    border-radius: 10px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	box-shadow: 0 0 8px #ccc;
	-webkit-transition: all .3s;
	transition: all .3s;
	background-color: #14274f;
	color: #fff;
	display: inline-block;
}
a.button:hover{
    box-shadow: none;
	text-decoration: none;
	background-color: #09132e;
}


/* arrow */
/* 矢印が右に移動する */
.arrow-link01,
.arrow-link02 {
	position: relative;
    display: inline-block;
	padding: 0 60px 0 40px;
	font-size: 18px;
	font-weight: bold;
    text-decoration: none;
    outline: none;
	-webkit-transition: all .3s;
    transition: all .3s;
}
.arrow-link01 {
	color: #333;
}
.arrow-link02 {
	color: #fff;
}
/*矢印と下線の形状*/
.arrow-link01::before,
.arrow-link02::before{
    content: '';
	position: absolute;
    bottom:-8px;
    left:15%;
    /*下線の形状*/    
    width: 85%;
    height: 1px;
	-webkit-transition: all .3s;
    transition: all .3s;
}
.arrow-link01::after,
.arrow-link02::after{
    content: '';
	position: absolute;
    bottom: -1px;
    right: -2px;
    /*矢印の形状*/    
    width: 25px;
    height: 1px;
	background:#333;
    transform: rotate(35deg);
    -webkit-transition: all .3s;
    transition: all .3s;
}
.arrow-link01::before,
.arrow-link01::after{
	background: #333;
}
.arrow-link02::before,
.arrow-link02::after{
	background: #fff;
}
/* hover */
.arrow-link01:hover,
.arrow-link02:hover{
	text-decoration: none;
}
.arrow-link01:hover::before,
.arrow-link02:hover::before{
	width: 100%;
}
.arrow-link01:hover::after,
.arrow-link02:hover::after{
	right: -16% ; /* IE8以下とAndroid4.3以下用フォールバック */
	right: -webkit-calc(-15% + -2px) ;
	right: calc(-15% + -2px) ;
}
.arrow-link01:hover,
.arrow-link02:hover{
	color: #ebaa39;
}
.arrow-link01:hover::before,
.arrow-link01:hover::after,
.arrow-link02:hover::before,
.arrow-link02:hover::after{
	background: #ebaa39;
}

/* 矢印の伸びの調整 */
@media screen and ( max-width:1210px ) /* 1160px＋50px */
{
	.arrow-link01,
	.arrow-link02 {
		margin-right: 50px;
	}
}

/* header */
header {
    width: 100%;
	height: 122px;
    overflow: hidden;
    background-color: #14274f;
    color: #fff;
}
.header-tagline {
	height: 22px;
	padding-top: 5px;
    font-size: 12px;
}
.header-wrap {
	margin: 0 50px;
}
@media screen and ( max-width:1160px ) 
{
	.header-wrap {
		margin: 0 20px;
	}
}
.header-title{
	height: 95px;
    display: -webkit-flex;
	display: flex;
    -webkit-align-items: center;
	align-items: center;
}
.header-logo {
    flex: 1;
	/*font-size: 34px;*/
	line-height: 1em;
	font-weight: bold;
}
.header-logo img {
	width: 340px;
	height: 70px;
	object-fit: contain;
	object-position: left;
}
.header-tel {
    white-space: nowrap;
    display: flex;
    flex-direction: column;
}
.header-contact a {
	margin-left: 30px;
    padding: 10px 30px;
	border-left: solid 1px #fff;
	display: block;
}
.header-contact a:hover img{
    opacity: 0.5;
}
.header-contact-image{
	width: 30px;
    height: 30px;
	-webkit-transition: all .3s;
	transition: all .3s;
}
.header-tel-top {
    vertical-align: middle;
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: flex-end;
	justify-content: flex-end;
}
.header-icon-tel {
    width: 20px;
    height: 20px;
	margin-right: 5px;
}
.header-tel-1 span {
    font-size: 28px;
}
.header-tel-2 {
    font-size: 13px;
}
.header-fukurou {
    width: 70px;
    height: 70px;
    vertical-align:middle;    
}



/* ナビゲーション
------------------------------------------------------------*/

.header-menu-wrap {
    width: 100%;
    background-color: #14274f;
}
.header-menu {
    margin-right: auto;
    margin-left: auto;
}
.header-menu a:hover{
    text-decoration: none;
}
.navi-icon{
    height: 20px;
    width: 20px;
    margin-right: 5px;
}
.init-bottom:hover {
    position: relative;
    text-decoration: none;
}
.init-bottom .nav-arrow {
    display: none;
    position: absolute;
    top: 60px;
    left: 40%;
    z-index: 1000;
}
.init-bottom .nav-arrow img {
    width: 56px;
	height: 24px;
}
.init-bottom:hover .nav-arrow {
    border: none;
    display: block;
}
/* mddNav（ドロップダウンメニュー全体とナビボタン） */
#mddNav {
	position: relative;
	z-index: 1000;
	width: 100%;
	height: 60px;
	text-align: center;
}
#mddNav > ul {
	margin: 0 50px;
	height: 60px;
	display: -webkit-flex; 
	display: flex;
	-webkit-justify-content: flex-end;
	justify-content: flex-end;	
}
@media screen and ( max-width:1160px ) 
{
	#mddNav > ul {
		margin: 0 20px;
	}
}
#mddNav > ul > li {
	height: 60px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
#mddNav > ul > li:not(:first-child) {
	padding-left: 40px;
}
#mddNav > ul > li a {
	color: #fff;
}
#mddNav > ul > li > a {
	height: 60px;
	-font-weight: bold;
	transition: all 0.2s linear;
	font-weight: bold;
	display: -webkit-flex; 
	display: flex;
	-webkit-justify-content: center;
	justify-content: center;
	-webkit-align-items: center;
	align-items: center;
	line-height: 1.2em;
}
/* mddWrap */
#mddNav .mddWrap {
	width: 100%;
	height: auto !important;
	padding: 70px 0;
	position: absolute;
	top: 60px;
	left: 0;
	z-index: 100;
	overflow: hidden;
	text-align: center;
	background: #fff;
	background: linear-gradient(to bottom,  #fff 0%,#efefef 100%);
	box-shadow: 0 2px 2px #ccc;
	display: none;
}
#mddNav .mddWrap .dropContent {
	width: 100%;
	margin: 0 auto;
	padding: 0 100px;
	line-height: 1.5em;
	text-align: left;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
@media screen and ( max-width:1160px ) 
{
	#mddNav .mddWrap .dropContent {
		padding: 0 20px;
	}
}
#mddNav .mddWrap .dropContent ul{
	width: 100%;
	display: -webkit-flex;
	display: flex;
	flex-wrap: -webkit-wrap;
	flex-wrap: wrap;
}
#mddNav .mddWrap .dropContent ul li {
	width: 30%;
	margin: 15px 1.5%;
	word-wrap: break-word;
}
#mddNav .mddWrap .dropContent ul li .border {
    border-left: 5px solid #14274f;
    padding-right: 5px;
}
#mddNav .mddWrap .dropContentul li i {
	margin-right: 0.5em;
}
#mddNav .mddWrap .dropContent ul li a:link {
	text-decoration: none;
	color: #333;
}
#mddNav .mddWrap .dropContent ul li a:hover {
	text-decoration: underline;
}
#mddNav .mddWrap .dropContent ul li a:visited {
	color: #333;
}



/* スライダーとhot情報
------------------------------------------------------------*/
/* slider */
.slider li {
    max-height: 600px;
}
/*スライド画像の横幅可変*/
.slider img {
	width: 100%;
    height: auto;
}
/*左右の矢印の色を変える*/
.slick-prev:before,
.slick-next:before {
    color: #fff;
}
/*左右の矢印の位置を変える*/
.header-slider .slick-next {
    right: 70px;
    z-index: 99;
}
.header-slider .slick-prev {
    left: 70px;
    z-index: 100;
}

/*画像サイズ、表示位置調整*/
.center-item-pc li{
	position: relative;
	overflow: hidden;
	width: 100%;
	height: 550px;
}
.center-item-pc li img{
	width: auto;
	height: 550px;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
@media screen and ( min-width:1600px )
{
		.center-item-pc li{
		height: 600px;
	}
		.center-item-pc li img{
		width: auto;
		height: 600px;
	}
}
@media screen and ( max-width:1100px )
{
	.center-item-pc li{
		height: 450px;
	}
		.center-item-pc li img{
		height: 450px;
	}
}
@media screen and ( max-width:1000px )
{
	.center-item-pc li{
		height: 400px;
	}
		.center-item-pc li img{
		height: 400px;
	}
}

/* hot */
.hot-wrap {
    width: 100%;
	padding: 35px 0 70px 0;
    background-image: url(/images/sd/sd02/top/bk_hot.png);
	background-repeat: no-repeat;
	background-position : bottom center;
	background-size: 100% 100%;
}
.hot-title {
    width: 168px;
	margin: 0 auto 15px auto;
	padding-bottom: 15px;
	position:relative;
}
.hot-title img {
    width: 100%;
    height: auto;
}
.hot-title::after{
	content: "";
	display: block;
	width: 100px;
	height: 2px;
	margin: 0 auto;
	background-color: #14274f;
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
}
.hot-slider {
	max-width: 1060px;
    margin:0 auto;
    position:relative;
}
.hot-slider ul {
    padding:0 25px;	
}
.hot-slider img {
	width: 235px;
    height: auto;
	margin: 10px auto;
	-webkit-transition: all .3s;
	transition: all .3s;
	box-shadow: 0 0 6px #999;
}
.hot-slider img:hover {
	box-shadow: none;
}
.hot-slider .slick-next {
    right: 1px;
    z-index: 99;
}
.hot-slider .slick-prev {
    left: 1px;
    z-index: 100;
}
/*左右の矢印の色を変える*/
.hot-slider .slick-prev:before,
.hot-slider .slick-next:before {
    color: #c7c7c7;
}


/*　画面下部固定tel（スマホ用tel）
------------------------------------------------------------*/
	
.sp-tel-wrap{
	width:360px;
	position: fixed;
	left: 0;
	bottom: 20px;
	z-index: 100;
	background-color: #14274f;
}
.sp-tel{
	color:#fff;
	border:solid 3px #d7e0f3;
	background-image: url(/images/sd/sd02/contact_sp_c4.png);
	background-repeat: no-repeat;
	background-position : 0% 0%;
	background-size: 70px auto;
	padding: 10px 2%;
	text-align: center;
}
.sp-tel a{
	color:#fff;
	pointer-events: none;
}
.sp-tel-num{
	font-weight:bold;
	line-height:125%;
	font-size:26px;
}
.sp-tel-num::before{
	content: "tel.";
	font-size:12px;
	padding-right: 2px;
}
.sp-tel-txt{
	padding: 5px 0 0 0;
	font-size:12px;
}



/* ふくろう便り（TOP）
------------------------------------------------------------*/

.fukurou-wrap {
    width: 100%;
	max-width: 1160px;
    margin: 100px auto;
}
.fukurou-top h2 {
	padding-bottom: 60px;
	font-size: 38px;
	font-weight: bold;
	display: -webkit-flex;
	display: flex;
	-webkit-flex-direction: column;
	flex-direction: column;
	-webkit-align-items: center;
	align-items: center;
}
.fukurou-top img {
    width: 60px;
    height: 16px;
	margin-bottom: 20px;
}

.fukurou-body {
	padding-bottom: 40px;
    display: -webkit-flex;
	display: flex;
    -webkit-flex-wrap: wrap;
	flex-wrap: wrap;
   -webkit-justify-content: space-between;
	justify-content: space-between;
}
.fukurou-body img {
    height: 212px;
    width: 212px;
}
.fukurou-body-contents a{
	background-color: #fff;
	border-radius: 10px;
	box-shadow: 0 0 10px #dbdbdb;
	display: -webkit-flex;
	display: flex;
	-webkit-align-items: center;
	align-items: center;
	border: solid 1px #eaeaea;
	-webkit-transition: all .3s;
	transition: all .3s;
	position: relative;
}
/* 矢印 */
.fukurou-body-contents a::before {
    content: '';
	position: absolute;
    right: 20px;
    /*下線の形状*/    
    width: 40px;
    height: 1px;
	background:#333;
	-webkit-transition: all .3s;
    transition: all .3s;
}
.fukurou-body-contents a::after {
    content: '';
	position: absolute;
    right: 18px;
    /*矢印の形状*/    
    width: 25px;
    height: 1px;
	background:#333;
    transform: rotate(35deg);
    -webkit-transition: all .3s;
    transition: all .3s;
}
/* hover */
.fukurou-body-contents a:hover{
	box-shadow: none;
	text-decoration: none;
	background-color: #f8f8f8;
}

/* 最新の記事 */
.fukurou-body-contents:first-child {
	width: 98%;
	margin: 1%;
}
.fukurou-body-contents:first-child .fuku-img img  {
	width: 456px;
    height: 287px;
	object-fit: cover;
	border-top-left-radius: 10px;
	border-bottom-left-radius: 10px;
}
.fukurou-body-contents:first-child .fukurou-body-text  {
	width: 100%;
	padding: 10px 40px;

}
.fukurou-body-contents:first-child .f-title {
	font-size: 22px;
	line-height: 1.8em;
}
.fukurou-body-contents:first-child .f-category {
	padding-bottom: 10px;
}
.fukurou-body-contents:first-child .timestamp {
	padding-bottom: 20px;
	font-size: 20px;
	font-weight: bold;
}
.fukurou-body-contents:first-child .new {
	padding: 10px 40px;
	position: absolute;
	top: 30px;
	right: -1%;
	background-color: #ebaa39;
	color: #fff;
	font-size: 20px;
	font-weight: bold;
}
.fukurou-body-contents:first-child a::before {
    bottom: 20px;
}
.fukurou-body-contents:first-child a::after {
    bottom: 27px;
}

/* 他4件の記事 */
.fukurou-body-contents:not(:first-child) {
	width: 48%;
	margin: 1%;
}
.fukurou-body-contents:not(:first-child) .fuku-img img  {
	width: 260px;
    height: 164px;
	object-fit: cover;
	border-top-left-radius: 10px;
	border-bottom-left-radius: 10px;
}
.fukurou-body-contents:not(:first-child) .fukurou-body-text {
	width: 100%;
    padding: 10px 20px;
}
.fukurou-body-contents:not(:first-child) .new {
    display: none;
}
.fukurou-body-contents:not(:first-child) a::before {
    bottom: 13px;
}
.fukurou-body-contents:not(:first-child) a::after {
    bottom: 20px;
}

.f-category {
    color: #ebaa39;
	font-weight:bold;
}
.f-title {
    font-weight: bold;
}
.timestamp {
	color: #ebaa39;
}
.fukurou-footer {
    padding-top: 30px;
    max-width: 1160px;
    margin-right: auto;
    margin-left: auto;
    text-align: right;
}
@media screen and ( max-width:1000px )
{
	/* 他4件の記事 */
	.fukurou-body-contents:not(:first-child) {
		width: 98%;
		margin: 1%;
	}
	.fukurou-body-contents:not(:first-child) .fuku-img img  {
		width: 320px;
		height: 200px;
	}
}

/* Lock（TOP）
------------------------------------------------------------*/

.lock-wrap{
    width: 100%;
	margin: 0 auto;
	padding: 100px 0;
    background-color: #14274f;
    background-image: url('/images/sd/sd02/top/bk_lock02.png');
    background-repeat: no-repeat;
    background-position: left 50px top 30px;
	background-size: 434px 184px;
}
.lock-top {
    max-width: 1160px;
    margin: 0 auto;
    color: #f7f7f7;
	text-align: center;
	font-weight: bold;
}
.lock-top h2 {
	padding-bottom: 30px;
	margin-bottom: 30px;
	font-size: 38px;
	position:relative;
}
.lock-top h2::after{
	content: "";
	display: block;
	width: 200px;
	height: 2px;
	margin: 0 auto;
	background-color: #fff;
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
}
.lock-top p {
    line-height: 1.8em;
	font-size: 18px;
}
.lock-body {
    max-width: 1160px;
    margin: 90px auto 0 auto; 
}
.lock-body-detail-wrap{
    width: 90%;
	height: auto;
	background-color: rgba(255,255,255,0.6);
	border-radius: 10px;	
	display: -webkit-flex;
	display: flex;
    -webkit-justify-content: space-between;
	justify-content: space-between;
}
.lock-body-detail-wrap:nth-child(even){
	margin: 0 4% 80px 6%;
	-webkit-flex-direction: reverse;
	flex-direction: reverse;
}
.lock-body-detail-wrap:nth-child(odd){
	margin: 0 6% 80px 4%;
	-webkit-flex-direction: row-reverse;
	flex-direction: row-reverse;
}
.lock-body-detail-wrap img{
	width: 100%;
    height: auto;
	border-radius: 10px;
}
.lock-body-detail-wrap a.button {
	box-shadow: 0 0 8px #666;
}
.lock-body-detail-wrap a.button:hover {
	box-shadow: none;
}
.lock-body-detail01,
.lock-body-detail01r {
	width: 55%;
    height: auto;
	min-height: 320px;
	padding: 50px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
    text-align: center;
}
.lock-body-detail-wrap:nth-child(even) .lock-body-detail02r{
	width: 50%;
	margin: -20px -4% 0 0;
}
.lock-body-detail-wrap:nth-child(odd) .lock-body-detail02{
	width: 50%;
	margin: -20px 0 0 -4%;
}
.lock-text-top h3 {
    font-size: 30px;
	line-height: 1.4em;
}
.lock-text-body {
   padding: 40px 0 30px 0;
}
.lock-footer {
    max-width: 1160px;
    margin: 0 auto;
    text-align: right;
}

	
/* Service（TOP）
------------------------------------------------------------*/

.service-wrap{
    width: 100%;
	margin: 0 auto;
	padding: 100px 0;
    background-image: url('/images/sd/sd02/top/bk_service.png');
    background-repeat: no-repeat;
    background-position: left 50px top 30px;
	background-size: 672px 184px;
}
.service-top {
    max-width: 1160px;
    margin: 0 auto;
	text-align: center;
	font-weight: bold;
}
.service-top h2 {
	padding-bottom: 30px;
	margin-bottom: 30px;
	font-size: 38px;
	position:relative;
}
.service-top h2::after{
	content: "";
	display: block;
	width: 200px;
	height: 2px;
	margin: 0 auto;
	background-color: #14274f;
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
}
.service-top p {
	line-height: 1.8em;
	font-size: 18px; 
}
.service-body {
	width: 100%;
    max-width: 1160px;
    margin: 90px auto 0 auto;
    display: -webkit-flex;
	display: flex;
    -webkit-flex-wrap: wrap;
	flex-wrap: wrap;
    -webkit-align-items: stretch;
	align-items: stretch;
}
.service-detail-wrap {
	width: 31.3%;
	margin: 0 1%;
    background-color: #f3f3f3;
	border-radius: 10px;
    text-align: center;
    display: -webkit-flex;
	display: flex;
    -webkit-flex-direction: column;
	flex-direction: column;
    -webkit-justify-content: space-between;
	justify-content: space-between;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
.service-detail img{
    width: 100%;
	height: auto;
	border-top-left-radius: 10px;
	border-top-right-radius: 10px;
}
.service-detail p{
    padding: 0 30px;
    text-align: left;
}
.service-detail-title {
	padding: 30px;
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: center;
	justify-content: center;
	-webkit-align-items: center;
	align-items: center;
	font-size: 22px;
	line-height: 1.4em;
}
.service-detail-footer {
    padding: 30px;
    display: -webkit-flex;
	display: flex;
   -webkit-justify-content: center;
	justify-content: center;
   -webkit-align-items: flex-end;
	align-items: flex-end;
}
.service-detail-footer a.button {
	background-color: #fff;
    color: #333;
}
.service-detail-footer a.button:hover {
	background-color: #dbdbdb;
}
.service-footer {
	max-width: 1160px;
    margin: 0 auto;
	padding-top: 60px;
    text-align: right;
}

/* Products（TOP）
------------------------------------------------------------*/

.products-wrap {
    width: 100%;
	margin: 0 auto;
	padding: 100px 0;
    background-image: url('/images/sd/sd02/top/bk_products.png');
    background-repeat: no-repeat;
	background-position: left 50px top 30px;
	background-size: 716px 184px;
}
.products-body-wrap {
    max-width: 1160px;
	margin: 0 auto;
}
.products-body {
    display: -webkit-flex;
	display: flex;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
	padding: 50px;
    background-color: rgba(232,232,232,0.5);
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	border-radius: 10px;
	position: relative;
}
.products-body:after {
    position: absolute;
    content: "";
    left: 50px;
    top: -90px;
    width: 2px;
    height: 280px;
    background: #14274f;
    transform: rotate(45deg);
}
.products-text {
    width: 64%;
	margin: 1%;
	font-weight: bold;
}
.products-text img{
    width: 186px;
	height: auto;
}
.products-text h2 {
	padding-bottom: 60px;
	font-size: 38px;
	text-align: center;
}
.products-text p {
    line-height: 1.8em;
	font-size: 18px;
}
.products-item {
	width: 31%;
	margin: 1%;
    border-radius: 10px;
	background-color: #fff;
	box-shadow: 0 0 10px #ccc;
	-webkit-transition: all .3s;
	transition: all .3s;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
.products-item:hover{
    box-shadow: none;
	text-decoration: none;
	background-color: #dbdbdb;
}
.products-item:hover a{
	text-decoration: none;
}
.products-item h3{
	padding: 18px 20px;
	font-size: 18px;
}

.products-item img{
	width: 100%;
	height: auto;
	border-top-left-radius: 10px;
	border-top-right-radius: 10px;
}
.products-link {
	padding-top: 60px;
    text-align: right;
}
	

/* 共通バナー（TOP）
------------------------------------------------------------*/

.banner-wrap{
    width: 100%;
	padding: 90px 0;
}
.banner {
    max-width: 1160px;
    margin: 0 auto;
    display: -webkit-flex;
	display: flex;
    -webkit-justify-content: center;
	justify-content: center;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
}
.banner a {
    width: 24%;
	margin: 0.5%;
}
.banner img {
    width: 100%;
    height: auto;
	-webkit-transition: all .3s;
	transition: all .3s;
	box-shadow: 0 0 6px #ccc;
}
.banner a:hover img{
    box-shadow: none;
}

/* 共通バナー（一覧系）
------------------------------------------------------------*/

ul.list-bnr-box{
	width:100%;
	max-width: 1160px;
	margin: 0 auto;
	padding:120px 0;
	display: -webkit-flex;
	display: flex;
    -webkit-justify-content: center;
	justify-content: center;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
}
ul.list-bnr-box li{
	width: 24%;
	margin: 0.5%;
}
ul.list-bnr-box li img{
	width:100%;
	height:auto;
	-webkit-transition: all .3s;
	transition: all .3s;
	box-shadow: 0 0 6px #ccc;
}
ul.list-bnr-box a:hover img{
    box-shadow: none;
}

/* 共通バナー（サイドナビ）
------------------------------------------------------------*/

ul.side-bnr-box{
	margin: 0 auto;
	width:275px;
	padding-top:30px;
}
ul.side-bnr-box li{
	padding: 5px 0;
}
ul.side-bnr-box li img{
	width:100%;
	height:auto;
	-webkit-transition: all .3s;
	transition: all .3s;
	box-shadow: 0 0 6px #ccc;
}
ul.side-bnr-box a:hover img{
	box-shadow: none;
}

/* Information（TOP）
------------------------------------------------------------*/

.information-wrap {
    width: 100%;
	padding: 120px 0 100px 0;
    background-color: #e8e8e8;
    background-image: url(/images/sd/sd02/top/bk_information.png);
	background-repeat: no-repeat;
	background-position : top center;
	background-size: 100% auto;
}
.information-top h2 {
	display: -webkit-flex;
	display: flex;
	-webkit-flex-direction: column;
	flex-direction: column;
	-webkit-align-items: center;
	align-items: center;
}
.information-wrap h2{
	padding-bottom: 60px;
    font-size: 38px;
	font-weight: bold;
}
.information-top img {
    width: 90px;
    height: 16px;
	margin-bottom: 20px;
}
.information-body {
    width: 100%;
	max-width: 1040px;
    margin: 0 auto;
}
.information-text {
	width: 100%;
    margin: 10px 0;
	padding: 16px 20px;
    background-color: #fff;
    display: -webkit-flex;
	display: flex;
    -webkit-align-items: center;
	align-items: center;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
.information-text a{
    color: #000;
}
.information-text a:hover{
    text-decoration:underline;
}
.ymd {
    margin-right: 40px; 
    font-weight: bold;
}
.information-footer {
	width: 100%;
    max-width: 1160px;
    margin: 60px auto 0 auto;
    text-align: right;
}


/* footer
------------------------------------------------------------*/	

footer {
    width: 100%;
    overflow: hidden;
    border-top: 3px solid #14274f;
}
footer a {
    color: #000;
}
.footer-wrap {
	max-width:1160px;
	width: 100%;
    padding:50px 0;
    margin: 0 auto;
    display:-webkit-flex;
    display:flex;
    -webkit-justify-content:space-between;
	justify-content:space-between;
    -webkit-flex-wrap: wrap;
	flex-wrap: wrap;
}
footer .footer-wrap li{
	padding-left:0.5em;
	text-indent:-0.5em;
    line-height:225%;
    font-weight:bold;
	font-size: 15px;
}
footer .footer-menu {
    width: 24%;
}
footer .category {
    border-left: 5px solid #14274f;
    padding-right: 5px;
}
footer .footer-wrap li .second{
    padding-left:0;
	text-indent:0;
	font-weight:normal;
	font-size: 14px;
}
footer li.second-multi{
    margin-top: 5px;
    margin-bottom: 5px;
    line-height:150%;
}

footer .second-top{
    border-top: 1px dotted #dbdbdb;
}
.footer-logo{
	max-width: 1160px;
    margin: 0 auto 10px auto;
	text-align: center;
	font-size: 25px;
	font-weight: bold;
}
.footer-logo img{
	width: 200px;
	height: 100px;
	object-fit: contain;
	object-position: center center;
}
.copyright {
    max-width: 1160px;
    margin-right: auto;
    margin-left: auto;
    margin-bottom: 10px;
	font-size:12px;
	text-align: center;
}
.followus {
    height: 45px;
    width: 100%;
    color: #fff;
    background-color: #14274f;
    display: flex;
    justify-content: center;
    align-items: center;
}
.followus img {
    height: 26px;
    width: auto;
    margin-left: 10px;
}

#page-top {
    position: fixed;
    bottom: 20px;
    right: 50px;
    z-index: 2000;
}
#page-top img {
    height: 60px;
    width: 60px;
}
#page-top a:hover {
    opacity: 0.5;
}
@media screen and ( max-width:1160px ) 
{
	#page-top {
		right: 20px;
	}
}


/*　下層共通
------------------------------------------------------------*/

/*パンくず*/
#breadcrumb{
	width: 100%;
	height:30px;
	text-align: right;
	position: relative;
	z-index: 1;
}
#breadcrumb ol{
	margin: 0;
	padding-right: 50px;
	background-image: url(/images/sd/sd02/breadcrumb.gif);
	background-repeat: no-repeat;
	background-position: left top;
	display: inline-block;
}
#breadcrumb ol li{
    list-style-type: none;
	display: inline;
	font-size:14px;
	height:30px;
	line-height:30px;
	padding-left:15px;
}
#breadcrumb ol li:not(:last-child):after {
    content: " > ";
	color: #999;
	padding-left: 15px;
}
#breadcrumb ol li:first-child{
	padding-left: 0px;
}
#breadcrumb ol li:last-child{
	color: #213f7e;
}

/* ベースボタン ※.buttonと同様のスタイルhtmlのclassの位置が違う */
.common-button a,
.list-button02-large {
    min-width: 200px;
	padding: 15px 50px;
    text-align: center;
    text-decoration: none;
	font-weight: bold;
    outline: none;
	line-height: 1.1em;
    border-radius: 10px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	box-shadow: 0 0 8px #ccc;
	-webkit-transition: all .3s;
	transition: all .3s;
	background-color: #14274f;
	color: #fff;
	display: inline-block;
}
.common-button a:hover,
.list-button02-large:hover {
    box-shadow: none;
	text-decoration: none;
	background-color: #09132e;
}

/* リンクボタン */
.link-btn {
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: center;
	justify-content: center;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
}
.link-btn a {
	width: 300px;
	margin: 10px;
	padding: 15px 50px;
	text-align: center;
	text-decoration: none;
	font-weight: bold;
	outline: none;
	line-height: 1.1em;
	border-radius: 10px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	box-shadow: 0 0 8px #ccc;
	-webkit-transition: all .3s;
	transition: all .3s;
	background-color: #14274f;
	color: #fff;
	display: block;
	background-image: url(/images/sd/sd02/link.png);
	background-repeat: no-repeat;
	background-position: right center;
	background-size:44px 44px;
}
.link-btn a:hover{
    box-shadow: none;
	text-decoration: none;
	background-color: #09132e;
}

div.button-wrap-center{
	max-width:1160px;
	margin: 0 auto;
	padding: 60px 0 10px 0;
	display:-webkit-flex;
	display:flex;
	-webkit-justify-content:center;
	justify-content:center;
	}
	
/*テキストまわり*/
.col1-wrap{
	max-width: 1160px;
	margin: 60px auto 0 auto;
	padding-bottom: 60px;
}	
.col1-wrap h1,
.detail-main h1{
	font-size: 38px;
	padding-bottom:10px;
	margin-bottom: 60px;
	border-bottom-width: 2px;
	border-bottom-style: solid;
	border-bottom-color: #14274f;
	line-height: 1.2em;
}
.col1-wrap h2,
.detail-main h2{
	font-size: 30px;
	padding: 5px 0px 5px 10px;
	margin: 90px 0 60px 0;
	line-height: 1.2em;
	border-left: solid 4px #333;
}
.col1-wrap h3,
.detail-main h3{
	margin: 90px 0 40px 0;
	font-size: 22px;
	color: #213f7e;
	line-height: 1.2em;
}
.col1-wrap h4,
.detail-main h4{
	padding: 40px 0 30px 0;
}
.col1-wrap h3+h4,
.detail-main h3+h4{
	padding: 0 0 30px 0;
}
.col1-wrap .read{
	width:auto;
	padding:30px 0 0 0;
	text-align: left;
}
.col1-wrap .catch-txt{
	font-weight:bold;
	padding-bottom:30px;
}
.col1-wrap .content-wrap-1 {
	display:-webkit-flex;
	display:flex;
}
.col1-wrap .content-wrap-1 .text {
	padding-right: 30px;
}
.main-img100 img{
	width:100%;
	height:auto;
}
.sub-img300 img{
	width:300px;
	height:auto;	
}
.sub-img100 img{
	width:100%;
	height:auto;
	padding-bottom:40px;
}
.sub-img690{
	text-align: center;
}
.sub-img690 img{
	width:690px;
	height:auto;
}
.text-info{
	padding: 25px;
	border: 5px solid #ECECEC;
	border-radius: 10px;
	display: -webkit-flex;
	display: flex;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
	}
.text-info .title{
	font-weight:bold;
	padding-bottom:20px;
	}
.text-info .text{
	width : 74%; /* IE8以下とAndroid4.3以下用フォールバック */
	width : -webkit-calc(100% - 280px) ;
	width : calc(100% - 280px) ;
	}
.text-info .cpmark img{
	width:120px;
	height:auto;
	padding: 10px 80px;
	}
.text-info .miwamark{
	width: 100%;
	text-align: center;
	}
.text-info .miwamark span{
	color:#009a5a;
	padding-right:10px;
	}	
.text-info .miwamark img{
	width:76px;
	height:auto;
	padding-right:10px;
	}
.text-info .freedialmark img{
	width:30px;
	height:auto;
	padding-right:10px;
	}
.text-info .line{
	width: 100%;
	text-align: center;
	padding:25px 0 10px 0;
	border-top: 1px solid #dbdbdb;
	}
.text-info .line span{
	font-weight:bold;
	font-size:26px;
	padding-right:10px;
	vertical-align:bottom;
	}	
.text-info .miwamark br,
.text-info .line br{
	display: none;
}				
.text-caution{
	padding: 20px;
	background-color:#fee8e7;
	clear: both;
	border-radius: 10px;
}
.text-annotation{
	padding: 20px;
	background-color:#fdf3e2;
	clear: both;
	border-radius: 10px;
}
.text-caution span{
	color:#fc241a;
}
.text-add{
	padding: 20px;
	background-color:#f7f7f7;
	clear: both;
	border-radius: 10px;
}
.text-pickup {
  position: relative;
  width: 100%;
  padding: 50px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  margin-bottom: 60px;
}
.text-pickup::before,
.text-pickup::after {
  position: absolute;
  top: 0;
  content: '';
  width: 30px;
  height: 100%;
  border-top: 1px solid #333;
  border-bottom: 1px solid #333;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.text-pickup::before {
  left: 0;
  border-left: 1px solid #333;
}
.text-pickup::after {
  right: 0;
  border-right: 1px solid #333;
}
.padding-b30{
	padding-bottom:30px;
}
.margin-b30{
	margin-bottom:30px;
}
.indent{
	padding-left:1em;
	text-indent:-1em;
}

/*　一覧系共通
------------------------------------------------------------*/

/*Lock一覧、Service一覧、Product一覧、会社案内*/
.list-common{
	margin-top: -30px;
}
.list-lock,.list-service,.list-product,.list-product02{
	background-image: url(/images/sd/sd02/bk_top.png);
	background-repeat: no-repeat;
	background-position : top center;
	background-size: 100% 445px;
}
.list-pagetitle{
	max-width: 1160px;
	width: 100%;
    margin: 0 auto;
	padding-top: 130px;
}
.list-pagetitle h1{
	padding-bottom: 30px;
	margin-bottom: 30px;
	font-size: 38px;
	position:relative;
	text-align: center;
	font-weight: bold;
}
.list-pagetitle h1::after{
	content: "";
	display: block;
	width: 200px;
	height: 2px;
	margin: 0 auto;
	background-color: #14274f;
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
}
.list-read{
	max-width: 1160px;
	width: 100%;
	margin: 0 auto;
	line-height: 1.8em;
	font-size: 18px;
	text-align: center;
	font-weight: bold;
}
.list-common .service-detail-wrap {
	margin-bottom:  2%;
    background-color: #fff;
	border: solid 1px #eaeaea;
	box-shadow: 0 0 10px #dbdbdb;
	-webkit-transition: all .3s;
	transition: all .3s;
	position: relative;
}
.list-common .service-detail-wrap::before {
    content: '';
	position: absolute;
    right: 20px;
	bottom: 20px;
    /*下線の形状*/    
    width: 40px;
    height: 1px;
	background:#333;
	-webkit-transition: all .3s;
    transition: all .3s;

}
.list-common .service-detail-wrap::after {
    content: '';
	position: absolute;
    right: 18px;
	 bottom: 27px;
    /*矢印の形状*/    
    width: 25px;
    height: 1px;
	background:#333;
    transform: rotate(35deg);
    -webkit-transition: all .3s;
    transition: all .3s;
}
/* hover */
.list-common .service-detail-wrap:hover{
	box-shadow: none;
	background-color: #f8f8f8;
}
.list-common .service-detail-wrap:hover a{
	text-decoration: none;
}
.list-common .service-detail-wrap .service-detail p{
    padding: 0 30px 40px 30px;
}
/*Product一覧*/
/*Product一覧には矢印無し*/
.list-product .service-detail-wrap::before,
.list-product02 .service-detail-wrap::before{
    content: none;
}
.list-product .service-detail-wrap::after,
.list-product02 .service-detail-wrap::after{
    content: none;
}

.list-product .service-detail{
	text-align: left;
}
.list-product h3 {
	padding: 20px 30px;
	font-size: 22px;
	text-indent:-10px;
} 
.list-product h3 .border {
	padding: 5px 5px 5px 0;
	border-left-width: 5px;
	border-left-style: solid;
	border-left-color: #14274f;
}
.list-product .child-list{
	margin: 0 30px 30px 30px;
}
.list-product .child-list li{
	margin: 0 0 10px 0 ;
	padding-left:8px;
	text-indent:-8px;  
}
.list-product .child-list li .border {
	padding-right: 5px;
	border-left-width: 3px;
	border-left-style: solid;
	border-left-color: #999;
}
/*Product一覧3階層*/
.list-product02 .list-pagetitle h1::after{
	background-color: #999;
}
.list-product02 .service-detail-title {
	padding: 20px 30px 20px 20px;
    -webkit-justify-content: flex-start;
	justify-content: flex-start;
	-webkit-align-items: stretch;
	align-items: stretch;
	font-weight: bold;
	text-align: left;
}  
.list-product02 .service-detail-title .border {
	padding-right: 5px;
	border-left-width: 5px;
	border-left-style: solid;
	border-left-color: #999;
}


/*　お問い合わせフォーム
------------------------------------------------------------*/

.form-wrap {
	width: 100%;
	margin: 0 auto;
	padding-bottom: 30px;
}
.form-tel {
	padding: 20px;
	margin-top: 20px;
	margin-bottom: 60px;
	border: 5px solid #ececec;
	text-align: center;
	font-size: 18px;
}
.form-tel span {
	font-size: 26px;
	font-weight: bold;
}
.form-tel img {
	width: 24px;
	height: auto;
	padding-right: 10px;
	vertical-align: middle;
}
.form-tel p {
	padding-top: 20px;
}
.form-flow{
	margin-bottom: 40px;
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: center;
	justify-content: center;
	-webkit-align-items: center;
	align-items: center;
}
.form-flow li {
	font-size: 20px;
	font-weight: bold;
}
.form-flow img {
	height: auto;
	width: 68px;
	padding: 0 16px;
}
.form-flow .text,
.form-flow .text-on{
	height: 60px;
	width: 200px;
	line-height: 60px;
	text-align: center;
	border-radius: 5px;
}	
.form-flow .text-on{
	color: #ffffff;
	background-color: #ebaa39;
}
.form-flow .text{
	color: #999999;
	background-color: #fdf3e2;
}
.form-table {
	padding-top: 40px;
	padding-bottom: 20px;
}
.form-table table {
	width:100%;
}
table.form-btn {
	width:100%;
	margin-top: 60px;
}
table.form-btn td{
	width:100%;
}
.form-table table th{
	width:25%;
	padding: 15px;
	background-color: #ececec;
	border-top-width: 4px;
	border-bottom-width: 4px;
	border-top-style: solid;
	border-bottom-style: solid;
	border-top-color: #ffffff;
	border-bottom-color: #ffffff;
}
.form-table table td{
	padding: 15px;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #ececec;
}
.form-table table  tr:last-child td{
	border-bottom: none;
}
.form-address {
	overflow: hidden;
}
.form-address p {
	float: left;
	width: 8em;
}
.form-address .input-s,.form-address .input-m {
	float: left;
}
.caution{
	font-size: 10px;
	color:#fc241a;
}
.input-s { width: 30%;height: 3em; }
.input-m { width: 80%;height: 3em; }
.input-l { width: 100%;height: 3em; }
.input-check { padding-right: 2em; }
input { border: 1px solid #dbdbdb;
	background: #fff;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
select { width: 31%;height: 3em;
	border: 1px solid #dbdbdb;
	background: #fff;
	display:block;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
textarea {
	width: 100%;height: 15em;
	margin-top: 10px;
	margin-bottom: 10px;
	border: 1px solid #dbdbdb;
	display: block;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
/* 個人情報 */
.list-privacy .list li{
	margin-left: 1em;
	list-style: disc;
}
.privacy {
    margin-top: 30px;
	border: 1px solid #14274f;
	border-radius: 10px;
}
.privacy > dl > dt {
    padding: 10px;
	font-size: 18px;
    text-align: center;
    color: #fff;
	background-color: #14274f;
	border-radius: 8px 8px 0 0; 
}
.privacy > dl > dd {
    padding: 30px 20px;
}
.privacy label {
    width: 80%;
    margin: 10px auto 0 auto;
    padding: 20px;
	text-align: center;
    display: block;
    font-size: 18px !important;
    font-size: 1.8rem;
    font-weight: bold;
    background-color: #f7f7f7;
	border-radius: 10px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
.contact_link_button a {
    min-width: 200px;
	padding: 15px 50px;
    text-align: center;
    text-decoration: none;
	font-weight: bold;
    outline: none;
	line-height: 1.1em;
    border-radius: 10px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	box-shadow: 0 0 8px #ccc;
	-webkit-transition: all .3s;
	transition: all .3s;
	background-color: #14274f;
	color: #fff;
	display: inline-block;
}
.contact_link_button a:hover{
    box-shadow: none;
	text-decoration: none;
	background-color: #09132e;
}


/*　２カラム詳細系共通
------------------------------------------------------------*/
.detail-content{
	width: 100%;
    margin: 0 auto;
	}
.detail-content .detail-wrap{
	max-width:1160px;
	width: 100%;
	margin: 0 auto;
	padding:70px 0 90px 0;
	display:-webkit-flex;
	display:flex;
}
.detail-main{
	max-width: 835px;
	width: 100%;
	padding: 20px 25px 0 0;
	border-right:1px solid #DBDBDB;
}
.detail-main p.main-img img{
	width:100%;
	height: auto;
}
.detail-main p.read{
	width:100%;
	text-align:left;
	padding:30px 0 0 0;
}
.detail-main .content-wrap-1{
	width:100%;
	display:-webkit-flex;
	display:flex;
	-webkit-justify-content:space-between;
	justify-content:space-between;
}
.detail-main .content-wrap-2{
	width:100%;
	display:-webkit-flex;
	display:flex;
	-webkit-flex-direction:column;
	flex-direction:column;
	-webkit-justify-content:space-between;
	justify-content:space-between;
}
.detail-main .content-wrap-3{
	width:100%;
	display:-webkit-flex;
	display:flex;
	-webkit-justify-content:space-between;
	justify-content:space-between;
}
.detail-main .text-wrap-r{
	display:-webkit-flex;
	display:flex;
}
.detail-main .text-w{
	width:100%;
	background-color:#FFF;
	padding-bottom:30px;
}
.detail-main .catch-txt{
	font-weight:bold;
	padding-bottom:20px;
}
.list-company{
	padding-top:60px;
}
.list-company table{
	width: 100%;
}
.list-company table th{
	min-width:160px;
	width:20%;
	padding: 15px;
	background-color: #ececec;
	border-top-width: 4px;
	border-bottom-width: 4px;
	border-top-style: solid;
	border-bottom-style: solid;
	border-top-color: #ffffff;
	border-bottom-color: #ffffff;
	vertical-align: top;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
.list-company table td{
	width:80%;
	padding: 15px;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #ececec;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
.list-company table  tr:last-child td{
	border-bottom: none;
}


/*　footer上お問い合わせ
------------------------------------------------------------*/
.contact-box{
	width: 100%;
	padding: 120px 0 100px 0;
    background-color: #e8e8e8;
    background-image: url(/images/sd/sd02/top/bk_information.png);
	background-repeat: no-repeat;
	background-position : top center;
	background-size: 100% auto;
	font-weight: bold;
}
.contact-box .contact-title-wrap{
	max-width:1160px;
	margin: 0 auto 30px auto;
	text-align: center;
}
.contact-box .contact-title {
	padding: 36px 0 60px 0;
	font-size: 38px;
	background-image: url(/images/text_contact.png);
	background-repeat: no-repeat;
	background-position : top center;
	background-size: 60px 16px;
}
.contact-box .contact-title-txt{
	font-size: 18px;
}
.contact-box .contact-main-wrap{
	max-width: 1040px;
	margin: 0 auto;
}
.contact-box .contact-main-wrap > div{
	width: 100%;
	padding: 20px 0;
	background-color: #ffffff;
	background-repeat: no-repeat;
	background-size:112px 112px;
	background-position: left top;
	text-align: center;
}
.contact-box .contact-main-wrap div:first-child{
	margin-bottom: 20px;
}
.contact-box .contact-main-wrap .c-tel{
	background-image: url(/images/sd/sd02/contact_tel.gif);
}
.contact-box .contact-main-wrap .c-mail{
	background-image: url(/images/sd/sd02/contact_mail.gif);
}
.contact-box .contact-main-wrap .c-mail{
	min-height: 110px;
	display:-webkit-flex;
	display:flex;
	-webkit-justify-content: center;
	justify-content: center;
	-webkit-align-items: center;
	align-items: center;
}
.contact-box .contact-main-wrap .c-main-title{
	width: 40%;
	margin-left: 10%;
	font-size: 20px;
}
.contact-box .contact-main-wrap .c-tel{
	min-height: 110px;
	overflow: hidden;
}
.contact-box .contact-main-wrap .c-tel .c-main-title{
	height: 100%;
	min-height: 110px;
	float: left;
	display:-webkit-flex;
	display:flex;
	-webkit-justify-content: center;
	justify-content: center;
	-webkit-align-items: center;
	align-items: center;
}
.contact-box .contact-main-wrap .c-tel-num{
	width: 40%;
	padding: 20px 0 0 0;
	margin-right: 10%;
	float: left;
	text-align: center;
}
.contact-box .contact-main-wrap .c-tel-num span{
	color: #213f7e;
	font-size: 30px;
}
.contact-box .contact-main-wrap .c-tel-txt{
	width: 40%;
	padding: 10px 0 20px 0;
	margin-right: 10%;
	float: left;
	text-align: center;
}
.contact-box .common-button{
	width: 40%;
	margin-right: 10%;
}


/*　ふくろう便り
------------------------------------------------------------*/
/* 記事 */
.article-wrap a{
	padding: 20px 20px 50px 20px;
	margin-bottom: 20px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	border: solid 1px #eaeaea;
	background-color: #fff;
	border-radius: 10px;
	box-shadow: 0 0 10px #dbdbdb;
	display: block;
	-webkit-transition: all .3s;
	transition: all .3s;
	position: relative;
}
.article-wrap a:hover{
	box-shadow: none;
	text-decoration: none;
	background-color: #f8f8f8;
}
/* 最新の記事 */	
.article-wrap-latest a{
	padding: 20px 20px 50px 20px;
	margin-bottom: 20px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	border: solid 1px #eaeaea;
	background-color: #fdf3e2;
	border-radius: 10px;
	box-shadow: 0 0 10px #dbdbdb;
	display: block;
	-webkit-transition: all .3s;
	transition: all .3s;
	position: relative;
}
.article-wrap-latest a:hover{
	box-shadow: none;
	text-decoration: none;
	background-color: #fcecd2;
	border: solid 1px #fcecd2;
}
/* 矢印 */	
.article-wrap a::before,
.article-wrap-latest a::before{
    content: '';
	position: absolute;
    right: 20px;
	 bottom: 20px;
    /*下線の形状*/    
    width: 40px;
    height: 1px;
	background:#333;
	-webkit-transition: all .3s;
    transition: all .3s;
}
.article-wrap a::after,
.article-wrap-latest a::after{
    content: '';
	position: absolute;
    right: 18px;
	 bottom: 27px;
    /*矢印の形状*/    
    width: 25px;
    height: 1px;
	background:#333;
    transform: rotate(35deg);
    -webkit-transition: all .3s;
    transition: all .3s;
}

.article-title{
	font-weight: bold;
	line-height: 1.4em;
	padding-bottom: 10px;
	margin-bottom: 20px;
}
.article-wrap .article-title{
	font-size: 20px;
	border-bottom: 1px solid #ECECEC;
}
.article-wrap-latest .article-title{
	font-size: 28px;
	border-bottom: 1px solid #999999;
}
.article-box{
	width: 100%;
	display:-webkit-flex;
	display:flex;
	-webkit-flex-direction:row;
	flex-direction:row;
	-webkit-justify-content:space-between;
	justify-content:space-between;
}
.article-box .article-left{
	width : 63% ; /* IE8以下とAndroid4.3以下用フォールバック */
	width : -webkit-calc(100% - 290px) ;
	width : calc(100% - 290px) ;
	display:-webkit-flex;
	display:flex;
	-webkit-flex-direction:column;
	flex-direction:column;
	}	
.article-box .article-info{
	display:-webkit-flex;
	display:flex;
	-webkit-flex-direction:row;
	flex-direction:row;
	-webkit-justify-content:space-between;
	justify-content:space-between;
	}
.article-box .category, 
.article-detail-wrap .category{
	width:200px;
	color:#ebaa39;
	font-weight:bold;
}
.article-box .article-info .date{
	width:216px;
	text-align:right;
	font-weight:bold;
}
.article-box .article-left .article-text{
	text-align:left;
	padding-top:15px;
	line-height:150%;
}
.article-box .article-image{
	width:270px;
	height:auto;
	padding-left:20px;
}
.article-box .article-image img{
	width:270px;
	height:auto;
}
/* 記事詳細 */
.article-detail-wrap{
	max-width:835px;
	width: 100%;
}
.article-detail-wrap .article-detail-info{
	width:100%;
	display:-webkit-flex;
	display:flex;
	-webkit-flex-direction:row;
	flex-direction:row;
	-webkit-justify-content:space-between;
	justify-content:space-between;
}
.article-detail-wrap .article-detail-info .date{
	max-width:632px;
	width: 100%;
	text-align:right;
	font-weight:bold;
}
.article-detail-wrap .article-subtitle{
	font-size: 32px;
	font-weight: bold;
	line-height: 1.4em;
	padding-top: 20px;
	padding-bottom: 10px;
}
.article-detail-wrap p.main-img{
	padding:40px 0;
}
.others h3{
	padding: 15px;
	background-color: #666;
	color: #FFF;
	font-weight: bold;
}
.others .box02{
	width:100%;
	margin: 0 auto;
	display:-webkit-flex;
	display:flex;
	flex-wrap: wrap;
	-webkit-flex-wrap: wrap;
}
.others .box02 h4{
	padding: 10px 0 0 10px;
	position: relative;
}
.others .box02 h4::before{
	width: 5px;
    height: 1em;
	content: "";
    display: block;
    background: #14274f;
    position: absolute;
    top: 15px;
	left: 0;
}
.others .box02 div{
	width:32%;
	margin: 0 1.3% 15px 0;
}
.others .box02 div p img{
	width:100%;
	height:auto;
	-webkit-transition: all .3s;
	transition: all .3s;
}
.others .box02 div p img:hover{
	opacity: 0.5;
}
/*ページネーション*/
.pagination-wrap{
	padding-top:50px;
	text-align:center;	
}
ul.pagination {
    display: inline-block;
    padding: 0;
}
ul.pagination li {
	display: inline;
}
ul.pagination li a {
	width: 42px;
	height: 42px;
	font-size:85%;
    float: left;
	line-height: 42px;
	text-align: center;
	margin: 3px;
}
ul.pagination :not(a.pagination-nam) {
	width: 60px;
    color: #14274f;
}
ul.pagination li a.active {
	border-radius: 50%;
    background-color: #14274f;
    color: #ffffff;
}



/*　サイドナビ
------------------------------------------------------------*/

.sidenavi{
	width: 275px;
	padding-left: 24px;
}

.side-nav-btn2 a {
	background-color: #14274f;
	height: 60px;
	padding-top: 20px;
	padding-left: 15px;
	background-image: url(/images/sd/sd02/nav_side_arrow.png);
	background-repeat: no-repeat;
	background-position: 225px 55px;
	background-size:40px 15px;
	font-size: 18px;
	font-weight: bold;
	border-radius: 6px;
	box-shadow: 0 0 6px #ccc;
	-webkit-transition: all .3s;
	transition: all .3s;
	display: block;
	color: #fff;
}
.side-nav-btn2 a:hover {
	box-shadow: none;
	background-color: #09132e;
	text-decoration: none;
}

.navi-box li.nav-parent{
	margin-bottom:20px;
}
.navi-box li.nav-child a{
	margin-bottom: 10px;
	padding: 20px;
	border: solid 1px #eaeaea;
	border-radius: 6px;
	box-shadow: 0 0 6px #ccc;
	font-weight: bold;
	text-align: left;
	line-height: 1.2em;
	-webkit-transition: all .3s;
	transition: all .3s;
	display: block;
}
.navi-box li.nav-child a:hover{
	box-shadow: none;
	text-decoration: none;
	background-color: #f8f8f8;
}

/*active*/
.sidenavi .active a {
	color: #213f7e;
	pointer-events: none;
}
.navi-box li.nav-child .active a {
	border: solid 1px #213f7e;
	box-shadow: none;
}
	
/*archive*/
.sidenavi .nav-archive-title{
	margin: 30px 0 10px 0;
	padding: 15px;
	background-color: #666;
	color :#FFF;
	font-weight: bold;
}
.sidenavi .nav-archive a{
	margin-bottom: 10px;
	padding: 15px;
	border: solid 1px #eaeaea;
	border-radius: 6px;
	box-shadow: 0 0 6px #ccc;
	-webkit-transition: all .3s;
	transition: all .3s;
	display: block;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
.sidenavi .nav-archive a:hover{
	box-shadow: none;
	text-decoration: none;
	background-color: #f8f8f8;
}	
.sidenavi .latest{
	background-color: #fdf3e2;
	border-radius: 6px;
}
.sidenavi .latest a:hover{
	background-color: #fcecd2;
	border: solid 1px #fcecd2;
}
.sidenavi .nav-archive-box{
	display:-webkit-flex;
	display:flex;
	-webkit-justify-content: space-between;
	justify-content: space-between;
	}
.sidenavi .nav-archive-box img{
	width:100px;
	height:auto;
}
.sidenavi .nav-archive-box .title{
	width: 130px;
	font-size:80%;
	line-height:150%;
}
.sidenavi .category-box .category-box-title{
	margin: 30px 0 10px 0;
	padding: 15px;
	border-bottom:1px solid #666666;
	background-color: #666;
	color: #fff;
	font-weight: bold;
	line-height: 100%;
}
.sidenavi .category-box li.category-name a{
	margin-bottom: 10px;
	padding: 15px;
	color:#ebaa39;
	font-weight:bold;
	border: solid 1px #eaeaea;
	border-radius: 6px;
	box-shadow: 0 0 6px #ccc;
	-webkit-transition: all .3s;
	transition: all .3s;
	display: block;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
.sidenavi .category-box li.category-name a:hover{
	box-shadow: none;
	text-decoration: none;
	background-color: #f8f8f8;
}




/* PCとスマホの非表示指示
------------------------------------------------------------*/


@media screen and (min-width: 769px)
{

	.pc-none {
		display: none;
	}
}

@media screen and ( max-width:768px )
{
	.sp-none {
		display: none;
	}
}

.dispSD02 {
    display: block !important;
}

.org-component {
    width: 1160px;
    margin: 0 auto;
}
.org-component .org-component-main-img img {
    width: 100%;
}
.org-component .org-component-main {
    display: flex;
    flex-direction: row;
    margin-bottom: 10px;
}
.org-component .org-component-text {
    padding-bottom: 15px;
    width: 100%;
}
.org-component .org-component-title {
    font-size: 108%;
    font-weight: bolder;
    margin-bottom: 20px;
}
.org-component .org-component-img img {
    height: auto;
    width: 280px;
}
.org-component .org-component-annotation {
    background-color: #fdf3e2;
    padding: 20px;
    border-radius:10px;
}
.org-component .pad-left20 {
    padding-left: 20px;
}
.org-component .pad-right20 {
    padding-right: 20px;
}

.detail-main .org-component {
    width: 100%;
}
.detail-main .org-component .org-component-img img {
    width: 280px;
}
.sns-box {
	padding: 30px 0px 0px 0px;
}
.sns-box iframe {
	height: 20px !important;
	float: right;
}
.titleLink,
.titleLink:hover,
.titleLink:visited {
    color: #fff;
    text-decoration: none;
}
.detail-main p.sub-img img,
.detail-main p.sub-img200 img{
	width:280px;
	height:auto;
	padding: 0 30px 30px 0;

	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}	
.detail-main div + p.sub-img img,
.detail-main div + p.sub-img200 img{
	width:280px;
	height:auto;
	padding: 0 0 30px 30px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
.product_spec ul {
        list-style:none;
}
.product_spec li.first {
        width: 100%;
        border: 1px solid #ccc;
        background-color: #808080;
}
.product_spec li.next {
        width: 100%;
        border-left: 1px solid #ccc;
        border-right: 1px solid #ccc;
        border-bottom: 1px solid #ccc;
        background-color: #808080;
}

.product_spec span.dan {
        display: block;
        color: #FFF;
        font-weight: bold;
        float: left;
        padding: 10px;
}

.product_spec span.dan2 {
        display: block;
        text-align: left;
        padding: 10px;
        margin-left: 240px;
        border-left: 1px solid #ccc;
        background-color: #FFF;
}

.form-tel img {
        display:none;
}
.col1-wrap .col1-contact {
       	-webkit-justify-content: center;
	justify-content: center;
}
.article-detail-wrap + .org-component p.org-component-main-img {
    margin-top: 40px;
}
.detail-main p.org-component-read{
	width:100%;
	text-align:left;
	padding:30px 0 0 0;
}
.text-annotation700{
	background-color:#fdf3e2;
	padding:15px;
	clear: both;
        border-radius:10px;
}
li.second:first-child {
    border-top: 1px dotted #dbdbdb;
}
.category-block ul {
    margin-bottom: 35px;
}



