 @charset "utf-8";
/* =================================================
Foundation
================================================= */
:root {
	--color-brown: #684d15;
	--color-brown-2: #765d2a;
	--color-red: #df1825;
	--color-yellow: #f3d596;
	--font-family-overpass: 'Overpass', sans-serif;
	--font-family-worksans: 'Work Sans', sans-serif;	
	--font-weight-regular: 400;
}

/* Base
------------------------------------------------- */
* {
	font-weight: 500;
	font-style: normal;
	font-family: 'Zen Maru Gothic', '游ゴシック', 'Yu Gothic', 'Meiryo', 'ＭＳ Ｐゴシック', 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro','メイリオ', 'Avenir','Helvetica Neue','Helvetica','Arial', sans-serif;
	margin: 0;
	padding: 0;
	line-height: 1.75;
	letter-spacing: .1em;
	color: #121212;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-text-size-adjust: 100%;
	-webkit-font-smoothing: antialiased;
	/*font-feature-settings: 'palt';*/
}
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: 600px) {
	body {
		font-size: 1.4rem;
	}
}
@media screen and (max-width: 374px) {
	html {
		font-size: 2.667vw;
	}
}
img {
	border: 0;
	vertical-align: bottom;
	backface-visibility: hidden;
	-webkit-backface-visibility: hidden;
}


/* Script
------------------------------------------------- */



/* =================================================
Layout
================================================= */
#l-wrapper {
	overflow: hidden;
}

/* Header
------------------------------------------------- */
#l-header {
	width: 100%;
	padding: 45px 0 0 45px;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 2;
}
.l-header__logo,
.l-header__logo a {
	font-size: 0;
}
.l-header__logo {
	width: 194px;
	aspect-ratio: 97 / 79;
}
.l-header__logo img {
	width: 100%;
}

@media screen and (max-width: 1279px) {
	#l-header {
		padding: 36px 0 0 36px;
	}
	.l-header__logo {
		width: 155px;
	}
}
@media screen and (max-width: 959px) {
	.l-header__logo {
		width: 124px;
	}
}
@media screen and (max-width: 767px) {
	#l-header {
		padding: 20px 0 0 5%;
	}
	.l-header__logo {
		width: 100px;
	}
}
@media screen and (max-width: 599px) {
	.l-header__logo {
		width: 80px;
	}
}

/*---------- Global navi ----------*/
#l-gnav {
	position: absolute;
	top: 130px;
	left: 50%;
	transform: translateX(-50%);
}
.l-gnav__ul {
	display: flex;
	align-items: center;
	gap: 0 40px;
}
.l-gnav__li {
	flex-shrink: 0;
	font-size: 0;
}
.l-gnav__li a {
	padding-bottom: 13px;
	display: block;
	position: relative;
	color: var(--color-brown);
	font-size: 1.8rem;
	font-weight: 600;
	letter-spacing: .05em;
	line-height: 1;
	background: url("../images/gnav_dotted.svg") repeat-x left bottom / 170px;
}
.l-gnav__li.-picking a:before {
	width: 80px;
	aspect-ratio: 40 / 37;
	margin-left: -53px;
	content: '';
	position: absolute;
	top: -75px;
	left: 50%;
	background: url("../images/gnav_current_ill.png") no-repeat 0 0 / 100%;
	opacity: 0;
	transition: all .4s ease-in-out;
}
@media (hover: hover) and (pointer: fine) {
	.l-gnav__li.-picking a:hover:before {
		opacity: 1;
	}
	.l-gnav__li.-picking a:before {
		width: 64px;
		margin-left: -42px;
		top: -60px;
	}
}

@media screen and (max-width: 1279px) {
	#l-gnav {
		top: 104px;
	}
	.l-gnav__ul {
		gap: 0 30px;
	}
	.l-gnav__li a {
		font-size: 1.6rem;
	}
}
@media screen and (max-width: 1024px) {
	.l-gnav__ul {
		gap: 0 24px;
	}
}
@media screen and (max-width: 959px) {
	#l-gnav {
		display: none;
	}
}

/* Header-sp
------------------------------------------------- */
#p-header-sp {
	display: none;
}
@media screen and (max-width: 959px) {
	#p-header-sp {
		display: block;
	}
}

/*---- Burger btn ----*/
.p-burger {
	width: 60px;
	aspect-ratio: 1;
	position: fixed;
	top: 30px;
	right: 40px;
	z-index: 4;
	background: #fff;
	border-radius: 50%;
	box-shadow: 0 .6rem 1.2rem rgba(0,0,0,.1);
}
.p-burger__trigger {
	width: 100%;
	height: 100%;
	display: block;
	position: relative;
	cursor: pointer;
}
.p-burger__trigger span {
	width: 20px;
	height: 2px;
	display: inline-block;
	position: absolute;
	left: 50%;
	background: var(--color-brown);
	transform: translateX(-50%);
	transition: all .2s ease-in-out;
}
.p-burger__trigger span:nth-of-type(1) {
	top: 24px;
}
.p-burger__trigger span:nth-of-type(2) {
	top: 29px;
}
.p-burger__trigger span:nth-of-type(3) {
	top: 34px;
}
.p-burger__trigger.is-active span:nth-of-type(1) {
	transform: translate(-50%, 5px) rotate(45deg);
}
.p-burger__trigger.is-active span:nth-of-type(2) {
	opacity: 0;
}
.p-burger__trigger.is-active span:nth-of-type(3) {
	transform: translate(-50%, -5px) rotate(-45deg);
}
.p-sp-nav {
	width: 100%;
	height: 100vh;
	height: 100dvh;
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 3;
	background: #fff;
	overflow: auto;
}
.p-sp-nav__inner {
	width: 100%;
	height: 100%;
	padding: 120px 50px 100px;
}
.p-sp-nav__block {
	margin-bottom: 60px;
}

@media screen and (max-width: 767px) {
	.p-burger {
		right: 5%;
	}
	.p-sp-nav__inner {
		padding: 120px 5% 100px;
	}
}
@media screen and (max-width: 599px) {
	.p-burger {
		width: 48px;
		top: 24px;
	}
	.p-burger__trigger span:nth-of-type(1) {
		top: 18px;
	}
	.p-burger__trigger span:nth-of-type(2) {
		top: 23px;
	}
	.p-burger__trigger span:nth-of-type(3) {
		top: 28px;
	}
	.p-sp-nav__inner {
		padding: 96px 5% 100px;
	}
	.p-sp-nav__block {
		margin-bottom: 48px;
	}
}

/*---- Global navi ----*/
.p-sp-nav__li {
	font-size: 0;
}
.p-sp-nav__li a {
	padding: 30px 0;
	display: block;
	color: var(--color-brown);
	font-size: 2rem;
	font-weight: 700;
	line-height: 1;
	background: url("../images/picking_select_dotted.svg") repeat-x left bottom / 24px;
}
.p-sp-nav__li:nth-of-type(1) a {
	background: url("../images/picking_select_dotted.svg") repeat-x left top / 24px, url("../images/picking_select_dotted.svg") repeat-x left bottom / 24px;;
}

@media screen and (max-width: 599px) {
	.p-sp-nav__li a {
		padding: 24px 0;
		font-size: 1.8rem;
		background: url("../images/picking_select_dotted.svg") repeat-x left bottom / 21px;
	}
.p-sp-nav__li:nth-of-type(1) a {
	background: url("../images/picking_select_dotted.svg") repeat-x left top / 21px, 			url("../images/picking_select_dotted.svg") repeat-x left bottom / 21px;
	}
}

/*---- いちご狩りWEB予約 ----*/
.p-sp-reserve {
	margin-bottom: 50px;
	padding-bottom: 30px;
	border-bottom: 1px solid #eaeaea;
}
.p-sp-reserve a {
	padding: 36px 0;
	display: block;
	position: relative;
	color: #fff;
	font-size: 2.2rem;
	font-weight: 700;
	line-height: 1;
	text-align: center;
	background: #e72429;
	border-radius: 20px;
}
.p-sp-reserve a:before,
.p-sp-reserve a:after {
	content: '';
}
.p-sp-reserve a:before {
	width: 37px;
	aspect-ratio: 23 / 21;
	margin-right: 20px;
	display: inline-block;
	background: url(../images/ico_cal.svg) no-repeat 0 0 / 100%;
	vertical-align: -7px;
}
.p-sp-reserve a:after {
	width: 9px;
	aspect-ratio: 9 / 15;
	margin-top: -7px;
	position: absolute;
	top: 50%;
	right: 20px;
	background: url(../images/arr_link_def.svg) no-repeat 0 0 / 100%;
}

@media screen and (max-width: 599px) {
	.p-sp-reserve a {
		padding: 28px 0;
		font-size: 2rem;
		letter-spacing: .05em;
		border-radius: 16px;
	}
	.p-sp-reserve a:before {
		width: 30px;
		margin-right: 14px;
		vertical-align: -6px;
	}
}

/*---- Footer ----*/
.p-sp-nav__footer {
	padding-bottom: 80px;
}
.p-sp-nav-footer__logo {
	width: 264px;
	margin-bottom: 32px;
	font-size: 0;
}
.p-sp-nav-footer__logo img {
	width: 100%;
}
.p-sp-nav-footer__add {
	margin-bottom: 16px;
	color: var(--color-brown);
	font-size: 1.8rem;
}
.p-sp-nav-footer__insta a {
	color: var(--color-brown);
	font-family: var(--font-family-overpass);
	font-size: 1.8rem;
	letter-spacing: .05em;
	line-height: 1;
}
.p-sp-nav-footer__insta a:after {
	width: 24px;
	aspect-ratio: 1;
	margin-left: 10px;
	content: '';
	display: inline-block;
	background: url(../images/ico_insta.png) no-repeat 0 0 / 100%;
	vertical-align: -5px;
}

@media screen and (max-width: 599px) {
	.p-sp-nav-footer__logo {
		width: 210px;
	}
.p-sp-nav-footer__add {
		font-size: 1.4rem;
	}
}


/* Main
------------------------------------------------- */
.p-contwrap {
	padding-bottom: 280px;
}
@media screen and (max-width: 1279px) {
	.p-contwrap {
		padding-bottom: 220px;
	}
}
@media screen and (max-width: 1024px) {
	.p-contwrap {
		padding-bottom: 180px;
	}
}
@media screen and (max-width: 767px) {
	.p-contwrap {
		padding-bottom: 150px;
	}
}

/* Footer
------------------------------------------------- */
#l-footer {
	position: relative;
	background: var(--color-brown);
}
#l-footer * {
	color: #fff;
}
#l-footer:before,
#l-footer:after {
	content: '';
	position: absolute;
}
#l-footer:before {
	width: 373px;
	aspect-ratio: 373 / 132;
	margin-left: -736px;
	top: -129px;
	left: 50%;
	background: url("../images/footer_ill01.png") no-repeat 0 0 / 100%;
}
#l-footer:after {
	width: 471px;
	aspect-ratio: 471 / 125;
	margin-right: -763px;
	top: -123px;
	right: 50%;
	background: url("../images/footer_ill02.png") no-repeat 0 0 / 100%;
}
.l-footer__inner {
	width: 100%;
	max-width: 1520px;
	margin: auto;
	padding-bottom: 84px;
	position: relative;
	z-index: 0;
}
.l-footer__inner:after {
	width: 865px;
	aspect-ratio: 865 / 394;
	margin-right: -933px;
	content: '';
	position: absolute;
	top: 46px;
	right: 50%;
	z-index: -1;
	background: url("../images/footer_bg_logo.svg") no-repeat 0 0 / 100%;
}
.l-footer__copy {
	position: absolute;
	right: 0;
	bottom: 84px;
	font-family: var(--font-family-overpass);
	font-size: 1.4rem;
	letter-spacing: .05em;
	line-height: 1;
}
.l-footer__pagetop {
	width: 41px;
	aspect-ratio: 41 / 25;
	position: absolute;
	right: 30px;
	bottom: 32px;
	z-index: 3;
	cursor: pointer;
	transition: all .4s ease-in-out;
}
@media (hover: hover) and (pointer: fine) {
	.l-footer__pagetop:hover {
		bottom: 38px;
	}
}
.l-footer__pagetop img {
	width: 100%;
}

@media screen and (max-width: 1726px) {
	.l-footer__inner:after {
		margin-right: 0;
		right: -175px;
	}
}
@media screen and (max-width: 1620px) {
	.l-footer__inner {
		width: calc(100% - 100px);
	}
}
@media screen and (max-width: 1460px) {
	#l-footer:after {
		margin-right: 0;
		right: -30px;
	}
}
@media screen and (max-width: 1320px) {
	#l-footer:before {
		margin-left: 0;
		left: -70px
	}
}
@media screen and (max-width: 1279px) {
	.l-footer__inner:after {
		width: 692px;
		right: -140px;
	}
}
@media screen and (max-width: 1024px) {
	#l-footer:before {
		width: 298px;
		top: -102px;
	}
	#l-footer:after {
		width: 377px;
		top: -98px;
	}
	.l-footer__inner {
		width: calc(100% - 80px);
	}
	.l-footer__inner:after {
		width: 554px;
		right: -112px;
	}
}
@media screen and (max-width: 959px) {
	.l-footer__inner {
		padding: 100px 0 20px;
		display: flex;
		flex-direction: column;
		align-items: center;
	}
	.l-footer__copy {
		position: inherit;
		right: inherit;
		bottom: inherit;
	}
}
@media screen and (max-width: 767px) {
	#l-footer:before {
		width: 239px;
		top: -83px;
	}
	#l-footer:after {
		width: 301px;
		top: -78px;
	}
	.l-footer__inner {
		width: 90%;
	}
	.l-footer__inner:after {
		width: 443px;
		right: -90px;
	}
	.l-footer__pagetop {
		width: 33px;
		right: 5%;
	}
}
@media screen and (max-width: 599px) {
	#l-footer:before {
		width: 191px;
		top: -66px;
	}
	#l-footer:after {
		width: 241px;
		top: -63px;
	}
	.l-footer__inner {
		padding: 60px 0 20px;
	}
	.l-footer__inner:after {
		width: 354px;
		right: -72px;
	}
	.l-footer__pagetop {
		width: 26px;
		bottom: 60px;
	}
}

/*---------- Navi ----------*/
.l-footer__nav{
	position: absolute;
	top: 107px;
	right: 0;
	z-index: 1;
}
.l-footer__ul {
	display: flex;
	justify-content: flex-end;
	align-items: center;
	gap: 0 40px;
}
.l-footer__li {
	font-size: 0;
}
.l-footer__li a {
	display: block;
	position: relative;
	font-size: 1.8rem;
	font-weight: 700;
	letter-spacing: .05em;
	line-height: 1;
}
.l-footer__li.-picking a:before {
	width: 25px;
	aspect-ratio: 50 / 59;
	margin-left: -13px;
	content: '';
	position: absolute;
	top: -36px;
	left: 50%;
	background: url("../images/fnav_current_ill.png") no-repeat 0 0 / 100%;;
	opacity: 0;
	transition: .4s ease-in-out;
}
@media (hover: hover) and (pointer: fine) {
	.l-footer__li.-picking a:hover:before {
		opacity: 1;
	}
}

