@charset "UTF-8";

/* Table of contents
––––––––––––––––––––––––––––––––––––––––––––––––––
- layout
- PC/SP間隔変更
- ページ遷移処理
- header
- gnav
- slideReveal.js（上書き）
- footer
- text
- button
- etc
*/



/* 初期値 */
:root {
	--color-main: #1a92c6;
	--color-main-over: #eff5fa;
	--color-sub: #f8f736;
	--color-bg: #fff;
	--color-bg-gray: #f7f7f7;
	--color-txt: #333;

	--margin-l: 5.0rem;
	--margin-m: 3.0rem;
	--margin-s: 1.5rem;
	--margin-ss: 1.0rem;
	--margin-sss: 0.5rem;

	--border: 1px solid #8cc8e2;
	--font-family-jp: 'Noto Sans JP', sans-serif;
	--font-family-en: 'Barlow Condensed', sans-serif;
	--font-family-ic: 'Material Symbols Outlined';
}

/* チェック用 */
.area-check {
	border: #000 solid 1px;
}



/* layout
–––––––––––––––––––––––––––––––––––––––––––––––––– */

html {
	font-size: 100%;
	overflow-x: hidden;
}
body {
	font-family: 'Noto Sans JP', sans-serif;
	font-size: 0.9rem;
	font-weight: 400;
	line-height: 1.9;
	color: var(--color-txt);
	background-color: var(--color-bg);
	/*position: relative;*/
	/*overflow: hidden; */
	/*min-width: 1000px;*/
}
* {
	word-break: break-all;
}

/* body * {
	box-sizing : border-box;
} */
/* * {
	outline: 1px solid magenta;
} */


/* PC/SP間隔変更
–––––––––––––––––––––––––––––––––––––––––––––––––– */
section {
	margin-bottom: var(--margin-l);
}
section:last-child {
	margin-bottom: 0;
}

hr {
	border-top: var(--border);
	margin: var(--margin-l) auto var(--margin-l) auto;
	width: 100%;
}
p {
	margin-bottom: var(--margin-s);
}
p:last-child {
	margin-bottom: 0;
}
pre,
blockquote,
dl,
figure,
form {
	margin-bottom: var(--margin-l);
}
ul,
ol {
	margin-bottom: var(--margin-m);
}
table {
	margin-bottom: 0;
}
.end {
	margin-bottom: 0 !important;
}

@media (max-width: 750px) {
	section {
		margin-bottom: var(--margin-m);
	}
	p {
		margin-bottom: var(--margin-s);
	}
	hr {
		margin-top: var(--margin-m);
		margin-bottom: var(--margin-m);
		width: 100%;
	}
	pre,
	blockquote,
	dl,
	figure,
	form {
		margin-bottom: var(--margin-m);
	}
	ul,
	ol {
		margin-bottom: var(--margin-s);
	}
}


/* リスト –––––––––––––––––––––– */
ul,
ol,
ul ul,
ol ol {
	font-size: 100%;
}
li {
	line-height: 1.5em;
	margin-bottom: 1rem;
	list-style: none;
}
li:last-child {
	margin-bottom: 0;
}


/* 画像 –––––––––––––––––––––– */
figure {
	margin: 0;
}
img {
	vertical-align: bottom; /*下の隙間を削除*/
}
img.img-frame {
	border: var(--border);
	box-sizing: border-box;
}


/* SPの場合隠す */
@media (max-width: 750px) {
	.sp-hide {
		display: none !important;
	}
}

/* PCの場合隠す */
@media (min-width: 750px) {
	.pc-hide {
		display: none !important;
	}
}


/* header
–––––––––––––––––––––––––––––––––––––––––––––––––– */

header {
	width: 100%;
	margin: var(--margin-l) 0;
	text-align: center;
	transition: all 0.3s ease-out;
}
header .ttl {
	font-size: 1em;
	margin-bottom: var(--margin-m);
}

@media (max-width: 750px) {
	header {
		margin: var(--margin-m) 0;
	}
	header .ttl {
		margin-bottom: var(--margin-s);
	}
	header .ttl img {
		width: 60vw;
	}
}



