@charset "UTF-8";
/*
Theme Name: nousan-sh
Version: 1.1
Author: OWNDMEDIA.LAB
*/
:root {
	/* color */
	--color-bg-base: #fafafd;
	--color-primary: #43199e;
	--color-primary-rgb: 67, 25, 158;
	--color-secondary: #ffffeb;
	--color-gray: #dfdfe3;
	--color-gray-light: #f7f7f9;
	--color-gray-dark: #a8a8ab;
	--color-text-base: #333;
	/* font */
	--font-family-en: 'Playfair Display', serif;
	--font-family-ja: 'Noto Serif JP', serif;
	/* font size */
	--fs-sm-1: clamp(1.2rem, 1.12rem + 0.2vw, 1.4rem);
	/* 12px ~ 14px */
	--fs-sm-2: clamp(1.4rem, 1.312rem + 0.25vw, 1.6rem);
	/* 14px ~ 16px */
	--fs-md-1: clamp(1.6rem, 1.52rem + 0.25vw, 1.8rem);
	/* 16px ~ 18px */
	--fs-md-2: clamp(1.8rem, 1.68rem + 0.3vw, 2rem);
	/* 18px ~ 20px */
	--fs-lg-1: clamp(2.2rem, 2rem + 0.4vw, 2.8rem);
	/* 22px ~ 28px */
	--fs-lg-2: clamp(2.8rem, 2.56rem + 0.5vw, 3.6rem);
	/* 28px ~ 36px */
	--fs-xl-1: clamp(3.6rem, 3.2rem + 0.7vw, 4.8rem);
	/* 36px ~ 48px */
	--fs-xl-2: clamp(4.4rem, 3.84rem + 1vw, 5.6rem);
	/* 44px ~ 56px */
	/* space */
	--space-sm-1: clamp(0.8rem, 0.72rem + 0.15vw, 1.2rem);
	/* 8px ~ 12px */
	--space-sm-2: clamp(1.2rem, 1.12rem + 0.2vw, 1.6rem);
	/* 12px ~ 16px */
	--space-md-1: clamp(1.6rem, 1.44rem + 0.3vw, 2.4rem);
	/* 16px ~ 24px */
	--space-md-2: clamp(2.4rem, 2.08rem + 0.5vw, 4rem);
	/* 24px ~ 40px */
	--space-lg-1: clamp(4rem, 3.36rem + 0.8vw, 6.4rem);
	/* 40px ~ 64px */
	--space-lg-2: clamp(6.4rem, 5.44rem + 1.2vw, 10rem);
	/* 64px ~ 100px */
	--space-lg-3: clamp(10rem, 8.64rem + 1.6vw, 15rem);
	/* 100px ~ 150px */
	--space-lg-4: clamp(15rem, 12.96rem + 2vw, 22rem);
	/* 150px ~ 220px */
	--space-lg-5: clamp(22rem, 18.72rem + 2.6vw, 32rem);
	/* 220px ~ 320px */
	/* box shadow */
	--shadow-1: 0 1px 2px rgba(15, 23, 42, 0.03), 0 5px 20px rgba(15, 23, 42, 0.02);
	/* duration */
	--duration-fast: 0.2s;
	--duration-base: 0.3s;
	--duration-slow: 0.4s;
}

/*--------------------------------------------------------------

## 共通

--------------------------------------------------------------*/
html,
body {
	width: 100%;
	height: 100%;
	font-size: 62.5%;
	/*(=1rem)*/
	background-color: var(--color-bg-base);
	color: var(--color-text-base);
	font-family: var(--font-family-ja);
	line-height: 2;
	letter-spacing: 0.15em;
	-webkit-font-feature-settings: 'palt';
	font-feature-settings: 'palt';
}

html,
body,
#page #scroll__contents {
	margin: 0 auto;
}

.wrapper {
	width: 100%;
}

h1 {
	font-size: 3.5rem;
}

h2 {
	font-size: 3rem;
}

h3 {
	font-size: 2.5rem;
}

h4 {
	font-size: 2.2rem;
}

p {
	font-size: 1.8rem;
}

a {
	font-size: 1.8rem;
	text-decoration: none;
	color: var(--color-text-base);
}

ul,
ol,
li {
	list-style: none;
}

li,
th,
td {
	font-size: 1.8rem;
}

a:hover,
a:focus {
	color: var(--color-gray-dark);
}

/**** 改行 ****/
.br_pc {
	display: block;
}

/*PCだけ改行 */
.br_1024 {
	display: none;
}

/*幅1024以下で改行 */
.br_960 {
	display: none;
}

/*幅960以下で改行 */
.br_560 {
	display: none;
}

/*幅560以下で改行 */
/**** フォント ****/
.font--en {
	font-family: var(--font-family-en);
}

/**** 画像 ****/
img {
	max-width: 100%;
	height: auto;
}

.p-footer_sns {
	max-width: 20px;
}

/*** サムネイル画像 ***/
.post_thum_images {
	position: relative;
	aspect-ratio: 4/3;
	overflow: hidden;
	margin-bottom: var(--space-sm-1);
}

.post_thum_images img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	display: block;
}

.post_thum_images img.wp-post-image {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	-webkit-transition: 0.8s;
	transition: 0.8s;
}

.post_thum_images:hover img.wp-post-image {
	-webkit-transform: scale(1.1, 1.1);
	transform: scale(1.1, 1.1);
	-webkit-transition: all 0.8s;
	transition: all 0.8s;
	opacity: 0.7;
}

/**** ボタン01 ****/
.btn01 {
	margin-top: 28px;
	font-family: 'Hind', sans-serif;
	letter-spacing: 0.1em;
	font-weight: 500;
}

.btn01 a {
	display: block;
	-webkit-transition: background-color 300ms ease;
	transition: background-color 300ms ease;
	position: relative;
	z-index: 1;
	text-decoration: none;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	width: 280px;
	height: 70px;
	padding-left: 42px;
	color: #fff;
	background-color: var(--color-primary);
	line-height: 75px;
}

.btn01 a:hover {
	color: #ffffff;
	background-color: var(--color-gray-dark);
}

.btn01 a span {
	position: absolute;
	top: 30px;
	right: 30px;
	display: block;
	width: 62px;
	height: 10px;
	background: url('../img/common/yajirushi01.png') 0 0 no-repeat;
	background-size: 62px 10px;
	overflow: hidden;
}

/**** 白いボタン01 ****/
.btn01--white a {
	-webkit-transition: background-color 300ms ease;
	transition: background-color 300ms ease;
	color: var(--color-primary);
	background-color: #ffffff;
	border: 2px solid var(--color-primary);
}

.btn01--white a:hover {
	color: #ffffff;
	background-color: var(--color-primary);
}

.btn01--white a span {
	background: url('../img/common/yajirushi02.png') 0 0 no-repeat;
	background-size: 62px 10px;
}

.btn01--white a:hover span {
	background: url('../img/common/yajirushi01.png') 0 0 no-repeat;
	background-size: 62px 10px;
}

/***** ミニボタン01 *****/
.btn01--mini a {
	width: 200px;
	height: 60px;
	padding-left: 32px;
	line-height: 65px;
}

.btn01--mini a span {
	top: 25px;
}

/**** ダウンロードボタン ****/
.btn--download {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 0.5em;
	width: -webkit-fit-content;
	width: -moz-fit-content;
	width: fit-content;
	background: var(--color-primary);
	color: #fff;
	font-size: var(--fs-sm-2);
	font-weight: 600;
	padding: 0.3em 1em;
	line-height: 1.6;
	margin-top: var(--space-md-1);
	-webkit-transition: var(--duration-base);
	transition: var(--duration-base);
}
.btn--download::before {
	content: 'download';
	font-family: 'Material Symbols Outlined';
	font-size: var(--fs-lg-1);
	font-weight: normal;
}
.btn--download:hover {
	color: #fff;
	background: var(--color-gray-dark);
}

/**** リスト ****/
.c-list01 li {
	position: relative;
	padding-left: 2.5em;
}
.c-list01 li::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 0;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	width: 25px;
	height: 1px;
	display: block;
	background: var(--color-gray);
}
.c-list01 li:not(:last-child) {
	margin-bottom: var(--space-sm-2);
}

