@charset "utf-8";
/*
Theme Name: plain
Theme URI: https://www.dik.co.jp/
Version: 1
Author: DIK
*/

#humberger {
    -vendor-animation-duration: 3s;
    -vendor-animation-delay: 2s;
    -vendor-animation-iteration-count: infinite;
}
* { box-sizing: border-box; }
html { font-size: 62.5%; /* 15px x 0.625 = 10px(=1rem) */ }
body {
	background: #fff;
	/*font-family: "メイリオ", Meiryo, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;*/
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 300;
	font-size: 1.6rem;
	-webkit-text-size-adjust: 100%;
	font-feature-settings: "palt";
	line-height: 1.7;
}

/* ------------------------------------------------------- */
/* layout ------------------------------------------------ */
/* ------------------------------------------------------- */

/* base サイトレイアウトの基本設定 ----------------------- */

#wrapper {
	min-width: 1000px;
	display: flex;
    position: relative;
}
#container {
	/*max-width: 1115px;
	min-width: 1000px;
	margin: 0 auto 25px;
	padding: 0;
	clear: both;*/
	width: calc(100% - 260px);
}
#main {
	width: 100%;
	padding: 50px 50px 25px;
	border-left: solid 5px #f5f5f5;
}
body.page #main,
body.archive #main {
	padding: 25px 50px;
}
#footer {
	width: 100%;
}
@media only screen and (max-width:768px) {
	#wrapper {
		display: block;
		position: relative;
		min-width: 100%;
	}
    #container {
        min-width: 100px;
        width: 100%;
    }
    #main {
        width: 100%;
        float: none;
		padding: 25px 15px;
		border: none;
    }
	body.page #main,
	body.archive #main {
		padding: 0 15px 25px;
	}
    #footer {
        min-width: 100px;
        width: 100%;
		padding-bottom: 110px;
    }
}

/* ------------------------------------------------------- */
/* header ------------------------------------------------ */
/* ------------------------------------------------------- */

#header {
	width: 260px;
}
.headerInner {
	width: 260px;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
	background: #2c6841;
	z-index: 9999;
}
.headerTitle {
	padding: 50px;
    background: #fff;
}
.logo {
	width: 150px;
    height: 135px;
}
.logo a {
	display: block;
    width: 100%;
    height: 100%;
	background: url(images/base/logo.png) no-repeat;
    background-size: 100%;
	overflow: hidden;
	text-indent: 100%;
	white-space: nowrap;
}

.headerInfo {
	height: 100vh;
	overflow-y: scroll;
	-ms-overflow-style: none; /*スクロールバー非表示（IE・Edge）*/
	scrollbar-width: none; /*スクロールバー非表示（Firefox）*/
	position: sticky;
    top: 0;
	background: #fff;
}
/*スクロールバー非表示（Chrome・Safari）*/
.headerInfo::-webkit-scrollbar{
  display:none;
}
ul.headerBnr {
	padding: 25px 15px;
    background: #2c6841;
}
#footer ul.headerBnr {
	display: none;
}
ul.headerBnr li {
	margin-bottom: 15px;
}
ul.headerBnr li:last-child { margin-bottom: 0; }

ul.headerBnr a {
	display: block;
}
ul.headerBnr img {
	display: block;
	width: 100%;
}
/*hover*/
ul.headerBnr li a:hover img {
	opacity: 0.8;
}


@media only screen and (max-width:768px) {
	#header {
		width: 100%;
		height: 60px;
		position: relative;
	}
	.headerInner {
		width: 100%;
		min-width: 100px;
		background: #444;
		position: absolute;
		z-index: 1;
	}
	.headerTitle {
		padding: 5px 10px;
		background: none;
	}
	.logo {
		width: 188px;
		height: 50px;
	}
	.logo a {
		background: url(images/base/logo_sp.png) no-repeat;
		background-size: 100%;
	}
	#header .headerInfo {
		height: auto;
		display: none;
	}
	#footer ul.headerBnr {
		display: block;
	}
	ul.headerBnr {
		width: 100%;
		padding: 0 15px 25px;
		background: #fff;
	}
    .headerMenu {display: none;}
}

/* ------------------------------------------------------- */
/* footer ------------------------------------------------ */
/* ------------------------------------------------------- */

.footerBnr {
	display: flex;
	align-items: center;
	justify-content: center;
	border: solid 1px #ccc;
	padding: 25px 0;
}
.footerBnr > div {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: calc( 100% / 3 );
	padding: 0 50px;
	position: relative;
}
.footerBnr > div::after {
	content: "";
	display: block;
	width: 1px;
	height: 100%;
	background: #eee;
	position: absolute;
	right: 0;
}
.footerBnr > div:nth-of-type(3)::after {
	display: none;
}
.footerBnr .buttonLink2 {
	width: 100%;
}
.footerBnr .lineImg {
	display: flex;
    align-items: center;
}
.footerBnr .lineImg img {
	display: block;
	width: 125px;
}
.footerBnr .lineImg img:nth-of-type(1) {
	margin-right: 15px;
}
@media only screen and (max-width:768px) {
	.footerBnr {
		display: block;
		padding: 0 15px;
	}
	.footerBnr > div {
		width: 100%;
		padding: 25px 0;
	}
	.footerBnr > div::after {
		width: 100%;
		height: 1px;
		right: auto;
		bottom: 0;
	}
	.footerBnr > div:nth-of-type(3)::after {
		display: none;
	}
}

