/*
Theme Name: naturira
Theme URI: 
Author: beabo
Author URI: 
Description: 
Requires at least: 6.8
Tested up to: 6.8
Requires PHP: 5.7
Version: 
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: naturira
Tags: 
*/

/* back to top */
html {
	scroll-behavior: smooth;
}

#page_top {
	a {
		position: fixed;
		bottom: 24px;
		right: 24px;
		width: 48px;
		height: 48px;
		text-decoration: none;
		background-color: #00908b;
		display: block;
		text-align: center;
		border-radius: 24px;
		z-index: 10;
	}
	a::before {
		content: '\f062';   /* Font Awesome Unicord*/
		font-family: 'Font Awesome 6 Free';
		font-size: 30px;
		font-weight: 900;
		color: #fff;
		line-height: 48px;
	}
}

#header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999; /* 他の要素より上に表示 */
}

body {
  padding-top: 60px; /* ヘッダーの高さに合わせて調整 */
}

/*----------------------------------------------------------------------------
  pagination ページ移動を四角に
  ---------------------------------------------------------------------------- */
nav {
	display: flex;
	justify-content: center;
	/* color settig */
	--nav-color: #412b15;
	--nav-hover-color: #ffffff;
	.wp-block-query-pagination-numbers {
		a {
			transition: background-color .3s;
			text-decoration: none;
		}
		a:hover {
			color: var(--nav-hover-color);
			background-color: var(--nav-color);
		}
	}
	/* page numbers */
	.page-numbers {
		padding: 6px 12px;
		border: 1px solid var(--nav-color);
	}
	/* current page numbers */
	.current {
		color: var(--nav-hover-color);
		background-color: var(--nav-color);
	}
	/* prev page and next page */
	.wp-block-query-pagination-previous, .wp-block-query-pagination-next {
		text-decoration:none;
	}
}