@media screen and (max-width: 1279px) {
	.l-footer__ul {
		gap: 0 32px;
	}
	.l-footer__li a {
		font-size: 1.6rem;
	}
}
@media screen and (max-width: 959px) {
	.l-footer__nav {
		position: inherit;
		top: inherit;
		right: inherit;
	}
	.l-footer__ul {
		justify-content: center;
	}
}
@media screen and (max-width: 767px) {
	.l-footer__li a {
		font-size: 1.4rem;
	}
}
@media screen and (max-width: 599px) {
	.l-footer__ul {
		flex-wrap: wrap;
		gap: 0;
	}
	.l-footer__li {
		width: 50%;
		text-align: center;
	}
	.l-footer__li a {
		padding: 16px 0;
		display: block;
	}
}

/*---------- Info ----------*/
.l-footer__info {
	padding-top: 98px;
}
.l-footer-info__logo {
	width: 330px;
	margin-bottom: 46px;
	font-size: 0;
}
.l-footer-info__logo a {
	display: block;
}
.l-footer-info__logo a img {
	width: 100%;
}
.l-footer-info__add {
	margin-bottom: 10px;
	font-size: 1.8rem;
}

@media screen and (max-width: 1279px) {
	.l-footer-info__logo {
		width: 264px;
	}
	.l-footer-info__add {
		font-size: 1.6rem;
	}
}
@media screen and (max-width: 959px) {
	.l-footer__info {
		margin-bottom: 80px;
		padding-top: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
	}
}
@media screen and (max-width: 599px) {
	.l-footer__info {
		padding-top: 50px;
	}
	.l-footer-info__logo {
		width: 210px;
		margin-bottom: 36px;
	}
	.l-footer-info__add {
		font-size: 1.4rem;
	}
}

/* Table */
.l-footer-info__table {
	margin-bottom: 26px;
	display: flex;
	flex-direction: column;
	gap: 10px 0;
}
.l-footer-info__table dl {
	display: flex;
	align-items: center;
	gap: 0 15px;
}
.l-footer-info__table dl dt,
.l-footer-info__table dl dd {
	letter-spacing: .05em;
	line-height: 1.4;
}
.l-footer-info__table dl dt {
	width: 80px;
	padding: 2px 0 4px;
	font-size: 1.4rem;
	text-align: center;
	border: 2px solid #fff;
	border-radius: 5px;
}
.l-footer-info__table dl dd {
	padding-bottom: 4px;
	font-size: 1.8rem;
}
.l-footer-info__follow a {
	position: relative;
	font-family: var(--font-family-overpass);
	font-size: 1.8rem;
	letter-spacing: .05em;
	line-height: 1;
}
.l-footer-info__follow a:before,
.l-footer-info__follow a:after {
	content: '';
}
.l-footer-info__follow a:before {
	width: 18px;
	aspect-ratio: 1;
	position: absolute;
	top: 0;
	right: 9px;
	background: url("../images/ico_insta_footer.png") no-repeat 0 0 / 100%;
}
.l-footer-info__follow a:after {
	width: 36px;
	aspect-ratio: 1;
	margin-left: 24px;
	display: inline-block;
	background: #fff;
	border-radius: 100%;
	vertical-align: -11px;
}

@media screen and (max-width: 1279px) {
	.l-footer-info__table dl dd {
		font-size: 1.6rem;
	}
}
@media screen and (max-width: 599px) {
	.l-footer-info__table dl dd {
		font-size: 1.4rem;
	}
}

/*---------- WEB予約 ----------*/
.p-web-reservation {
	width: 180px;
	aspect-ratio: 1 / 1;
	position: fixed;
	top: 50px;
	right: 50px;
	z-index: 3;
}
.p-web-reservation a {
	width: 100%;
	height: 100%;
	padding-top: 82px;
	display: block;
	position: relative;
	text-align: center;
	background: #e72429 url("../images/ico_cal.svg") no-repeat center top 32px / 46px 42px;
	border-radius: 100%;
}
.p-web-reservation a:before,
.p-web-reservation a:after {
	content: '';
	position: absolute;
}
.p-web-reservation a:before {
	width: 170px;
	aspect-ratio: 1;
	top: 5px;
	left: 5px;
	background: url("../images/circle_reservation.svg") no-repeat 0 0 / 100%;
	animation: rotate-anime 80s linear infinite;
}
@keyframes rotate-anime {
  0%  {transform: rotate(0);}
  100%  {transform: rotate(360deg);}
}
.p-web-reservation a:after {
	width: 6px;
	aspect-ratio: 3 / 5;
	margin-left: -3px;
	bottom: 20px;
	left: 50%;
	background: url("../images/arr_reservation.svg") no-repeat 0 0 / 100%;
}
.p-web-reservation a span {
	display: inline-block;
	color: #fff;
	font-size: 1.8rem;
	font-weight: 700;
	letter-spacing: .05em;
	line-height: 1.33;
	transition: all .5s ease-in-out;
}
@media (hover: hover) and (pointer: fine) {
	.p-web-reservation a:hover span {
		letter-spacing: .12em;
	}
}

.booking-area {
	max-width: 1200px;
	width: 100%;
	margin: 0 auto;
	padding: 50px 25px;
}
.content-form td {
    font-size: 1.6rem;
    padding-bottom: 10px;
      line-height: 2.2rem;
}
@media screen and (max-width: 1279px) {
	.p-web-reservation {
		width: 144px;
		top: 40px;
		right: 40px;
	}
	.p-web-reservation a {
		padding-top: 66px;
		background: #e72429 url("../images/ico_cal.svg") no-repeat center top 26px / 37px 34px;
	}
	.p-web-reservation a:before {
		width: 136px;
		top: 4px;
		left: 4px;
	}
	.p-web-reservation a span {
		font-size: 1.4rem;
	}
}
@media screen and (max-width: 959px) {
	.p-web-reservation {
		display: none;
	}
}

/* sp */
.p-footer-fixed {
	width: 280px;
	display: none;
	position: fixed;
	right: 30px;
	bottom: 30px;
	z-index: 0;
	transition: all .4s ease-in-out;
}
.p-footer-fixed:before {
	width: calc(100% - 12px);
	height: calc(100% - 12px);
	content: '';
	position: absolute;
	top: 4px;
	left: 4px;
	z-index: 1;
	border: 2px dotted #fff;
	border-radius: 12px;
	pointer-events: none;
}
.p-footer-fixed a {
	padding: 26px 0;
	display: block;
	position: relative;
	color: #fff;
	font-size: 1.8rem;
	letter-spacing: .05em;
	line-height: 1;
	text-align: center;
	background: #e72429;
	border-radius: 16px;
}
.p-footer-fixed a:before,
.p-footer-fixed a:after {
	content: '';
	display: inline-block;
}
.p-footer-fixed a:before {
	width: 30px;
	aspect-ratio: 27 / 25;
	margin-right: 8px;
	background: url(../images/ico_cal_tab_wt.svg) no-repeat 0 0 / 100%;
	vertical-align: -6px;
}
.p-footer-fixed a:after {
	width: 6px;
	aspect-ratio: 3 / 5;
	margin-left: 10px;
	background: url(../images/arr_reservation.svg) no-repeat 0 0 / 100%;
}
@media screen and (max-width: 959px) {
	.p-footer-fixed {
		display: block;
		opacity: 0;
	}
	.p-footer-fixed.fixed {
		opacity: 1;
	}
	.p-footer-fixed.fixed.is-hidden {
		opacity: 0;
		pointer-events: none;
	}
}
@media screen and (max-width: 599px) {
	.p-footer-fixed {
		width: 220px;
		right: 5px;
		bottom: 5px;
	}
	.p-footer-fixed a {
		padding: 20px 0;
		font-size: 1.4rem;
	}
	.p-footer-fixed a:before {
		width: 26px;
	}
}


/* =================================================
Object
================================================= */

/* Compornent
------------------------------------------------- */
/*---------- Page title ----------*/
.c-page-mv {
	width: 100%;
	height: 480px;
	margin-bottom: 32px;
	display: flex;
	align-items: flex-end;
	background: url("../images/sub_mv_img.jpg") no-repeat center top / cover;
}
.picking .c-page-mv {
	background: url("../images/picking_mv_img.jpg") no-repeat center top / cover;
}
.about .c-page-mv {
	background: url("../images/about_mv_img.jpg") no-repeat right top / cover;
}
.c-page-ttl {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 60px 0 12px;
	text-align: center;
	position: relative;
	z-index: 0;
	background: #fff;
	border-radius: 20px 20px 0 0;
}
.c-page-ttl:before,
.c-page-ttl:after {
	width: 20px;
	aspect-ratio: 1;
	content: '';
	position: absolute;
	bottom: 0;
}
.c-page-ttl:before {
	left: -20px;
	background: url("../images/page_ttl_corner_l.png") no-repeat 0 0 / 100%;
}
.c-page-ttl:after {
	right: -20px;
	background: url("../images/page_ttl_corner_r.png") no-repeat 0 0 / 100%;
}
.c-page-ttl__ja {
	margin-bottom: 20px;
	color: var(--color-brown);
	font-size: 4.5rem;
	font-weight: 700;
	letter-spacing: .05em;
	line-height: 1;
}
.c-page-ttl__eng {
	color: #fed400;
	font-family: var(--font-family-overpass);
	letter-spacing: .05em;
	line-height: 1;
}

@media screen and (max-width: 1300px) {
	.c-page-ttl {
		width: calc(100% - 100px);
	}
}
@media screen and (max-width: 1279px) {
	.c-page-ttl__ja {
		font-size: 4rem;
	}
}
@media screen and (max-width: 1024px) {
	.c-page-mv {
		height: 380px;
	}
	.c-page-ttl {
		width: calc(100% - 80px);
		padding: 48px 0 12px;
	}
	.c-page-ttl__ja {
		font-size: 3.6rem;
	}
}
@media screen and (max-width: 767px) {
	.c-page-mv {
		height: 300px;
	}
	.c-page-ttl {
		width: 90%;
		padding: 38px 0 12px;
		border-radius: 16px 16px 0 0;
	}
	.c-page-ttl:before,
	.c-page-ttl:after {
		width: 16px;
	}
	.c-page-ttl:before {
		left: -16px;
	}
	.c-page-ttl:after {
		right: -16px;
	}
	.c-page-ttl__ja {
		font-size: 3rem;
	}
}
@media screen and (max-width: 599px) {
	.c-page-mv {
		height: 240px;
	}
	.c-page-ttl {
		padding: 24px 0 12px;
	}
	.c-page-ttl:before {
		left: -15px;
	}
	.c-page-ttl:after {
		right: -15px;
	}
	.c-page-ttl__ja {
		margin-bottom: 16px;
		font-size: 2.4rem;
	}
}

/*---------- Section title ----------*/
.c-sec__ttl {
	margin-bottom: 46px;
	color: var(--color-brown);
	font-size: 4rem;
	font-weight: 700;
	line-height: 1;
	text-align: center;
}
.c-sec__ttl:after {
	width: 40px;
	height: 8px;
	margin: 30px auto 0;
	content: '';
	display: block;
	background: var(--color-brown);
	border-radius: 4px;
}

@media screen and (max-width: 1279px) {
	.c-sec__ttl {
		font-size: 3.6rem;
	}
}
@media screen and (max-width: 1024px) {
	.c-sec__ttl {
		margin-bottom: 36px;
		font-size: 3.2rem;
	}
	.c-sec__ttl:after {
		width: 32px;
		height: 6px;
		margin: 24px auto 0;
	}
}
@media screen and (max-width: 767px) {
	.c-sec__ttl {
		margin-bottom: 30px;
		font-size: 2.6rem;
	}
	.c-sec__ttl:after {
		width: 26px;
		height: 5px;
		margin: 20px auto 0;
	}
}
@media screen and (max-width: 599px) {
	.c-sec__ttl {
		font-size: 2rem;
	}
	.c-sec__ttl:after {
		width: 20px;
		height: 4px;
		margin: 15px auto 0;
	}
}

/*---------- Breadcrumb ----------*/
.c-breadcrumb {
	width: 100%;
	max-width: 1200px;
	margin: auto;
}
.c-breadcrumb__ul {
	display: flex;
	align-items: flex-start;
	flex-wrap: wrap;
}
.c-breadcrumb__li {
	color: var(--color-brown);
	font-size: 1.4rem;
	letter-spacing: .05em;
	line-height: 1;
	flex-shrink: 0;
}
.c-breadcrumb__li:nth-last-of-type(1) {
	flex-shrink: 1;
}
.c-breadcrumb__li:after {
	margin: 0 6px;
	content: '>';
	display: inline-block;
	color: var(--color-brown);
	letter-spacing: .05em;
	line-height: 1;
	vertical-align: 2px;
}
.c-breadcrumb__li:nth-last-of-type(1):after {
	display: none;
}
.c-breadcrumb__li a {
	color: #e72429;
	letter-spacing: .05em;
	line-height: 1;
	border-bottom: 1px solid #e72429;
}
.c-breadcrumb__li a span {
	color: #e72429;
	letter-spacing: .05em;
}

@media screen and (max-width: 1300px) {
	.c-breadcrumb {
		width: calc(100% - 100px);
	}
}
@media screen and (max-width: 1024px) {
	.c-breadcrumb {
		width: calc(100% - 80px);
	}
	.c-breadcrumb__li {
		line-height: 1.5;
	}
}
@media screen and (max-width: 767px) {
	.c-breadcrumb {
		width: 90%;
	}
	.c-breadcrumb__li {
		font-size: 1.3rem;
	}
}
@media screen and (max-width: 599px) {
	.c-breadcrumb__li {
		font-size: 1.2rem;
	}
}

/*---------- Button ----------*/
.c-btn-def {
	width: 400px;
	margin: auto;
	font-size: 0;
}
.c-link-def {
	padding: 24px 0 26px;
	display: block;
	position: relative;
	color: #fff;
	font-size: 2rem;
	font-weight: 700;
	line-height: 1;
	text-align: center;
	border-radius: 20px;
	transition: all .3s ease-in-out;
}
@media (hover: hover) and (pointer: fine) {
	.c-link-def:hover {
		opacity: .7;
	}
}
.c-link-def:after {
	width: 9px;
	aspect-ratio: 9 / 15;
	margin-top: -7px;
	content: '';
	position: absolute;
	top: 50%;
	right: 20px;
	background:url("../images/arr_link_def.svg") no-repeat 0 0 / 100%;
}

@media screen and (max-width: 767px) {
	.c-link-def {
		padding: 19px 0 21px;
		font-size: 1.6rem;
		border-radius: 16px;
	}
}
@media screen and (max-width: 599px) {
	.c-btn-def {
		width: 74.2%;
	}
	.c-link-def {
		padding: 15px 0 16px;
	}
}

/*---------- Form ----------*/
.c-txtbox-def,
.c-txtarea-def {
	width: 445px;
	height: 47px;
	padding: 0 12px;
	color: var(--color-brown);
	border: 1px solid var(--color-yellow);
	border-radius: 5px;
}
.c-txtarea-def {
	width: 550px;
	height: 240px;
	padding: 8px 12px;
}