/* footer
–––––––––––––––––––––––––––––––––––––––––––––––––– */
footer {
	margin: 0 auto var(--margin-l) auto;
	padding-top: var(--margin-l);
	border-top: var(--border);
}
footer .footer-inner {
	margin: 0 var(--margin-m);
}
footer p.logo {
	font-size: 0.9rem;
	font-weight: 600;
	text-align: center;
}
footer p {
	font-size: 0.7rem;
	line-height: 1.5;
	text-align: center;
	margin-bottom: 0.5em;
}
footer p.copyright {
	font-family: var(--font-family-en);
	font-size: 0.8rem;
	line-height: 1;
	margin-top: var(--margin-s);
}
footer img {
	height: 25px;
}
footer ul {
	text-align: center;
	font-size: 0.7rem;
}
footer ul li {
	display: inline;
	margin: 0;
}
footer ul li::after {
	content: ' / ';
}
footer ul li:last-child::after {
	content: '';
}

@media (max-width: 750px) {
	footer {
		margin: 0 auto var(--margin-m) auto;
		padding-top: var(--margin-m);
	}
	footer .footer-inner {
		margin: 0 var(--margin-s);
	}
	footer p {
		font-size: 0.7rem;
		text-align: left;
	}
	footer p.logo , footer p.copyright {
		text-align: center;
	}
	footer img {
		height: 20px;
	}
	footer ul {
		text-align: left;
	}
}



/* nav
–––––––––––––––––––––––––––––––––––––––––––––––––– */
nav ul , nav ul li {
	margin: 0;
	padding: 0;
	line-height: 1rem;
}

/* g-nav –––––––––––––––––––––– */
.g-nav {
	display: flex;
	align-items: center;
	justify-content: center;
	align-items: center;
	font-family: var(--font-family-en);
	font-weight: 400;
	font-size: 1.4rem;
	letter-spacing: 0.05em;
	margin-bottom: 2em;
}
.g-nav a {
	padding: 0px 15px;
}
.g-nav li+li {
	position: relative;
}
.g-nav li+li::before {/* 仕切り線 */
	content: "";
	display: block;
	height: 1rem;
	border-left: var(--border);
	position: absolute;
	transform: rotate(20deg);
}


/* バーガーメニュー –––––––––––––––––––––– */
.openbtn {
	display: none;
}

@media (max-width: 1000px) {
	/*アクティブになったエリア*/
	.g-nav.active {
		/*position:fixed;にし、z-indexの数値を大きくして前面へ*/
		position: fixed;
		z-index: 999;
		top: 0;
		width: 100%;
		height: 100vh;
		height: 100dvh; /*真iOS safari用*/
		height: -webkit-fill-available; /*旧iOS safari用*/
		margin: 0;
	}

	/* 丸の拡大 */
	.nav-bg {
		position: fixed;
		z-index: 100;
		width: 100px;
		height: 100px;
		border-radius: 50%;
		background: var(--color-sub);
		/*丸のスタート位置と形状*/
		transform: scale(0);/*scaleをはじめは0に*/
		top: calc(50% - 50px);/*50%から円の半径を引いた値*/
		left: calc(50% - 50px);/*50%から円の半径を引いた値*/
		transition: all .6s;
	}
	.nav-bg.active {
		transform: scale(50);/*クラスが付与されたらscaleを拡大*/
	}

	.g-nav {
		opacity: 0;
		display: none;
	}
	.g-nav.active { /* 背景が出現後にナビゲーションを表示 */
		display: flex;
		opacity: 1;
		align-items: center;
		justify-content: center;
		flex-direction: column;
	}
	.g-nav.active li {
		animation-name: gnaviAnime;
		animation-duration: 1s;
		animation-delay: .2s;/* 遅らせて出現 */
		animation-fill-mode: forwards;
		opacity: 0;
		list-style: none;
		text-align: left;
		line-height: 1;
		margin: 0.5em 0;
	}
	@keyframes gnaviAnime {
		0% { opacity: 0; }
		100% { opacity: 1; }
	}
	.g-nav li {
		text-align: center;
		list-style: none;
	}
	.g-nav li a {
		text-decoration: none;
		/*text-transform: uppercase; 大文字 */
	}
	.g-nav li+li::before {
		display: none;
	}

	/* バーガーメニュー –––––––––––––––––––––– */
	.openbtn {
		display: block;
		position: fixed;
		top: 0px;
		right: 0px;
		z-index: 9999;/*ボタンを最前面に*/
		cursor: pointer;
		width: 50px;
		height: 50px;
	}
	.openbtn span {
		display: inline-block;
		transition: all .4s;
		position: absolute;
		left: 14px;
		height: 2px;
		border-radius: 2px;
		background-color: var(--color-main);
		width: 40%;
	}
	.openbtn span:nth-of-type(1) {
		top: 15px;
	}
	.openbtn span:nth-of-type(2) {
		top: 23px;
	}
	.openbtn span:nth-of-type(3) {
		top: 31px;
	}

	.openbtn.active span:nth-of-type(1) {
		top: 16px;
		left: 14px;
		transform: translateY(6px) rotate(-45deg);
		width: 40%;
	}
	.openbtn.active span:nth-of-type(2) {
		opacity: 0;
	}
	.openbtn.active span:nth-of-type(3) {
		top: 28px;
		left: 14px;
		transform: translateY(-6px) rotate(45deg);
		width: 40%;
	}
}



