/* ----------------------------------------
common.css
---------------------------------------- */

/* ----------------------------------------
yamakinocorori default
---------------------------------------- */

* {
	box-sizing: border-box;
	max-width: 100%;
}
html {}
body {
	font-family: sans-serif;
	line-height: 1.6;
	margin: 0;
	padding: 0;
	font-family: "Noto Sans JP", sans-serif;
	font-optical-sizing: auto;
	font-weight: normal;
	font-style: normal;
	font-size: 15px;
}
.container {
	margin: 0 auto;
	padding: 0 30px;
	max-width: 984px;
}
.container-fluid {
	padding: 0 30px;
}
.row {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
}
.row > * {
	flex: 1;
}
@media (min-width: 768px) {
	.row > * {
		flex: 0 0 50%;
	}
}
@media (max-width: 1199px) {
	.container {
		padding: 0 20px;
	}
	.container-fluid {
		padding: 0 20px;
	}
}
@media (max-width: 991px) {
}
@media (max-width: 767px) {
	.container {
		padding: 0 15px;
	}
	.container-fluid {
		padding: 0 15px;
	}
}

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
	margin: 0;
	padding: 0;
	font-weight: 700;
}
h1, .h1 {
	font-size: 28px;
}
h2, .h2 {
	font-size: 28px;
}
h3, .h3 {
	font-size: 21px;
}
h4, .h4 {
	font-size: 18px;
}
h5, .h5 {
	font-size: 15px;
}
h6, .h6 {
	font-size: 14px;
}
p {
	line-height: 1.75;
	margin: 0 0 1em;
}
:is(h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6, p):last-child {
	margin-bottom: 0;
}
img {
	margin: 0;
	height: auto;
}
@media (max-width: 767px) {
	h1, .h1 {
		font-size: 22px;
	}
	h2, .h2 {
		font-size: 22px;
	}
	h3, .h3 {
		font-size: 18px;
	}
	h4, .h4 {
		font-size: 16px;
	}
	h5, .h5 {
		font-size: 15px;
	}
	h6, .h6 {
		font-size: 14px;
	}
}
a {
	transition: opacity 0.3s;
}
a:hover {
	opacity: 0.6;
}

.jc-center {
	justify-content: center;
}
.ai-center {
	align-items: center;
}

/* ----------------------------------------
fujisan-tsunagu.com common
---------------------------------------- */

/* .g-header */
.g-header {
	position: sticky;
	top: 0;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	padding: 0 30px;
	min-height: 75px;
	background-color: #ffffff;
	z-index: 100;
}
.g-header a {
	color: #000000;
	text-decoration: none;
}
.g-header .logo-wrap {}
.g-header .site-name-text {
	display: flex;
	align-items: center;
	height: 100%;
	font-size: 28px;
	font-weight: 900;
	letter-spacing: 0.06em;
	margin: 0;
	padding: 0;
}
.g-header .site-name-text a {
	display: block;
	letter-spacing: 0.06em;
	margin: 0;
	padding: 10px;
}
.g-header .nav-wrap {
	margin-left: auto;
}
.g-header .nav-wrap nav.gnav {
	font-size: 15px;
	font-weight: 700;
	height: 100%;
	letter-spacing: -0.02em;
}
.g-header .nav-wrap nav.gnav ul {
	display: flex;
	list-style: none;
	padding: 0;
	margin: 0;
	height: 100%;
}
.g-header .nav-wrap nav.gnav ul li {
	display: block;
	padding: 0;
	margin: 0;
}
.g-header .nav-wrap nav.gnav ul li a {
	display: flex;
	align-items: center;
	justify-self: center;
	padding: 10px 25px;
	margin: 0;
	color: #161616;
	height: 100%;
}
@media (max-width: 1199px) {
	.g-header {
		padding: 0 20px;
	}
	.g-header .nav-wrap nav.gnav ul li a {
		padding: 10px 15px;
	}
}
@media (max-width: 991px) {
	.g-header {
		min-height: 60px;
	}
	.g-header .site-name-text {
		font-size: 24px;
	}
	.g-header .nav-wrap {
		position: fixed;
		top: 50px;
		right: 0;
		bottom: 0;
		left: 0;
		background-color: rgba(255, 255, 255, 0.8);
		opacity: 0;
		visibility: hidden;
		transition: opacity 0.3s,visibility 0.33s;
	}
	.g-header .nav-wrap nav.gnav {
		font-size: 20px;
	}
	.g-header .nav-wrap nav.gnav ul {
		flex-direction: column;
		justify-content: center;
	}
	.g-header .nav-wrap nav.gnav ul li a {
		width: 100%;
		justify-content: center;
	}
}
@media (max-width: 767px) {
	.g-header {
		padding: 0 5px;
		min-height: 50px;
	}
	.g-header .site-name-text {
		font-size: 20px;
	}
	.g-header .site-name-text a {
		padding: 5px 10px;
	}
}
/* #hamburger */
#hamburger {
	display: none;
	position: relative;
	height: 60px;
	width: 60px;
	padding: 0;
	border: none;
	background: no-repeat;
	border-radius: 0;
	cursor: pointer;
	transition: transform 0.6s;
}
#hamburger span {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 30px;
	height: 2px;
	border-radius: 1px;
	background-color: #000000;
	transition: transform 0.6s, width 0.6s, opacity 0.6s;
}
#hamburger span:nth-child(1) {
	transform: translate(-50%, calc(-50% - 10px));
}
#hamburger span:nth-child(2) {
	transform: translate(-50%, calc(-50% - 0px));
}
#hamburger span:nth-child(3) {
	transform: translate(-50%, calc(-50% + 10px));
}

