@charset "utf-8";
/* =================================================
Foundation
================================================= */
:root {
	--font-primary: "Zen Kaku Gothic New", '游ゴシック', 'Yu Gothic', 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro','メイリオ', 'Meiryo', 'ＭＳ Ｐゴシック', 'Avenir','Helvetica Neue','Helvetica','Arial', sans-serif;
	--font-secondary: "Montserrat", sans-serif;
	--font-tertiary: "HelveticaNeue" , Helvetica , Arial , Verdana , Roboto , "游ゴシック" , "Yu Gothic" , "游ゴシック体" , "YuGothic" , "ヒラギノ角ゴ Pro W3" , "Hiragino Kaku Gothic Pro" , "Meiryo UI" , "メイリオ" , Meiryo , "ＭＳ Ｐゴシック" , "MS PGothic" , sans-serif;
	--font-quaternary: '游明朝','Yu Mincho', '游明朝体', 'YuMincho', 'ヒラギノ明朝 Pro W3', 'Hiragino Mincho Pro', 'ＭＳ Ｐ明朝', 'MS PMincho', serif;

	--font-weight-md: 500;
	--font-weight-bd: 700;
	--font-weight-bk: 900;

	--c-body: #2a2d2d;
	--c-primary: #327e39;
	--c-secondary: #d2bd5e;
	--c-bk: #6e6e5a;
	--c-rd: #e60012;
	--c-yl: #f9f5e1;
	--c-yl-2: #e5cf5a;
	--bg-color: #f7ecb0;
	--border-color-1: #f7eec1;
	--border-color-2: #d1cfc3;

	--sec-block-lg: 200px;
	--sec-block-md: 150px;

	--sec-inline-lg: 200px;
	--sec-inline-md: 105px;
	--sec-inline-sm: 95px;
	--sec-inline-ss: 50px;
}
@media screen and (max-width: 1440px) {
	:root {
		--sec-block-lg: 120px;
		--sec-block-md: 80px;

		--sec-inline-lg: 120px;
		--sec-inline-md: 65px;
		--sec-inline-sm: 55px;
		--sec-inline-ss: 30px;
	}
}
@media screen and (max-width: 1280px) {
	:root {
		--sec-block-lg: 100px;

		--sec-inline-md: 50px;
		--sec-inline-sm: 40px;
		--sec-inline-lg: 100px;
	}
}
@media screen and (max-width: 960px) {
	:root {
		--sec-block-lg: 100px;

		--sec-inline-md: 50px;
		--sec-inline-sm: 0;
		--sec-inline-lg: 50px;
	}
}
@media screen and (max-width: 767px) {
	:root {
		--sec-block-lg: 60px;

		--sec-inline-md: 20px;
	}
}

/* Base
------------------------------------------------- */
* {
	font-weight: 400;
	font-style: normal;
	font-family: var(--font-primary);
	margin: 0;
	padding: 0;
	line-height: 1.75;
	letter-spacing: .1em;
	color: var(--c-body);
	box-sizing: border-box;
	-webkit-text-size-adjust: 100%;
	-webkit-font-smoothing: antialiased;
}
html {
	font-size: 62.5%;
}
body {
	font-size: 16px;
	font-size: 1.6rem;
	word-wrap: break-word;
	overflow-wrap: break-word;
	font-display: swap;
	overflow-x: hidden;
}
@media screen and (max-width: 767px) {
	body {
		font-size: 1.4rem;
	}
}
@media screen and (max-width: 374px) {
	html {
		font-size: 2.667vw;
	}
}
html.is-overflow,
body.is-overflow {
	width: 100%;
	position: fixed !important;
	overflow: hidden;
}
img {
	border: 0;
	vertical-align: bottom;
	backface-visibility: hidden;
	-webkit-backface-visibility: hidden;
}


/* =================================================
Animation
================================================= */
@keyframes fadeIn {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}
@keyframes translate {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
		transform : translate(0, 0);
	}
}
@keyframes blur {
	0% {
		opacity: 0;
		-ms-filter: blur(6px);
		filter: blur(6px);
	}
	100% {
		opacity: 1;
		-ms-filter: blur(0);
		filter: blur(0);
	}
}
.-fadein {
	opacity: 0;
}
.-translate {
	opacity: 0;
	transform : translate(0, 5px);
}
.-blur {
	opacity: 0;
}
.fv-fadein {
	opacity: 0;
	animation: fadeIn 0.5s ease-in-out 0.5s forwards;
}
.fv-translate {
	opacity: 0;
	animation: translate 0.3s ease-in-out 0.5s forwards;
}
.fv-blur {
	opacity: 0;
	animation: blur 0.5s ease-in-out 0.5s forwards;
}
.js-effect__fade {
	animation: fadeIn 0.5s ease-in-out 0.5s forwards;
}
.js-effect__blur {
	animation: blur 0.2s ease-in-out 0.5s forwards;
}
.js-effect__translate {
	animation: translate 0.5s ease-in-out 0.5s forwards;
}

/* =================================================
Layout
================================================= */
.l-body-bg {
	inset: 0;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 999;
	background: #fff;
	animation: PageAnime-fade .5s ease-in-out .5s forwards;
	pointer-events: none;
}
@keyframes PageAnime-fade {
	0% {
		opacity: 1;
	}
	100% {
		opacity: 0;
		display: none;
	}
}

#l-container {
	overflow: hidden;
	position: relative;
}
#l-container:before,
#l-container:after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
}
#l-container:before {
	width: 707px;
	aspect-ratio: 707 / 275;
	background: url(../images/body_layout01.svg) no-repeat 0 0 / 100%;
}
#l-container:after {
	width: 887px;
	aspect-ratio: 887 / 165;
	background: url(../images/body_layout02.svg) no-repeat 0 0 / 100%;
	opacity: .8;
}

@media screen and (max-width: 1280px) {
	#l-container:before {
		width: 565px;
	}
	#l-container:after {
		width: 710px;
	}
}
@media screen and (max-width: 1200px) {
	#l-container:before {
		width: 452px;
	}
	#l-container:after {
		width: 568px;
	}
}
@media screen and (max-width: 960px) {
	#l-container:before {
		width: 362px;
	}
	#l-container:after {
		width: 454px;
	}
}
@media screen and (max-width: 767px) {
	#l-container:before {
		width: 290px;
	}
	#l-container:after {
		width: 363px;
	}
}

/* Header
------------------------------------------------- */
.l-header {
	width: 100%;
	padding: 50px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 3;
	transition: padding-inline .3s ease-in-out, padding-block .3s ease-in-out;
}
.l-header:after {
	width: 100%;
	height: 100%;
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	background: #fff;
	box-shadow: 0px 10px 20px -5px rgba(0, 0, 0, .1);
	opacity: 0;
	transition: opacity .3s ease-in-out;
}
.l-header__logo {
	width: 415px;
	transition: width .3s ease-in-out;
}
.l-header__logo img {
	width: 100%;
}

@media screen and (max-width: 1280px) {
	.l-header {
		padding: 40px;
	}
	.l-header__logo {
		width: 332px;
	}
}
@media screen and (max-width: 1200px) {
	.l-header__logo {
		width: 266px;
	}
}
@media screen and (max-width: 960px) {
	.l-header {
		padding: 25px;
	}
	.l-header__logo {
		width: 213px;
	}
}
@media screen and (max-width: 767px) {
	.l-header {
		padding: 20px;
	}
	.l-header__logo {
		width: 170px;
	}
}

/* script */
.l-header.is-active {
	padding: 25px;
}
.l-header.is-active:after {
	opacity: 1;
}
.l-header.is-active .l-header__logo {
	width: 332px;
}
@media screen and (max-width: 1200px) {
	.l-header.is-active .l-header__logo {
		width: 266px;
	}
}
@media screen and (max-width: 960px) {
	.l-header.is-active .l-header__logo {
		width: 213px;
	}
}
@media screen and (max-width: 767px) {
	.l-header.is-active {
		padding: 20px;
	}
	.l-header.is-active .l-header__logo {
		width: 170px;
	}
}

/* ---------- Global Nav ----------*/
.l-header__ul {
	margin-right: 20px;
	display: flex;
	align-items: center;
	gap: 50px;
}
.l-header__li a {
	font-size: 1.8rem;
	font-weight: var(--font-weight-bd);
	letter-spacing: 0;
	line-height: 1;
	transition: color .3s ease-in-out;
}

@media (hover: hover) and (pointer: fine) {
	.l-header__li a:hover {
		color: var(--c-primary);
	}
}

@media screen and (max-width: 1200px) {
	.l-header__ul {
		margin-right: 0;
	}
}
@media screen and (max-width: 960px) {
	.l-header__ul {
		display: none;
	}
}