#footerFixed {
	display: none;
}
.footerBox1 {
	background: #f5f5f5;
	padding: 50px 50px 25px 50px;
}
div.footerMenu > ul {
	display: flex;
	flex-wrap: wrap;
}
div.footerMenu > ul > li {
    width: calc( 100% / 4 );
	margin: 0 0 40px 0;
}
div.footerMenu > ul > li > a {
	display: inline-block;
    text-decoration: none;
	font-weight: 700;
	color: #2c6841;
	margin-bottom: 10px;
}
div.footerMenu ul li ul.sub-menu {
    margin-left: 15px;
}
div.footerMenu ul li ul.sub-menu > li {
	margin-bottom: 10px;
}
div.footerMenu ul li ul.sub-menu > li > a {
	display: inline-block;
    text-decoration: none;
	color: #333;
}
div.footerMenu ul li ul.sub-menu > li > a::after {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f105";
    margin-left: 15px;
	color: #2c6841;
	transition: 0.5s all;
}
div.footerMenu ul li ul.sub-menu > li > a:hover::after {
    transition: 0.5s all;
	margin-left: 25px;
}
.footerBox2 {
	display: flex;
	align-items: center;
	padding: 50px;
	background: #333;
	color: #fff;
}
.footerBox2 > div:nth-of-type(1) {
	margin-right: 50px;
}
#copyright {
    text-align: center;
    font-size: 1.3rem;
    padding: 5px;
	color: #fff;
	background: #222;
}
@media only screen and (max-width:1115px) {
	.footerBox1 {
		padding: 50px 25px 25px 25px;
	}
	div.footerMenu > ul > li {
		width: calc(( 100% - 75px ) / 4 );
		margin: 0 24.9px 40px 0;
	}
	div.footerMenu > ul > li:nth-of-type(4n) {
		margin: 0 0 40px 0;
	}
}

@media only screen and (max-width:768px) {
	#footerFixed {
		display: block;
		width: 100%;
		padding: 10px;
		background: #2c6841;
		position: fixed;
		bottom: 0;
		z-index: 10;
	}
	#footerFixed > div:nth-of-type(1) {
		margin-bottom: 10px;
	}
	#footerFixed a {
		display: block;
		width: 100%;
		height: 40px;
		line-height: 40px;
		border-radius: 20px;
		background: #fff;
		color: #2c6841;
		font-weight: 700;
		text-align: center;
		text-decoration: none;
	}
    .footerBox1 {
		padding: 25px 15px;
	}
	div.footerMenu > ul {
		display: block;
	}
	div.footerMenu > ul > li {
		width: 100%;
		margin: 0 0 15px 0;
	}
	.footerBox2 {
		flex-direction: column;
		padding: 25px 15px;
	}
	.footerBox2 > div:nth-of-type(1) {
		margin: 0 0 25px 0;
		padding: 0 75px;
	}
}

/* ------------------------------------------------------- */
/* side -------------------------------------------------- */
/* ------------------------------------------------------- */

#side {}

/* Widget */
.widget ul li {
	border-bottom: 1px dotted #CCC;
	margin-bottom: 5px;
	padding: 0 10px 0px 10px;
	font-size: 1.4rem;
}
.widget ul li a {
	display: block;
}
.tagcloud a {
	border-bottom: 1px dotted #CCC;
	margin-bottom: 5px;
	padding: 0 10px 0px 10px;
	font-size: 1.4rem !important;
	display: block;
}
.archive_month select {
	width: 96%;
	margin: 0 2%;
}

/* ------------------------------------------------------- */
/* プリント用 -------------------------------------------- */
/* ------------------------------------------------------- */

@media print {	
    #humberger, #pageTop, #pageTop div, #movePageTop, #pageTop p {
        display: none!important;
    }
    #container {
        padding: 0!important;
    }
    #header {
        position: static!important;
    }
    .topContents {
        min-width: 1000px!important;
        width: 100%!important;
        margin: 0!important;
        padding: 0!important;
        overflow: hidden!important;
    }
}

/* ------------------------------------------------------- */
/* dark mode --------------------------------------------- */
/* ------------------------------------------------------- */

/*@media (prefers-color-scheme: dark) {
	html { filter: invert(1) hue-rotate(180deg); }
	html img { filter: invert(1) hue-rotate(180deg); }
}*/