.c-btn-submit {
	width: 100%;
	padding: 29px 0;
	display: block;
	color: #fff;
	font-size: 2rem;
	font-weight: 700;
	line-height: 1;
	text-align: center;
	background: var(--color-red);
	border: none;
	border-radius: 20px !important;
	cursor: pointer;
	transition: all .4s ease-in-out;
}
.c-btn-submit.-back {
	background: #aaa7a7;
}
@media (hover: hover) and (pointer: fine) {
	.c-btn-submit:hover {
		opacity: .7;
	}
}

@media screen and (max-width: 959px) {
	.c-txtbox-def,
	.c-txtarea-def {
		width: 100%;
	}
}
@media screen and (max-width: 767px) {
	.c-btn-submit {
		padding: 20px 0;
		font-size: 1.6rem;
	}
}
@media screen and (max-width: 599px) {
	.c-btn-submit {
		font-size: 1.4rem;
		border-radius: 16px !important;
	}
}


/*---------- Pagenation ----------*/
.c-btn-article {
	width: 70px;
	aspect-ratio: 1;
	position: absolute;
	top: 0;
	font-size: 0;
}
.c-btn-article.-prev {
	margin-left: -240px;
	left: 50%;
}
.c-btn-article.-next {
	margin-right: -240px;
	right: 50%;
}
.c-btn-article a {
	width: 100%;
	height: 100%;
	padding: 24px 0;
	display: block;
	text-align: center;
	border: 3px solid var(--color-brown);
	border-radius: 100%;
	transition: all .4s ease-in-out;
}
@media (hover: hover) and (pointer: fine) {
	.c-btn-article.-prev a:hover {
		transform: translateX(-5px);
	}
	.c-btn-article.-next a:hover {
		transform: translateX(5px);
	}
}
.c-btn-article a img {
	width: 9px;
	aspect-ratio: 9 / 15;
	margin: auto;
}

@media screen and (max-width: 767px) {
	.c-btn-article {
		width: 56px;
	}
	.c-btn-article.-prev {
		margin-left: -226px;
	}
	.c-btn-article.-next {
		margin-right: -226px;
	}
	.c-btn-article a {
		padding: 17px 0;
	}
}
@media screen and (max-width: 599px) {
	.c-btn-article {
		width: 47px;
	}
	.c-btn-article a {
		padding: 13px 0;
		border-width: 2px;
	}
	.c-btn-article.-prev {
    margin-left: 0;
		left: 0;
	}
	.c-btn-article.-next {
    margin-right: 0;
		right: 0;
	}
}
@media screen and (max-width: 424px) {
}


/* Project
------------------------------------------------- */

/* ---------- Index ----------*/
/*----- Mv -----*/
#p-mv {
	width: 100%;
	height: 100vh;
	height: 100svh;
	margin-bottom: 50px;
	position: relative;
	background: url("../images/mv_img.jpg") no-repeat center center / cover;
}

/* キャッチ */
.p-mv__catch {
	width: 100%;
	position: absolute;
	top: 50%;
	left: 50%;
	font-size: 0;
	text-align: center;
	transform: translate(-50%, -50%);
}
.p-mv__catch span {
	width: fit-content;
	margin: 0 auto 10px;
	padding: 0 10px 10px;
	display: block;
	font-size: 4.5rem;
	font-weight: 700;
	line-height: 1;
}

@media screen and (max-width: 1279px) {
	.p-mv__catch span {
		font-size: 4rem;
	}
}
@media screen and (max-width: 1024px) {
	.p-mv__catch span {
		font-size: 3.6rem;
	}
}
@media screen and (max-width: 959px) {
	#p-mv {
		height: 80vh;
		height: 80svh;
	}
	.p-mv__catch span {
		font-size: 3.2rem;
	}
}
@media screen and (max-width: 767px) {
	.p-mv__catch span {
		font-size: 2.8rem;
	}
}
@media screen and (max-width: 599px) {
	.p-mv__catch span {
		font-size: 2.6rem;
	}
}

/* お知らせ */
.p-tp-news {
	margin-left: -600px;
	padding: 18px 0 16px;
	display: flex;
	position: absolute;
	bottom: 50px;
	left: 50%;
	background: #fff;
	border-radius: 10px;
	box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, .2);
}
.p-tp-news__ttlarea {
	width: calc(100% - 158px);
}
.p-tp-news__ttlarea a {
	padding: 0 30px;
	display: flex;
	border-right: 1px solid var(--color-brown);
}
.p-tp-news__date {
	width: 128px;
	padding-top: 3px;
	color: var(--color-brown);
	font-family: var(--font-family-overpass);
	font-weight: 700;
}
.p-tp-news__ttl {
	width: calc(100% - 128px);
	transition: all .3s ease-in-out;
}
@media (hover: hover) and (pointer: fine) {
	.p-tp-news__ttlarea a:hover .p-tp-news__ttl {
		color: var(--color-brown);
	}
}
.p-tp-news__btn {
	width: 158px;
}
.p-tp-news__btn a {
	height: 100%;
	padding: 0 0 0 30px;
	display: flex;
	align-items: center;
	color: var(--color-brown);
	font-size: 1.4rem;
}
.p-tp-news__btn a:after {
	width: 6px;
	aspect-ratio: 3 / 5;
	margin-left: 15px;
	content: '';
	display: inline-block;
	background: url("../images/arr_tp_news.svg") no-repeat 0 0 / 100%;
	transition: all .3s ease-in-out;
}
@media (hover: hover) and (pointer: fine) {
	.p-tp-news__btn a:hover:after {
		margin-left: 20px;
	}
}

@media screen and (max-width: 1300px) {
	.p-tp-news {
		margin-left: 0;
		left: 50px;
	}
}
@media screen and (max-width: 1024px) {
	.p-tp-news {
		left: 40px;
	}
}
@media screen and (max-width: 767px) {
	.p-tp-news {
		top: 100%;
		bottom: inherit;
		left: 5%;
		transform: translateY(-50%);
	}
	.p-tp-news__ttlarea {
		width: calc(100% - 140px);
	}
	.p-tp-news__date,
	.p-tp-news__ttl {
		font-size: 1.4rem;
	}
	.p-tp-news__date {
		width: 110px;
	}
	.p-tp-news__ttl {
		width: calc(100% - 110px);
	}
	.p-tp-news__ttlarea a {
		padding: 0 20px;
	}
	.p-tp-news__btn {
		width: 140px;
	}
	.p-tp-news__btn a {
		padding: 0 0 0 16px;
	}
}
@media screen and (max-width: 599px) {
	.p-tp-news {
		flex-direction: column;
		gap: 8px 0;
	}
	.p-tp-news__ttlarea,
	.p-tp-news__btn {
		width: 100%;
	}
	.p-tp-news__ttlarea a {
		border: none;
	}
	.p-tp-news__date,
	.p-tp-news__ttl {
		font-size: 1.2rem;
	}
	.p-tp-news__btn {
		text-align: right;
	}
	.p-tp-news__btn a {
		padding: 0 20px 0 0;
		display: inline-block;
		font-size: 1.2rem;
	}
}
@media screen and (max-width: 424px) {
	.p-tp-news__ttlarea a {
		flex-direction: column;
	}
	.p-tp-news__ttl {
		width: 100%;
	}
}

/*----- Concept -----*/
#p-tp-concept {
	padding-bottom: 140px;
	position: relative;
	z-index: 0;
	border-bottom: 5px solid #e0cc99;
}
#p-tp-concept:before,
#p-tp-concept:after {
	content: '';
	position: absolute;
	bottom: -5px;
	z-index: -1;
}
#p-tp-concept:before {
	width: 340px;
	aspect-ratio: 17 / 3;
	margin-left: -880px;
	left: 50%;
	background: url("../images/tp_concept_ill03.png") no-repeat 0 0 / 100%;
}
#p-tp-concept:after {
	width: 490px;
	aspect-ratio: 245 / 64;
	margin-right: -920px;
	right: 50%;
	background: url("../images/tp_concept_ill04.png") no-repeat 0 0 / 100%;
}
.p-tp-concept__inner {
	width: 100%;
	max-width: 1260px;
	margin: auto;
	padding-top: 130px;
	position: relative;
	z-index: 0;
}
.p-tp-concept__inner:before,
.p-tp-concept__inner:after {
	content: '';
	position: absolute;
}
.p-tp-concept__inner:before {
	width: 360px;
	aspect-ratio: 45 / 14;
	top: 20px;
	left: 0;
	background: url("../images/tp_concept_ill01.png") no-repeat 0 0 / 100%;
}
.p-tp-concept__inner:after {
	width: 336px;
	aspect-ratio: 28 / 9;
	margin-right: -515px;
	top: 0;
	right: 50%;
	background: url("../images/tp_concept_ill02.png") no-repeat 0 0 / 100%;
}
.p-tp-concept__txt {
	color: var(--color-brown);
	font-size: 2.2rem;
	line-height: 2;
	text-align: center;
}
.p-tp-concept__txt br.-br {
	display: none;
}

@media screen and (max-width: 1720px) {
	#p-tp-concept:before {
		margin-left: 0;
		left: -20px;
	}
	#p-tp-concept:after {
		margin-right: 0;
		right: -60px;
	}
}
@media screen and (max-width: 1360px) {
	.p-tp-concept__inner {
		width: calc(100% - 100px);
	}
}
@media screen and (max-width: 1130px) {
	.p-tp-concept__inner:after {
		margin-right: 0;
		right: 0;
	}
}
@media screen and (max-width: 1024px) {
	#p-tp-concept {
		padding-bottom: 112px;
	}
	#p-tp-concept:before {
		width: 272px;
	}
	#p-tp-concept:after {
		width: 392px;
	}
	.p-tp-concept__inner {
		width: calc(100% - 80px);
		padding-top: 104px;
	}
	.p-tp-concept__inner:before {
		width: 288px;
	}
	.p-tp-concept__inner:after {
		width: 269px;
	}
	.p-tp-concept__txt {
		font-size: 1.8rem;
	}
}
@media screen and (max-width: 959px) {
	.p-tp-concept__txt br.-br {
		display: block;
	}
}
@media screen and (max-width: 767px) {
	#p-tp-concept {
		padding-bottom: 90px;
	}
	#p-tp-concept:before {
		width: 218px;
	}
	#p-tp-concept:after {
		width: 314px;
	}
	.p-tp-concept__inner {
		width: 90%;
		padding-top: 144px;
	}
	.p-tp-concept__inner:before {
		width: 230px;
		top: 70px;
	}
	.p-tp-concept__inner:after {
		width: 215px;
		top: 50px;
	}
	.p-tp-concept__txt {
		font-size: 1.6rem;
	}
}
@media screen and (max-width: 599px) {
	#p-tp-concept:before {
		width: 174px;
	}
	#p-tp-concept:after {
		width: 251px;
	}
	#p-tp-concept:before,
	#p-tp-concept:after {
		bottom: -3px;
	}
	.p-tp-concept__inner:before {
		width: 184px;
		top: 75px;
	}
	.p-tp-concept__inner:after {
		width: 172px;
		top: 32px;
	}
	.p-tp-concept__txt {
		font-size: 1.4rem;
		letter-spacing: .05em;
		text-align: left;
	}
	.p-tp-concept__txt br.-br {
		display: none;
	}
}


/*----- いちごのおうち -----*/
#p-tp-house {
	margin: 0 0 150px;
	padding: 150px 0;
	background: #fff1f2;
}
.p-tp-house__inner {
	margin: auto;
}

@media screen and (max-width: 1024px) {
	#p-tp-house {
		margin: 0 0 120px;
		padding: 120px 0;
	}
}
@media screen and (max-width: 767px) {
	#p-tp-house {
		margin: 0 0 80px;
		padding: 80px 0;
	}
}

/* Intro */
.p-tp-house__intro {
	margin-bottom: 32px;
	position: relative;
	z-index: 0;
	text-align: center;
}
.p-tp-house__intro:before,
.p-tp-house__intro:after {
	width: 184px;
	aspect-ratio: 184 / 199;
	position: absolute;
	top: -10px;
	content: '';
}
.p-tp-house__intro:before {
	margin-left: -500px;
	left: 50%;
	background: url("../images/tp_house_ill01.svg") no-repeat 0 0 / 100%;
}
.p-tp-house__intro:after {
	margin-right: -500px;
	right: 50%;
	background: url("../images/tp_house_ill02.svg") no-repeat 0 0 / 100%;
}
.p-tp-house__ttl {
	width: 380px;
	aspect-ratio: 380 / 70;
	margin: 0 auto 18px;
}
.p-tp-house__ttl img {
	width: 100%;
}
.p-tp-house__subttl {
	margin-bottom: 32px;
	color: var(--color-red);
	line-height: 1;
}
.p-tp-house__txt {
	color: var(--color-brown);
	line-height: 2;
}

@media screen and (max-width: 1200px) {
	.p-tp-house__intro:before {
		margin-left: 0;
		left: 50px;
	}
	.p-tp-house__intro:after {
		margin-right: 0;
		right: 50px;
	}
}
@media screen and (max-width: 1024px) {
	.p-tp-house__intro:before,
	.p-tp-house__intro:after {
		width: 148px;
	}
	.p-tp-house__ttl {
		width: 304px;
	}
}
@media screen and (max-width: 959px) {
	.p-tp-house__intro:before,
	.p-tp-house__intro:after {
		width: 118px;
	}
	.p-tp-house__intro:before {
		left: 5%;
	}
	.p-tp-house__intro:after {
		right: 5%;
	}
	.p-tp-house__ttl {
		width: 243px;
	}
}
@media screen and (max-width: 599px) {
	.p-tp-house__intro:before,
	.p-tp-house__intro:after {
		width: 95px;
	}
	.p-tp-house__intro:before {
		left: 0;
	}
	.p-tp-house__intro:after {
		right: 0;
	}
	.p-tp-house__ttl {
		width: 195px;
	}
	.p-tp-house__txt {
		display: flex;
		justify-content: center;
		text-align: left;
	}
}
@media screen and (max-width: 424px) {
	.p-tp-house__intro:before,
	.p-tp-house__intro:after {
		width: 76px;
		top: 10px;
	}
}

/* SUNUS VILLAGEで楽しめるいちご */
.p-tp-house__box {
	margin-bottom: 50px;
	padding: 13px 18px 14px;
	display: flex;
	align-items: center;
	background: #fff;
	border: 5px solid var(--color-red);
	border-radius: 20px;
}
.p-tp-house-box__img {
	width: 367px;
	aspect-ratio: 367 / 363;
	margin-right: 10px;
}
.p-tp-house-box__img img {
	width: 100%;
}
.p-tp-house-box__mid {
	width: 385px;
	margin-right: 54px;
	flex-shrink: 0;
}
.p-tp-house-box__leadarea {
	margin-bottom: 35px;
	text-align: center;
}
.p-tp-house-box__leadarea span {
	width: fit-content;
	margin: 0 auto 10px;
	padding: 8px 18px 12px;
	display: block;
	color: #fff;
	font-size: 2.8rem;
	font-weight: 700;
	line-height: 1;
	background: #00b108;
}
.p-tp-house-box__leadarea span:nth-of-type(2) {
	margin-bottom: 0;
}
.p-tp-house-box__ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 8px 0;
}
.p-tp-house-box__li {
	width: 50%;
	font-size: 0;
	position: relative;
	z-index: 0;
}
.p-tp-house-box__li:nth-of-type(even) {
	padding-left: 25px;
}
.p-tp-house-box__li:before,
.p-tp-house-box__li:after {
	content: '';
}
.p-tp-house-box__li:before {
	width: 24px;
	aspect-ratio: 1;
	margin-right: 10px;
	display: inline-block;
	background: var(--color-red);
	border-radius: 100%;
	vertical-align: -5px;
}
.p-tp-house-box__li:after {
	width: 6px;
	aspect-ratio: 6 / 9;
	position: absolute;
	top: 10px;
	left: 10px;
	background: url("../images/arr_tp_house.svg") no-repeat 0 0 / 100%;
}
.p-tp-house-box__li:nth-of-type(even):after {
	left: 35px;
}
.p-tp-house-box__li a {
	padding: 0 0 14px 5px;
	display: inline-block;
	font-size: 1.8rem;
	line-height: 1;
	background: url("../images/tp_house_txt_dotted.svg") no-repeat left bottom;
}
.p-tp-house-box__figure {
	width: 320px;
	flex-shrink: 0;
}
.p-tp-house-box__figure img {
	width: 100%;
}