/* ---------- Sp Nav ----------*/
.l-sp-menu {
	width: 100%;
	height: 100vh;
	height: 100svh;
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 2;
	background: #fff;
}
.l-sp-menu:before,
.l-sp-menu:after {
	width: 100%;
	content: '';
	position: absolute;
	left: 0;
	z-index: -1;
}
.l-sp-menu:before {
	height: calc(100% - 370px);
	bottom: 0;
	background: #d9c35e;
	transform: skewY(-8.55deg);
}
.l-sp-menu:after {
	height: calc(100% - 440px);
	bottom: 0;
	background: #e8d259;
	opacity: .8;
	transform: skewY(11.55deg);
}
.l-sp-menu__inner {
	width: 100%;
	height: 100%;
	position: relative;
	overflow-y: auto;
}
.l-sp-menu__inner:before {
	width: 100%;
	height: 30%;
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	z-index: -1;
	background: var(--c-yl-2);
}
.l-sp-menu__body {
	padding-block: 74px 50px;
	padding-inline: var(--sec-inline-md);
}
.l-sp-menu__nav {
	width: 100%;
	margin-bottom: 50px;
}
.l-sp-menu-nav__li a {
	padding-block: 25px;
	padding-inline: 20px;
	display: block;
	position: relative;
	font-size: 1.8rem;
	letter-spacing: 0;
	line-height: 1;
	font-weight: var(--font-weight-bd);
	border-bottom: 1px solid var(--border-color-2);
	transition: color .3s ease-in-out;
}
.l-sp-menu-nav__li a:before,
.l-sp-menu-nav__li a:after {
	content: '';
	position: absolute;
}
.l-sp-menu-nav__li a:before {
	width: 100%;
	height: 1px;
	bottom: -1px;
	left: 0;
	background: var(--c-primary);
	transform: scale(0, 1);
	transform-origin: right top;
	transition: transform .6s;
}
.l-sp-menu-nav__li a:after {
	width: 14px;
	aspect-ratio: 7 / 6;
	top: 50%;
	right: 20px;
	background: url(../images/arr_btn.svg) no-repeat 0 0 / 100%;
	transform: translateY(-50%);
	transition: right .3s ease-in-out;
}

@media (hover: hover) and (pointer: fine) {
	.l-sp-menu-nav__li a:hover {
		color: var(--c-primary);
	}
	.l-sp-menu-nav__li a:hover:before {
		transform: scale(1, 1);
		transform-origin: left top;
	}
	.l-sp-menu-nav__li a:hover:after {
		right: 10px;
	}
}

@media screen and (max-width: 767px) {
	.l-sp-menu:before {
		height: calc(100% - 330px);
	}
	.l-sp-menu:after {
		height: calc(100% - 350px);
	}
	.l-sp-menu-nav__li a {
		padding-block: 20px;
		padding-inline: 0;
		font-size: 1.6rem;
	}
	.l-sp-menu-nav__li a:after {
		right: 0;
	}
	.l-sp-menu-nav__li a:hover:after {
		right: 0;
	}
}


.l-sp-menu__btn {
	margin-inline: auto;
}

/* Sns */
.l-sp-menu__sns {
	margin-bottom: 40px;
}
.l-sp-menu-sns__ttl {
	margin-bottom: 15px;
	font-weight: var(--font-weight-bd);
	letter-spacing: 0;
	line-height: 1;
	text-align: center;
}
.l-sp-menu-sns__ul {
	display: flex;
	justify-content: center;
	gap: 10px;
}
.l-sp-menu-sns__li {
	width: 56px;
}
.l-sp-menu-sns__li a {
	display: block;
	font-size: 0;
	transition: opacity .3s ease-in-out;
}

@media (hover: hover) and (pointer: fine) {
	.l-sp-menu-sns__li a:hover {
		opacity: .7;
	}
}

@media screen and (max-width: 767px) {
	.l-sp-menu__sns {
		margin-bottom: 20px;
	}
	.l-sp-menu-sns__ttl {
		font-size: 1.4rem;
	}
	.l-sp-menu-sns__li {
		width: 45px;
	}
}


/* Footer
------------------------------------------------- */
.l-footer {
	padding-top: 135px;
	position: relative;
}
.l-footer:before,
.l-footer:after {
	width: 100%;
	height: 55%;
	content: '';
	position: absolute;
	left: 0;
	z-index: -1;
}
.l-footer:before {
	top: 0;
	background: #d9c35e;
	transform: skewY(-3.8deg);
}
.l-footer:after {
	top: 60px;
	background: #e8d259;
	opacity: .8;
	transform: skewY(7.7deg);
}
.l-footer__outer {
	padding-bottom: 20px;
	position: relative;
	z-index: 0;
}
.l-footer__outer:before {
	width: 100%;
	height: calc(100% - 60px);
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	z-index: -1;
	background: var(--c-yl-2);
}
.l-footer__inner {
	margin-inline: var(--sec-inline-lg);
}
.l-footer__upper {
	margin-bottom: 95px;
	display: flex;
	justify-content: space-between;
	gap: 0 50px;
}
.l-footer__logo {
	width: 415px;
	margin-bottom: 45px;
}
.l-footer__logo img {
	width: 100%;
}
.l-footer__addr {
	margin-bottom: 5px;
	font-size: 1.8rem;
	font-weight: var(--font-weight-md);
	letter-spacing: .02em;
	line-height: 1.5;
}
.l-footer__num,
.l-footer__num a,
.l-footer__num span {
	font-weight: var(--font-weight-bd);
	letter-spacing: .05em;
	line-height: 1;
}
.l-footer__num {
	font-size: 2rem;
}
.l-footer__num:nth-of-type(3) {
	margin-bottom: 10px;
}
.l-footer__num a {
	font-size: 4rem;
}
.l-footer__num span {
	font-size: 2.6rem;
}
.l-footer__btn {
	width: 310px;
	margin-inline: 0;
	background: #fff;
}
.l-footer__copy {
	color: #958429;
	font-size: 1.4rem;
	font-weight: var(--font-weight-md);
	letter-spacing: .02em;
	line-height: 1;
	text-align: right;
}

@media screen and (max-width: 1280px) {
	.l-footer {
		padding-top: 110px;
	}
	.l-footer__logo {
		width: 332px;
	}
}
@media screen and (max-width: 960px) {
	.l-footer {
		padding-top: 90px;
	}
	.l-footer:before {
		transform: skewY(-5.7deg);
	}
	.l-footer:after {
		transform: skewY(11.55deg);
	}
	.l-footer__upper {
		margin-bottom: 75px;
	}
	.l-footer__logo {
		width: 266px;
		margin-bottom: 35px;
	}
	.l-footer__addr {
		font-size: 1.6rem;
	}
	.l-footer__num {
		font-size: 1.8rem;
	}
}
@media screen and (max-width: 767px) {
	.l-footer {
		padding-top: 70px;
	}
	.l-footer__upper {
		margin-bottom: 50px;
		flex-direction: column;
		align-items: center;
	}
	.l-footer__logoarea {
		order: 2;
	}
	.l-footer__cont {
		margin-bottom: 50px;
		order: 1;
	}
	.l-footer__logo {
		width: 213px;
		margin: 0 auto 20px;
	}
	.l-footer__addr {
		font-size: 1.4rem;
		text-align: center;
	}
	.l-footer__num {
		font-size: 1.6rem;
		text-align: center;
	}
	.l-footer__num:nth-of-type(3) {
		margin-bottom: 10px;
	}
	.l-footer__num a {
		font-size: 2.5rem;
	}
	.l-footer__num span {
		font-size: 2rem;
	}
	.l-footer__copy {
		font-size: 1.2rem;
		text-align: center;
	}
}
@media screen and (max-width: 600px) {
	.l-footer:after {
		top: 20px;
	}
}

/* Sns */
.l-fooger__sns {
	width: 232px;
	margin-bottom: 40px;
	margin-left: auto;
}
.l-fooger-sns__ttl {
	margin-bottom: 15px;
	font-size: 1.8rem;
	font-weight: var(--font-weight-bd);
	letter-spacing: 0;
	line-height: 1;
	text-align: center;
}
.l-footer-sns__ul {
	display: flex;
	justify-content: center;
	gap: 10px;
}
.l-footer-sns__li {
	width: 70px;
	aspect-ratio: 1;
}
.l-footer-sns__li a {
	display: block;
	font-size: 0;
	transition: opacity .3s ease-in-out;
}
.l-footer-sns__li img {
	width: 100%;
}

@media (hover: hover) and (pointer: fine) {
	.l-footer-sns__li a:hover {
		opacity: .7;
	}
}

@media screen and (max-width: 960px) {
	.l-fooger-sns__ttl {
		font-size: 1.6rem;
	}
	.l-footer-sns__li {
		width: 56px;
	}
}
@media screen and (max-width: 767px) {
	.l-fooger__sns {
		margin-bottom: 20px;
		margin-inline: auto;
	}
	.l-fooger-sns__ttl {
		font-size: 1.4rem;
	}
	.l-footer-sns__li {
		width: 45px;
	}
}



/* =================================================
Object
================================================= */
/*---------- Compornent ----------*/
/*----- Contents -----*/
.c-sec {
	--size: 1320px; /* サイズに合わせて変更 */
	--size-unit: calc(100% - var(--sec-inline-md) * 2);
	width: min(var(--size-unit), var(--size));
	margin-inline: auto;
}
.c-sec-md {
	width: 100%;
	max-width: 1280px;
	margin-inline: auto;
}
.c-sec-sm {
	width: 100%;
	max-width: 960px;
	margin-inline: auto;
}
.c-cont {
	margin-inline: var(--sec-inline-md);
}

