@charset "utf-8";
/*
Theme Name: 茜工房
Theme URI: https://www.dik.co.jp/
Version: 2.0.1
Author: DIK
*/

#humberger {
    -vendor-animation-duration: 3s;
    -vendor-animation-delay: 2s;
    -vendor-animation-iteration-count: infinite;
}
* { box-sizing: border-box; }
html { font-size: 62.5%; /* 15px x 0.625 = 10px(=1rem) */ }
body {
	background: #fff;
	/*font-family: "メイリオ", Meiryo, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;*/
	/*font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;*/
	font-family: "Noto Sans JP", sans-serif;
	font-weight: 500;
	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;
}*/

/* ------------------------------------------------------- */
/* color ------------------------------------------------- */
/* ------------------------------------------------------- */

/* CSS記入例：background: var(--main-color); */
:root {
	--main-color: #bf3342;
	--main-color2: #333;
	--main-color3: #f6dfe1;
	--main-color4: #ffa417;
}

/* ------------------------------------------------------- */
/* layout ------------------------------------------------ */
/* ------------------------------------------------------- */

/* base サイトレイアウトの基本設定 ----------------------- */

#top {
	width: 100%;
}
#container {
	max-width: 1115px;
	min-width: 1000px;
	margin: 50px auto;
	padding: 0;
	clear: both;
}
#main {
	width: 100%;
}
#footer {
	width: 100%;
	min-width: 1000px;
	border-top: solid 1px #eee;
}

@media only screen and (max-width:999px) {
    #container {
        min-width: 100px;
        width: 100%;
        padding: 0 15px 0 15px;
    }
    #main {
        width: 100%;
        float: none;
        margin: 0 0 15px 0;
    }
    #side {
        width: 100%;
        float: none;
    }
    #footer {
        min-width: 100px;
        width: 100%;
    }
}

/* ------------------------------------------------------- */
/* header ------------------------------------------------ */
/* ------------------------------------------------------- */

#header {
	height: 80px;
	width: 100%;
	position: fixed;
	z-index: 10;
	background: #fff;
	top: 0;
	left: 0;
}
header {
	height: 100%;
}
header * {
	transition: all 0.3s;
}
.headerInner {
	display: flex;
    align-items: center;
	height: 100%;
	padding: 0 0 0 50px;
}
#logoBox {
	width: 346px;
	margin-right: 50px;
}
.logo {
	width: 346px;
	height: 56px;
}
.logo a {
	display: block;
    width: 100%;
    height: 100%;
	background: url(images/base/logo.webp) no-repeat;
    background-size: 100%;
	overflow: hidden;
	text-indent: 100%;
	white-space: nowrap;
}

@media only screen and (max-width:1280px) {

	.headerInner {
		justify-content: space-between;
		padding: 0 0 0 25px;
	}
	#logoBox {
		width: 250px;
		margin-right: 25px;
	}
	.logo {
		width: 250px;
		height: 40px;
	}
	
}

@media only screen and (max-width:999px) {
	
	#header {
		height: 60px;
	}
	.headerInner {
		width: 100%;
		min-width: 100px;
		padding: 0 0 0 10px;
	}
	.logo {
		width: 247px;
		height: 40px;
	}
	.logo a {
		background: url(images/base/logo.webp) no-repeat;
		background-size: 100%;
	}
	
}

/* ------------------------------------------------------- */
/* footer ------------------------------------------------ */
/* ------------------------------------------------------- */