@media screen and (max-width: 1199px) {
	.p-tp-house__box {
		padding: 20px 40px;
		flex-wrap: wrap;
		justify-content: center;
		gap: 54px;
	}
	.p-tp-house-box__img {
		display: none;
	}
	.p-tp-house-box__mid {
		margin-right: 0;
	}
}
@media screen and (max-width: 928px) {
	.p-tp-house__box {
		padding: 40px 5%;
	}
}
@media screen and (max-width: 767px) {
	.p-tp-house-box__leadarea span {
		font-size: 2.4rem;
	}
	.p-tp-house-box__li:before {
		width: 20px;
	}
	.p-tp-house-box__li a {
		font-size: 1.8rem;
	}
	.p-tp-house-box__li:after {
		top: 7px;
		left: 8px;
	}
	.p-tp-house-box__li:nth-of-type(even):after {
		left: 33px;
	}
}
@media screen and (max-width: 599px) {
	.p-tp-house__box {
		gap: 36px;
		border-width: 3px;
		border-radius: 16px;
	}
	.p-tp-house-box__mid {
		flex-shrink: 1;
	}
	.p-tp-house-box__leadarea span {
		padding: 9px 18px 11px;
		font-size: 2rem;
	}
	.p-tp-house-box__li:after {
		top: 6px;
	}
	.p-tp-house-box__li a {
		padding:  0 0 14px;
		font-size: 1.5rem;
	}
}
@media screen and (max-width: 424px) {
	.p-tp-house-box__figure {
		width: 256px;
	}
}

/* Button */
.p-link-house {
	background: var(--color-red);
}

/*----- 農園について -----*/
#p-tp-about {
	padding-bottom: 180px;
	position: relative;
	border-bottom: 3px solid #E0CC99;
}
#p-tp-about:before,
#p-tp-about:after {
	content: '';
	position: absolute;
	bottom: -2px;
	z-index: -1;
}
#p-tp-about:before {
	width: 374px;
	aspect-ratio: 187 / 66;
	margin-left: -734px;
	left: 50%;
	background: url("../images/tp_about_ill01.jpg") no-repeat 0 0 / 100%;
}
#p-tp-about:after {
	width: 472px;
	aspect-ratio: 118 / 33;
	margin-right: -763px;
	right: 50%;
	background: url("../images/tp_about_ill02.jpg") no-repeat 0 0 / 100%;
}
.p-tp-about__txt {
	margin-bottom: 50px;
	line-height: 2;
	text-align: center;
}
.p-tp-about__inner {
	margin: auto;
}

@media screen and (max-width: 1460px) {
	#p-tp-about:after {
		margin-right: 0;
		right: -30px;
	}
}
@media screen and (max-width: 1320px) {
	#p-tp-about:before {
		margin-left: 0;
		left: -70px;
	}
}
@media screen and (max-width: 1024px) {
	#p-tp-about {
		padding-bottom: 140px;
	}
	#p-tp-about:before {
		width: 299px;
	}
	#p-tp-about:after {
		width: 378px;
	}
}
@media screen and (max-width: 767px) {
	#p-tp-about {
		padding-bottom: 100px;
	}
	#p-tp-about:before {
		width: 239px;
	}
	#p-tp-about:after {
		width: 302px;
	}
}
@media screen and (max-width: 599px) {
	#p-tp-about:before {
		width: 191px;
	}
	#p-tp-about:after {
		width: 242px;
	}
	.p-tp-about__txt {
		text-align: left;
	}
}

/* Button */
.p-link-about {
	background: var(--color-brown);
}

/*----- 感染防止対策について -----*/
#p-tp-covid {
	padding: 100px 0;
	background: #f0ede7;
}
.p-tp-covid__inner {
	margin: auto;
}
.p-tp-covid__txt {
	margin-bottom: 60px;
	line-height: 2;
	text-align: center;
}

@media screen and (max-width: 767px) {
	#p-tp-covid {
		padding: 80px 0;
	}
}
@media screen and (max-width: 599px) {
	.p-tp-covid__txt {
		text-align: left;
	}
}

/* 対策事項, お客さまへのお願い */
.p-tp-covid__box {
	margin-bottom: 30px;
	padding: 30px;
	position: relative;
	background: #fff;
	cursor: pointer;
}
.p-tp-covid__box:nth-of-type(2) {
	margin-bottom: 0;
}
.p-tp-covid-box__ttl {
	font-size: 2.2rem;
	font-weight: 700;
	line-height: 1;
}
.p-tp-covid-box__ttl:before {
	width: 5px;
	height: 27px;
	margin-right: 10px;
	content: '';
	display: inline-block;
	background: var(--color-brown);
	border-radius: 3px;
	vertical-align: -5px;
}
.p-tp-covid-box__cont {
	margin-top: 30px;
	padding: 25px 10px 10px;
	display: none;
	border-top: 1px dotted var(--color-brown);
}
.p-tp-covid-box__ul.-please {
	margin-bottom: 30px;
}
.p-tp-covid-box__ll {
	padding-left: 20px;
	position: relative;
	line-height: 2;
}
.p-tp-covid-box__ll:before {
	width: 8px;
	aspect-ratio: 1;
	content: '';
	position: absolute;
	top: 13px;
	left: 0;
	background: var(--color-brown);
	border-radius: 100%;
}
.p-tp-covid-box__txt {
	padding-left: 20px;
	line-height: 2;
}
.p-tp-covid-box__arr {
	width: 28px;
	height: 15px;
	position: absolute;
	top: 36px;
	right: 30px;
}
.p-tp-covid-box__arr span {
	width: 20px;
	height: 2px;
	display: inline-block;
	position: absolute;
	top: 7px;
	background: var(--color-brown);
	transition: all .2s ease-in-out;
}
.p-tp-covid-box__arr span:nth-of-type(1) {
	left: -3px;
	transform: rotate(45deg);
}
.p-tp-covid-box__arr span:nth-of-type(2) {
	right: -3px;
	transform: rotate(-45deg);
}
.p-tp-covid-box__arr.is-trigger span:nth-of-type(1) {
	transform: rotate(-225deg);
}
.p-tp-covid-box__arr.is-trigger span:nth-of-type(2) {
	transform: rotate(225deg);
}

@media screen and (max-width: 1024px) {
	.p-tp-covid__box {
		padding: 24px;
		margin-bottom: 24px;
	}
	.p-tp-covid-box__ttl {
		font-size: 1.8rem;
	}
	.p-tp-covid-box__ttl:before {
		width: 4px;
		height: 22px;
		vertical-align: -4px;
	}
	.p-tp-covid-box__arr {
		width: 22px;
		height: 12px;
		top: 29px;
		right: 24px;
	}
	.p-tp-covid-box__arr span {
		width: 16px;
		top: 6px;
	}
	.p-tp-covid-box__arr span:nth-of-type(1) {
		left: -2px;
	}
	.p-tp-covid-box__arr span:nth-of-type(2) {
		right: -2px;
	}
	.p-tp-covid-box__cont {
		margin-top: 24px;
		padding: 20px 10px 8px;
	}
}
@media screen and (max-width: 767px) {
	.p-tp-covid__box {
		padding: 18px;
		margin-bottom: 20px;
	}
	.p-tp-covid-box__ttl {
		font-size: 1.6rem;
	}
	.p-tp-covid-box__ttl:before {
		width: 3px;
		height: 18px;
		vertical-align: -3px;
	}
	.p-tp-covid-box__arr {
		width: 18px;
		height: 10px;
		top: 23px;
		right: 18px;
	}
	.p-tp-covid-box__arr span {
		width: 13px;
		height: 1px;
		top: 4px;
	}
	.p-tp-covid-box__arr span:nth-of-type(1) {
		left: -2px;
	}
	.p-tp-covid-box__arr span:nth-of-type(2) {
		right: -2px;
	}
	.p-tp-covid-box__cont {
		margin-top: 18px;
		padding: 16px 10px 6px;
	}
}
@media screen and (max-width: 599px) {
	.p-tp-covid-box__ll:before {
		top: 11px;
	}
}

/*----- Instagram -----*/
#p-tp-insta {
	margin: auto;
	padding: 86px 0 0;
}

/* Header */
.p-tp-insta__header {
	margin-bottom: 50px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.p-tp-insta__ttl,
.p-tp-insta__id a {
	font-family: var(--font-family-worksans);
	font-weight: var(--font-weight-regular);
	line-height: 1;
}
.p-tp-insta__ttl {
	position: relative;
	font-size: 4rem;
}
.p-tp-insta__ttl:after {
	width: 307px;
	aspect-ratio: 307 / 59;
	margin-left: 20px;
	content: '';
	display: inline-block;
	background: url("../images/tp_insta_ill.png") no-repeat 0 0 / 100%;
	vertical-align: -13px;
}
.p-tp-insta__id a:before {
	width: 24px;
	aspect-ratio: 1;
	margin-right: 10px;
	content: '';
	display: inline-block;
	background: url("../images/ico_insta.png") no-repeat 0 0 / 100%;
	vertical-align: -7px;
}

@media screen and (max-width: 1024px) {
	.p-tp-insta__ttl {
		font-size: 3.2rem;
	}
	.p-tp-insta__ttl:after {
		width: 246px;
		margin-left: 16px;
		vertical-align: -10px;
	}
}
@media screen and (max-width: 767px) {
	.p-tp-insta__ttl {
		font-size: 2.6rem;
	}
	.p-tp-insta__ttl:after {
		width: 196px;
		margin-left: 12px;
		vertical-align: -8px;
	}
	.p-tp-insta__id a:before {
		width: 18px;
		vertical-align: -5px;
	}
}
@media screen and (max-width: 599px) {
	.p-tp-insta__header {
		margin-bottom: 40px;
		flex-direction: column;
		align-items: flex-start;
		gap: 12px 0;
	}
	.p-tp-insta__ttl {
		font-size: 2.43rem;
		letter-spacing: .05em;
	}
}


/* List */
.p-tp-insta__ul {
	display: grid;
	grid-template-columns: repeat(auto-fit, 19.333%);
	gap: 10px .82%;
}
.p-tp-insta__li img {
	width: 100%;
}

@media screen and (max-width: 1299px) {
	.p-tp-insta__ul {
		gap: .769vw .82%;
	}
}
@media screen and (max-width: 599px) {
	.p-tp-insta__ul {
		grid-template-columns: repeat(auto-fit, 48.52%);
		gap: 10px;
	}
}
@media screen and (max-width: 374px) {
	.p-tp-insta__ul {
		grid-template-columns: repeat(auto-fit, 48.9%);
		gap: 6px;
	}
}


/* ---------- 農園について ----------*/
/*----- Intro -----*/
#p-about-intro {
	margin-top: 40px;
	padding-bottom: 195px;
	position: relative;
	z-index: 0;
	border-bottom: 5px solid #e0cc99;
}
#p-about-intro:before,
#p-about-intro:after {
	content: '';
	position: absolute;
	bottom: -5px;
	z-index: -1;
}
#p-about-intro:before {
	width: 340px;
	aspect-ratio: 17 / 3;
	margin-left: -880px;
	left: 50%;
	background: url(../images/tp_concept_ill03.png) no-repeat 0 0 / 100%;
}
#p-about-intro:after {
	width: 490px;
	aspect-ratio: 245 / 64;
	margin-right: -920px;
	right: 50%;
	background: url("../images/tp_concept_ill04.png") no-repeat 0 0 / 100%;
}
.p-about-inner {
	margin: auto;
}
.p-about-intro__inner {
	width: 100%;
	max-width: 1140px;
	margin: 0 auto 90px;
	padding-top: 125px;
	position: relative;
	z-index: 0;
}
.p-about-intro__inner:before,
.p-about-intro__inner:after {
	content: '';
	position: absolute;
}
.p-about-intro__inner:before {
	width: 360px;
	aspect-ratio: 45 / 14;
	top: 20px;
	left: 0;
	background: url("../images/tp_concept_ill01.png") no-repeat 0 0 / 100%;
}
.p-about-intro__inner:after {
	width: 336px;
	aspect-ratio: 28 / 9;
	top: 0;
	right: 0;
	background: url("../images/tp_concept_ill02.png") no-repeat 0 0 / 100%;
}
.p-about-intro__ttl {
	width: 513px;
	aspect-ratio: 513 / 37;
	margin: 0 auto 56px;
}
.p-about-intro__ttl img {
	width: 100%;
}
.p-about-intro__txt {
	margin-bottom: 35px;
	color: var(--color-brown);
	font-size: 1.8rem;
	line-height: 2;
	text-align: center;
}
.p-about-intro__txt:nth-last-of-type(1) {
	margin-bottom: 0;
}

@media screen and (max-width: 1720px) {
	#p-about-intro:before {
		margin-left: 0;
		left: -20px;
	}
	#p-about-intro:after {
		margin-right: 0;
		right: -60px;
	}
}
@media screen and (max-width: 1024px) {
	#p-about-intro {
		padding-bottom: 160px;
	}
	#p-about-intro:before {
		width: 272px;
	}
	#p-about-intro:after {
		width: 392px;
	}
	.p-about-intro__inner {
		margin: 0 auto 70px;
		padding-top: 100px;
	}
	.p-about-intro__inner:before {
		width: 288px;
	}
	.p-about-intro__inner:after {
		width: 269px;
	}
	.p-about-intro__ttl {
		width: 410px;
		margin: 0 auto 45px;
	}
}
@media screen and (max-width: 767px) {
	#p-about-intro {
		padding-bottom: 130px;
	}
	#p-about-intro:before {
		width: 218px;
	}
	#p-about-intro:after {
		width: 314px;
	}
	.p-about-intro__inner {
		margin: 0 auto 60px;
	}
	.p-about-intro__inner:before {
		width: 230px;
		top: 48px;
	}
	.p-about-intro__inner:after {
		width: 215px;
	}
	.p-about-intro__ttl {
		width: 328px;
		margin: 0 auto 36px;
	}
	.p-about-intro__txt {
		margin-bottom: 30px;
		font-size: 1.6rem;
	}
}
@media screen and (max-width: 599px) {
	#p-about-intro:before,
	#p-about-intro:after {
		bottom: -3px;
	}	
	#p-about-intro:before {
		width: 174px;
	}
	#p-about-intro:after {
		width: 251px;
	}
	.p-about-intro__inner:before {
		width: 184px;
	}
	.p-about-intro__inner:after {
		width: 172px;
	}
	.p-about-intro__ttl {
		width: 262px;
	}
	.p-about-intro__txt {
		margin-bottom: 22px;
		font-size: 1.4rem;
		text-align: left;
	}
}

