@charset "utf-8";
/*
Theme Name: DIK University
Theme URI: https://www.dik.co.jp/
Version: 2.0.1
Author: DIK
*/

:root {
    
    /* main */
	--mainColor: rgba(49,51,144,1); /* メインカラー #313390 */
	--mainColorLight: rgba(97,100,171,1); /* メインカラーライト #6164ab */
	--mainColorThin: rgba(137,139,198,1); /* メインカラー #898bc6 */
    
    /* blue */
	--blueColorThin: rgba(198,221,255,1); /* #c6ddff */
    
    /* green */
    --greenColor: rgba(112,173,71,1); /* #70ad47 */
	--greenColorLight: rgba(130,180,23,1); /* #82b417 */
    
    /* yellow */
	--yellowColor: rgba(255,215,105,1); /* #ffd769 */
	--yellowColorLight: rgba(251,242,103,1); /* #fbf267 */
	--yellowColorThin: rgba(255,246,2,1); /* #fff602 */
	
    /* orange */
    --orangeColor: rgba(255,102,0,1); /* #ff6600 */
    
    /* brown */
    --brownColor: rgba(127,96,0,1); /* #7f6000 */
    
    /* Font */
    --mainFont: "メイリオ", Meiryo, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    --serifFont: "メイリオ", Meiryo, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", serif;
    /*--mainFont: "Noto Sans JP", "メイリオ", Meiryo, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    --serifFont: "Noto Serif JP", "メイリオ", Meiryo, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", serif;*/
    --gothicFont: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
    
}

#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: var(--mainFont);
	font-size: 1.6rem;
	-webkit-text-size-adjust: 100%;
	font-feature-settings: "palt";
	line-height: 1.8;
    letter-spacing: 1px;
}

/* ------------------------------------------------------- */
/* layout ------------------------------------------------ */
/* ------------------------------------------------------- */

/* base サイトレイアウトの基本設定 ----------------------- */

#top {
	width: 100%;
    position: relative;
}
.sectionInner {
	max-width: 1115px;
	min-width: 1000px;
	margin: 0 auto;
	padding: 25px 0;
	clear: both;
}
#main {
	width: 100%;
}
#footer {
	width: 100%;
	min-width: 1000px;
}
#footer a {
    color: #000;
    text-decoration: none;
}
#footer a:hover {
    text-decoration: underline;
}
@media only screen and (max-width:999px) {
    .sectionInner {
        min-width: 100px;
        width: 100%;
        padding: 0 15px;
    }
    #main {
        width: 100%;
        margin: 0 0 15px 0;
    }
    #footer {
        min-width: 100px;
        width: 100%;
    }
}

/* ------------------------------------------------------- */
/* header ------------------------------------------------ */
/* ------------------------------------------------------- */

#header {
	height: 115px;
	width: 100%;
	position: fixed;
	z-index: 10;
	background: #fff;
	top: 0;
	left: 0;
    box-shadow: 0 0.5rem 1rem rgb(0 0 0 / 15%);
}
.headerInner {
	max-width: 1115px;
	min-width: 1000px;
	margin: 0 auto;
}
#top {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.headerTitle {
	display: flex;
	align-items: center;
	padding: 17px 0 13px 0;
}
.logoTxt {
	font-size: 1.3rem;
	padding-left: 20px;
}
.logo {
	width: 415px;
	height: 35px;
}
.logo a {
	display: block;
    width: 100%;
    height: 100%;
	background: url(images/base/logo.svg) no-repeat;
    background-size: 100%;
	overflow: hidden;
	text-indent: 100%;
	white-space: nowrap;
}
@media only screen and (max-width:999px) {
	#header {
		height: 55px;
        z-index: 995;
	}
	.headerInner {
		width: 100%;
		min-width: 100px;
		padding: 15px;
	}
    #top {display: block;}
	.headerTitle {
		flex-wrap: wrap;
		padding: 0;
	}
	.logoTxt {
		width: 100%;
		font-size: 1.2rem;
		padding-left: 0;
        order: 1;
	}
	.logo {
		width: 300px;
		height: 25px;
        order: 2;
	}
	.logo a {
		background: url(images/base/logo.svg) no-repeat;
		background-size: 100%;
	}
}

/* ------------------------------------------------------- */
/* footer ------------------------------------------------ */
/* ------------------------------------------------------- */

#footer {
    background: #f1f1f1;
}
.footerInner {
	max-width: 1115px;
	min-width: 1000px;
	margin: 0 auto;
	padding: 30px 0 25px;
}
.footerBlock {
    display: flex;
}
.footerInfo {
    width: calc(100% / 3);
}
.footerInfo address {
    font-size: 1.5rem;
}
.footer-contents {
    width: calc((100% - (100% / 3)) - 25px);
    margin-left: 25px;
}
.footerInfo div {
    margin-bottom: 10px;
    padding-left: 70px;
    font-size: 1.8rem;
    font-weight: bold;
    position: relative;
}
.footerInfo div::before {
    content: "";
    background-image: url("images/base/footer-logo.svg");
    background-repeat: no-repeat;
    top: 4px;
    left: 0;
    width: 70px;
    height: 27px;
    display: block;
    position: absolute;
}
#copyright {
    background: #666;
    padding: 25px 15px;
	font-family: Verdana, "Droid Sans", 'Noto Sans JP', "メイリオ", Meiryo, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    font-size: 1.4rem;
    text-align: center;
    color: #fff;
}
#copyright a {
    margin-left: 10px;
    padding-left: 21px;
    color: #fff;
    position: relative;
}
#copyright a.privacy::before {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
	content: "\f505";
    position: absolute;
    left: 0;
    top: -2px;
}
@media only screen and (max-width:999px) {
    .footerBlock {
        display: block;
    }
    .footerInfo {
        width: 100%;
        margin-bottom: 30px;
        text-align: center;
    }
    .footerInfo div {
        margin: 0 auto 10px auto;
        display: table;
    }
    .footer-contents {
        width: 100%;
        margin-left: 0;
    }
    .footerInner {
        width: 100%;
        min-width: 100px;
        display: block;
	    padding: 15px;
    }
    .footerInfo {
        padding-right: 0;
    }
}

/* ------------------------------------------------------- */
/* 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); }
}*/