/* main 
–––––––––––––––––––––––––––––––––––––––––––––––––– */
main {
	display: flex;
	justify-content: space-between;
	max-width: 1200px;
	margin: 0 auto var(--margin-l) auto;
	padding: 0 var(--margin-m);
}
main section label {
	display: flex;
	justify-content: space-between;
	align-items: baseline;
	font-family: var(--font-family-en);
	font-weight: 400;
	font-size: 2rem;
	letter-spacing: 0.03em;
	line-height: 1.0em;
	color: var(--color-main);
	text-transform: capitalize;
	margin-bottom: var(--margin-s);
}
main section label span {
	font-size: 0.8rem;
	letter-spacing: 0;
}

@media (max-width: 1000px) {
	main {
		width: auto;
		flex-direction: column-reverse;
		margin: 0 var(--margin-m) var(--margin-l) var(--margin-m);
		padding: 0;
	}
	main section article h3 span {
		margin-left: 2em;
	}
}

@media (max-width: 750px) {
	main {
		margin: 0 var(--margin-s) var(--margin-m) var(--margin-s);
	}
}



/* .article
–––––––––––––––––––––––––––––––––––––––––––––––––– */
article {
	flex: 1;
}

/* target="_blank"で識別 */
@import url(https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@40,300,0,0);
article p a[target="_blank"]::after,
article .wp-block-button a[target="_blank"]::after {
	display: inline-block;
	content: 'stack';
	font-family: var(--font-family-ic);
	vertical-align: bottom;
	font-size: 1em;
	text-decoration: none;
	padding: 0 0.2em;
}

/* .post –––––––––––––––––––––– */
.post {
	position: relative;
	display: flex;
	align-items: stretch;
	justify-content: center;
	align-content: space-between;
	margin-bottom: var(--margin-m);
	color: var(--color-txt);
}
.post .img-area {
	margin-right: 2em;
}
.post .img-area figure {
	margin-bottom: 0;
	overflow:hidden;
}
.post .img-area figure img {
	width: 30vw;
	height: calc(3/4*30vw);
	max-width: 400px;
	max-height: 300px;
	object-fit: cover;
	transition-duration: 0.3s;
	transition-timing-function: ease-out;
}
.post .img-area figure img:hover {
	transform:scale(1.1,1.1);
	transition-duration: 0.3s;
	transition-timing-function: ease-out;
}
.post .txt-area {
	flex-grow: 1;
}
.post .txt-area p {
	overflow: hidden;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 4;/* 任意の行数を指定 */
}
.post .category {
	font-family: var(--font-family-en);
	font-size: 1.0rem;
	letter-spacing: 0.03em;
	line-height: 1.0em;
	color: var(--color-main);
	text-transform: capitalize;
	margin-bottom: 0.5em;
}
.post h4 {
	font-size: 1.3rem;
	color: var(--color-main);
}
.post h4:hover {
	text-decoration: underline;
}