/*----- Title -----*/
/* Page Title */
.c-page-ttl {
	margin-bottom: 70px;
	padding-bottom: 50px;
	text-align: center;
	border-bottom: 1px solid var(--border-color-2);
}
.c-page-ttl--en,
.c-page-ttl--ja {
	display: block;
	letter-spacing: 0;
	line-height: 1;
}
.c-page-ttl--en {
	margin-bottom: 10px;
	color: var(--c-yl-2);
	font-family: var(--font-secondary);
	font-size: 1.6rem;
	font-weight: var(--font-weight-md);
}
.c-page-ttl--ja {
	font-size: 3rem;
	font-weight: var(--font-weight-bd);
}

@media screen and (max-width: 1280px) {
	.c-page-ttl {
		margin-bottom: 60px;
		padding-bottom: 40px;
	}
	.c-page-ttl--ja {
		font-size: 2.4rem;
	}
}
@media screen and (max-width: 960px) {
	.c-page-ttl {
		margin-bottom: 50px;
		padding-bottom: 30px;
	}
	.c-page-ttl--ja {
		font-size: 2rem;
	}
}
@media screen and (max-width: 767px) {
	.c-page-ttl {
		margin-bottom: 30px;
		padding-bottom: 20px;
	}
	.c-page-ttl--ja {
		font-size: 1.8rem;
	}
}

/* Section Title */
.c-sec-ttl {
	margin-bottom: 40px;
}
.c-sec-ttl--en,
.c-sec-ttl--ja {
	display: block;
	letter-spacing: 0;
	line-height: 1;
}
.c-sec-ttl--en {
	margin-bottom: 15px;
	color: var(--c-yl-2);
	font-family: var(--font-secondary);
	font-size: 1.6rem;
	font-weight: var(--font-weight-md);
}
.c-sec-ttl--ja {
	font-size: 5rem;
	font-weight: var(--font-weight-bd);
}

@media screen and (max-width: 1440px) {
	.c-sec-ttl--ja {
		font-size: 4.5rem;
	}
}
@media screen and (max-width: 1280px) {
	.c-sec-ttl--ja {
		font-size: 4rem;
	}
}
@media screen and (max-width: 960px) {
	.c-sec-ttl {
		margin-bottom: 30px;
	}
	.c-sec-ttl--ja {
		font-size: 3.2rem;
	}
}
@media screen and (max-width: 767px) {
	.c-sec-ttl {
		margin-bottom: 25px;
	}
	.c-sec-ttl--en {
		font-size: 1.4rem;
	}
	.c-sec-ttl--ja {
		font-size: 2.5rem;
	}
}

/* Other Title */

/*----- Burger -----*/
.c-nav-btn {
	display: none;
	width: 74px;
	aspect-ratio: 1;
	position: fixed;
	top: 0;
	right: 0;
	z-index: 3;
	cursor: pointer;
}
.c-nav-btn__line {
	width: 30px;
	height: 2px;
	display: inline-block;
	position: absolute;
	top: 0;
	left: 22px;
	background: var(--c-primary);
	border-radius: 10px;
	transition: all .2s;
}
.c-nav-btn__line:nth-of-type(1) {
	top: 30px;
}
.c-nav-btn__line:nth-of-type(2) {
	top: 36px;
}
.c-nav-btn__line:nth-of-type(3) {
	top: 42px;
}
.is-tgl .c-nav-btn__line:nth-of-type(1) {
	transform: translateY(6px) rotate(30deg);
}
.is-tgl .c-nav-btn__line:nth-of-type(2) {
	opacity: 0;
}
.is-tgl .c-nav-btn__line:nth-of-type(3) {
	transform: translateY(-6px) rotate(-30deg);
}

@media screen and (max-width: 960px) {
	.c-nav-btn {
		display: block;
	}
}
@media screen and (max-width: 767px) {
	.c-nav-btn {
		width: 59px;
	}
	.c-nav-btn__line {
		width: 20px;
		left: 20px;
	}
	.c-nav-btn__line:nth-of-type(1) {
		top: 23px;
	}
	.c-nav-btn__line:nth-of-type(2) {
		top: 29px;
	}
	.c-nav-btn__line:nth-of-type(3) {
		top: 35px;
	}
}

/*----- Button -----*/
.c-btn {
	width: 200px;
	margin-inline: auto;
}
.c-btn-lg {
	width: 310px;
}
.c-btn__inner {
	width: 100%;
	padding: 19px 30px 21px;
	display: block;
	position: relative;
	color: var(--c-primary);
	font-size: 1.8rem;
	font-weight: var(--font-weight-md);
	letter-spacing: 0;
	line-height: 1;
	border: 1px solid var(--c-primary);
	border-radius: 30px;
	transition: all .3s ease-in-out;
}
.c-btn-lg .c-btn__inner {
	background: #fff;
}
.c-btn__inner:before,
.c-btn__inner:after {
	width: 14px;
	aspect-ratio: 7 / 6;
	content: '';
	position: absolute;
	top: 50%;
	right: 30px;
	transition: opacity .3s ease-in-out;
	transform: translateY(-50%);
}
.c-btn__inner:before {
	background: url(../images/arr_btn_wt.svg) no-repeat 0 0 / 100%;
	opacity: 0;
}
.c-btn__inner:after {
	background: url(../images/arr_btn.svg) no-repeat 0 0 / 100%;
	opacity: 1;
}

@media (hover: hover) and (pointer: fine) {
	.c-btn__inner:hover {
		color: #fff;
		background: var(--c-primary);
	}
	.c-btn__inner:hover:before {
		opacity: 1;
	}
	.c-btn__inner:hover:after {
		opacity: 0;
	}
}

@media screen and (max-width: 960px) {
	.c-btn-lg {
		width: 280px;
	}
	.c-btn__inner {
		padding: 15px 30px 17px;
		font-size: 1.6rem;
	}
}
@media screen and (max-width: 767px) {
	.c-btn {
		width: 160px;
	}
	.c-btn-lg {
		width: 280px;
	}
	.c-btn__inner {
		padding: 12px 20px 14px;
		font-size: 1.4rem;
	}
	.c-btn__inner:before,
	.c-btn__inner:after {
		right: 20px;
	}
}
@media screen and (max-width: 600px) {
	.c-btn-lg {
		width: 220px;
	}
}

/*----- Breadcrumb -----*/

/*----- Form -----*/
/* Text, Textarea, Selectbox */

/* Check, Radio */

/* Required */

/* Button */

/*----- Other -----*/
.c-sec-txt {
	margin-bottom: 50px;
	font-size: 1.8rem;
	font-weight: var(--font-weight-md);
	letter-spacing: 0;
	line-height: 1.7;
}
.p-rec__hdr .c-sec-txt {
	margin-bottom: 0;
}

@media screen and (max-width: 960px) {
	.c-sec-txt {
		font-size: 1.6rem;
	}
	.p-topics__hdr .c-sec-txt {
		margin-bottom: 0;
	}
}


/* Index
------------------------------------------------- */
/* ----- Mv -----*/
.p-mv {
	margin-block: 150px;
	display: flex;
}
.p-mv__catch {
	width: 37.5%;
	padding-inline: var(--sec-inline-ss);
	display: flex;
	align-items: center;
	justify-content: center;
}
.p-mv-catch__copy {
	width: 100%;
	max-width: 467px;
}
.p-mv-catch__copy img {
	width: 100%;
}
.p-mv-catch__copy img {
	width: 100%;
}
.p-mv__main {
	width: 62.5%;
	aspect-ratio: 120 / 108;
	border-radius: 30px 0 0 30px;
	overflow: hidden;
}
.p-mv__main img {
	width: 100%;
}

@media screen and (max-width: 1600px) {
	.p-mv {
		margin-block: 135px;
	}
	.p-mv-catch__copy {
		max-width: 374px;
	}
}
@media screen and (max-width: 1280px) {
	.p-mv {
		margin-block: 120px;
	}
	.p-mv-catch__copy {
		max-width: 299px;
	}
}
@media screen and (max-width: 960px) {
	.p-mv {
		margin-block: 100px;
	}
	.p-mv-catch__copy {
		max-width: 239px;
	}
}
@media screen and (max-width: 767px) {
	.p-mv {
		margin-block: 80px 50px;
	}
}
@media screen and (max-width: 600px) {
	.p-mv {
		margin-inline: var(--sec-inline-md);
		position: relative;
	}
	.p-mv__main {
		width: 100%;
		aspect-ratio: inherit;
		border-radius: 15px;
	}
	.p-mv__catch {
		width: 41.79%;
		max-width: 234px;
		padding-inline: 0;
		position: absolute;
		right: 50px;
		bottom: 50px;
		z-index: 1;
	}
	.p-mv-catch__copy {
		max-width: inherit;
	}
}
@media screen and (max-width: 425px) {
	.p-mv__catch {
		right: 30px;
		bottom: 30px;
	}
}