.c-list02 li {
	position: relative;
	padding-left: 1.3em;
}
.c-list02 li::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 0;
	-webkit-transform: translateY(-50%) rotate(45deg);
	transform: translateY(-50%) rotate(45deg);
	width: 8px;
	height: 8px;
	display: block;
	background: var(--color-primary);
}
.c-list02 li:not(:last-child) {
	margin-bottom: var(--space-sm-2);
}

/**** テキスト装飾 ****/
.txt--marker {
	font-weight: 600;
	background: -webkit-gradient(
		linear,
		left top,
		left bottom,
		color-stop(60%, transparent),
		color-stop(60%, rgba(var(--color-primary-rgb), 0.1))
	);
	background: linear-gradient(transparent 60%, rgba(var(--color-primary-rgb), 0.1) 60%);
}

.txt--red {
	color: #ea0910;
}

.link--underline {
	text-decoration: underline;
	-webkit-transition: var(--duration-base);
	transition: var(--duration-base);
}

/**** その他共通 ****/
.flex {
	display: -ms-flex;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}

.flex--space-between {
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

.flex--space-around {
	-ms-flex-pack: distribute;
	justify-content: space-around;
}

.flex--center {
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.clearfix::after {
	content: '';
	display: block;
	clear: both;
}

/**** パンくずリスト ****/
.breadcrumb {
	margin-bottom: 5rem;
}

.breadcrumb li {
	display: inline-block;
	position: relative;
	margin-right: 3rem;
}

.breadcrumb li::after {
	position: absolute;
	content: '';
	width: 4px;
	height: 4px;
	border-top: 2px solid #ababab;
	border-right: 2px solid #ababab;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
	right: -1.8rem;
	bottom: 1.2rem;
}

.breadcrumb li:last-child::after {
	content: none;
}

.breadcrumb li a {
	color: var(--color-primary);
	-webkit-transition: 0.4s;
	transition: 0.4s;
}

.breadcrumb li a:hover {
	color: var(--color-gray-dark);
	-webkit-transition: 0.4s;
	transition: 0.4s;
}

/**** ページャー ****/
.archive_pagination {
	text-align: center;
	margin-top: 7rem;
}

.page-numbers li {
	display: inline;
	margin: 0 0.6rem 0;
}

.page-numbers.current {
	color: var(--color-primary);
	border-bottom: 1px solid var(--color-primary);
	padding-bottom: 0.5rem;
	font-size: 1.5rem;
}

/**** スクロールバーデザイン ****/
::-webkit-scrollbar {
	width: 10px;
}

::-webkit-scrollbar-track {
	background: #fff;
	border-left: solid 1px #eee;
}

::-webkit-scrollbar-thumb {
	background: var(--color-gray-dark);
	border-radius: 10px;
	-webkit-box-shadow: inset 0 0 0 2px #fff;
	box-shadow: inset 0 0 0 2px #fff;
}

/**** ページトップに戻るボタン ****/
#page_top {
	position: fixed;
	right: 2rem;
	bottom: 2rem;
}

#page_top a img {
	padding: 0 4rem;
}

/**** マウスドラッグした時の文字色 ****/
::-moz-selection {
	background: var(--color-gray);
}
::selection {
	background: var(--color-gray);
}

/**** ページ全体の余白など ****/
#page {
	overflow: hidden;
	width: 100%;
}

/*--------------------------------------------------------------

## main

--------------------------------------------------------------*/
.contents {
	margin: 0 auto 12vw;
}

.contents--small {
	margin: 0 auto 4vw;
}

.contents--type01 {
	width: 1180px;
	padding: 0 3rem;
}

.contents--type01.flex {
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.contents--type02 {
	max-width: 1800px;
}

.contents--type03 {
	max-width: 1800px;
}

/*--------------------------------------------------------------

## footer

--------------------------------------------------------------*/
/********************   コンタクトボタン    **********************/
.index-contact__btn {
	margin: 0 auto -200px;
}

.contact-btn {
	width: 100%;
	height: 260px;
	color: #fff;
	background-color: #474747;
	position: relative;
	z-index: 90;
	overflow: hidden;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	font-weight: 700;
	line-height: 0.9;
	overflow: hidden;
}

.contact-btn::before {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: -1;
	content: '';
	background: var(--color-gray-dark);
	-webkit-transform-origin: center center;
	transform-origin: center center;
	-webkit-transform: scale(0, 1);
	transform: scale(0, 1);
	-webkit-transition: -webkit-transform 0.3s;
	transition: -webkit-transform 0.3s;
	transition: transform 0.3s;
	transition:
		transform 0.3s,
		-webkit-transform 0.3s;
}

.contact-btn:hover {
	color: #fff;
}

.contact-btn:hover::before {
	-webkit-transform: scale(1, 1);
	transform: scale(1, 1);
}

.contact-btn p {
	text-align: center;
}

.contact-btn--en {
	z-index: 1000;
	font-size: var(--fs-xl-2);
	line-height: 1.8;
	letter-spacing: 0.05em;
}

.contact-btn--ja {
	z-index: 1000;
	font-size: var(--fs-md-1);
}

/********************   フッターアクセス    **********************/
.access-container {
	padding: 0 10rem 5rem;
	position: relative;
}

.access-container__bg {
	position: absolute;
	width: 100%;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	margin: auto;
}

.access__images {
	background-image: url('../img/common/access_bg.jpg');
	background-repeat: no-repeat;
	background-attachment: fixed;
	background-size: cover;
	background-position: 0 0;
	min-height: 964px;
	width: 100%;
}

.access-container__bg::after {
	content: '';
	background-color: rgba(0, 0, 0, 0.4);
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
}

.access-container__box {
	position: relative;
	z-index: 1;
	color: #fff;
	text-align: left;
	margin: 0 auto;
	padding: 20rem 0 10rem;
}

.access-container__logo {
	margin-bottom: var(--space-md-1);
}

.access-container__logo-img {
	width: clamp(130px, 12vw, 180px);
}

.access-container__info {
	display: grid;
	grid-template-columns: 1fr;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
	font-size: var(--fs-sm-2);
}
.access-container__info a {
	color: #fff;
	text-decoration: underline;
	-webkit-transition: var(--duration-base);
	transition: var(--duration-base);
}

.access-container__menu-list li:not(:last-child) {
	margin-bottom: var(--space-md-1);
}
.access-container__menu-list a {
	-webkit-transition: var(--duration-base);
	transition: var(--duration-base);
	color: #fff;
}
.access-container__menu-list a:hover {
	color: var(--color-gray-dark);
}

.access-container__map {
	position: relative;
	z-index: 1;
	margin: 0 auto;
}

.access-container__txt {
	font-size: 1.4rem;
	position: relative;
	z-index: 1;
	color: #fff;
}

.access-container__sns {
	margin-top: var(--space-md-1);
}

.access-container__sns a {
	font-size: 2.6rem;
	padding-right: 0.5rem;
	position: relative;
	z-index: 1;
	color: #fff;
}

.access-container__sns a:hover {
	color: var(--color-primary);
	-webkit-transition: 0.4s;
	transition: 0.4s;
}

.access-container__btn {
	margin-top: var(--space-md-1);
}
.access-container__btn a {
	display: inline-block;
	width: 160px;
	text-align: center;
	color: #fff;
	font-size: var(--fs-sm-2);
	padding: 0.5em 1.5em;
	letter-spacing: 0.05em;
	background: rgba(255, 255, 255, 0.2);
	backdrop-filter: blur(6px);
	border: 1px solid rgba(255, 255, 255, 0.3);
	transition: 0.4s;
}

.access-container__btn a:hover {
	color: #fff;
	opacity: 0.7;
}

.access-container__copyright {
	text-align: center;
	font-size: var(--fs-sm-1);
	margin-top: 2rem;
	position: relative;
	z-index: 1;
	color: #fff;
}

/*--------------------------------------------------------------

## front-page.php

--------------------------------------------------------------*/
.index__ttl {
	margin-bottom: var(--space-lg-2);
}
.index__ttl--ja {
	font-size: var(--fs-lg-2);
	font-weight: 600;
	letter-spacing: 0.1em;
}
.index__ttl--en {
	color: var(--color-gray-dark);
	font-size: var(--fs-sm-2);
	display: block;
}

/***** index-contents1 *****/
.index-contents1 {
	container-type: inline-size;
	container-name: index-contents1;
}

.index-contents1 .contents--type01 {
	padding: var(--space-lg-2) 3rem;
}

.contents1__message {
	position: relative;
	margin-bottom: var(--space-lg-2);
}
.contents1__message::before {
	content: '';
	background: url(../img/index/logo-bg.png) no-repeat center/contain;
	position: absolute;
	top: -15%;
	left: 50%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	width: min(600px, 100%);
	height: 600px;
	z-index: 0;
	opacity: 0.2;
}

.contents1__ttl {
	text-align: center;
	font-family: var(--font-family-en);
	font-size: clamp(2.8rem, 2.2rem + 1.2vw, 4.8rem);
	margin-bottom: var(--space-md-2);
	line-height: 1.8;
}

.contents1__txt {
	text-align: center;
	font-size: var(--fs-md-1);
	line-height: 3;
}

.contents1__box {
	background: #fff;
	padding: var(--space-lg-1);
	-webkit-box-shadow: var(--shadow-1);
	box-shadow: var(--shadow-1);
}
.contents1__box dl {
	display: grid;
	grid-template-columns: auto 1fr;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
	gap: var(--space-md-1) var(--space-lg-1);
	font-size: var(--fs-sm-2);
}
.contents1__box dt {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	/* justify-content: space-between;
  gap: var(--space-sm-2); */
	font-weight: 600;
	/* &::after {
    content: "";
    width: 80px;
    height: 1px;
    display: block;
    background: var(--color-gray);
  } */
}
.contents1__box dd.txt--color {
	font-size: var(--fs-lg-1);
	font-weight: 600;
	color: var(--color-primary);
	line-height: 1.4;
}

.contents1__box-ttl {
	font-size: var(--space-md-1);
	font-weight: 600;
	margin: var(--space-lg-1) 0 var(--space-md-2);
	padding-top: var(--space-sm-1);
	border-top: 1px solid var(--color-gray);
}

.contents1__box-list li {
	display: inline-block;
	margin-right: var(--space-md-2);
}
.contents1__box-list a {
	display: block;
}
.contents1__box-list a:hover img {
	opacity: 0.7;
}
.contents1__box-list img {
	max-width: 120px;
	-webkit-transition: var(--duration-base);
	transition: var(--duration-base);
	display: block;
}

.contents1__video {
	height: 500px;
	margin-bottom: var(--space-lg-2);
}
.contents1__video a {
	position: relative;
	display: block;
	width: 100%;
	height: 100%;
}
.contents1__video a:hover .play-btn {
	-webkit-transform: scale(1.1);
	transform: scale(1.1);
}
.contents1__video a:hover::before {
	background: rgba(0, 21, 40, 0.3);
}
.contents1__video a::before {
	content: '';
	position: absolute;
	inset: 0;
	background: rgba(0, 21, 40, 0.5);
	-webkit-transition: 0.3s;
	transition: 0.3s;
	z-index: 1;
}
.contents1__video img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	display: block;
}
.contents1__video-txt {
	position: absolute;
	top: 50%;
	right: 5rem;
	left: 5rem;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	z-index: 2;
}
.contents1__video-txt .text {
	color: rgba(255, 255, 255, 0.9);
	font-size: clamp(2.8rem, 2.2rem + 1.2vw, 4.8rem);
	font-family: var(--font-family-en);
	/* border-bottom: 1px solid rgba(255, 255, 255, 0.7); */
}
.contents1__video .play-btn {
	position: relative;
	width: 100px;
	height: 100px;
	border-radius: 50%;
	-webkit-transition: 0.3s;
	transition: 0.3s;
	border: 1px solid rgba(255, 255, 255, 0.9);
}
.contents1__video .play-btn::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 53%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	border-style: solid;
	border-width: 10px 0 10px 18px;
	border-color: transparent transparent transparent rgba(255, 255, 255, 0.9);
}

