@charset "utf-8";

/* ===============================================
フォント
=============================================== */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap');



/* ===============================================
wordpressの調整
=============================================== */
@media screen and (max-width: 600px) {
	#wpadminbar {
		position: fixed;
	}
}

#wpadminbar + .header .header-menu-wrap, #wpadminbar + .header .header-info {
	margin-top: 32px;
}
@media(max-width: 782px) {
	#wpadminbar + .header .header-menu-wrap, #wpadminbar + .header .header-info {
		margin-top: 0;
		padding-top: 32px;
	}
}



/* ===============================================
bootstrapの調整
=============================================== */
.row {
	margin-right: calc(0.25 * var(--bs-gutter-x));
	margin-left: calc(0.25 * var(--bs-gutter-x));
}

.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
	font-weight: 500;
	line-height: 1.5;
}
@media(max-width:992px) {
	.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
		font-weight: 400;
	}
}

p {
    margin-bottom: 1em;
}

a {
	color: #219db3;
}



/* ===============================================
共通設定
=============================================== */
/* テーマカラー */
:root {
--text-color: #4a3c37;
--text-color-gray: #c0bbb9;
--text-color-w: #fff;
--back: #fffef7;
--back-dark: #f5ecdc;
--main: #c2362d;
--sub: #d77c76;
--sub-b: #807562;
--accent: #e3c67d;
}

html {
font-size: 10px;
line-height: 1.5;
}

body {
	background-color: var(--back);
	font-size: 1.6rem;
	font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "游ゴシック Medium", "Yu Gothic Medium", "Noto Sans JP", sans-serif;
	color: var(--text-color);
	position: relative;
	overflow-x: hidden;
}
@media(max-width:768px) {
	body {
		font-size: 1.5rem;
	}
}

.main {
	padding-top: 80px;
	padding-bottom: 60px;
}
@media(max-width:992px) {
	.main {
		padding-top: 0;
		padding-bottom: 30px;
	}
}

.bootstrap-icon::before, .bootstrap-icon::after {
	font-family: 'bootstrap-icons';
	font-weight: normal;
}

img {
	max-width: 100%;
}

/* スマホのみ・PCのみ表示 */
.no-pc {
	display: none;
}
@media(max-width:992px) {
	.no-pc {
		display: revert;
	}
	.no-sp {
		display: none;
	}
}

/* 電話番号リンクはスマホ時のみ稼働 */
a[href*="tel:"] {
	pointer-events: none; /*①アンカーのtelを無効化*/
	cursor: default; /*②アンカーのポインターをデフォルトにする*/
	text-decoration: none;
}
@media(max-width:992px) {
	a[href*="tel:"] {
		pointer-events: revert;
		cursor: revert;
		text-decoration: revert;
	}
}



/* ===============================================
ヘッダーの記述
=============================================== */
.header-menu-wrap {
	position: fixed;
	top: 0;
	left: 0;
	padding: 0 20px;
	width: calc(100% - 260px);
	height: 80px;
	background: var(--main);
	display: flex;
	flex-wrap: nowrap;
	z-index: 9999;
}
.header-logo {
	width: auto;
}
.header-logo a {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100%;
	text-decoration: none;
	transition: all 0.3s;
}
.header-logo a img {
	width: 150px;
}
.header-logo a:hover {
	opacity: 0.5;
}

.gnav-header {
	display: flex;
	flex-wrap: nowrap;
	justify-content: space-between;
	width: 100%;
}
.gnav-header-menu {
	display: flex;
	flex-wrap: nowrap;
	padding-left: 50px;
	height: 100%
}
.gnav-header-menu li {
	list-style: none;
}
.gnav-header-menu li a {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 20px 25px;
	width: 100%;
	height: 100%;
	font-size: 1.4rem;
	text-decoration: none;
	color: var(--text-color-w);
	transition: all 0.3s;
}
.gnav-header-menu li:not(.no-icon) a::before {
	position: absolute;
	top: 50%;
	left: 0.5em;
	transform: translateY(-70%);
	width: 1em;
	height: 1em;
	color: var(--sub);
	transition: all 0.3s;
}
.gnav-header-menu li a:hover::before {
	color: #fff;
}
.gnav-header-menu li:not(.no-icon):nth-of-type(4n+1) a::before {
	content: "\F415";
}
.gnav-header-menu li:not(.no-icon):nth-of-type(4n+2) a::before {
	content: "\F59F";
}
.gnav-header-menu li:not(.no-icon):nth-of-type(4n+3) a::before {
	content: "\F59B";
}
.gnav-header-menu li:not(.no-icon):nth-of-type(4n) a::before {
	content: "\F599";
}