/* .posted –––––––––––––––––––––– */
.posted {
	display: flex;
	align-items: center;
	font-size: 0.7rem;
	line-height: 1.5em;
	/* margin-top: 2.5em; */
}
.posted img  {
	width: 28px;
	height: 28px;
	object-fit: cover;
	margin: 0 11px 0 0;
}
@media (max-width: 750px) {
	.posted {
		align-items: flex-start;
	}
}

/* .pagination –––––––––––––––––––––– */
.container .pagination h2 {
	display: none;
}
.pagination .nav-links ul {
	display: flex;
	justify-content: center;
	align-items: center;
	font-family: var(--font-family-en);
	font-size: 1.2rem;
	line-height: 1em;
	border-left: var(--border);
	border-right: var(--border);
}
.pagination .nav-links li a,
.pagination .nav-links li .current,
.pagination .nav-links li .dots {
	display: block;
	height: 100%;
	box-sizing: border-box;
	padding: 15px 15px;
	margin: 0 10px;
}
.pagination .nav-links li a:hover {
	background-color:  var(--color-main-over);
	text-decoration: none;
}
/* .pagination .nav-links li .dots {
	padding: 10px 0;
} */
.pagination .nav-links li a.prev ,
.pagination .nav-links li a.next {
	/* flex-grow: 3; */
	/* width: 20%; */
	/* padding: 15px 45px; */
	text-align: center;
	/* border-left: var(--border);
	border-right: var(--border); */
}

@media (max-width: 750px) {
	/* .pagination .nav-links ul {
		justify-content: space-between;
	} */
	.pagination .nav-links li a,
	.pagination .nav-links li .current,
	.pagination .nav-links li .dots {
		padding: 10px 10px;
		margin: 0;
	}
	.pagination .nav-links li a.prev ,
	.pagination .nav-links li a.next {
		padding: 10px 10px;
	}
}


/* .shop –––––––––––––––––––––– */
.shop figure {
	font-size: 0.7rem;
	line-height: 1.5;
	margin-bottom: var(--margin-m);
}
.shop figure img {
	width: 100%;
	height: auto;
	margin-bottom: 0.5em;
}
.shop-inner {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin-bottom: calc(var(--margin-m)*-1);
}
.shop-inner figure {
	width: 32%;
}
.shop figure a {
	transition-duration: 0.3s;
	transition-timing-function: ease-out;
}
.shop figure a:hover {
	opacity: 0.8;
}

@media (max-width: 1000px) {
	.post .img-area figure img {
		width: 35vw;
		height: calc(3/4*35vw);
	}
}

@media (max-width: 750px) {
	.post {
		margin-bottom: var(--margin-s);
	}
	.post .img-area {
		margin-right: 1.5em;
	}
	.post .img-area figure {
		margin-bottom: var(--margin-ss);
	}
	.post .txt-area p {
		margin-bottom: 0;
	}
	.post p.category {
		font-size: 0.8rem;
		margin-bottom: var(--margin-sss);
	}
	.post h4 {
		font-size: 1.1rem;
		margin-bottom: var(--margin-sss);
	}
	.posted {
		max-width: 35vw;
	}
	.posted img  {
		margin: 0 var(--margin-sss) 0 0;
	}
	.shop-inner {
		margin-bottom: calc(var(--margin-s)*-1);
	}
	.shop figure {
		margin-bottom: var(--margin-s);
	}
	.shop-inner figure {
		width: 47.5%;
	}
}



/* .sidebar
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.sidebar {
	display: flex;
	flex-direction: column;
	width: 300px;
	margin-left: var(--margin-m);
}


/* .event –––––––––––––––––––––– */
.event {
	position: relative;
	color: var(--color-bg);
}
.event a {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
}
.event figure {
	margin-bottom: 0;
	overflow:hidden;
}
.event figure img {
	width: 100%;
	height: auto;
	object-fit: cover;
	transition-duration: 0.3s;
	transition-timing-function: ease-out;
}
.event figure img:hover {
	transform:scale(1.1,1.1);
	transition-duration: 0.3s;
	transition-timing-function: ease-out;
}
.event-inner {
	background-color: var(--color-main);
	padding: var(--margin-s);
	margin-bottom: var(--margin-ss);
}
.event-inner h4:hover {
	text-decoration: underline;
}
.event-inner p {
	overflow: hidden;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 4; /* 任意の行数を指定 */
}