@container index-contents1 (width < 768px) {
	.contents1__message::before {
		top: 50%;
		-webkit-transform: translate(-50%, -50%);
		transform: translate(-50%, -50%);
	}
	.contents1__ttl {
		text-align: left;
	}
	.contents1__txt {
		text-align: left;
		line-height: 2.6;
	}
	.contents1__box {
		padding: var(--space-lg-1) var(--space-md-2);
	}
	.contents1__box dl {
		grid-template-columns: 1fr;
	}
	.contents1__video {
		aspect-ratio: 3/2;
		height: auto;
	}
	.contents1__video-txt {
		right: 2rem;
		left: 2rem;
	}
	.contents1__video .play-btn {
		width: 55px;
		height: 55px;
	}
	.contents1__video .play-btn::before {
		border-width: 6px 0 6px 12px;
	}
}
/***** index-contents-list *****/
.index-contents-list {
	display: block;
}

.index-contents-list__box {
	margin-bottom: 8rem;
}

.index-contents-list__img {
	display: inline-block;
	width: 64%;
	margin-bottom: 0;
	padding-top: 0;
	opacity: 1;
	-webkit-transition: all 0.6s;
	transition: all 0.6s;
}

.index-contents-list li:nth-child(odd) .index-contents-list__img {
	margin: 0 36% 0 0;
}

.index-contents-list li:nth-child(even) .index-contents-list__img {
	margin: 0 0 0 36%;
}

.index-contents-list__txt {
	position: relative;
	width: 25%;
	margin-top: -25%;
	padding: 8% 11% 5%;
	background-color: #fff;
	opacity: 1;
	-webkit-transition: 0.2s;
	transition: 0.2s;
}
.index-contents-list__txt > * {
	position: relative;
	z-index: 2;
}
.index-contents-list__txt::after {
	content: '';
	position: absolute;
	top: -16px;
	right: 16px;
	width: 100%;
	height: 100%;
	border: 1px solid var(--color-gray);
	z-index: 1;
}

.index-contents-list li:nth-child(odd) .index-contents-list__txt {
	position: relative;
	width: 25%;
	margin: -25% 0 0 53%;
	padding: 8% 11% 5%;
	background-color: #fff;
}

.index-contents-list__ttl {
	position: relative;
	margin-bottom: 20px;
}
.index-contents-list__ttl h3 {
	font-size: var(--fs-lg-2);
	font-weight: 600;
}

.index-contents-list__lead {
	font-size: 1.5rem;
	line-height: 2;
}

.index-contents-list__lead .btn01 {
	margin-top: 5rem;
}

/***** index-contents3 *****/
.index-contents3 {
	background-color: #a3cb64;
	padding: 10rem 0 6rem;
}

.index-contents3__ttl {
	text-align: center;
}

.index-contents3__ttl--ja,
.index-contents3__ttl--en {
	color: #fff;
	text-align: center;
	display: block;
	line-height: 1.8;
}

.index-contents3__ttl--en {
	font-size: 1.4rem;
}

.index-contents3__lead {
	text-align: center;
	color: #fff;
	margin: 8rem auto 4rem;
}

.index-contents3__item {
	text-align: center;
	margin-top: 4rem;
	width: 47%;
}

.index-contents3__txt h3 {
	color: #fff;
	font-size: 2.2rem;
	text-align: left;
	margin: 1rem 0 2rem;
}

.index-contents3__txt h3:hover {
	color: var(--color-gray-dark);
	-webkit-transition: 0.3s;
	transition: 0.3s;
}

.index-contents3__txt--category {
	margin: 1.5rem 0 0;
}

.category-btn01 a {
	color: var(--color-primary);
	background: #fff;
	font-size: 1.4rem;
	border: 2px solid var(--color-primary);
	padding: 0.5rem 1.3rem;
}

.category-btn01 a:hover {
	color: #fff;
	background: var(--color-primary);
	border: 2px solid var(--color-primary);
	-webkit-transition: 0.3s;
	transition: 0.3s;
}

.index-contents3__btn {
	margin: 0 auto;
}

.index-contents3__btn .btn01 a {
	margin: 8rem auto 0;
}

/***** index-contents-bg *****/
.index-contents-bg {
	position: relative;
	clip-path: inset(0 0 0 0);
	width: 100vw;
	height: 80vh;
	pointer-events: none;
}
.index-contents-bg__img {
	position: fixed;
	inset: 0;
	width: 100vw;
	height: 100vh;
	background-image: url(../img/index/index-contents-bg.jpg);
	background-size: cover;
	background-position: center top;
	background-repeat: no-repeat;
	z-index: 0;
}
.index-contents-bg::after {
	content: '';
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.2);
	pointer-events: none;
	z-index: 1;
}