@media (max-width: 991px) {
	#hamburger {
		display: block;
	}
}
@media (max-width: 767px) {
	#hamburger {
		height: 50px;
		width: 50px;
	}
	#hamburger span {
		width: 30px;
	}
}

/* .gnavopen  */
body.gnavopen {
	position: fixed;
	width: 100%;
	height: 100%;
}
body.gnavopen .nav-wrap {
	visibility: visible;
	opacity: 1;
}
body.gnavopen #hamburger {
	animation: hamburger 1.5s;
}
body.gnavopen #hamburger span {
	transition: 0s;
}
body.gnavopen #hamburger span:nth-child(1) {
	transform: translate(-52%, calc(-50% - 0px)) rotate(-45deg);
	width: 30px;
	animation: hamburger1 1.5s;
}
body.gnavopen #hamburger span:nth-child(2) {
	transform: translate(-50%, calc(-50% - 0px)) rotate(45deg);
	width: 30px;
	animation: hamburger2 1.5s;
}
body.gnavopen #hamburger span:nth-child(3) {
	transform: translate(-50%, calc(-50% - 0px));
	width: 30px;
	opacity: 0;
	animation: hamburger3 1.5s;
}
@keyframes hamburger {
	0% {
		transform: rotate(0deg);
	}
	40% {
		transform: rotate(360deg);
	}
	60% {
		transform: rotate(360deg);
	}
	100% {
		transform: rotate(360deg);
	}
}
@keyframes hamburger1 {
	0% {
		transform: translate(-50%, calc(-50% - 10px));
	}
	40% {
		transform: translate(-90%, calc(-50% - 2px)) rotate(-60deg);
	}
	60% {
		transform: translate(-92%, calc(-50% - 2px)) rotate(-60deg);
		width: 25px;
	}
	100% {
		transform: translate(-52%, calc(-50% - 0px)) rotate(-45deg);
		width: 30px;
	}
}
@keyframes hamburger2 {
	0% {
		transform: translate(-50%, calc(-50% - 0px));
	}
	40% {
		transform: translate(-8%, calc(-50% - 2px)) rotate(60deg);
	}
	60% {
		transform: translate(-8%, calc(-50% - 2px)) rotate(60deg);
		width: 25px;
	}
	100% {
		transform: translate(-50%, calc(-50% - 0px)) rotate(45deg);
		width: 30px;
	}
}
@keyframes hamburger3 {
	0% {
		transform: translate(-50%, calc(-50% + 10px));
	}
	40% {
		transform: translate(-50%, calc(-50% - 10px));
		width: 12px;
		opacity: 1;
	}
	60% {
		transform: translate(-50%, calc(-50% - 10px));
		width: 12px;
		opacity: 1;
	}
	100% {
		transform: translate(-50%, calc(-50% - 0px));
		width: 30px;
		opacity: 0;
	}
}

