@charset "UTF-8";
/* ========================================
   lifete-wp のヘッダー/フッターデザインを移植
   .header / .footer 配下にスコープしているため、
   SWELL本体のグローバルスタイル（body, a, h1-h6 等）には影響しない
   ======================================== */

.header,
.footer {
	font-family: "Noto Sans JP", sans-serif;
}
body .inner {
  width: 1080px;
  margin: 0 auto;
}
@media (max-width: 1200px) {
  body .inner {
    width: 100%;
    padding: 0 80px;
  }
}
@media (max-width: 960px) {
  body .inner {
    padding: 0 64px;
  }
}
@media (max-width: 768px) {
  body .inner {
    padding: 0 48px;
  }
}
@media (max-width: 480px) {
  body .inner {
    padding: 0 24px;
  }
}

.p-breadcrumb {
	padding-top: 96px;
}
.l-content {
	margin: 0 auto;
}
.p-postSlider {
    margin-top: 120px;
}
@media (max-width: 480px) {
    .p-postSlider {
        margin-top: 80px;
    }
}

/* ---------- Header ---------- */
.header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 1000;
}
.header .header-inner {
	display: flex;
	align-items: flex-start;
}
@media (max-width: 1200px) {
	.header .header-inner {
		margin: 8px;
		border-radius: 120px;
		background: #fff;
		box-shadow: 0 1px 6px rgba(0, 0, 0, 0.08);
	}
}
.header .header-logo {
	display: block;
	padding: 8px 20px 16px 12px;
	line-height: 0;
	background: #fff;
	box-shadow: 0 1px 6px rgba(0, 0, 0, 0.08);
	border-radius: 0 0 24px 0;
}
.header .header-logo img {
	display: block;
	height: 136px;
	width: auto;
}
.header .header-logo .sp {
	display: none;
}
@media (max-width: 1200px) {
	.header .header-logo {
		box-shadow: none;
		padding: 12px;
		border-radius: 0;
		background: none;
	}
	.header .header-logo .pc {
		display: none;
	}
	.header .header-logo .sp {
		display: block;
	}
	.header .header-logo img {
		height: 40px;
	}
}
.header .header-menu-btn {
	display: none;
	flex-shrink: 0;
	margin-left: auto;
	width: 64px;
	height: 64px;
	padding: 0;
	border: none;
	background: #7FBE25;
	cursor: pointer;
	position: relative;
	border-radius: 0 48px 48px 0;
}
.header .header-menu-btn span {
	display: block;
	position: absolute;
	left: 17px;
	width: 24px;
	height: 2px;
	background: #fff;
	transition: transform 0.3s ease, opacity 0.3s ease;
}
.header .header-menu-btn span:nth-child(1) { top: 22px; }
.header .header-menu-btn span:nth-child(2) { top: 30px; }
.header .header-menu-btn span:nth-child(3) { top: 38px; }
.header .header-menu-btn.is-active span:nth-child(1) {
	top: 30px;
	transform: rotate(45deg);
}
.header .header-menu-btn.is-active span:nth-child(2) {
	opacity: 0;
}
.header .header-menu-btn.is-active span:nth-child(3) {
	top: 30px;
	transform: rotate(-45deg);
}
.header .header-overlay {
	display: none;
	position: fixed;
	inset: 0;
	background-color: rgba(0, 0, 0, 0.4);
	z-index: 998;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.3s ease;
}
.header .header-overlay.is-active {
	opacity: 1;
	pointer-events: auto;
}
.header .global-nav {
	margin: 24px 16px 0 auto;
	background: #fff;
	padding: 16px 16px 16px 48px;
	border-radius: 120px;
	box-shadow: 0 1px 6px rgba(0, 0, 0, 0.08);
}
.header .global-nav .global-nav-list {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 20px;
	margin: 0;
	padding: 0;
}
.header .global-nav .global-nav-list li a {
	display: block;
	font-size: 16px;
}
.header .global-nav .global-nav-list li .global-nav-line-btn {
	display: inline-block;
	padding: 12px 24px 12px 48px;
	background: #00B900 url(../img/icon-line.png) no-repeat center left 12px;
	background-size: 32px;
	color: #fff;
	font-size: 16px;
	border-radius: 40px;
}
@media (max-width: 480px) {
	.header .global-nav .global-nav-list li .global-nav-line-btn {
		display: none;
	}
}
@media (max-width: 1200px) {
	.header .header-menu-btn {
		display: block;
		z-index: 1001;
	}
	.header .header-logo {
		position: relative;
		z-index: 1001;
	}
	.header .header-overlay {
		display: block;
	}
	.header .global-nav {
		position: fixed;
		inset: 0;
		width: 100%;
		height: 100vh;
		height: 100dvh;
		margin: 0;
		padding: 0;
		border-radius: 0;
		box-shadow: none;
		background: #fff;
		z-index: 999;
		overflow-y: auto;
		clip-path: circle(0% at calc(100% - 40px) 40px);
		transition: clip-path 0.5s cubic-bezier(0.4, 0, 0.2, 1);
		pointer-events: none;
	}
	.header .global-nav.is-open {
		clip-path: circle(150% at calc(100% - 40px) 40px);
		pointer-events: auto;
	}
	.header .global-nav .global-nav-list {
		flex-direction: column;
		align-items: center;
		justify-content: center;
		gap: 0;
		min-height: 100vh;
		min-height: 100dvh;
		padding: 72px 24px 48px;
		text-align: center;
	}
	.header .global-nav .global-nav-list li {
		width: 100%;
		max-width: 320px;
		border-bottom: 1px solid #eee;
	}
	.header .global-nav .global-nav-list li:last-child {
		border: 0;
	}
	.header .global-nav .global-nav-list li a {
		padding: 20px 0;
		font-size: 16px;
	}
	.header .global-nav .global-nav-list li .global-nav-line-btn {
		margin-top: 24px;
		text-align: center;
	}
}
@media (max-width: 480px) {
	.header .global-nav .global-nav-list {
		justify-content: flex-start;
		text-align: left;
	}
}