/***** index-news *****/
.index-news {
	padding: 0 0 10rem;
}

.index-news__head {
	margin: 0 auto 10rem;
}
.index-news__head .index__ttl {
	margin-bottom: 0;
}

.index-news__ttl--ja,
.index-news__ttl--en {
	text-align: center;
	display: block;
}

.index-news__ttl--en {
	text-align: left;
}

.index-news__head .btn01 {
	margin-top: 1rem;
}

.index-news__item {
	margin: 0 auto;
}

.index-news-list {
	margin: 0 auto;
}

.index-news-list__box {
	margin-bottom: 3rem;
	text-align: left;
}

.index-news-list__box a:hover {
	color: var(--color-gray-dark);
}

.index-news-list__date {
	position: relative;
	left: 0;
	top: 0;
	font-size: var(--fs-sm-2);
	font-weight: 600;
	line-height: 1.875;
	margin-bottom: 0;
}

.index-news-list__date::after {
	position: absolute;
	top: 1rem;
	left: 14rem;
	width: 8rem;
	height: 1px;
	background-color: var(--color-gray);
	content: '';
}

.index-news-list__ttl {
	padding-left: 14rem;
}

/* 投稿が見つからない */
.not-found__txt {
	color: #f72503;
	text-align: center;
}

/***** index-access *****/
.index-access {
	container-type: inline-size;
	container-name: index-access;
	background: #fff;
	padding: var(--space-lg-3) 0 var(--space-lg-2);
}
.index-access__item {
	margin-bottom: var(--space-lg-2);
}
.index-access__item-ttl {
	font-size: var(--fs-lg-1);
	font-weight: 600;
	padding: var(--space-sm-1) var(--space-md-2);
	background: var(--color-secondary);
	border: 4px double var(--color-primary);
	margin-bottom: var(--space-md-2);
	line-height: 1.8;
}
.index-access__item.num1 .index-access__item-img {
	margin-top: var(--space-lg-1);
}
.index-access__item.num2 .index-access__item-txt--lg {
	font-size: var(--fs-lg-1);
	margin-bottom: var(--space-md-2);
	margin-top: var(--space-lg-1);
}
.index-access__item.num2 .index-access__item-txt--lg span {
	color: var(--color-primary);
	font-weight: 600;
	border-bottom: 1px solid;
}
.index-access__item.num3 .index-access__item-list {
	margin: var(--space-md-2) 0;
}
.index-access__item.num3 .index-access__box {
	background: var(--color-gray-light);
	padding: var(--space-md-2);
	margin-bottom: var(--space-lg-1);
}
.index-access__item.num3 .index-access__box .index-access__box-ttl {
	font-weight: 600;
	margin-bottom: var(--space-md-1);
	padding-bottom: var(--space-sm-1);
	border-bottom: 1px solid var(--color-gray);
}
.index-access__item.num3 .index-access__column {
	display: grid;
	grid-template-columns: 1fr 1fr;
	-webkit-column-gap: var(--space-lg-2);
	-moz-column-gap: var(--space-lg-2);
	column-gap: var(--space-lg-2);
}
.index-access__item.num3 .index-access__item-img a {
	display: block;
}
.index-access__item.num3 .index-access__item-step {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
}
.index-access__item.num3 .index-access__item-step li {
	position: relative;
	text-align: center;
	padding: var(--space-lg-1) var(--space-md-1);
	border-bottom: 1px solid var(--color-gray-dark);
}
.index-access__item.num3 .index-access__item-step li:not(:last-child)::after {
	content: '';
	position: absolute;
	bottom: -12px;
	left: 50%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	width: 40px;
	height: 12px;
	clip-path: polygon(0 0, 50% 100%, 100% 0);
	background: var(--color-gray-dark);
}
.index-access__item.num4 .index-access__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: var(--space-md-2) var(--space-lg-1);
	margin-top: var(--space-md-2);
}
.index-access__item.num4 .index-access__grid-item:nth-child(3) {
	grid-column: 1/3;
}
.index-access__item.num4 .index-access__grid-item h4 {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-column-gap: 0.8em;
	-moz-column-gap: 0.8em;
	column-gap: 0.8em;
	margin-bottom: var(--space-sm-1);
}
.index-access__item.num4 .index-access__grid-item h4::before {
	content: '';
	width: 8px;
	height: 8px;
	display: block;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
	background: var(--color-primary);
}
.index-access__item.num4 .index-access__item-list {
	margin: var(--space-md-2) 0;
}
.index-access__item.num4 .index-access__item-list li {
	font-weight: 600;
}
.index-access__item.num4 .index-access__item-list li span {
	font-size: var(--fs-sm-2);
	font-weight: 400;
}
.index-access__item.num4 .index-access__box {
	background: var(--color-gray-light);
	padding: var(--space-md-2);
	margin-top: var(--space-lg-1);
}
.index-access__item.num4 .index-access__box .index-access__box-ttl {
	font-weight: 600;
	margin-bottom: var(--space-md-1);
	padding-bottom: var(--space-sm-1);
	border-bottom: 1px solid var(--color-gray);
}
.index-access__item-img {
	text-align: center;
}

@container index-access (width < 768px) {
	.index-access__item.num3 .index-access__column {
		grid-template-columns: 1fr;
	}
	.index-access__item.num4 .index-access__grid {
		grid-template-columns: 1fr;
	}
	.index-access__item.num4 .index-access__grid-item:nth-child(3) {
		grid-column: auto;
	}
}
/***** index-gallery *****/
.index-gallery {
	container-type: inline-size;
	container-name: index-gallery;
	padding: var(--space-lg-3) 0;
}
.index-gallery__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: var(--space-sm-2);
}
.index-gallery__item {
	overflow: hidden;
}
.index-gallery__item:hover img {
	-webkit-transform: scale(1.1);
	transform: scale(1.1);
}
.index-gallery__img {
	aspect-ratio: 1;
}
.index-gallery__img img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	display: block;
	-webkit-filter: grayscale(0.1);
	filter: grayscale(0.1);
	-webkit-transition: var(--duration-slow);
	transition: var(--duration-slow);
}
.index-gallery .btn01 {
	margin-top: var(--space-lg-1);
}
.index-gallery .btn01 a {
	margin-left: auto;
}

@container index-gallery (width < 960px) {
	.index-info__inner {
		grid-template-columns: 1fr;
	}
}
@container index-gallery (width < 768px) {
	.index-gallery__grid {
		grid-template-columns: repeat(2, 1fr);
	}
}
/***** index-info *****/
.index-info {
	--border-color: var(--color-primary);
	container-type: inline-size;
	container-name: index-info;
}
.index-info__inner {
	display: grid;
	grid-template-columns: 1fr 1fr;
	border-top: 4px double var(--border-color);
	border-bottom: 4px double var(--border-color);
	background: #fff;
}
.index-info__ttl {
	margin-bottom: 0;
}
.index-info__item {
	display: flex;
	justify-content: flex-start;
	flex-direction: column;
	gap: var(--space-md-2);
	padding: var(--space-lg-2);
}
.index-info__item:first-child {
	position: relative;
}
.index-info__item:first-child::after {
	content: '';
	position: absolute;
	top: 50%;
	right: 0;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	width: 1px;
	height: calc(100% - 16rem);
	background: var(--color-gray);
}
.index-info .btn01 {
	margin-top: auto;
}
.index-info .btn01 a {
	margin-left: auto;
}

@container index-info (width < 960px) {
	.index-info__inner {
		grid-template-columns: 1fr;
	}
	.index-info__item {
		-webkit-box-align: stretch;
		-ms-flex-align: stretch;
		align-items: stretch;
		padding: var(--space-lg-2) var(--space-md-2);
	}
	.index-info__item:first-child::after {
		top: 100%;
		right: 50%;
		bottom: 0;
		-webkit-transform: translate(50%, 0);
		transform: translate(50%, 0);
		width: calc(100% - 8rem);
		height: 1px;
	}
}
/*--------------------------------------------------------------

## index.php / archive.php

--------------------------------------------------------------*/
/***** products *****/
.products {
	padding: 10rem 0 6rem;
}

