@charset "utf-8";
/*
Theme Name: plain
Theme URI: https://www.dik.co.jp/
Version: 2.1.0
Author: DIK
*/

:root {
    
    /* Color */
	--color-main: #020c45; /* 通常 */
	--color-main-light: #999; /* 明るい */
	--color-main-thin: #ccc; /* 薄い */
	--color-main-deep: #333; /* 濃い */
    
    --color-link: #605a90;
    --color-link_hover: #333;
    
    /* 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: 130px;
    --img-logo-src: url("images/base/logo.png");
    --img-logo-width: 330px;
    --img-logo-height: 70px;
    @media (width <= 999px) {
        --size-header-height: 60px;
        --img-logo-width: 100%;
        --img-logo-height: 70px;
    }
    
    /* Contents Size */
    --size-content-max-width: 1225px;
    --size-content-min-width: 1000px;
    @media (width <= 999px) {
        --size-content-max-width: 100%;
        --size-content-min-width: 100px;
    }
    
}

* { box-sizing: border-box; }
html { font-size: 62.5%; }
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: 2px;
}

/* 画像のドラッグ無効化 */
/*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 サイトレイアウトの基本設定 ----------------------- */

#main {
	width: 100%;
	clear: both;
    section {
        .sectionInner {
            max-width: var(--size-content-max-width);
            min-width: var(--size-content-min-width);
            margin: 0 auto;
            font-size: 2.0rem;
            line-height: 1.4;
            color: #949d98;
            @media (width <= 999px) {
                padding: 0 20px;
                font-size: 1.6rem;
            }
        }
    }
}
.serif {
    font-family: var(--font-serif);
    letter-spacing: 0;
    color: #5d6862;
}

/* ------------------------------------------------------- */
/* header ------------------------------------------------ */
/* ------------------------------------------------------- */

header {
	background: var(--color-main);
    height: 768px;
    margin-bottom: 100px;
    padding: 75px;
    color: #fff;
    position: relative;
    @media (width <= 999px) {
        height: unset;
        margin-bottom: 50px;
        padding: 50px 20px;
    }
    .headerInner {
        max-width: var(--size-content-max-width);
        min-width: var(--size-content-min-width);
        height: 100%;
        margin: 0 auto;
        position: relative;
        @media (width <= 999px) {
            height: unset;
        }
        h1 {
            width: var(--img-logo-width);
            height: var(--img-logo-height);
            font-family: var(--font-serif);
            font-size: 2.3rem;
            line-height: 1.4;
            letter-spacing: 0;
            position: absolute;
            top: -60px;
            @media (width <= 999px) {
                margin-bottom: 5px;
                font-size: 1.8rem;
                text-align: center;
                position: unset;
                top: unset;
            }
            span {
                font-family: var(--font-main);
                letter-spacing: 1px;
                display: block;
            }
        }
    }
    .mainimage {
        width: 100%;
        height: 100%;
        position: absolute;
        display: flex;
        justify-content: center;
        align-items: center;
        text-align: center;
        @media (width <= 999px) {
            display: block;
            position: unset;
        }
        div {
            h2 {
                width: 100%;
                margin-bottom: 25px;
                font-family: var(--font-serif);
                font-size: 6.6rem;
                line-height: 1.3;
                @media (width <= 999px) {
                    font-size: 2.5rem;
                }
            }
            p {
                width: 100%;
                font-size: 3.3rem;
                @media (width <= 999px) {
                    font-size: 2.2rem;
                }
            }
        }
    }
}

/* ------------------------------------------------------- */
/* footer ------------------------------------------------ */
/* ------------------------------------------------------- */

#footer {
    width: 100%;
	min-width: var(--size-content-min-width);
    .footerInner {
        max-width: var(--size-content-max-width);
        min-width: var(--size-content-min-width);
        margin: 0 auto;
        padding: 30px 0 25px;
        @media (width <= 999px) {
    	    padding: 15px;
        }
    }
}
#copyright {
    padding: 5px;
    text-align: center;
	font-family: var(--font-copyright);
    font-size: 1.3rem;
}

/* ------------------------------------------------------- */
/* プリント用 -------------------------------------------- */
/* ------------------------------------------------------- */

@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;
    }
}