.gnav-header-sns {
	display: flex;
	flex-wrap: nowrap;
	align-items: center;
	list-style: none;
	padding-left: 0;
}
.gnav-header-sns li:not(:last-child) {
	margin-right: 20px;
}
.gnav-header-sns li a {
	display: block;
	width: 30px;
	height: 30px;
	transition: all 0.3s;
}
.gnav-header-sns li a:hover {
	opacity: 0.5;
}
.gnav-header-sns li a img {
	width: 100%;
	height: 100%;
}

.header-info {
	position: fixed;
	top: 0;
	right: 0;
	padding-top: 7px;
	width: 260px;
	height: 80px;
	font-size: 1rem;
	text-align: center;
	line-height: 1.2;
	color: var(--text-color-w);
	background: var(--sub-b);
	z-index: 9999;
}
.header-info a {
	color: var(--text-color-w);
	text-decoration: none;
}
.header-info-tel {
	font-size: 2em;
	vertical-align: sub;
}
.header-info-open {
	line-height: 2;
}

.gnav-toggle-wrap {
	display: none;
}

/* スマホ時のヘッダー */
@media(max-width:992px) {
	.header-inner {
		position: fixed;
		transform: translateX(120vw);
		z-index: 9999;
		flex-wrap: wrap;
		width: 100vw;
		height: 100vh;
		background: var(--main);
		overflow-y: scroll;
		transition: all 0.3s;
	}
	.header-menu-wrap {
		position: revert;
		flex-wrap: wrap;
		width: 100%;
		height: auto;
	}
	.header-logo {
		margin: 70px auto 0;
	}
	.header-logo a {
		display: revert;
		width: auto;
		height: auto;
	}
	.header-logo a img {
		width: 100px;
		height: auto;
	}
	.gnav-header {
		flex-wrap: wrap;
		flex-flow: column;
		justify-content: revert;
	}
	.gnav-header-menu {
		flex-wrap: wrap;
		flex-direction: column;
		margin: 50px auto 0;
		padding-left: 0;
		height: auto;
	}
	.gnav-header-menu li:not(:last-child) {
		margin-bottom: 30px;
	}
	.gnav-header-menu li a {
		display: revert;
		padding: 0 0 0 1.6em;
		font-size: 1.6rem;
	}
	.gnav-header-menu li.no-icon a {
		font-size: 0.9em;
		padding-left: 0.6em;
	}
	.gnav-header-menu li.no-icon a:hover {
		text-decoration: revert;
	}
	.gnav-header-menu li a::before {
		left: 0.2em;
	}
	.gnav-header-sns {
		flex-wrap: wrap;
		justify-content: center;
		margin-top: 50px;
		margin-bottom: 20px;
	}
	.gnav-header-sns li a {
		width: 50px;
		height: 50px;
	}
	.header-info {
		position: relative;
		padding: 30px 0;
		width: 100%;
		height: auto;
		min-height: 200px;
		line-height: 1.5;
		background: none;
	}
	.header-info::before {
		content: "";
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 1px;
		background: var(--sub);
	}
	.header-info-open {
		line-height: 4;
	}

	/* トグルの設定 */
	.gnav-toggle-wrap {
		position: fixed;
		top: 0;
		right: 0;
		display: block;
		width: 60px;
		height: 60px;
		background: var(--main);
		z-index: 99999;	
	}
	.gnav-toggle, .gnav-toggle span {
		display: inline-block;
		transition: all .2s;
		box-sizing: border-box;
	}
	.gnav-toggle {
		position: relative;
		width: 40px;
		cursor: pointer;
	}
	.gnav-toggle::after {
		content: "MENU";
		position: absolute;
		top: 20px;
		left: 75%;
		transform: translateX(-50%);
		width: 100%;
		height: 1.2rem;
		font-size: 1.2rem;
		text-align: center;
		color: var(--text-color-w);
	}
	.gnav-toggle span {
		position: absolute;
		left: 75%;
		width: 100%;
		transform: translateX(-50%);
		height: 2px;
		background: var(--text-color-w);
		border-radius: 2px;
	}
	.gnav-toggle span:nth-of-type(1) {
		top: 0;
	}
	.gnav-toggle span:nth-of-type(2) {
		top: 12px;
	}

	.menu {
		margin: auto auto;
		flex-wrap: wrap;
		flex-direction: column;
	}

	/* メニュー展開時の設定 */
	.gnav-toggle-wrap.active {
		background: var(--text-color-w);
	}
	.gnav-toggle-wrap.active .gnav-toggle span {
		background: var(--main);
	}
	.gnav-toggle-wrap.active .gnav-toggle span:nth-of-type(1) {
		transform: translate(-50%, 6px) rotate(25deg);
	}
	.gnav-toggle-wrap.active .gnav-toggle span:nth-of-type(2) {
		transform: translate(-50%, -6px) rotate(-25deg);
	}
	.gnav-toggle-wrap.active .gnav-toggle::after {
		content: "CLOSE";
		color: var(--main);
	}

	.header-inner.panelactiv {
		transform: translateX(0);
	}
}