.products-info {
	background: #fff;
	padding: var(--space-md-2);
	margin-bottom: var(--space-lg-2);
}
.products-info .products-info__item:not(:last-child) {
	margin-bottom: var(--space-md-2);
}
.products-info h3 {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: var(--space-sm-2);
	font-size: var(--fs-md-2);
	font-weight: 600;
	margin-bottom: var(--space-sm-1);
}
.products-info h3::after {
	content: '';
	width: 60px;
	height: 1px;
	display: block;
	background: var(--color-gray);
}
.products-info__list--cat {
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	gap: 0.5rem 1rem;
}
.products-info {
	/*  &__list--tag {
    flex-wrap: wrap;
    gap: 0.5rem 1rem;
  } */
}
.products-info a {
	font-size: var(--fs-sm-2);
	-webkit-transition: var(--duration-base);
	transition: var(--duration-base);
	display: block;
}

.products__box {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: var(--space-lg-1) var(--space-sm-2);
}

.products__box:has(.search_none) {
	grid-template-columns: 1fr;
}

/* .products__item {
  text-align: center;
  margin-top: 4rem;
  width: 47%;
} */
.products__txt {
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	gap: var(--space-md-2);
}

.products__txt h3 {
	color: var(--color-text-base);
	font-size: var(--fs-md-2);
	text-align: left;
	line-height: 1.8;
	-webkit-transition: var(--duration-base);
	transition: var(--duration-base);
}

.products__txt h3:hover {
	color: var(--color-gray-dark);
}

.products__txt--category {
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	gap: 0.5rem;
}

.products__txt--tag {
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	gap: 0.5rem;
}

.category-btn02 {
	background: #fff;
	font-size: var(--fs-sm-1);
	padding: 0.3rem 1.3rem;
	-webkit-transition: var(--duration-base);
	transition: var(--duration-base);
}

.category-btn02.cat--parent {
	background: rgba(var(--color-primary-rgb), 0.1);
}

.tag-btn {
	font-size: var(--fs-sm-1);
}

.products__btn {
	margin: 0 auto;
}

.products__btn .btn01 a {
	margin: 8rem auto 0;
}

/*--------------------------------------------------------------

## single.php

--------------------------------------------------------------*/
/***** .products-single *****/
.products-single__item {
	margin-bottom: 3rem;
	width: calc(70% - 4rem);
	padding-right: 4rem;
}

.products-single__ttl {
	text-align: left;
	margin: 0rem 0 3rem;
}

.products-single__info {
	gap: 1rem;
	margin: 2rem auto 0;
}

.products-single__date {
	color: var(--color-gray-dark);
	margin: 2rem auto 0;
}

.products-single__category {
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	gap: 0.5rem;
}

.products-single__tag {
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	gap: 0.5rem;
}

.products-single__txt {
	margin: 4rem 0 0rem;
}

.widget-container {
	width: calc(340px - 4rem);
	margin-left: 4rem;
	margin-bottom: 3rem;
}

.widget-container .wp-block-heading {
	font-size: var(--fs-lg-1);
	background: var(--color-secondary);
	padding: 0.5rem 1.5rem;
	margin-bottom: var(--space-md-1);
	border: 4px double var(--color-primary);
}

.wp-block-categories-list {
	background: #fff;
	padding-inline: var(--space-md-1);
}

.widget-cat-group .wp-block-categories-list .cat-item a {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-column-gap: 0.8em;
	-moz-column-gap: 0.8em;
	column-gap: 0.8em;
	font-size: var(--fs-md-2);
	padding: 1.5rem 0 1rem;
	border-bottom: 2px solid var(--color-primary);
	-webkit-transition: var(--duration-base);
	transition: var(--duration-base);
}
.widget-cat-group .wp-block-categories-list .cat-item a::before {
	content: '';
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
	width: 8px;
	height: 8px;
	display: inline-block;
	background: var(--color-primary);
}
.widget-cat-group .wp-block-categories-list .children .cat-item:last-child a {
	border-bottom: none;
}
.widget-cat-group .wp-block-categories-list .children .cat-item a {
	font-size: var(--fs-sm-2);
	padding-block: 1.2rem;
	border-bottom: 1px solid var(--color-gray);
}
.widget-cat-group .wp-block-categories-list .children .cat-item a::before {
	content: none;
}

.widget-tag-group .cat-item:last-child a {
	border-bottom: none;
}
.widget-tag-group .cat-item a {
	display: block;
	font-size: var(--fs-sm-2);
	padding-block: 1.2rem;
	border-bottom: 1px solid var(--color-gray);
}
.widget-tag-group .cat-item a::before {
	content: none;
}

.wp-block-search__inside-wrapper {
	padding: var(--space-sm-2);
	font-size: var(--fs-sm-1);
}

label.screen-reader-text {
	display: none;
}

.widget-container_title {
	background-color: #a3cb64;
	font-size: 1.8rem;
	color: #fff;
	margin: 0 auto 1rem;
	padding: 0.5rem 2rem;
}

.searchform {
	position: relative;
}

.searchfield {
	font-size: 14px;
	width: 90%;
	margin: 1rem auto;
	padding: 1.2rem 1rem;
	border: solid 1px #bbb;
	background-color: #efefef;
}

.searchsubmit {
	font-family: 'FontAwesome';
	font-size: 2rem;
	position: absolute;
	top: 0;
	right: 8%;
	margin-top: 2rem;
	padding: 0;
	cursor: pointer;
	color: #a3cb64;
	border: none;
	background: transparent;
}

.searchsubmit:hover {
	opacity: 0.6;
}

/*--------------------------------------------------------------

## search.php

--------------------------------------------------------------*/
.search_ttl {
	margin: 7rem 0 2rem;
}

.search_none {
	margin: 4rem 0 0;
}

.search_btn {
	margin-top: var(--space-lg-2);
}
.search_btn a {
	margin-inline: auto;
}

/*--------------------------------------------------------------

## archive-news.php

--------------------------------------------------------------*/
/***** news *****/
.news {
	padding: 10rem 0 6rem;
}

.news__item {
	margin: 0 auto;
}

.news__box {
	max-width: 600px;
	margin: 4rem auto 0;
}

.news-list__box {
	margin-bottom: 3rem;
	text-align: left;
}

.news-list__box a:hover {
	color: var(--color-gray-dark);
}

.news-list__date {
	position: relative;
	left: 0;
	top: 0;
	font-size: 1.4rem;
	font-weight: 700;
	line-height: 1.875;
	margin-bottom: 0;
}

.news-list__date::after {
	position: absolute;
	top: 1rem;
	left: 11rem;
	width: 6rem;
	height: 1px;
	background-color: var(--color-primary);
	content: '';
}

.news-list__ttl {
	padding-left: 10rem;
}

/*--------------------------------------------------------------

## single-news.php

--------------------------------------------------------------*/
/***** .news-single *****/
.news-single {
	padding: 10rem 0 6rem;
}

.news-single__item {
	text-align: center;
}

.news-single__ttl {
	text-align: center;
	margin: 0 auto 1rem;
}

.news-single__date {
	text-align: center;
	color: var(--color-gray-dark);
	margin: 0 auto 7rem;
}

.news-single .wp-post-image {
	max-width: 100%;
	margin: 0 auto 3rem;
}

.news-single__txt {
	text-align: left;
	margin: 0 auto;
	max-width: 70%;
}

.news-btn {
	margin: 10rem auto 0;
}

.news-btn a {
	margin: 0 auto;
}

/*--------------------------------------------------------------

## その他の下層ページ page.php

--------------------------------------------------------------*/
.page-sub {
	padding: 10rem 0 7rem;
}

.c-ttl01 {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	margin-bottom: var(--space-md-2);
}
.c-ttl01--ja {
	font-size: var(--fs-lg-2);
	font-weight: 600;
	letter-spacing: 0.05em;
}
.c-ttl01--en {
	display: grid;
	grid-template-columns: 50px 1fr;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: var(--space-sm-2);
	color: var(--color-gray-dark);
	font-size: var(--fs-md-1);
}
.c-ttl01--en::before {
	content: '';
	width: 100%;
	height: 1px;
	background: var(--color-gray-dark);
	display: block;
}

