@charset "utf-8";
/*
Theme Name: Create Housing Takasaki
Theme URI: https://www.dik.co.jp/
Version: 2.1.0
Author: DIK
*/

:root {
    
    /* Color */
	--color-main: #ff4b4b; /* 通常 */
	--color-main-light: #ffb7b7; /* 明るい */
	--color-main-thin: #feeae8; /* 薄い */
	/*--color-main-deep: #;*/ /* 濃い */
	
	--color-sub: #787878; /* 通常 */
	--color-sub-light: #cccccc; /* 明るい */
	--color-sub-thin: #f1f1f1; /* 薄い */
	/*--color-sub-deep: #;*/ /* 濃い */
    
    --color-sub-salmon: #ff694b; /* 通常 */
	--color-sub-salmon-light: #ffb1a2; /* 明るい */
	--color-sub-salmon-thin: #ffe4df; /* 薄い */
    
    --color-link: #ff6600;
    --color-link_hover: #333;
	
	--color-LINE: #009b40;
    
    /* Font */
    --font-main: "メイリオ", Meiryo, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    /*--font-main: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;*/
    /*--font-serif: "ヒラギノ明朝 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: 110px;
    --img-logo-src: url("images/base/logo.webp");
    --img-logo-width: 510px;
    --img-logo-height: 50px;
    @media (width <= 999px) {
        --size-header-height: 70px;
        /* --img-logo-src: url("images/base/logo-sp.png"); */ /* PC, SP 違う画像の場合 */
        --img-logo-width: 295px;
        --img-logo-height: 29px;
    }
    
    /* 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;
    }
    
    /* Side Bar - Width Size */
    --size-side-width: 260px;
    @media (width <= 999px) {
        --size-side-width: 100%;
    }
    
    /* 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;
}

/* 画像のドラッグ無効化 */
/*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;
}
body.front #container {
	padding-top: 110px;
	max-width: 100%;
}
#main {
	/*width: calc(100% - 25px - var(--size-side-width));
	float: left;*/
}
#side {
	width: var(--size-side-width);
	float: right;
}
#footer {
	width: 100%;
	min-width: var(--size-content-min-width);
}
@media only screen and (max-width:999px) {
    #container {
        padding: 0 15px;
    }
	body.front #container {
		padding-top: 15px;
	}
    #main {
        width: 100%;
        margin: 0 0 15px 0;
        float: none;
    }
    #side {
        float: none;
    }
    #footer {
        width: 100%;
    }
}

/* ------------------------------------------------------- */
/* header ------------------------------------------------ */
/* ------------------------------------------------------- */

#header {
	background: #fff;
	width: 100%;
	height: var(--size-header-height);
	top: 0;
	left: 0;
	position: fixed;
	z-index: 10;
}
.headerInner {
	max-width: var(--size-content-max-width);
	min-width: var(--size-content-min-width);
	margin: 0 auto;
}
#top {
}
.headerTitle {
	display: flex;
	align-items: center;
	height: 70px;
}
.logoTxt {
	padding-left: 20px;
	font-size: 1.3rem;
}
.logo {
	width: var(--img-logo-width);
	height: var(--img-logo-height);
}
.logo a {
	background: var(--img-logo-src) no-repeat;
    background-size: 100%;
    width: 100%;
    height: 100%;
	overflow: hidden;
	text-indent: 100%;
	white-space: nowrap;
	display: block;
}
.headerMenu {
	text-align: center;
	background: var(--color-main);
	height: 40px;
	display: flex;
	justify-content: center;
	align-items: center;
}
.headerMenu li {
	margin-right: 15px;
}
.headerMenu li:last-of-type {
	margin-right: 0;
}
.headerMenu1::before,
.headerMenu2::before,
.headerMenu3::before{
    margin-right: 5px;
    font-family: var(--fa);
    font-weight: 900;
    color: #fff;
}
.headerMenu1::before {content: "\f075";}
.headerMenu2::before {content: "\f095";}
.headerMenu3::before {content: "\f0e0";}

.headerMenu li a {
	color: #fff;
	font-weight: bold;
	text-decoration: none;
}

@media only screen and (max-width:999px) {
	#header {
		position: static;
	}
	.headerTitle {
		display: flex;
		align-items: center;
		height: 40px;
		padding-left: 5px;
	}
	.logoTxt {
		display: none;
	}
	.headerMenu {
		height: 30px;
	}
	.headerMenu li {
		margin-right: 10px;
		font-size: 1.4rem;
	}
}
@media only screen and (max-width:320px) {
	.logo {
		width: 240px;
		height: 24px;
	}
}

/* ------------------------------------------------------- */
/* footer ------------------------------------------------ */
/* ------------------------------------------------------- */

#footer {
	border-top: 1px solid var(--color-main);
	padding-left: 15px;
	padding-right: 15px;
}
.footerInner {
	max-width: var(--size-content-max-width);
	min-width: var(--size-content-min-width);
	margin: 50px auto;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	grid-gap: 0 25px;
	font-size: 1.4rem;
}
.footerInfo {
    order: 1;
}
.footerCompanyName {
	font-weight: bold;
	font-size: 1.8rem;
}
.footerSNS {
	display: flex;
	padding: 50px 0 0;
}
.footerSNS li {
	margin-right: 20px;
}
.footerSNS li:last-of-type {margin-right: 0;}
.footerSNS img {
	display: block;
	width: 40px;
}
.footerMenu1 {
	order: 2;
}
.footerMenu2 {
	order: 3;
}
.footerMenu li {
	margin-bottom: 10px;
}
.footerMenu li a {
	color: #ff4b4b;
}
.footerMenu li ul {
	padding-top: 10px;
}
.footerMenu li ul li {
	
}
.footerMenu li ul li::before {
	content: "-";
	color: var(--color-main);
	display: inline-block;
	padding: 0 7px 0 0;
}
.footerMenu li.footerMenuNoLink a {
	text-decoration: none;
	color: #000;
	font-weight: bold;
    pointer-events: none;
    cursor: default;
}
.footerMenu li.footerMenuNoLink ul li a {
	text-decoration: underline;
	pointer-events: initial;
	cursor: pointer;
	color: #ff4b4b;
	font-weight: normal;
}
.footerMenu li.bold ul li a  {
	font-weight: normal;
}
.footerMenu li a:hover {
	color: var(--color-link_hover);
}

#copyright {
    padding: 0 0 25px 0;
    text-align: center;
	font-family: var(--font-copyright);
    font-size: 1.3rem;
}
@media only screen and (max-width:999px) {
	.footerInner {
		grid-template-columns: repeat(2, 1fr);
		grid-column-gap: 0px;
		grid-row-gap: 0px;
		grid-gap: 0 25px;
		grid-template-areas:
			"A B"
			"C C";
		grid-auto-rows:auto;
		position: relative;
	}
	.footerInfo {
		order: 3;
		grid-area: C;
		padding-top: 40px;
		text-align: center;
	}
	.footerSNS {
		justify-content: center;
		padding: 40px 0 0;
	}
	.footerMenu1 {
		order: 1;
		grid-area: A;
	}
	.footerMenu2 {
		order: 2;
		grid-area: B;
	}
}
@media only screen and (max-width:767px) {
	.footerInner {
		display: block;
	}
}

/* ------------------------------------------------------- */
/* 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;
    }
	body.front #container {
		padding-top: 50px!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); }
}*/