/* フロントページのみ、ヒーロー画像以降でヘッダーを表示 */
@media(min-width: 993px) {
	.front-page .header-menu-wrap {
		top: -80px;
		transition: all 0.3s;
	}
	.front-page .header-menu-wrap.is-show {
		top: 0;
	}
	.front-page .main {
		padding-top: 0;
		transition: all 0.3s;
	}
	.front-page .main.is-show {
		padding-top: 80px;
	}
}


/* ===============================================
フッターの記述
=============================================== */
.footer {
	display: flex;
	flex-wrap: wrap;
	flex-flow: column;
	justify-content: center;
	align-items: center;
	margin-top: 55px;
	background: var(--main);
}

.footer-nav {
	position: relative;
	width: 100%;
}
@media(max-width:992px) {
	.footer-nav {
		display: none;
	}
}
.footer-nav::before {
	position: absolute;
	bottom: 0;
	left: 0;
	content: "";
	width: 100%;
	height: 1px;
	background: var(--sub);
}
.gnav-footer-menu {
	display: flex;
	flex-wrap: nowrap;
	justify-content: center;
	padding: 25px 0 5px;
	list-style: none;
	font-size: 1.4rem;
}
.gnav-footer-menu li a {
	text-decoration: none;
	color: var(--text-color-w);
	transition: all 0.3s;
}
.gnav-footer-menu li a:hover {
	opacity: 0.5;
}
.gnav-footer-menu li:not(:last-child) {
	margin-right: 40px;
}

.footer-logo {
	margin: 30px 25px auto;
}
.footer-logo a {
	display: block;
	width: 70px;
	transition: all 0.3s;
}
.footer-logo a:hover {
	opacity: 0.5;
}
.footer-logo img {
	width: 100%;
}

.copyrigth {
	margin: 25px auto;
	font-size: 1rem;
	color: var(--text-color-w);
}

/* ページトップボタン */
.page-top {
	position: fixed;
	right: 20px;
	bottom: 50px;
	width: fit-content;
	z-index: 9;
	display: none;
}
.page-top.is-bottom {
	position: absolute;
	bottom: 320px;
}
@media(max-width:992px) {
	.page-top.is-bottom {
		bottom: 250px;
	}
}
.page-top a {
	position: relative;
	display: block;
	width: 60px;
	height: 60px;
	border: 2px solid var(--text-color);
	border-radius: 30px;
	background: var(--text-color-w);
	cursor: pointer;
	transition: all 0.3s;
}
.page-top a::before {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -30%) rotate(180deg);
	content: "\F415";
	width: 2rem;
	height: 2rem;
	font-size: 2rem;
	color: var(--text-color);
}
.page-top a::after {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, 55%);
	content: "TOP";
	font-size: 3.2rem;
	color: var(--text-color);
	transition: all 0.3s;
}
.page-top a:hover {
	transform: translateY(-5px);
}
.page-top a:hover::after {
	transform: translate(-50%, calc(55% + 5px));
} 



