@charset "utf-8";
/*
Theme Name: dsnsn-base
Theme URI: https://github.com/tidythemes/blankslate
Description: BlankSlateの子テーマを独自に調整したブランクテーマ
Template: blankslate
Author:DS.N.SN
Version:0.0.2
*/

/*	◆ CSS Document ◆
ベースになるCSSコードや、:rootで変数にしたものはbase.cssにあります。
こちらはヘッダーやフッターなど、全ページ共通の項目用のCSSです。 */

/*--------------------------------------------------
	Header
--------------------------------------------------*/
header {
	position: fixed;
	top: 0;
	display: flex;
	justify-content: flex-end;
	padding: .1rem;
	width: 100%;
	height: calc(130px - .35rem);
	z-index: calc(infinity);
}
	#header_etc{
		justify-content: space-between;
		align-items: center;
		background: linear-gradient(-20deg, var(--color01) 0%, var(--color02) 100%);
	}
#header_etc h1 {
	font-size: .8rem;
	font-family: "Fugaz One", sans-serif;
	font-weight: 400;
	font-style: normal;
}
	#header_etc h1 a{
		color: var(--white);
	}

@media (max-width:768px) {
	header{
			height: calc(100px - .35rem);
	}
	#header_etc h1 {
			font-size: .5rem;
	}
}


/*--------------------------------------------------------------
	Header - HBMenu
--------------------------------------------------------------*/

.hbmenu_full {
	position: relative;
	z-index: calc(infinity);
	right: .8rem;
}
	#header_etc .hbmenu_full{
		top: -.4rem;
	}

.hbmenu_full .menu {
	position: fixed;
	top: 0;
	left: 0;
	display: flex;
	visibility: hidden;
	overflow: hidden;
	width: 100%;
	height: 100%;
	pointer-events: none;
	outline: 1px solid transparent;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	align-items: center;
	justify-content: center;
}

.hbmenu_full .menu>nav {
	display: flex;
	flex-direction: column;
	overflow: hidden;
	width: 300vw;
	height: 300vw;
	transition: all 0.4s ease;
	-webkit-transform: scale(0);
	transform: scale(0);
	text-align: center;
	color: #fefefe;
	border-radius: 50%;
	background-color: rgba(0, 0, 0, 0.8);
	flex: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	align-items: center;
	justify-content: center;
	font-family: "Fugaz One", sans-serif;
		font-weight: 400;
		font-style: normal;
}

.hbmenu_full .menu>nav>ul {
	display: block;
	max-height: 100vh;
	margin: 0;
	padding: 0 1em;
	list-style: none;
	transition: opacity 0.4s ease;
	opacity: 0;
}

.hbmenu_full .menu>nav>ul>li {
	display: block;
	padding: 0.5rem 0;
	font-size: .32rem;
}

.hbmenu_full .menu>nav>ul>li>a {
	position: relative;
	display: inline;
	cursor: pointer;
	transition: color 0.4s ease;
	color: #fff;
	text-decoration: none;
}

.hbmenu_full .menu>nav>ul>li>a:hover {
	color: #e5e5e5;
}

.hbmenu_full .menu>nav>ul>li>a:hover:after {
	width: 100%;
}

.hbmenu_full .menu>nav>ul>li>a:after {
	position: absolute;
	z-index: 1;
	bottom: -0.15em;
	left: 0;
	width: 0;
	height: 2px;
	content: '';
	transition: width 0.4s ease;
	background: #e5e5e5;
}

.hbmenu_full .toggle {
	position: absolute;
	z-index: 2;
	top: 0;
	left: 0;
	width: 60px;
	height: 60px;
	cursor: pointer;
	opacity: 0;
}

.hbmenu_full .toggle:checked+.hamburger>span {
	-webkit-transform: rotate(135deg);
	transform: rotate(135deg);
}

.hbmenu_full .toggle:checked+.hamburger>span:before,
.hbmenu_full .toggle:checked+.hamburger>span:after {
	top: 0;
	-webkit-transform: rotate(90deg);
	transform: rotate(90deg);
}

.hbmenu_full .toggle:checked+.hamburger>span:after {
	opacity: 0;
}

.hbmenu_full .toggle:checked~.menu {
	visibility: visible;
	pointer-events: auto;
}

.hbmenu_full .toggle:checked~.menu>nav {
	transition-duration: 0.75s;
	-webkit-transform: scale(1);
	transform: scale(1);
}

.hbmenu_full .toggle:checked~.menu>nav>ul {
	opacity: 1;
}

.hbmenu_full .toggle:checked~.menu>nav>ul li {
	transition-delay: 0.4s;
}

