/*
Theme Name: hisagoya-theme
Author: C3
Author URI: https://wordpress.org
Description: Twenty Twenty-Four is designed to be flexible, versatile and applicable to any website. Its collection of templates and patterns tailor to different needs, such as presenting a business, blogging and writing or showcasing work. A multitude of possibilities open up with just a few adjustments to color and typography. Twenty Twenty-Four comes with style variations and full page designs to help speed up the site building process, is fully compatible with the site editor, and takes advantage of new design tools introduced in WordPress 6.4.
Requires at least: 6.4
Tested up to: 6.7
Requires PHP: 7.0
Version: 1.0
Text Domain: twentytwentyfour
Tags: one-column, custom-colors, custom-menu, custom-logo, editor-style, featured-images, full-site-editing, block-patterns, rtl-language-support, sticky-post, threaded-comments, translation-ready, wide-blocks, block-styles, style-variations, accessibility-ready, blog, portfolio, news
*/
/* デフォルトのブレークポイント無効化. */
@media (min-width: 600px) {
  /* メニューを非表示. */
  .wp-block-navigation__responsive-container:not(.hidden-by-default):not(.is-menu-open) {
    display: none;
  }
  /* Openボタン（ハンバーガーボタン）を表示. */
  .wp-block-navigation__responsive-container-open:not(.always-shown) {
    display: flex;
  }
}
.show-pc{
	display: none;
}
.show-sp{
	display: inherit;
}
/* 新しいブレークポイント設定. */
@media (min-width: 1024px) { /* ※ここの数値を設定したい値に変更する. */
  /* メニューを表示. */
  .wp-block-navigation__responsive-container:not(.hidden-by-default):not(.is-menu-open) {
    background-color: inherit;
    display: block;
    position: relative;
    width: 100%;
    z-index: auto;
  }
  /* Openボタン（ハンバーガーボタン）を非表示. */
  .wp-block-navigation__responsive-container-open:not(.always-shown) {
    display: none;
  }
  .show-pc{
		display: inherit;
	}
	.show-sp{
		display: none!important;
	}
}
:root :where(p.has-background){
	box-sizing: border-box;
}
header{
	position: sticky;
	top: 0;
	z-index: 998;
}
.hero-logo{
	position: relative;
	z-index: 2;
}

.has-bg-logo {
    background-image: url(assets/images/bg-logo.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
}
.has-bg-logo-left {
    background-position: calc(50vw - 800px) 0px;
    background-size: 1000px;
}
/*
.has-bg-logo::after{
	content: url(assets/images/bg-logo.png);
	width: 100%;
	height: 100%;
}
*/
.hero-mask{
	position: relative;
}
.hero-mask::before{
	content: "";
	position: absolute;
	top: -1px;
	left: 0;
	display: block;
	width: 100%;
	height: 240px;
	z-index: 2;
	background-image: url(assets/images/hero-mask.png);
	background-repeat: no-repeat;
	background-size: contain;
}
.hero-title > *{
	font-size: clamp(1.25rem, 0.614rem + 3.18vw, 3rem) !important;
	font-weight: 700;
	/* 20-48 320-1200 */
}
table:not([class]){
	width: 100%;
	table-layout: fixed;
}
table:not([class]),
table:not([class]) th,
table:not([class]) td,
.wp-block-table table,
.wp-block-table table th,
.wp-block-table table td{
	border: 1px solid #a4a4a4;
	border-collapse: collapse;
}
table:not([class]) th,
table:not([class]) td,
.wp-block-table table th,
.wp-block-table table td{
	padding: 8px;
}