/* ===============================================
ページ・見出し.書式の設定
=============================================== */
.page-title-wrap {
	padding-top: 160px;
	padding-bottom: 90px;
	width: 100%;
	background: var(--back-dark);
}
h1.page-title, h2.front-title, .page-title {
	position: relative;
	font-size: 3.8rem;
	text-align: center;
}
h1.page-title::before, h2.front-title::before, .page-title::before {
	position: absolute;
	top: -20%;
	left: 50%;
	transform: translate(-50%, -100%);
	content: "";
	width: 130px;
	height: 55px;
	background: url(../images/title_sun.png) no-repeat 0 0 / contain;
}
@media(max-width: 768px) {
	h1.page-title-wrap {
		padding-top: 120px;
		padding-bottom: 30px;
	}
}

.entry-content {
	padding-top: 80px;
}
.entry-content *:first-child {
	margin-top: 0;
}


/* 見出しの設定 */

/* 見出し　一括指定 */
.entry-content :where(h2, h3, h4, h5, h6), :where(h2, h3, h4, h5, h6).page-title {
	position: relative;
	margin: 2em 0 1.4em;
	padding: 0 0.8em;
	width: fit-content;
}
:where(h2, h3, h4, h5, h6).page-title {
	margin-left: auto;
	margin-right: auto;
}
.entry-content :where(h2, h3, h4, h5)::before, .entry-content :where(h2, h3)::after, :where(h2, h3, h4, h5).page-title::before, :where(h2, h3).page-title::after {
	position: absolute;
	top: 50%;
	transform: translateY(-60%);
	width: 1em;
	height: 1em;
	font-family: 'bootstrap-icons';
	font-weight: normal;
	font-size: 1.2rem;
}
.entry-content :where(h2, h3, h4, h5)::before, :where(h2, h3, h4, h5).page-title::before {
	left: 0;
}

/* 見出し2・3のみ */
.entry-content :where(h2, h3), .page-title {
	padding: 0 0.8em 0.2em;
	border-bottom: 2px solid var(--back-dark);
}
.entry-content :where(h2, h3)::after, .page-title::after {
	right: 0;
}

/* 見出し2 */
.entry-content h2, h2.page-title {
	font-size: 3.2rem;
}
.entry-content h2::before, .entry-content h2::after, h2.page-title::before, h2.page-title::after  {
	content: "\F415";
	color: var(--main);
}
@media(max-width:768px) {
	.entry-content h2, h2.page-title {
		font-size: 2.4rem;
	}
}

/* 見出し3 */
.entry-content h3, h3.page-title {
	font-size: 2.8rem;
}
.entry-content h3::before, .entry-content h3::after, h3.page-title::before, h3.page-title::after {
	content: "\F59F";
	color: var(--text-color);
}
@media(max-width:768px) {
	.entry-content h3, h3.page-title{
		font-size: 2rem;
	}
}

/* 見出し4 */
.entry-content h4, h4.page-title {
	font-size: 2.4rem;
}
.entry-content h4::before, h4.page-title::before {
	content: "\F59B";
	color: var(--main);
}
@media(max-width:768px) {
	.entry-content h4, h4.page-title {
		font-size: 1.8rem;
	}
}

/* 見出し5 */
.entry-content h5, h5.page-title {
	font-size: 2rem;
}
.entry-content h5::before, h5.page-title::before {
	content: "\F599";
	color: var(--text-color);
}
@media(max-width:768px) {
	.entry-content h5, h5.page-title {
		font-size: 1.6rem;
	}
}

/* 見出し6 */
.entry-content h6, h6.page-title {
	position: relative;
	font-size: 2rem;
}
.entry-content h6::before, h6.page-title::before {
	position: absolute;
	top: 0.1em;
	left: 0;
	content: "";
	width: 4px;
	height: 1em;
	background: var(--text-color);
}
@media(max-width:768px) {
	.entry-content h6, h6.page-title {
		font-size: 1.6rem;
	}
}


/* 書式の設定 */
.entry-content hr {
	margin: 50px auto;
	width: 90%;
	border-top: 2px dotted var(--text-color);
}



/* ===============================================
リスト・表の設定
=============================================== */
.entry-content ul,.entry-content ol {
	margin: 30px 0;
}
.entry-content ul li:not(:first-child), .entry-content ol li:not(:first-child) {
	margin-top: 0.8em;
}