/* .sponcer –––––––––––––––––––––– */
.sponcer-inner {
	text-align: center;
}
.sponcer-inner p {
	margin-bottom: var(--margin-s);
}
.sponcer-inner p:last-child {
	margin-bottom: 0;
}
.sponcer-ttl {
	display: flex;
	align-items: center;
	font-size: 1rem;
	margin-bottom: var(--margin-m);
}
.sponcer-ttl::before , .sponcer-ttl::after {
	background-color: var(--color-main);
	content: "";
	flex-grow: 1;
	height: 1px;
	opacity: 0.5;
}
.sponcer-ttl::before {
	margin-right: 1em;
}
.sponcer-ttl::after {
	margin-left: 1em;
}

@media (max-width: 1000px) {
	.sidebar {
		width: auto;
		margin: 0 0 var(--margin-m) 0;
	}
	.sponcer {
		margin:0 calc(var(--margin-m)*-1) ;
	}
	.sponcer-inner {
		padding-bottom: var(--margin-m);
		border-bottom: var(--border);
	}
}

@media (max-width: 750px) {
	.sponcer {
		margin:0 calc(var(--margin-s)*-1) ;
	}
}


/* アイコン –––––––––––––––––––––– */

.material-symbols {
	font-family: var(--font-family-ic);
	vertical-align: -0.1em;
	padding: 0 0.2em;
	font-size: 1em;
	color: var(--color-main);
}

[class^="ic_"]::before {
	font-family: 'Material Icons';
}
.ic_tag::before {
	content: "local_offer ";
}
.ic_category::before {
	content: "inbox ";
}



/* 注意書き –––––––––––––––––––––– */
ul.note {
	list-style: none;
	display: inline-block;
	margin-bottom: 0;
}
ul.note li::before {
	content: '※ ';
}
ul.note li {
	text-align: left;
}
ul.note li:last-child {
	margin-bottom: 0;
}


/* text –––––––––––––––––––––– */
h2,
h3,
h4 {
	letter-spacing: 0;
}
h2 {
	font-size: 1.5rem;
	line-height: 1.5;
	margin-bottom: 0.7em;
}
h3 {
	font-size: 1.2rem;
	line-height: 1.5;
	margin-bottom: 0.7em;
	font-weight: 600;
}
h4 {
	font-size: 1.0rem;
	line-height: 1.5;
	margin-bottom: 0.7em;
	font-weight: 600;
}
label {
	font-family: var(--font-family-en);
	font-size: 1.5rem;
	white-space: nowrap;
}
p.lead {
	font-size: 1.0rem;
	line-height: 1.8;
}
.note {
	font-size: 0.7rem;
	line-height: 1.6;
}
.color-sub {
	color: var(--color-sub);
}



/* リンク –––––––––––––––––––––– */

/* リンク枠消す */
a {
	outline: none;
}
*:focus {
	outline: none;
}
a {
	color: var(--color-main);
}
a:hover {
	color: var(--color-main);
	text-decoration: underline;
	text-underline-offset: 0.3em;
}
a {
	text-decoration: none;
}
.decoration-none , 
.decoration-none:hover {
	text-decoration: none;
}

/* btn-box –––––––––––––––––––––– */
.btn-box {
	position: relative;
	display: block;
	line-height: 1.5;
	font-weight: 600;
	color: var(--color-main);
	border: var(--border);
	padding: 15px 40px 15px 15px;
	text-transform: none;
	box-sizing: border-box;
	width: 100%;
	height: auto;
}
.btn-box::before {
	content: "";
	position: absolute;
	z-index: -1;
	width: 0;
	right: 0;
	bottom: 0;
	height: 100%;
	background: var(--color-main);
	transition-duration: 0.3s;
	transition-timing-function: ease-out;
}
.btn-box:hover::before,
.btn-box:focus::before,
.btn-box:active::before {
	left: 0;
	width: 100%;
}
.btn-box:hover {
	text-decoration: none;
	color: var(--color-bg);
	border-color: var(--color-main);
	transition: all 0.6s;
}