/* ----- Profile -----*/
.p-profile {
	margin-bottom: 170px;
	display: flex;
}

@media screen and (max-width: 1280px) {
	.p-profile {
		margin-bottom: 135px;
	}
}
@media screen and (max-width: 960px) {
	.p-profile {
		margin-bottom: 110px;
		flex-direction: column;
	}
}

/* Catchcopy */
.p-profile__copy {
	width: 630px;
	padding-right: 50px;
	color: var(--c-primary);
	font-size: 4.4rem;
	font-weight: var(--font-weight-bd);
	letter-spacing: 0;
	line-height: 2.2;
}

@media screen and (max-width: 1440px) {
	.p-profile__copy {
		font-size: 4rem;
	}
}
@media screen and (max-width: 1280px) {
	.p-profile__copy {
		width: 400px;
		font-size: 3.5rem;
		line-height: 2;
		flex-shrink: 0;
	}
}
@media screen and (max-width: 960px) {
	.p-profile__copy {
		width: 100%;
		margin-bottom: 60px;
		padding-right: 0;
		font-size: 2.8rem;
		text-align: center;
		animation: translate 0.5s ease-in-out 0.5s forwards;
	}
}
@media screen and (max-width: 767px) {
	.p-profile__copy {
		margin-bottom: 40px;
		font-size: 2.2rem;
		line-height: 1.75;
	}
}

/* Contents */
.p-profile__cont {
	width: 690px;
}
.p-profile-cont__ttl {
	position: relative;
	z-index: 0;
}
.p-profile-cont__ttl span {
	padding-right: 30px;
	display: inline-block;
	color: var(--c-secondary);
	font-family: var(--font-tertiary);
	font-size: 3rem;
	line-height: 1;
	background: #fff;
}
.p-profile-cont__ttl:after {
	width: 100%;
	height: 2px;
	content: '';
	position: absolute;
	top: 14px;
	left: 0;
	z-index: -1;
	background: var(--c-secondary);
}
.p-profile-cont__dl {
	padding-block: 33px;
	display: flex;
	border-bottom: 1px solid var(--c-secondary);
}
.p-profile-cont__dl dt {
	width: 295px;
	padding-top: 6px;
	padding-left: 30px;
	color: var(--c-bk);
	font-size: 1.8rem;
	font-weight: var(--font-weight-md);
	letter-spacing: .05em;
	line-height: 1;
}
.p-profile-cont__dl dt:before {
	width: 14px;
	aspect-ratio: 1;
	margin-right: 14px;
	content: '';
	display: inline-block;
	background: var(--c-secondary);
	border-radius: 100%;
	vertical-align: -1px;
}
.p-profile-cont__dl dd,
.p-profile-cont__li {
	font-size: 1.8rem;
	font-weight: var(--font-weight-md);
	letter-spacing: .05em;
	line-height: 1.8;
}
.p-profile-cont__dl dd {
	width: 395px;
}
.p-profile-cont__ul {
	margin-bottom: 15px;
}
.p-profile-cont-li__ruby {
	position: relative;
	font-weight: var(--font-weight-md);
}
.p-profile-cont-li__ruby:before {
	content: 'ひさげ';
	position: absolute;
	top: -14px;
	left: 50%;
	font-size: 1.2rem;
	font-weight: var(--font-weight-md);
	letter-spacing: 0;
	white-space: nowrap;
	transform: translateX(-50%);
}
.p-profile-cont-li__sm {
	font-size: 1.4rem;
	font-weight: var(--font-weight-md);
}
.p-profile-cont__txt,
.p-profile-cont__txt span {
	display: inline-block;
	color: #fff;
	font-family: var(--font-quaternary);
	font-weight: bold;
	letter-spacing: .05em;
	line-height: 1;
}
.p-profile-cont__txt {
	padding: 12px 36px 8px;
	background: var(--c-rd);
	border-radius: 25px;
}
.p-profile-cont__txt span {
	font-size: 3rem;
}


@media screen and (max-width: 1280px) {
	.p-profile {
		margin-bottom: 135px;
	}
	.p-profile__cont {
		width: calc(100% - 400px);
	}
	.p-profile-cont__ttl:after {
		top: 11px;
	}
	.p-profile-cont__ttl span {
		font-size: 2.5rem;
	}
	.p-profile-cont__dl dt {
		width: 240px;
	}
	.p-profile-cont__dl dd {
		width: 450px;
	}
}
@media screen and (max-width: 1200px) {
	.p-profile-cont__dl dt {
		width: 170px;
		padding-left: 0;
	}
	.p-profile-cont__dl dt:before {
		margin-right: 6px;
	}
	.p-profile-cont__dl dd {
		width: calc(100% - 170px);
	}
}
@media screen and (max-width: 960px) {
	.p-profile {
		margin-bottom: 110px;
	}
	.p-profile__cont {
		width: 100%;
	}
	.p-profile-cont__ttl:after {
		top: 13px;
	}
	.p-profile-cont__ttl span {
		padding-right: 15px;
		font-size: 2rem;
	}
	.p-profile-cont__dl {
		padding-block: 25px;
	}
	.p-profile-cont__dl dt {
		width: 200px;
		font-size: 1.6rem;
	}
	.p-profile-cont__dl dt:before {
		width: 12px;
		vertical-align: 0px;
	}
	.p-profile-cont__dl dd {
		width: calc(100% - 200px)
	}
	.p-profile-cont__dl dd,
	.p-profile-cont__li {
		font-size: 1.6rem;
	}
	.p-profile-cont__txt {
		font-size: 1.4rem;
	}
	.p-profile-cont__txt span {
		font-size: 2.4rem;
	}
}
@media screen and (max-width: 767px) {
	.p-profile {
		margin-bottom: 80px;
	}
	.p-profile-cont__ttl:after {
		height: 1px;
		top: 12px;
	}
	.p-profile-cont__dl {
		padding-block: 20px;
		flex-direction: column;
	}
	.p-profile-cont__dl dt {
		width: 100%;
		margin-bottom: 10px;
		padding-top: 0;
		font-size: 1.4rem;
	}
	.p-profile-cont__dl:nth-of-type(1) dt {
		margin-bottom: 15px;
	}
	.p-profile-cont__dl dt:before {
		width: 10px;
	}
	.p-profile-cont__dl dd {
		width: 100%;
	}
	.p-profile-cont-li__ruby:before {
		top: -13px;
		font-size: 1rem;
	}
	.p-profile-cont-li__sm {
		font-size: 1.2rem;
	}
	.p-profile-cont__txt {
		padding: 7px 20px;
		font-size: 1.2rem;
	}
	.p-profile-cont__txt span {
		font-size: 2rem;
		vertical-align: -2px;
	}
}

/* ----- Plan -----*/
.p-plan {
	margin-bottom: var(--sec-block-lg);
	padding-block: 135px 160px;
	position: relative;
}
.p-plan:before,
.p-plan:after {
	width: 100%;
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	z-index: -2;
}
.p-plan:before {
	height: 100%;
	background: #d9c35e;
	transform: skewY(3.8deg);
}
.p-plan:after {
	height: calc(100% - 140px);
	top: 60px;
	background: #e8d259;
	transform: skewY(-7.7deg);
	opacity: .8;
}

@media screen and (max-width: 1280px) {
	.p-plan {
		padding-block: 110px 130px;
	}
	.p-plan:after {
		height: calc(100% - 110px);
	}
}
@media screen and (max-width: 960px) {
	.p-plan {
		padding-block: 80px 110px;
	}
	.p-plan:before {
		transform: skewY(5.7deg);
	}
	.p-plan:after {
		transform: skewY(-11.55deg);
	}
}
@media screen and (max-width: 767px) {
	.p-plan {
		padding-block: 60px 80px;
	}
}
@media screen and (max-width: 600px) {
	.p-plan:after {
		height: calc(100% - 45px);
		top: 20px;
	}
}

/* Title Group */
.p-plan__ttlgroup {
	margin-bottom: 100px;
	text-align: center;
}
.p-plan__ttl,
.p-plan-ttl__sm,
.p-plan-ttl__num {
	font-weight: var(--font-weight-bk);
	letter-spacing: .05em;
	line-height: 1;
}
.p-plan__ttl {
	margin-bottom: 20px;
	color: var(--c-primary);
	font-size: 7rem;
}
.p-plan-ttl__sm {
	font-size: 4.4rem;
}
.p-plan-ttl__num {
	margin-inline: 12px 5px;
	position: relative;
	color: #fff;
	font-size: 15rem;
	-webkit-text-stroke: 12px var(--c-primary);
}
.p-plan-ttl__num.-cover {
	position: absolute;
	top: 33px;
	left: -13px;
	-webkit-text-stroke: 0;
}
.p-plan__label {
	width: fit-content;
	margin-inline: auto;
	padding: 7px 24px;
	font-weight: var(--font-weight-bd);
	letter-spacing: .05em;
	line-height: 1;
	background: #fff;
	border-radius: 10px;
}

