@charset "utf-8";
/*
Theme Name: AYAweek
Theme URI: https://www.dik.co.jp/
Version: 2.0.0
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: 'Noto Sans JP',"メイリオ", Meiryo, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	font-size: 1.6rem;
	-webkit-text-size-adjust: 100%;
	font-feature-settings: "palt";
	line-height: 1.7;
}

/* ------------------------------------------------------- */
/* layout ------------------------------------------------ */
/* ------------------------------------------------------- */

/* base サイトレイアウトの基本設定 ----------------------- */

#top {
	width: 100%;
}
#container {
	max-width: 1115px;
	min-width: 1000px;
	margin: 0 auto 60px;
	padding: 0;
	clear: both;
}
#main {
	width: calc(100% - 285px);
	float: left;
}
#side {
	width: 260px;
	float: right;
}
#footer {
	width: 100%;
	min-width: 1000px;
}
@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: 130px;*/
	width: 100%;
	/*position: fixed;
	background: #fff;
	top: 0;
	left: 0;*/
    margin-bottom:10px;
	z-index: 10;
}
.headerInner {
	max-width: 1115px;
	min-width: 1000px;
	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: 280px;
	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;
}
.headerMenu li {
    display: inline-block;
    margin-left: 15px;
}
.headerMenu li::before {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f0da";
    margin-right: 5px;
}
/*header banner*/
.headerBnr{
    --header-bnr-height:60px;
	width: calc(100% - 325px);
	height: var(--header-bnr-height);
	box-shadow: 0 0 10px rgba(0,0,0,0.1);
	background: #fff;
	display: flex;
	align-items: center;
	/*justify-content: flex-end;*/
	position: relative;
    min-width: 100px;
    margin: 20px 0;
}
.headerBnr::before{
	content: "";
	width: 26%;
	height: auto;
	display: inline-block;
	background: url("images/base/bnr_img.webp") left / contain no-repeat;
	position: absolute;
	left: 5px;
	bottom: 0;
	z-index: 1;
    aspect-ratio: 206 / 70;
}
.headerBnr div:first-child{
	color: #737373;
	font-weight: 400;
	font-size: 1.5rem;
	padding: 0 1% 0 28%;
	text-align: center;
	width: 60%;
    line-height:1.5;
}
.headerBnr div:nth-child(2),
.headerBnr div:last-child {
	width: 20%;
    font-size: 1.4rem;
}
.headerBnr div:nth-child(2) a,
.headerBnr div:last-child a{
	text-align: center;
	/*background: #4f4f4f;*/
	color: #fff;
    width:100%;
	text-decoration: none;
	height: var(--header-bnr-height);
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	transition: 0.3s;
}
/*リンク切る場合は<span></span>で囲む、リンクする場合はspan外す*/
.headerBnr div:last-child span{
    text-align: center;
	color: #fff;
	width: 100%;
	text-decoration: none;
	height: var(--header-bnr-height);
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	transition: 0.3s;
    background:#4f4f4f;
}
.headerBnr div:nth-child(2) a{background:#787878;}
.headerBnr div:last-child a{background:#4f4f4f;}

.headerBnr div:nth-child(2) a:hover,
.headerBnr div:last-child a:hover{
	opacity: 0.9;
}
.headerBnr div:nth-child(2) a::before{
    --headerBnr-arrow-height:4px;
	content: "";
	width: 40px;
	height: 4px;
	display: inline-block;
	position: absolute;
	left: -30px;
	top: calc((var(--header-bnr-height) - var(--headerBnr-arrow-height) - 2px) / 2);
	background: url("images/base/bnr_guide.webp") center / contain no-repeat;
}
@media only screen and (max-width:999px) {
	#header {
		height: auto;
		position: static;
		top: 0;
		left: 0;
		background: #fff;
		/*border-bottom: 2px solid #1a6212;*/
		box-shadow: 0 0.5rem 1rem rgb(0 0 0 / 10%);
	}
	.headerInner {
		width: 100%;
		min-width: 100px;
		padding: 5px 10px 10px;
	}
    #top {display: block;}
	.headerTitle {
		flex-wrap: wrap;
		padding: 0;
	}
	.logo {
		width: 180px;
		height: 36px;
		/*margin-bottom: 5px;*/
        order: 2;
	}
	.logo a {
		background: url(images/base/logo.webp) no-repeat;
		background-size: 100%;
	}
    .headerMenu {display: none;}
	.headerBnr{
		display: inherit;
		height: auto;
		min-width: 100px;
		margin: 25px 5px 5px;
		width: calc(100% - 10px);
	}
	.headerBnr::before{
		width: 150px;
		height: 51px;
		bottom: 80px;
	}
	.headerBnr div:first-child{
		font-size: 1.3rem;
		padding: 5px 5px 5px 165px;
		letter-spacing: inherit;
		min-height: 60px;
		text-align: left;
		display: flex;
		flex-wrap: wrap;
		align-items: center;
		width: 100%;
	}
    
	.headerBnr span{display: inline-block;}
    .headerBnr div:nth-child(2),
	.headerBnr div:last-child{
        width:100%;
    }
	.headerBnr div:nth-child(2) a,
	.headerBnr div:last-child a{
		height: 40px;
		width: 100%;
		font-size: 1.5rem;
	}
	.headerBnr div:nth-child(2) a::before{
		/*left: 0;
		top:17px;
		width: 30px;
		height: 3px;*/
		display: none;
	}
    /*リンク切る場合は<span></span>で囲む、リンクする場合はspan外す*/
    .headerBnr div:last-child span{
        height: 40px;
		width: 100%;
        ont-size: 1.5rem;
    }
}

/* ------------------------------------------------------- */
/* footer ------------------------------------------------ */
/* ------------------------------------------------------- */

#footer {
	padding-top: 120px;
	position: relative;
}
#footer::before{
	content: "";
	background: url("images/base/footer.webp") top / cover no-repeat;
	position: absolute;
	top: 0;
	width: 100%;
	height: 120px;
}
.footerInner {
	max-width: 1115px;
	min-width: 1000px;
	margin: 0 auto;
	padding: 60px 0 20px;
	text-align: center;
    /*display: flex;
    align-items: center;
    justify-content: space-between;*/
}
.ftShare{
	font-size: 3.0rem;
	font-weight: 700;
	margin-bottom: 30px;
}
.footerInner p{margin-bottom: 30px;}
.footerLogo{
	display: flex;
	justify-content: center;
}
.footerLogo img{
	display: block;
}
.footerLogo div{
	/*display: inline;*/
	color: #a4a2a2;
	margin-left: 40px;
	padding-top: 40px;
}
/*.footerInfo,
.footerMenu {width: 50%;}
.footerInfo {
    order: 1;
    text-align: left;
    padding-right: 25px;
}
*/
.footerMenu {
    /*order: 2;
    text-align: right;
    */
    padding:10px 0 0;
    line-height:1;
}
.footerMenu ul li {
    display: inline-block;
    margin-left: 15px;
    font-size:1.5rem;
    letter-spacing: 0.05rem;
}
.footerMenu ul li a{
    text-decoration:none;
    color:#a4a2a2;
}
.footerMenu ul li::before {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f192";
    margin-right: 5px;
    color:#a4a2a2;
}
.snsLink > ul{
	display: flex;
	justify-content:center;
	margin-bottom: 20px;
}
.snsLink > ul li{
	margin-left: 25px;
}
.snsLink > ul li:first-child{
	margin-left: 0;
}
.snsLink > ul li img{
	width: 40px;
	height: 40px;
}
#copyright {
    text-align: center;
    font-size: 1.3rem;
	margin-bottom: 50px;
}
.footerBtm{
	background: #f2f2f2;
	padding: 5px 0;
	text-align: center;
	font-size: 1.3rem;
}
.footerBtm > div{
    display: inline-block;
	background: #fff;
    text-decoration: none;	
	margin-left: 15px;    
    border:1px solid #000;
}
.footerBtm > div a{
    color: #000;
    display: inline-block;
    padding: 5px 15px;
    transition: 0.3s;
    text-decoration:none;
}
.footerBtm > div a:hover{
	background: #000;
	color: #fff;
	transition: 0.3s;
}
/*リンク切る場合は<span></span>で囲む、リンクする場合はspan外す*/
.footerBtm > div span{
    color: #000;
    display: inline-block;
    padding: 5px 15px;
    transition: 0.3s;
    text-decoration:none;
}
@media only screen and (max-width:999px) {
    .footerInner {
        width: 100%;
        min-width: 100px;
        display: block;
	    padding: 15px;
    }
    .footerInfo,
    .footerMenu {width: 100%;}
    .footerInfo {
        /*text-align: left;*/
        padding-right: 0;
    }
    .footerMenu {
        text-align: center;
        margin-bottom: 15px;
    }
	#footer{padding-top: 90px;}
	#footer::before{
		height: 80px;
	}
	.ftShare{font-size: 2.2rem;}
	.snsLink > ul li{margin-left: 20px;}
	#copyright{margin-bottom: 20px;}
	.footerLogo{display: inherit;}
	.footerLogo img{
		margin: 0 auto;
		max-width: 300px;
	}
	.footerLogo div{
		margin-left: 0;
		padding-top: 15px;
	}
    .footerBtm > div{
        margin-left: 0px;
        margin-top: 5px;
		margin-bottom: 5px;
    }
    .footerBtm > div a{
        padding: 5px 15px;
    }
    /*リンク切る場合は<span></span>で囲む、リンクする場合はspan外す*/
    .footerBtm > div span{
        color: #000;
        display: inline-block;
        padding: 5px 15px;
        transition: 0.3s;
        text-decoration:none;
    }
}

/* ------------------------------------------------------- */
/* 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); }
}*/