.entry-content table thead {
	border-bottom: none;
	background: var(--back-dark);
}
.entry-content table th, .entry-content table td {
	border-color: #b9b0ad;
}
.entry-content table th {
	font-weight: var(--bs-body-font-weight);;
}



/* ===============================================
ボタンの設定
=============================================== */
:root :where(.wp-element-button, .wp-block-button__link, .button) {
	position: relative;
	display: block;
	margin: 0.5em 0;
	padding: 15px calc(15px + 1.5em) 15px 20px;
	width: fit-content;
	min-width: 250px;
	font-size: 2.4rem;
	color: var(--text-color);
	text-align: center;
	text-decoration: none;
	border: 2px solid var(--text-color);
	border-radius: 0;
	background: var(--text-color-w);
	box-shadow: 8px 8px var(--accent);
	transition: all 0.3s;
}
:root :where(.wp-element-button, .wp-block-button__link, .button)::before {
	position: absolute;
	top: 50%;
	right: 0.7em;
	transform: translateY(-70%);
	content: "\002192";
	width: 1em;
	height: 1em;
	color: var(--text-color);
}
:root :where(.wp-element-button, .wp-block-button__link, .button):hover {
	transform: translate(3px, 3px);
	box-shadow: 5px 5px var(--accent);
}
.button {
	margin: 50px auto;
}



/* ===============================================
Lightbox2 共通設定
=============================================== */
.lightboxOverlay + .lightbox {
	top: 50% !important;
	left: 50% !important;
	transform: translate(-50%, -50%) !important;
	margin-top: 0 !important;
}

.lightbox .lb-outerContainer,
.lightbox .lb-dataContainer {
	width: calc(100% - 20px) !important;
	max-width: 768px !important;
	height: auto !important;
	box-sizing: border-box !important;
}
.lightbox .lb-image {
	width: 100% !important;
	max-width: 100% !important;
	height: auto !important;
}

.lb-data .lb-close,
.lightbox .lb-nav a.lb-prev,
.lightbox .lb-nav a.lb-next {
	opacity: 1 !important;
}
.lightbox .lb-nav a.lb-prev, .lightbox .lb-nav a.lb-next {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	max-height: 100%;
}



/* ===============================================
投稿一覧ページ
=============================================== */
/* ニュースパーツ（共通） */
.news-list {
	position: relative;
	margin: 60px auto;
	padding: 50px 40px;
	border: double 6px var(--text-color);
	background: var(--text-color-w);
	box-shadow: 0 0 0 2px var(--text-color);
}
.news-list::before, .news-list::after {
	content: "";
	position: absolute;
	left: 50%;
	width: 115px;
	height: 25px;
	background: url(../images/border_frame.png) no-repeat 0 0 / contain;
}
.news-list::before {
	top: -30px;
	transform: translateX(-50%);
}

.news-list::after {
	bottom: -30px;
	transform: translateX(-50%) scaleY(-1);
}

.news-list .news-items {
	border-bottom: dashed 1px var(--text-color);
}
.news-list .news-items:first-of-type {
	border-top: dashed 1px var(--text-color);
}
.news-list .news-items a {
	position: relative;
	display: flex;
	flex-wrap: nowrap;
	padding: 25px 40px 25px 25px;
	color: var(--text-color);
	text-decoration: none;
	transition: all 0.3s;
}
.news-list .news-items a .article-time {
	display: block;
	margin-right: 1em;
	width: 6em;
}
.news-list .news-items a .article-title {
	display: block;
	width: calc(100% - 7em);
}
.news-list .news-items a::after {
	content: "→";
	position: absolute;
	top: 50%;
	right: 1em;
	transform: translateY(-50%);
	transition: all 0.3s;
}
.news-list .news-items a:hover {
	background: var(--back-dark);
}
.news-list .news-items a:hover::after {
	transform: translate(0.25em, -50%);
}
@media(max-width:768px) {
	.news-list .news-items a {
		flex-wrap: wrap;
		padding: 15px 40px 15px 5px;
	}
	.news-list .news-items a .article-time, .news-list .news-items a .article-title {
		width: 100%;
	}

}

/* アーカイブページでの設定 */
.archive .news-list {
	margin-top: 100px;
}