.footerInner {
	max-width: 1115px;
	min-width: 1000px;
	margin: 0 auto;
	padding: 75px 0;
    display: flex;
}
.footerInfo {
	width: 260px;
	margin-right: 25px;	
}
.footerInfo img {
	display: block;
	margin-bottom: 25px;
}
.footerInfo span {
	display: block;
	font-weight: 700;
}
.footerMenu {
	display: flex;
	flex-direction: column;
	width: calc( 100% - 285px );
}
.footerMenu {
	div.btnInsta {
		margin-bottom: 25px;
		a {
			display: flex;
			align-items: center;
			justify-content: center;
			width: 240px;
			height: 60px;
			background: rgb(255,214,0);
			background: -webkit-linear-gradient(top left, rgba(255,214,0,1) 0%, rgba(255,122,0,1) 25%, rgba(255,0,105,1) 50%, rgba(211,0,197,1) 75%, rgba(118,56,250,1) 100%);
			background: -o-linear-gradient(top left, rgba(255,214,0,1) 0%, rgba(255,122,0,1) 25%, rgba(255,0,105,1) 50%, rgba(211,0,197,1) 75%, rgba(118,56,250,1) 100%);
			background: linear-gradient(to bottom right, rgba(255,214,0,1) 0%, rgba(255,122,0,1) 25%, rgba(255,0,105,1) 50%, rgba(211,0,197,1) 75%, rgba(118,56,250,1) 100%);
			border-radius: 10px;
			text-align: center;
			color: #fff;
			text-decoration: none;
			position: relative;
			&::after {
				font-family: "Font Awesome 5 Free";
				font-weight: 900;
				content: "\f054";
				display: flex;
				align-items: center;
				height: 100%;
				position: absolute;
				right: 15px;
			}
			&:hover {
				opacity: 0.8;
			}
		}
	}
}
.footerMenu > ul:nth-of-type(1) {
	display: flex;
	flex-wrap: wrap;
	padding-top: 25px;
	margin-bottom: 25px;
	border-top: solid 1px #ccc;
}
.footerMenu ul li {
	width: calc(( 100% - 50px ) / 3 );
	margin: 0 25px 15px 0;
}
.footerMenu ul li:nth-of-type(3n) {
	margin: 0 0 15px 0;
}
.footerMenu ul li a {
    display: flex;
	align-items: center;
	color: #333;
	text-decoration: none;
}
.footerMenu ul li a::before {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f0da";
    margin-right: 10px;
}

/* お問い合わせボタン */
ul.footerContact{
	display: flex;
}
ul.footerContact li{
	margin-bottom: 0!important;
}
ul.footerContact li:last-child{
	margin: 0!important;
}
ul.footerContact li a{
	display: flex;
	align-items: center;
	justify-content: center;
	width: 260px;
	height: 60px;
	text-align: center;
	border-radius: 60px;
	border: solid 1px #333;
	position: relative;
}
ul.footerContact li a::before{
	font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f054";
    position: absolute;
	top: 50%;
	right: 15px;
	margin-top: -13px;
}
#copyright {
    text-align: center;
    font-size: 1.4rem;
    padding: 5px;
	font-family: Verdana, "Droid Sans", "メイリオ", Meiryo, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	color: #fff;
	background: #333;
}

@media only screen and (max-width:999px) {
	
    .footerInner {
        width: 100%;
        min-width: 100px;
        display: block;
	    padding: 50px 15px;
    }
	.footerInfo {
		width: 100%;
		margin: 0 0 25px 0;
		text-align: center;
	}
	.footerInfo img {
		display: block;
		margin: 0 auto 25px;
	}
	.footerMenu {
		display: block;
		width: 100%;
		padding-top: 25px;
	}
	.footerMenu {
		div.btnInsta {
			a {
				width: 100%;
				height: 60px;
				&::after {
					right: 15px;
				}
			}
		}
	}
	.footerMenu ul {
		display: flex;
		flex-wrap: wrap;
		margin-bottom: 10px;
	}
	.footerMenu ul li {
		width: calc(( 100% - 15px ) / 2 );
		margin: 0 15px 15px 0;
	}
	.footerMenu ul li:nth-of-type(2n) {
		margin: 0 0 15px 0;
	}
	.footerMenu ul li:nth-of-type(3n) {
		margin: 0 15px 15px 0;
	}
	.footerMenu ul li:nth-of-type(6n) {
		margin: 0 0 15px 0;
	}
	ul.footerContact{
		display: block;
	}
	ul.footerContact li{
		width: 100%;
		margin-bottom: 15px!important;
	}
	ul.footerContact li a{
		width: 100%;
		height: 60px;
	}
	ul.footerContact li a::before{
		right: 15px;
		margin-top: -13px;
	}
}

/* ------------------------------------------------------- */
/* 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: 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); }
}*/