/* 通路の幅 */
#p-aisle {
	padding: 30px 30px 40px 30px;
	display: flex;
	gap: 0 30px;
	background: #f0ede7;
	border-radius: 20px;
}
.p-aisle__img {
	width: 270px;
}
.p-aisle__img img {
	width: 100%;
}
.p-aisle__cont {
	width: calc(100% - 300px);
	padding-top: 20px;
}
.p-notes-cont__ttl {
	margin-bottom: 22px;
	padding-bottom: 30px;
	color: var(--color-brown);
	font-size: 2.2rem;
	font-weight: 700;
	line-height: 1;
	border-bottom: 1px dotted var(--color-brown);
}
.p-notes-cont__ttl:before {
	width: 5px;
	height: 27px;
	margin-right: 10px;
	content: '';
	display: inline-block;
	background: var(--color-red);
	border-radius: 3px;
	vertical-align: -5px;
}
.p-notes-cont__ul {
	margin-bottom: 2px;
}
.p-notes-cont__li {
	padding-left: 1em;
	color: var(--color-brown);
	text-indent: -1em;
}
.p-aisle-cont__kome {
	padding-left: 1.2em;
	color: var(--color-brown);
	font-size: 1.4rem;
	text-indent: -1.2em;
}

@media screen and (max-width: 1024px) {
	#p-aisle {
		padding: 24px 24px 32px 24px;
	}
	.p-notes-cont__ttl {
		margin-bottom: 18px;
		padding-bottom: 24px;
		font-size: 1.8rem;
	}
}
@media screen and (max-width: 767px) {
	#p-aisle {
		padding: 19px 19px 26px 19px;
		flex-direction: column;
		align-items: center;
		gap: 30px 0;
		border-radius: 16px;
	}
	.p-aisle__img {
		width: 100%;
		max-width: 270px;
	}
	.p-aisle__cont {
		width: 100%;
		padding: 0;
	}
	.p-notes-cont__ttl {
		margin-bottom: 14px;
		padding-bottom: 19px;
		font-size: 1.6rem;
	}
	.p-notes-cont__ttl:before {
		width: 4px;
		height: 22px;
		vertical-align: -4px;
	}
}

/*----- いちごのおうち -----*/
#p-about-house {
	padding: 150px 0;
	background: #fff1f2;
}
.p-about-house__inner {
	margin: auto;
}
#p-about-map {
	padding: 140px 0 70px;
}
.p-about-map__inner {
  margin: auto;
  height: 70vh;
}
.p-about-map__txt {
  margin: 10px auto;
}
.p-about-map__txt span {
  padding-left: 85px;
}

@media screen and (max-width: 1024px) {
	#p-about-house {
		padding: 120px 0;
	}
}
@media screen and (max-width: 767px) {
	#p-about-house {
		padding: 100px 0;
	}
}
@media screen and (max-width: 599px) {
	.p-about-map__txt span {
	  padding-left: 0;
	}
}

/* Intro */
#p-about-house-intro {
	margin-bottom: 95px;
	position: relative;
}
#p-about-house-intro:before,
#p-about-house-intro:after {
	width: 184px;
	aspect-ratio: 184 / 199;
	content: '';
	position: absolute;
	top: -30px;
}
#p-about-house-intro:before {
	margin-left: -500px;	
	left: 50%;
	background: url("../images/tp_house_ill01.svg") no-repeat 0 0 / 100%;
}
#p-about-house-intro:after {
	margin-right: -500px;
	right: 50%;
	background: url("../images/tp_house_ill02.svg") no-repeat 0 0 / 100%;
}
.p-about-house-intro__ttl {
	width: 465px;
	aspect-ratio: 465 / 86;
	margin: 0 auto 36px;
}
.p-about-house-intro__ttl img {
	width: 100%;
}
.p-about-house-intro__txt {
	color: var(--color-brown);
	font-size: 1.8rem;
	line-height: 2;
	text-align: center;
}

@media screen and (max-width: 1200px) {
	#p-about-house-intro:before {
		margin-left: 0;
		left: 50px;
	}
	#p-about-house-intro:after {
		margin-right: 0;
		right: 50px;
	}
}
@media screen and (max-width: 1024px) {
	#p-about-house-intro:before,
	#p-about-house-intro:after {
		width: 148px;
	}
	.p-about-house-intro__ttl {
		width: 304px;
		width: 370px;
	}
}
@media screen and (max-width: 959px) {
	#p-about-house-intro:before,
	#p-about-house-intro:after {
		width: 118px;
	}
	#p-about-house-intro:before {
		left: 5%;
	}
	#p-about-house-intro:after {
		right: 5%;
	}
}
@media screen and (max-width: 767px) {
	#p-about-house-intro {
		margin-bottom: 75px;
	}
	#p-about-house-intro:before,
	#p-about-house-intro:after {
		top: -60px;
	}
	.p-about-house-intro__ttl {
		width: 243px;
	}
	.p-about-house-intro__txt {
		font-size: 1.6rem;
	}
}
@media screen and (max-width: 599px) {
	#p-about-house-intro {
		margin-bottom: 50px;
	}
	#p-about-house-intro:before,
	#p-about-house-intro:after {
		width: 95px;
	}
	#p-about-house-intro:before {
		left :0;
	}
	#p-about-house-intro:after {
		right: 0;
	}
	.p-about-house-intro__ttl {
		width: 195px;
	}
	.p-about-house-intro__txt {
		font-size: 1.4rem;
		text-align: left;
	}
}
@media screen and (max-width: 424px) {
	#p-about-house-intro:before,
	#p-about-house-intro:after {
		width: 76px;
		top: -40px;
	}
	.p-about-house-intro__ttl {
		width: 195px;
	}
}

/* 注意事項 */
#p-about-notes {
	margin-bottom: 50px;
	padding: 30px;
	border-radius: 20px;
	background: #fff;
}

@media screen and (max-width: 1024px) {
	#p-about-notes {
		padding: 24px;
	}
}
@media screen and (max-width: 767px) {
	#p-about-notes {
		padding: 18px;
	}
}
@media screen and (max-width: 599px) {
	#p-about-notes {
		border-radius: 16px;
	}
}

/* 備品 */
#p-about-fixtures {
	padding: 30px 20px 30px;
	background: #fff;
	border: 5px solid var(--color-red);
	border-radius: 20px;
}
.p-about-fixtures__ttl {
	margin-bottom: 32px;
	color: var(--color-red);
	font-size: 2.2rem;
	font-weight: 700;
	text-align: center;
}
.p-about-fixtures__block {
	display: flex;
	justify-content: center;
	gap: 0 50px;
}
.p-about-fixtures__box {
	display: flex;
	align-items: center;
	gap: 0 20px;
}
.p-about-fixtures-box__img {
	width: 130px;
	aspect-ratio: 1;
	flex-shrink: 0;
	border-radius: 100%;
	overflow: hidden;
}
.p-about-fixtures-box__img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.p-about-fixtures-box__ttl {
	color: var(--color-brown);
	font-size: 2.2rem;
	line-height: 1;
}

@media screen and (max-width: 1279px) {
	.p-about-fixtures__block {
		gap: 0 40px;
	}
	.p-about-fixtures-box__img {
		width: 104px;
	}
}
@media screen and (max-width: 1024px) {
	#p-about-fixtures {
		padding: 24px;
	}
	.p-about-fixtures__ttl {
		font-size: 1.8rem;
	}
	.p-about-fixtures-box__ttl {
		font-size: 1.8rem;
	}
}
@media screen and (max-width: 959px) {
	#p-about-fixtures {
		padding: 32px 24px;
	}
	.p-about-fixtures__ttl {
		margin-bottom: 20px;
	}
	.p-about-fixtures__block {
		gap: 0 54px;
	}
	.p-about-fixtures__box {
		flex-direction: column;
		gap: 20px 0;
	}
}
@media screen and (max-width: 767px) {
	#p-about-fixtures {
		padding: 19px;
	}
	.p-about-fixtures__ttl {
		font-size: 1.6rem;
	}
	.p-about-fixtures-box__ttl {
		font-size: 1.6rem;
	}
}
@media screen and (max-width: 599px) {
	#p-about-fixtures {
		border-width: 3px;
		border-radius: 16px;
	}
	.p-about-fixtures__ttl {
		font-size: 1.53rem;
		letter-spacing: .05em;
	}
	.p-about-fixtures__block {
		flex-wrap: wrap;
		gap: 0 5.5%;
	}
	.p-about-fixtures__box {
		gap: 12px 0;
	}
	.p-about-fixtures-box__img {
		width: 83px;
	}
	.p-about-fixtures-box__ttl {
		line-height: 1.5;
		text-align: center;
	}
}
@media screen and (max-width: 424px) {
	.p-about-fixtures__ttl {
		text-align: left;
	}
}


/* ---------- いちご狩りについて ----------*/
.p-picking-inner {
	margin: 100px auto;
}
.p-strawberry__kome {
	color: var(--color-red);
	text-align: right;
}

@media screen and (max-width: 959px) {
	.p-strawberry__kome {
		padding-left: 1em;
		text-align: left;
		text-indent: -1em;
	}
}
@media screen and (max-width: 767px) {
	.p-picking-inner {
		margin: 80px auto;
	}
}
@media screen and (max-width: 599px) {
	.p-picking-inner {
		margin: 80px auto 60px;
	}
}

/*----- Intro -----*/
#p-picking-intro {
	margin-bottom: 90px;
	position: relative;
}
#p-picking-intro:before,
#p-picking-intro:after {
	width: 184px;
	aspect-ratio: 184 / 199;
	content: '';
	position: absolute;
	top: 70px;
}
#p-picking-intro:before {
	margin-left: -500px;
	left: 50%;
	background: url("../images/tp_house_ill01.svg") no-repeat 0 0 / 100%;
	
}
#p-picking-intro:after {
	margin-right: -500px;
	background: url("../images/tp_house_ill02.svg") no-repeat 0 0 / 100%;
	right: 50%;
}
.p-picking-intro__ttl {
	width: 380px;
	aspect-ratio: 380 / 70;
	margin: 0 auto 40px;
}
.p-picking-intro__ttl img {
	width: 100%;
}
.p-picking-intro__txt {
	color: var(--color-brown);
	line-height: 2;
	text-align: center;
}

@media screen and (max-width: 1200px) {
	#p-picking-intro:before {
		margin-left: 0;
		left: 50px;
	}
	#p-picking-intro:after {
		margin-right: 0;
		right: 50px;
	}
}
@media screen and (max-width: 1024px) {
	#p-picking-intro:before,
	#p-picking-intro:after {
		width: 147px;
	}
	.p-picking-intro__ttl {
		width: 304px;
	}
}
@media screen and (max-width: 959px) {
	#p-picking-intro:before,
	#p-picking-intro:after {
		width: 118px;
		top: -40px;
	}
	#p-picking-intro:before {
		left: 5%;
	}
	#p-picking-intro:after {
		right: 5%;
	}
}
@media screen and (max-width: 767px) {
	.p-picking-intro__ttl {
		width: 243px;
	}
}
@media screen and (max-width: 599px) {
	#p-picking-intro:before,
	#p-picking-intro:after {
		width: 95px;
		top: -45px;
	}
	#p-picking-intro:before {
		left: 0;
	}
	#p-picking-intro:after {
		right: 0;
	}
	.p-picking-intro__ttl {
		width: 194px;
	}
	.p-picking-intro__txt {
		text-align: left;
	}
}
@media screen and (max-width: 424px) {
	#p-picking-intro:before,
	#p-picking-intro:after {
		width: 80px;
	}
}

/*----- いちごの紹介 -----*/
.p-strawberry {
	margin-bottom: 170px;
}
.p-strawberry__header {
	padding: 0 60px 20px 50px;
	position: relative;
	background: #fff1f2;
	border: 5px solid var(--color-red);
	border-radius: 20px;
}
.p-strawberry__header:after {
	width: 349px;
	aspect-ratio: 349 / 87;
	content: '';
	position: absolute;
	top: -80px;
	right: 4px;
	background: url("../images/picking_strawberry_ill.png") no-repeat 0 0 / 100%;
}
.p-strawberry-header__ttl {
	width: fit-content;
	margin: -35px auto 0;
	padding: 17px 84px;
	color: var(--color-red);
	font-size: 2.6rem;
	font-weight: 700;
	line-height: 1;
	background: #fff;
	border: 5px solid var(--color-red);
	border-radius: 50px;
}
.p-strawberry-header__block {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0 50px;
	padding-top: 20px;
}
.p-strawberry-header__figure {
	width: 320px;
	aspect-ratio: 320 / 343;
}
.p-strawberry-header__figure img {
	width: 100%;
}

@media screen and (max-width: 1209px) {
	.p-strawberry-header__figure {
		width: 32.324%;
	}
}
@media screen and (max-width: 1199px) {
	.p-strawberry__header:after {
		width: 279px;
		top: -64px;
	}
	.p-strawberry-header__ttl {
		margin: -29px auto 0;
		padding: 14px 68px;
		font-size: 2rem;
	}
}
@media screen and (max-width: 1024px) {
	.p-strawberry {
		margin-bottom: 140px;
	}
}
@media screen and (max-width: 959px) {
	.p-strawberry__header {
		padding: 0 40px;
	}
	.p-strawberry__header:after {
		width: 223px;
		top: -51px;
	}
	.p-strawberry-header__ttl {
		margin: -28px auto 0;
		padding: 14px 54px;
		font-size: 1.8rem;
	}
	.p-strawberry-header__block {
		padding: 50px 0 60px;
		flex-direction: column-reverse;
		align-items: center;
		gap: 54px 0;
	}
	.p-strawberry-header__figure {
		width: 320px;
	}
}
@media screen and (max-width: 767px) {
	.p-strawberry {
		margin-bottom: 110px;
	}
	.p-strawberry__header {
		padding: 0 5%;
	}
	.p-strawberry__header:after {
		top: -80px;
	}
	.p-strawberry-header__ttl {
		margin: -24px auto 0;
		padding: 10px 54px;
	}
}
@media screen and (max-width: 599px) {
	.p-strawberry__header {
		border-width: 2px;
		border-radius: 16px;
	}
	.p-strawberry-header__ttl {
		padding: 10px 43px;
		border-width: 2px;
	}
	.p-strawberry-header__block {
		padding: 40px 0 56px;
	}
}
@media screen and (max-width: 424px) {
	.p-strawberry-header__figure {
		width: 256px;
	}
}

/* いちごの項目 */
.p-strawberry__list {
	width: 620px;
	display: flex;
	flex-wrap: wrap;
	gap: 20px 20px;
}
.p-strawberry-list__item {
	width: 300px;
	font-size: 0;
}
.p-strawberry-list__item a {
	padding: 25px 0;
	display: block;
	position: relative;
	color: #fff;
	font-size: 2rem;
	font-weight: 700;
	line-height: 1;
	text-align: center;
	background: var(--color-red);
	border-radius: 20px;
	transition: all .3s ease-in-out;
}
@media (hover: hover) and (pointer: fine) {
	.p-strawberry-list__item a:hover {
		opacity: .7;
	}
}
.p-strawberry-list__item a:after {
	width: 16px;
	aspect-ratio: 16 / 9;
	margin-top: -4px;
	content: '';
	position: absolute;
	top: 50%;
	right: 16px;
	background: url("../images/arr_link_page.svg") no-repeat 0 0 / 100%;
}

