@charset "utf-8";
/*
Theme Name: suganoLab
Theme URI: https://www.dik.co.jp/
Version: 2.0.1
Author: DIK
*/

:root {    

	
   /* Color */
    --color-main: #8e1728;
    --color-main-dark: #640911;
    --color-main-light: #f7eff0;
    
    --color-sub: #606161;
    --color-sub-dark: #252525;
    --color-sub-light: #f5f5f5;
	
	--color-btnBorder: #b1b1b1;
	
	--color-linkTxt: #0017d5;

    /* Font */    
    --fa: "Font Awesome 6 Free"; /* https://fontawesome.com/search?o=r&m=free */  
    --font-main: "メイリオ", Meiryo, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    --font-serif: Garamond, "Times New Roman", "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
    --font-copyright: Verdana, "Droid Sans", "メイリオ", Meiryo, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;

    /* Contents Size */
    --size-content-max-width: 1115px;
    --size-content-min-width: 1000px;
    @media (width <= 999px) {
        --size-content-max-width: 100%;
        --size-content-max-width_l: 100%;
        --size-content-min-width: initial;
		}
}

* { box-sizing: border-box; }
html { font-size: 62.5%; /* 15px x 0.625 = 10px(=1rem) */ }
body {
	background: #fff;
	font-family: var(--font-main);
	/*font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;*/
	font-size: 1.6rem;
	-webkit-text-size-adjust: 100%;
	font-feature-settings: "palt";
	line-height: 1.7;
}
/*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 100px;
	padding: 0;
	clear: both;
	
	@media (width <= 999px) {
        min-width: 100px;
        width: 100%;
        padding: 0 20px;
		margin: 0 auto 80px;
	}
}
body.front #container {
	max-width: 1920px;
	margin: 0 auto;
	@media (width <= 999px) {
		margin: 0 auto;
	}
}
#main {
}
#footer {
	width: 100%;
	min-width: var(--size-content-min-width);
}


/* ------------------------------------------------------- */
/* header ------------------------------------------------ */
/* ------------------------------------------------------- */
#header {
	box-shadow: 0 0 25px 0 rgba(150,150,150,0.2);
}
body.front #header {
	box-shadow:none;
}
#header {
	height: 100px;
	width: 100%;
	position: relative;
	z-index: 5;
	@media (width <= 999px) {
		height: 60px;
	}
	
	.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;
			height: 100px;
			
			@media (width <= 999px) {
				height: 60px;
				padding-left:10px;
			}
			
			.headerTitle {
				.logo {
					width: 180px;
					height: 20px;
					@media (width <= 999px) {
						width: 150px;
						height: 17px;
					}
				}
				.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;
				}
			}		
		}
	}	
}
body.front #header {	
	.headerInner {
		#top {			
			.headerTitle {
				.logo a {
					background: url(images/base/logo-w.svg) no-repeat;
					@media (width <= 999px) {
						background: url(images/base/logo.svg) no-repeat;
					}
				}
			}		
		}
	}	
}

/* ------------------------------------------------------- */
/* footer ------------------------------------------------ */
/* ------------------------------------------------------- */

#footer {
	background: var(--color-main);
	color: #fff;
	font-size: 1.4rem;
	
	.footerInner {
        max-width: var(--size-content-max-width);
        min-width: var(--size-content-min-width);
        margin: 0 auto;
        padding: 50px 0 80px;
        @media (width <= 999px) {
            padding: 50px 0;
        }
        .footerInner-contents {
            @media (width <= 999px) {
                padding: 0px 20px;
            }
        }
	}	
	.footerInfo {
		order: 1;
		display: grid;
		grid-template-columns: 260px 1fr;
		grid-gap: 0 25px;
		@media (width <= 999px) {
			display: block;
			text-align:center;
		}
		> div:nth-of-type(1) {
			img {
				display: block;
				margin: 0 0 25px 0;
				@media (width <= 999px) {
					margin: 0 auto 25px;
				}
			}
			span[class="bold"] {
				font-size: 1.6rem;
			}
			@media (width <= 999px) {
				margin-bottom:25px;
			}
            a {
                color: #fff;
                text-decoration: none;
                &:hover {
                    text-decoration: underline;
                }
            }
		}		
		address {
			a[class="noPhoneLink"] {
				color: #fff;
			}
		}
	}
	
    .footerNavigation {
        margin-bottom: 30px;
        text-align: center;
        @media (width <= 999px) {
            margin-bottom: 20px;
            padding: 0 20px;
        }
        ul {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 5px 20px;
            li {
                position: relative;
                &:last-child {
                    margin-right: 0;
                }
                &::before {
                    font-family: var(--fa);
                    font-weight: 900;
                    content: "\f0da";
                    margin-right: 5px;
                }
                a {
                    color: #fff;
                    text-decoration: underline;
                    &:hover {
                        text-decoration: none;
                    }
                }
            }
        }
    }
    
	.footerMenu {
		order: 2;		
		@media (width <= 999px) {
			margin-bottom:50px;
		}
		
		> ul {
			text-align: right;			
			@media (width <= 999px) {
				text-align: center;
			}
			
			li {
				display: inline-block;
				margin-left: 15px;				
				@media (width <= 999px) {
				}
				
				&::before {
					font-family: var(--fa);
					font-weight: 900;
					content: "\f0da";
					margin-right: 5px;
				}				
				a {
					color: #fff;
				}
			}
		}
	}
	#copyright {
		text-align: center;
		font-size: 1.3rem;
		font-family: Verdana, "Droid Sans", "メイリオ", Meiryo, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
		padding-bottom: 25px;
	}
}

/* ------------------------------------------------------- */
/* 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: var(--size-content-min-width)!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); }
}*/