@charset "utf-8";
/*
Theme Name: Saikyo Metal
Theme URI: https://www.dik.co.jp/
Version: 2.0.1
Author: DIK
*/

:root {
    
    /* Color */
	--color-main: #06c;
	--color-main-light: #53a9ff;
	--color-main-thin: #d8ecff;
	--color-main-deep: #003465;
    
	--color-main2: #ff9c00;
	--color-main2-light: #ffbb79;
	--color-main2-thin: #ffefcf;
	--color-main2-deep: #fe663e;
    
    --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: 360px;
    --img-logo-height: 50px;
    @media (width <= 999px) {
        --size-header-height: 60px;
        --img-logo-width: 288px;
        --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%;
}
.sectionInner {
	max-width: var(--size-content-max-width);
    min-width: var(--size-content-min-width);
	margin: 0 auto;
	padding: 50px 0;
	clear: both;
}
#footer {
	width: 100%;
	min-width: 1000px;
}
@media only screen and (max-width:999px) {
    .sectionInner {
        width: 100%;
        padding: 30px 20px;
    }
    #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: 15px 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: var(--color-main);
    color: #fff;
}
.footerInner {
	max-width: var(--size-content-max-width);
    min-width: var(--size-content-min-width);
	margin: 0 auto;
	padding: 30px 0 25px;
    .footer-contents_block {
        display: flex;
        @media (width <= 999px) {
            display: block;
        }
    }
    .footer-contents_block1 {
        margin-bottom: 30px;
        order: 2;
        display: flex;
        @media (width <= 999px) {
            display: block;
        }
        .footerMenu {
            order: 2;
            width: 300px;
            @media (width <= 999px) {
                width: 100%;
            }
            a {
                color: #fff;
            }
        }
        .footer-title {
            order: 1;
            width: calc(100% - 300px);
            font-size: 2.0rem;
            font-weight: bold;
            @media (width <= 999px) {
                width: 100%;
                font-size: 1.6rem;
                text-align: center;
            }
        }
    }
    .footer-contents_block2 {
        order: 1;
        > div {
            width: 50%;
            @media (width <= 999px) {
                width: 100%;
            }
        }
        .footerInfo_left {
            @media (width <= 999px) {
                margin-bottom: 20px;
                text-align: center;
                font-size: 1.5rem;
            }
            div {
                font-size: 1.8rem;
                font-weight: bold;
            }
        }
        .footerInfo_right {
            .footerInfo_right-inner {
                background: #fff;
                padding: 20px;
                color: #000;
                float: right;
                @media (width <= 999px) {
                    font-size: 1.3rem;
                    float: none;
                }
                a {
                    background: var(--color-main);
                    color: #fff;
                    margin: 10px auto 0 auto;
                    padding: 5px 20px;
                    text-decoration: none;
                    display: table;
                    &:hover {
                        background: var(--color-main-light);
                    }
                }
            }
        }
    }
}
#copyright {
    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); }
}*/