@media screen and (max-width: 1209px) {
	.p-strawberry__list {
		width: 62.629%;
		gap: 20px 3.2%;
	}
	.p-strawberry-list__item {
		width: 48.389%;
	}
}
@media screen and (max-width: 1199px) {
	.p-strawberry-list__item a {
		padding: 20px 0;
		font-size: 1.8rem;
	}
}
@media screen and (max-width: 959px) {
	.p-strawberry__list {
		width: 100%;
		max-width: 620px;
		gap: 20px;
	}
	.p-strawberry-list__item {
		width: 48%;
	}
	.p-strawberry-list__item a {
		font-size: 1.6rem;
	}
}
@media screen and (max-width: 767px) {
	.p-strawberry__list {
		gap: 2.607vw 4%;
	}
}
@media screen and (max-width: 599px) {
	.p-strawberry-list__item a {
		font-size: 1.4rem;
		border-radius: 16px;
	}
	.p-strawberry-list__item a:after {
		width: 12px;
		margin-top: -3px;
		right: 10px;
	}
}
@media screen and (max-width: 424px) {
	.p-strawberry-header__block {
		padding: 32px 0 48px;
	}
	.p-strawberry-list__item a {
		padding: 12px 0;
	}
}

/*----- 商品詳細 -----*/
.p-strawberry__itemarea {
	margin-bottom: 20px;
}
.p-strawberry__item {
	padding: 50px 0 64px;
	display: flex;
	align-items: flex-end;
	background: url("../images/picking_strawberry_item_dotted.svg") no-repeat center bottom;
}
.p-strawberry-item__img {
	width: 50%;
}
.p-strawberry-item__cont {
	width: 600px;
}
.p-strawberry-item__img img {
	width: 100%;
}
.p-strawberry-item__ttl {
	margin-bottom: 20px;
	color: var(--color-red);
	font-size: 4.5rem;
	font-weight: 700;
	line-height: 1;
}
.p-strawberry-item__ttl:after {
	width: 100%;
	height: 9px;
	margin-top: 30px;
	content: '';
	display: block;
	background: #f2d9db;
	border-radius: 5px;
}
.p-strawberry-item__txt {
	margin-bottom: 20px;
	line-height: 2;
}
.p-strawberry-item__table {
	padding: 30px;
	display: flex;
	flex-direction: column;
	gap: 10px 0;
	background: #fff1f2;
	border-radius: 20px;
}
.p-strawberry-item__table dl {
	display: flex;
	align-items: center;
	gap: 0 10px;
}
.p-strawberry-item__table dl dt {
	width: 66px;
	padding: 8px 0px 10px;
	flex-shrink: 0;
	color: #fff;
	line-height: 1;
	text-align: center;
	background: var(--color-red);
	border-radius: 10px;
}
.p-strawberry-item__table dl dd {
	width: calc(100% - 76px);
}
.p-strawberry-item__table dl dd img {
	width: 100%;
}

@media screen and (max-width: 1279px) {
	.p-strawberry-item__ttl {
		font-size: 3.6rem;
	}
	.p-strawberry-item__ttl:after {
		margin-top: 24px;
		height: 7px;
	}
}
@media screen and (max-width: 1199px) {
	.p-strawberry__item {
		align-items: flex-start;
	}
}
@media screen and (max-width: 1024px) {
	.p-strawberry__item {
		flex-direction: column;
		align-items: center;
		gap: 40px 0;
	}
	.p-strawberry-item__img,
	.p-strawberry-item__cont {
		width: 100%;
		max-width: 600px;
	}
	.p-strawberry-item__ttl {
		font-size: 3rem;
	}
	.p-strawberry-item__ttl:after {
		margin-top: 20px;
		height: 5px;
	}
}
@media screen and (max-width: 767px) {
	.p-strawberry-item__ttl {
		font-size: 2.4rem;
	}
	.p-strawberry-item__ttl:after {
		margin-top: 16px;
		height: 3px;
	}
	.p-strawberry-item__table {
		align-items: center;
		gap: 16px 0;
	}
	.p-strawberry-item__table dl {
		flex-direction: column;
		align-items: flex-start;
		gap: 6px 0;
	}
	.p-strawberry-item__table dl dd {
		width: auto;
	}
}
@media screen and (max-width: 599px) {
	.p-strawberry__item {
		gap: 20px 0;
		background: url("../images/picking_strawberry_item_dotted.svg") no-repeat center bottom / 600px;
	}
	.p-strawberry-item__ttl {
		font-size: 2.2rem;
	}
	.p-strawberry-item__table {
		padding: 24px 20px;
		border-radius: 16px;
	}
	.p-strawberry-item__table dl dt {
		width: 50px;
		padding: 6px 0px 8px;
		border-radius: 6px;
	}
}

/*----- 農園者のコメント -----*/
.p-strawberry__farmer {
	margin-top: 10px;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 0 30px;
}
.p-strawberry-farmer__img {
	width: 300px;
	aspect-ratio: 1;
	/*border: 5px solid var(--color-brown);*/
	border-radius: 100%;
	overflow: hidden;
}
.p-strawberry-farmer__img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

@media screen and (max-width: 1024px) {
	.p-strawberry__farmer {
		margin-top: 60px;
		align-items: flex-start;
	}
	.p-strawberry-farmer__img {
		width: 240px;
	}
}
@media screen and (max-width: 767px) {
	.p-strawberry__farmer {
		flex-direction: column;
		align-items: center;
		gap: 60px 0;
	}
}

/* 吹き出し */
.p-strawberry-farmer__comment * {
	color: var(--color-brown);
}
.p-strawberry-farmer__comment {
	width: calc(100% - 360px);
	position: relative;
}
.p-strawberry-farmer-comment__outer {
	position: relative;
	background: url("../images/picking_farmer_balloon_dotted_yoko.jpg") repeat-x left top, url("../images/picking_farmer_balloon_dotted_yoko.jpg") repeat-x left bottom;
}
.p-strawberry-farmer-comment__inner {
	position: relative;
	background: url("../images/picking_farmer_balloon_dotted_tate.jpg") repeat-y left top, url("../images/picking_farmer_balloon_dotted_tate.jpg") repeat-y right top;
}
.p-strawberry-farmer-comment__txtarea {
	padding: 40px 64px 34px 50px;
}
.p-strawberry-farmer__ttl {
	margin-bottom: 12px;
	font-size: 2rem;
	font-weight: 700;
	letter-spacing: .05em;
	line-height: 1;
}
.p-strawberry-farmer__txt {
	letter-spacing: .05em;
	line-height: 2;
}

@media screen and (max-width: 1024px) {
	.p-strawberry-farmer__comment {
		width: calc(100% - 300px);
	}	
}
@media screen and (max-width: 959px) {
	.p-strawberry-farmer-comment__txtarea {
		padding: 30px 20px 30px 30px;
	}
}
@media screen and (max-width: 767px) {
	.p-strawberry-farmer__comment {
		width: 100%;
	}
}

/* 吹き出し調整 */
.p-strawberry-farmer__comment:before {
	width: 40px;
	aspect-ratio: 5 / 3;
	content: '';
	position: absolute;
	top: 60px;
	left: -36px;
	z-index: 2;
	background: url("../images/picking_farmer_balloon_tip.jpg") no-repeat 0 0 / 100%;
}
.p-strawberry-farmer-comment__outer:before,
.p-strawberry-farmer-comment__outer:after,
.p-strawberry-farmer-comment__inner:before,
.p-strawberry-farmer-comment__inner:after {
	width: 32px;
	aspect-ratio: 1;
	content: '';
	position: absolute;
	z-index: 1;
}
.p-strawberry-farmer-comment__outer:before {
	top: 0;
	left: 0;
	background: url("../images/picking_farmer_balloon_lt.jpg") no-repeat 0 0 / 100%;
}
.p-strawberry-farmer-comment__outer:after {
	top: 0;
	right: 0;
	background: url("../images/picking_farmer_balloon_rt.jpg") no-repeat 0 0 / 100%;
}
.p-strawberry-farmer-comment__inner:before {
	bottom: 0;
	left: 0;
	background: url("../images/picking_farmer_balloon_lb.jpg") no-repeat 0 0 / 100%;
}
.p-strawberry-farmer-comment__inner:after {
	bottom: 0;
	right: 0;
	background: url("../images/picking_farmer_balloon_rb.jpg") no-repeat 0 0 / 100%;
}

@media screen and (max-width: 767px) {
	.p-strawberry-farmer__comment:before {
		margin-left: -24px;
		top: -28px;
		left: 50%;
		transform: rotate(90deg);
	}
}

/*----- いちご狩りの流れ -----*/
.p-picking-sec {
	margin-bottom: 100px;
}
.p-picking-sec__ttlarea {
	margin-bottom: 50px;
	position: relative;
}
.-flow .p-picking-sec__ttlarea,
.-how .p-picking-sec__ttlarea {
	margin-bottom: 90px;
}
.-cost .p-picking-sec__ttlarea {
	margin-bottom: 40px;
}
.-flow .p-picking-sec__ttlarea:before,
.-how .p-picking-sec__ttlarea:before {
	width: 359px;
	aspect-ratio: 359 / 87;
	content: '';
	position: absolute;
	bottom: 5px;
	right: 0;
}
.-flow .p-picking-sec__ttlarea:before {
	background: url("../images/picking_flow_ill.png") no-repeat 0 0 / 100%;
}
.p-picking-sec__ttlarea:after {
	width: 100%;
	height: 9px;
	margin-top: 30px;
	content: '';
	display: block;
	background: #f2d9db;
	border-radius: 5px;
}
.p-picking-sec__ttl {
	color: var(--color-red);
	font-size: 3rem;
	font-weight: 700;
	line-height: 1;
}
.p-price-sec__ttl {
    font-size: 2.4rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 20px;
    color: var(--color-brown-2);
}
.p-price-sec__ttl span {
    display: inline-block;
    font-size: 1.4rem;
    line-height: 1.4;
    color: var(--color-brown-2);
    margin-top: 8px;
}

@media screen and (max-width: 1024px) {
	.-flow .p-picking-sec__ttlarea:before,
	.-how .p-picking-sec__ttlarea:before {
		width: 287px;
		bottom: 4px;
	}
	.p-picking-sec__ttl {
		font-size: 2.4rem;
	}
	.p-picking-sec__ttlarea:after {
		height: 5px;
		margin-top: 20px;
	}
}
@media screen and (max-width: 767px) {
	.-flow .p-picking-sec__ttlarea:before,
	.-how .p-picking-sec__ttlarea:before {
		width: 230px;
		bottom: 3px;
	}
	.p-picking-sec__ttl {
		font-size: 2rem;
	}
	.p-picking-sec__ttlarea:after {
		height: 3px;
		margin-top: 16px;
	}
}
@media screen and (max-width: 599px) {
	.-flow .p-picking-sec__ttlarea:before,
	.-how .p-picking-sec__ttlarea:before {
		width: 184px;
		bottom: 2px;
	}
	.p-picking-sec__ttl {
		font-size: 1.8rem;
		letter-spacing: 0;
	}
}

/* Step */
.p-picking-flow {
	display: flex;
	flex-wrap: wrap;
	gap: 0 50px;
	gap: 0 4.2%;
	position: relative;
	z-index: 0;
}
.p-picking-flow:after {
	width: 80%;
	height: 5px;
	content: '';
	position: absolute;
	top: 0;
	left: 10%;
	z-index: -1;
	background: var(--color-red);
}
.p-picking-flow__box {
	width: 262px;
	width: 16.635%;
	position: relative;
	padding-top: 55px;
}
.p-picking-flow-box__num {
	width: 90px;
	aspect-ratio: 1;
	margin-left: -45px;
	padding-top: 4px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 2px 0;
	position: absolute;
	top: -45px;
	left: 50%;
	z-index: 1;
	background: var(--color-red);
	border-radius: 100%;
}
.p-picking-flow-box__num span {
	color: #fff;
	font-family: var(--font-family-overpass);
	font-weight: 700;
	line-height: 1;
}
.p-picking-flow-box__num span:nth-of-type(1) {
	font-size: 1rem;
}
.p-picking-flow-box__num span:nth-of-type(2) {
	font-size: 3rem;
	letter-spacing: 0;
}
.p-picking-flow-box__img {
	margin-bottom: 10px;
	border-radius: 20px;
	overflow: hidden;
}
.p-picking-flow-box__img img {
	width: 100%;
}
.p-picking-flow-box__ttl {
	color: var(--color-brown-2);
	font-size: 1.8rem;
	font-weight: 700;
	letter-spacing: 0;
	text-align: center;
}
.p-picking-flow-box__txt {
	margin-top: 3px;
	color: var(--color-brown-2);
	font-size: 1.5rem;
}

@media screen and (max-width: 1300px) {
	.p-picking-flow:after {
		/*top: 7.5384vw;*/
		top: 0.0384vw;
	}
}
@media screen and (max-width: 1279px) {
	.p-picking-flow-box__num {
		width: 72px;
		margin-left: -36px;
		top: -36px;
	}
	.p-picking-flow-box__num span:nth-of-type(2) {
		font-size: 2.6rem;
	}
}
@media screen and (max-width: 959px) {
	.p-picking-flow {
		flex-direction: column;
		align-items: center;
		gap: 80px 0;
	}
	.p-picking-flow:after {
		display: none;
	}
	.p-picking-flow__box {
		width: 100%;
		max-width: 500px;
		position: relative;
	}
	.p-picking-flow__box:after {
		width: 5px;
		height: 50px;
		margin: 30px auto 0;
		content: '';
		display: block;
		background: var(--color-red);
	}
	.p-picking-flow__box:nth-last-of-type(1):after {
		display: none;
	}
	.p-picking-flow-box__num {
		width: 90px;
		margin-left: -45px;
		top: -45px;
	}
	.p-picking-flow-box__num span {
		font-size: 3rem;
	}
	.p-picking-flow-box__img {
		margin-bottom: 24px;
	}
}
@media screen and (max-width: 767px) {
	.p-picking-flow {
		gap: 55px 0;
	}
	.p-picking-flow__box:after {
		width: 2px;
		height: 32px;
		margin: 16px auto 0;
	}
	.p-picking-flow-box__num {
		width: 72px;
		margin-left: -36px;
		top: -36px;
	}
	.p-picking-flow-box__num span:nth-of-type(2) {
		font-size: 2.6rem;
	}
	.p-picking-flow-box__img {
		margin-bottom: 20px;
	}
	.p-picking-flow-box__ttl {
		font-size: 1.6rem;
	}
	.p-picking-flow-box__txt {
		font-size: 1.4rem;
	}
}