@media screen and (max-width: 1440px) {
	.p-plan__ttl {
		font-size: 6.3rem;
	}
	.p-plan-ttl__sm {
		font-size: 4rem;
	}
	.p-plan-ttl__num {
		font-size: 13.5rem;
		-webkit-text-stroke: 11px var(--c-primary);
	}
}
@media screen and (max-width: 1280px) {
	.p-plan__ttlgroup {
		margin-bottom: 80px;
	}
	.p-plan__ttl {
		font-size: 5.6rem;
	}
	.p-plan-ttl__sm {
		font-size: 3.5rem;
	}
	.p-plan-ttl__num {
		font-size: 12rem;
		-webkit-text-stroke: 10px var(--c-primary);
	}
	.p-plan-ttl__num.-cover {
		top: 25px;
		left: -14px;
	}
}
@media screen and (max-width: 960px) {
	.p-plan__ttlgroup {
		margin-bottom: 65px;
	}
	.p-plan__ttl {
		font-size: 4.5rem;
	}
	.p-plan-ttl__sm {
		font-size: 2.8rem;
	}
	.p-plan-ttl__num {
		font-size: 9.6rem;
		-webkit-text-stroke: 8px var(--c-primary);
	}
	.p-plan-ttl__num.-cover {
		top: 21px;
		left: -14px;
	}
}
@media screen and (max-width: 767px) {
	.p-plan__ttlgroup {
		margin-bottom: 40px;
	}
	.p-plan__ttl {
		font-size: 3.6rem;
	}
	.p-plan-ttl__sm {
		font-size: 2.2rem;
	}
	.p-plan-ttl__num {
		font-size: 7.5rem;
		-webkit-text-stroke: 6px var(--c-primary);
	}
	.p-plan-ttl__num.-cover {
		top: 16px;
		left: -14px;
	}
	.p-plan__label {
		border-radius: 5px;
	}
}
@media screen and (max-width: 600px) {
	.p-plan__ttl {
		font-size: 2.8rem;
		line-height: 1.3;
	}
	.p-plan-ttl__sm {
		font-size: 1.8rem;
	}
	.p-plan-ttl__num {
		font-size: 6rem;
		-webkit-text-stroke: 5px var(--c-primary);
	}
	.p-plan-ttl__num.-cover {
		top: 13px;
		left: -13px;
	}
}