/* ページネーションの設定 */
.pagination {
	display: flex;
	justify-content: center;
	margin: 50px 0;
}
.pagination-list {
	order: 2;
	display: flex;
	list-style: none;
	margin: 0;
	padding: 0;
}
.pagination-item {
	cursor: default;
}

.pagination a,
.pagination-item-current {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 40px;
	height: 40px;
	margin-right: 6px;
	font-weight: bold;
	color: var(--text-color);
	text-decoration: none;
	background: var(--back-dark);
	transition: all .3s;
}

.pagination-item-current {
	color: var(--text-color-w);
	background: var(--main);
	cursor: default;
}
.pagination a:hover {
	background: color-mix(in srgb, var(--main) 50%, transparent);
	color: #fff;
}

.pagination-pos {
	display: none;
}
.pagination-btn-prev { order: 1; }
.pagination-btn-next { order: 3; }
.pagination-btn-first { order: 1; }
.pagination-btn-last { order: 5; }

@media (max-width: 768px) {
	.pagination a {
		width: 70px;
		height: 40px;
	}

	.pagination-list,
	.pagination-btn-first,
	.pagination-btn-last {
		display: none;
	}

	.pagination-pos {
		order: 2;
		display: flex;
		align-items: center;
		margin: 0 6px;
		padding: 0;
	}
}

/* ===============================================
投稿ページ
=============================================== */
/* 記事タイトル */
.news-title-wrap {
	margin-bottom: 50px;
}

.news-title {
	position: relative;
	display: block;
	margin-right: 8px;
	margin-bottom: calc(12px + 10px);
	padding: 15px 30px;
	width: calc(100% - 8px);
	font-size: 3.2rem;
	border: solid 1px var(--text-color);
}
.news-title::first-letter {
	font-size: 1.5em;
	color: var(--main);
}
.news-title::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: -1;
	width: calc(100% - 30px);
	height: calc(100% - 20px);
	background: var(--back-dark);
}
.news-title::after {
	content: "";
	position: absolute;
	top: 50%;
	right: -8px;
	transform: translateY(calc(-50% + 10px));
	width: calc(100% - 8px);
	height: 100%;
	border-right: solid 1px var(--text-color);
	border-bottom: solid 1px var(--text-color);
}
@media(max-width:768px) {
	.news-title {
		font-size: 2.4rem;
	}
}

.post-date {
	color: var(--text-color-gray);
	text-align: right;
}

.button-news-back-wrap {
	margin: 120px auto 50px auto;
	width: fit-content;
}
.button-news-back {
	position: relative;
	display: inline-block;
	padding: 15px;
	min-width: 250px;
	font-size: 2.4rem;
	color: var(--text-color);
	text-align: center;
	text-decoration: none;
	border: solid 1px var(--text-color);
}
.button-news-back::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: -1;
	width: calc(100% - 16px);
	height: calc(100% - 16px);
	background: var(--back-dark);
	transition: all 0.3s;
}
.button-news-back:hover::before {
	width: 100%;
	height: 100%;
}
@media(max-width:768px) {
	.button-news-back {
		font-size: 2rem;
	}
}



/* ===============================================
トップページ
=============================================== */
/* トップ共通 */
.home-section {
	padding: 90px 0;
}

/* トップ 見出し */
h2.front-title {
	position: relative;
	margin-top: 80px;
	margin-bottom: 60px;
	font-size: 3.8rem;
	text-align: center;
}
h2.front-title::before {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -170%);
	content: "";
	width: 130px;
	height: 55px;
	background: url(../images/title_sun.png) no-repeat 0 0 / contain;
}
@media(max-width:768px) {
	h2.front-title {
		font-size: 2.8rem;
	}
}

h3.front-title {
	margin-bottom: 30px;
	font-size: 3.2rem;
}
@media(max-width:768px) {
	h3.front-title {
		font-size: 2.4rem;
	}
}


/* ヒーローイメージ */
.hero {
	display: flex;
	flex-wrap: nowrap;
	width: 100%;
}

.hero-side {
	padding: 40px 0 100px;
	width: 240px;
	flex-shrink: 0;
	background: var(--main);
}
.hero-side-logo {
	margin: 0 auto;
	width: 150px;
}
.hero-side-logo a {
	transition: all 0.3s;
}
.hero-side-logo a:hover {
	opacity: 0.5;
}
.hero-side-logo-sp {
	display: none;
}