.btn-box::after {
	content: 'arrow_right_alt';
	position: absolute;
	width: 20px;
	height: 20px;
	right: 10px;
	top: 50%;
	transform: translateY(-50%);
	display: inline-block;
	font-family: var(--font-family-ic);
	color: var(--color-main);
	font-size: 1em;
	text-decoration: none;
	overflow: hidden;
	/* 以下、Safariで表示させるプロパティ */
	/*　line-height: 1;　*/
	display: inline-block;
	text-transform: none;
	letter-spacing: normal;
	word-wrap: normal;
	white-space: nowrap;
	direction: ltr;
}
.btn-box:hover::after {
	color: var(--color-bg);
	animation: arrow-move 0.5s ease-out;
}
@keyframes arrow-move {
	0% {
		opacity: 0;
		right: 30px;
	}
	100% {
		opacity: 100;
		right: 10px;
	}
}



/* 汎用クラス
–––––––––––––––––––––––––––––––––––––––––––––––––– */

/* テキスト –––––––––––––––––––––– */
.txt-left { text-align: left !important; }
.txt-right { text-align: right !important; }
.txt-center { text-align: center !important; }

.txt-nowrap { white-space: nowrap !important; }
.txt-bold { font-weight: bold; }
.txt-lowercase { text-transform: lowercase; }
.txt-nowrap { white-space: nowrap; }

.txt10 { font-size: 77%; }
.txt11 { font-size: 85%; }
.txt12 { font-size: 93%; }
.txt13 { font-size: 100%; }
.txt14 { font-size: 108%; }
.txt15 { font-size: 116%; }
.txt16 { font-size: 123.1%; }
.txt17 { font-size: 131%; }
.txt18 { font-size: 138.5%; }
.txt19 { font-size: 146.5%; }
.txt20 { font-size: 153.9%; }
.txt21 { font-size: 161.6%; }
.txt22 { font-size: 167%; }
.txt23 { font-size: 174%; }
.txt24 { font-size: 182%; }
.txt25 { font-size: 189%; }
.txt26 { font-size: 197%; }

/* マージン  –––––––––––––––––––––– */
.mb0 {margin-bottom: 0;}
.mb5 {margin-bottom: 5px;}
.mb10 {margin-bottom: 10px;}
.mb15 {margin-bottom: 15px;}
.mb20 {margin-bottom: 20px;}
.mb25 {margin-bottom: 25px;}
.mb30 {margin-bottom: 30px;}
.mb40 {margin-bottom: 40px;}
.mb05em {margin-bottom: 0.5em;}
.mb10em {margin-bottom: 1.0em;}
.mb15em {margin-bottom: 1.5em;}
.mb20em {margin-bottom: 2.0em;}

.mt0 {margin-top: 0;}
.mt5 {margin-top: 5px;}
.mt10 {margin-top: 10px;}
.mt15 {margin-top: 15px;}
.mt20 {margin-top: 20px;}
.mt25 {margin-top: 25px;}
.mt30 {margin-top: 30px;}
.mt40 {margin-top: 40px;}
.mt05em {margin-top: 0.5em;}
.mt10em {margin-top: 1.0em;}
.mt15em {margin-top: 1.5em;}
.mt20em {margin-top: 2.0em;}

.mr0 {margin-right: 0;}
.mr5 {margin-right: 5px;}
.mr10 {margin-right: 10px;}
.mr15 {margin-right: 15px;}
.mr20 {margin-right: 20px;}
.mr25 {margin-right: 25px;}
.mr30 {margin-right: 30px;}
.mr40 {margin-right: 40px;}
.mr05em {margin-right: 0.5em;}
.mr10em {margin-right: 1.0em;}
.mr15em {margin-right: 1.5em;}
.mr20em {margin-right: 2.0em;}

.ml0 {margin-left: 0;}
.ml5 {margin-left: 5px;}
.ml10 {margin-left: 10px;}
.ml15 {margin-left: 15px;}
.ml20 {margin-left: 20px;}
.ml25 {margin-left: 25px;}
.ml30 {margin-left: 30px;}
.ml40 {margin-left: 40px;}
.ml05em {margin-left: 0.5em;}
.ml10em {margin-left: 1.0em;}
.ml15em {margin-left: 1.5em;}
.ml20em {margin-left: 2.0em;}