.c-ttl02 {
	font-size: var(--fs-lg-1);
	font-weight: 600;
	padding: var(--space-sm-1) var(--space-md-2);
	background: var(--color-secondary);
	border: 4px double var(--color-primary);
	margin-bottom: var(--space-md-2);
}
.c-ttl02 span {
	color: var(--color-gray-dark);
	font-size: var(--fs-md-2);
	margin-left: 1em;
}

.c-contents-bg {
	position: relative;
	clip-path: inset(0 0 0 0);
	width: 100vw;
	height: 75vh;
	pointer-events: none;
}
.c-contents-bg__img {
	position: fixed;
	inset: 0;
	width: 100vw;
	height: 100vh;
	background-size: cover;
	background-position: center top;
	background-repeat: no-repeat;
	z-index: 0;
}
.c-contents-bg::after {
	content: '';
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.2);
	pointer-events: none;
	z-index: 1;
}

/*--------------------------------------------------------------

## チケット販売のご案内 page-ticket.php

--------------------------------------------------------------*/
.p-ticket-price__fee {
	font-size: var(--fs-lg-1);
	background: #fff;
	padding: var(--space-md-1) var(--space-md-2);
	margin-top: var(--space-md-2);
}
.p-ticket-price__fee span {
	font-size: var(--fs-md-2);
	margin-right: 1em;
}

.p-ticket-buy {
	container-type: inline-size;
	container-name: ticket-buy;
}
.p-ticket-buy__txt {
	margin-bottom: var(--space-lg-1);
}
.p-ticket-buy__item {
	margin-bottom: var(--space-lg-2);
}
.p-ticket-buy__item.num3 .p-ticket-buy__item-txt {
	margin-bottom: var(--space-md-1);
}
.p-ticket-buy__item.num3 .c-list01 {
	margin: var(--space-md-2) 0 var(--space-md-1);
}
.p-ticket-buy__box {
	background: #fff;
	padding: var(--space-lg-1);
	-webkit-box-shadow: var(--shadow-1);
	box-shadow: var(--shadow-1);
}
.p-ticket-buy__box dl {
	display: grid;
	grid-template-columns: auto 1fr;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
	gap: var(--space-md-1) var(--space-lg-1);
	font-size: var(--fs-sm-2);
}
.p-ticket-buy__box dl dt {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	font-weight: 600;
}
.p-ticket-buy__btn {
	margin-bottom: var(--space-md-2);
}
.p-ticket-buy__btn a {
	width: 330px;
}
.p-ticket-buy__policy {
	background: #fff;
	height: 400px;
	border: 1px solid var(--color-gray-dark);
	overflow: auto;
	margin-top: var(--space-md-2);
}
.p-ticket-buy__policy-inner {
	padding: 5%;
}
.p-ticket-buy__policy-list {
	display: grid;
	grid-template-columns: auto 1fr;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
	-webkit-column-gap: var(--space-md-2);
	-moz-column-gap: var(--space-md-2);
	column-gap: var(--space-md-2);
	font-size: var(--fs-sm-2);
}
.p-ticket-buy__policy-list dt {
	font-weight: 600;
}
.p-ticket-buy__policy-sign {
	text-align: right;
}
.p-ticket-buy__policy h4 {
	font-size: 2.2rem;
	font-weight: 600;
	margin-bottom: 1em;
	padding-bottom: 0.5em;
	border-bottom: 1px solid var(--color-gray);
}
.p-ticket-buy__policy h5 {
	font-size: 2rem;
	font-weight: 600;
	margin-bottom: 0.3em;
}
.p-ticket-buy__policy h6 {
	font-size: 1.8rem;
	font-weight: 600;
	margin-bottom: 0.5em;
}
.p-ticket-buy__policy p {
	font-size: 1.6rem;
	margin-bottom: 1em;
}

@container ticket-buy (width < 767px) {
	.p-ticket-buy__box {
		padding: var(--space-lg-1) var(--space-md-2);
	}
	.p-ticket-buy__box dl {
		grid-template-columns: 1fr;
		/*  dt {
      padding-bottom: 1rem;
      border-bottom: 3px solid var(--color-gray);
    } */
	}
	.p-ticket-buy__item.num3 .c-list01 li span {
		display: block;
	}
}
/*--------------------------------------------------------------

## ご参加される皆さまへ page-guide.php

--------------------------------------------------------------*/
.p-guide {
	container-type: inline-size;
	container-name: guide-contents;
}
.p-guide__message {
	text-align: center;
	margin: var(--space-md-2) 0 var(--space-lg-3);
	line-height: 3;
	font-size: var(--fs-md-2);
}
.p-guide__images {
	display: grid;
	grid-template-columns: 1fr 1fr;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
	gap: var(--space-md-1);
	margin-bottom: var(--space-lg-3);
}
.p-guide__img {
	aspect-ratio: 4/3;
}
.p-guide__img:nth-child(2) {
	margin-top: var(--space-lg-1);
}
.p-guide__img img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
}
.p-guide__txt {
	margin-bottom: var(--space-lg-1);
}
.p-guide__box {
	background: #fff;
	padding: var(--space-lg-1);
	margin-bottom: var(--space-lg-1);
	-webkit-box-shadow: var(--shadow-1);
	box-shadow: var(--shadow-1);
}
.p-guide__box h4 {
	font-size: var(--fs-lg-1);
	font-weight: 600;
	margin-bottom: var(--space-md-1);
	padding-bottom: var(--space-sm-1);
	border-bottom: 1px solid var(--color-gray);
}
.p-guide__item {
	margin-top: var(--space-lg-2);
}
.p-guide .c-list01 {
	margin-top: var(--space-md-2);
}
.p-guide .c-contents-bg {
	height: 50vh;
	margin-bottom: var(--space-lg-3);
}
.p-guide .c-contents-bg__img {
	background-image: url(../img/lower/guide_contents-bg.jpg);
}

@container guide-contents (width < 767px) {
	.p-guide__message {
		text-align: left;
		line-height: 2.6;
	}
	.p-guide__images {
		grid-template-columns: 1fr;
	}
	.p-guide__img:nth-child(1) {
		margin-right: var(--space-md-2);
	}
	.p-guide__img:nth-child(2) {
		margin-top: 0;
		margin-left: var(--space-md-2);
	}
	.p-guide__box {
		padding: var(--space-lg-1) var(--space-md-2);
	}
}
/*--------------------------------------------------------------

## 企業スポンサーの募集 page-corporate-sponsor.php

--------------------------------------------------------------*/
.p-sponsor {
	container-type: inline-size;
	container-name: sponsor-contents;
}
.p-sponsor__layout {
	display: grid;
	grid-template-columns: 620px auto;
	gap: var(--space-lg-2);
	margin-bottom: var(--space-lg-2);
}
.p-sponsor__desc {
	padding-block: var(--space-lg-1);
}
.p-sponsor__txt {
	line-height: 2.6;
	margin-bottom: var(--space-md-2);
}
.p-sponsor__img:nth-child(1) {
	width: 90%;
	aspect-ratio: 4/3;
}
.p-sponsor__img:nth-child(2) {
	width: 75%;
	aspect-ratio: 4/5;
	margin: var(--space-lg-3) 0 0 auto;
}
.p-sponsor__img img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	display: block;
}
.p-sponsor__box {
	background: #fff;
	padding: var(--space-lg-1);
	-webkit-box-shadow: var(--shadow-1);
	box-shadow: var(--shadow-1);
}
.p-sponsor__box h4 {
	font-size: var(--fs-lg-1);
	font-weight: 600;
	margin-bottom: var(--space-md-1);
	padding-bottom: var(--space-sm-1);
	border-bottom: 1px solid var(--color-gray);
}
.p-sponsor__box dl {
	display: grid;
	grid-template-columns: auto 1fr;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
	gap: var(--space-md-1) var(--space-lg-1);
	font-size: var(--fs-sm-2);
}
.p-sponsor__box dl dt {
	font-weight: 600;
}

@container sponsor-contents (width < 1024px) {
	.p-sponsor__layout {
		grid-template-columns: 1fr;
	}
}
@container sponsor-contents (width < 767px) {
	.p-sponsor__box {
		padding: var(--space-lg-1) var(--space-md-2);
	}
	.p-sponsor__box dl {
		grid-template-columns: 1fr;
	}
}
/*--------------------------------------------------------------

## お問い合わせ page-contact.php

--------------------------------------------------------------*/
.p-contact-message__txt {
	text-align: center;
	margin-bottom: var(--space-lg-3);
}