/* .g-footer */
.g-footer {
	position: relative;
	background-image: url(../img/footer-img02.jpg);
	background-position: center;
	background-size: cover;
}
.g-footer::before {
	content: "";
	position: absolute;
	inset: 0;
	background-color: rgba(0, 30, 30, 0.67);
	mix-blend-mode: multiply;
}
.g-footer .inner {
	position: relative;
}
.g-footer .container {
	max-width: 1130px;
}
.g-footer a {
	color: #ffffff;
	text-decoration: none;
}
.g-footer .footer-nav {
	padding: 65px 0 185px;
}
.g-footer .logo-wrap {}
.g-footer .logo-wrap .site-name-text {
	display: flex;
	align-items: center;
	height: 100%;
	font-size: 28px;
	font-weight: 900;
	letter-spacing: 0.06em;
	padding: 0;
	margin: 0 0 1em;
}
.g-footer .logo-wrap .site-name-text a {
	display: block;
	letter-spacing: 0.06em;
	margin: 0;
	padding: 0;
}
.g-footer .nav-wrap {}
.g-footer .nav-wrap nav.fnav {
	font-size: 15px;
	font-weight: 700;
	height: 100%;
	letter-spacing: -0.02em;
}
.g-footer .nav-wrap nav.fnav ul {
	display: flex;
	flex-direction: column;
	gap: 18px;
	list-style: none;
	padding: 0;
	margin: 0;
	height: 100%;
}
.g-footer .nav-wrap nav.fnav ul li {
	display: block;
	width: 100%;
	padding: 0;
	margin: 0;
}
.g-footer .nav-wrap nav.fnav ul li a {
	display: block;
	width: fit-content;
	padding: 0;
	margin: 0;
	color: #ffffff;
	height: 100%;
}
.g-footer .copyright {
	padding: 10px 0;
	font-size: 13px;
	letter-spacing: 0.04em;
}
.g-footer .copyright-text {
	text-align: center;
	color: #b7b7b7;
}
@media (max-width: 767px) {
	.g-footer .logo-wrap .site-name-text {
		font-size: 20px;
	}
}


.round-border-title {
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	font-size: 28px;
	width: fit-content;
	border: solid 1px #007fb7;
	border-radius: 100px;
	padding: 10px 37px;
	margin: 0 auto 65px;
	min-height: 58px;
	line-height: 1.2;
}
@media (max-width: 767px) {
	.round-border-title {
		font-size: 22px;
		padding: 8px 25px;
		min-height: 0;
		min-width: 0;
	}
}

.big-img {}
.big-img img {
	display: block;
	width: 100%;
}

.btn-wrap {
	display: flex;
	gap: 20px;
	margin-top: 25px;
}
.btn {
	display: flex;
	justify-content: center;
	align-items: center;
	letter-spacing: 0.04em;
	text-decoration: none;
	font-weight: 500;
	text-align: center;
	width: 100%;
	max-width: 178px;
	padding: 5px 30px;
	color: #ffffff;
	background-color: #007fb7;
	background-image: url(../img/btn-arrow.svg);
	background-size: 15px;
	background-repeat: no-repeat;
	background-position: 10px 50%;
	border: solid 1px #007fb7;
	border-radius: 100px;
}
.btn-gray {
	color: #000000;
	background-color: #b7b7b7;
	background-image: url(../img/btn-gray-arrow.svg);
	border: solid 1px #b7b7b7;

}

/* ----------------------------------------
.article-list-workshop
---------------------------------------- */