.home-side-nav-menu {
	display: flex;
	flex-wrap: wrap;
	flex-direction: column;
	margin: 50px auto 0;
	padding-left: 50px;
}
.home-side-nav-menu li {
	list-style: none;
}
.home-side-nav-menu li:not(:last-child) {
	margin-bottom: 30px;
}
.home-side-nav-menu li a {
	position: relative;
	justify-content: center;
	align-items: center;
	padding: 0 0 0 1.6em;
	width: 100%;
	height: 100%;
	font-size: 1.6rem;
	text-decoration: none;
	color: var(--text-color-w);
	transition: all 0.3s;
}
.home-side-nav-menu li a::before {
	position: absolute;
	top: 50%;
	left: 0.2em;
	transform: translateY(-70%);
	width: 1em;
	height: 1em;
	color: var(--sub);
	transition: all 0.3s;
}
.home-side-nav-menu li a:hover::before {
	color: #fff;
}
.home-side-nav-menu li:nth-of-type(4n+1) a::before {
	content: "\F415";
}
.home-side-nav-menu li:nth-of-type(4n+2) a::before {
	content: "\F59F";
}
.home-side-nav-menu li:nth-of-type(4n+3) a::before {
	content: "\F59B";
}
.home-side-nav-menu li:nth-of-type(4n) a::before {
	content: "\F599";
}

/* ヒーロー 左サイドnav */
.home-side-nav-sns {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	list-style: none;
	margin-top: 50px;
	margin-bottom: 20px;
	padding-left: 0;
}
.home-side-nav-sns li:not(:last-child) {
	margin-right: 20px;
}
.home-side-nav-sns li a {
	display: block;
	width: 50px;
	height: 50px;
	transition: all 0.3s;
}
.home-side-nav-sns li a:hover {
	opacity: 0.5;
}
.home-side-nav-sns li a img {
	width: 100%;
	height: 100%;
}

/* ヒーロースライド画像 */
.hero-images {
	width: calc(100% - 240px);
	min-width: 0;
	overflow: hidden;
}
.hero-swiper {
	position: relative;
	width: 100%;
	height: 100%;
	overflow: hidden;
}

.hero-swiper a img {
	transition: 0.3s;
}
.hero-swiper a:hover img {
	transform: scale(1.01);
}

.hero-swiper .swiper-wrapper,
.hero-swiper .swiper-slide {
	height: 100%;
}
.hero-swiper .swiper-slide img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
.swiper-pagination-bullet-active {
	background: var(--accent);
}

@media(max-width:992px) {
	.hero-side {
		display: none;
	}
	.hero-images {
		position: relative;
		width: 100%;
		height: 600px;
	}
	.hero-side-logo-sp {
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
		z-index: 9;
		display: block;
		width: 50%;
		max-width: 250px;
		height: auto;
	}
}


/* ニュースパーツ（TOP専用） */
.home-news {
	padding: 30px 0 80px;
	background: var(--back-dark);
}
.news-more {
	position: absolute;
	right: 0;
	bottom: 0;
	transform: translate(50%, 50%);
}
.news-more a {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	padding-top: 5px;
	width: 100px;
	height: 100px;
	font-size: 2rem;
	line-height: 1.2;
	color: var(--text-color-w);
	text-align: center;
	text-decoration: none;
	border-radius: 50%;
	background: var(--main);
	transition: all 0.25s
}
.news-more a::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 90%;
	height: 90%;
	border: dashed 2px var(--text-color-w);
	border-radius: 50%;
	transition: all 0.3s;
}
.news-more a:hover::before {
	transform: translate(-50%, -50%) rotate(10deg) scale(1.05);
} 
@media(max-width:768px) {
	.home-news .news-list {
		margin: 60px 10px;
	}
	.news-more {
		right: -15px;
		bottom: 0;
		transform: translateY(70%);
	}
	.news-more a {
		width: 90px;
		height: 90px;
		font-size: 1.8rem;
	}
}


/* おすすめ商品 スライダー */
.home-featured {
	overflow: hidden;
}

.featured-swiper-wrap {
	width: 100%;
	padding: 20px 0;
}

