@charset "utf-8";
/*
Theme Name: PPPD
Theme URI: https://www.dik.co.jp/
Version: 2.0.1
Author: DIK
*/

:root {
    
    /* Color */
	--color-main: #4472c4;
	--color-main-light: #8fb1ee;
	--color-main-thin: #e5eeff;
	--color-main-deep: #0e3a87;
    
	--color-main2: #ffc000;
	--color-main2-light: #ffd554;
	--color-main2-thin: #ffecb2;
	--color-main2-deep: #ff8a00;
    
    --color-link: #00e;
    --color-link_hover: #07e;
    
    /* Font */
    --font-main: "Noto Sans JP", "メイリオ", Meiryo, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    --font-serif: "Noto Serif JP", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro W3", "MS P明朝", "MS PMincho", serif;
    --font-copyright: Verdana, "Droid Sans", "メイリオ", Meiryo, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    
    --fa: "Font Awesome 6 Free"; /* https://fontawesome.com/search?o=r&m=free */
    
    /* Header, Logo Size */
    --size-header-height: 125px;
    --img-logo-src: url("images/base/logo.webp");
    --img-logo-width: 425px;
    --img-logo-height: 30px;
    @media (width <= 999px) {
        --size-header-height: 60px;
        --img-logo-src: url("images/base/logo-sp.webp"); /* PC, SP 違う画像の場合 */
        --img-logo-width: 173px;
        --img-logo-height: 40px;
    }
    
    /* Contents Size */
    --size-content-max-width: 1115px;
    --size-content-min-width: 1000px;
    @media (width <= 999px) {
        --size-content-max-width: 100%;
        --size-content-min-width: 100px;
    }
    
    /* Global Menu Count */
    --global-menu-count: 5;
    
}

* { box-sizing: border-box; }
html { font-size: 62.5%; /* 15px x 0.625 = 10px(=1rem) */ }
body {
	background: #fff;
	font-family: var(--font-main);
	font-size: 1.6rem;
	-webkit-text-size-adjust: 100%;
	font-feature-settings: "palt";
	line-height: 1.7;
    letter-spacing: 1px;
}
/*img {
    pointer-events: none;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-touch-callout: none;
    -moz-user-select: none;
    user-select: none;
}*/

/* ------------------------------------------------------- */
/* layout ------------------------------------------------ */
/* ------------------------------------------------------- */

/* base サイトレイアウトの基本設定 ----------------------- */

#top {
	width: 100%;
}
#container {
	max-width: var(--size-content-max-width);
    min-width: var(--size-content-min-width);
	margin: 0 auto 50px;
	padding: 0;
	clear: both;
}
#footer {
	width: 100%;
	min-width: 1000px;
}
@media only screen and (max-width:999px) {
    #container {
        width: 100%;
        padding: 0 15px 0 15px;
    }
    #main {
        width: 100%;
        margin: 0 0 15px 0;
    }
    #footer {
        min-width: 100px;
        width: 100%;
    }
}

/* ------------------------------------------------------- */
/* header ------------------------------------------------ */
/* ------------------------------------------------------- */

#header {
	height: var(--size-header-height);
	width: 100%;
	position: fixed;
	z-index: 10;
	background: #fff;
	top: 0;
	left: 0;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}
.headerInner {
	max-width: var(--size-content-max-width);
    min-width: var(--size-content-min-width);
	margin: 0 auto;
}
#top {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.headerTitle {
	display: flex;
	align-items: center;
	padding: 25px 0;
}
.logoTxt {
	font-size: 1.3rem;
	padding-left: 20px;
}
.logo {
	width: var(--img-logo-width);
	height: var(--img-logo-height);
}
.logo a {
	display: block;
    width: 100%;
    height: 100%;
	background: var(--img-logo-src) no-repeat;
    background-size: 100%;
	overflow: hidden;
	text-indent: 100%;
	white-space: nowrap;
}
@media only screen and (max-width:999px) {
	.headerInner {
		padding: 10px;
	}
    #top {display: block;}
	.headerTitle {
		flex-wrap: wrap;
		padding: 0;
	}
	.logoTxt {
		width: 100%;
		font-size: 1.2rem;
		padding-left: 0;
        order: 1;
	}
	.logo {
        order: 2;
	}
	.logo a {
		background-size: 100%;
	}
}

/* ------------------------------------------------------- */
/* footer ------------------------------------------------ */
/* ------------------------------------------------------- */

#footer {
    background: #fafafa;
}
.footerInner {
	max-width: var(--size-content-max-width);
    min-width: var(--size-content-min-width);
	margin: 0 auto;
	padding: 30px 0 25px;
}
.footerInfo {
    div {
        margin-bottom: 10px;
        font-size: 2.5rem;
        font-weight: bold;
        @media (width <= 999px) {
            font-size: 1.9rem;
        }
    }
    p {
        @media (width <= 999px) {
            font-size: 1.3rem;
        }
    }
}
#copyright {
    background: var(--color-main);
    color: #fff;
    text-align: center;
    font-size: 1.3rem;
    padding: 5px;
	font-family: var(--font-copyright);
}
@media only screen and (max-width:999px) {
    .footerInner {
        display: block;
	    padding: 15px;
    }
}

/* ------------------------------------------------------- */
/* プリント用 -------------------------------------------- */
/* ------------------------------------------------------- */

@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); }
}*/