.article-list-workshop {
	margin-bottom: 70px;
}
.article-list-workshop > ul {
	list-style: none;
	padding: 0;
	margin: 0;
}
.article-list-workshop > ul > li {
	border-top: solid 1px #007fb7;
	padding: 40px 0;
}
/* article.article-workshop */
article.article-workshop {}
article.article-workshop .article-row {
	display: flex;
	align-items: center;
	gap: 8%;
}
article.article-workshop .left-col {
	flex: 0 220px;
}
article.article-workshop .left-col a {}
article.article-workshop .left-col img {
	width: 100%;
}
article.article-workshop .rgiht-col {
	flex: 0 513px;
}
article.article-workshop h3 {
	letter-spacing: 0.04em;
	line-height: 1.7;
	margin-bottom: 1.25em;
}
article.article-workshop p {
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 4;
	overflow: hidden;
}
@media (max-width: 767px) {
}

/* ----------------------------------------
.article-list-memories
---------------------------------------- */
.article-list-memories {
	margin-bottom: 70px;
}
.article-list-memories > ul {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 65px 4.5%;
	list-style: none;
	padding: 0;
	margin: 0;
}
.article-list-memories > ul > li {
	padding: 0;
}
@media (max-width: 991px) {
	.article-list-memories > ul {
	}
}
@media (max-width: 767px) {
	.article-list-memories > ul {
		grid-template-columns: 1fr;
	}
}

/* article.article-memories */
article.article-memories {
	max-width: 575px;
	margin: 0 auto;
}
article.article-memories .article-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
}
article.article-memories .left-col {
	flex: 0 46.5%;
}
article.article-memories .left-col a {}
article.article-memories .left-col img {
	width: 100%;
	aspect-ratio: 1;
	border-radius: 1000px;
	object-fit: cover;
}
article.article-memories .rgiht-col {
	flex: 0 48.0%;
}
article.article-memories .date {
	font-size: 13px;
	letter-spacing: 0.04em;
}
article.article-memories .h5 {}
article.article-memories .tag-list {
	font-size: 13px;
	margin-top: 15px;
	padding: 10px 0;
	border-top: dashed 1px #000000;
	border-bottom: dashed 1px #000000;
}
article.article-memories .tag-list ul {
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin: 0;
	padding: 0;
}
article.article-memories .tag-list li {
	margin: 0;
	padding: 0;
}
article.article-memories .tag-list a {
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	line-height: 1;
	text-decoration: none;
	color: #ffffff;
	min-width: 58px;
	padding: 5px 10px;
	border-radius: 100px;
	background-color: #a0a0a0;
}
article.article-memories .btn-wrap {
	margin-top: 15px;
}
@media (max-width: 991px) {
}
@media (max-width: 767px) {
}

/* ----------------------------------------
.article-list-staff
---------------------------------------- */
.article-list-staff {
	margin-bottom: 70px;
}
.article-list-staff > ul {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 65px 8.5%;
	list-style: none;
	padding: 0;
	margin: 0;
}
.article-list-staff > ul > li {
	padding: 0;
}
@media (max-width: 991px) {
	.article-list-staff > ul {
		gap: 45px 5%;
	}
}
@media (max-width: 767px) {
	.article-list-staff > ul {
		grid-template-columns: 1fr;
	}
}
/* article.article-staff */
article.article-staff {
	max-width: 575px;
	margin: 0 auto;
}
article.article-staff .article-row {
	display: flex;
	justify-content: space-between;
}
article.article-staff .left-col {
	flex: 0 40%;
}
article.article-staff .left-col img {
	width: 100%;
	aspect-ratio: 1;
	border-radius: 1000px;
	object-fit: cover;
}
article.article-staff .rgiht-col {
	flex: 0 52%;
}
article.article-staff .rgiht-col .h4 {
	margin-bottom: 1em;
}
article.article-staff .rgiht-col p {
}