/* ---------- Footer ---------- */
.footer .inner {
	display: flex;
	justify-content: space-between;
	padding-top: 64px;
	padding-bottom: 64px;
}
@media (max-width: 480px) {
	.footer .inner {
		padding-top: 32px;
		padding-bottom: 32px;
	}
}
.footer .footer-info {
	width: 300px;
}
.footer .footer-info .footer-logo {
	display: inline-block;
	margin-bottom: 20px;
}
.footer .footer-info .footer-logo img {
	height: 56px;
	width: auto;
}
.footer .footer-info .footer-address {
	font-size: 14px;
	font-weight: 400;
}
.footer .footer-nav {
	display: flex;
	gap: 32px;
}
.footer .footer-nav .footer-nav-col {
	width: 200px;
}
.footer .footer-nav .footer-nav-trigger {
	display: block;
	width: 100%;
	margin: 0 0 12px;
	padding: 0 0 12px;
	border: none;
	border-bottom: #D9D9D9 1px solid;
	background: transparent;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 16px;
	font-weight: 500;
	color: #333;
	text-align: left;
	cursor: default;
	pointer-events: none;
}
.footer .footer-nav .footer-nav-trigger::after {
	display: none;
}
.footer .footer-nav .footer-nav-panel ul {
	margin: 0;
	padding: 0;
}
.footer .footer-nav .footer-nav-panel ul li {
	margin-bottom: 8px;
}
.footer .footer-nav .footer-nav-panel ul li a {
	font-size: 16px;
	padding-left: 24px;
	background: url(../img/icon-arrow.png) no-repeat top 8px left;
	background-size: 13px;
}
.footer .footer-copy {
	background: #333;
	padding: 16px 24px;
}
.footer .footer-copy small {
	display: block;
	font-size: 14px;
	font-weight: 400;
	color: #fff;
	text-align: center;
}
.footer .sns-box {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 32px;
	margin-top: 32px;
}
.footer .sns-box a {
	display: block;
	padding: 10px 12px 10px 52px;
	border: #D9D9D9 1px solid;
	border-radius: 64px;
	background: url(../img/icon-instagram.png) no-repeat center left 12px;
	background-size: 36px;
	line-height: 1.2;
	font-size: 13px;
}
@media (max-width: 1200px) {
	.footer .inner {
		flex-direction: column;
		gap: 32px;
	}
}
@media (max-width: 768px) {
	.footer .sns-box {
		grid-template-columns: repeat(1, 1fr);
		gap: 12px;
		margin-top: 20px;
	}
	.footer .sns-box a {
		padding: 12px 12px 12px 40px;
		background: url(../img/icon-instagram.png) no-repeat center left 12px;
		background-size: 24px;
	}
	.footer .sns-box a br {
		display: none;
	}
	.footer .footer-info {
		max-width: none;
		width: 100%;
	}
	.footer .footer-nav {
		flex-direction: column;
		gap: 0;
		width: 100%;
	}
	.footer .footer-nav .footer-nav-col {
		width: 100%;
	}
	.footer .footer-nav .footer-nav-trigger {
		display: flex;
		align-items: center;
		justify-content: space-between;
		padding: 0 0 16px;
		margin-bottom: 16px;
		cursor: pointer;
		pointer-events: auto;
	}
	.footer .footer-nav .footer-nav-trigger::after {
		display: block;
		content: "＋";
		color: #7FBE25;
		font-size: 24px;
		font-weight: 500;
		line-height: 1;
	}
	.footer .footer-nav .footer-nav-trigger.is-open::after {
		content: "－";
	}
	.footer .footer-nav .footer-nav-panel {
		display: none;
		padding-bottom: 16px;
	}
	.footer .footer-nav .footer-nav-panel.is-open {
		display: block;
	}
}