/*----- おいしいいちごの選び方 -----*/
.p-picking-sec__block {
	display: flex;
	align-items: center;
}
.p-picking-sec__img {
	width: 550px;
	width: 45.834%;
	border-radius: 20px;
	overflow: hidden;
}
.p-picking-sec__img img {
	width: 100%;
}
.p-picking-sec__cont {
	width: 650px;
	width: 54.166%;
	padding-left: 50px;
}
.p-picking-sec__box {
	margin-bottom: 20px;
	display: flex;
	align-items: center;
	gap: 0 20px;
}
.p-picking-sec__box:nth-last-of-type(1) {
	margin-bottom: 0;
}
.p-picking-sec-box__num {
	width: 90px;
	aspect-ratio: 1;
	padding-top: 6px;
	display: flex;
	flex-direction: column;
	flex-shrink: 0;
	align-items: center;
	justify-content: center;
	gap: 2px 0;
	background: var(--color-red);
	border-radius: 100%;
}
.p-picking-sec-box__num span {
	color: #fff;
	font-family: var(--font-family-overpass);
	font-weight: 700;
	line-height: 1;
}
.p-picking-sec-box__num span:nth-of-type(1) {
	font-size: 1rem;
}
.p-picking-sec-box__num span:nth-of-type(2) {
	font-size: 3rem;
	letter-spacing: 0;
}
.p-picking-sec-box__txt {
	padding-bottom: 13px;
	color: var(--color-brown-2);
	font-size: 2rem;
	line-height: 1;
	background: url("../images/picking_select_dotted.svg") repeat-x left bottom / 21px;
}

@media screen and (max-width: 1279px) {
	.p-picking-sec-box__num {
		width: 72px;
	}
	.p-picking-sec-box__num span:nth-of-type(2) {
    font-size: 2.6rem;
	}
}
@media screen and (max-width: 959px) {
	.p-picking-sec__block {
		flex-direction: column;
		gap: 40px 0;
	}
	.p-picking-sec__img,
	.p-picking-sec__cont {
		width: 100%;
		max-width: 500px;
	}
	.p-picking-sec__cont {
		padding: 0;
	}
	.p-picking-sec-box__txt {
		font-size: 1.8rem;
	}
}
@media screen and (max-width: 599px) {
	.p-picking-sec-box__num {
		width: 60px;
	}
	.p-picking-sec-box__num span:nth-of-type(2) {
		font-size: 2rem;
	}
	.p-picking-sec-box__txt {
		font-size: 1.6rem;
		letter-spacing: .02em;
	}
}

/*----- いちご摘み方 -----*/
.-how .p-picking-sec__ttlarea:before {
	background: url("../images/picking_how_ill.png") no-repeat 0 0 / 100%;
}
.-how .p-picking-flow:after {
	top: 135px;
}
.p-picking-how__box {
	width: 366px;
	width: 30.5%;
	position: relative;
}

@media screen and (max-width: 1300px) {
	.-how .p-picking-flow:after {
		top: 10.384vw;
	}
}
@media screen and (max-width: 959px) {
	.p-picking-how__box {
		width: 100%;
		max-width: 500px;
	}
	.p-picking-how__box:after {
		width: 5px;
    height: 50px;
    margin: 30px auto 0;
    content: '';
    display: block;
    background: var(--color-red);
	}
	.p-picking-how__box:nth-last-of-type(1):after {
		display: none;
	}
}
@media screen and (max-width: 767px) {
	.p-picking-how__box:after {
		width: 2px;
    height: 32px;
    margin: 16px auto 0;
	}
}

/*----- 料金説明 -----*/
.p-cost-txt {
	margin-bottom: 40px;
	color: var(--color-brown-2);
	font-size: 1.8rem;
}
.p-cost-table-cap {
	color: var(--color-brown);
	font-size: 1.5rem;
	letter-spacing: .05em;
	line-height: 1;
	text-align: right;
}
.p-cost-table table tr th span {
	font-size: 1.3rem;
	color: var(--color-brown-2);
}

@media screen and (max-width: 767px) {
	.p-cost-txt {
		font-size: 1.6rem;
	}
}
@media screen and (max-width: 599px) {
	.p-cost-txt {
		font-size: 1.4rem;
	}
	.p-cost-table-cap {
		font-size: 1.3rem;
	}
}

/* Table */
.p-cost-table,
.p-cost-table table {
	width: 100%;
}
.p-cost-table table.hakariuri-table {
	width: 375px !important;
}
@media screen and (max-width: 430px) {
	.p-cost-table table.hakariuri-table {
		width: 100% !important;
	}
}
.p-cost-table table.hakariuri-table td {
	padding: 16px 0;
}
.p-cost-table {
	margin-bottom: 20px;
}
.p-cost-table-first {
	margin-bottom: 70px;
}
.p-cost-table table {
	border-bottom: 1px solid var(--color-brown-2);
}
.p-cost-table th,
.p-cost-table td {
	/*width: 240px;*/
	padding: 20px 0 16px;
	font-size: 2.8rem;
	letter-spacing: .05em;
	line-height: 1;
	text-align: center;
	vertical-align: middle;
	border-top: 1px solid var(--color-brown-2);
	border-right: 1px solid var(--color-brown-2);
	border-bottom: 1px solid var(--color-brown-2);
	border-left: 1px solid var(--color-brown-2);
}
.p-cost-table th.-bottom-col,
.p-cost-table td.-bottom-col {
	border-bottom: 1px solid var(--color-brown-2);
}
.p-cost-table th.-right-col,
.p-cost-table td.-right-col {
	border-right: 1px solid #dfd8c9;
}
.p-cost-table th {
	color: var(--color-brown-2);
	font-weight: 700;
	text-align: center;
	background: #ebdcbe;
}
.p-cost-table th.price-area {
	color: var(--color-brown-2);
	font-weight: 700;
	text-align: center;
	background: #f7f2e8;
}
.p-cost-table th.-th-head {
	padding-left: 30px;
	text-align: left;
}
.p-cost-table th.-th-half {
	padding: 10px 0 10px;
}

@media screen and (max-width: 767px) {
	.p-cost-table th, .p-cost-table td {
		padding: 30px 0 28px;
		font-size: 2.4rem;
	}
}
@media screen and (max-width: 599px) {
	.p-cost-table th, .p-cost-table td {
		padding: 10px 0;
		font-size: 2.0rem;
	}
	.p-cost-table th.-th-half {
		padding: 8px 0;
	}
	.p-cost-table th.-th-head {
		padding-left: 0;
		text-align: center;
	}
	.p-cost-table table tr th span {
    font-size: 1.2rem;
    color: var(--color-brown-2);
	}
}
@media screen and (max-width: 424px) {
	.p-cost-table th, .p-cost-table td {
		padding: 10px 0;
		font-size: 1.8rem;
	}
	.p-cost-table th.-th-half {
		padding: 6px 0;
	}
	.p-cost-table table tr th span {
    font-size: 1.1rem;
    color: var(--color-brown-2);
	}
}


/* ---------- お問い合わせ ----------*/
.p-form-inner {
	margin: 100px auto 50px;
}
@media screen and (max-width: 767px) {
	.p-form-inner {
		margin: 80px auto 50px;
	}
}
@media screen and (max-width: 599px) {
	.p-form-inner {
		margin: 60px auto 50px;
	}
}

/*----- Tab -----*/
.p-tabarea {
	display: flex;
	gap: 0 10px;
}
.p-tab-item {
	width: 585px;
	height: 80px;
}
.p-tab-item a {
	width: 100%;
	height: 100%;
	display: block;
	text-align: center;
	border-width: 5px;
	border-style: solid;
	border-bottom: none;
	border-radius: 20px 20px 0 0;
	transition: all .4s ease-in-out;
}
.p-tab-item a span {
	position: relative;
	font-size: 2.6rem;
	font-weight: 700;
	line-height: 72px;
	transition: all .4s ease-in-out;
}
/*.p-tab-item a span.course {
	font-size: 2.6rem;
	line-height: 72px;
}*/
.p-tab-item.-reserve a {
	color: #fff;
	background: var(--color-red);
	border-color: var(--color-red);
}
.p-tab-item.-reserve a span {
	color: #fff;
}
.p-tab-item.-reserve a span:before,
.p-tab-item.-reserve a span:after {
	width: 27px;
	aspect-ratio: 27 / 25;
	content: '';
	transition: all .4s ease-in-out;
}
.p-tab-item.-reserve a span:before {
	margin-right: 20px;
	display: inline-block;
	background: url("../images/ico_cal_tab_wt.svg") no-repeat 0 0 / 100%;
	vertical-align: -2px;
	opacity: 1;
}
.p-tab-item.-reserve a span:after {
	position: absolute;
	top: 7px;
	left: 0;
	background: url("../images/ico_cal_tab_rd.svg") no-repeat 0 0 / 100%;
	opacity: 0;
}
@media (hover: hover) and (pointer: fine) {
	.p-tab-item.-reserve a:hover {
		background: #fff;
	}
	.p-tab-item.-reserve a:hover span {
		color: var(--color-red);
	}
	.p-tab-item.-reserve a.-current:hover {
		background: var(--color-red);
	}
	.p-tab-item.-reserve a.-current:hover span {
		color: #fff;
	}
	.p-tab-item.-reserve a.-current:hover span:before {
		opacity: 1;
	}
	.p-tab-item.-reserve a.-current:hover span:after {
		opacity: 0;
	}
	.p-tab-item.-reserve a:hover span:before {
		opacity: 0;
	}
	.p-tab-item.-reserve a:hover span:after {
		opacity: 1;
	}
}
.p-tab-item.-contact a {
	background: #fff;
	border-color: var(--color-brown);
	transition: all .4s ease-in-out;
}
.p-tab-item.-contact a span {
	color: var(--color-brown);
	transition: all .4s ease-in-out;
}
.p-tab-item.-contact a.-current {
	background: var(--color-brown);
}
.p-tab-item.-contact a.-current span {
	color: #fff;
}
.p-tab-item.-contact a span:before,
.p-tab-item.-contact a span:after {
	width: 27px;
	aspect-ratio: 27 / 21;
	content: '';
	transition: all .4s ease-in-out;
}
.p-tab-item.-contact a span:before {
	margin-right: 22px;
	display: inline-block;
	background: url("../images/ico_mail_tab_br.png") no-repeat 0 0 / 100%;
	vertical-align: -1px;
}
.p-tab-item.-contact a span:after {
	position: absolute;
	top: 10px;
	left: 0;
	background: url("../images/ico_mail_tab_wt.png") no-repeat 0 0 / 100%;
	opacity: 0;
}
.p-tab-item.-contact a.-current span:before {
	opacity: 0;
}
.p-tab-item.-contact a.-current span:after {
	background: url("../images/ico_mail_tab_wt.png") no-repeat 0 0 / 100%;
	opacity: 1;
}
@media (hover: hover) and (pointer: fine) {
	.p-tab-item.-contact a:hover {
		background: var(--color-brown);
	}
	.p-tab-item.-contact a:hover span {
		color: #fff;
	}
	.p-tab-item.-contact a:hover span:before {
		opacity: 0;
	}
	.p-tab-item.-contact a:hover span:after {
		opacity: 1;
	}
}

@media screen and (max-width: 1024px) {
	.p-tab-item {
		height: 64px;
	}
	.p-tab-item a span {
		font-size: 2.0rem;
		line-height: 64px;
	}
	.p-tab-item.-reserve a span:before,
	.p-tab-item.-reserve a span:after {		
		width: 25px;
	}
	.p-tab-item.-contact a span:before,
	.p-tab-item.-contact a span:after {
		width: 25px;
	}
}
@media screen and (max-width: 767px) {
	.p-tab-item a span {
		font-size: 1.6rem;
	}
	.p-tab-item.-contact a span:before,
	.p-tab-item.-contact a span:after {
		width: 22px;
	}
	.p-tab-item.-contact a span:before {
		vertical-align: -3px;
	}
	.p-tab-item.-contact a span:after {
		top: 8px;
	}
	.p-tab-item.-reserve a span:before,
	.p-tab-item.-reserve a span:after {		
		width: 22px;
	}
	.p-tab-item.-reserve a span:before {
		vertical-align: -4px;
	}
	.p-tab-item.-reserve a span:after {
		top: 6px;
	}
}
@media screen and (max-width: 599px) {
	.p-tabarea {
		gap: 0 10px;
	}
	.p-tab-item {
		height: 52px;
	}
	.p-tab-item a {
		border-width: 2px;
		border-radius: 16px 16px 0 0;
	}
	.p-tab-item a span {
		font-size: 1.4rem;
		letter-spacing: 0;
		line-height: 52px;
	}
	.p-tab-item.-contact a span:before,
	.p-tab-item.-contact a span:after {
		width: 18px;
	}
	.p-tab-item.-contact a span:before {
		margin-right: 10px;
		vertical-align: -2px;
	}
	.p-tab-item.-contact a span:after {
		top: 4px;
	}
	.p-tab-item.-reserve a span:before,
	.p-tab-item.-reserve a span:after {	
		width: 18px;
	}
	.p-tab-item.-reserve a span:before {
		margin-right: 6px
	}
	.p-tab-item.-reserve a span:after {
    top: 3px;
	}
}

/* Form */
.p-contact.-reserve img {
	width: 100%;
}

.p-contact {
	padding: 40px 45px 95px;
	border: 5px solid var(--color-brown);
	border-radius: 0 0 20px 20px;
}
.p-reserve-txt {
	margin-bottom: 30px;
}
.p-reserve-txt li {
	padding-left: 1em;
	text-indent: -1em;
}
.p-contact.-confirm,
.p-contact.-complete {
	padding: 50px 45px 95px;
	border-radius: 20px;
}
.p-contact.-reserve {
	border: 5px solid var(--color-red);
}
.p-contact__lead {
	margin-bottom: 30px;
	color: var(--color-brown);
}
.-complete .p-contact__lead {
	margin-bottom: 60px;
	text-align: center;
}
.p-contact__form {
	margin-bottom: 50px;
	border-top: 1px solid var(--color-yellow);
}
.p-contact__form dl {
	width: 100%;
	padding: 16px 0;
	display: flex;
	align-items: center;
	border-bottom: 1px solid var(--color-yellow);
}
.p-contact__form dl dt {
	width: 490px;
	padding: 0 0 0 50px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	color: var(--color-brown);
	font-weight: 700;
	line-height: 1;
}
.p-contact__form dl dd {
	width: 710px;
	padding: 0 0 0 60px;
}
.p-contact__form.-error dl dd {
	color: var(--color-red);
}
.p-contact-check {
	margin-bottom: 20px;
	text-align: center;
}
.p-contact-check span {
	font-size: 1.3rem;
	text-align: center;
}
.p-contact-check span br.-br {
	display: none;
}
input[type="checkbox"] {
	width: 13px;
	height: 13px;
	margin-right: 8px;
	display: inline-block;
	border: 1px solid #333;
	border-radius: 2px;
	vertical-align: -2px;
}
.p-contact-form__btnarea {
	display: flex;
	justify-content: center;
	gap: 20px 40px;
}
.p-contact-form__submit {
	width: 500px;
	position: relative;
}
.p-contact-form__submit span {
	width: 9px;
	aspect-ratio: 9 / 15;
	margin-top: -7px;
	position: absolute;
	top: 50%;
	right: 20px;
	font-size: 0;
	pointer-events: none;
}
.c-btn-submit span img {
	width: 100%;
}