.p-contact-tel {
	container-type: inline-size;
	container-name: contact-tel;
}
.p-contact-tel__box {
	text-align: center;
	background: #fff;
	padding: var(--space-lg-1) var(--space-md-1);
	-webkit-box-shadow: var(--shadow-1);
	box-shadow: var(--shadow-1);
}
.p-contact-tel__btn {
	margin-top: var(--space-sm-2);
}
.p-contact-tel__btn a {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 0.3em;
	width: -webkit-fit-content;
	width: -moz-fit-content;
	width: fit-content;
	color: var(--color-primary);
	font-size: var(--fs-lg-2);
	font-weight: 600;
	line-height: 1.8;
	margin-inline: auto;
	-webkit-transition: var(--duration-base);
	transition: var(--duration-base);
}
.p-contact-tel__btn a::before {
	content: 'call';
	font-family: 'Material Symbols Outlined';
	line-height: 1;
}
.p-contact-tel__btn a:hover {
	color: var(--color-gray-dark);
}
.p-contact-tel__btn span {
	font-size: var(--fs-sm-2);
}

@container contact-tel (width < 560px) {
	.p-entry-tel__btn a {
		font-size: var(--fs-md-3);
	}
}
.p-contact-from__txt {
	text-align: center;
	margin-top: var(--space-lg-2);
}

.blk-iframe {
	border: 1px solid var(--color-gray-dark);
	background-color: #fff;
	width: 800px;
	max-width: 100%;
	height: 30rem;
	margin: 2em auto;
	overflow: auto;
}

.privacy {
	font-size: 0.9em;
	line-height: 1.8;
	padding: 5%;
}

.required {
	color: #fff;
	background: #f72503;
	font-size: var(--fs-sm-1);
	padding: 0.2em 0.7em;
	margin-left: 1em;
	border-radius: 3px;
}

.any {
	color: #fff;
	background: #1096cf;
	font-size: var(--fs-sm-1);
	padding: 0.2em 0.7em;
	margin-left: 1em;
	border-radius: 3px;
}

.contact__form {
	margin: var(--space-lg-1) auto;
	width: 80%;
}

.contact__form p {
	font-size: var(--fs-md-1);
	margin: 2rem 0 2.5rem;
	line-height: 2.8;
}

.contact__form input.wpcf7-form-control.wpcf7-text {
	width: -webkit-fill-available;
	height: 2rem;
	padding: 1.5rem;
	background: #fff;
	border: 1px solid var(--color-gray-dark);
}

.contact__form textarea {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	width: -webkit-fill-available;
	padding: 1.2rem;
	background: #fff;
	border: 1px solid var(--color-gray-dark);
}

.contact__form .txt--gray {
	display: block;
	font-size: var(--fs-sm-2);
	color: var(--color-gray-dark);
	margin-bottom: var(--space-sm-1);
}

.contact__form .wpcf7-list-item {
	display: block;
	margin: 0;
	line-height: 2.4;
}

.wpcf7 input[type='file'] {
	width: -webkit-fill-available;
	background: #fff;
	padding: 1.5rem;
	background: #fff;
	border: 1px solid var(--color-gray-dark);
}

.wpcf7-submit {
	width: 160px;
	height: 50px;
	text-align: center;
	display: block;
	margin: 4rem auto 0;
	background: var(--color-primary);
	color: #fff;
	border: 2px solid var(--color-primary);
	line-height: 2.2;
	-webkit-transition: 0.3s;
	transition: 0.3s;
}

.wpcf7-submit:hover {
	color: #fff;
	background: var(--color-gray-dark);
	border: 2px solid var(--color-gray-dark);
	-webkit-transition: 0.3s;
	transition: 0.3s;
}

.wpcf7 .wpcf7-acceptance {
	text-align: center;
}

.privacy p {
	font-size: var(--fs-sm-1);
	margin: 0 0 var(--space-sm-2);
}

.privacy h4 {
	margin: 0 auto var(--space-md-2);
	font-weight: 600;
}

.privacy h5 {
	font-size: var(--fs-md-1);
	font-weight: 600;
}

.privacy-check {
	text-align: center;
	padding: 2rem 0 0;
}

.contact__info {
	text-align: center;
}

.screen-reader-response {
	display: none;
}

/*--------------------------------------------------------------

## bbPressプラグイン スタイル調整

--------------------------------------------------------------*/
#page-bbpress #bbpress-forums li.bbp-body ul.forum,
#page-bbpress #bbpress-forums li.bbp-body ul.topic {
	padding: 1.2em;
}

#page-bbpress #bbpress-forums li.bbp-topic-title {
	position: relative;
	padding-left: 1.8em;
}

#page-bbpress #bbpress-forums li.bbp-topic-title::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	width: 20px;
	height: 1px;
	border-radius: 50%;
	background-color: var(--color-gray);
	display: block;
}

#page-bbpress .bbp-forum-content ul.sticky,
#page-bbpress .bbp-topics ul.sticky,
#page-bbpress .bbp-topics ul.super-sticky,
#page-bbpress .bbp-topics-front ul.super-sticky {
	background-color: #fffff3 !important;
}

#page-bbpress #bbpress-forums ul.bbp-replies {
	border: none;
	margin-bottom: 4rem;
}
#page-bbpress #bbpress-forums .bbp-replies-list > li:first-child {
	margin-bottom: 6rem;
}

#page-bbpress #bbpress-forums ul.bbp-threaded-replies {
	margin-bottom: 4rem;
}

#page-bbpress #bbpress-forums div.bbp-reply-content p {
	line-height: 1.8;
}

#page-bbpress #bbpress-forums div.bbp-forum-author .bbp-author-name,
#page-bbpress #bbpress-forums div.bbp-reply-author .bbp-author-name,
#page-bbpress #bbpress-forums div.bbp-topic-author .bbp-author-name {
	margin-top: 12px;
	font-size: 16px;
}

#page-bbpress #bbpress-forums div.bbp-forum-author img.avatar,
#page-bbpress #bbpress-forums div.bbp-reply-author img.avatar,
#page-bbpress #bbpress-forums div.bbp-topic-author img.avatar {
	border-radius: 50%;
	aspect-ratio: 1;
}

#page-bbpress #bbpress-forums .bbp-replies .bbp-reply-form {
	margin: 10px 10px 0 10px;
}

#page-bbpress #bbpress-forums fieldset.bbp-form label {
	line-height: 2;
}

#page-bbpress #bbpress-forums .topic-author {
	background-color: #fffff3;
}

#page-bbpress #bbpress-forums fieldset.bbp-form input[type='text'] {
	background-color: #fff;
}

#page-bbpress #bbpress-forums div.bbp-the-content-wrapper textarea.bbp-the-content {
	background-color: #fff;
}

#page-bbpress #bbpress-forums fieldset.bbp-form legend {
	font-size: 16px;
}

span.bbp-reply-post-date {
	font-size: 14px;
}

#bbpress-forums a.bbp-topic-reply-link,
#bbpress-forums a.bbp-reply-to-link {
	color: #fff;
	background-color: var(--color-gray-dark);
	font-size: 12px;
	border-radius: 3px;
	padding: 4px 12px;
}

#bbp_reply_submit {
	min-width: 100px;
	text-align: center;
	color: #fff;
	background-color: var(--color-primary);
	font-size: 14px;
	letter-spacing: 0.1em;
	padding: 10px;
}