/* ----------------------------------------
.archive-page
---------------------------------------- */
.archive-page {
	padding: 80px 0;
}
.archive-page .page-title-wrap {
	margin: 0 auto 65px;
}
.archive-page .page-title {
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	width: fit-content;
	border: solid 1px #007fb7;
	border-radius: 100px;
	margin: 0 auto;
	line-height: 1.2;
	font-size: 24px;
	padding: 5px 27px;
	min-height: 46px;
}
.archive-page .sub-page-title {
	text-align: center;
	font-size: 18px;
	margin: 5px auto 0;
}
.archive-page .memories-section .container {
	max-width: 1154px;
}
@media (max-width: 767px) {
	.archive-page .round-border-title {
		font-size: 20px;
	}
}

/* .archive-pagination */
.archive-pagination {
	margin-bottom: 70px;
}
.archive-pagination ul.page-numbers {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 10px;
	list-style: none;
	font-weight: 500;
	text-align: center;
	padding: 0;
	margin: 0;
}
.archive-pagination ul.page-numbers li {
	padding: 0;
	margin: 0;
}
.archive-pagination ul.page-numbers .page-numbers {
	display: flex;
	justify-content: center;
	align-items: center;
	text-decoration: none;
	font-weight: 500;
	text-align: center;
	width: 30px;
	height: 30px;
	color: #000000;
	background-color: #b7b7b7;
}
.archive-pagination ul.page-numbers .current {
	color: #ffffff;
	background-color: #007fb7;
	border: solid 1px #007fb7;
}
.archive-pagination ul.page-numbers :is(.prev, .next) {
	position: relative;
}
.archive-pagination ul.page-numbers :is(.prev, .next) i {}
.archive-pagination ul.page-numbers :is(.prev, .next) i::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	display: block;
	width: 5px;
	height: 5px;
	border: solid 0 #000000;
	border-width: 1px 1px 0 0;
}
.archive-pagination ul.page-numbers .prev {}
.archive-pagination ul.page-numbers .prev i::before {
	transform: translate(-30%, -50%) rotate(-135deg);
}
.archive-pagination ul.page-numbers .next {}
.archive-pagination ul.page-numbers .next i::before {
	transform: translate(-70%, -50%) rotate(45deg);
}




/* ----------------------------------------
.single-page
---------------------------------------- */
.single-page {
	padding: 80px 0;
}
.single-page .container {
	max-width: 1140px;
}
.single-page .page-title-wrap {
	margin: 0 auto 65px;
}
.single-page .page-title {
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	width: fit-content;
	border: solid 1px #007fb7;
	border-radius: 100px;
	margin: 0 auto;
	line-height: 1.2;
	font-size: 24px;
	padding: 5px 27px;
	min-height: 46px;
}
.single-page .post-title {
	text-align: center;
	letter-spacing: 0.04em;
	margin: 45px auto 0;
}
.single-page .tag-list {
	font-size: 13px;
	margin-top: 40px;
	padding: 0;
}
.single-page .tag-list ul {
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 10px;
	margin: 0;
	padding: 0;
}
.single-page .tag-list li {
	margin: 0;
	padding: 0;
}
.single-page .tag-list a {
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	line-height: 1;
	text-decoration: none;
	color: #ffffff;
	min-width: 58px;
	padding: 5px 10px;
	border-radius: 100px;
	background-color: #a0a0a0;
}
.single-page .entry-content {}
.single-page .entry-content :is(h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6) {
	margin: 2em 0 1em;
}
.single-page .entry-content > *:first-child {
	margin-top: 0;
}
.single-page .entry-content > *:last-child {
	margin-bottom: 0;
}
.single-page .btn-wrap {
	margin-top: 100px;
}
@media (max-width: 767px) {
	.single-page .round-border-title {
		font-size: 20px;
	}
}


/* workshop-single */
.workshop-single .overview {
	color: #ffffff;
	margin: 75px 0;
	padding: 45px 0 80px;
	background-color: #2d2d2d;
}
.workshop-single .overview .container {
	max-width: 660px;
}
.workshop-single .overview h3 {
	text-align: center;
	font-size: 24px;
	letter-spacing: 0.3em;
	margin-bottom: 1.5em;
}
.workshop-single .overview p {
	letter-spacing: 0.04em;
	margin-bottom: 0;
	line-height: 1.75;
}