.featured-swiper {
	position: relative;
}
.featured-swiper .swiper-wrapper {
	transition-timing-function: ease-out !important;
}
.featured-swiper .swiper-slide {
	aspect-ratio: 1 / 1;
	overflow: hidden;
}
.featured-swiper .swiper-slide img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
.featured-swiper .swiper-slide a img {
	transition: all 0.3s;
}
.featured-swiper .swiper-slide a:hover img {
	transform: scale(1.1);
}

/* 前後ボタンのカスタマイズ（丸型ハートアイコン風） */
.featured-swiper-button-prev,
.featured-swiper-button-next {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	display: flex;
	justify-content: center;
	align-items: center;
	width: 50px;
	height: 50px;
	background-color: #fff;
	border: 2px solid #333;
	border-radius: 50%;
	color: #333;
	box-shadow: 0 4px 6px rgba(0,0,0,0.1);
	z-index: 1;
}
.featured-swiper-button-prev {
	left: 20px;
}
.featured-swiper-button-next {
	right: 20px;
}
.featured-swiper-button-prev::after,
.featured-swiper-button-next::after {
	content: "\F415";
	display: block;
	font-size: 18px;
	font-weight: bold;
}
.featured-swiper-button-prev::after{
	transform: rotate(90deg);
}
.featured-swiper-button-next::after {
	transform: rotate(-90deg);
}

@media(max-width:768px) {
	.featured-swiper-button-prev {
		left: 10px;
	}
	.featured-swiper-button-next {
		right: 10px;
	}
}


/* カレンズについて */
.home-about {
	padding-bottom: 300px;
	background: linear-gradient(to bottom, var(--back) 0%, var(--back) 65%, transparent 95%, transparent 100%), url(../images/about_bk.jpg);
	background-repeat: no-repeat;
	background-position: top, center bottom;
	background-size: cover;
}
.home-about .home-about-copy {
	margin: 0 auto 2em auto;
	font-size: 3.2rem;
	line-height: 2;
	writing-mode: vertical-rl;
}
.home-about-text {
	line-height: 2;
}
@media(max-width:768px) {
	.home-about {
		padding-bottom: 200px;	
		background: linear-gradient(to bottom, var(--back) 0%, var(--back) 85%, transparent 95%, transparent 100%), url(../images/about_bk.jpg);
		background-position: top, center bottom;
		background-size: cover, 200%;
	}
	.home-about .home-about-copy {
		font-size: 2.4rem;
	}
}


/* 店舗紹介 */
.shop-thum {
	margin: 50px 0;
}
.shop-thum img {
	width: 100%;
	height: auto;
}

.shop-info {
	margin: 50px 0;
	padding: 50px;
	background: var(--text-color-w);
	box-shadow: 6px 6px 20px 0 color-mix(in srgb, var(--text-color) 30%, transparent);
}

.shop-info-list {
	display: flex;
	flex-wrap: wrap;
}
.shop-info-list dt:not(:last-of-type), .shop-info-list dd:not(:last-of-type) {
	margin-bottom: 5px;
}
.shop-info-list dt {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 5em;
	font-weight: normal;
	background: var(--accent);
}
.shop-info-list dd {
	margin-left: 15px;
	width: calc(100% - 5em - 15px);
}

.shop-info iframe {
	width: 100%;
	height: 100%
}

@media(max-width:768px) {
	.shop-thum {
		width: 100vw;
		position: relative;
		left: calc((100vw - 100%) / -2);
	}
	.shop-info {
		padding: 30px 20px;
	}
	.shop-info-list {
		margin-bottom: 1.5em;
	}
}


/* カレンズの取り組み */
.home-shuro-text {
	margin-bottom: 1em;
	padding-right: 40px;
	line-height: 1.7;
}
@media(max-width:768px) {
	.home-shuro-text {
		padding-right: 0;
	}
}


/* ===============================================
商品ページの設定
=============================================== */
.menu-list-item {
	margin-bottom: 2em;
}

.menu-list-item a {
	color: var(--text-color);
	text-decoration: none;
	display: block;
}

.menu-list-image {
	aspect-ratio: 1 / 1;
	overflow: hidden;
}
.menu-list-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
.menu-list-title {
	margin-top: 15px;
	font-size: 2rem;
}
@media(max-width:768px) {
	.menu-list-title {
		font-size: 1.8rem;
	}
}