/*--------------------------------------------------------------

## 微調整

--------------------------------------------------------------*/
@media screen and (max-width: 1440px) {
	/* フッター */
	.access__images {
		background-attachment: scroll;
	}
}
@media screen and (max-width: 1259px) {
	.contents--type01 {
		width: calc(100% - 165px);
	}
	/* フッター */
	.index-contact__btn {
		margin: 0 auto -160px;
	}
	.contact-btn {
		width: 90%;
		height: 240px;
		margin: 0 auto;
	}
	.contact-btn--en {
		font-size: 4rem;
		line-height: 1.6;
	}
}
/*--------------------------------------------------------------

## 1025px

--------------------------------------------------------------*/
@media screen and (max-width: 1024px) {
	/* 改行 */
	.br_pc {
		display: none;
	}
	.br_1024 {
		display: block;
	}
	/* 共通 */
	.contents {
		margin-bottom: 20vw;
	}
	.contents--small {
		margin-bottom: 10vw;
	}
	.contents--type03 {
		width: 100%;
	}
	/* .products-single */
	.products {
		padding: 7rem 0 6rem;
	}
	.products-single__box {
		display: block;
	}
	.products-single__item {
		margin-bottom: 3rem;
		width: 100%;
		padding-right: 0;
	}
	.widget-container {
		width: 100%;
		margin-left: 0rem;
	}
	.products-single__ttl {
		margin: 4rem 0 2rem;
	}
	.products-single__txt {
		margin: 4rem 0 7rem;
	}
	/* フッター */
	.access-container {
		padding: 0 5rem 5rem;
	}
}
/*--------------------------------------------------------------

## 960px

--------------------------------------------------------------*/
@media screen and (max-width: 959px) {
	/* 改行 */
	.br_960 {
		display: block;
	}
	/* 共通 */
	.contents--type01 {
		width: calc(100% - 10vw);
		margin-right: auto;
	}
	/* フッター */
	.access__images {
		background-image: url('../img/common/access_bg_sp.jpg');
	}
	/* index.php @960px */
	.index-contents-list__img {
		position: relative;
		display: inline-block;
		width: 84%;
		margin-bottom: 40px;
		padding-top: 0;
		opacity: 1;
		-webkit-transition: all 0.6s;
		transition: all 0.6s;
	}
	.index-contents-list li:nth-child(even) .index-contents-list__img {
		margin: 0 0 0 0%;
	}
	.index-contents-list li:nth-child(odd) .index-contents-list__img {
		margin-left: 16%;
	}
	.index-contents-list__txt {
		width: auto;
		margin-top: 5%;
		padding: 0 16% 0 120px;
	}
	.index-contents-list li:nth-child(odd) .index-contents-list__txt {
		width: auto;
		margin: 5% 0 0 0;
		padding: 7% 16% 7% 120px;
	}
	.index-contents3__item {
		width: 100%;
	}
	.index-news__head {
		width: 100%;
		margin: 0 auto 7rem;
	}
	.index-news-list {
		width: 100%;
		margin: 0 auto;
	}
	.index-news-list__ttl {
		padding-left: 6rem;
	}
	.index-news-list__date::after {
		width: 5rem;
		left: 12.3rem;
	}
	/* archive.php */
	.products__box {
		grid-template-columns: repeat(2, 1fr);
	}
	.products__item {
		width: 100%;
	}
	.products__item:first-child {
		margin-top: 0;
	}
	/* .news-single */
	.news-single__txt {
		max-width: 90%;
	}
}
/*--------------------------------------------------------------

## 768px

--------------------------------------------------------------*/
@media screen and (max-width: 767px) {
	/* index.php */
	.index-news-list__ttl {
		font-size: 1.4rem;
		padding-left: 0rem;
	}
	.index-news-list__date {
		display: block;
	}
	.index-news-list__date::after {
		display: none;
	}
	/* フッター */
	.index-contact__btn {
		margin: 0 auto -100px;
	}
	.contact-btn {
		width: 100%;
		height: 140px;
		margin: 0 auto;
	}
	.contact-btn--en {
		font-size: 3rem;
		line-height: 1.4;
	}
	.contact-btn--ja {
		font-size: 1.2rem;
	}
	.access-container__box {
		display: block;
		text-align: center;
		padding: 12rem 0 5rem;
	}
	.access-container__item {
		line-height: 2.4;
	}
	.access-container__box .access-container__item:first-child {
		margin-bottom: 4rem;
	}

	/***** .archive-news *****/
	.news {
		padding: 7rem 0 6rem;
	}
	.news-list__ttl {
		padding-left: 0rem;
	}
	.news-list__date {
		display: block;
	}
	.news-list__date::after {
		display: none;
	}
	/***** .news-single *****/
	.news-single {
		padding: 7rem 0 6rem;
	}
	.news-single__ttl {
		margin: 4rem auto 0rem;
	}
	.news-single__date {
		margin: 0 auto 4rem;
	}
	.news-single__txt {
		max-width: 100%;
	}
	.news-btn {
		margin: 7rem auto 0;
	}
	/***** page.php *****/
	.page-sub {
		padding: 7rem 0 6rem;
	}
	.c-ttl02 span {
		margin-left: 0;
		display: block;
	}
}
/*--------------------------------------------------------------

## 560px

--------------------------------------------------------------*/
@media screen and (max-width: 559px) {
	/* 改行 */
	.br_560 {
		display: block;
	}
	.br_560_none {
		display: none;
	}
	/* 共通 */
	h1 {
		font-size: 3rem;
	}
	h2 {
		font-size: 2.5rem;
	}
	h3 {
		font-size: 2rem;
	}
	h4 {
		font-size: 1.8rem;
	}
	p {
		font-size: 1.4rem;
	}
	a {
		font-size: 1.4rem;
	}
	li,
	th,
	td {
		font-size: 1.4rem;
	}
	.contents--type01,
	.contents--type02 {
		width: calc(100% - 6rem);
	}
	/***** ボタン01 *****/
	.btn01 a {
		width: 270px;
		height: 60px;
		padding-left: 22px;
		line-height: 65px;
	}
	.btn01 a span {
		top: 25px;
		right: 0px;
		width: 40%;
	}
	/***** ミニボタン01 *****/
	.btn01--mini a {
		width: 150px;
		height: 50px;
		padding-left: 20px;
		line-height: 55px;
	}
	.btn01--mini a span {
		top: 20px;
		right: 0px;
		width: 50%;
	}
	/* トップに戻るボタン */
	#page_top {
		bottom: 1rem;
	}
	#page_top a img {
		padding: 0 1rem 0 0;
	}
	/* パンくずリスト */
	.breadcrumb li {
		margin-right: 2rem;
	}
	.breadcrumb li::after {
		right: -1.4rem;
		bottom: 1.1rem;
	}
	/* index.php @560px */
	.index-news__head {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
	}
	.index-news__head .btn01 {
		-ms-flex-item-align: end;
		align-self: flex-end;
		margin-top: 2rem;
	}
	.index-contents-list__txt {
		position: relative;
		padding: 2rem 4rem 0 6rem;
		opacity: 0;
		-webkit-transition: all 0.6s;
		transition: all 0.6s;
	}
	.index-contents-list li:nth-child(even) .index-contents-list__txt {
		padding: 2rem 4rem 0 6rem;
	}
	.index-contents-list li:nth-child(odd) .index-contents-list__txt {
		padding: 4rem 4rem 4rem 6rem;
	}
	.index-contents3 {
		padding: 6rem 0 6rem;
	}
	.index-contents3__lead {
		margin: 4rem auto 4rem;
	}
	.index-contents3__txt h3 {
		font-size: 1.6rem;
	}
	.category-btn01 a {
		font-size: 1.2rem;
		padding: 0.5rem 1rem;
	}
	/* フッター @560px */
	.access-container {
		padding: 0 3rem 3rem;
	}
	.access-container__info {
		text-align: left;
	}
	.access-container__sns {
		text-align: left;
	}
	.access-container__btn {
		text-align: left;
	}
	.access-container__menu-list {
		text-align: left;
	}
	/* archive.php */
	.products {
		padding: 6rem 0 0rem;
	}
	.products__lead {
		margin: 4rem auto 4rem;
	}
	.products__txt h3 {
		font-size: 1.6rem;
	}
	.category-btn02 a {
		font-size: 1.2rem;
		padding: 0.3rem 1rem;
	}
	/* .header-sub__bg--pc {
    display: none;
  }

  .header-sub__bg--sp {
    display: block;
  } */
	.widget-container_title {
		font-size: 1.6rem;
	}
	/* archive-news.php */
	.news {
		padding: 7rem 0 0rem;
	}
	/* page-contact.php */
	.contact__form {
		width: 100%;
	}
	.privacy h5 {
		font-size: 1.6rem;
	}
}

/*--------------------------------------------------------------

## 微調整

--------------------------------------------------------------*/
@media screen and (max-width: 480px) {
	#page-bbpress span.bbp-admin-links {
		float: right;
	}
	#page-bbpress span.bbp-reply-post-date, span.bbp-topic-post-date {
		margin-right: .5em;
	}
}