/* Contents */
.p-plan__cont {
	display: flex;
	flex-wrap: wrap;
	gap: 35px 30px;
	gap: 35px 1.6%;
}
.p-plan__cell {
	width: 49.2%;
	display: flex;
	flex-direction: column;
}
.p-plan__group {
	position: relative;
	background: #fff;
	border: 3px solid var(--border-color-1);
	border-radius: 30px;
	counter-reset: number 0;
}
.p-plan__group.-sm {
	display: flex;
}
.p-plan__group.-sm:nth-of-type(1) {
	margin-bottom: 27px;
}
.p-plan__group.-sm:nth-last-of-type(1) {
	margin-top: auto
}
.p-plan__group:after {
	content: '';
	position: absolute;
	width: calc(100% + 6px);
	height: 100%;
	top: 12px;
	left: -3px;
	z-index: -1;
	background: var(--border-color-1);
	border-radius: 30px;
}
.p-plan-group__inner {
	width: 100%;
	height: 100%;
	padding-block: 50px 80px;
	padding-inline: 60px;
	border-radius: 27px;
	position: relative;
	z-index: 0;
	overflow: hidden;
}
.-sm .p-plan-group__inner {
	padding-block: 50px;
	padding-inline: 50px;
	display: flex;
	gap: 0 40px;
}
.p-plan-group__inner:before {
	content: '';
	position: absolute;
	right: -7px;
	bottom: -24px;
	z-index: -1;
	color: var(--c-yl);
	font-family: var(--font-secondary);
	font-size: 15rem;
	font-weight: var(--font-weight-md);
	letter-spacing: -0.05em;
	line-height: 1;
}
.-sm .p-plan-group__inner:before {
	font-size: 12rem;
}
.p-plan-group__inner.-child:before {
	content: 'Child';
}
.p-plan-group__inner.-youth:before {
	content: 'Youth';
}
.p-plan-group__inner.-senior:before {
	content: 'Senior';
}
.p-plan-group__inner.-development:before {
	content: 'Development';
}
.p-plan-group__inner.-barrierfree:before {
	content: 'Barrier-free';
}
.p-plan-group__ill {
	width: 202px;
	margin-bottom: 20px;
	margin-inline: auto;
}
.-sm .p-plan-group__ill {
	width: 165px;
	flex-shrink: 0;
}
.p-plan-group__ill img {
	width: 100%;
}
.p-plan-group__area {
	width: calc(100% - 165px);
}
.p-plan-group__ttl {
	width: fit-content;
	margin-bottom: 55px;
	margin-inline: auto;
	text-align: center;
}
.-sm .p-plan-group__ttl {
	margin-bottom: 30px;
	text-align: left;
}
.p-plan-group__ttl span {
	font-size: 3.5rem;
	font-weight: var(--font-weight-bd);
	letter-spacing: 0;
	line-height: 1.5;
	background: linear-gradient(transparent 55%, #f6f073 55%);
}
.p-plan-group__block {
	margin-bottom: 25px;
	padding-left: 40px;
	position: relative;
}
.p-plan-group__block:nth-last-of-type(1) {
	margin-bottom: 0;
}
.p-plan-group-block__ttl {
	margin-bottom: 5px;
	position: relative;
	font-size: 2.2rem;
	font-weight: var(--font-weight-bd);
	letter-spacing: .05em;
	line-height: 1.5;
}
.p-plan-group-block__ttl:before {
	width: 26px;
	aspect-ratio: 1;
	padding: 4px 9px;
	counter-increment: number 1;
	content: counter(number) " ";
	color: #fff;
	font-size: 1.6rem;
	font-weight: var(--font-weight-bk);
	letter-spacing: 0;
	line-height: 1;
	position: absolute;
	top: 4px;
	left: -40px;
	background: #e4ce5a;
	border-radius: 100%;
}
.p-plan-group__txt {
	font-size: 1.8rem;
	font-weight: var(--font-weight-md);
	letter-spacing: 0;
	line-height: 1.7;
}

@media screen and (max-width: 1920px) {
	.p-plan__group {
		max-width: 840px;
	}
}
@media screen and (max-width: 1800px) {
	.p-plan-group__inner:before {
		bottom: -20px;
		font-size: 12rem;
	}
	.-sm .p-plan-group__inner:before {
		font-size: 9.6rem;
	}
}
@media screen and (max-width: 1440px) {
	.p-plan-group__inner:before {
		right: -5px;
		bottom: -16px;
		font-size: 9.6rem;
	}
	.-sm .p-plan-group__inner:before {
		font-size: 7.7rem;
	}
}
@media screen and (max-width: 1280px) {
	.p-plan-group__inner {
		padding-block: 40px 65px;
		padding-inline: 30px;
	}
	.p-plan-group__ill {
		width: 162px;
	}
	.-sm .p-plan-group__ill {
		width: 132px;
	}
	.p-plan-group__area {
		width: calc(100% - 132px);
	}
	.p-plan-group__ttl {
		margin-bottom: 45px;
	}
	.p-plan-group__ttl span {
		font-size: 3rem;
	}
}
@media screen and (max-width: 1200px) {
	.-sm .p-plan-group__inner {
		padding-block: 40px 65px;
		padding-inline: 30px;
		flex-direction: column;
		align-items: center;
	}
	.-sm .p-plan-group__ill {
		width: 162px;
	}
	.p-plan-group__area {
		width: 100%;
	}
	.-sm .p-plan-group__ttl {
		text-align: center;
	}
}
@media screen and (max-width: 1100px) {
	.p-plan-group__inner:before {
		bottom: -12px;
		font-size: 7.6rem;
	}
	.-sm .p-plan-group__inner:before {
		font-size: 6.2rem;
	}
	.p-plan-group__ttl span {
		font-size: 2.8rem;
	}
}
@media screen and (max-width: 960px) {
	.p-plan__cont {
		flex-direction: column;
	}
	.p-plan__cell {
		width: 100%;
	}
	.p-plan-group__ill,
	.-sm .p-plan-group__ill {
		width: 130px;
	}
	.p-plan__group.-sm:nth-of-type(1) {
		margin-bottom: 35px;
	}
	.-sm .p-plan-group__inner:before {
		font-size: 7.6rem;
	}
	.p-plan-group__ttl {
		margin-bottom: 30px;
	}
	.p-plan-group__ttl span {
		font-size: 2.4rem;
	}
	.p-plan-group__txt {
		font-size: 1.6rem;
	}
	.p-plan-group-block__ttl {
		font-size: 1.8rem;
	}
	.p-plan-group-block__ttl:before {
		top: 1px;
	}
}
@media screen and (max-width: 767px) {
	.p-plan__cont {
		gap: 25px 1.6%;
	}
	.p-plan__group {
		border-radius: 15px;
	}
	.p-plan__group:after {
		top: 8px;
		border-radius: 15px;
	}
	.p-plan-group__inner,
	.-sm .p-plan-group__inner {
		padding-block: 30px 35px;
		padding-inline: 15px;
	}
	.p-plan-group__inner {
		border-radius: 10px;
	}
	.p-plan-group__inner:before,
	.-sm .p-plan-group__inner:before {
		font-size: 6rem;
	}
	.p-plan-group__ill,
	.-sm .p-plan-group__ill {
		width: 104px;
	}
	.p-plan-group__block {
		margin-bottom: 20px;
		padding-left: 30px;
	}
	.p-plan-group-block__ttl:before {
		width: 20px;
		padding: 3px 7px;
		top: 2px;
		left: -30px;
		font-size: 1.2rem;
	}
	.p-plan-group__txt {
		font-size: 1.5rem;
	}
}
@media screen and (max-width: 767px) {
	.p-plan-group__inner:before,
	.-sm .p-plan-group__inner:before {
		bottom: -10px;
		font-size: 5rem;
	}
}

/* ----- Topics -----*/
.p-topics {
	margin-bottom: var(--sec-block-md);
}
.p-topics__inner {
	display: flex;
	margin-inline: var(--sec-inline-sm);
}

@media screen and (max-width: 960px) {
	.p-topics__inner {
		flex-direction: column;
	}
}

/* Header */
.p-topics__hdr {
	width: 515px;
	padding-right: 50px;
}
.p-topics-btn {
	margin-inline: 0;
}

@media screen and (max-width: 960px) {
	.p-topics__hdr {
		width: 100%;
		margin-bottom: 30px;
		padding-right: 0;
	}
}
@media screen and (max-width: 767px) {
	.p-topics__hdr {
		margin-bottom: 10px;
	}
}

/* List */
.p-topics__list {
	width: calc(100% - 515px);
}
.p-topics__item a {
	padding-block: 26px;
	display: block;
	position: relative;
	border-bottom: 1px solid var(--border-color-2);
}
.p-topics__item a:after {
	width: 100%;
	height: 1px;
	content: '';
	position: absolute;
	bottom: -1px;
	left: 0;
	background: #d9c35e;
	transform: scale(0, 1);
	transform-origin: right top;
	transition: transform .6s;
}
.p-topics-item__date,
.p-topics-item__ttl {
	font-weight: var(--font-weight-md);
	letter-spacing: 0;
}
.p-topics-item__date {
	margin-bottom: 25px;
	color: #d9c35e;
	font-size: 1.4rem;
	line-height: 1;
}
.p-topics-item__ttl {
	font-size: 1.8rem;
	line-height: 1.5;
}

@media (hover: hover) and (pointer: fine) {
	.p-topics__item a:hover:after {
		transform: scale(1, 1);
		transform-origin: left top;
	}
}

@media screen and (max-width: 1920px) {
	.p-topics__list {
		width: 1005px;
	}
}
@media screen and (max-width: 960px) {
	.p-topics__list {
		width: 100%;
		margin-bottom: 60px;
	}
	.p-topics-item__ttl {
		font-size: 1.6rem;
	}
}
@media screen and (max-width: 767px) {
	.p-topics__list {
		margin-bottom: 50px;
	}
	.p-topics-item__date {
		margin-bottom: 15px;
	}
}

/* ----- Recommendation -----*/
.p-rec {
	margin-bottom: 220px;
}

@media screen and (max-width: 1280px) {
	.p-rec {
		margin-bottom: 175px;
	}
}
@media screen and (max-width: 960px) {
	.p-rec {
		margin-bottom: 140px;
	}
}
@media screen and (max-width: 767px) {
	.p-rec {
		margin-bottom: 100px;
	}
}

/* Header */
.p-rec__hdr {
	margin-inline: var(--sec-inline-sm);
	margin-bottom: 60px;
}

@media screen and (max-width: 767px) {
	.p-rec__hdr {
		margin-bottom: 70px;
	}
}

/* Contents */
.p-rec__main {
	width: 100%;
	margin-bottom: 70px;
	margin-inline: var(--sec-inline-sm);
	position: relative;
}
.p-rec__main.swiper-horizontal {
	overflow: visible;
}
.p-rec__list {
	display: flex;
}
.p-rec__item {
	width: 400px;
}
.p-rec-item__img {
	margin-bottom: 20px;
	position: relative;
	z-index: 1;
	border-radius: 20px;
	overflow: hidden;
}
.p-rec-item__img img {
	width: 100%;
	transform: translate3d(0, 0, 0);
	transition: all .5s ease-in-out;
}
.p-rec-item__ttl {
	margin-bottom: 25px;
	font-size: 1.8rem;
	font-weight: var(--font-weight-md);
	letter-spacing: 0;
	transition: color .3s ease-in-out;
}
.p-rec-item__cat {
	display: flex;
	gap: 5px;
}
.p-rec-item-cat__item {
	padding: 8px 12px;
	font-size: 1.2rem;
	font-weight: var(--font-weight-md);
	letter-spacing: 0;
	line-height: 1;
	background: var(--bg-color);
	border-radius: 14px;
}

@media (hover: hover) and (pointer: fine) {
	.p-rec__item a:hover .p-rec-item__img img {
		transform: translate3d(0, 0, 0) scale(1.05);
	}
	.p-rec__item a:hover .p-rec-item__ttl {
		color: var(--c-primary);
	}
}

@media screen and (max-width: 1280px) {
	.p-rec__item {
		width: 320px;
	}
}
@media screen and (max-width: 960px) {
	.p-rec__item {
		width: 256px;
	}
	.p-rec-item__ttl {
		font-size: 1.6rem;
	}
}
@media screen and (max-width: 767px) {
	.p-rec__main {
		margin-bottom: 50px;
	}
	.p-rec-item__img {
		margin-bottom: 12px;
		border-radius: 10px;
	}
	.p-rec-item__ttl {
		margin-bottom: 15px;
		font-size: 1.4rem;
	}
	.p-rec-item-cat__item {
		font-size: 1rem;
	}
}

/*---- Swiper ----*/
/* slider */
.p-rec__main .swiper-button-prev,
.p-rec__main .swiper-button-next {
	width: 60px;
	height: 60px;
	top: -100px;
	z-index: 1;
	border: 1px solid var(--c-primary);
	border-radius: 100%;
	transition: all .3s ease-in-out;
}
.p-rec__main .swiper-button-prev {
	right: calc(var(--sec-inline-md) + var(--sec-inline-sm) + 60px);
	left: inherit;
}
.p-rec__main .swiper-button-next {
	right: calc(var(--sec-inline-md) + var(--sec-inline-sm) - 10px);
}
.p-rec__main .swiper-button-prev img,
.p-rec__main .swiper-button-next img {
	width: 14px;
	height: 12px;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	transition: opacity .3s ease-in-out;
}
.p-rec__main .swiper-button-prev img:nth-of-type(1),
.p-rec__main .swiper-button-next img:nth-of-type(1) {
	opacity: 1;
}
.p-rec__main .swiper-button-prev img:nth-of-type(2),
.p-rec__main .swiper-button-next img:nth-of-type(2) {
	opacity: 0;
}

@media (hover: hover) and (pointer: fine) {
	.p-rec__main .swiper-button-prev:hover,
	.p-rec__main .swiper-button-next:hover {
		background: var(--c-primary);
	}
	.p-rec__main .swiper-button-prev:hover img:nth-of-type(1),
	.p-rec__main .swiper-button-next:hover img:nth-of-type(1) {
		opacity: 0;
	}
	.p-rec__main .swiper-button-prev:hover img:nth-of-type(2),
	.p-rec__main .swiper-button-next:hover img:nth-of-type(2) {
		opacity: 1;
	}
}

@media screen and (max-width: 960px) {
	.p-rec__main .swiper-button-prev,
	.p-rec__main .swiper-button-next {
		width: 48px;
		height: 48px;
		top: -90px;
	}
	.p-rec__main .swiper-button-prev {
		right: 58px;
	}
	.p-rec__main .swiper-button-next {
		right: 0;
	}
}
@media screen and (max-width: 767px) {
	.p-rec__main .swiper-button-prev,
	.p-rec__main .swiper-button-next {
		width: 38px;
		height: 38px;
		top: -30px;
	}
	.p-rec__main .swiper-button-prev {
		right: 48px;
	}
}

/* 要素が3つ以内の時 */
.is-none .p-rec__list {
	gap: 40px;
}
.p-rec__main.is-none .swiper-button-prev,
.p-rec__main.is-none .swiper-button-next {
	display: none;
}

/* =================================================
下層ページ
================================================= */

/* Common
------------------------------------------------- */
.p-page-wrap {
	margin-block: 200px 250px;
	margin-inline: var(--sec-inline-lg);
}
@media screen and (max-width: 1280px) {
	.p-page-wrap {
		margin-block: 150px 200px
	}
}
@media screen and (max-width: 960px) {
	.p-page-wrap {
		margin-block: 100px 150px;
		margin-inline: var(--sec-inline-md);
	}
}
@media screen and (max-width: 767px) {
	.p-page-wrap {
		margin-block: 100px;
		margin-inline: var(--sec-inline-md);
	}
}

/* Pagenation */
.p-pagenation {
	width: 100%;
	display: flex;
	justify-content: center;
	position: relative;
}
.p-pagenation__turn {
	width: 130px;
	position: absolute;
	top: 0;
}
.p-pagenation__turn.-prev {
	left: 0;
}
.p-pagenation__turn.-next {
	right: 0;
	text-align: right;
}
.p-pagenation__turn a {
	display: block;
}
.p-pagenation__turn.-prev a:before,
.p-pagenation__turn.-next a:after {
	width: 40px;
	aspect-ratio: 1;
	content: '';
	display: inline-block;
	border: 1px solid var(--c-primary);
	border-radius: 100%;
	transition: background-color .3s ease-in-out;
	vertical-align: -15px;
}
.p-pagenation__turn.-prev a:before {
	margin-right: 10px;
}
.p-pagenation__turn.-next a:after {
	margin-left: 10px;
}
.p-pagenation__turn span {
	position: relative;
	color: var(--c-primary);
	font-weight: var(--font-weight-md);
	letter-spacing: 0;
	line-height: 1;
}
.p-pagenation__turn.-prev span:before,
.p-pagenation__turn.-prev span:after,
.p-pagenation__turn.-next span:before,
.p-pagenation__turn.-next span:after {
	width: 14px;
	aspect-ratio: 7 / 6;
	content: '';
	position: absolute;
	top: 8px;
	transition: opacity .3s ease-in-out;
}
.p-pagenation__turn.-prev span:before,
.p-pagenation__turn.-prev span:after {
	left: -37px;
}
.p-pagenation__turn.-next span:before,
.p-pagenation__turn.-next span:after {
	right: -37px;
}
.p-pagenation__turn.-prev span:before {
	background: url(../images/arr_slide_lt.svg) no-repeat 0 0 / 100%;
	opacity: 1;
}
.p-pagenation__turn.-prev span:after {
	background: url(../images/arr_slide_lt_wt.svg) no-repeat 0 0 / 100%;
	opacity: 0;
}
.p-pagenation__turn.-next span:before {
	background: url(../images/arr_slide_rt.svg) no-repeat 0 0 / 100%;
	opacity: 1;
}
.p-pagenation__turn.-next span:after {
	background: url(../images/arr_slide_rt_wt.svg) no-repeat 0 0 / 100%;
	opacity: 0;
}

.p-pagenation__btn {
	width: 150px;
}
.p-pagenation-btn__inner {
	padding: 10px 20px 12px;
	font-size: 1.6rem;
}
.p-pagenation-btn__inner:before,
.p-pagenation-btn__inner:after {
	right: 20px;
}

@media (hover: hover) and (pointer: fine) {
	.p-pagenation__turn.-prev a:hover:before,
	.p-pagenation__turn.-next a:hover:after {
		background: var(--c-primary);
	}
	.p-pagenation__turn.-prev a:hover span:before {
		opacity: 0;
	}
	.p-pagenation__turn.-prev a:hover span:after {
		opacity: 1;
	}
	.p-pagenation__turn.-next a:hover span:before {
		opacity: 0;
	}
	.p-pagenation__turn.-next a:hover span:after {
		opacity: 1;
	}
}

@media screen and (max-width: 767px) {
	.p-pagenation__turn {
		width: 100px;
		top: 1px;
	}
	.p-pagenation__turn.-prev a:before, .p-pagenation__turn.-next a:after {
		width: 30px;
		vertical-align: -11px;
	}
	.p-pagenation__turn.-prev a:before {
		margin-right: 5px;
	}
	.p-pagenation__turn.-next a:after {
		margin-left: 5px;
	}
	.p-pagenation__turn span {
		font-size: 1.2rem;
	}

	.p-pagenation__turn.-prev span:before,
	.p-pagenation__turn.-prev span:after,
	.p-pagenation__turn.-next span:before,
	.p-pagenation__turn.-next span:after {
		width: 11px;
		top: 6px;
	}
	.p-pagenation__turn.-prev span:before,
	.p-pagenation__turn.-prev span:after {
		left: -25px;
	}
	.p-pagenation__turn.-next span:before,
	.p-pagenation__turn.-next span:after {
		right: -25px;
	}

	.p-pagenation__btn {
		width: 85px;
	}
	.p-pagenation-btn__inner {
		padding: 8px 10px 9px;
		font-size: 1.2rem;
	}
	.p-pagenation-btn__inner:before,
	.p-pagenation-btn__inner:after {
		width: 11px;
		right: 10px;
	}
}


/* たねお日記 Topics
------------------------------------------------- */
.p-postpage-ttl {
	margin-bottom: 45px;
}
.p-post-lead {
	text-align: center;
}
.p-topics-list .p-post-lead {
	margin-bottom: 30px;
}

@media screen and (max-width: 960px) {
	.p-postpage-ttl {
		margin-bottom: 30px;
	}
	.p-topics-list .p-post-lead {
		margin-bottom: 20px;
	}
}
@media screen and (max-width: 767px) {
	.p-postpage-ttl {
		margin-bottom: 20px;
	}
	.p-post-lead {
		margin-bottom: 35px;
	}
	.p-topics-list .p-post-lead {
		margin-bottom: 15px;
	}
}

/* ----- Ｐager -----*/
.p-pager {
	display: none;
	font-size: 0;
	text-align: center;
}
.page-numbers {
	width: 60px;
	height: 60px;
	margin: 80px 15px 0 0;
	padding: 22px 0;
	display: inline-block;
	color: var(--c-primary);
	font-family: var(--font-secondary);
	font-size: 1.4rem;
	line-height: 1;
	text-align: center;
	border: 1px solid var(--c-primary);
	border-radius: 100%;
	transition: all .3s ease-in-out;
}
.prev.page-numbers,
.next.page-numbers {
	letter-spacing: 0;
}

.next.page-numbers {
	margin: 0;
}
.page-numbers.current {
	color: #fff;
	background: var(--c-primary);
}
@media (hover: hover) and (pointer: fine) {
	.page-numbers:hover {
		color: #fff;
		background: var(--c-primary);
	}
}

@media screen and (max-width: 960px) {
	.page-numbers {
		width: 56px;
		height: 56px;
		margin: 80px 15px 0 0;
		padding: 22px 0;
	}
}
@media screen and (max-width: 768px) {
	.page-numbers {
		width: 40px;
		height: 40px;
		margin: 30px 5px 0 0;
		padding: 14px 0;
		font-size: 1.2rem;
	}
	.prev.page-numbers,
	.next.page-numbers {
		padding-block: 15px;
		font-size: 1rem;
		transform: translateY(-1px);
	}
}

/* たねお日記 Topics -詳細-
------------------------------------------------- */
/*----- Header -----*/
.p-topics__upper {
	margin-bottom: 60px;
	padding-bottom: 60px;
	border-bottom: 1px solid var(--border-color-2);
}
.p-topics-upper__date {
	margin-bottom: 30px;
	font-size: 1.4rem;
	font-weight: var(--font-weight-md);
	letter-spacing: 0;
	line-height: 1;
	color: #d9c35e;
}
.p-post__ttl {
	font-size: 4rem;
	font-weight: var(--font-weight-bd);
	letter-spacing: 0;
	line-height: 1.3;
}
.p-post__cont {
	margin-bottom: 80px;
	padding-bottom: 100px;
	border-bottom: 1px solid var(--border-color-2);
}
.p-post__cont h2 {
	margin-bottom: 35px;
	padding-left: 25px;
	position: relative;
	font-size: 2.6rem;
	font-weight: var(--font-weight-bd);
	letter-spacing: .05em;
	line-height: 1.3;
}
.p-post__cont h2:before {
	width: 5px;
	height: 100%;
	content: '';
	position: absolute;
	top: 1px;
	left: 0;
	background: var(--c-primary);
	border-radius: 2px;
}
.p-post__cont h3 {
	font-size: 2.0rem;
	margin: 0 0 20px;
	padding: 0 0 0 14px;
	position: relative;
	font-weight: var(--font-weight-bd);
}
.p-post__cont h3:before {
	content: '';
	position: absolute;
	top: 100%;
	border-style: solid;
	border-color: transparent;
	left: 0;
	top: 15px;
	width: 2px;
	height: 2px;
	background: var(--c-primary);
	border-radius: 10px;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
}
.p-post__cont h4 {
	font-size: 1.8rem;
	margin: 0 0 20px;
	font-weight: var(--font-weight-bd);
}
.p-post__cont div {
	margin-bottom: 50px;
}
.p-post__cont p {
	margin-bottom: 50px;
	font-size: 1.8rem;
	line-height: 1.8;
}
/*.p-post__cont p:nth-last-of-type(1) {
	margin-bottom: 0;
}*/
.p-post__cont img {
	margin-block: 30px 20px;
	display: inline-block;
	border-radius: 20px;
}
.p-post__cont li, .p-post__cont ol, .p-post__cont ul {
	list-style: inside;
}

@media screen and (max-width: 1280px) {
	.p-topics__upper {
		margin-bottom: 50px;
		padding-bottom: 50px;
	}
	.p-post__ttl {
		font-size: 3.2rem;
	}
	.p-post__cont {
		margin-bottom: 65px;
		padding-bottom: 80px;
	}
}
@media screen and (max-width: 960px) {
	.p-topics__upper {
		margin-bottom: 40px;
		padding-bottom: 40px;
	}
	.p-topics-hdr__date {
		margin-bottom: 25px;
	}
	.p-post__ttl {
		font-size: 2.6rem;
	}
	.p-post__cont {
		margin-bottom: 50px;
		padding-bottom: 65px;
	}
	.p-post__cont h2 {
		margin-bottom: 30px;
		font-size: 2rem;
	}
	.p-post__cont h3 {
		font-size: 1.8rem;
		margin: 0 0 10px;
	}
	.p-post__cont h3:before {
		top: 13px;
	}
	.p-post__cont h4 {
		font-size: 1.6rem;
		margin: 0 0 10px;
	}
	.p-post__cont p + h2 {
		margin-top: 55px;
	}
	.p-post__cont p {
		margin-bottom: 30px;
		font-size: 1.6rem;
	}
}
@media screen and (max-width: 767px) {
	.p-topics__upper {
		margin-bottom: 30px;
		padding-bottom: 30px;
	}
	.p-topics-hdr__date {
		margin-bottom: 20px;
	}
	.p-post__ttl {
		font-size: 2rem;
		line-height: 1.5;
	}
	.p-post__cont {
		margin-bottom: 40px;
		padding-bottom: 55px;
	}
	.p-post__cont h2 {
		margin-bottom: 20px;
		padding-left: 15px;
		font-size: 1.6rem;
	}
	.p-post__cont h2:before {
		width: 3px;
	}
	.p-post__cont h3 {
		font-size: 1.4rem;
		margin: 0 0 10px;
	}
	.p-post__cont h3:before {
		top: 10px;
	}
	.p-post__cont h4 {
		font-size: 1.4rem;
		margin: 0 0 10px;
	}
	.p-post__cont p + h2 {
		margin-top: 40px;
	}
	.p-post__cont p {
		margin-bottom: 30px;
		font-size: 1.4rem;
		line-height: 1.75;
	}
	.p-post__cont img {
		margin-block: 10px;
		border-radius: 10px;
	}
}


/* たねおのいっぴん Recommendation
------------------------------------------------- */
.p-recommendation-list {
	width: 100%;
	max-width: 1280px;
	margin-inline: auto;
}
.p-recommendation-cont {
	padding-bottom: 80px;
	display: flex;
	flex-wrap: wrap;
	gap: 50px 40px;
	border-bottom: 1px solid var(--border-color-2);
}
.p-recommendation-cont .p-rec__item {
	width: calc((100% - 80px) / 3);
}

@media screen and (max-width: 960px) {
	.p-recommendation-cont {
		padding-bottom: 65px;
		gap: 40px 30px;
	}
	.p-recommendation-cont .p-rec__item {
		width: calc((100% - 30px) / 2);
	}
}
@media screen and (max-width: 960px) {
	.p-recommendation-cont {
		padding-bottom: 65px;
		gap: 30px 20px;
	}
	.p-recommendation-cont .p-rec__item {
		width: calc((100% - 20px) / 2);
	}
}
@media screen and (max-width: 767px) {
	.p-recommendation-cont {
		padding-bottom: 50px;
		gap: 40px;
	}
	.p-recommendation-cont .p-rec__item {
		width: 100%;
	}
	.p-recommendation-cont .p-rec-item__img {
		max-width: 500px;
		margin-inline: auto;
	}
}


/* たねおのいっぴん Recommendation -詳細記事-
------------------------------------------------- */
/*----- Header -----*/
.p-recommendation__hdr {
	margin-bottom: 60px;
}
.p-recommendation__ul {
	margin-bottom: 20px;
	display: flex;
	gap: 10px;
}
.p-recommendation__li {
	padding: 8px 12px;
	font-size: 1.2rem;
	font-weight: var(--font-weight-md);
	letter-spacing: 0;
	line-height: 1;
	background: var(--bg-color);
	border-radius: 14px;
}

@media screen and (max-width: 1280px) {
	.p-recommendation__hdr {
		margin-bottom: 50px;
	}
}
@media screen and (max-width: 960px) {
	.p-recommendation__hdr {
		margin-bottom: 40px;
	}
}
@media screen and (max-width: 767px) {
	.p-recommendation__hdr {
		margin-bottom: 30px;
	}
	.p-recommendation__ul {
		margin-bottom: 15px;
	}
	.p-recommendation__li {
		font-size: 1.1rem;
	}
}

/* ----- Contents -----*/
.p-recommendation__main {
	margin-bottom: 90px;
	margin-inline: auto;
	border-radius: 20px;
	overflow: hidden;
}
.p-recommendation__main img {
	width: 100%;
}
.p-recommendation .p-post__cont img {
	margin-inline: auto;
	display: block;
	border-radius: 10px;
}

@media screen and (max-width: 1280px) {
	.p-recommendation__main {
		margin-bottom: 70px;
	}
}
@media screen and (max-width: 960px) {
	.p-recommendation__main {
		margin-bottom: 60px;
	}
}
@media screen and (max-width: 767px) {
	.p-recommendation__main {
		margin-bottom: 35px;
		border-radius: 10px;
	}
	.p-recommendation .p-post__cont img {
		border-radius: 5px;
	}
}

/* ----- Section -----*/
/* fix-bar */
.fixed-bar {
  position: fixed;
  display: flex;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #d9c35e;
  text-align: center;
  padding: 10px;
  z-index:999; /* 重要 */
  opacity: 1;
  display: none; /* 初期は非表示 */
}
@media screen and (max-width: 960px) {
	.fixed-bar {
    display: block;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    visibility: visible;
    transition: opacity 0.5s ease, visibility 0.5s ease;
  }
.fixed-bar.hide {
  opacity: 0;
  visibility: hidden;
}
.btn-fx {
	width: 310px;
}
.btn-fx__inner {
	width: 100%;
	padding: 19px 30px 21px;
	display: block;
	position: relative;
	color: var(--c-primary);
	font-size: 1.8rem;
	font-weight: var(--font-weight-md);
	letter-spacing: 0;
	line-height: 1;
	border: 1px solid var(--c-primary);
	border-radius: 30px;
	transition: all .3s ease-in-out;
}
.btn-fx .btn-fx__inner {
	background: #fff;
}
.btn-fx__inner:before,
.btn-fx__inner:after {
	width: 14px;
	aspect-ratio: 7 / 6;
	content: '';
	position: absolute;
	top: 50%;
	right: 30px;
	transition: opacity .3s ease-in-out;
	transform: translateY(-50%);
}
.btn-fx__inner:before {
	background: url(../images/arr_btn_wt.svg) no-repeat 0 0 / 100%;
	opacity: 0;
}
.btn-fx__inner:after {
	background: url(../images/arr_btn.svg) no-repeat 0 0 / 100%;
	opacity: 1;
}
.btn-fx_sns a {
	height: 70px;
}
.btn-fx_sns a img {
	width: 70px;
	height: 70px;
} 

@media (hover: hover) and (pointer: fine) {
	.btn-fx__inner:hover {
		color: #fff;
		background: var(--c-primary);
	}
	.btn-fx__inner:hover:before {
		opacity: 1;
	}
	.btn-fx__inner:hover:after {
		opacity: 0;
	}
	}
}
@media screen and (max-width: 500px){
	.btn-fx {
		width: 280px;
	}
	.btn-fx__inner:before,
	.btn-fx__inner:after {
		right: 15px;
	}
}
@media screen and (max-width: 400px){
	.btn-fx {
		width: 260px;
	}
	.btn-fx__inner{
		font-size: 14px;
		padding: 19px 15px 21px;
	}
	.btn-fx__inner:before,
	.btn-fx__inner:after {
		right: 15px;
	}
}


/* Utility
------------------------------------------------- */
/* ---------- Display ----------*/
.u-m-xxl,
.u-m-xl,
.u-m-lg,
.u-m-md,
.u-m-sm,
.u-m-xs { display: none;}
.u-p-xxl,
.u-p-xl,
.u-p-lg,
.u-p-md,
.u-p-sm,
.u-p-xs { display: block;}
@media screen and (max-width: 1440px) {
	.u-m-xxl { display: block;}
	.u-p-xxl { display: none;}
}
@media screen and (max-width: 1280px) {
	.u-m-xl { display: block;}
	.u-p-xl { display: none;}
}
@media screen and (max-width: 1024px) {
	.u-m-lg { display: block;}
	.u-p-lg { display: none;}
}
@media screen and (max-width: 960px) {
	.u-m-md { display: block;}
	.u-p-md { display: none;}
}
@media screen and (max-width: 767px) {
	.u-m-sm { display: block;}
	.u-p-sm { display: none;}
}
@media screen and (max-width: 600px) {
	.u-m-xs { display: block;}
	.u-p-xs { display: none;}
}