.hbmenu_full .toggle:hover+.hamburger {
	box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.1);
}

.hbmenu_full .toggle:checked:hover+.hamburger>span {
	-webkit-transform: rotate(225deg);
	transform: rotate(225deg);
}

.hbmenu_full .hamburger {
	position: absolute;
	z-index: 1;
	top: 0;
	left: 0;
	display: block;
	width: .8rem;
	height: .8rem;
	padding: 0.5em 1em;
	cursor: pointer;
	transition: box-shadow 0.4s ease;
	border-radius: 0 0.12em 0.12em 0;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

.hbmenu_full .hamburger>span {
	position: relative;
	top: 50%;
	display: block;
	width: 100%;
	height: 2px;
	transition: all 0.4s ease;
	background: #fefefe;
}

.hbmenu_full .hamburger>span:before,
.hbmenu_full .hamburger>span:after {
	position: absolute;
	z-index: 1;
	top: -15px;
	left: 0;
	display: block;
	width: 100%;
	height: 2px;
	content: '';
	transition: all 0.4s ease;
	background: inherit;
}

.hbmenu_full .hamburger>span:after {
	top: 15px;
}

@media (max-width:768px) {
	.hbmenu_full {
		right: .7rem;
	}

	.hbmenu_full .menu>nav>ul>li h2 {
		padding: 0.5rem 0;
	}

	.hbmenu_full .menu>nav>ul>li img {
		width: 40%;
	}
}

/*--------------------------------------------------
	Breadcrumb
--------------------------------------------------*/
#breadcrumb_area {
	padding: 1em 0;
	font-size: .14rem;
}
.breadcrumb {
	display: flex;
	flex-wrap: wrap;
	list-style: none;
}
	.breadcrumb li a {
		color: var(--color01);
		text-decoration: underline;
	}

@media (max-width:768px) {

	.breadcrumb {
		align-content: space-between;
		margin-top: -5px;
	}

	.breadcrumb li {
		line-height: 1.5;
		margin-top: 5px;
	}
}

/*--------------------------------------------------
	Category
--------------------------------------------------*/
/* ベース */
.cat-list h2 {
	font-size: .32rem;
	font-family: "Fugaz One", sans-serif;
	font-weight: 400;
	font-style: normal;
	margin-bottom: .18rem;
}
.cat-list p{
	text-align: left;
	margin-block: .15rem;
	width: auto;
}
.cat-list ul {
	list-style: none;
	margin: 0;
	padding: 0;
}
.cat-list li {
	margin: .15rem .25rem;
	list-style-type: none;
	text-align: left !important;
	font-size: .16rem;
}
#archive .cat-list li {
	font-size: .18rem;
	margin: .15rem 0;
}
#archive .graffiti{
	margin-bottom: .5rem;
}

/* リンク */
.cat-list a {
	color: var(--black);
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	gap: .1rem;
}

.cat-list a:hover,
.cat-list a:focus {
	color: var(--color01);
	outline: none;
}

/* 階層（子カテゴリ） */
.cat-list li>ul {
	margin-top: .15rem;
	margin-left: .05rem;
	/* インデント */
	padding-left: .15rem;
}

/* マーカー（お好みで） */
.cat-list a::before {
	content: "›";
	font-size: .9em;
	opacity: .5;
	line-height: 1;
}

/* 現在のカテゴリ/親カテゴリの強調（WPが付与するクラス） */
.cat-list .current-cat>a,
.cat-list .current-cat-parent>a {
	color: var(--color01);
	font-weight: 700;
}

/* 余白の微調整（親直下だけ少し詰めたい時） */
.cat-list>ul>li {
	margin: .2rem 0;
}

/* モバイルで読みやすく */
@media (max-width: 768px) {
	.cat-list {
		margin-top: .5rem;
	}
	.cat-list li {
		margin: .3rem 0;
		text-align: center;
	}
	.cat-list li>ul {
		margin-left: .25rem;
		padding-left: 0;
	}
	.cat-list p{
		margin-inline: 0;
	}

}



/*--------------------------------------------------
	Footer
--------------------------------------------------*/
footer{
	position: sticky;
	top: 100vh;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	margin-top: 1.5rem;
	padding-block: .25rem;
	color: var(--white);
	background: linear-gradient(-20deg, var(--color01) 0%, var(--color02) 100%);
}
.foot_nav ul{
	display: flex;
	gap: .15rem;
}
.foot_nav a{
	color: var(--white);
}
#copyright{
	font-size: .12rem;
	margin-top: .25rem;
}


@media (max-width:768px) {
}