@media screen and (max-width: 1024px) {
	.p-contact__form dl dt {
		padding: 0;
	}
}
@media screen and (max-width: 959px) {
	.p-contact__form dl {
		flex-direction: column;
		gap: 20px 0;
	}
	.p-contact__form dl dt,
	.p-contact__form dl dd {
		width: 100%;
		padding: 0;
	}
}
@media screen and (max-width: 767px) {
	.p-contact {
		padding: 32px 30px 80px;
	}
	.p-contact.-confirm,
	.p-contact.-complete {
		padding: 40px 30px 80px;
	}
	.p-contact-form__submit {
		width: 85.035%;
	}
	.p-contact-check span br.-br {
		display: block;
	}
}
@media screen and (max-width: 599px) {
	.p-contact {
		padding: 28px 5% 60px;
		border-width: 2px;
		border-radius: 0 0 16px 16px;
	}
	.p-contact.-confirm,
	.p-contact.-complete {
		padding: 32px 5%;
		border-radius: 16px;
	}
	.p-contact.-reserve {
		border-width: 2px;
	}
	.p-contact-form__btnarea {
		flex-direction: column-reverse;
		align-items: center;
		gap: 12px;
	}
	.p-contact-form__submit {
		max-width: 230px;
	}
	.-complete .p-contact__lead {
		text-align: left;
	}
}
@media screen and (max-width: 455px) {
	.p-contact-check span br.-br {
		display: none;
	}
}

.p-hide {
	display: none;
}

/*----- Privacy -----*/
.p-contact__pp {
	width: 100%;
	height: 270px;
	margin-bottom: 40px;
	border: 1px solid var(--color-yellow);
	overflow: auto;
}
.p-contact-pp__inner {
	padding: 30px 20px 30px 30px;
}
.p-contact-pp__txt {
	margin-bottom: 24px;
	color: #333 ;
	font-size: 1.3rem;
	line-height: 2;
}
.p-contact-pp__txt:nth-last-of-type(1) {
	margin-bottom: 0;
}


/* ---------- お知らせ ----------*/
.p-news-inner {
	margin: 90px auto 0;
}
.p-news-wrap {
	display: flex;
	align-items: flex-start;
	gap: 0 50px;
}

@media screen and (max-width: 959px) {
	.p-news-wrap {
		flex-direction: column-reverse;
		gap: 60px 0;
	}
}
@media screen and (max-width: 767px) {
	.p-news-inner {
		margin: 70px auto 0;
	}
}

/*----- List -----*/
.p-news-list {
	width: calc(100% - 330px);
	border-top: 1px solid var(--color-yellow);
}
.p-news-link {	
	width: 100%;
	height: 100%;
	padding: 38px 60px 39px 0;
	display: block;
	position: relative;
	border-bottom: 1px solid var(--color-yellow);
	transition: all .5s ease-in-out;
}
.p-news-link:after {
	width: 9px;
	aspect-ratio: 9 / 15;
	margin-top: -7px;
	content: '';
	position: absolute;
	top: 50%;
	right: 12px;
	background: url("../images/arr_news_list.svg") no-repeat 0 0 / 100%;
	transition: all .5s ease-in-out;
}
@media (hover: hover) and (pointer: fine) {
	.p-news-link:hover {
		padding: 38px 55px 39px 5px;
	}
	.p-news-link:hover:after {
		right: 7px;
	}
}
.p-news-item__head {
	margin-bottom: 10px;
	display: flex;
	align-items: center;
	gap: 0 30px;
}
.p-news-item-head__date {
	color: var(--color-brown);
	line-height: 1;
}
.p-news-item-head__cat {
}
.p-news-item-head__cat span {
	padding: 7px 20px 9px;
	color: #fff;
	line-height: 1;
	background: #fed400;
	border-radius: 10px;
}
.p-news-item__ttl {
	font-size: 2.2rem;
	font-weight: 700;
	line-height: 1.6;
}

@media screen and (max-width: 959px) {
	.p-news-list {
		width: 100%;
	}
}
@media screen and (max-width: 1024px) {
	.p-news-item__ttl {
		font-size: 2rem;
	}
}
@media screen and (max-width: 767px) {
	.p-news-item__ttl {
		font-size: 1.8rem;
	}
}
@media screen and (max-width: 599px) {
	.p-news-link {
		padding: 30px 48px 30px 0;
	}
	.p-news-item__ttl {
		font-size: 1.6rem;
	}
}

/*----- Sidebar -----*/
.p-news-cat {
	width: 280px;
	padding: 40px 30px;
	background: #f8efde;
	border-radius: 10px;
}
.p-news-cat__li {
	width: fit-content;
	margin-bottom: 20px;
	position: relative;
	font-size: 0;
	transition: all .4s ease-in-out;
	cursor: pointer;
}
@media (hover: hover) and (pointer: fine) {
	.p-news-cat__li:hover {
		padding-left: 5px;
	}
}
.p-news-cat__li:nth-last-of-type(1) {
	margin-bottom: 0;
}
.p-news-cat__li:before,
.p-news-cat__li:after {
	content: '';
}
.p-news-cat__li:before {
	width: 24px;
	aspect-ratio: 1;
	margin-right: 10px;
	display: inline-block;
	background: var(--color-brown);
	border-radius: 100%;
	vertical-align: -5px;
}
.p-news-cat__li:after {
	width: 6px;
	aspect-ratio: 6 / 9;
	position: absolute;
	top: 8px;
	left: 10px;
	background: url(../images/arr_tp_house.svg) no-repeat 0 0 / 100%;
	transition: all .4s ease-in-out;
}
@media (hover: hover) and (pointer: fine) {
	.p-news-cat__li:hover:after {
		left: 15px;
	}
}
.p-news-cat__li a {
	padding-bottom: 13px;
	display: inline-block;
	color: var(--color-brown);
	font-size: 2rem;
	line-height: 1;
	background: url("../images/news_cat_dotted.svg") no-repeat left bottom;
}

@media screen and (max-width: 959px) {
	.p-news-cat {
		width: 100%;
	}
	.p-news-cat__ul {
		display: flex;
		flex-wrap: wrap;
		gap: 32px;
	}
	.p-news-cat__li {
		margin-bottom: 0;
	}
}
@media screen and (max-width: 767px) {
	.p-news-cat__li a {
		font-size: 1.6rem;
	}
}
@media screen and (max-width: 599px) {
	.p-news-cat {
		padding: 24px 20px;
	}
	.p-news-cat__ul {
		gap: 20px 0;
	}
	.p-news-cat__li {
		width: 50%;
	}
	.p-news-cat__li:nth-of-type(even) {
		padding-left: 20px;
	}
	.p-news-cat__li:before {
		width: 20px;
	}
	.p-news-cat__li:after {
		top: 6px;
		left: 8px;
	}
	.p-news-cat__li:nth-of-type(even):after {
		top: 6px;
		left: 28px;
	}
	.p-news-cat__li a {
		font-size: 1.4rem;
		letter-spacing: .05em;
	}
}

/*----- Pager -----*/
#p-pager {
	margin-bottom: 110px;
	font-size: 0;
	text-align: center;
}
.page-numbers {
	width: 60px;
	aspect-ratio: 1;
	margin: 100px 10px 0 0;
	padding: 16px 0 0;
	display: inline-block;
	color: var(--color-brown);
	font-size: 2rem;
	font-weight: 700;
	letter-spacing: 0;
	line-height: 1;
	text-align: center;
	border: 3px solid var(--color-brown);
	border-radius: 100%;
	transition: all .4s ease-in-out;
	box-sizing: border-box;
}
.page-numbers.current {
	color: #fff;
	background: var(--color-brown);
}
@media (hover: hover) and (pointer: fine) {
	.page-numbers:hover {
		color: #fff;
		background: var(--color-brown);
	}
}

@media screen and (max-width: 1024px) {
	#p-pager {
		margin-bottom: 90px;
	}
}
@media screen and (max-width: 767px) {
	#p-pager {
		margin-bottom: 70px;
	}
	.page-numbers {
		width: 48px;
		margin: 80px 10px 0 0;
		padding: 11px 0 0;
		font-size: 1.6rem;
	}
}
@media screen and (max-width: 599px) {
	#p-pager {
		margin-bottom: 56px;
	}
	.page-numbers {
		width: 38px;
		margin: 60px 10px 0 0;
		padding: 9px 0 0;
		font-size: 1.4rem;
		border-width: 2px;
	}
}


/* ---------- お知らせ（詳細ページ） ----------*/
/*----- Header -----*/
.p-news-header {
	margin-bottom: 35px;
	padding: 40px 0 38px;
	border-bottom: 1px solid var(--color-yellow);
}
.p-news-item__head.-detail {
	margin-bottom: 6px;
}
.p-news-header__ttl {
	color: var(--color-brown);
	font-size: 3.2rem;
	font-weight: 700;
	line-height: 1.5;
}

@media screen and (max-width: 1279px) {
	.p-news-header__ttl {
		font-size: 2.9rem;
	}
}
@media screen and (max-width: 1024px) {
	.p-news-header__ttl {
		font-size: 2.6rem;
	}
}
@media screen and (max-width: 767px) {
	.p-news-header {
		padding: 32px 0 30px;
	}
	.p-news-header__ttl {
		font-size: 2rem;
	}
}

/* Contents */
.p-news-cont p {
	margin-bottom: 30px;
	color: var(--color-brown);
	line-height: 2;
}
.p-news-cont p:nth-last-of-type(1) {
	margin-bottom: 0;
}
.p-news-cont p img {
	max-width: 100%;
}

/*--News Detail--*/
.p-news-cont h2 {
	font-size: 22px;
	margin: 0 0 10px;
	padding: 0 0 0 14px;
	position: relative;
  font-weight: 700;
  font-family: var( --strong-font-family );
	color: var(--color-brown);
}
.p-news-cont h2::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	width: 4px;
	height: 100%;
	background: var(--color-brown);
}
.p-news-cont h3 {
	font-size: 18px;
	margin: 0 0 10px;
	padding: 0 0 0 14px;
	position: relative;
  font-weight: 700;
  font-family: var( --strong-font-family );
	color: var(--color-brown);
}
.p-news-cont h3::before {
	content: '';
	position: absolute;
	top: 100%;
	border-style: solid;
	border-color: transparent;
	left: 0;
	top: 12px;
	width: 2px;
	height: 2px;
	background: var(--color-brown);
	border-radius: 10px;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
}
.p-news-cont h4 {
	font-size: 16px;
	margin-bottom: 10px;
  font-weight: 700;
  font-family: var( --strong-font-family );
	color: var(--color-brown);
}
.p-news-cont img.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.p-news-cont img.alignright {
  margin: 0 0 0 10px;
  display: inline;
}	 
.p-news-cont img.alignleft {
  margin: 0 10px 0 0;
  display: inline;
}			 
.p-news-cont table {
  margin-bottom: 50px;
  width: 100%;
  border-bottom: 1px solid var(--color-brown);
}				 
.p-news-cont table th ,.p-news-cont table td {
  padding: 30px 20px;
  border-top: 1px solid var(--color-brown);
}				 
.p-news-cont table th {
  width: 20%;
}	 
.p-news-cont .aligncenter {
  clear: both;
  display: block;
  margin-left: auto;
  margin-right: auto;
}  
.p-news-cont .alignright {
  float: right;
} 
.p-news-cont .alignleft {
  float: left;
}
.p-news-cont p {
	margin-bottom: 20px;
	font-size: 15px;
}
.p-news-cont img {
	margin-bottom: 10px;
}
.p-news-cont a {
	color: #ff0000;
}
@media screen and (max-width: 1200px) {
  .p-news-cont {
    font-size: 14px;
  }
}
@media screen and (max-width: 769px) {
  .p-news-cont * {
    margin-bottom: 50px;
  }  
  .p-news-cont h2 {
    font-size: 18px;
    margin: 0 0 5px;
    padding: 0 0 0 14px;
  }
  .p-news-cont h2::before {
    top: 0;
  }
  .p-news-cont h3 {
    font-size: 16px;
    margin: 0 0 5px;
  }
  .p-news-cont h3::before {
    top: 10px;
  }
  .p-news-cont h4 {
    font-size: 15px;
  }
  .p-news-cont table {
    margin-bottom: 50px;
    width: 100%;
  }				 
  .p-news-cont table th ,.p-news-cont table td {
    padding: 25px 0;
  }				 
  .p-news-cont table th {
    width: 40%;
  }	 
  .p-news-cont img.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto;
  }
  .p-news-cont img.alignright {
    margin: 0 auto;
    display: block;
  }	 
  .p-news-cont img.alignleft {
    margin: 0 auto;
    display: block;
  }		 
  .p-news-cont .aligncenter {
    clear: both;
    display: block;
    margin-left: auto;
    margin-right: auto;
  }  
  .p-news-cont .alignright {
    float: none;
  } 
  .p-news-cont .alignleft {
    float: none;
  }
  .p-news-cont p{
    font-size: 14px;
  }
}

/*----- Pagenation -----*/
.p-pagenation {
	margin: 110px 0;
	position: relative;
}
.p-btn-news {
	width: 300px;
}
.p-link-news {
	background: var(--color-brown);
}

@media screen and (max-width: 599px) {
	.p-btn-news {
		width: 55.65%;
	}
}
@media screen and (max-width: 424px) {
	.p-btn-news {
		width: 210px;
	}
}


/* Utility
------------------------------------------------- */
.u-cont-inner {
	width: 100%;
	max-width: 1200px;
}
@media screen and (max-width: 1300px) {
	.u-cont-inner {
		width: calc(100% - 100px);
	}
}
@media screen and (max-width: 1024px) {
	.u-cont-inner {
		width: calc(100% - 80px);
	}
}
@media screen and (max-width: 767px) {
	.u-cont-inner {
		width: 90%;
	}
}

.u-req {
	width: 60px;
	padding: 10px 0 12px;
	color: #fff;
	font-size: 1.4rem;
	line-height: 1;
	text-align: center;
	background: var(--color-brown);
	border-radius: 5px;
}
@media screen and (max-width: 599px) {
	.u-req {
		width: 48px;
		padding: 8px 0 9px;
		font-size: 1.2rem;
	}
}

/* Display */
.u-cont-sll { display: none; }
.u-cont-sl { display: none; }
.u-cont-sm { display: none; }
.u-cont-sn { display: none; }
.u-cont-st  { display: none; }
.u-cont-s { display: none; }
.u-cont-pll { display: block; }
.u-cont-pl { display: block; }
.u-cont-pm { display: block; }
.u-cont-pn { display: block; }
.u-cont-pt  { display: block; }
.u-cont-p { display: block; }
@media screen and (max-width: 1279px) {
	.u-cont-sll { display: block; }
	.u-cont-pll { display: none; }
}
@media screen and (max-width: 1024px) {
	.u-cont-sl { display: block; }
	.u-cont-pl { display: none; }
}
@media screen and (max-width: 959px) {
	.u-cont-sm { display: block; }
	.u-cont-pm { display: none; }
}
@media screen and (max-width: 767px){
	.u-cont-sn { display: block; }
	.u-cont-pn { display: none; }
}
@media screen and (max-width: 424px) {
	.u-cont-st  { display: block; }
	.u-cont-pt  { display: none; }
}
@media screen and (max-width: 599px) {
	.u-cont-s  { display: block; }
	.u-cont-p  { display: none; }
}

.mtssb-daily-action {
	text-align: center;
}