/*
Theme Name:ba-template
*/
@charset "UTF-8";
/*####################################

1. General
┣ Root
┣ Element
┣ Decoration
┣ Css Animation
┣ Plugin Overwrite
┣ default.css Overwrite
┣ Other
2. Site Common Style
┣ Pagination
┣ Form
┣ 404 & Thanks
3. Header
4. Main
5. Footer
6. Common Style
┣ Single
┣ Section 
7.Module
8. Page

####################################*/
/*====================================

1. General

====================================*/
/*
Root
====================================*/
:root {
	/* メインカラー */
	--mainColor: #E1606D;
	/*====== 背景カラー ======*/
	/* コンテンツ背景カラー */
	--contentsBg: #F4F5F7;
	/* 下層ページトップ背景カラー */
	--lowerTopBg: #D7E1FA;
	/* 表組み項目名背景カラー */
	--tableItemBg: #F0F5FA;
	/* フォーム項目名背景カラー */
	--formItemBg: #F0F5FA;
	/* カテゴリーリンク背景カラー */
	--categoryLinkBg: #D7E1FA;
	/* メール問い合わせボタン背景カラー */
	--mailBtnBg: #022993;
	/*====== テキストカラー ======*/
	/* テキストカラー */
	--textColor: #333;
	/* リンクテキストカラー */
	--linkTextColor: #0c4876;
	/*====== ページネーションカラー ======*/
	/* ページネーションテキスト、矢印カラー */
	--pnColor: #aaa;
	/* ページネーションhoverテキスト、矢印カラー */
	--pnHoverColor: #e97b6a;
	/* ページネーションCurrentテキスト、矢印カラー */
	--pnCurrentColor: #e97b6a;
	/* ページネーションhover背景カラー */
	--pnHoverBg: #f6f6f6;
	/* ページネーションCurrent背景カラー */
	--pnCurrentBg: #f6f6f6;
	/*====== フォント ======*/
	--gothic: "NotoSansJp", "游ゴシック体", "YuGothic", "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
	--mincho: "NotoSerifJp", "游明朝", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "ＭＳ Ｐ明朝", "MS PMincho", serif;
	/*====== width ======*/
	--maxWidth768: 768px;
	--maxWidth500: 500px;
	--maxWidth375: 375px;
	--maxWidth300: 300px;
	/*====== other ======*/
}
/*
Element
====================================*/
body {
	color: var(--textColor);
}
/*
Decoration
====================================*/
/*
Css Animation
====================================*/
/* fade */
.css_fade {
	opacity: 0;
	animation-name: css_fade;
	animation-duration: 3s;
	animation-timing-function: ease;
	animation-delay: 1s;
	animation-direction: normal;
	animation-fill-mode: forwards;
}
@keyframes css_fade {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}
/* text fade */
.css_textSplitFade {
	opacity: 0;
}
.css_textSplitFade > span {
	opacity: 0;
	animation: css_textSplitFade 1s ease-out forwards;
}
@keyframes css_textSplitFade {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}
/*
Plugin Overwrite
====================================*/
/*
Slick
---------------------------------------------------------------*/
.top_mv .slick-arrow::before {
	border-color: var(--mainColor);
}
.top_mv .slick-dots li.slick-active button {
	background: var(--mainColor);
}
/*
default.css Overwrite
====================================*/
/*
Other
====================================*/
/*====================================

2. Site Common Style

====================================*/
/*
Detail
---------------------------------------------------------------*/
.pn_detail {
	max-width: 850px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	height: 55px;
	margin: 75px auto 0;
}
.pn_detail > * {
	height: 100%;
}
.pn_detail .detailpreviousBlk, .pn_detail .detailNextBlk {
	width: 55px;
}
.pn_detail .detailpreviousBlk a, .pn_detail .detailNextBlk a {
	position: relative;
	display: block;
	height: 100%;
	border-radius: 50%;
}
.pn_detail a {
	background: #e97b6a;
	box-shadow: 0px 3px 10px rgb(0 0 0 / 10%);
	border-radius: 6px;
}
.pn_detail a:hover {
	background: var(--pnHoverBg);
	opacity: 1;
}
.pn_detail .detailpreviousBlk a::before, .pn_detail .detailpreviousBlk a::after {
	content: '';
	position: absolute;
	top: calc(50% + 3px);
	width: 9px;
	height: 9px;
	border-bottom: solid 2px #FFF;
	border-left: solid 2px #FFF;
	-webkit-transform: rotate(45deg) translate(-50%, -50%);
	transform: rotate(45deg) translate(-50%, -50%);
	transition: .3s;
}
.pn_detail .detailpreviousBlk a::before {
	left: 50%;
}
.pn_detail .detailpreviousBlk a::after {
	left: calc(50% - 7px);
}
.pn_detail .detailpreviousBlk a:hover::before, .pn_detail .detailpreviousBlk a:hover::after {
	border-bottom: solid 2px var(--pnHoverColor);
	border-left: solid 2px var(--pnHoverColor);
}
.pn_detail .detailNextBlk a::before, .pn_detail .detailNextBlk a::after {
	content: '';
	position: absolute;
	top: calc(50% + 3px);
	width: 9px;
	height: 9px;
	border-top: solid 2px #FFF;
	border-right: solid 2px #FFF;
	-webkit-transform: rotate(45deg) translate(-50%, -50%);
	transform: rotate(45deg) translate(-50%, -50%);
	transition: .3s;
}
.pn_detail .detailNextBlk a::before {
	right: 50%;
}
.pn_detail .detailNextBlk a::after {
	right: calc(50% - 7px);
}
.pn_detail .detailNextBlk a:hover::before, .pn_detail .detailNextBlk a:hover::after {
	border-top: solid 2px var(--pnHoverColor);
	border-right: solid 2px var(--pnHoverColor);
}
.pn_detail .detailBackBlk a {
	display: flex;
	align-items: center;
	justify-content: center;
	background: #e97b6a;
	border-radius: 9999px;
	width: 300px;
	height: 100%;
	font-weight: 600;
	font-size: 16px;
	line-height: 24px;
	color: #FFF;
}
@media screen and (max-width: 1024px) {
	.pn_detail {
		max-width: 850px;
		display: flex;
		justify-content: space-between;
		align-items: center;
		width: 100%;
		height: 45px;
		gap: 0 10px;
		margin: 25px auto 0;
	}
	.pn_detail > * {
		height: 100%;
	}
	.pn_detail .detailpreviousBlk, .pn_detail .detailNextBlk {
		width: 45px;
	}
	.pn_detail .detailpreviousBlk a, .pn_detail .detailNextBlk a {
		position: relative;
		display: block;
		height: 100%;
		border-radius: 50%;
	}
	.pn_detail a {
		background: #e97b6a;
		box-shadow: 0px 3px 10px rgb(0 0 0 / 10%);
		border-radius: 6px;
	}
	.pn_detail a:hover {
		background: var(--pnHoverBg);
		opacity: 1;
	}
	.pn_detail .detailpreviousBlk a::before, .pn_detail .detailpreviousBlk a::after {
		content: '';
		position: absolute;
		top: calc(50% + 3px);
		width: 8px;
		height: 8px;
		border-bottom: solid 2px #FFF;
		border-left: solid 2px #FFF;
		-webkit-transform: rotate(45deg) translate(-50%, -50%);
		transform: rotate(45deg) translate(-50%, -50%);
		transition: .3s;
	}
	.pn_detail .detailpreviousBlk a::before {
		left: 50%;
	}
	.pn_detail .detailpreviousBlk a::after {
		left: calc(50% - 7px);
	}
	.pn_detail .detailpreviousBlk a:hover::before, .pn_detail .detailpreviousBlk a:hover::after {
		border-bottom: solid 2px var(--pnHoverColor);
		border-left: solid 2px var(--pnHoverColor);
	}
	.pn_detail .detailNextBlk a::before, .pn_detail .detailNextBlk a::after {
		content: '';
		position: absolute;
		top: calc(50% + 3px);
		width: 9px;
		height: 9px;
		border-top: solid 2px #FFF;
		border-right: solid 2px #FFF;
		-webkit-transform: rotate(45deg) translate(-50%, -50%);
		transform: rotate(45deg) translate(-50%, -50%);
		transition: .3s;
	}
	.pn_detail .detailNextBlk a::before {
		right: 50%;
	}
	.pn_detail .detailNextBlk a::after {
		right: calc(50% - 7px);
	}
	.pn_detail .detailNextBlk a:hover::before, .pn_detail .detailNextBlk a:hover::after {
		border-top: solid 2px var(--pnHoverColor);
		border-right: solid 2px var(--pnHoverColor);
	}
	.pn_detail .detailBackBlk a {
		display: flex;
		align-items: center;
		justify-content: center;
		background: #e97b6a;
		border-radius: 9999px;
		width: 200px;
		height: 100%;
		font-weight: 600;
		font-size: 15px;
		line-height: 21px;
		color: #FFF;
	}
}

/*
Thanks & 404
====================================*/
.thanks_section {
	overflow: hidden;
	padding: 80px 0 150px;
	border-bottom: 1px solid #c4c4c4;
}
.thanks_section .headBlk {
	width: 100vw;
	margin: 0 calc(50% - 50vw);
	padding: 20px 0;
	background: var(--contentsBg);
}
.thanks_section .head {
	text-align: center;
	font-size: 24px;
}
.thanks_section .mainBlk {
	margin: 40px 0 0;
}
.thanks_section .mainDesc {
	font-size: 16px;
	line-height: 30px;
	text-align: center;
}
.error_section {
	overflow: hidden;
	padding: 130px 0 150px;
	border-bottom: 1px solid #c4c4c4;
}
.error_section .headBlk {
	width: 100vw;
	margin: 0 calc(50% - 50vw);
	padding: 20px 0;
	background: var(--contentsBg);
}
.error_section .head {
	text-align: center;
	font-size: 30px;
	font-weight: 600;
}
.error_section .head span {
	font-size: 22px;
	display: block;
}
.error_section .mainBlk {
	margin: 35px 0 0;
}
.error_section .mainDesc {
	font-size: 14px;
	line-height: 26px;
	text-align: center;
}
.thanks_section .linkBlk, .error_section .linkBlk {
	text-align: center;
	margin: 45px 0 0;
}
.thanks_section .linkBlk a, .error_section .linkBlk a {
	display: inline-block;
	width: 250px;
	line-height: 40px;
	font-size: 14px;
	border: solid 1px #E97B6A;
	border-radius: 30px;
}
@media screen and (min-width: 1025px) {
	.thanks_section .linkBlk a:hover, .error_section .linkBlk a:hover {
		opacity: 1;
		background: #E97B6A;
		color: #fff;
	}
}
@media screen and (max-width: 1024px) {
	.thanks_section {
		padding: 60px 0 70px;
		border-bottom: 1px solid #c4c4c4;
	}
	.thanks_section .headBlk {
		padding: 15px 0;
	}
	.thanks_section .head {
		text-align: center;
		font-size: 20px;
	}
	.thanks_section .mainBlk {
		margin: 30px 0 0;
	}
	.thanks_section .mainDesc {
		line-height: 24px;
	}
	.thanks_section .linkBlk {
		margin: 40px 0 0;
	}
	.error_section {
		padding: 90px 0 60px;
		border-bottom: 1px solid #c4c4c4;
	}
	.error_section .head {
		font-size: 24px;
	}
	.error_section .head span {
		font-size: 16px;
	}
	.error_section .mainBlk {
		margin: 30px 0 0;
	}
	.error_section .mainDesc {
		line-height: 24px;
	}
}


/*====================================

3. Header

====================================*/
.logoBlk {
	flex-shrink: 0;
	display: flex;
	position: relative;
	background: #F7F2F2;
	height: fit-content;
	z-index: 1001;
}
.logoBlk a{
	position: absolute;
	top: 10px;
	left: 25px;
}
.logoBlk a img {
	width: 170px;
}
.header {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 1000;
	width: 100%;
	height: 100px;
}
.header .inner {
	height: 100%;
	padding: 0 150px 0 25px;
	display: flex;
	justify-content: flex-end;
	align-items: center;
	gap: 0 30px;
}
.header .logoBlk {
	flex-shrink: 0;
	display: flex;
}
.header .logoBlk a img {
	width: 170px;
}
.header .menuBlk {
	display: flex;
	flex-shrink: 0;
	height: 100%;
}
.header .menuBlk .menuUl {
	display: flex;
	gap: 25px;
	height: 100%;
}
.header .menuBlk .menuLi {
	position: relative;
	display: flex;
	align-items: center;
	height: 100%;
}
.header .menuBlk .menuLi a {
	font-weight: 700;
	font-size: 16px;
	line-height: 24px;
	color: #534F4F;
}
.header .menuBlk .menuLi a:hover {
	color: #E97B6A;
}
.header .mbMenuBdr {
	position: fixed;
	top: 0;
	right: 0;
	height: 100px;
	aspect-ratio: 1/1;
	cursor: pointer;
	background: #E97B6A;
	border-radius: 0 0 0 15px;
	z-index: 110;
}
.header._menuOpen .mbMenuBdr{
	right: var(--scrollbarW);
}
.header .mbMenuBdrBlk, .mbMenuBdrBlk span {
	display: inline-block;
	box-sizing: border-box;
}
.header .mbMenuBdrBlk {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 45px;
	height: auto;
	transform: translate(-50%, -50%);
}
.header .mbMenuBdrBlk:focus:not(:focus-visible) {
	outline: none;
}
.header .mbMenuBdrBlk::before, .mbMenuBdrBlk::after {
	content: '';
}
.header .mbMenuBdrBlk::before, .mbMenuBdrBlk::after, .mbMenuBdrBlk span {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 3px;
	background: #FFF;
	border-radius: 4px;
	transition: .2s;
}
.header .mbMenuBdrBlk::before {
	transform: rotate(45deg) scaleX(0);
}
.header .mbMenuBdrBlk::after {
	transform: rotate(-45deg) scaleX(0);
}
.header .mbMenuBdrBlk span:nth-of-type(1) {
	top: -6px;
	transition-delay: .2s;
}
.header .mbMenuBdrBlk span:nth-of-type(2) {
	top: 6px;
	transition-delay: .2s;
}
.header .mbMenuBdrBlk span:nth-of-type(3) {
	position: relative;
    width: fit-content;
    white-space: nowrap;
    height: auto;
    top: 15px;
	left: 50%;
    transform: translateX(-50%);
	background: none;
	font-weight: 600;
	font-size: 18px;
	line-height: 26px;
	color: #fff;
}
.header._menuOpen .mbMenuBdrBlk::before {
	transform: rotate(25deg) scaleX(1);
	transition-delay: .2s;
}
.header._menuOpen .mbMenuBdrBlk::after {
	transform: rotate(-25deg) scaleX(1);
	transition-delay: .2s;
}
.header._menuOpen .mbMenuBdrBlk span {
	transform: scaleX(0);
	transition-delay: 0s;
}
.header._menuOpen .mbMenuBdrBlk span:nth-of-type(3){
	transform: scaleX(1) translateX(-50%);
}
.header .mbMenuWrap{
	width: 100vw;
	height: 100vh;
	overflow-y: scroll;
	display: block;
	opacity: 0;
	visibility: hidden;
	position: fixed;
	top: 0;
	left: 0;
	background: rgba(0, 0, 0, 0.25);
	z-index: 100;
	transition: all 0.5s;
}
.header._menuOpen .mbMenuWrap{
	opacity: 1;
	visibility: visible;
}
.header .mbMenuBlk{
	width: 420px;
	min-height: 100%;
	margin-left: auto;
	background: #FBF9F6;
	padding: 130px 40px 40px;
	transform: translateX(200%);
	transition: all 0.5s;
}
.header._menuOpen .mbMenuBlk{
	transform: translateX(0%);
}
.header._menuOpen .mbMenuBlk .menuLogo{
	display: none;
}
.header .mbMenuUl{
	border-top: 1px solid #c4c4c4;
	margin-bottom: 25px;
}
.header .mbMenuLi{
	font-weight: 700;
	font-size: 20px;
	line-height: 30px;
	color: #534F4F;
	border-bottom: 1px solid #c4c4c4;
	position: relative;
}
.header .mbMenuLi > a{
	display: flex;
	width: 100%;
	height: 100%;
	padding: 20px 0;
	position: relative;
}
.header .mbMenuLi .range{
	position: absolute;
	top: 0;
	right: 0;
	width: 50px;
    height: 100%;
}
.header .mbMenuLi > a::after{
    content: "";
    display: block;
    -webkit-mask-image: url('images/icon_arrow.svg');
    -webkit-mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    background-color: #534F4F;
    width: 24px;
    height: 24px;
    position: absolute;
    top: 50%;
    right: 0px;
    transform: translate(0%, -50%);
	z-index: -1;
}
.header .mbMenuLi._accord > a::after{
	content: "";
    display: block;
    -webkit-mask-image: url('images/icon_plus.svg');
    -webkit-mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    background-color: #534f4f;
    width: 20px;
    height: 18px;
    position: absolute;
    top: 50%;
    right: 3px;
    transform: translate(0%, -50%);
	z-index: -1;
}
.header .mbMenuLi._accord._childOpen > a::after{
	-webkit-mask-image: url('images/icon_plus2.svg');
    -webkit-mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    background-color: #534f4f;
	transform: rotate(45deg) translate(0%, -50%);
    transform-origin: 50% 0%;
}
.header .mbMenuLi .mbMenuChildUl{
	display: flex;
	flex-flow: column;
	gap: 10px 0;
	height: 0;
	overflow: hidden;
	transition: .5s ease;
}
.header .mbMenuLi._childOpen .mbMenuChildUl{
	height: auto;
	padding: 20px 0 20px;
	margin-top: -20px;
}
.header .mbMenuLi .mbMenuChildLi{
	font-weight: 600;
	font-size: 16px;
}
.header .mbMenuLi .mbMenuChildLi a{
	font-weight: 600;
	font-size: 18px;
	line-height: 24px;
}
.header .mbMenuLi .mbMenuChildLi a::before{
	content: "ー ";
}
.header .mbMenuTel{
	border-radius: 10px;
	background: #fff;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 15px 18px 15px 25px;
	margin-top: 6px;
}
.header .mbMenuTel .telTtl{
	font-weight: 700;
	font-size: 18px;
	line-height: 26px;
	color: #534f4f;
}
.header .mbMenuTel .telNum{
	width: 190px;
	height: 45px;
	border-radius: 9999px;
	background: #f8f3ec;
	font-weight: 700;
	font-size: 22px;
	line-height: 32px;
	color: #534f4f;
	display: flex;
	align-items: center;
	gap: 0 8px;
	padding: 0 13px 0 13px;
}
.header .mbMenuTel .telNum .icon{
	width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #E97B6A;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 2px;
}
.header .mbMenuTel .telNum .icon::before {
    content: "";
    display: block;
    -webkit-mask-image: url('images/icon_tel.svg');
    -webkit-mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    background-color: #FFFFFF;
    width: 18px;
    height: 21px;
}
@media screen and (max-width: 1024px) {
	.logoBlk {
		flex-shrink: 0;
		display: flex;
		position: relative;
		background: #F7F2F2;
		height: fit-content;
		z-index: 100;
	}
	.logoBlk a{
		position: absolute;
		top: 10px;
		left: 5px;
	}
	.logoBlk a img {
		width: 150px;
	}
	.header {
		position: fixed;
		top: 0;
		right: 0;
		left: auto;
		z-index: 1000;
		width: 70px;
		height: 70px;
	}
	.header .inner {
		height: 100%;
		padding: 0 0px 0 10px;
		display: flex;
		justify-content: space-between;
		align-items: center;
		gap: 0 30px;
	}
	.header .menuBlk {
		display: none;
		flex-shrink: 0;
		height: 100%;
	}
	.header .menuBlk .menuUl {
		display: flex;
		gap: 25px;
		height: 100%;
	}
	.header .menuBlk .menuLi {
		position: relative;
		display: flex;
		align-items: center;
		height: 100%;
	}
	.header .menuBlk .menuLi a {
		font-weight: 700;
		font-size: 16px;
		line-height: 24px;
		color: #534F4F;
	}
	.header .menuBlk .menuLi a:hover {
		color: #e03c4c;
	}
	.header .mbMenuBdr {
		position: fixed;
		top: 0;
		right: 0;
		height: 70px;
		aspect-ratio: 1/1;
		cursor: pointer;
		background: #E97B6A;
		border-radius: 0 0 0 15px;
		z-index: 110;
	}
	.header._menuOpen .mbMenuBdr{
		right: var(--scrollbarW);
	}
	.header .mbMenuBdrBlk, .mbMenuBdrBlk span {
		display: inline-block;
		box-sizing: border-box;
	}
	.header .mbMenuBdrBlk {
		position: absolute;
		top: 50%;
		left: 50%;
		width: 35px;
		height: auto;
		transform: translate(-50%, -50%);
	}
	.header .mbMenuBdrBlk:focus:not(:focus-visible) {
		outline: none;
	}
	.header .mbMenuBdrBlk::before, .mbMenuBdrBlk::after {
		content: '';
	}
	.header .mbMenuBdrBlk::before, .mbMenuBdrBlk::after, .mbMenuBdrBlk span {
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 3px;
		background: #FFF;
		border-radius: 4px;
		transition: .2s;
	}
	.header .mbMenuBdrBlk::before {
		transform: rotate(45deg) scaleX(0);
	}
	.header .mbMenuBdrBlk::after {
		transform: rotate(-45deg) scaleX(0);
	}
	.header .mbMenuBdrBlk span:nth-of-type(1) {
		top: -6px;
		transition-delay: .2s;
	}
	.header .mbMenuBdrBlk span:nth-of-type(2) {
		top: 6px;
		transition-delay: .2s;
	}
	.header .mbMenuBdrBlk span:nth-of-type(3) {
		position: relative;
		width: fit-content;
		white-space: nowrap;
		height: auto;
		top: 14px;
		left: 50%;
		transform: translateX(-50%);
		background: none;
		font-weight: 600;
		font-size: 14px;
		line-height: 20px;
		color: #fff;
	}
	.header._menuOpen .mbMenuBdrBlk::before {
		transform: rotate(25deg) scaleX(1);
		transition-delay: .2s;
	}
	.header._menuOpen .mbMenuBdrBlk::after {
		transform: rotate(-25deg) scaleX(1);
		transition-delay: .2s;
	}
	.header._menuOpen .mbMenuBdrBlk span {
		transform: scaleX(0);
		transition-delay: 0s;
	}
	.header._menuOpen .mbMenuBdrBlk span:nth-of-type(3){
		transform: scaleX(1) translateX(-50%);
	}
	.header .mbMenuWrap{
		width: 100vw;
		height: 100vh;
		overflow-y: scroll;
		display: block;
		opacity: 0;
		visibility: hidden;
		position: fixed;
		top: 0;
		left: 0;
		background: rgba(0, 0, 0, 0.25);
		z-index: 100;
		transition: all 0.5s;
	}
	.header._menuOpen .mbMenuWrap{
		opacity: 1;
		visibility: visible;
	}
	.header .mbMenuBlk{
		width: 100%;
		min-height: 100%;
		margin-left: auto;
		background: #FBF9F6;
		padding: 90px 18px 40px;
		transform: translateX(200%);
		transition: all 0.5s;
	}
	.header._menuOpen .mbMenuBlk{
		transform: translateX(0%);
		position: relative;
	}
	.header._menuOpen .mbMenuBlk .menuLogo{
		display: block;
		position: absolute;
		top: 15px;
		left: 18px;
		width: 150px;
	}
	.header .mbMenuUl{
		border-top: 1px solid #c4c4c4;
		margin-bottom: 20px;
	}
	.header .mbMenuLi{
		font-weight: 700;
		font-size: 18px;
		line-height: 26px;
		color: #534F4F;
		border-bottom: 1px solid #c4c4c4;
		position: relative;
	}
	.header .mbMenuLi > a{
		display: flex;
		width: 100%;
		height: 100%;
		padding: 15px 0;
		position: relative;
	}
	.header .mbMenuLi .range{
		position: absolute;
		top: 0;
		right: 0;
		width: 40px;
		height: 100%;
	}
	.header .mbMenuLi > a::after{
		content: "";
		display: block;
		-webkit-mask-image: url('images/icon_arrow.svg');
		-webkit-mask-size: contain;
		-webkit-mask-repeat: no-repeat;
		-webkit-mask-position: center;
		background-color: #534F4F;
		width: 20px;
		height: 20px;
		position: absolute;
		top: 50%;
		right: 3px;
		transform: translate(0%, -50%);
		z-index: -1;
	}
	.header .mbMenuLi._accord > a::after{
		content: "";
		display: block;
		-webkit-mask-image: url('images/icon_plus.svg');
		-webkit-mask-size: contain;
		-webkit-mask-repeat: no-repeat;
		-webkit-mask-position: center;
		background-color: #534f4f;
		width: 18px;
		height: 16px;
		position: absolute;
		top: 50%;
		right: 5px;
		transform: translate(0%, -50%);
		z-index: -1;
	}
	.header .mbMenuLi._accord._childOpen > a::after{
		-webkit-mask-image: url('images/icon_plus2.svg');
		-webkit-mask-size: contain;
		-webkit-mask-repeat: no-repeat;
		-webkit-mask-position: center;
		background-color: #534f4f;
		transform: rotate(45deg) translate(0%, -50%);
		transform-origin: 50% 0%;
	}
	.header .mbMenuLi .mbMenuChildUl{
		display: flex;
		flex-flow: column;
		gap: 6px 0;
		height: 0;
		overflow: hidden;
		transition: .5s ease;
	}
	.header .mbMenuLi._childOpen .mbMenuChildUl{
		height: auto;
		padding: 20px 0 20px;
		margin-top: -20px;
	}
	.header .mbMenuLi .mbMenuChildLi{
		font-weight: 600;
		font-size: 16px;
	}
	.header .mbMenuLi .mbMenuChildLi a{
		font-weight: 600;
		font-size: 16px;
		line-height: 24px;
	}
	.header .mbMenuLi .mbMenuChildLi a::before{
		content: "ー ";
	}
	.header .mbMenuTel{
		border-radius: 10px;
		background: #fff;
		display: flex;
		justify-content: space-between;
		align-items: center;
		padding: 12px 25px 12px 30px;
		margin-top: 6px;
	}
	.header .mbMenuTel .telTtl{
		font-weight: 700;
		font-size: 16px;
		line-height: 24px;
		color: #534f4f;
	}
	.header .mbMenuTel .telNum{
		width: 190px;
		height: 45px;
		border-radius: 9999px;
		background: #f8f3ec;
		font-weight: 700;
		font-size: 20px;
		line-height: 30px;
		color: #534f4f;
		display: flex;
		align-items: center;
		gap: 0 8px;
		padding: 0 13px 0 17px;
	}
	.header .mbMenuTel .telNum .icon{
		width: 28px;
		height: 28px;
		border-radius: 50%;
		background: #E97B6A;
		display: flex;
		justify-content: center;
		align-items: center;
		margin-top: 2px;
	}
	.header .mbMenuTel .telNum .icon::before {
		content: "";
		display: block;
		-webkit-mask-image: url('images/icon_tel.svg');
		-webkit-mask-size: contain;
		-webkit-mask-repeat: no-repeat;
		-webkit-mask-position: center;
		background-color: #FFFFFF;
		width: 18px;
		height: 21px;
	}
}
/*====================================

4. Main

====================================*/
/*====================================

5. Footer

====================================*/
.footer {
	padding: 80px 0 30px;
}
.footer .footerBlk {
	display: flex;
	justify-content: space-between;
}
.footer .logoBlk {
	width: 220px;
	height: fit-content;
	display: flex;
	justify-content: center;
    padding: 5px 0;
    background: #FFFF;
	z-index: 1;
}
.footer .menuBlk {
	width: 67.5%;
	display: flex;
	gap: 0 50px;
}
.footer .menuUl{
	width: calc((100% - 100px) / 3);
	display: flex;
	flex-flow: column;
	gap: 15px 0;
}
.footer .menuLi{
	border-bottom: 1px solid #c4c4c4;
	position: relative;
	font-weight: 700;
	font-size: 18px;
	line-height: 26px;
	color: #534f4f;
}
.footer .menuLi > a{
	display: block;
	width: 100%;
	height: 100%;
	padding: 10px 0;
}
.footer .menuLi::after {
    content: "";
    display: block;
    -webkit-mask-image: url('images/icon_arrow.svg');
    -webkit-mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    background-color: #534F4F;
    width: 20px;
    height: 20px;
    position: absolute;
    top: 50%;
    right: 0px;
    transform: translate(0%, -50%);
}
.footer .menuChildLi{
	font-weight: 700;
	font-size: 16px;
	line-height: 24px;
	color: #534f4f;
	display: flex;
	flex-flow: column;
	padding-left: 1em;
    text-indent: -1em;
	gap: 5px 0;
}
.footer .menuChildLi a::before{
	content: "ー ";
}
.footer .contactBlk{
	display: flex;
	gap: 0 5px;
	margin-top: 40px;
}
.footer .contactItem{
	width: calc((100% - 20px) / 5);
	border-radius: 20px;
	background: #FBF9F6;
	padding: 20px 15px 22px;
	display: flex;
    flex-flow: column;
}
.footer .contactItem .itemTtl{
	font-weight: 700;
	font-size: 20px;
	line-height: 30px;
	padding-bottom: 10px;
	color: #534f4f;
	text-align: center;
	border-bottom: 2px dotted #534F4F;
}
.footer .contactItem .itemTxt{
	font-weight: 700;
	font-size: 15px;
	line-height: 24px;
	color: #534f4f;
	margin-top: 10px;
	margin-bottom: auto;
}
.footer .contactItem .itemLink{
	display: flex;
	align-items: center;
	width: 100%;
	height: 45px;
	margin-top: 10px;
	border-radius: 9999px;
	background: #fff;
	padding: 10px 12px;
	font-weight: 700;
	font-size: clamp(0.938rem, -0.881rem + 2.84vw, 1.25rem);
	line-height: 28px;
	color: #534f4f;
	gap: 0 10px;
}
.footer .contactItem .itemLink .icon{
	width: 28px;
	height: 28px;
	border-radius: 50%;
	background: #e97b6a;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-top: 2px;
}
.footer .contactItem .itemLink .icon::before{
	content: "";
    display: block;
    -webkit-mask-image: url('images/icon_tel.svg');
    -webkit-mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    background-color: #FFFFFF;
    width: 18px;
    height: 21px;
}
.footer .copyrightBlk {
	margin: 40px 0 0;
}
.footer .copyrightBlk .copyrightTxt {
	font-weight: 700;
	font-size: 16px;
	line-height: 24px;
	color: #534f4f;
	text-align: center;
}
@media screen and (max-width: 1024px) {
	.footer {
		padding: 35px 0 15px;
	}
	.footer .footerBlk {
		display: flex;
		flex-flow: column;
		justify-content: space-between;
	}
	.footer .logoBlk {
		width: 200px;
		height: fit-content;
		display: flex;
		justify-content: flex-start;
		padding: 5px 0;
		background: #FFFF;
	}
	.footer .menuBlk {
		width: 100%;
		display: flex;
		flex-flow: column;
		gap: 0 50px;
		margin-top: 13px;
	}
	.footer .menuUl{
		width: 100%;
		display: flex;
		flex-flow: row;
		flex-wrap: wrap;
		gap: 12px 20px;
		margin-top: 12px;
	}
	.footer .menuLi{
		width: calc((100% - 20px) / 2);
		border-bottom: 1px solid #c4c4c4;
		position: relative;
		font-weight: 700;
		font-size: 16px;
		line-height: 24px;
		color: #534f4f;
	}
	.footer .menuLi > a{
		display: block;
		width: 100%;
		height: 100%;
		padding: 10px 0;
	}
	.footer .menuLi::after {
		content: "";
		display: block;
		-webkit-mask-image: url('images/icon_arrow.svg');
		-webkit-mask-size: contain;
		-webkit-mask-repeat: no-repeat;
		-webkit-mask-position: center;
		background-color: #534F4F;
		width: 18px;
		height: 18px;
		position: absolute;
		top: 50%;
		right: 2px;
		transform: translate(0%, -50%);
	}
	.footer .menuChildLi{
		font-weight: 700;
		font-size: 16px;
		line-height: 24px;
		color: #534f4f;
		display: none;
		flex-flow: column;
		gap: 5px 0;
	}
	.footer .menuChildLi a::before{
		content: "ー ";
	}
	.footer .contactBlk{
		display: flex;
		flex-flow: column;
		gap: 10px 0;
		margin-top: 40px;
	}
	.footer .contactItem{
		width: 100%;
		border-radius: 20px;
		background: #FBF9F6;
		padding: 20px 20px 22px;
		display: flex;
		flex-flow: column;
	}
	.footer .contactItem .itemTtl{
		font-weight: 700;
		font-size: 18px;
		line-height: 26px;
		padding-bottom: 10px;
		color: #534f4f;
		text-align: center;
		border-bottom: 2px dotted #534f4f;
	}
	.footer .contactItem .itemTxt{
		font-weight: 700;
		font-size: 15px;
		line-height: 24px;
		color: #534f4f;
		margin-top: 10px;
		margin-bottom: auto;
	}
	.footer .contactItem .itemLink{
		display: flex;
		align-items: center;
		width: fit-content;
		height: auto;
		margin: 10px auto 0;
		border-radius: 9999px;
		background: #fff;
		padding: 8px 20px 8px 10px;
		font-weight: 700;
		font-size: 20px;
		line-height: 28px;
		color: #534f4f;
		gap: 0 10px;
	}
	.footer .contactItem .itemLink .icon{
		width: 28px;
		height: 28px;
		border-radius: 50%;
		background: #E97B6A;
		display: flex;
		justify-content: center;
		align-items: center;
		margin-top: 2px;
	}
	.footer .contactItem .itemLink .icon::before{
		content: "";
		display: block;
		-webkit-mask-image: url('images/icon_tel.svg');
		-webkit-mask-size: contain;
		-webkit-mask-repeat: no-repeat;
		-webkit-mask-position: center;
		background-color: #FFF;
		width: 18px;
		height: 21px;
	}
	.footer .copyrightBlk {
		margin: 30px 0 0;
	}
	.footer .copyrightBlk .copyrightTxt {
		font-weight: 700;
		font-size: 13px;
		line-height: 19px;
		color: #534f4f;
		text-align: center;
	}
}
/*====================================

6. Common Style

====================================*/
/*
6.1 Single
====================================*/
.cmn_outer {
	padding: 90px 0;
}
.cmn_inner {
	max-width: 1180px;
	padding: 0 40px;
	margin: auto;
}
.cmn_mv{
	height: 320px;
	position: relative;
}
.cmn_mv .inner{
	height: 100%;
	display: flex;
	flex-flow: column;
    justify-content: flex-end;
}
.cmn_mv .mvBg{
	position: absolute;
	width: 100%;
	height: 100%;
	z-index: -1;
}
.cmn_mv .mvBg img{
	width: 100%;
	height: 100%;
}
.cmn_mv .mvBg .pc{
}
.cmn_mv .mvBg .sp{
	display: none;
}
.cmn_mv .headBlk{
	width: 622px;
	height: 144px;
    margin: 0 auto -1px;
    display: flex;
    flex-flow: column;
    justify-content: end;
    align-items: center;
	background: url('images/cmn_mvBg.webp') no-repeat;
	background-size: contain;
	background-position: bottom;
}
.cmn_mv .headBlk .subHead{
	font-family: "MPLUSRounded1c", "ZenMaruGothic";
	font-weight: 700;
	font-size: 55px;
	line-height: 70px;
	letter-spacing: 0.05em;
	color: #534f4f;
}
.cmn_mv .headBlk .head{
	font-weight: 700;
	font-size: 20px;
	line-height: 30px;
	color: #e97b6a;
}
.cmn_lead{
	max-width: 1180px;
    padding: 0 40px;
	margin: 40px auto 0;
}
.cmn_leadTxt{
	font-weight: 600;
	font-size: 18px;
	line-height: 30px;
	text-align: center;
	color: #534f4f;
}
.anchorNav{
	max-width: 1100px;
	padding: 0 40px;
	margin: 50px auto 45px;
	display: flex;
	justify-content: center;
	gap: 0 10px;
}
.anchorNav.navFlex2{
	padding: 0;
}
.anchorNav.navFlex2 .anchorLink{
	width: calc((100% - 10px) / 4);
}
.anchorNav .anchorLink{
	width: calc((100% - 50px) / 5);
	height: 50px;
	border-radius: 9999px;
	background: #f1e9e7;
	display: flex;
	justify-content: center;
	align-items: center;
	font-weight: 700;
	font-size: clamp(0.875rem, 0.606rem + 0.42vw, 1rem);
	line-height: 24px;
	color: #534f4f;
	position: relative;
}
.anchorNav .anchorLink::after{
	content: "";
	display: block;
	width: 18px;
	height: 18px;
	background: url('images/icon_anchor.svg') no-repeat;
	background-size: contain;
	position: absolute;
	top: 50%;
    right: 16px;
    transform: translate(0%, -50%);
}
.cmn_ttl{
	font-weight: 700;
	font-size: clamp(2.125rem, 1.318rem + 1.26vw, 2.5rem);
	line-height: 58px;
	color: #534f4f;
	display: flex;
	flex-flow: column;
	align-items: center;
	gap: 15px 0;
}
.cmn_ttl::after{
	content: "";
	display: block;
	width: 95px;
	height: 9px;
	background: url('images/icon_head03.svg') no-repeat;
	background-size: contain;
}
.cmn_itemTtl{
	font-weight: 700;
	font-size: 35px;
	line-height: 50px;
	color: #534f4f;
	padding-bottom: 15px;
	border-bottom: 2px dotted #534f4f;
}
.cmn_itemTtl2{
	font-weight: 700;
	font-size: 40px;
	line-height: 58px;
	color: #534f4f;
	padding-bottom: 20px;
	border-bottom: 2px dotted #534f4f;
}
.cmn_txt{
	font-weight: 600;
    font-size: 18px;
    line-height: 30px;
    text-align: center;
    color: #534f4f;
    margin-top: 30px;
}
.cmn_accordion{
	height: auto;
	border-radius: 10px;
	overflow: hidden;
	margin-top: 25px;
	transition: .5s;
}
.cmn_accordion:first-of-type{
	margin-top: 50px;
}
.cmn_accordion .accordHead{
	width: 100%;
	height: 84px;
	background: #fff;
	font-weight: 700;
	font-size: 25px;
	line-height: 36px;
	color: #534f4f;
	padding: 0 30px;
	display: flex;
	align-items: center;
	position: relative;
}
.cmn_accordion .accordHead::after{
	content: "";
	display: block;
	width: 25px;
	height: 25px;
	background: url('images/icon_plus.svg') no-repeat;
	background-size: contain;
	position: absolute;
	top: 50%;
	right: 40px;
    transform: translate(0%, -50%);
}
.cmn_accordion[open] .accordHead::after{
	transform: rotate(45deg) translate(0%, -50%);
	transform-origin: 50% 0%;
}
.cmn_accordion .accordBlk{
	background: #fff;
	overflow: hidden;
	padding: 20px 65px 60px;
	margin-bottom: 30px;
	border-radius: 0 0 20px 20px;
}
.cmn_accordion table{
	width: 100%;
}
.cmn_accordion table tr.border{
	border-bottom: 1px solid #c4c4c4;
}
.cmn_accordion table th{
	height: 50px;
	background: #e97b6a;
	width: 23%;
	font-weight: 700;
	font-size: 18px;
	line-height: 26px;
	color: #fff;
	text-align: center;
	vertical-align: middle;
}
.cmn_accordion table th:first-of-type{
	width: 54%;
}
.cmn_accordion table td{
	height: 60px;
	font-weight: 700;
	font-size: 22px;
	line-height: 26px;
	color: #534f4f;
	text-align: center;
	vertical-align: middle;
}
.cmn_accordion table td span{
	font-size: 13px;
	margin-left: 2px;
}
.cmn_accordion table td:first-of-type{
	text-align: left;
	font-weight: 700;
	font-size: 18px;
	line-height: 26px;
}
.cmn_accordion table td:nth-of-type(2){
	background: #f9f9f9;
}
.cmn_accordion table td.empty{
	font-weight: 700;
	font-size: 18px;
	line-height: 26px;
}
.cmn_accordion ul{
	display: flex;
	flex-flow: column;
	gap: 15px 0;
	margin-top: 40px;
}
.cmn_accordion li{
	font-weight: 600;
	font-size: 18px;
	line-height: 26px;
	color: #534f4f;
	position: relative;
	padding-left:22px;
}
.cmn_accordion li:before{
	content: "";
	display: block;
	width: 12px;
	height: 12px;
	border-radius: 6px;
	background: #E97B6A;
	position: absolute;
	top: 7px;
	left: 0;
}
.cmn_accordion .accordCheck{
	width: 100%;
	border-radius: 10px;
	border: 3px solid #ecd8d3;
	margin: 40px auto -10px;
	padding: 20px;
	font-weight: 600;
    font-size: 20px;
    line-height: 26px;
	color: #534f4f;
	text-align: center;
}
.cmn_accordion .optionBlk{
	display: flex;
	gap: 0 50px;
	margin-top: 40px;
}
.cmn_accordion .optionBlk .optionItem{
	width: calc((100% - 50px) / 2);
}
.cmn_accordion .optionBlk .optionItem .itemTtl{
	font-weight: 700;
	font-size: 22px;
	line-height: 30px;
	color: #534f4f;
}
.cmn_accordion .optionBlk .optionItem .itemDl{
	margin-top: 10px;
	display: flex;
	flex-wrap: wrap;
	border-top: 1px solid #c4c4c4;
}
.cmn_accordion .optionBlk .optionItem .itemDt{
	width: 250px;
	padding: 15px 0;
	font-weight: 700;
    font-size: 16px;
    line-height: 22px;
	color: #534f4f;
	border-bottom: 1px solid #c4c4c4;
}
.cmn_accordion .optionBlk .optionItem .itemDd{
	width: calc(100% - 250px);
	padding: 15px 0;
	font-weight: 700;
    font-size: 16px;
    line-height: 22px;
	color: #534f4f;
	text-align: center;
	background: #f9f9f9;
	border-bottom: 1px solid #c4c4c4;
}
.cmn_accordion .optionBlk .optionItem .itemDd span{
	font-weight: 700;
    font-size: 12px;
    line-height: 18px;
	margin-left: 2px;
}
.listPagination{
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 0 15px;
	margin: 60px auto 0;
}
.listPagination .page-numbers{
	width: 50px;
	height: 50px;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	font-weight: 900;
	font-size: 25px;
	line-height: 35px;
	color: #534f4f;
}
.listPagination .page-numbers.current{
	background: #e97b6a;
	color: #FFF;
}
.listPagination .dots{
	width: 20px;
	font-weight: 900;
	font-size: 25px;
	line-height: 1;
	padding-bottom: 11px;
}
.listPagination .prev{
	position: relative;
}
.listPagination .prev::before,
.listPagination .prev::after {
  content: "";
  position: absolute;
  top: calc(50% - 0px);
  left: calc(50% - 7px);
  width: 13px;
  height: 2px;
  border-radius: 9999px;
  background-color: #534f4f;
  transform-origin: 1px 50%;
  transform: rotate(45deg);
}
.listPagination .prev::after {
  transform: rotate(-45deg);
}
.listPagination .next{
	position: relative;
}
.listPagination .next::before,
.listPagination .next::after {
  content: "";
  position: absolute;
  top: calc(50% - 0px);
  right: calc(50% - 7px);
  width: 13px;
  height: 2px;
  border-radius: 9999px;
  background-color: #534f4f;
  transform-origin: calc(100% - 1px) 50%;
  transform: rotate(45deg);
}
.listPagination .next::after {
  transform: rotate(-45deg);
}
.popupWrap{
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.3);
	z-index: 100000;
	opacity: 0;
	visibility: hidden;
	transition: .3s;
}
.popupWrap.active{
	display: block;
	opacity: 1;
	visibility: visible;
}
.popupBlk{
	width: 750px;
	height: 90vh;
	border-radius: 20px;
	background: #FBF9F6;
	padding: 60px;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
.popupClose{
	width: 70px;
	height: 70px;
	background: #534f4f;
	border-radius: 50%;
	position: absolute;
	top: -25px;
	right: -30px;
}
.popupClose::before{
	content: "";
	display: block;
	width: 45px;
	height: 45px;
	background: url('images/icon_plus2.svg') no-repeat;
	background-size: contain;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: rotate(45deg) translate(-50%, -50%);
	transform-origin: 0% 0%;
}
.popupTtl{
	font-weight: 700;
	font-size: 25px;
	line-height: 36px;
	color: #534f4f;
	text-align: center;
}
.popupCheck{
	width: 65%;
	max-height: 72%;
	margin: 25px auto 0;
	overflow-y: scroll;
	background: #fff;
	display: flex;
	flex-flow: column;
	gap: 15px 0;
	padding: 22px 22px 32px;
	border-radius: 20px;
}
.popupCheck.tag_little, .popupCheck.tag_bird, .popupCheck.tag_fish, .popupCheck.tag_reptiles, .popupCheck.empty{
	display: none;
}
.popupCheck.active{
	display: flex;
}
.popupCheck .emptyTxt{
	font-weight: 600;
    font-size: 18px;
    line-height: 26px;
    padding: 15px 0 10px;
	color: #e1606d;
}
.popupCheck label{
	display: flex;
	align-items: center;
	gap: 0 8px;
	font-weight: 700;
	font-size: 16px;
	line-height: 20px;
	color: #534f4f;
	width: fit-content;
}
.popupCheck label.child{
	margin-left: 28px;
}
.popupCheck input[type="checkbox"]{
	width: 20px;
	height: 20px;
	border-radius: 4px;
	background: #534f4f;
	border: 1px solid #534f4f;
}
.popupCheck input[type="radio"]{
	width: 18px;
	height: 18px;
	padding: 1px 0;
	background: #534f4f;
	border: 1px solid #534f4f;
}
.popupLink{
	width: 300px;
    height: 60px;
    background: #534f4f;
    border-radius: 9999px;
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 30px auto 0;
    position: relative;
	cursor: pointer;
}
.popupLink::after {
    content: "";
    display: block;
    background: url('images/icon_arrow.svg') no-repeat;
    background-size: contain;
    width: 24px;
    height: 24px;
    position: absolute;
    top: 50%;
    right: 16px;
    transform: translate(0%, -50%);
}
@media screen and (max-width: 1024px) {
	.cmn_outer {
		padding: 60px 0;
	}
	.cmn_inner {
		width: 92%;
		max-width: var(--maxWidth768);
		padding: 0;
	}
	.cmn_mv{
		height: 250px;
		position: relative;
	}
	.cmn_mv .inner{
		height: 100%;
		display: flex;
		flex-flow: column;
		justify-content: flex-end;
	}
	.cmn_mv .mvBg{
		position: absolute;
		width: 100%;
		height: 100%;
		z-index: -1;
	}
	.cmn_mv .mvBg img{
		width: 100%;
		height: 100%;
	}
	.cmn_mv .headBlk{
		width: 100%;
		max-width: 450px;
		height: 105px;
		margin: 0 auto -1px;
		display: flex;
		flex-flow: column;
		justify-content: end;
		align-items: center;
		background: url('images/cmn_mvBg.webp') no-repeat;
		background-size: cover;
		background-position: center bottom;
	}
	.cmn_mv .headBlk .subHead{
		font-family: "MPLUSRounded1c", "ZenMaruGothic";
		font-weight: 700;
		font-size: 40px;
		line-height: 55px;
		letter-spacing: 0.05em;
		color: #534f4f;
	}
	.cmn_mv .headBlk .head{
		font-weight: 700;
		font-size: 14px;
		line-height: 21px;
		color: #e97b6a;
	}
	.cmn_lead{
		max-width: 1180px;
		padding: 0 18px;
		margin: 40px auto 0;
	}
	.cmn_leadTxt{
		font-weight: 600;
		font-size: 16px;
		line-height: 26px;
		text-align: justify;
		color: #534f4f;
	}
	.anchorNav{
		max-width: 1100px;
		padding: 0 20px;
		margin: 30px auto 40px;
		display: flex;
		flex-flow: column;
		justify-content: center;
		align-items: center;
		gap: 10px;
	}
	.anchorNav.navFlex{
		flex-flow: row;
		flex-wrap: wrap;
		justify-content: flex-start;
	}
	.anchorNav.navFlex2{

	}
	.anchorNav.navFlex .anchorLink{
		max-width: none;
	}
	.anchorNav .anchorLink{
		width: 100%;
		max-width: 300px;
		height: 45px;
		border-radius: 9999px;
		background: #f1e9e7;
		display: flex;
		justify-content: center;
		align-items: center;
		font-weight: 700;
		font-size: 16px;
		line-height: 24px;
		color: #534f4f;
		position: relative;
	}
	.anchorNav .anchorLink::after{
		content: "";
		display: block;
		width: 18px;
		height: 18px;
		background: url('images/icon_anchor.svg') no-repeat;
		background-size: contain;
		position: absolute;
		top: 50%;
		right: 16px;
		transform: translate(0%, -50%);
	}
	.anchorNav.navFlex .anchorLink{
		width: calc((100% - 10px) / 2);
		height: 40px;
	}
	.anchorNav.navFlex2 .anchorLink{
		width: 100%;
	}
	.cmn_ttl{
		font-weight: 700;
		font-size: 28px;
		line-height: 40px;
		color: #534f4f;
		display: flex;
		flex-flow: column;
		align-items: center;
		gap: 10px 0;
	}
	.cmn_ttl::after{
		content: "";
		display: block;
		width: 64px;
		height: 6px;
		background: url('images/icon_head03.svg') no-repeat;
		background-size: contain;
	}
	.cmn_itemTtl{
		font-weight: 700;
		font-size: 22px;
		line-height: 32px;
		color: #534f4f;
		padding-bottom: 10px;
		border-bottom: 2px dotted #534f4f;
	}
	.cmn_itemTtl2{
		font-weight: 700;
		font-size: 25px;
		line-height: 36px;
		color: #534f4f;
		padding-bottom: 10px;
		border-bottom: 2px dotted #534f4f;
	}
	.cmn_txt{
		font-weight: 600;
		font-size: 16px;
		line-height: 26px;
		text-align: justify;
		color: #534f4f;
		margin-top: 34px;
	}
	.cmn_accordion{
		height: auto;
		border-radius: 10px;
		overflow: hidden;
		margin-top: 15px;
		transition: .5s;
	}
	.cmn_accordion:first-of-type{
		margin-top: 30px;
	}
	.cmn_accordion .accordHead{
		width: 100%;
		height: 53px;
		background: #fff;
		font-weight: 700;
		font-size: 16px;
		line-height: 24px;
		color: #534f4f;
		padding: 0 15px;
		display: flex;
		align-items: center;
		position: relative;
	}
	.cmn_accordion .accordHead::after{
		content: "";
		display: block;
		width: 17px;
		height: 17px;
		background: url('images/icon_plus.svg') no-repeat;
		background-size: contain;
		position: absolute;
		top: 50%;
		right: 15px;
		transform: translate(0%, -50%);
	}
	.cmn_accordion[open] .accordHead::after{
		transform: rotate(45deg) translate(0%, -50%);
		transform-origin: 50% 0%;
	}
	.cmn_accordion .accordBlk{
		background: #fff;
		overflow: hidden;
		padding: 15px 15px 30px;
		margin-bottom: 20px;
		border-radius: 0 0 20px 20px;
	}
	.cmn_accordion table{
		width: 100%;
	}
	.cmn_accordion table tr.border{
		border-bottom: 1px solid #c4c4c4;
	}
	.cmn_accordion table th{
		height: 45px;
		background: #e97b6a;
		width: 23%;
		font-weight: 700;
		font-size: 13px;
		line-height: 16px;
		color: #fff;
		text-align: center;
		vertical-align: middle;
	}
	.cmn_accordion table th:first-of-type{
		width: 37%;
	}
	.cmn_accordion table td{
		height: fit-content;
		padding: 11px 0;
		font-weight: 700;
		font-size: 16px;
		line-height: 22px;
		color: #534f4f;
		text-align: center;
		vertical-align: middle;
	}
	.cmn_accordion table td span{
		font-size: 11px;
		margin-left: 2px;
	}
	.cmn_accordion table td:first-of-type{
		text-align: left;
		font-weight: 700;
		font-size: 13px;
		line-height: 20px;
	}
	.cmn_accordion table td:nth-of-type(2){
		background: #f9f9f9;
	}
	.cmn_accordion table td.empty{
		font-weight: 700;
		font-size: 16px;
		line-height: 24px;
	}
	.cmn_accordion ul{
		display: flex;
		flex-flow: column;
		gap: 6px 0;
		margin-top: 20px;
	}
	.cmn_accordion li{
		font-weight: 600;
		font-size: 13px;
		line-height: 18px;
		color: #534f4f;
		position: relative;
		padding-left: 12px;
	}
	.cmn_accordion li:before{
		content: "";
		display: block;
		width: 6px;
		height: 6px;
		border-radius: 6px;
		background: #E97B6A;
		position: absolute;
		top: 6px;
		left: 0;
	}
	.cmn_accordion .accordCheck{
		width: 100%;
		border-radius: 10px;
		border: 3px solid #ecd8d3;
		margin: 20px auto -10px;
		padding: 12px 15px 14px;
		font-weight: 600;
		font-size: 15px;
		line-height: 21px;
		color: #534f4f;
		text-align: justify;
	}
	.cmn_accordion .optionBlk{
		display: flex;
		flex-flow: column;
		gap: 25px 0;
		margin-top: 30px;
	}
	.cmn_accordion .optionBlk .optionItem{
		width: 100%;
	}
	.cmn_accordion .optionBlk .optionItem .itemTtl{
		font-weight: 700;
		font-size: 16px;
		line-height: 22px;
		color: #534f4f;
	}
	.cmn_accordion .optionBlk .optionItem .itemDl{
		margin-top: 10px;
		display: flex;
		flex-wrap: wrap;
		border-top: 1px solid #c4c4c4;
	}
	.cmn_accordion .optionBlk .optionItem .itemDt{
		width: 60%;
		padding: 15px 0;
		font-weight: 700;
		font-size: 13px;
		line-height: 20px;
		color: #534f4f;
		border-bottom: 1px solid #c4c4c4;
	}
	.cmn_accordion .optionBlk .optionItem .itemDd{
		width: 40%;
		padding: 15px 0;
		font-weight: 700;
		font-size: 16px;
		line-height: 22px;
		color: #534f4f;
		text-align: center;
		background: #f9f9f9;
		border-bottom: 1px solid #c4c4c4;
	}
	.cmn_accordion .optionBlk .optionItem .itemDd span{
		font-weight: 700;
		font-size: 11px;
		line-height: 15px;
		margin-left: 2px;
	}
	.listPagination{
		display: flex;
		justify-content: center;
		align-items: center;
		gap: 0 10px;
		margin: 50px auto 0;
	}
	.listPagination .page-numbers{
		width: 40px;
		height: 40px;
		border-radius: 50%;
		display: flex;
		justify-content: center;
		align-items: center;
		font-weight: 900;
		font-size: 21px;
		line-height: 30px;
		color: #534f4f;
	}
	.listPagination .page-numbers.current{
		background: #e97b6a;
		color: #FFF;
	}
	.listPagination .dots{
		width: 20px;
		font-weight: 900;
		font-size: 25px;
		line-height: 1;
		padding-bottom: 11px;
	}
	.listPagination .prev{
		position: relative;
	}
	.listPagination .prev::before,
	.listPagination .prev::after {
		content: "";
		position: absolute;
		top: calc(50% - 0px);
		left: calc(50% - 7px);
		width: 11px;
		height: 2px;
		border-radius: 9999px;
		background-color: #534f4f;
		transform-origin: 1px 50%;
		transform: rotate(45deg);
	}
	.listPagination .prev::after {
		transform: rotate(-45deg);
	}
	.listPagination .next{
		position: relative;
	}
	.listPagination .next::before,
	.listPagination .next::after {
		content: "";
		position: absolute;
		top: calc(50% - 0px);
		right: calc(50% - 7px);
		width: 11px;
		height: 2px;
		border-radius: 9999px;
		background-color: #534f4f;
		transform-origin: calc(100% - 1px) 50%;
		transform: rotate(45deg);
	}
	.listPagination .next::after {
		transform: rotate(-45deg);
	}
	.popupWrap{
		display: none;
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background: rgba(0, 0, 0, 0.3);
		z-index: 100000;
		opacity: 0;
		visibility: hidden;
		transition: .3s;
	}
	.popupWrap.active{
		display: block;
		opacity: 1;
		visibility: visible;
	}
	.popupBlk{
		width: 100%;
		height: 100%;
		overflow: scroll;
		border-radius: 0px;
		background: #FBF9F6;
		padding: 60px 20px 50px;
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
	}
	.popupClose{
		width: 40px;
		height: 40px;
		background: #534f4f;
		border-radius: 50%;
		position: absolute;
		top: 15px;
		right: 20px;
	}
	.popupClose::before{
		content: "";
        display: block;
        width: 20px;
        height: 20px;
        background: url('images/icon_plus2.svg') no-repeat;
        background-size: contain;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: rotate(45deg) translate(-50%, -50%);
    	transform-origin: 0% 0%;
	}
	.popupTtl{
		font-weight: 700;
		font-size: 20px;
		line-height: 30px;
		color: #534f4f;
		text-align: center;
	}
	.popupCheck{
		width: 100%;
		margin: 21px auto 0;
		background: #fff;
		display: flex;
		flex-flow: column;
		gap: 15px 0;
		padding: 22px 17px 32px;
		border-radius: 20px;
	}
	.popupCheck.tag_little, .popupCheck.tag_bird, .popupCheck.tag_fish, .popupCheck.tag_reptiles, .popupCheck.empty{
		display: none;
	}
	.popupCheck.active{
		display: flex;
	}
	.popupCheck .emptyTxt{
		font-weight: 600;
		font-size: 18px;
		line-height: 26px;
		padding: 15px 0 10px;
		color: #e1606d;
	}
	.popupCheck label{
		display: flex;
		align-items: center;
		gap: 0 8px;
		font-weight: 700;
		font-size: 16px;
		line-height: 20px;
		color: #534f4f;
		width: fit-content;
	}
	.popupCheck label.child{
		margin-left: 28px;
	}
	.popupCheck input[type="checkbox"]{
		width: 20px;
		height: 20px;
		border-radius: 4px;
		background: #534f4f;
		border: 1px solid #534f4f;
	}
	.popupCheck input[type="radio"]{
		width: 18px;
		height: 18px;
		padding: 1px 0;
		background: #534f4f;
		border: 1px solid #534f4f;
	}
	.popupLink{
		width: 100%;
		max-width: 300px;
		height: 60px;
		background: #534f4f;
		border-radius: 9999px;
		font-weight: 700;
		font-size: 16px;
		line-height: 24px;
		color: #fff;
		display: flex;
		justify-content: center;
		align-items: center;
		margin: 20px auto 0;
		position: relative;
		cursor: pointer;
	}
	.popupLink::after {
		content: "";
		display: block;
		background: url('images/icon_arrow.svg') no-repeat;
		background-size: contain;
		width: 24px;
		height: 24px;
		position: absolute;
		top: 50%;
		right: 16px;
		transform: translate(0%, -50%);
	}
}

@media screen and (max-width: 432px) {
	.cmn_mv .mvBg .pc{
		display: none;
	}
	.cmn_mv .mvBg .sp{
		display: block;
	}
}

/*====================================

7. Module

====================================*/
/*====================================

8. Page

====================================*/
/*
Top
====================================*/
.top_cmnSubHead {
	font-family: "MPLUSRounded1c", "ZenMaruGothic";
	font-weight: 700;
	font-size: 64px;
	line-height: 85px;
	letter-spacing: 0.05em;
	color: #534F4F;
	display: flex;
	justify-content: center;
	margin-left: -50px;
}
.top_cmnSubHead::before{
	content: "";
    display: block;
    width: 100px;
	height: 90px;
    background: url('images/icon_paw.svg') no-repeat;
    background-size: contain;
    margin-bottom: 5px;
	margin-right: -50px;
}
.top_cmnHead {
	font-weight: 700;
	font-size: 22px;
	line-height: 32px;
	color: #E97B6A;
	text-align: center;
}
.top_mv {
	height: 100vh;
	padding-top: var(--headerH);
	background: #FBF9F6;
	position: relative;
}
.top_mv::before{
	content: "";
	display: block;
	width: 100%;
	height: 100%;
	background: url('images/top_mvBg.webp') no-repeat center bottom;
	background-size: contain;
	position: absolute;
	bottom: 0;
	left: 0;
}
.top_mv .inner {
	height: 100%;
	display: flex;
	align-items: center;
	gap: 0 clamp(2.5rem, -1.795rem + 6.7vw, 6.25rem);
	padding: 0 45px;
	position: relative;
	z-index: 1;
}
.top_mv .mvMovie{
	width: 62%;
	height: 100%;
	position: relative;
}
.top_mv .mvMovie video{
	width: 100%;
	height: calc(100vh -  var(--headerH) - 45px);
	aspect-ratio: 1 / 1;
	object-fit: cover;
	border-radius: 30px;
	overflow: hidden;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	margin: auto 0;
}
.top_mv .mvMovie img{
	width: 100%;
	height: calc(100vh -  var(--headerH) - 45px);
	aspect-ratio: 1 / 1;
	object-fit: cover;
	border-radius: 30px;
	overflow: hidden;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	margin: auto 0;
}
.top_mv .mvTxtBlk{
	width: 450px;
}
.top_mv .mvTtl{
	font-weight: 700;
	font-size: clamp(2.188rem, 0.91rem + 2vw, 2.781rem);
	line-height: clamp(3.438rem, 2.093rem + 2.1vw, 4.063rem);
	color: #534F4F;
}
.top_mv .mvTtl span{
	color: #E97B6A;
}
.top_mv .mvTxt{
	font-weight: 700;
	font-size: 20px;
	line-height: 40px;
	color: #534F4F;
	margin-top: 50px;
}
.top_news {
	background: #F1E9E7;
	padding: 45px 45px 70px;
}
.top_news .newsBlk {
	display: block;
	max-width: 760px;
	border-radius: 9999px;
	background: #fff;
}
.top_news .newsArticle {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	padding: 18px 55px 18px 40px;
	position: relative;
}
.top_news .newsArticle::after {
	content: "";
    display: block;
    -webkit-mask-image: url('images/icon_arrow.svg');
    -webkit-mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    background-color: #534F4F;
    width: 24px;
    height: 24px;
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translate(0%, -50%);
}
.top_news .newsDate {
	font-weight: 700;
	font-size: 16px;
	line-height: 24px;
	color: #979797;
}
.top_news .newsCat {
	width: fit-content;
	height: 24px;
	padding: 0 17px;
	border-radius: 9999px;
	background: #E97B6A;
	margin-left: 20px;
	font-weight: 700;
	font-size: 15px;
	line-height: 22px;
	color: #FFFFFF;
}
.top_news .newsTtl {
	flex: 1;
	margin-left: 25px;
	font-weight: 700;
	font-size: 16px;
	line-height: 24px;
	color: #534F4F;
}
.top_pickup{
	background: #F1E9E7;
	padding: 0 0 140px;
}
.top_pickup .head{
	font-weight: 700;
	font-size: 40px;
	line-height: 58px;
	color: #534F4F;
	display: flex;
	justify-content: center;
	align-items: flex-end;
	gap: 0 24px;
}
.top_pickup .head::before{
	content: "";
	display: block;
	width: 23px;
	height: 34px;
	-webkit-mask-image: url('images/icon_head1.svg');
    -webkit-mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    background-color: #534F4F;
	margin-bottom: 5px;
}
.top_pickup .head::after{
	content: "";
	display: block;
	width: 23px;
	height: 34px;
	-webkit-mask-image: url('images/icon_head2.svg');
    -webkit-mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    background-color: #534F4F;
	margin-bottom: 5px;
}
.top_pickup .pickupBlk{
	display: flex;
	width: calc(100vw - (var(--scrollbarW) / 2));
	margin: 50px calc(50% - 50vw) 0;
}
.pickupSlider .slick-track {
  display: flex;
}
.pickupSlider .slick-slide{
	height: auto !important;
	margin: 0 15px;
}
.top_pickup .pickupItem{
	width: 345px;
	border-radius: 20px;
	background: #FFF;
	overflow: hidden;
	display: flex;
	flex-flow: column;
}
.top_pickup .pickupItem .itemImg{
	width: 100%;
	height: fit-content;
	aspect-ratio: 1 / 0.7;
}
.top_pickup .pickupItem .itemImg img{
	width: 100%;
	height: 100%;
}
.top_pickup .pickupItem .itemTxtBlk{
	flex: 1;
	display: flex;
	flex-flow: column;
	padding: 20px 20px 27px;
}
.top_pickup .pickupItem .itemTtl{
	font-weight: 700;
	font-size: 22px;
	line-height: 30px;
	color: #534F4F;
	display: flex;
	align-items: center;
	gap: 0 10px;
	margin-bottom: 10px;
}
.top_pickup .pickupItem .itemTtl .gender{
	flex-shrink: 0;
	display: block;
	width: 35px;
	height: 35px;
	border-radius: 50%;
}
.top_pickup .pickupItem .itemTtl .gender.male{
	background: #6FB4C2 url('images/icon_male.svg') no-repeat;
	background-position: center;
}
.top_pickup .pickupItem .itemTtl .gender.female{
	background: #EE988B url('images/icon_female.svg') no-repeat;
	background-position: center;
}
.top_pickup .pickupItem .itemTxt{
	font-weight: 700;
	font-size: 18px;
	line-height: 26px;
	color: #7B7F85;
	display: flex;
	flex-wrap: wrap;
	gap: 0 15px;
	margin-top: auto;
}
.top_search{
	position: relative;
	padding: 90px 0 160px;
}
.top_search::before{
	content: "";
	display: block;
	width: 100%;
	height: 50%;
	background: url('images/cmn_wave01_top.webp') no-repeat top left;
	background-size: contain;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 0;
	pointer-events: none;
}
.top_search .searchBlk{
	border-radius: 30px;
	background: #fbf9f6;
	filter: drop-shadow(0px 6px 10px rgba(52, 60, 75, 0.1));
	margin-top: 40px;
	padding: 40px 60px;
}
.top_search .searchTab{
	display: flex;
	border-bottom: 2px dotted #534f4f;
}
.top_search .searchTab .tabItem{
	width: calc(100% / 3);
	height: 77px;
	font-weight: 700;
	font-size: 25px;
	line-height: 36px;
	color: #534F4F;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 10px 10px 0px 0px;
	cursor: pointer;
}
.top_search .searchTab .tabItem.current{
	background: #534f4f;
	color: #fff;
}

.top_search .searchContents{
	display: none;
}
.top_search .searchContents.current{
	display: block;
}
.top_search .searchBtn{
	display: flex;
	justify-content: space-between;
	margin-top: 25px;
}
.top_search .searchBtn .btnItem{
	width: calc((100% - 50px) / 4);
	position: relative;
	cursor: pointer;
	transition: .3s;
}
.top_search .searchBtn .btnItem:hover{
	opacity: 0.7;
}
.top_search .searchBtn .btnTtl{
	width: 100%;
	height: 100%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	font-weight: 700;
	font-size: 25px;
	line-height: 35px;
	text-align: center;
	color: #fff;
	display: flex;
	justify-content: center;
	align-items: center;
}
.top_search .searchLink{
	width: 300px;
	height: 60px;
	margin: 35px auto 0;
	border-radius: 9999px;
	background: #E97B6A;
	font-weight: 700;
	font-size: 16px;
	line-height: 24px;
	color: #fff;
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	cursor: pointer;
	transition: .3s;
}
.top_search .searchLink::after{
	content: "";
	display: block;
	background: url('images/icon_arrow.svg') no-repeat;
	background-size: contain;
	width: 24px;
	height: 24px;
	position: absolute;
	top: 50%;
	right: 16px;
	transform: translate(0%, -50%);
}
.top_search .searchLink:hover{
	opacity: 0.7;
}
.top_sns{
	background: url('images/sns_catch.webp') no-repeat;
	background-size: cover;
    background-position: center;
	margin: -40px 0;
    position: relative;
    z-index: 1;
}
.top_sns .head{
	font-weight: 700;
	font-size: 40px;
	line-height: 58px;
	color: #FFF;
	display: flex;
	justify-content: center;
	align-items: flex-end;
	gap: 0 20px;
}
.top_sns .head::before{
	content: "";
	display: block;
	width: 23px;
	height: 34px;
	-webkit-mask-image: url(images/icon_head1.svg);
    -webkit-mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    background-color: #FFF;
	margin-bottom: 5px;
}
.top_sns .head::after{
	content: "";
	display: block;
	width: 23px;
	height: 34px;
	-webkit-mask-image: url(images/icon_head2.svg);
    -webkit-mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    background-color: #FFF;
	margin-bottom: 5px;
}
.top_sns .snsBlk{
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 35px;
	margin-top: 57px;
}
.top_sns .snsItem{
	width: 76px;
}
.top_sns .snsLink{
	width: 300px;
	height: 60px;
	background: #FFF;
	margin: 47px auto 0;
	border-radius: 9999px;
	font-weight: 700;
	font-size: 16px;
	line-height: 24px;
	color: #534F4F;
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	cursor: pointer;
}
.top_sns .snsLink::after{
	content: "";
    display: block;
    -webkit-mask-image: url(images/icon_arrow.svg);
    -webkit-mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    background-color: #534F4F;
    width: 24px;
    height: 24px;
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translate(0%, -50%);
}
.snsPopup{
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.3);
	z-index: 100000;
	opacity: 0;
	visibility: hidden;
	transition: .3s;
}
.snsPopup.active{
	display: block;
	opacity: 1;
	visibility: visible;
}
.snsPopupClose{
	width: 70px;
	height: 70px;
	position: absolute;
	top: -30px;
	right: -30px;
}
.snsPopupClose img{
	width: 100%;
}
.snsPopup .snsPopupItem{
	width: 900px;
    height: auto;
    border-radius: 20px;
    background: #FBF9F6;
    padding: 40px 60px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.snsPopup .snsPopupBlk{
	border-radius: 20px;
	background: #fff;
	padding: 30px;
}
.snsPopup .snsPopupBlk:last-of-type{
	margin-top: 50px;
}
.snsPopup .snsPopupBlkTtl{
	font-weight: 700;
	font-size: 24px;
	line-height: 35px;
	letter-spacing: 0.02em;
	color: #534f4f;
	text-align: center;
}
.snsPopup .snsPopupLinkBlk{
	display: flex;
	flex-wrap: wrap;
	gap: 15px;
	margin-top: 30px;
}
.snsPopup .snsPopupLink{
	width: calc((100% - 30px) / 3);
	height: 60px;
	background: #fff;
	border: 1px solid #534F4F;
	border-radius: 9999px;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 0 10px;
	font-weight: 700;
	font-size: 16px;
	line-height: 24px;
	color: #534f4f;
}
.snsPopup .snsPopupLink.insta::before{
	content: "";
	width: 21px;
	height: 21px;
	background: url('images/icon_insta02.svg') no-repeat;
}
.snsPopup .snsPopupLink.x{
	background: #534F4F;
	font-weight: 700;
	font-size: 16px;
	line-height: 24px;
	color: #fff;
}
.snsPopup .snsPopupLink.x::before{
	content: "";
	width: 26px;
	height: 26px;
	background: url('images/icon_x02.svg') no-repeat;
}
.top_service{
	background: #FBF9F6;
	position: relative;
	padding: 190px 0 100px;
	overflow: hidden;
}
.top_service .inner{
	padding: 90px 40px 120px;
}
.top_service .inner::before{
	content: "";
    display: block;
    width: 92vw;
	min-width: 1180px;
	max-width: 1350px;
    height: 100%;
    background: #FFF;
	border-radius: 80px;
    position: absolute;
    top: 0;
    left: 50%;
	transform: translateX(-50%);
    z-index: -1;
}
.top_service .serviceItem{
	display: flex;
	gap: 0 65px;
	margin-top: 80px;
}
.top_service .serviceItem.first{
	margin-top: 60px;
}
.top_service .serviceItem .itemImg{
	max-width: 48%;
	border-radius: 40px;
	overflow: hidden;
}
.top_service .serviceItem .itemTxtBlk{
	flex: 1;
	margin: auto 0;
}
.top_service .serviceItem .itemTtl{
	font-weight: 700;
	font-size: 35px;
	line-height: 50px;
	color: #534F4F;
}
.top_service .serviceItem .itemTxt{
	font-weight: 600;
	font-size: 18px;
	line-height: 28px;
	color: #534F4F;
	margin-top: 30px;
}
.top_service .serviceItem .itemLink{
	width: 250px;
	height: 60px;
	margin: 30px 0 0;
	border-radius: 9999px;
    background: #E97B6A;
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}
.top_service .serviceItem .itemLink::after {
    content: "";
    display: block;
    background: url('images/icon_arrow.svg') no-repeat;
    background-size: contain;
    width: 24px;
    height: 24px;
    position: absolute;
    top: 50%;
    right: 16px;
    transform: translate(0%, -50%);
}
.top_shop {
    position: relative;
    padding: 130px 0 100px;
}
.top_shop::before{
	content: "";
    display: block;
    width: 100%;
    height: 50%;
    background: url('images/cmn_wave02_top.webp') no-repeat top left;
    background-size: contain;
    position: absolute;
    top: 0;
    left: 0;
	z-index: 0;
	pointer-events: none;
}
.top_shop .shopTxt{
	font-weight: 700;
	font-size: 18px;
	line-height: 30px;
	text-align: center;
	color: #534f4f;
	margin-top: 40px;
}
.top_shop .shopBlk{
	display: flex;
	width: calc(100vw - (var(--scrollbarW) / 2));
	margin: 50px calc(50% - 50vw) 0;
}
.shopSlider .slick-slide{
	margin: 0 20px;
}
.top_shop .shopBlk .shopImg{
	width: 350px;
	border-radius: 20px;
	background: #FFF;
	overflow: hidden;
}
.top_shop .shopLink{
	width: 300px;
	height: 60px;
	margin: 50px auto 0;
	border-radius: 9999px;
    background: #E97B6A;
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}
.top_shop .shopLink::after {
    content: "";
    display: block;
    background: url('images/icon_arrow.svg') no-repeat;
    background-size: contain;
    width: 24px;
    height: 24px;
    position: absolute;
    top: 50%;
    right: 16px;
    transform: translate(0%, -50%);
}
.top_recruit{
	padding: 0px 0 130px;
	position: relative;
}
.top_recruit::before{
	content: "";
    display: block;
    width: 100%;
    height: 50%;
    background: url('images/cmn_wave01_bottom.webp') no-repeat bottom left;
    background-size: contain;
    position: absolute;
    bottom: 0;
    left: 0;
	z-index: 0;
	pointer-events: none;
}
.top_recruit .recruitBlk{
	width: 100%;
	border-radius: 40px;
	background: url('images/top_recruit.webp') no-repeat;
	background-size: cover;
	padding: 70px 35px;
	position: relative;
}
.top_recruit .recruitTtl{
	font-family: "MPLUSRounded1c", "ZenMaruGothic";
	font-weight: 700;
	font-size: 115px;
	line-height: 100px;
	color: rgba(255, 255, 255, 0.3);
	position: absolute;
	bottom: 0;
	left: -5px;
}
.top_recruit .recruitItem{
	width: 45%;
	margin-left: auto;
}
.top_recruit .recruitItem .itemTtl{
	font-weight: 700;
	font-size: 55px;
	line-height: 80px;
	color: #fff;
}
.top_recruit .recruitItem .itemTxt{
	font-weight: 700;
	font-size: 20px;
	line-height: 35px;
	color: #fff;
	margin-top: 25px;
}
.top_recruit .recruitItem .itemLink{
	width: 250px;
    height: 60px;
    margin: 50px 0 0;
    background: #FFF;
    border-radius: 9999px;
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
    color: #e97b6a;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}
.top_recruit .recruitItem .itemLink::after {
    content: "";
    display: block;
    -webkit-mask-image: url(images/icon_arrow.svg);
    -webkit-mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    background-color: #E97B6A;
    width: 24px;
    height: 24px;
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translate(0%, -50%);
}
.top_inLink{
	background: #F1E9E7;
}
.top_inLink .inLinkBlk{
	display: flex;
	gap: 0 40px;
}
.top_inLink .inLinkItem{
	width: calc((100% - 40px) / 2);
	height: 220px;
	padding: 0 40px;
	display: flex;
	align-items: center;
	border-radius: 20px;
	overflow: hidden;
}
.top_inLink .inLinkItem.item01{
	background: url('images/top_inLink01.webp') no-repeat;
	background-size: cover;
}
.top_inLink .inLinkItem.item02{
	background: url('images/top_inLink02.webp') no-repeat;
	background-size: cover;
}
.top_inLink .inLinkItem .itemTtl{
	width: 100%;
	font-weight: 700;
	font-size: 30px;
	line-height: 45px;
	color: #fff;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.top_inLink .inLinkItem .itemTtl .arrow{
	display: block;
	width: 55px;
	height: 55px;
	border-radius: 50%;
	border: 2px solid #FFFFFF;
	position: relative;
}
.top_inLink .inLinkItem .itemTtl .arrow::after {
    content: "";
    display: block;
    background: url('images/icon_arrow.svg') no-repeat;
    background-size: contain;
    width: 30px;
    height: 30px;
    position: absolute;
    top: 50%;
    left: 50%;
  	transform: translate(-50%, -50%);
}
@media screen and (max-width: 1024px) {
	.top_cmnSubHead {
		font-family: "MPLUSRounded1c", "ZenMaruGothic";
		font-weight: 700;
		font-size: 40px;
		line-height: 53px;
		letter-spacing: 0.05em;
		color: #534F4F;
		display: flex;
		justify-content: center;
		margin-left: -30px;
	}
	.top_cmnSubHead::before{
		content: "";
		display: block;
		width: 68px;
		height: 63px;
		background: url('images/icon_paw.svg') no-repeat;
		background-size: contain;
		margin-bottom: 0px;
		margin-right: -30px;
	}
	.top_cmnHead {
		font-weight: 700;
		font-size: 14px;
		line-height: 20px;
		color: #E97B6A;
		text-align: center;
		margin-top: -10px;
	}
	.top_mv {
		height: auto;
		padding-top: 10px;
		background: #FBF9F6;
		position: relative;
	}
	.top_mv::before{
		content: "";
		display: block;
		width: 100%;
		height: 100%;
		background: url('images/top_mvBg_sp.webp') no-repeat center bottom;
		background-size: contain;
		position: absolute;
		bottom: -1px;
		left: 0;
	}
	.top_mv .inner {
		height: 100%;
		display: flex;
		flex-flow: column;
		align-items: center;
		gap: 0 clamp(2.5rem, -1.795rem + 6.7vw, 6.25rem);
		padding: 0 10px;
		position: relative;
		z-index: 1;
	}
	.top_mv .mvMovie{
		width: 100%;
		height: calc(100vh - 100px);
		position: relative;
	}
	.top_mv .mvMovie video{
		width: 100%;
		height: 100%;
		aspect-ratio: auto;
		border-radius: 30px;
		overflow: hidden;
		position: absolute;
		top: 0;
		bottom: 0;
		left: 0;
		margin: auto 0;
	}
	.top_mv .mvMovie img{
		width: 100%;
		height: 100%;
		aspect-ratio: auto;
		border-radius: 30px;
		overflow: hidden;
		position: absolute;
		top: 0;
		bottom: 0;
		left: 0;
		margin: auto 0;
	}
	.top_mv .mvTxtBlk{
		width: 100%;
		margin-bottom: 40px;
	}
	.top_mv .mvTtl{
		font-weight: 700;
		font-size: 28px;
		line-height: 44px;
		color: #534F4F;
		margin-top: 35px;
	}
	.top_mv .mvTtl span{
		color: #E97B6A;
	}
	.top_mv .mvTxt{
		font-weight: 700;
		font-size: 15px;
		line-height: 28px;
		color: #534F4F;
		margin-top: 20px;
	}
	.top_news {
		background: #F1E9E7;
		padding: 33px 0px 50px;
	}
	.top_news .inner{
		width: 92%;
        max-width: var(--maxWidth768);
		padding: 0;
        margin: 0 auto;
	}
	.top_news .newsBlk {
		display: block;
		max-width: 760px;
		border-radius: 9999px;
		background: #fff;
	}
	.top_news .newsArticle {
		display: flex;
		flex-wrap: wrap;
		justify-content: flex-start;
		align-items: center;
		padding: 11px 45px 11px 32px;
	}
	.top_news .newsArticle::after {
		content: "";
		display: block;
		-webkit-mask-image: url('images/icon_arrow.svg');
		-webkit-mask-size: contain;
		-webkit-mask-repeat: no-repeat;
		-webkit-mask-position: center;
		background-color: #534F4F;
		width: 24px;
		height: 24px;
		position: absolute;
		top: 50%;
		right: 15px;
		transform: translate(0%, -50%);
	}
	.top_news .newsDate {
		font-weight: 700;
		font-size: 15px;
		line-height: 21px;
		color: #979797;
	}
	.top_news .newsCat {
		width: fit-content;
		height: 20px;
		padding: 0 13px;
		border-radius: 9999px;
		background: #E97B6A;
		margin-left: 10px;
		font-weight: 700;
		font-size: 13px;
		line-height: 20px;
		color: #FFFFFF;
	}
	.top_news .newsTtl {
		width: 100%;
		flex: auto;
		margin-top: 5px;
		margin-left: 0px;
		font-weight: 700;
		font-size: 14px;
		line-height: 21px;
		color: #534F4F;
	}
	.top_pickup{
		background: #F1E9E7;
		padding: 0 0 80px;
	}
	.top_pickup .head{
		font-weight: 700;
		font-size: 20px;
		line-height: 29px;
		color: #534F4F;
		display: flex;
		justify-content: center;
		align-items: flex-end;
		gap: 0 15px;
	}
	.top_pickup .head::before{
		content: "";
		display: block;
		width: 15px;
		height: 22px;
		-webkit-mask-image: url('images/icon_head1.svg');
    	-webkit-mask-size: contain;
    	-webkit-mask-repeat: no-repeat;
    	-webkit-mask-position: center;
    	background-color: #534F4F;
		margin-bottom: 2px;
	}
	.top_pickup .head::after{
		content: "";
		display: block;
		width: 15px;
		height: 22px;
		-webkit-mask-image: url('images/icon_head2.svg');
    	-webkit-mask-size: contain;
    	-webkit-mask-repeat: no-repeat;
    	-webkit-mask-position: center;
    	background-color: #534F4F;
		margin-bottom: 2px;
	}
	.top_pickup .pickupBlk{
		display: flex;
		width: calc(100vw);
		margin: 25px calc(50% - 50vw) 0;
	}
	.pickupSlider .slick-track {
		display: flex;
	}
	.pickupSlider .slick-slide{
		height: auto !important;
		margin: 0 7px;
	}
	.top_pickup .pickupItem{
		width: 345px;
		border-radius: 20px;
		background: #FFF;
		overflow: hidden;
		display: flex;
		flex-flow: column;
	}
	.top_pickup .pickupItem .itemImg{
		width: 100%;
		height: fit-content;
		aspect-ratio: 1 / 0.7;
	}
	.top_pickup .pickupItem .itemImg img{
		width: 100%;
		height: 100%;
	}
	.top_pickup .pickupItem .itemTxtBlk{
		flex: 1;
		display: flex;
		flex-flow: column;
		padding: 18px 18px 21px;
	}
	.top_pickup .pickupItem .itemTtl{
		font-weight: 700;
		font-size: 20px;
		line-height: 26px;
		color: #534F4F;
		display: flex;
		align-items: center;
		gap: 0 10px;
		margin-bottom: 10px;
	}
	.top_pickup .pickupItem .itemTtl .gender{
		flex-shrink: 0;
		display: block;
		width: 32px;
		height: 32px;
		border-radius: 50%;
	}
	.top_pickup .pickupItem .itemTtl .gender.male{
		background: #6FB4C2 url('images/icon_male.svg') no-repeat;
		background-position: center;
	}
	.top_pickup .pickupItem .itemTtl .gender.female{
		background: #EE988B url('images/icon_female.svg') no-repeat;
		background-position: center;
	}
	.top_pickup .pickupItem .itemTxt{
		font-weight: 700;
		font-size: 16px;
		line-height: 24px;
		color: #7B7F85;
		display: flex;
		gap: 0 15px;
		margin-top: 0;
	}
	.top_search{
		position: relative;
		padding: 50px 0 70px;
	}
	.top_search::before{
		content: "";
		display: block;
		width: 100%;
		height: 50%;
		background: url('images/cmn_wave01_top.webp') no-repeat top left;
		background-size: contain;
		position: absolute;
		top: 0;
		left: 0;
		z-index: 0;
		pointer-events: none;
	}
	.top_search .searchBlk{
		border-radius: 30px;
		background: #fbf9f6;
		filter: drop-shadow(0px 6px 10px rgba(52, 60, 75, 0.1));
		margin-top: 27px;
		padding: 30px 15px 30px;
	}
	.top_search .searchTab{
		display: flex;
		border-bottom: 2px dotted #534f4f;
	}
	.top_search .searchTab .tabItem{
		width: calc(100% / 3);
		height: 70px;
		font-weight: 700;
		font-size: 16px;
		line-height: 22px;
		color: #534F4F;
		text-align: center;
		display: flex;
		justify-content: center;
		align-items: center;
		border-radius: 10px 10px 0px 0px;
		cursor: pointer;
	}
	.top_search .searchTab .tabItem.current{
		background: #534F4F;
		color: #FFF;
	}
	.top_search .searchContents{
		display: none;
	}
	.top_search .searchContents.current{
		display: block;
	}
	.top_search .searchBtn{
		display: flex;
		flex-wrap: wrap;
		gap: 10px;
		justify-content: space-between;
		margin-top: 15px;
	}
	.top_search .searchBtn .btnItem{
		width: calc((100% - 10px) / 2);
		position: relative;
		cursor: pointer;
		transition: .3s;
	}
	.top_search .searchBtn .btnItem:hover{
		opacity: 0.7;
	}
	.top_search .searchBtn .btnTtl{
		width: 100%;
		height: 100%;
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
		font-weight: 700;
		font-size: 18px;
		line-height: 24px;
		text-align: center;
		color: #fff;
		display: flex;
		justify-content: center;
		align-items: center;
	}
	.top_search .searchLink{
		width: 100%;
		max-width: 300px;
		height: 60px;
		margin: 20px auto 0;
		border-radius: 9999px;
		background: #E97B6A;
		font-weight: 700;
		font-size: 16px;
		line-height: 24px;
		color: #fff;
		display: flex;
		justify-content: center;
		align-items: center;
		position: relative;
		cursor: pointer;
		transition: .3s;
	}
	.top_search .searchLink::after{
		content: "";
		display: block;
		background: url('images/icon_arrow.svg') no-repeat;
		background-size: contain;
		width: 24px;
		height: 24px;
		position: absolute;
		top: 50%;
		right: 16px;
		transform: translate(0%, -50%);
	}
	.top_search .searchLink:hover{
		opacity: 0.7;
	}
	.top_sns{
		min-height: 390px;
		background: url(images/sns_catch.webp) no-repeat;
		background-size: cover;
		background-position: center;
		margin: -20px 0;
		position: relative;
		z-index: 1;
		padding: 80px 0 70px;
	}
	.top_sns .head{
		font-weight: 700;
        font-size: 20px;
        line-height: 29px;
        color: #FFF;
        display: flex;
        justify-content: center;
        align-items: flex-end;
        gap: 0 15px;
	}
	.top_sns .head::before{
		content: "";
		display: block;
		width: 15px;
        height: 22px;
		-webkit-mask-image: url(images/icon_head1.svg);
		-webkit-mask-size: contain;
		-webkit-mask-repeat: no-repeat;
		-webkit-mask-position: center;
		background-color: #FFF;
		margin-bottom: 2px;
	}
	.top_sns .head::after{
		content: "";
		display: block;
		width: 15px;
        height: 22px;
		-webkit-mask-image: url(images/icon_head2.svg);
		-webkit-mask-size: contain;
		-webkit-mask-repeat: no-repeat;
		-webkit-mask-position: center;
		background-color: #FFF;
		margin-bottom: 2px;
	}
	.top_sns .snsBlk{
		display: flex;
		flex-wrap: wrap;
		gap: 10px 15px;
		margin-top: 30px;
	}
	.top_sns .snsItem{
		width: 60px;
		box-shadow: 0px 3px 3px rgba(132, 124, 115, 0.08);
		display: flex;
		flex-flow: column;
		justify-content: center;
		align-items: center;
	}
	.top_sns .snsLink {
		width: 300px;
		height: 60px;
		background: #FFF;
		margin: 30px auto 0;
		border-radius: 9999px;
		font-weight: 700;
		font-size: 16px;
		line-height: 21px;
		color: #534F4F;
		display: flex;
		justify-content: center;
		align-items: center;
		position: relative;
		cursor: pointer;
	}
	.top_sns .snsLink::after {
		content: "";
		display: block;
		-webkit-mask-image: url(images/icon_arrow.svg);
		-webkit-mask-size: contain;
		-webkit-mask-repeat: no-repeat;
		-webkit-mask-position: center;
		background-color: #534F4F;
		width: 24px;
		height: 24px;
		position: absolute;
		top: 50%;
		right: 20px;
		transform: translate(0%, -50%);
	}
	.snsPopup{
		display: none;
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background: rgba(0, 0, 0, 0.3);
		z-index: 100000;
		opacity: 0;
		visibility: hidden;
		transition: .3s;
	}
	.snsPopup.active{
		display: block;
		opacity: 1;
		visibility: visible;
	}
	.snsPopupClose{
		width: 43px;
		height: 43px;
		position: absolute;
		top: 11px;
		right: 15px;
	}
	.snsPopupClose img{
		width: 100%;
	}
	.snsPopup .snsPopupItem{
		width: 90vw;
		max-width: 375px;
		height: 90vh;
		overflow: scroll;
		border-radius: 20px;
		background: #FBF9F6;
		padding: 65px 18px 35px;
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
	}
	.snsPopup .snsPopupBlk{
		border-radius: 20px;
		background: #fff;
		padding: 17px 20px 35px;
	}
	.snsPopup .snsPopupBlk:last-of-type{
		margin-top: 20px;
	}
	.snsPopup .snsPopupBlkTtl{
		font-weight: 700;
		font-size: 24px;
		line-height: 30px;
		letter-spacing: 0.02em;
		color: #534f4f;
		text-align: center;
	}
	.snsPopup .snsPopupLinkBlk{
		display: flex;
		flex-wrap: wrap;
		gap: 10px;
		margin-top: 15px;
	}
	.snsPopup .snsPopupLink{
		width: 100%;
		height: 50px;
		background: #fff;
		border: 1px solid #534F4F;
		border-radius: 9999px;
		display: flex;
		justify-content: center;
		align-items: center;
		gap: 0 10px;
		font-weight: 700;
		font-size: 16px;
		line-height: 24px;
		color: #534f4f;
	}
	.snsPopup .snsPopupLink.insta::before{
		content: "";
		width: 21px;
		height: 21px;
		background: url('images/icon_insta02.svg') no-repeat;
	}
	.snsPopup .snsPopupLink.x{
		background: #534F4F;
		font-weight: 700;
		font-size: 16px;
		line-height: 24px;
		color: #fff;
	}
	.snsPopup .snsPopupLink.x::before{
		content: "";
		width: 26px;
		height: 26px;
		background: url('images/icon_x02.svg') no-repeat;
	}
	.top_service{
		background: #FBF9F6;
		position: relative;
		padding: 70px 0 60px;
		overflow: hidden;
	}
	.top_service .inner{
		padding: 35px 15px 50px;
	}
	.top_service .inner::before{
		content: "";
		display: block;
		width: 92vw;
		min-width: auto;
		height: 100%;
		background: #FFF;
		border-radius: 40px;
		position: absolute;
		top: 0;
		left: 50%;
		transform: translateX(-50%);
		z-index: -1;
	}
	.top_service .serviceItem{
		display: flex;
		flex-flow: column;
		gap: 0 0px;
		margin-top: 45px;
	}
	.top_service .serviceItem.first{
		margin-top: 35px;
	}
	.top_service .serviceItem .itemImg{
		max-width: 100%;
		border-radius: 20px;
		overflow: hidden;
		order: 1;
	}
	.top_service .serviceItem .itemTxtBlk{
		flex: 1;
		margin: 10px 0 0;
		order: 2;
	}
	.top_service .serviceItem .itemTtl{
		font-weight: 700;
		font-size: 20px;
		line-height: 30px;
		color: #534F4F;
	}
	.top_service .serviceItem .itemTxt{
		font-weight: 600;
		font-size: 14px;
		line-height: 24px;
		color: #534F4F;
		margin-top: 10px;
	}
	.top_service .serviceItem .itemLink{
		width: 200px;
		height: 45px;
		margin: 15px auto 0;
		border-radius: 9999px;
		background: #E97B6A;
		font-weight: 700;
		font-size: 15px;
		line-height: 21px;
		color: #fff;
		display: flex;
		justify-content: center;
		align-items: center;
		position: relative;
	}
	.top_service .serviceItem .itemLink::after {
		content: "";
		display: block;
		background: url('images/icon_arrow.svg') no-repeat;
		background-size: contain;
		width: 22px;
		height: 22px;
		position: absolute;
		top: 50%;
		right: 16px;
		transform: translate(0%, -50%);
	}
	.top_shop {
		position: relative;
		padding: 50px 0 60px;
	}
	.top_shop::before{
		content: "";
		display: block;
		width: 100%;
		height: 50%;
		background: url('images/cmn_wave02_top.webp') no-repeat top left;
		background-size: contain;
		position: absolute;
		top: 0;
		left: 0;
		z-index: 0;
		pointer-events: none;
	}
	.top_shop .shopTxt{
		font-weight: 700;
		font-size: 15px;
		line-height: 25px;
		text-align: justify;
		color: #534f4f;
		margin-top: 27px;
	}
	.top_shop .shopBlk{
		display: flex;
		width: calc(100vw);
		margin: 50px calc(50% - 50vw) 0;
	}
	.shopSlider .slick-slide{
		margin: 0 5px;
	}
	.top_shop .shopBlk .shopImg{
		width: 350px;
		border-radius: 20px;
		background: #FFF;
		overflow: hidden;
	}
	.top_shop .shopLink{
		width: 300px;
        height: 60px;
        margin: 35px auto 0;
        border-radius: 9999px;
        background: #E97B6A;
        font-weight: 700;
        font-size: 15px;
        line-height: 21px;
        color: #fff;
        display: flex;
        justify-content: center;
        align-items: center;
        position: relative;
	}
	.top_shop .shopLink::after {
		content: "";
		display: block;
		background: url('images/icon_arrow.svg') no-repeat;
		background-size: contain;
		width: 21px;
		height: 21px;
		position: absolute;
		top: 50%;
		right: 12px;
		transform: translate(0%, -50%);
	}
	.top_recruit{
		padding: 0px 0 80px;
		position: relative;
	}
	.top_recruit::before{
		content: "";
		display: block;
		width: 100%;
		height: 50%;
		background: url('images/cmn_wave01_bottom.webp') no-repeat bottom left;
		background-size: contain;
		position: absolute;
		bottom: 0;
		left: 0;
		z-index: 0;
		pointer-events: none;
	}
	.top_recruit .recruitBlk{
		width: 100%;
		border-radius: 20px;
		background: url('images/top_recruit_sp.webp') no-repeat;
		background-size: cover;
		padding: 70% 20px 35px;
		position: relative;
	}
	.top_recruit .recruitTtl{
		font-family: "MPLUSRounded1c", "ZenMaruGothic";
		font-weight: 700;
		font-size: 50px;
		line-height: 60px;
		color: rgba(255, 255, 255, 0.3);
		position: absolute;
		top: 0;
		bottom: auto;
		left: -10px;
		writing-mode: vertical-rl;
	}
	.top_recruit .recruitItem{
		width: 100%;
		margin-left: auto;
		display: flex;
		flex-flow: column;
	}
	.top_recruit .recruitItem .itemTtl{
		font-weight: 700;
		font-size: 25px;
		line-height: 36px;
		color: #fff;
		text-align: center;
	}
	.top_recruit .recruitItem .itemTxt{
		font-weight: 700;
		font-size: 16px;
		line-height: 26px;
		color: #fff;
		margin-top: 15px;
	    text-align: center;
	}
	.top_recruit .recruitItem .itemLink{
		width: 200px;
		height: 45px;
		margin: 20px auto 0;
		background: #FFF;
		border-radius: 9999px;
		font-weight: 700;
		font-size: 15px;
		line-height: 21px;
		color: #e97b6a;
		display: flex;
		justify-content: center;
		align-items: center;
		position: relative;
	}
	.top_recruit .recruitItem .itemLink::after {
		content: "";
		display: block;
		-webkit-mask-image: url(images/icon_arrow.svg);
		-webkit-mask-size: contain;
		-webkit-mask-repeat: no-repeat;
		-webkit-mask-position: center;
		background-color: #E97B6A;
		width: 22px;
		height: 22px;
		position: absolute;
		top: 50%;
		right: 15px;
		transform: translate(0%, -50%);
	}
	.top_inLink{
		background: #F1E9E7;
		padding: 60px 0 50px;
	}
	.top_inLink .inLinkBlk{
		display: flex;
		flex-flow: column;
		gap: 15px 0;
	}
	.top_inLink .inLinkItem{
		width: 100%;
		height: 145px;
		padding: 0 25px;
		display: flex;
		align-items: center;
	}
	.top_inLink .inLinkItem.item01{
		background: url('images/top_inLink01.webp') no-repeat;
		background-size: cover;
	}
	.top_inLink .inLinkItem.item02{
		background: url('images/top_inLink02.webp') no-repeat;
		background-size: cover;
	}
	.top_inLink .inLinkItem .itemTtl{
		width: 100%;
		font-weight: 700;
		font-size: 20px;
		line-height: 30px;
		color: #fff;
		display: flex;
		justify-content: space-between;
		align-items: center;
	}
	.top_inLink .inLinkItem .itemTtl .arrow{
		display: block;
		width: 45px;
		height: 45px;
		border-radius: 50%;
		border: 2px solid #FFFFFF;
		position: relative;
	}
	.top_inLink .inLinkItem .itemTtl .arrow::after {
		content: "";
		display: block;
		background: url('images/icon_arrow.svg') no-repeat;
		background-size: contain;
		width: 26px;
		height: 26px;
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
	}
}

@media screen and (max-width: 432px) {
	.top_sns{
		background: url(images/sns_catch_sp.webp) no-repeat;
		background-size: cover;
		background-position: center;
	}
}


/*
Search
====================================*/
.search_list{
	background: #FBF9F6;
	margin-top: 40px;
}
.search_list .inner{
	display: flex;
	gap: 0 45px;
}
.search_list .filterBlk{
	width: 320px;
	height: fit-content;
	border-radius: 20px;
	overflow: hidden;
	background: #FFF;
}
.search_list .filterBlk.fixed{
	display: none;
}
.search_list .filterTtl{
	height: 50px;
	background: #534f4f;
	font-weight: 700;
	font-size: 18px;
	line-height: 26px;
	color: #fff;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 0 10px;
}
.search_list .filterTtl::before{
	content: "";
	display: block;
	width: 18px;
	height: 18px;
	background: url('images/icon_narrow.svg') no-repeat;
	background-size: contain;
}
.search_list .filterTab{
	display: flex;
	border-bottom: 2px dotted #312828;
	margin: 20px 20px 0;
}
.search_list .filterTab .tabItem{
	width: calc(100% / 3);
	height: 60px;
	border-radius: 10px 10px 0 0;
	display: flex;
	justify-content: center;
	align-items: center;
	font-weight: 700;
	font-size: 18px;
	line-height: 26px;
	color: #534f4f;
	cursor: pointer;
}
.search_list .filterTab .tabItem.current{
	background: #534f4f;
	color: #FFF;
}
.search_list .filterInput{
	margin: 15px 20px 0;
	display: flex;
	flex-flow: column;
	gap: 10px 0;
}
.search_list .filterInput{
	display: none;
}
.search_list .filterInput.current{
	display: flex;
}
.search_list .filterInput .inputItem{
	display: flex;
	align-items: center;
	gap: 10px 10px;
}
.search_list .filterInput .inputItem.column{
	flex-flow: column;
	align-items: flex-start;
	margin-top: 6px;
}
.search_list .filterInput .inputTtl{
	font-weight: 700;
	font-size: 16px;
	line-height: 24px;
	color: #534f4f;
}
.search_list .filterInput .inputSelect{
	flex: 1;
	position: relative;
}
.search_list .filterInput .inputSelect::after{
	content: "";
	display: block;
	width: 0;
	height: 0;
	border-style: solid;
	border-right: 6px solid transparent;
	border-left: 6px solid transparent;
	border-top: 8px solid #534f4f;
	border-bottom: 0;
	position: absolute;
	top: 0;
	bottom: 0;
	right: 18px;
	margin: auto 0;
}
.search_list .filterInput .inputSelect select,
.search_list .filterInput .inputSelect input[type="text"]{
	width: 100%;
	height: 45px;
	padding: 0 40px 0 15px;
	border-radius: 10px;
	background: #fff;
	border: 1px solid #c4c4c4;
	font-weight: 600;
	font-size: 16px;
	line-height: 24px;
	color: #534f4f;
	cursor: pointer;
}
.search_list .filterInput .inputText{
	width: 100%;
	position: relative;
}
.search_list .filterInput .inputText::after{
	content: "";
	display: block;
	width: 15px;
	height: 16px;
	background: url('images/icon_search.svg') no-repeat;
	background-size: contain;
	position: absolute;
	top: 0;
	bottom: 0;
	right: 18px;
	margin: auto 0;
}
.search_list .filterInput .inputText input[type="text"]{
	width: 100%;
	height: 45px;
	padding: 0 15px;
	border-radius: 10px;
	background: #fff;
	border: 1px solid #c4c4c4;
	font-weight: 600;
	font-size: 16px;
	line-height: 24px;
	color: #7b7f85;
}
.search_list .filterInput .inputButton{
	width: 100%;
	height: 60px;
	background: #E97B6A;
	border-radius: 9999px;
	font-weight: 700;
	font-size: 16px;
	line-height: 24px;
	color: #fff;
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 24px 0 32px;
	position: relative;
}
.search_list .filterInput .inputButton::after {
    content: "";
    display: block;
    background: url('images/icon_arrow.svg') no-repeat;
    background-size: contain;
    width: 24px;
    height: 24px;
    position: absolute;
    top: 50%;
    right: 16px;
    transform: translate(0%, -50%);
}
.search_list .listBlk{
	flex: 1;
}
.search_list .listResult{
	display: flex;
	justify-content: space-between;
	padding-bottom: 15px;
	border-bottom: 2px dotted #534f4f;
}
.search_list .listResult .resultTtl{
	font-weight: 700;
	font-size: 32px;
	line-height: 46px;
	color: #534f4f;
}
.search_list .listResult .resultCount{
	font-weight: 700;
	font-size: 32px;
	line-height: 46px;
	color: #534f4f;
}
.search_list .listResult .resultCount .unit{
	padding-left: 3px;
}
.search_list .listPost{
	display: flex;
	flex-wrap: wrap;
	gap: 25px 15px;
	margin-top: 20px;
}
.search_list .listPost .postItem{
	width: calc((100% - 30px) / 3);
	background: #FFF;
	border-radius: 20px;
}
.search_list .listPost .postItem a{
	display: flex;
	flex-flow: column;
	padding: 15px 15px 20px;
	height: 100%;
}
.search_list .listPost .postItem .itemImg{
	width: 100%;
	aspect-ratio: 1 / 1;
	border-radius: 20px;
	overflow: hidden;
	position: relative;
}
.search_list .listPost .postItem .itemImg img{
	width: 100%;
	height: 100%;
}
.search_list .listPost .postItem .itemImg .imgTxt01{
	display: block;
	width: 100%;
	padding: 8px 0 11px;
	position: absolute;
	bottom: 0;
	left: 0;
	background: rgba(123, 127, 133, 0.85);
	font-weight: 700;
	font-size: 18px;
	line-height: 24px;
	text-align: center;
	color: #fff;
}
.search_list .listPost .postItem .itemImg .imgTxt02{
	display: block;
	width: 100%;
	padding: 8px 0 11px;
	position: absolute;
	bottom: 0;
	left: 0;
	background: rgba(219, 198, 97, 0.85);
	font-weight: 700;
	font-size: 18px;
	line-height: 24px;
	text-align: center;
	color: #fff;
}
.search_list .listPost .postItem .itemTxtBlk{
	flex: 1;
	display: flex;
	flex-flow: column;
}
.search_list .listPost .postItem .itemName{
	font-weight: 700;
	font-size: 20px;
	line-height: 30px;
	color: #534f4f;
	margin-top: 10px;
}
.search_list .listPost .postItem .itemPrice{
	font-weight: 900;
	font-size: 28px;
	line-height: 40px;
	color: #534f4f;
	margin-bottom: auto
}
.search_list .listPost .postItem .itemPrice span{
	font-weight: 700;
	font-size: 16px;
	line-height: 24px;
	margin-left: 2px;
}
.search_list .listPost .postItem .itemStore{
	font-weight: 700;
	font-size: 18px;
	line-height: 26px;
	color: #7b7f85;
	margin-top: auto;
}
.search_list .listPost .postItem .itemBirth{
	font-weight: 700;
	font-size: 18px;
	line-height: 26px;
	color: #7b7f85;
}
.search_list .listPost .postItem .itemGender{
	width: fit-content;
	height: 26px;
	padding: 0 14px;
	border-radius: 9999px;
	display: flex;
	gap: 0 4px;
	justify-content: center;
	align-items: center;
	font-weight: 700;
	font-size: 15px;
	line-height: 21px;
	color: #fff;
	margin-top: 10px;
	background: #6fc27a;
}
.search_list .listPost .postItem .itemGender.male{
	background: #6FB4C2;
}
.search_list .listPost .postItem .itemGender.male::before{
	content: "";
	display: block;
	width: 13px;
	height: 13px;
	background: url('images/icon_male.svg') no-repeat;
	background-size: contain;
    background-position: center;
}
.search_list .listPost .postItem .itemGender.female{
	background: #EE988B;
}
.search_list .listPost .postItem .itemGender.female::before{
	content: "";
	display: block;
	width: 13px;
	height: 13px;
	background: url('images/icon_female.svg') no-repeat;
	background-size: contain;
    background-position: center;
}
.search_list .listPost .postMissing{
	font-weight: 700;
	font-size: 20px;
	line-height: 34px;
	color: #686868;
}
@media screen and (max-width: 1100px){
	.search_list .listPost .postItem {
		width: calc((100% - 15px) / 2);
	}
}
@media screen and (max-width: 1024px) {
	.search_list{
		background: none;
		margin-top: 35px;
		padding: 0 0 0px;
	}
	.search_list .inner{
		display: flex;
		flex-flow: column;
		gap: 0 45px;
	}
	.search_list .filterBlk{
		width: 100%;
		height: fit-content;
		overflow: hidden;
		background: #FFF;
		border-radius: 0;
	}
	.search_list .filterBlk.fixed{
		display: block;
		position: fixed;
		bottom: -70px;
		left: 0;
		background: rgba(255, 255, 255, 0.8);
		z-index: 10;
		padding: 10px 4%;
		transition: bottom 0.3s ease-out;
	}
	.search_list .filterBlk.fixed.show{
		bottom: 0px;
	}
	.search_list .filterWrap{
		display: none;
		position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: #F7F2F2;
        z-index: 100000;
        opacity: 0;
        visibility: hidden;
        transition: .3s;
	}
	.search_list .filterWrap.active{
		display: block;
        opacity: 1;
        visibility: visible;
	}
	.search_list .filterContents{
		width: 100%;
        height: 100%;
        border-radius: 0px;
        background: #FBF9F6;
        padding: 70px 20px 50px;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
	}
	.search_list .filterClose{
		width: 40px;
		height: 40px;
		background: #534f4f;
		border-radius: 50%;
		position: absolute;
		top: 15px;
		right: 20px;
	}
	.search_list .filterClose::before{
		content: "";
        display: block;
        width: 20px;
        height: 20px;
        background: url('images/icon_plus2.svg') no-repeat;
        background-size: contain;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: rotate(45deg) translate(-50%, -50%);
    	transform-origin: 0% 0%;
	}
	.search_list .filterTtl{
		height: 50px;
		background: #534F4F;
		font-weight: 700;
		font-size: 16px;
		border-radius: 9999px;
		line-height: 24px;
		color: #fff;
		display: flex;
		justify-content: center;
		align-items: center;
		gap: 0 10px;
		cursor: pointer;
	}
	.search_list .filterTtl::before{
		content: "";
		display: block;
		width: 17px;
		height: 17px;
		background: url('images/icon_narrow.svg') no-repeat;
		background-size: contain;
	}
	.search_list .filterTab{
		display: flex;
		border-bottom: 2px dotted #312828;
		margin: 0 auto;
	}
	.search_list .filterTab .tabItem{
		width: calc(100% / 3);
		height: 70px;
		border-radius: 10px 10px 0 0;
		display: flex;
		justify-content: center;
		align-items: center;
		font-weight: 700;
		font-size: 20px;
		line-height: 30px;
		color: #534f4f;
		cursor: pointer;
	}
	.search_list .filterTab .tabItem.current{
		background: #534F4F;
		color: #FFF;
	}
	.search_list .filterInput{
		margin: 20px auto 0;
		display: flex;
		flex-flow: column;
		gap: 10px 0;
	}
	.search_list .filterInput{
		display: none;
		height: auto;
	}
	.search_list .filterInput.current{
		display: flex;
	}
	.search_list .filterInput .inputItem{
		display: flex;
		align-items: center;
		gap: 10px 20px;
	}
	.search_list .filterInput .inputItem.column{
		flex-flow: column;
		align-items: flex-start;
		margin-top: 6px;
	}
	.search_list .filterInput .inputTtl{
		font-weight: 700;
		font-size: 18px;
		line-height: 26px;
		color: #534f4f;
	}
	.search_list .filterInput .inputSelect{
		flex: 1;
		position: relative;
	}
	.search_list .filterInput .inputSelect::after{
		content: "";
		display: block;
		width: 0;
		height: 0;
		border-style: solid;
		border-right: 6px solid transparent;
		border-left: 6px solid transparent;
		border-top: 8px solid #534f4f;
		border-bottom: 0;
		position: absolute;
		top: 0;
		bottom: 0;
		right: 18px;
		margin: auto 0;
	}
	.search_list .filterInput .inputSelect select,
	.search_list .filterInput .inputSelect input[type="text"]{
		width: 100%;
		height: 45px;
		padding: 0 40px 0 15px;
		border-radius: 10px;
		background: #fff;
		border: 1px solid #c4c4c4;
		font-weight: 600;
		font-size: 16px;
		line-height: 24px;
		color: #534f4f;
		cursor: pointer;
	}
	.search_list .filterInput .inputText{
		width: 100%;
		position: relative;
	}
	.search_list .filterInput .inputText::after{
		content: "";
		display: block;
		width: 15px;
		height: 16px;
		background: url('images/icon_search.svg') no-repeat;
		background-size: contain;
		position: absolute;
		top: 0;
		bottom: 0;
		right: 18px;
		margin: auto 0;
	}
	.search_list .filterInput .inputText input[type="text"]{
		width: 100%;
		height: 45px;
		padding: 0 15px;
		border-radius: 10px;
		background: #fff;
		border: 1px solid #c4c4c4;
		font-weight: 600;
		font-size: 16px;
		line-height: 24px;
		color: #7b7f85;
	}
	.search_list .filterInput .inputButton{
		width: 100%;
		max-width: 300px;
		height: 60px;
		background: #E97B6A;
		border-radius: 9999px;
		font-weight: 700;
		font-size: 16px;
		line-height: 24px;
		color: #fff;
		display: flex;
		justify-content: center;
		align-items: center;
		margin: 15px auto 0;
		position: relative;
	}
	.search_list .filterInput .inputButton::after {
		content: "";
		display: block;
		background: url('images/icon_arrow.svg') no-repeat;
		background-size: contain;
		width: 24px;
		height: 24px;
		position: absolute;
		top: 50%;
		right: 16px;
		transform: translate(0%, -50%);
	}
	.search_list .listBlk{
		flex: 1;
		position: relative;
		margin-top: 30px;
		padding-bottom: 60px;
	}
	.search_list .listBlk::before{
		content: "";
		background: #fbf9f6;
		display: block;
		width: 100vw;
		height: 100%;
		position: absolute;
		top: 0;
		left: 50%;
		transform: translateX(-50%);
		z-index: -1;
	}
	.search_list .listResult{
		display: flex;
		justify-content: space-between;
		padding-top: 30px;
		padding-bottom: 15px;
		border-bottom: 2px dotted #534f4f;
	}
	.search_list .listResult .resultTtl{
		font-weight: 700;
		font-size: 25px;
		line-height: 36px;
		color: #534f4f;
	}
	.search_list .listResult .resultCount{
		font-weight: 700;
		font-size: 25px;
		line-height: 36px;
		color: #534f4f;
	}
	.search_list .listResult .resultCount .unit{
		padding-left: 2px;
		font-size: 15px;
		line-height: 21px;
	}
	.search_list .listPost{
		display: flex;
		flex-wrap: wrap;
		gap: 15px;
		margin-top: 20px;
	}
	.search_list .listPost .postMissing{
		font-weight: 700;
		font-size: 20px;
		line-height: 34px;
		color: #686868;
	}
}
@media screen and (max-width: 500px) {
	.search_list .listPost .postItem{
		width: 100%;
		background: #FFF;
		border-radius: 20px;
	}
	.search_list .listPost .postItem a{
		display: flex;
		flex-flow: row;
		gap: 0 15px;
		padding: 15px 15px 15px;
		height: 100%;
	}
	.search_list .listPost .postItem .itemImg{
		width: 45%;
		aspect-ratio: 1 / 1;
		border-radius: 20px;
		overflow: hidden;
		position: relative;
	}
	.search_list .listPost .postItem .itemImg img{
		width: 100%;
		height: 100%;
	}
	.search_list .listPost .postItem .itemImg .imgTxt01{
		display: block;
		width: 100%;
		padding: 5px 0 7px;
		position: absolute;
		bottom: 0;
		left: 0;
		background: rgba(123, 127, 133, 0.85);
		font-weight: 700;
		font-size: 14px;
		line-height: 20px;
		text-align: center;
		color: #fff;
	}
	.search_list .listPost .postItem .itemImg .imgTxt02{
		display: block;
		width: 100%;
		padding: 5px 0 7px;
		position: absolute;
		bottom: 0;
		left: 0;
		background: rgba(219, 198, 97, 0.85);
		font-weight: 700;
		font-size: 14px;
		line-height: 20px;
		text-align: center;
		color: #fff;
	}
	.search_list .listPost .postItem .itemTxtBlk{
		flex: 1;
		display: flex;
		justify-content: center;
		flex-flow: column;
	}
	.search_list .listPost .postItem .itemName{
		font-weight: 700;
		font-size: 16px;
		line-height: 24px;
		color: #534f4f;
		margin-top: 7px;
	}
	.search_list .listPost .postItem .itemPrice{
		font-weight: 900;
		font-size: 22px;
		line-height: 32px;
		color: #534f4f;
		margin-bottom: 0;
	}
	.search_list .listPost .postItem .itemPrice span{
		font-weight: 700;
		font-size: 12px;
		line-height: 17px;
		margin-left: 2px;
	}
	.search_list .listPost .postItem .itemStore{
		font-weight: 700;
		font-size: 14px;
		line-height: 20px;
		color: #7b7f85;
		margin-top: 0;
	}
	.search_list .listPost .postItem .itemBirth{
		font-weight: 700;
		font-size: 14px;
		line-height: 20px;
		color: #7b7f85;
	}
	.search_list .listPost .postItem .itemGender{
		width: fit-content;
		height: 21px;
		padding: 0 8px;
		border-radius: 9999px;
		display: flex;
		gap: 0 2px;
		justify-content: center;
		align-items: center;
		font-weight: 700;
		font-size: 13px;
		line-height: 19px;
		color: #fff;
		margin-top: 10px;
		background: #6fc27a;
	}
	.search_list .listPost .postItem .itemGender.male{
		background: #6FB4C2;
	}
	.search_list .listPost .postItem .itemGender.male::before{
		content: "";
		display: block;
		width: 10px;
		height: 10px;
		background: url('images/icon_male.svg') no-repeat;
		background-size: contain;
		background-position: center;
	}
	.search_list .listPost .postItem .itemGender.female{
		background: #EE988B;
	}
	.search_list .listPost .postItem .itemGender.female::before{
		content: "";
		display: block;
		width: 13px;
		height: 13px;
		background: url('images/icon_female.svg') no-repeat;
		background-size: contain;
		background-position: center;
	}
}


/*
SearchPost
====================================*/
.search_post{
	padding: 70px 0 90px;
}
.search_post .postTtl{
	font-weight: 700;
	font-size: 32px;
	line-height: 46px;
	padding-bottom: 10px;
	color: #534f4f;
	border-bottom: 2px dotted #534f4f;
}
.search_post .postBlk{
	display: flex;
	gap: 0 60px;
	margin-top: 40px;
}
.search_post .postGallery{
	width: 45%;
	height: fit-content;
	display: grid;
	grid-template-rows: auto 1fr;
	grid-template-columns: 1fr 1fr 1fr 1fr;
	gap: 15px 8px;
}
.search_post .postGallery .mainImgWrap{
	position: relative;
	grid-row: 1 / 2;
	grid-column: 1 / 5;
}
.search_post .postGallery .mainImgWrap .imgTxt01{
	display: block;
    width: 100%;
    padding: 16px 0 20px;
    position: absolute;
    bottom: 0;
    left: 0;
    background: rgba(123, 127, 133, 0.85);
    border-radius: 0 0 20px 20px;
    font-weight: 700;
    font-size: 23px;
    line-height: 32px;
    text-align: center;
    color: #fff;
}
.search_post .postGallery .mainImgWrap .imgTxt02{
	display: block;
    width: 100%;
    padding: 16px 0 20px;
    position: absolute;
    bottom: 0;
    left: 0;
    background: rgba(219, 198, 97, 0.85);
    border-radius: 0 0 20px 20px;
    font-weight: 700;
    font-size: 23px;
    line-height: 32px;
    text-align: center;
    color: #fff;
}
.search_post .postGallery .mainImg .slick-list{
  margin: 0 -7px;
}
.search_post .postGallery .mainImg .slick-slide {
  margin: 0 7px;
}
.search_post .postGallery .mainImg img{
	border-radius: 20px;
	overflow: hidden;
	max-height: 440px;
}
.search_post .postGallery .subImg img{
	border-radius: 5px;
	overflow: hidden;
	aspect-ratio: 1 / 0.7;
}
.search_post .postInfo{
	flex: 1;
	height: fit-content;
}
.search_post .postDl{
	display: flex;
	flex-wrap: wrap;
}
.search_post .postDt{
	width: 130px;
	border-top: 1px solid #534f4f;
	padding: 15px 0;
	display: flex;
	align-items: center;
	font-weight: 700;
	font-size: 16px;
	line-height: 24px;
	color: #534f4f;
}
.search_post .postDt:last-of-type{
	border-bottom: 1px solid #534f4f;
}
.search_post .postDd{
	width: calc(100% - 130px);
	border-top: 1px solid #c4c4c4;
	padding: 15px 15px;
	display: flex;
	align-items: center;
	font-weight: 600;
	font-size: 16px;
	line-height: 24px;
	color: #534f4f;
}
.search_post .postDd:last-of-type{
	border-bottom: 1px solid #c4c4c4;
}
.search_post .postComment{
	width: 100%;
	border-radius: 15px;
	background: #fbf9f6;
	padding: 20px;
	margin-top: 25px;
}
.search_post .postComment .commentTtl{
	font-weight: 700;
	font-size: 18px;
	line-height: 26px;
	color: #534f4f;
	display: flex;
	align-items: center;
	gap: 0 10px;
}
.search_post .postComment .commentTtl::before{
	content: "";
	display: block;
	width: 20px;
	height: 16px;
	background: url('images/icon_comment.svg') no-repeat;
	background-size: contain;
	margin-top: 3px;
}
.search_post .postComment .commentTxt{
	margin-top: 15px;
	font-weight: 500;
	font-size: 16px;
	line-height: 24px;
	color: #534f4f;
}
.search_post .postComment .commentTxt h2{
	border-bottom: none;
}
.search_post .postContact .contactTtl{
	font-weight: 700;
	font-size: 28px;
	line-height: 40px;
	color: #534f4f;
	margin-top: 60px;
	display: flex;
	justify-content: center;
	align-items: flex-end;
	gap: 0 18px;
}
.search_post .postContact .contactTtl::before {
    content: "";
    display: block;
    width: 20px;
    height: 29px;
    -webkit-mask-image: url('images/icon_head1.svg');
    -webkit-mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    background-color: #534F4F;
    margin-bottom: 3px;
}
.search_post .postContact .contactTtl::after {
    content: "";
    display: block;
    width: 20px;
    height: 29px;
    -webkit-mask-image: url('images/icon_head2.svg');
    -webkit-mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    background-color: #534F4F;
    margin-bottom: 3px;
}
.search_post .postContact .contactBlk{
	display: flex;
	justify-content: center;
	gap: 0 15px;
	margin-top: 30px;
}
.search_post .postContact.back .contactBlk{
	margin-top: 60px;
}
.search_post .postContact .contactBlk .contactTel{
	width: 300px;
	height: 60px;
	background: #534F4F;
	border-radius: 9999px;
	font-weight: 700;
	font-size: 25px;
	line-height: 36px;
	color: #fff;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 0 5px;
}
.search_post .postContact .contactBlk .contactTel::before{
	content: "";
	display: block;
	width: 25px;
	height: 25px;
	background: url('images/icon_tel.svg') no-repeat;
	background-size: contain;
	margin-top: 3px;
}
.search_post .postContact .contactBlk .contactMail{
	width: 300px;
	height: 60px;
	background: #e97b6a;
	border-radius: 9999px;
	font-weight: 700;
	font-size: 16px;
	line-height: 24px;
	color: #fff;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 0 5px;
	position: relative;
}
.search_post .postContact .contactBlk .contactMail::before{
	content: "";
	display: block;
	width: 24px;
	height: 24px;
	background: url('images/icon_mail.svg') no-repeat;
	background-size: contain;
	margin-top: 1px;
}
.search_post .postContact .contactBlk .contactMail::after {
    content: "";
    display: block;
    background: url('images/icon_arrow.svg') no-repeat;
    background-size: contain;
    width: 24px;
    height: 24px;
    position: absolute;
    top: 50%;
    right: 16px;
    transform: translate(0%, -50%);
}
.search_post .postContact .contactBlk .contactBack{
	width: 300px;
	height: 60px;
	background: #e97b6a;
	border-radius: 9999px;
	font-weight: 700;
	font-size: 18px;
	line-height: 26px;
	color: #fff;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 0 5px;
	position: relative;
}
.search_post .postContact .contactBlk .contactBack::after {
    content: "";
    display: block;
    background: url('images/icon_arrow.svg') no-repeat;
    background-size: contain;
    width: 24px;
    height: 24px;
    position: absolute;
    top: 50%;
    right: 16px;
    transform: translate(0%, -50%);
}
.search_cost{
	background: #FBF9F6;
	padding: 90px 0 100px;
}
.search_cost .costTtl{
	font-weight: 700;
	font-size: 40px;
	line-height: 58px;
	color: #534f4f;
	border-bottom: 2px dotted #534f4f;
	padding-bottom: 20px;
}
.search_cost .costBlk{
	margin-top: 30px;
	display: flex;
	gap: 0 40px;
}
.search_cost .costItem{
	width: calc((100% - 40px) / 2);
	border-radius: 15px;
	background: #fff;
	padding: 17px 20px 20px;
}
.search_cost .costItem .itemTtl{
	font-weight: 700;
	font-size: 22px;
	line-height: 30px;
	color: #534f4f;
	text-align: center;
	margin-bottom: 15px;
}
.search_cost .costItem .itemPrice{
	height: 70px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 20px 0;
	border-bottom: 1px solid #c4c4c4;
}
.search_cost .costItem .itemPrice:first-of-type{
	border-top: 1px solid #c4c4c4;
}
.search_cost .costItem .itemPrice .priceTtl{
	font-weight: 700;
	font-size: 18px;
	line-height: 26px;
	color: #534f4f;
}
.search_cost .costItem .itemPrice .priceNum{
	font-weight: 700;
	font-size: 20px;
	line-height: 30px;
	color: #534f4f;
}
.search_cost .costItem .itemPrice .priceNum span{
	font-weight: 700;
	font-size: 13px;
	line-height: 20px;
	color: #534f4f;
	margin-left: 3px;
}
.search_cost .costItem .itemPrice .priceDeposit{
	display: flex;
	align-items: center;
}
.search_cost .costItem .itemPrice .priceDeposit input[type="number"]{
	width: 100px;
	height: 35px;
	border-radius: 5px;
	background: #fff;
	border: 1px solid #c4c4c4;
	padding: 0px 10px;
	font-weight: 700;
	font-size: 18px;
	line-height: 26px;
	color: #534f4f;
	text-align: right; /* 右寄せ */
    -moz-appearance: textfield; /* Firefox */
    -webkit-appearance: textfield; /* Chrome, Safari */
    appearance: textfield;
}
.search_cost .costItem .itemPrice .priceDeposit span{
	font-weight: 700;
	font-size: 16px;
	line-height: 24px;
	color: #534f4f;
	margin-left: 10px;
}
.search_cost .costItem .itemPrice .priceCount{
	display: flex;
	align-items: center;
}
.search_cost .costItem .itemPrice .priceSelect{
	width: 80px;
	position: relative;
}
.search_cost .costItem .itemPrice .priceSelect::after {
    content: "";
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
    border-right: 5px solid transparent;
    border-left: 5px solid transparent;
    border-top: 6px solid #534f4f;
    border-bottom: 0;
    position: absolute;
    top: 3px;
    bottom: 0;
    right: 10px;
    margin: auto 0;
}
.search_cost .costItem .itemPrice .priceSelect select{
	width: 100%;
	height: 35px;
	border-radius: 5px;
	background: #fff;
	border: 1px solid #c4c4c4;
	padding: 0px 10px;
	font-weight: 700;
	font-size: 18px;
	line-height: 26px;
	color: #534f4f;
}
.search_cost .costItem .itemPrice .priceCount span{
	font-weight: 700;
	font-size: 16px;
	line-height: 24px;
	color: #534f4f;
	margin-left: 10px;
}
.search_cost .costItem .itemTotal{
	width: 100%;
	padding: 12px 0 13px;
	border-radius: 4px;
	background: #f9f9f9;
	margin-top: 15px;
	display: flex;
	justify-content: center;
	align-items: baseline;
	gap: 0 10px;
}
.search_cost .costItem .itemTotal .totalTxt{
	font-weight: 700;
	font-size: 16px;
	line-height: 24px;
	color: #534f4f;
}
.search_cost .costItem .itemTotal .totalNum{
	font-weight: 900;
	font-size: 24px;
	line-height: 35px;
	color: #e97b6a;
}
.search_cost .costItem .itemTotal .totalNum span{
	font-weight: 700;
	font-size: 14px;
	line-height: 20px;
	color: #534f4f;
	margin-left: 2px;
}
.search_cost .costItem .itemTotal .totalNumTxt{
	font-weight: 700;
	font-size: 18px;
	line-height: 35px;
	color: #e97b6a;
}
.search_cost .costItem .itemTotalAst{
	font-weight: 600;
    font-size: 14px;
    line-height: 22px;
    margin-top: 15px;
    color: #717171;
    padding: 0 15px;
}
@media screen and (max-width: 1024px) {
	.search_post{
		padding: 30px 0 60px;
	}
	.search_post .postTtl{
		font-weight: 700;
		font-size: 24px;
		line-height: 35px;
		padding-bottom: 15px;
		color: #534f4f;
		border-bottom: 2px dotted #534f4f;
	}
	.search_post .postBlk{
		display: flex;
		flex-flow: column;
		gap: 20px;
		margin-top: 20px;
	}
	.search_post .postGallery{
		width: 100%;
		height: fit-content;
		display: grid;
		grid-template-rows: auto 1fr;
		grid-template-columns: 1fr 1fr 1fr 1fr;
		gap: 10px 8px;
	}
	.search_post .postGallery .mainImgWrap{
		position: relative;
		grid-row: 1 / 2;
		grid-column: 1 / 5;
	}
	.search_post .postGallery .mainImgWrap .imgTxt01{
		display: block;
		width: 100%;
		padding: 14px 0 15px;
		position: absolute;
		bottom: 0;
		left: 0;
		background: rgba(123, 127, 133, 0.85);
		border-radius: 0 0 20px 20px;
		font-weight: 700;
		font-size: 18px;
		line-height: 26px;
		text-align: center;
		color: #fff;
	}
	.search_post .postGallery .mainImgWrap .imgTxt02{
		display: block;
		width: 100%;
		padding: 14px 0 15px;
		position: absolute;
		bottom: 0;
		left: 0;
		background: rgba(219, 198, 97, 0.85);
		border-radius: 0 0 20px 20px;
		font-weight: 700;
		font-size: 18px;
		line-height: 26px;
		text-align: center;
		color: #fff;
	}
	.search_post .postGallery .mainImg .slick-list{
		margin: 0 -4px;
	}
	.search_post .postGallery .mainImg .slick-slide {
		margin: 0 4px;
	}
	.search_post .postGallery .mainImg img{
		width: 100%;
		border-radius: 20px;
		overflow: hidden;
		aspect-ratio: 16 / 11;
	}
	.search_post .postGallery .subImg img{
		border-radius: 5px;
		overflow: hidden;
		aspect-ratio: 1 / 0.7;
	}
	.search_post .postInfo{
		flex: 1;
		height: fit-content;
	}
	.search_post .postDl{
		display: flex;
		flex-wrap: wrap;
	}
	.search_post .postDt{
		width: 100px;
		border-top: 1px solid #534f4f;
		padding: 15px 0;
		display: flex;
		align-items: center;
		font-weight: 700;
		font-size: 16px;
		line-height: 24px;
		color: #534f4f;
	}
	.search_post .postDt:last-of-type{
		border-bottom: 1px solid #534f4f;
	}
	.search_post .postDd{
		width: calc(100% - 100px);
		border-top: 1px solid #c4c4c4;
		padding: 15px 15px;
		display: flex;
		align-items: center;
		font-weight: 600;
		font-size: 16px;
		line-height: 24px;
		color: #534f4f;
	}
	.search_post .postDd:last-of-type{
		border-bottom: 1px solid #c4c4c4;
	}
	.search_post .postComment{
		width: 100%;
		border-radius: 15px;
		background: #fbf9f6;
		padding: 15px;
		margin-top: 25px;
	}
	.search_post .postComment .commentTtl{
		font-weight: 700;
		font-size: 16px;
		line-height: 24px;
		color: #534f4f;
		display: flex;
		align-items: center;
		gap: 0 10px;
	}
	.search_post .postComment .commentTtl::before{
		content: "";
		display: block;
		width: 20px;
		height: 16px;
		background: url('images/icon_comment.svg') no-repeat;
		background-size: contain;
		margin-top: 3px;
	}
	.search_post .postComment .commentTxt{
		margin-top: 10px;
		font-weight: 500;
		font-size: 14px;
		line-height: 20px;
		color: #534f4f;
	}
	.search_post .postComment .commentTxt h2{
		border-bottom: none;
	}
	.search_post .postContact .contactTtl{
		font-weight: 700;
		font-size: 18px;
		line-height: 26px;
		color: #534f4f;
		margin-top: 60px;
		display: flex;
		justify-content: center;
		align-items: flex-end;
		gap: 0 12px;
	}
	.search_post .postContact .contactTtl::before {
		content: "";
		display: block;
		width: 15px;
		height: 22px;
		-webkit-mask-image: url('images/icon_head1.svg');
		-webkit-mask-size: contain;
		-webkit-mask-repeat: no-repeat;
		-webkit-mask-position: center;
		background-color: #534F4F;
		margin-bottom: 1px;
	}
	.search_post .postContact .contactTtl::after {
		content: "";
		display: block;
		width: 15px;
		height: 22px;
		-webkit-mask-image: url('images/icon_head2.svg');
		-webkit-mask-size: contain;
		-webkit-mask-repeat: no-repeat;
		-webkit-mask-position: center;
		background-color: #534F4F;
		margin-bottom: 1px;
	}
	.search_post .postContact .contactBlk{
		display: flex;
		flex-flow: column;
		justify-content: center;
		align-items: center;
		gap: 15px 0;
		margin-top: 15px;
	}
	.search_post .postContact.back .contactBlk {
		margin-top: 40px;
	}
	.search_post .postContact .contactBlk .contactTel{
		width: 100%;
		max-width: 300px;
		height: 60px;
		background: #534f4f;
		border-radius: 9999px;
		font-weight: 700;
		font-size: 25px;
		line-height: 36px;
		color: #fff;
		display: flex;
		justify-content: center;
		align-items: center;
		gap: 0 5px;
	}
	.search_post .postContact .contactBlk .contactTel::before{
		content: "";
		display: block;
		width: 25px;
		height: 25px;
		background: url('images/icon_tel.svg') no-repeat;
		background-size: contain;
		margin-top: 3px;
	}
	.search_post .postContact .contactBlk .contactMail{
		width: 300px;
		height: 60px;
		background: #E97B6A;
		border-radius: 9999px;
		font-weight: 700;
		font-size: 16px;
		line-height: 24px;
		color: #fff;
		display: flex;
		justify-content: center;
		align-items: center;
		gap: 0 5px;
		position: relative;
	}
	.search_post .postContact .contactBlk .contactMail::before{
		content: "";
		display: block;
		width: 24px;
		height: 24px;
		background: url('images/icon_mail.svg') no-repeat;
		background-size: contain;
		margin-top: 1px;
	}
	.search_post .postContact .contactBlk .contactMail::after {
		content: "";
		display: block;
		background: url('images/icon_arrow.svg') no-repeat;
		background-size: contain;
		width: 24px;
		height: 24px;
		position: absolute;
		top: 50%;
		right: 16px;
		transform: translate(0%, -50%);
	}
	.search_post .postContact .contactBlk .contactBack{
		width: 300px;
		height: 60px;
		background: #e97b6a;
		border-radius: 9999px;
		font-weight: 700;
		font-size: 16px;
		line-height: 24px;
		color: #fff;
		display: flex;
		justify-content: center;
		align-items: center;
		gap: 0 5px;
		position: relative;
	}
	.search_post .postContact .contactBlk .contactBack::after {
		content: "";
		display: block;
		background: url('images/icon_arrow.svg') no-repeat;
		background-size: contain;
		width: 24px;
		height: 24px;
		position: absolute;
		top: 50%;
		right: 16px;
		transform: translate(0%, -50%);
	}
	.search_cost{
		background: #fbf9f6;
		padding: 40px 0 60px;
	}
	.search_cost .costTtl{
		font-weight: 700;
		font-size: 22px;
		line-height: 32px;
		color: #534f4f;
		border-bottom: 2px dotted #534f4f;
		padding-bottom: 15px;
	}
	.search_cost .costBlk{
		margin-top: 25px;
		display: flex;
		flex-flow: column;
		gap: 25px 0;
	}
	.search_cost .costItem{
		width: 100%;
		border-radius: 15px;
		background: #fff;
		padding: 17px 20px 20px;
	}
	.search_cost .costItem .itemTtl{
		font-weight: 700;
		font-size: 18px;
		line-height: 26px;
		color: #534f4f;
		text-align: justify;
		margin-bottom: 15px;
	}
	.search_cost .costItem .itemPrice{
		height: auto;
		display: flex;
		justify-content: space-between;
		align-items: center;
		padding: 10px 0;
		border-bottom: 1px solid #c4c4c4;
	}
	.search_cost .costItem .itemPrice:first-of-type{
		border-top: 1px solid #c4c4c4;
	}
	.search_cost .costItem .itemPrice .priceTtl{
		font-weight: 700;
		font-size: 16px;
		line-height: 24px;
		color: #534f4f;
	}
	.search_cost .costItem .itemPrice .priceNum{
		font-weight: 700;
		font-size: 16px;
		line-height: 24px;
		color: #534f4f;
	}
	.search_cost .costItem .itemPrice .priceNum span{
		font-weight: 700;
		font-size: 13px;
		line-height: 20px;
		color: #534f4f;
		margin-left: 3px;
	}
	.search_cost .costItem .itemPrice .priceDeposit{
		display: flex;
		align-items: center;
	}
	.search_cost .costItem .itemPrice .priceDeposit input[type="number"]{
		width: 80px;
		height: 35px;
		border-radius: 5px;
		background: #fff;
		border: 1px solid #c4c4c4;
		padding: 0px 10px;
		font-weight: 700;
		font-size: 18px;
		line-height: 26px;
		color: #534f4f;
		text-align: right; /* 右寄せ */
		-moz-appearance: textfield; /* Firefox */
		-webkit-appearance: textfield; /* Chrome, Safari */
		appearance: textfield;
	}
	.search_cost .costItem .itemPrice .priceDeposit span{
		font-weight: 700;
		font-size: 16px;
		line-height: 24px;
		color: #534f4f;
		margin-left: 8px;
	}
	.search_cost .costItem .itemPrice .priceCount{
		display: flex;
		align-items: center;
	}
	.search_cost .costItem .itemPrice .priceSelect{
		width: 80px;
		position: relative;
	}
	.search_cost .costItem .itemPrice .priceSelect::after {
		content: "";
		display: block;
		width: 0;
		height: 0;
		border-style: solid;
		border-right: 5px solid transparent;
		border-left: 5px solid transparent;
		border-top: 6px solid #534f4f;
		border-bottom: 0;
		position: absolute;
		top: 3px;
		bottom: 0;
		right: 10px;
		margin: auto 0;
	}
	.search_cost .costItem .itemPrice .priceSelect select{
		width: 100%;
		height: 35px;
		border-radius: 5px;
		background: #fff;
		border: 1px solid #c4c4c4;
		padding: 0px 10px;
		font-weight: 700;
		font-size: 18px;
		line-height: 26px;
		color: #534f4f;
	}
	.search_cost .costItem .itemPrice .priceCount span{
		font-weight: 700;
		font-size: 16px;
		line-height: 24px;
		color: #534f4f;
		margin-left: 8px;
	}
	.search_cost .costItem .itemTotal{
		width: 100%;
		padding: 8px 0 10px;
		border-radius: 4px;
		background: #f9f9f9;
		margin-top: 15px;
		display: flex;
		justify-content: center;
		align-items: baseline;
		gap: 0 10px;
	}
	.search_cost .costItem .itemTotal .totalTxt{
		font-weight: 700;
		font-size: 16px;
		line-height: 24px;
		color: #534f4f;
	}
	.search_cost .costItem .itemTotal .totalNum{
		font-weight: 900;
		font-size: 22px;
		line-height: 30px;
		color: #e97b6a;
	}
	.search_cost .costItem .itemTotal .totalNum span{
		font-weight: 700;
		font-size: 14px;
		line-height: 20px;
		color: #534f4f;
		margin-left: 2px;
	}
	.search_cost .costItem .itemTotal .totalNumTxt{
		font-weight: 700;
		font-size: 16px;
		line-height: 30px;
		color: #e97b6a;
	}
	.search_cost .costItem .itemTotalAst{
		font-weight: 600;
		font-size: 13px;
		line-height: 20px;
		margin-top: 15px;
		color: #717171;
		padding: 0 0px;
	}
}


/*
Shop
====================================*/
.shop_info{
	background: #fbf9f6;
	padding: 90px 0 200px;
}
.shop_info .infoBlk{
	display: flex;
	gap: 0 40px;
	margin-top: 40px;
}
.shop_info .itemTtl:not(:first-of-type){
	margin-top: 120px;
}
.shop_info .itemBlk{
	width: calc((100% - 40px) / 2);
}
.shop_info .itemBlk .itemImg{
	width: 100%;
	border-radius: 20px;
	overflow: hidden;
}
.shop_info .itemBlk .itemDl{
	display: flex;
	flex-wrap: wrap;
	margin-top: 30px;
}
.shop_info .itemBlk .itemDt{
	width: 120px;
	padding: 20px 0;
	border-top: 1px solid #534f4f;
	font-weight: 600;
	font-size: 16px;
	line-height: 24px;
	color: #534f4f;
}
.shop_info .itemBlk .itemDt:last-of-type{
	border-bottom: 1px solid #534f4f;
}
.shop_info .itemBlk .itemDd{
	width: calc(100% - 120px);
	padding: 20px 0;
	border-top: 1px solid #C4C4C4;
	font-weight: 600;
	font-size: 16px;
	line-height: 24px;
	color: #534f4f;
}
.shop_info .itemBlk .itemDd:last-of-type{
	border-bottom: 1px solid #C4C4C4;
}
.shop_info .itemBlk .itemMap{
	width: 100%;
	border-radius: 20px;
	overflow: hidden;
}
.shop_info .itemBlk .itemMap iframe{
	aspect-ratio: 53 / 34;
}
.shop_info .itemBlk .itemLicense{
	display: flex;
	gap: 0 15px;
	margin-top: 30px;
}
.shop_info .itemBlk .itemLicense .licenseBlk{
	width: calc((100% - 15px) / 2);
	border-radius: 10px;
	background: #fff;
	padding: 35px 20px;
}
.shop_info .itemBlk .itemLicense .licenseTtl{
	font-weight: 700;
	font-size: clamp(0.844rem, 0.642rem + 0.32vw, 0.938rem);
	line-height: 21px;
	color: #534f4f;
}
.shop_info .itemBlk .itemLicense .licenseDl{
	display: flex;
	flex-wrap: wrap;
	margin-top: 20px;
	gap: 10px 0;
}
.shop_info .itemBlk .itemLicense .licenseDt{
	width: 75px;
	font-weight: 700;
	font-size: clamp(0.813rem, 0.544rem + 0.42vw, 0.938rem);
	line-height: 21px;
	color: #534f4f;
}
.shop_info .itemBlk .itemLicense .licenseDd{
	width: calc(100% - 75px);
	font-weight: 600;
	font-size: clamp(0.813rem, 0.544rem + 0.42vw, 0.938rem);
	line-height: 21px;
	color: #534f4f;
}
.shop_info .itemBlk .itemBanner{
	width: 100%;
	margin-top: 30px;
	cursor: pointer;
	transition: .3s;
}
.shop_info .itemBlk .itemBanner:hover{
	opacity: 0.7;
}
@media screen and (max-width: 1024px) {
	.shop_info{
		background: #fbf9f6;
		padding: 60px 0 60px;
	}
	.shop_info .infoBlk{
		display: flex;
		flex-flow: column;
		gap: 0 40px;
		margin-top: 20px;
	}
	.shop_info .itemTtl:not(:first-of-type){
		margin-top: 60px;
	}
	.shop_info .itemBlk{
		width: 100%;
	}
	.shop_info .itemBlk .itemImg{
		width: 100%;
		border-radius: 20px;
		overflow: hidden;
		margin-bottom: 15px;
	}
	.shop_info .itemBlk .itemDl{
		display: flex;
		flex-wrap: wrap;
		margin-top: 20px;
	}
	.shop_info .itemBlk .itemDt{
		width: 80px;
		padding: 15px 0;
		border-top: 1px solid #534f4f;
		font-weight: 600;
		font-size: 16px;
		line-height: 24px;
		color: #534f4f;
	}
	.shop_info .itemBlk .itemDt:last-of-type{
		border-bottom: 1px solid #534f4f;
	}
	.shop_info .itemBlk .itemDd{
		width: calc(100% - 80px);
		padding: 15px 0 15px 5px;
		border-top: 1px solid #C4C4C4;
		font-weight: 600;
		font-size: 16px;
		line-height: 24px;
		color: #534f4f;
	}
	.shop_info .itemBlk .itemDd:last-of-type{
		border-bottom: 1px solid #C4C4C4;
	}
	.shop_info .itemBlk .itemMap{
		width: 100%;
		border-radius: 20px;
		overflow: hidden;
	}
	.shop_info .itemBlk .itemMap iframe{
		aspect-ratio: 16 / 9;
	}
	.shop_info .itemBlk .itemLicense{
		display: flex;
		flex-flow: column;
		gap: 10px 0;
		margin-top: 20px;
	}
	.shop_info .itemBlk .itemLicense .licenseBlk{
		width: 100%;
		border-radius: 10px;
		background: #fff;
		padding: 20px 20px;
	}
	.shop_info .itemBlk .itemLicense .licenseTtl{
		font-weight: 700;
		font-size: 15px;
		line-height: 21px;
		color: #534f4f;
	}
	.shop_info .itemBlk .itemLicense .licenseDl{
		display: flex;
		flex-wrap: wrap;
		margin-top: 10px;
		gap: 5px 0;
	}
	.shop_info .itemBlk .itemLicense .licenseDt{
		width: 110px;
		font-weight: 700;
		font-size: 15px;
		line-height: 21px;
		color: #534f4f;
	}
	.shop_info .itemBlk .itemLicense .licenseDd{
		width: calc(100% - 110px);
		font-weight: 600;
		font-size: 15px;
		line-height: 21px;
		color: #534f4f;
	}
	.shop_info .itemBlk .itemBanner{
		width: 100%;
		margin-top: 20px;
		cursor: pointer;
	}
}


/*
Clinic
====================================*/
.clinic_info{
	background: #fbf9f6;
	padding: 90px 0 0;
}
.clinic_info:last-of-type{
	padding-bottom: 120px;
}
.clinic_info .clinicItem{
	width: 100%;
	border-radius: 20px;
	background: #fff;
	padding: 40px 60px 50px;
	margin-top: 40px;
}
.clinic_info .clinicItem .itemTtl{
	font-weight: 700;
	font-size: 32px;
	line-height: 46px;
	color: #534f4f;
	border-bottom: 2px dotted #534f4f;
	padding-bottom: 15px;
}
.clinic_info .clinicItem .itemBlk{
	margin-top: 30px;
	display: flex;
	gap: 0 35px;
}
.clinic_info .clinicItem .itemImg{
	height: fit-content;
	width: 46%;
	border-radius: 20px;
	overflow: hidden;
}
.clinic_info .clinicItem .itemInfo{
	flex: 1;
}
.clinic_info .clinicItem .itemDl{
	display: flex;
	flex-wrap: wrap;
}
.clinic_info .clinicItem .itemDt{
	width: 130px;
	font-weight: 700;
	font-size: 16px;
	line-height: 24px;
	color: #534f4f;
	padding: 20px 0;
	border-top: 1px solid #c4c4c4;
}
.clinic_info .clinicItem .itemDt:last-of-type{
	border-bottom: 1px solid #c4c4c4;
}
.clinic_info .clinicItem .itemDd{
	width: calc(100% - 130px);
	font-weight: 600;
	font-size: 16px;
	line-height: 24px;
	color: #534f4f;
	padding: 20px 0;
	border-top: 1px solid #c4c4c4;
}
.clinic_info .clinicItem .itemDd:last-of-type{
	border-bottom: 1px solid #c4c4c4;
}
.clinic_info .clinicItem .itemDd .itemLink{
	text-decoration: underline;
	color: #e97b6a;
}
.clinic_info .clinicItem .itemMap{
	margin-top: 15px;
}
@media screen and (max-width: 1024px) {
	.clinic_info{
		background: #fbf9f6;
		padding: 60px 0 0;
	}
	.clinic_info:last-of-type{
		padding-bottom: 80px;
	}
	.clinic_info .clinicItem{
		width: 100%;
		border-radius: 10px;
		background: #fff;
		padding: 20px 18px 25px;
		margin-top: 35px;
	}
	.clinic_info .clinicItem .itemTtl{
		font-weight: 700;
		font-size: 22px;
		line-height: 32px;
		color: #534f4f;
		border-bottom: 2px dotted #534f4f;
		padding-bottom: 15px;
	}
	.clinic_info .clinicItem .itemBlk{
		margin-top: 20px;
		display: flex;
		flex-flow: column;
		gap: 15px 0;
	}
	.clinic_info .clinicItem .itemImg{
		height: fit-content;
		width: 100%;
		border-radius: 20px;
		overflow: hidden;
	}
	.clinic_info .clinicItem .itemInfo{
		flex: 1;
	}
	.clinic_info .clinicItem .itemDl{
		display: flex;
		flex-flow: column;
		flex-wrap: wrap;
	}
	.clinic_info .clinicItem .itemDt{
		width: 100%;
		font-weight: 700;
		font-size: 16px;
		line-height: 24px;
		color: #534f4f;
		padding: 15px 0 0;
		border-top: 1px solid #c4c4c4;
	}
	.clinic_info .clinicItem .itemDt:last-of-type{
		border-bottom: none;
	}
	.clinic_info .clinicItem .itemDd{
		width: 100%;
		font-weight: 600;
		font-size: 16px;
		line-height: 24px;
		color: #534f4f;
		padding: 5px 0 15px;
		border-top: none;
	}
	.clinic_info .clinicItem .itemDd:last-of-type{
		border-bottom: 1px solid #c4c4c4;
	}
	.clinic_info .clinicItem .itemDd .itemLink{
		text-decoration: underline;
		color: #e97b6a;
	}
	.clinic_info .clinicItem .itemMap{
		margin-top: 15px;
	}
}


/*
Service
====================================*/
.service_cmnItem{
	display: flex;
	align-items: center;
	gap: 0 50px;
}
.service_cmnItem .itemImg{
	width: calc(50% + 0px);
	border-radius: 20px;
	overflow: hidden;
	position: relative;
}
.service_cmnItem .itemImg .slick-list{
	margin: 0 -10px;
}
.service_cmnItem .itemImg .slick-slide{
	margin: 0 10px;
	border-radius: 20px;
}
.service_cmnItem .imgIndex{
	width: 125px;
	height: 125px;
	-webkit-mask-image: url('images/sercive_index.svg');
	-webkit-mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    background-color: #fbf9f6;
	font-weight: 700;
	font-size: 55px;
	line-height: 75px;
    letter-spacing: 0.05em;
	color: #e97b6a;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 0 20px 20px 0;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
}
.service_cmnItem .imgIndex.index02{
	background-color: #FFF;
}
.service_cmnItem .itemTxtBlk{
	flex: 1;
}
.service_cmnItem .itemTxt{
	font-weight: 600;
	font-size: 18px;
	line-height: 30px;
	color: #534f4f;
	margin-top: 35px;
}
.service_cmnLink{
	width: 300px;
	height: 60px;
	background: #e97b6a;
	border-radius: 9999px;
	margin: 60px auto 0;
	display: flex;
	justify-content: center;
	align-items: center;
	font-weight: 700;
	font-size: 16px;
	line-height: 24px;
	color: #fff;
	position: relative;
}
.service_cmnLink::after {
    content: "";
    display: block;
    background: url('images/icon_arrow.svg') no-repeat;
    background-size: contain;
    width: 24px;
    height: 24px;
    position: absolute;
    top: 50%;
    right: 16px;
    transform: translate(0%, -50%);
}
.service_pet{
	background: #fbf9f6;
	padding: 100px 0 120px;
}
.service_pet .summaryBlk{
	display: flex;
	gap: 0 60px;
	margin-top: 45px;
}
.service_pet .summaryItem{
	width: calc((100% - 60px) / 2);
	border-radius: 20px;
	background: #fff;
	padding: 38px 32px 40px;
}
.service_pet .summaryItem .itemImg{
	width: 100%;
	border-radius: 20px;
	overflow: hidden;
}
.service_pet .summaryItem .itemTtl{
	font-weight: 700;
	font-size: 24px;
	line-height: 40px;
	color: #e97b6a;
	margin-top: 25px;
	padding-bottom: 15px;
	border-bottom: 2px dotted #534f4f;
}
.service_pet .summaryItem .itemTxt{
	font-weight: 600;
	font-size: 16px;
	line-height: 28px;
	color: #534f4f;
	margin-top: 20px;
}
.service_pet .serviceBanner{
	display: block;
	width: 600px;
	margin: 50px auto 0;
}
.service_trimming{
	position: relative;
	padding: 140px 0 120px;
}
.service_trimming::before{
	content: "";
    display: block;
    width: 100%;
    height: 50%;
    background: url('images/cmn_wave02_top.webp') no-repeat top left;
    background-size: contain;
    position: absolute;
    top: 0;
    left: 0;
	z-index: 0;
	pointer-events: none;
}
.service_trimming .trimmingTtl{
	margin-top: 60px;
}
.service_trimming .courseBlk{
	display: flex;
	gap: 0 40px;
	margin-top: 30px;
}
.service_trimming .courseBlk .courseItem{
	width: calc((100% - 40px) / 2);
	border-radius: 12px;
	background: #fbf9f6;
	padding: 25px 35px;
	display: flex;
	align-items: center;
	gap: 0 20px;
}
.service_trimming .courseBlk .courseImg{
	width: 30%;
}
.service_trimming .courseBlk .courseTxtBlk{
	flex: 1;
}
.service_trimming .courseBlk .courseTtl{
	font-weight: 700;
	font-size: 25px;
	line-height: 36px;
	color: #534f4f;
}
.service_trimming .courseBlk .courseTxt{
	font-weight: 600;
	font-size: 16px;
	line-height: 25px;
	color: #534f4f;
	margin-top: 15px;
}
.service_pethotel{
	background: #fbf9f6;
	position: relative;
	padding: 130px 0 100px;
}
.service_pethotel::before{
	content: "";
    display: block;
    width: 100%;
    height: 50%;
    background: url('images/cmn_wave04_top.webp') no-repeat top left;
    background-size: contain;
    position: absolute;
    top: 0;
    left: 0;
	z-index: 0;
	pointer-events: none;
}
.service_dogrun{
	position: relative;
	padding: 130px 0 90px;
	border-bottom: 1px solid #c4c4c4;
}
.service_dogrun::before{
	content: "";
    display: block;
    width: 100%;
    height: 50%;
    background: url('images/cmn_wave02_top.webp') no-repeat top left;
    background-size: contain;
    position: absolute;
    top: 0;
    left: 0;
	z-index: 0;
	pointer-events: none;
}
.service_dogrun .pointBlk{
	border-radius: 15px;
	background: #fbf9f6;
	margin-top: 45px;
	padding: 40px 60px 50px;
}
.service_dogrun .pointBlk .pointTtl{
	font-weight: 700;
	font-size: 30px;
	line-height: 44px;
	color: #534f4f;
	padding-bottom: 12px;
	border-bottom: 2px dotted #534f4f;
}
.service_dogrun .pointBlk .pointUl{
	display: flex;
	flex-flow: column;
	gap: 15px 0;
	margin-top: 25px;
}
.service_dogrun .pointBlk .pointLi{
	font-weight: 600;
	font-size: 16px;
	line-height: 24px;
	color: #534f4f;
	display: flex;
	align-items: center;
	position: relative;
  	padding-left: 20px;
}
.service_dogrun .pointBlk .pointLi::before {
  content: "";
  display: block;
  width: 5px;
  height: 5px;
  background: #e97b6a;
  border-radius: 50%;
  position: absolute;
  top: 9px;
  left: 3px;
}
.service_dogrun .serviceTelTxt{
	font-weight: 700;
	font-size: 24px;
	line-height: 35px;
	color: #534f4f;
	text-align: center;
	margin-top: 50px;
}
.service_dogrun .serviceTel{
	width: 350px;
	height: 80px;
	margin: 15px auto 0;
	border-radius: 9999px;
	background: #e97b6a;
	display: flex;
	justify-content: center;
	align-items: center;
	font-weight: 700;
	font-size: 28px;
	line-height: 40px;
	color: #fff;
}
.service_dogrun .serviceTel .icon {
    display: block;
	width: 25px;
	height: 25px;
    -webkit-mask-image: url('images/icon_tel.svg');
    -webkit-mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    background-color: #FFF;
	margin-top: 3px;
	margin-right: 5px;
}
@media screen and (max-width: 1024px) {
	.service_cmnItem{
		display: flex;
		flex-flow: column;
		align-items: center;
		gap: 0 50px;
	}
	.service_cmnItem .itemImg{
		width: 100%;
		border-radius: 20px;
		overflow: hidden;
		position: relative;
	}
	.service_cmnItem .itemImg .slick-list{
		margin: 0 -5px;
	}
	.service_cmnItem .itemImg .slick-slide{
		margin: 0 5px;
		border-radius: 20px;
	}
	.service_cmnItem .imgIndex{
		width: 82px;
		height: 82px;
		-webkit-mask-image: url('images/sercive_index.svg');
		-webkit-mask-size: contain;
		-webkit-mask-repeat: no-repeat;
		-webkit-mask-position: center;
		background-color: #fbf9f6;
		font-weight: 700;
		font-size: 34px;
		line-height: 46px;
		letter-spacing: 0.05em;
		color: #e97b6a;
		display: flex;
		justify-content: center;
		align-items: center;
		padding: 0 12px 12px 0;
		position: absolute;
		top: 0;
		left: 0;
	}
	.service_cmnItem .imgIndex.index02{
		background-color: #FFF;
	}
	.service_cmnItem .itemTxtBlk{
		flex: 1;
		margin-top: 25px;
	}
	.service_cmnItem .itemTxt{
		font-weight: 600;
		font-size: 15px;
		line-height: 24px;
		color: #534f4f;
		margin-top: 30px;
	}
	.service_cmnLink{
		width: 100%;
		max-width: 300px;
		height: 60px;
		background: #e97b6a;
		border-radius: 9999px;
		margin: 40px auto 0;
		display: flex;
		justify-content: center;
		align-items: center;
		font-weight: 700;
		font-size: 16px;
		line-height: 24px;
		color: #fff;
		position: relative;
	}
	.service_cmnLink::after {
		content: "";
		display: block;
		background: url('images/icon_arrow.svg') no-repeat;
		background-size: contain;
		width: 24px;
		height: 24px;
		position: absolute;
		top: 50%;
		right: 16px;
		transform: translate(0%, -50%);
	}
	.service_pet{
		background: #fbf9f6;
		padding: 60px 0 60px;
	}
	.service_pet .summaryBlk{
		display: flex;
		flex-flow: column;
		gap: 30px 0px;
		margin-top: 40px;
	}
	.service_pet .summaryItem{
		width: 100%;
		border-radius: 20px;
		background: #fff;
		padding: 25px 20px 30px;
	}
	.service_pet .summaryItem .itemImg{
		width: 100%;
		border-radius: 20px;
		overflow: hidden;
	}
	.service_pet .summaryItem .itemTtl{
		font-weight: 700;
		font-size: 20px;
		line-height: 32px;
		color: #e97b6a;
		margin-top: 25px;
		padding-bottom: 10px;
		border-bottom: 2px dotted #534f4f;
	}
	.service_pet .summaryItem .itemTxt{
		font-weight: 600;
		font-size: 15px;
		line-height: 24px;
		color: #534f4f;
		margin-top: 20px;
	}
	.service_pet .serviceBanner{
		display: block;
		width: 100%;
		margin: 40px auto 0;
	}
	.service_trimming{
		position: relative;
		padding: 70px 0 60px;
	}
	.service_trimming::before{
		content: "";
		display: block;
		width: 100%;
		height: 50%;
		background: url('images/cmn_wave02_top.webp') no-repeat top left;
		background-size: contain;
		position: absolute;
		top: 0;
		left: 0;
		z-index: 0;
		pointer-events: none;
	}
	.service_trimming .trimmingTtl{
		margin-top: 40px;
	}
	.service_trimming .courseBlk{
		display: flex;
		flex-flow: column;
		gap: 15px 0;
		margin-top: 25px;
	}
	.service_trimming .courseBlk .courseItem{
		width: 100%;
		border-radius: 12px;
		background: #fbf9f6;
		padding: 17px 20px 25px;
		display: flex;
		align-items: center;
		gap: 0 15px;
	}
	.service_trimming .courseBlk .courseImg{
		width: 30%;
	}
	.service_trimming .courseBlk .courseTxtBlk{
		flex: 1;
	}
	.service_trimming .courseBlk .courseTtl{
		font-weight: 700;
		font-size: 18px;
		line-height: 26px;
		color: #534f4f;
	}
	.service_trimming .courseBlk .courseTxt{
		font-weight: 600;
		font-size: 14px;
		line-height: 22px;
		color: #534f4f;
		margin-top: 5px;
	}
	.service_pethotel{
		background: #fbf9f6;
		position: relative;
		padding: 70px 0 60px;
	}
	.service_pethotel::before{
		content: "";
		display: block;
		width: 100%;
		height: 50%;
		background: url('images/cmn_wave04_top.webp') no-repeat top left;
		background-size: contain;
		position: absolute;
		top: 0;
		left: 0;
		z-index: 0;
		pointer-events: none;
	}
	.service_dogrun{
		position: relative;
		padding: 70px 0 60px;
		border-bottom: 1px solid #c4c4c4;
	}
	.service_dogrun::before{
		content: "";
		display: block;
		width: 100%;
		height: 50%;
		background: url('images/cmn_wave02_top.webp') no-repeat top left;
		background-size: contain;
		position: absolute;
		top: 0;
		left: 0;
		z-index: 0;
		pointer-events: none;
	}
	.service_dogrun .pointBlk{
		border-radius: 15px;
		background: #fbf9f6;
		margin-top: 40px;
		padding: 25px 20px 30px;
	}
	.service_dogrun .pointBlk .pointTtl{
		font-weight: 700;
		font-size: 20px;
		line-height: 30px;
		color: #534f4f;
		padding-bottom: 15px;
		border-bottom: 2px dotted #534f4f;
	}
	.service_dogrun .pointBlk .pointUl{
		display: flex;
		flex-flow: column;
		gap: 15px 0;
		margin-top: 15px;
	}
	.service_dogrun .pointBlk .pointLi{
		font-weight: 600;
		font-size: 15px;
		line-height: 24px;
		color: #534f4f;
		display: flex;
		align-items: center;
		position: relative;
		padding-left: 15px;
	}
	.service_dogrun .pointBlk .pointLi::before {
		content: "";
		display: block;
		width: 5px;
		height: 5px;
		background: #e97b6a;
		border-radius: 50%;
		position: absolute;
		top: 9px;
		left: 3px;
	}
	.service_dogrun .serviceTelTxt{
		font-weight: 700;
		font-size: 18px;
		line-height: 26px;
		color: #534f4f;
		text-align: center;
		margin-top: 40px;
	}
	.service_dogrun .serviceTel{
		width: 100%;
		max-width: 300px;
		height: 60px;
		margin: 15px auto 0;
		border-radius: 9999px;
		background: #e97b6a;
		display: flex;
		justify-content: center;
		align-items: center;
		font-weight: 700;
		font-size: 25px;
		line-height: 36px;
		color: #fff;
	}
	.service_dogrun .serviceTel .icon {
		display: block;
		width: 25px;
		height: 25px;
		-webkit-mask-image: url('images/icon_tel.svg');
		-webkit-mask-size: contain;
		-webkit-mask-repeat: no-repeat;
		-webkit-mask-position: center;
		background-color: #FFF;
		margin-top: 3px;
		margin-right: 5px;
	}
}



/*
News
====================================*/
.news_sort{
	padding: 50px 0 60px;
}
.news_sort .sortBlk{
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 0 30px;
}
.news_sort .sortTtl{
	font-weight: 700;
	font-size: 18px;
	line-height: 26px;
	color: #534f4f;
}
.news_sort .sortSelect{
	width: 350px;
    height: 45px;
    border-radius: 10px;
    background: #fff;
    border: 1px solid #c4c4c4;
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    color: #534f4f;
	position: relative;
}
.news_sort .sortSelect::after{
    content: "";
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
    border-right: 6px solid transparent;
    border-left: 6px solid transparent;
    border-top: 8px solid #534f4f;
    border-bottom: 0;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 18px;
    margin: auto 0;
}
.news_sort .sortSelect form{
	width: 100%;
	height: 100%;
}
.news_sort .sortSelect select{
	width: 100%;
	height: 100%;
	padding: 0 15px;
}
.news_list{
	padding: 0 0 90px;
	border-bottom: 1px solid #c4c4c4;
}
.news_list .listBlk{
	display: flex;
	flex-flow: column;
	gap: 20px 0;
}
.news_list .listBlk .listItem{
	width: 100%;
	border-radius: 15px;
	background: #fbf9f6;
	padding: 30px 60px 30px 25px;
	display: flex;
	align-items: baseline;
	gap: 0 10px;
	position: relative;
}
.news_list .listBlk .listItem::after {
    content: "";
    display: block;
    -webkit-mask-image: url(images/icon_arrow.svg);
    -webkit-mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    background-color: #534f4f;
    width: 24px;
    height: 24px;
    position: absolute;
    top: 50%;
    right: 30px;
    transform: translate(0%, -50%);
}
.news_list .listBlk .listItem .itemDate{
	font-weight: 700;
	font-size: 18px;
	line-height: 24px;
	color: #979797;
	margin-right: 5px;
}
.news_list .listBlk .listItem .itemCat{
	width: fit-content;
	border-radius: 9999px;
	background: #e97b6a;
	padding: 0px 15px;
	font-weight: 700;
	font-size: 16px;
	line-height: 26px;
	color: #fff;
	margin-top: 2px;
}
.news_list .listBlk .listItem .itemTtl{
	flex: 1;
	font-weight: 700;
	font-size: 18px;
	line-height: 30px;
	color: #534f4f;
}
.news_list .listMissing{
	font-weight: 600;
	font-size: 20px;
	line-height: 32px;
	text-align: center;
}
@media screen and (max-width: 1024px) {
	.news_sort{
		padding: 40px 0 30px;
	}
	.news_sort .sortBlk{
		display: flex;
		justify-content: flex-start;
		align-items: center;
		gap: 0 15px;
	}
	.news_sort .sortTtl{
		font-weight: 700;
		font-size: 16px;
		line-height: 24px;
		color: #534f4f;
	}
	.news_sort .sortSelect{
		width: 180px;
		height: 45px;
		border-radius: 10px;
		background: #fff;
		border: 1px solid #c4c4c4;
		font-weight: 600;
		font-size: 16px;
		line-height: 24px;
		color: #534f4f;
		position: relative;
	}
	.news_sort .sortSelect::after{
		content: "";
		display: block;
		width: 0;
		height: 0;
		border-style: solid;
		border-right: 6px solid transparent;
		border-left: 6px solid transparent;
		border-top: 8px solid #534f4f;
		border-bottom: 0;
		position: absolute;
		top: 0;
		bottom: 0;
		right: 18px;
		margin: auto 0;
	}
	.news_sort .sortSelect form{
		width: 100%;
		height: 100%;
	}
	.news_sort .sortSelect select{
		width: 100%;
		height: 100%;
		padding: 0 15px;
	}
	.news_list{
		padding: 0 0 45px;
		border-bottom: 1px solid #c4c4c4;
	}
	.news_list .listPagination{
		margin: 30px auto 0;
	}
	.news_list .listBlk{
		display: flex;
		flex-flow: column;
		gap: 15px 0;
	}
	.news_list .listBlk .listItem{
		width: 100%;
		border-radius: 15px;
		background: #fbf9f6;
		padding: 20px 35px 20px 20px;
		display: flex;
		flex-wrap: wrap;
		align-items: baseline;
		gap: 5px 5px;
		position: relative;
	}
	.news_list .listBlk .listItem::after {
		content: "";
		display: block;
		-webkit-mask-image: url(images/icon_arrow.svg);
		-webkit-mask-size: contain;
		-webkit-mask-repeat: no-repeat;
		-webkit-mask-position: center;
		background-color: #534f4f;
		width: 24px;
		height: 24px;
		position: absolute;
		top: 50%;
		right: 10px;
		transform: translate(0%, -50%);
	}
	.news_list .listBlk .listItem .itemDate{
		font-weight: 700;
		font-size: 15px;
		line-height: 21px;
		color: #979797;
		margin-right: 5px;
	}
	.news_list .listBlk .listItem .itemCat{
		width: fit-content;
		border-radius: 9999px;
		background: #e97b6a;
		padding: 0px 13px;
		font-weight: 700;
		font-size: 13px;
		line-height: 21px;
		color: #FFF;
		margin-top: 0px;
	}
	.news_list .listBlk .listItem .itemTtl{
		flex: 100%;
		font-weight: 700;
		font-size: 16px;
		line-height: 24px;
		color: #534f4f;
		margin-left: 0;
		margin-top: 2px;
	}
	.news_list .listMissing{
		font-weight: 600;
		font-size: 20px;
		line-height: 32px;
		text-align: center;
	}
}


/*
NewsDetail
====================================*/
.newsDetail_article{
	padding: 60px 0 120px;
	border-bottom: 1px solid #c4c4c4;
}
.newsDetail_article .articleBlk{
	max-width: 850px;
	margin: 0 auto;
}
.newsDetail_article .articleDate{
	font-weight: 700;
	font-size: 20px;
	line-height: 28px;
	color: #979797;
}
.newsDetail_article .articleCat{
	display: inline-block;
	width: fit-content;
	border-radius: 9999px;
	background: #e97b6a;
	padding: 0px 20px;
	font-weight: 700;
	font-size: 16px;
	line-height: 30px;
	color: #fff;
	margin-top: 2px;
	margin-left: 15px;
}
.newsDetail_article .articleTtl{
	font-weight: 700;
	font-size: 22px;
	line-height: 34px;
	color: #534f4f;
	margin-top: 20px;
	padding-bottom: 15px;
	border-bottom: 2px dotted #534f4f;
}
.newsDetail_article .articleContent {
	margin: 50px 0 0;
	padding-bottom: 50px;
	border-bottom: 1px solid #c4c4c4;
}
.newsDetail_article .articleContent > *:first-child,
.newsDetail_article .articleContent > *:first-child *:first-child {
	margin-top: 0;
}
.newsDetail_article .articleContent img {
	display: table;
	margin: auto!important;
}
.newsDetail_article .articleContent > :not(ul):not(li):not(iframe):not(table *) {
	margin: calc(1rem* 1.6) 0 0;
	color: #534f4f;
	font-weight: 600;
}
.newsDetail_article .articleContent p {
	line-height: 2;
}
.newsDetail_article .articleContent a {
	color: #0000EE;
	text-decoration: underline;
}
@media screen and (max-width: 1024px) {
	.newsDetail_article{
		padding: 30px 0 60px;
		border-bottom: 1px solid #c4c4c4;
	}
	.newsDetail_article .articleBlk{
		max-width: 850px;
		margin: 0 auto;
	}
	.newsDetail_article .articleDate{
		font-weight: 700;
		font-size: 15px;
		line-height: 21px;
		color: #979797;
	}
	.newsDetail_article .articleCat{
		display: inline-block;
		width: fit-content;
		border-radius: 9999px;
		background: #e97b6a;
		padding: 0px 13px;
		font-weight: 700;
		font-size: 13px;
		line-height: 21px;
		color: #FFF;
		margin-top: 7px;
		margin-left: 10px;
	}
	.newsDetail_article .articleTtl{
		font-weight: 700;
		font-size: 20px;
		line-height: 30px;
		color: #534f4f;
		margin-top: 10px;
	}
	.newsDetail_article .articleContent {
		margin: 20px 0 0;
		padding-bottom: 25px;
		border-bottom: 1px solid #c4c4c4;
	}
	.newsDetail_article .articleContent > *:first-child,
	.newsDetail_article .articleContent > *:first-child *:first-child {
		margin-top: 0;
	}
	.newsDetail_article .articleContent img {
		display: table;
		margin: auto!important;
	}
	.newsDetail_article .articleContent > :not(ul):not(li):not(iframe):not(table *) {
		margin: calc(1rem* 1.6) 0 0;
		line-height: 1.5rem;
		
	}
	.newsDetail_article .articleContent p {
		line-height: 2;
	}
	.newsDetail_article .articleContent a {
		color: #0000EE;
		text-decoration: underline;
	}
}



/*
Company
====================================*/
.company_message{
	padding: 65px 0 120px;
	position: relative;
	overflow: hidden;
}
.company_message::before{
	content: "";
    display: block;
    width: 100%;
    height: 50%;
    background: url('images/cmn_wave02_bottom.webp') no-repeat bottom left;
    background-size: contain;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 0;
    pointer-events: none;
}
.company_message .messageBlk{
	display: flex;
	gap: 0 50px;
	margin-top: 40px;
}
.company_message .messageTxtBlk{
	flex: 1;
}
.company_message .messageTxtBlk .messageTxt{
	font-weight: 600;
	font-size: 20px;
	line-height: 36px;
	color: #534f4f;
	margin-top: 100px;
}
.company_message .messageImg{
	width: 60%;
	margin-top: 0px;
	margin-right: -100px;
}
.company_overview{
	background: #fbf9f6;
	padding: 75px 0 140px;
}
.company_overview .overviewDl{
	display: flex;
	flex-wrap: wrap;
	margin-top: 60px;
	border-radius: 20px;
	background: #fff;
	padding: 60px 125px;
}
.company_overview .overviewDt{
	width: 200px;
	font-weight: 700;
	font-size: 18px;
	line-height: 26px;
	color: #534f4f;
	border-bottom: 1px solid #c4c4c4;
	padding: 25px 0;
}
.company_overview .overviewDt:first-of-type{
	border-top: 1px solid #c4c4c4;
}
.company_overview .overviewDd{
	width: calc(100% - 200px);
	font-weight: 600;
	font-size: 18px;
	line-height: 26px;
	color: #534f4f;
	border-bottom: 1px solid #c4c4c4;
	padding: 25px 0;
}
.company_overview .overviewDd:first-of-type{
	border-top: 1px solid #c4c4c4;
}
.company_access{
	padding: 90px 0 120px;
	position: relative;
	border-bottom: 1px solid #c4c4c4;
}
.company_access::before{
	content: "";
    display: block;
    width: 100%;
    height: 50%;
    background: url('images/cmn_wave02_top.webp') no-repeat top left;
    background-size: contain;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
    pointer-events: none;
}
.company_access .accessMap{
	max-width: 100%;
	margin: 60px auto;
	border-radius: 20px;
	overflow: hidden;
}
.company_access .accessBlk{
	display: flex;
	gap: 0 40px;
	margin-top: 30px;
}
.company_access .accessDl{
	width: calc((100% - 40px) / 2);
	border-top: 1px solid #c4c4c4;
}
.company_access .accessDt{
	font-weight: 700;
	font-size: 20px;
	line-height: 30px;
	color: #534f4f;
	margin-top: 25px;
}
.company_access .accessDd{
	font-weight: 600;
	font-size: 18px;
	line-height: 30px;
	color: #534f4f;
	margin-top: 15px;
}
@media screen and (max-width: 1024px) {
	.company_message{
		padding: 40px 0 50px;
		overflow: hidden;
	}
	.company_message::before{
		content: "";
		display: block;
		width: 100%;
		height: 50%;
		background: url('images/cmn_wave02_bottom.webp') no-repeat bottom left;
		background-size: contain;
		position: absolute;
		bottom: 0;
		left: 0;
		z-index: 0;
		pointer-events: none;
	}
	.company_message .messageBlk{
		display: flex;
		flex-flow: column;
		gap: 20px 0px;
		margin-top: 30px;
	}
	.company_message .messageTxtBlk{
		flex: 1;
	}
	.company_message .messageTxtBlk .messageTxt{
		font-weight: 600;
		font-size: 16px;
		line-height: 26px;
		color: #534f4f;
		margin-top: 0px;
	}
	.company_message .messageImg{
		width: 140vw;
        margin-top: 0px;
        margin-right: 0px;
        margin-left: calc((50% - 70vw) / 2);
	}
	.company_overview{
		background: #fbf9f6;
		padding: 60px 0 60px;
	}
	.company_overview .overviewDl{
		display: flex;
		flex-wrap: wrap;
		margin-top: 30px;
		border-radius: 20px;
		background: #fff;
		padding: 30px 20px;
	}
	.company_overview .overviewDt{
		width: 100%;
		font-weight: 700;
		font-size: 16px;
		line-height: 24px;
		color: #534f4f;
		border-bottom: none;
		padding: 15px 0 0;
	}
	.company_overview .overviewDt:first-of-type{
		border-top: 1px solid #c4c4c4;
	}
	.company_overview .overviewDd{
		width: 100%;
		font-weight: 600;
		font-size: 16px;
		line-height: 24px;
		color: #534f4f;
		border-bottom: 1px solid #c4c4c4;
		padding: 5px 0 15px;
	}
	.company_overview .overviewDd:first-of-type{
		border-top: none;
	}
	.company_access{
		padding: 60px 0 60px;
		border-bottom: 1px solid #c4c4c4;
	}
	.company_access::before{
		content: "";
		display: block;
		width: 100%;
		height: 50%;
		background: url('images/cmn_wave02_top.webp') no-repeat top left;
		background-size: contain;
		position: absolute;
		top: 0;
		left: 0;
		z-index: 0;
		pointer-events: none;
	}
	.company_access .accessMap{
		max-width: 100%;
		margin: 30px auto;
	}
	.company_access .accessMap iframe{
		aspect-ratio: 4 / 3;
	}	
	.company_access .accessBlk{
		display: flex;
		flex-flow: column;
		gap: 0 40px;
		margin-top: 30px;
	}
	.company_access .accessDl{
		width: 100%;
		border-top: 1px solid #c4c4c4;
	}
	.company_access .accessDl:last-of-type{
		border-bottom: 1px solid #c4c4c4;
	}
	.company_access .accessDt{
		font-weight: 700;
		font-size: 16px;
		line-height: 24px;
		color: #534f4f;
		margin-top: 15px;
	}
	.company_access .accessDd{
		font-weight: 600;
		font-size: 16px;
		line-height: 24px;
		color: #534f4f;
		margin: 5px 0 15px;
	}
}


/*
Recruit
====================================*/
.recruit_message{
	padding: 60px 0 100px;
}
.recruit_message .inner{
	max-width: 830px;
	margin: 0 auto;
}
.recruit_message .messageTtl{
	font-weight: 700;
	font-size: 40px;
	line-height: 60px;
	text-align: center;
	color: #534f4f;
	text-decoration: underline;
	text-decoration-color: #f9e7e4;
	text-decoration-thickness: 40%;
	text-underline-offset: -3px;
}
.recruit_message .messageTxt{
	font-weight: 600;
	font-size: 22px;
	line-height: 36px;
	color: #534f4f;
	margin: 50px auto 0;
}
.recruit_message .messageImgBlk{
	display: flex;
	gap: 0px 30px;
	justify-content: center;
	margin: 50px auto 0;
}
.recruit_message .messageImg{
	width: calc((100% - 60px) / 3);
}
.recruit_message .messageImg .messageImgTxt{
	font-weight: 700;
	font-size: 24px;
	line-height: 28px;
	text-align: center;
	color: #534f4f;
	margin-top: 13px;
}
.recruit_job{
	background: #e1f2f5;
	padding: 90px 0 140px;
	position: relative;
}
.recruit_job::before {
    content: "";
    display: block;
    width: 100%;
    height: 50%;
    background: url('images/cmn_wave04_top.webp') no-repeat top left;
    background-size: contain;
    position: absolute;
    top: 0;
    left: 0;
	z-index: 0;
	pointer-events: none;
}
.recruit_job::after {
    content: "";
    display: block;
    width: 100%;
    height: 50%;
    background: url('images/cmn_wave04_bottom.webp') no-repeat bottom left;
    background-size: contain;
    position: absolute;
    bottom: 0;
    left: 0;
	z-index: 0;
	pointer-events: none;
}
.recruit_job .jobBlk{
	display: flex;
	border-radius: 20px;
	overflow: hidden;
	margin-top: 60px;
}
.recruit_job .jobBlk .itemImg{
	width: 45%;
}
.recruit_job .jobBlk .itemTxtBlk{
	width: 55%;
	background: #fff;
	padding: 20px 25px 20px 20px;
	display: flex;
    flex-flow: column;
    justify-content: center;
}
.recruit_job .jobBlk .itemTtl{
	font-weight: 700;
	font-size: 26px;
    line-height: 36px;
    padding-bottom: 10px;
    color: #534f4f;
    border-bottom: 2px dotted #534f4f;
}
.recruit_job .jobBlk .itemTxt{
	font-weight: 600;
    font-size: 18px;
    line-height: 30px;
    color: #534f4f;
    margin-top: 20px;
}
.recruit_desc{
	padding: 90px 0 120px;
	background: #fbf9f6;
	position: relative;
}
.recruit_desc::before {
    content: "";
    display: block;
    width: 100%;
    height: 50%;
    background: url('images/cmn_wave04_top.webp') no-repeat top left;
    background-size: contain;
    position: absolute;
    top: 0;
    left: 0;
	z-index: 0;
	pointer-events: none;
}
.recruit_desc .descTxt{
	font-weight: 600;
	font-size: 22px;
	line-height: 34px;
	color: #534f4f;
	text-align: center;
	margin-top: 50px;
}
.recruit_desc .descAccordion{
	max-width: 850px;
	margin: 30px auto 0;
}
.recruit_desc .cmn_accordion:first-of-type {
    margin-top: 70px;
}
.recruit_desc .descAccordion .accordHead{
	background: #6fb4c2;
	color: #fff;
}
.recruit_desc .descAccordion .accordHead::after{
    background: url('images/icon_plus2.svg') no-repeat;
	background-size: contain;
}
.recruit_desc .descAccordion .accordBlk{
	background: #e1f2f5;
	padding: 20px 40px 50px;
}
.recruit_desc .descAccordion .itemDl{
	background: #e1f2f5;
	display: flex;
	flex-wrap: wrap;
}
.recruit_desc .descAccordion .itemDt{
	width: 200px;
	font-weight: 700;
	font-size: 18px;
	line-height: 26px;
	padding: 25px 0;
	border-bottom: 1px solid #c4c4c4;
	color: #534f4f;
}
.recruit_desc .descAccordion .itemDd{
	width: calc(100% - 200px);
	font-weight: 600;
	font-size: 18px;
	line-height: 26px;
	padding: 25px 0;
	border-bottom: 1px solid #c4c4c4;
	color: #534f4f;
}
@media screen and (max-width: 1024px) {
	.recruit_message{
		padding: 50px 0 60px;
	}
	.recruit_message .inner{
		max-width: 830px;
		margin: 0 auto;
	}
	.recruit_message .messageTtl{
		font-weight: 700;
		font-size: 28px;
		line-height: 45px;
		text-align: center;
		color: #534f4f;
		text-decoration: underline;
		text-decoration-color: #f9e7e4;
		text-decoration-thickness: 50%;
		text-underline-offset: -3px;
	}
	.recruit_message .messageTxt{
		font-weight: 600;
		font-size: 16px;
		line-height: 26px;
		color: #534f4f;
		margin: 30px auto 0;
	}
	.recruit_message .messageImgBlk{
		display: flex;
		flex-wrap: wrap;
		gap: 15px 20px;
		justify-content: center;
		margin: 50px auto 0;
	}
	.recruit_message .messageImg{
		width: calc((100% - 20px) / 2);
	}
	.recruit_message .messageImg .messageImgTxt{
		font-weight: 700;
		font-size: 20px;
		line-height: 30px;
		text-align: center;
		color: #534f4f;
		margin-top: 10px;
	}
	.recruit_job{
		background: #e1f2f5;
		padding: 70px 0 70px;
		position: relative;
	}
	.recruit_job::before {
		content: "";
		display: block;
		width: 100%;
		height: 50%;
		background: url('images/cmn_wave04_top.webp') no-repeat top left;
		background-size: contain;
		position: absolute;
		top: 0;
		left: 0;
		z-index: 0;
		pointer-events: none;
	}
	.recruit_job::after {
		content: "";
		display: block;
		width: 100%;
		height: 50%;
		background: url('images/cmn_wave04_bottom.webp') no-repeat bottom left;
		background-size: contain;
		position: absolute;
		bottom: 0;
		left: 0;
		z-index: 0;
		pointer-events: none;
	}
	.recruit_job .jobBlk{
		display: flex;
		flex-flow: column;
		border-radius: 20px;
		overflow: hidden;
		margin-top: 40px;
	}
	.recruit_job .jobBlk .itemImg{
		width: 100%;
	}
	.recruit_job .jobBlk .itemImg img{
		width: 100%;
	}
	.recruit_job .jobBlk .itemTxtBlk{
		width: 100%;
		background: #fff;
		padding: 20px 20px 20px 20px;
		display: flex;
		flex-flow: column;
		justify-content: center;
	}
	.recruit_job .jobBlk .itemTtl{
		font-weight: 700;
		font-size: 22px;
		line-height: 30px;
		padding-bottom: 15px;
		color: #534f4f;
		border-bottom: 2px dotted #534f4f;
	}
	.recruit_job .jobBlk .itemTxt{
		font-weight: 600;
		font-size: 15px;
		line-height: 24px;
		color: #534f4f;
		margin-top: 15px;
	}
	.recruit_desc{
		padding: 60px 0 80px;
	}
	.recruit_desc .descTxt{
		font-weight: 600;
		font-size: 15px;
		line-height: 24px;
		color: #534f4f;
		text-align: center;
		margin-top: 30px;
	}
	.recruit_desc .descAccordion{
		max-width: 850px;
		margin: 15px auto 0;
	}
	.recruit_desc .cmn_accordion:first-of-type {
		margin-top: 40px;
	}
	.recruit_desc .descAccordion .accordHead{
		background: #6fb4c2;
		color: #fff;
	}
	.recruit_desc .descAccordion .accordHead::after{
		background: url('images/icon_plus2.svg') no-repeat;
		background-size: contain;
	}
	.recruit_desc .descAccordion .accordBlk{
		background: #e1f2f5;
		padding: 10px 20px 40px;
	}
	.recruit_desc .descAccordion .itemDl{
		background: #e1f2f5;
		display: flex;
		flex-wrap: wrap;
	}
	.recruit_desc .descAccordion .itemDt{
		width: 100%;
		font-weight: 700;
		font-size: 16px;
		line-height: 24px;
		padding: 15px 0 0;
		border-bottom: none;
	}
	.recruit_desc .descAccordion .itemDd{
		width: 100%;
		font-weight: 600;
		font-size: 16px;
		line-height: 24px;
		padding: 5px 0 15px;
		border-bottom: 1px solid #c4c4c4;
	}
}



/*
Contact
====================================*/
.contact_reserve{
	padding: 70px 0 90px;
}
.contact_reserve .reserveTtl{
	font-weight: 700;
    font-size: 40px;
    line-height: 58px;
    color: #534f4f;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 0 24px;
}
.contact_reserve .reserveTtl::before{
	content: "";
    display: block;
    width: 23px;
    height: 34px;
    -webkit-mask-image: url('images/icon_head1.svg');
    -webkit-mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    background-color: #534f4f;
    margin-bottom: 5px;
}
.contact_reserve .reserveTtl::after{
	content: "";
    display: block;
    width: 23px;
    height: 34px;
    -webkit-mask-image: url('images/icon_head2.svg');
    -webkit-mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
	background-color: #534f4f;
    margin-bottom: 5px;
}
.contact_reserve .reserveItem{
	display: flex;
	align-items: center;
	gap: 0 40px;
	background: #fbf9f6;
	padding: 25px;
	border-radius: 20px;
	margin-top: 40px;
} 
.contact_reserve .reserveItem .itemImg{
	width: 45%;
	border-radius: 20px;
	overflow: hidden;
}
.contact_reserve .reserveItem .itemImg img{
	aspect-ratio: 16 / 15;
}
.contact_reserve .reserveItem .itemTxtBlk{
	flex: 1;
}
.contact_reserve .reserveItem .itemTtl{
	font-weight: 700;
	font-size: 26px;
	line-height: 30px;
	color: #534f4f;
}
.contact_reserve .reserveItem .itemDl{
	display: flex;
	flex-wrap: wrap;
	margin-top: 25px;
}
.contact_reserve .reserveItem .itemDt{
	width: 150px;
	font-weight: 700;
	font-size: 20px;
	line-height: 26px;
	padding: 20px 0;
	color: #534f4f;
	border-bottom: 1px solid #534f4f;
}
.contact_reserve .reserveItem .itemDt:first-of-type{
	border-top: 1px solid #534f4f;
}
.contact_reserve .reserveItem .itemDd{
	width: calc(100% - 150px);
	font-weight: 600;
	font-size: 20px;
	line-height: 26px;
	padding: 20px 0;
	color: #534f4f;
	border-bottom: 1px solid #c4c4c4;
}
.contact_reserve .reserveItem .itemDd:first-of-type{
	border-top: 1px solid #c4c4c4;
}
.contact_form{
	background: #fbf9f6;
	position: relative;
	padding: 100px 0 120px;
}
.contact_form::before {
    content: "";
    display: block;
    width: 100%;
    height: 50%;
    background: url('images/cmn_wave04_top.webp') no-repeat top left;
    background-size: contain;
    position: absolute;
    top: 0;
    left: 0;
	z-index: 0;
	pointer-events: none;
}
.contact_form .formNote{
	max-width: 500px;
	border-radius: 20px;
	padding: 30px 30px 35px;
	background: #fff;
	margin: 50px auto 0;
}
.contact_form .formNote .noteTtl{
	font-weight: 700;
	font-size: 22px;
	line-height: 28px;
	color: #e97b6a;
	text-align: center;
}
.contact_form .formNote .noteTxt{
	font-weight: 600;
	font-size: 18px;
	line-height: 28px;
	color: #534f4f;
	margin-top: 20px;
}
.contact_form .formContents{
	max-width: 800px;
	margin: 80px auto 0;
}
.contact_form .form_input{
	display: flex;
	flex-flow: column;
	gap: 45px 0;
	padding-bottom: 50px;
	border-bottom: 1px solid #c4c4c4;
}
.contact_form .form_input .inputRow{
	display: flex;
}
.contact_form .form_input .inputRow.hidden{
	display: none;
}
.contact_form .form_input .inputItem{
	width: 300px;
	display: flex;
	align-items: center;
	font-weight: 700;
	font-size: 20px;
	line-height: 28px;
	color: #534f4f;
	gap: 0 10px;
}
.contact_form .form_input .inputItem ._must{
	width: fit-content;
	height: 28px;
	padding: 0 12px;
	border-radius: 9999px;
	background: #e97b6a;
	font-weight: 700;
	font-size: 16px;
	line-height: 22px;
	color: #fff;
	display: flex;
	justify-content: center;
	align-items: center;
}
.contact_form .form_input .inputItem ._any{
	width: fit-content;
	height: 28px;
	padding: 0 12px;
	border-radius: 9999px;
	background: #b9bfc8;
	font-weight: 700;
	font-size: 16px;
	line-height: 22px;
	color: #fff;
	display: flex;
	justify-content: center;
	align-items: center;
}
.contact_form .form_input .inputValue{
	flex: 1;
}
.contact_form .form_input .inputValue input[type="text"],
.contact_form .form_input .inputValue input[type="number"],
.contact_form .form_input .inputValue input[type="email"],
.contact_form .form_input .inputValue input[type="tel"]{
	width: 100%;
	height: 50px;
	border-radius: 10px;
	background: #fff;
	border: 1px solid #c4c4c4;
	padding: 10px 12px;
	font-weight: 600;
	font-size: 16px;
	line-height: 24px;
}
.contact_form .form_input .inputValue input[type="date"],
.contact_form .form_input .inputValue select{
	width: 100%;
	height: 50px;
	border-radius: 10px;
	background: #fff;
	border: 1px solid #c4c4c4;
	padding: 10px 12px;
	font-weight: 600;
	font-size: 16px;
	line-height: 24px;
}
.contact_form .form_input .inputValue input[name="your-date"]{
	width: 230px;
}
.contact_form .form_input .inputValue textarea{
	width: 100%;
	height: 200px;
	border-radius: 10px;
	background: #fff;
	border: 1px solid #c4c4c4;
	padding: 10px 12px;
	font-weight: 600;
	font-size: 16px;
	line-height: 24px;
}
.contact_form .form_agree{
	display: flex;
	justify-content: center;
	margin-top: 40px;
}
.contact_form .form_agree label{
	display: flex;
	gap: 0 10px;
	font-weight: 700;
	font-size: 16px;
	line-height: 25px;
}
.contact_form .form_agree input[type="checkbox"]{
	width: 25px;
	height: 25px;
	border-radius: 5px;
}
.contact_form .form_submit{
	margin: 50px auto 0;
	width: 300px;
	height: 60px;
	position: relative;
	background: #CCC;
    border-radius: 9999px
}
.contact_form .form_submit.active{
	background: #E97B6A;
}
.contact_form .form_submit::after {
    content: "";
    display: block;
    background: url('images/icon_arrow.svg') no-repeat;
    background-size: contain;
    width: 24px;
    height: 24px;
    position: absolute;
    top: 50%;
    right: 16px;
    transform: translate(0%, -50%);
}
.contact_form .form_submit input[type="submit"]{
	width: 100%;
	height: 100%;
    font-weight: 700;
    font-size: 18px;
    line-height: 26px;
	text-align: center;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}
.contact_form .form_submit .wpcf7-spinner{
	position: absolute;
	top: 50%;
    right: -70px;
    transform: translate(0%, -50%);
}
.contact_form .form_pp{
	margin: 60px 0 0;
	width: 100%;
	height: 270px;
	border-radius: 5px;
	background: #fff;
	border: 1px solid #cecece;
	padding: 30px 33px;
	overflow: auto;
}
.form_turnstile {
	display: flex;
	justify-content: center;
	margin-top: 40px;
}
@media screen and (max-width: 1024px) {
	.contact_reserve{
		padding: 50px 0 60px;
	}
	.contact_reserve .reserveTtl{
		font-weight: 700;
		font-size: 20px;
		line-height: 29px;
		color: #534f4f;
		display: flex;
		justify-content: center;
		align-items: flex-end;
		gap: 0 15px;
	}
	.contact_reserve .reserveTtl::before{
		content: "";
		display: block;
		width: 15px;
        height: 22px;
		-webkit-mask-image: url('images/icon_head1.svg');
		-webkit-mask-size: contain;
		-webkit-mask-repeat: no-repeat;
		-webkit-mask-position: center;
		background-color: #534f4f;
		margin-bottom: 2px;
	}
	.contact_reserve .reserveTtl::after{
		content: "";
		display: block;
		width: 15px;
        height: 22px;
		-webkit-mask-image: url('images/icon_head2.svg');
		-webkit-mask-size: contain;
		-webkit-mask-repeat: no-repeat;
		-webkit-mask-position: center;
		background-color: #534f4f;
		margin-bottom: 2px;
	}
	.contact_reserve .reserveItem{
		display: flex;
		flex-flow: column;
		align-items: center;
		gap: 25px 0;
		background: #fbf9f6;
		padding: 20px 20px 30px;
		border-radius: 20px;
		margin-top: 20px;
	} 
	.contact_reserve .reserveItem .itemImg{
		width: 100%;
		border-radius: 20px;
		overflow: hidden;
	}
	.contact_reserve .reserveItem .itemImg img{
		aspect-ratio: 16 / 12;
	}
	.contact_reserve .reserveItem .itemTxtBlk{
		flex: 1;
	}
	.contact_reserve .reserveItem .itemTtl{
		font-weight: 700;
		font-size: 20px;
		line-height: 30px;
		color: #534f4f;
	}
	.contact_reserve .reserveItem .itemDl{
		display: flex;
		flex-wrap: wrap;
		margin-top: 15px;
	}
	.contact_reserve .reserveItem .itemDt{
		width: 100px;
		font-weight: 700;
		font-size: 16px;
		line-height: 24px;
		padding: 15px 0;
		color: #534f4f;
		border-bottom: 1px solid #534f4f;
	}
	.contact_reserve .reserveItem .itemDt:first-of-type{
		border-top: 1px solid #534f4f;
	}
	.contact_reserve .reserveItem .itemDd{
		width: calc(100% - 100px);
		font-weight: 600;
		font-size: 16px;
		line-height: 24px;
		padding: 15px 0 15px 10px;
		color: #534f4f;
		border-bottom: 1px solid #c4c4c4;
	}
	.contact_reserve .reserveItem .itemDd:first-of-type{
		border-top: 1px solid #c4c4c4;
	}
	.contact_form{
		background: #fbf9f6;
		position: relative;
		padding: 70px 0 80px;
	}
	.contact_form::before {
		content: "";
		display: block;
		width: 100%;
		height: 50%;
		background: url('images/cmn_wave04_top.webp') no-repeat top left;
		background-size: contain;
		position: absolute;
		top: 0;
		left: 0;
		z-index: 0;
		pointer-events: none;
	}
	.contact_form .formNote{
		max-width: 500px;
		border-radius: 20px;
		padding: 25px 20px 25px;
		background: #fff;
		margin: 40px auto 0;
	}
	.contact_form .formNote .noteTtl{
		font-weight: 700;
		font-size: 18px;
		line-height: 26px;
		color: #e97b6a;
		text-align: center;
	}
	.contact_form .formNote .noteTxt{
		font-weight: 600;
		font-size: 16px;
		line-height: 24px;
		color: #534f4f;
		margin-top: 15px;
	}
	.contact_form .formContents{
		max-width: 800px;
		margin: 40px auto 0;
	}
	.contact_form .form_input{
		display: flex;
		flex-flow: column;
		gap: 20px 0;
		padding-bottom: 30px;
		border-bottom: 1px solid #c4c4c4;
	}
	.contact_form .form_input .inputRow{
		display: flex;
		flex-wrap: wrap;
		gap: 10px 0;
	}
	.contact_form .form_input .inputItem{
		width: 100%;
		display: flex;
		align-items: center;
		font-weight: 700;
		font-size: 16px;
		line-height: 24px;
		color: #534f4f;
		gap: 0 10px;
	}
	.contact_form .form_input .inputItem ._must{
		width: fit-content;
		height: 24px;
		padding: 0 14px;
		border-radius: 9999px;
		background: #e97b6a;
		font-weight: 700;
		font-size: 14px;
		line-height: 21px;
		color: #fff;
		display: flex;
		justify-content: center;
		align-items: center;
	}
	.contact_form .form_input .inputItem ._any{
		width: fit-content;
		height: 24px;
		padding: 0 14px;
		border-radius: 9999px;
		background: #b9bfc8;
		font-weight: 700;
		font-size: 14px;
		line-height: 21px;
		color: #fff;
		display: flex;
		justify-content: center;
		align-items: center;
	}
	.contact_form .form_input .inputValue{
		flex: 100%;
	}
	.contact_form .form_input .inputValue input[type="text"],
	.contact_form .form_input .inputValue input[type="number"],
	.contact_form .form_input .inputValue input[type="email"],
	.contact_form .form_input .inputValue input[type="tel"]{
		width: 100%;
		height: 45px;
		border-radius: 10px;
		background: #fff;
		border: 1px solid #c4c4c4;
		padding: 10px 10px;
		font-weight: 600;
		font-size: 16px;
		line-height: 24px;
	}
	.contact_form .form_input .inputValue input[type="date"],
	.contact_form .form_input .inputValue select{
		width: 100%;
		height: 50px;
		border-radius: 10px;
		background: #fff;
		border: 1px solid #c4c4c4;
		padding: 10px 10px;
		font-weight: 600;
		font-size: 16px;
		line-height: 24px;
		text-align: left;
		box-sizing: border-box;
		-webkit-appearance: none;
    	appearance: none;
	}
	input[type="date"]::-webkit-date-and-time-value {
		text-align: left;
	}
	.contact_form .form_input .inputValue textarea{
		width: 100%;
		height: 170px;
		border-radius: 10px;
		background: #fff;
		border: 1px solid #c4c4c4;
		padding: 10px 10px;
		font-weight: 600;
		font-size: 16px;
		line-height: 24px;
	}
	.contact_form .form_agree{
		display: flex;
		justify-content: center;
		margin-top: 40px;
	}
	.contact_form .form_agree label{
		display: flex;
		gap: 0 7px;
		font-weight: 700;
		font-size: 16px;
		line-height: 25px;
	}
	.contact_form .form_agree input[type="checkbox"]{
		width: 25px;
		height: 25px;
		border-radius: 5px;
	}
	.contact_form .form_submit{
		margin: 30px auto 0;
		width: 100%;
		max-width: 300px;
		height: 60px;
		position: relative;
		background: #CCC;
		border-radius: 9999px
	}
	.contact_form .form_submit.active{
		background: #e97b6a;
	}
	.contact_form .form_submit::after {
		content: "";
		display: block;
		background: url('images/icon_arrow.svg') no-repeat;
		background-size: contain;
		width: 24px;
		height: 24px;
		position: absolute;
		top: 50%;
		right: 16px;
		transform: translate(0%, -50%);
	}
	.contact_form .form_submit input[type="submit"]{
		width: 100%;
		height: 100%;
		font-weight: 700;
		font-size: 18px;
		line-height: 26px;
		text-align: center;
		color: #fff;
		display: flex;
		justify-content: center;
		align-items: center;
		position: relative;
	}
	.contact_form .form_submit .wpcf7-spinner{
		position: absolute;
		top: 50%;
		right: 30px;
		transform: translate(0%, -50%);
	}
	.contact_form .form_pp{
		margin: 30px 0 0;
		width: 100%;
		height: 170px;
		border-radius: 5px;
		background: #fff;
		border: 1px solid #cecece;
		padding: 15px 20px 15px 15px;
		overflow: auto;
	}
	.form_turnstile {
		display: flex;
		justify-content: center;
		margin-top: 40px;
	}
}



/*
Grooming
====================================*/
.grooming_menu{
	padding: 90px 0 90px;
	background: #fbf9f6;
}
.grooming_menu .courseTtl{
	margin-top: 75px;
}
.grooming_menu .courseBlk{
	display: flex;
	align-items: center;
	gap: 0 40px;
	margin-top: 30px;
}
.grooming_menu .courseItem{
	width: calc((100% - 40px) / 2);
	background: #FFF;
	display: flex;
	border-radius: 20px;
	overflow: hidden;
}
.grooming_menu .courseItem .itemImg{
	width: 45%;
}
.grooming_menu .courseItem .itemImg img{
	width: 100%;
	height: 100%;
}
.grooming_menu .courseItem .itemTxtBlk{
	flex: 1;
	padding: 25px 30px;
	display: flex;
	flex-flow: column;
	justify-content: center;
}
.grooming_menu .courseItem .itemTtl{
	font-weight: 700;
	font-size: 24px;
	line-height: 35px;
	color: #e97b6a;
	white-space: nowrap;
}
.grooming_menu .courseItem .itemTxt{
	font-weight: 600;
	font-size: 16px;
	line-height: 26px;
	color: #534f4f;
	margin-top: 15px;
}
.grooming_menu .optionTtl{
	margin-top: 75px;
}
.grooming_menu .optionTxt{
	font-weight: 600;
	font-size: 18px;
	line-height: 30px;
	color: #534f4f;
	margin-top: 30px;
}
.grooming_menu .optionHead{
	font-weight: 700;
	font-size: 30px;
	line-height: 44px;
	color: #534f4f;
	display: flex;
	justify-content: center;
	align-items: end;
	gap: 0 20px;
	margin-top: 60px;
	margin-bottom: -22px;
}
.grooming_menu .optionHead::before {
    content: "";
    display: block;
    width: 18px;
    height: 27px;
    -webkit-mask-image: url('images/icon_head1.svg');
    -webkit-mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    background-color: #534f4f;
    margin-bottom: 5px;
}
.grooming_menu .optionHead::after {
    content: "";
    display: block;
    width: 18px;
    height: 27px;
    -webkit-mask-image: url('images/icon_head2.svg');
    -webkit-mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    background-color: #534f4f;
    margin-bottom: 5px;
}
.grooming_menu .optionItem{
	width: 820px;
	margin: 0 auto;
	border-radius: 20px;
	background: #fff;
	padding: 50px;
	display: flex;
	align-items: center;
	gap: 0 30px;
}
.grooming_menu .optionItem .itemImg{
	width: 40%;
	border-radius: 20px;
    overflow: hidden;
}
.grooming_menu .optionItem .itemTxtBlk{
	flex: 1;
}
.grooming_menu .optionItem .itemTtl{
	font-weight: 700;
	font-size: 25px;
	line-height: 36px;
	color: #e97b6a;
}
.grooming_menu .optionItem .itemTxt{
	font-weight: 600;
	font-size: 16px;
	line-height: 26px;
	color: #534f4f;
	margin-top: 20px;
}
.grooming_catch{
	width: 100%;
	position: relative;
}
.grooming_catch img{
	width: 100%;
}
.grooming_catch .pc{
}
.grooming_catch .sp{
	display: none;
}
.grooming_catch::before {
    content: "";
    display: block;
    width: 100%;
    height: 50%;
    background: url('images/cmn_wave02_top.webp') no-repeat top left;
    background-size: contain;
    position: absolute;
    top: 0;
    left: 0;
	z-index: 0;
	pointer-events: none;
}
.grooming_catch::after {
    content: "";
    display: block;
    width: 100%;
    height: 50%;
    background: url('images/cmn_wave01_bottom.webp') no-repeat bottom left;
    background-size: contain;
    position: absolute;
    bottom: 0;
    left: 0;
	z-index: 0;
	pointer-events: none;
}
.grooming_price{
	background: #f1e9e7;
}
.grooming_reserve{
	position: relative;
	padding: 130px 0 90px;
	border-bottom: 1px solid #c4c4c4;
}
.grooming_reserve::before {
    content: "";
    display: block;
    width: 100%;
    height: 50%;
    background: url('images/cmn_wave01_top.webp') no-repeat top left;
    background-size: contain;
    position: absolute;
    top: 0;
    left: 0;
	z-index: 0;
	pointer-events: none;
}
.grooming_reserve .reserveBlk{
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 20px;
	margin-top: 50px;
}
.grooming_reserve .reserveItem{
	width: 31%;
	height: 110px;
	border-radius: 10px;
	background: #fbf9f6;
	padding: 20px;
}
.grooming_reserve .reserveItem .itemTtl{
	font-weight: 700;
	font-size: 18px;
	line-height: 26px;
	color: #534f4f;
	text-align: center;
}	
.grooming_reserve .reserveItem .itemTel{
	font-weight: 700;
	font-size: 28px;
	line-height: 40px;
	color: #534f4f;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 0 5px;
	margin-top: 5px;
}
.grooming_reserve .reserveItem .itemTel .icon{
	content: "";
	width: 25px;
	height: 25px;
	border-radius: 50%;
	background: #e97b6a;
	display: flex;
    justify-content: center;
    align-items: center;
	margin-top: 2px;
}
.grooming_reserve .reserveItem .itemTel .icon::before{
    content: "";
    display: block;
    -webkit-mask-image: url('images/icon_tel.svg');
    -webkit-mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
	background-color: #FFF;
    width: 15px;
    height: 18px;
}
.grooming_reserve .reserveLink {
    width: 300px;
    height: 60px;
    margin: 50px auto 0;
    background: #e97b6a;
    border-radius: 9999px;
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}
.grooming_reserve .reserveLink::after {
    content: "";
    display: block;
    background: url('images/icon_arrow.svg') no-repeat;
    background-size: contain;
    width: 24px;
    height: 24px;
    position: absolute;
    top: 50%;
    right: 16px;
    transform: translate(0%, -50%);
}
@media screen and (max-width: 1024px) {
	.grooming_menu{
		padding: 60px 0 70px;
		background: #fbf9f6;
	}
	.grooming_menu .courseTtl{
		margin-top: 50px;
	}
	.grooming_menu .courseBlk{
		display: flex;
		flex-flow: column;
		align-items: center;
		gap: 35px 0;
		margin-top: 25px;
	}
	.grooming_menu .courseItem{
		width: 100%;
		background: #FFF;
		display: flex;
		flex-flow: column;
		border-radius: 20px;
		overflow: hidden;
	}
	.grooming_menu .courseItem .itemImg{
		width: 100%;
	}
	.grooming_menu .courseItem .itemImg img{
		aspect-ratio: 1 / 0.6;
	}
	.grooming_menu .courseItem .itemTxtBlk{
		flex: 1;
		padding: 20px 25px 25px;
		display: flex;
		flex-flow: column;
		justify-content: center;
	}
	.grooming_menu .courseItem .itemTtl{
		font-weight: 700;
		font-size: 20px;
		line-height: 30px;
		color: #e97b6a;
		text-align: center;
	}
	.grooming_menu .courseItem .itemTxt{
		font-weight: 600;
		font-size: 15px;
		line-height: 22px;
		color: #534f4f;
		margin-top: 10px;
	}
	.grooming_menu .optionTtl{
		margin-top: 60px;
	}
	.grooming_menu .optionTxt{
		font-weight: 600;
		font-size: 15px;
		line-height: 24px;
		color: #534f4f;
		margin-top: 20px;
	}
	.grooming_menu .optionHead{
		font-weight: 700;
		font-size: 20px;
		line-height: 30px;
		color: #534f4f;
		display: flex;
		justify-content: center;
		align-items: end;
		gap: 0 15px;
		margin-top: 50px;
		margin-bottom: -50px;
		position: relative;
        z-index: 1;
	}
	.grooming_menu .optionHead::before {
		content: "";
		display: block;
		width: 15px;
        height: 22px;
		-webkit-mask-image: url('images/icon_head1.svg');
		-webkit-mask-size: contain;
		-webkit-mask-repeat: no-repeat;
		-webkit-mask-position: center;
		background-color: #534f4f;
		margin-bottom: 2px;
	}
	.grooming_menu .optionHead::after {
		content: "";
		display: block;
		width: 15px;
        height: 22px;
		-webkit-mask-image: url('images/icon_head2.svg');
		-webkit-mask-size: contain;
		-webkit-mask-repeat: no-repeat;
		-webkit-mask-position: center;
		background-color: #534f4f;
		margin-bottom: 2px;
	}
	.grooming_menu .optionItem{
		width: 100%;
		margin: 0 auto;
		border-radius: 20px;
		background: #fff;
		padding: 75px 20px 30px;
		display: flex;
		flex-flow: column;
		align-items: center;
		gap: 0 30px;
	}
	.grooming_menu .optionItem .itemImg{
		width: 100%;
		border-radius: 20px;
    	overflow: hidden;
	}
	.grooming_menu .optionItem .itemTxtBlk{
		flex: 1;
		margin-top: 20px;
	}
	.grooming_menu .optionItem .itemTtl{
		font-weight: 700;
		font-size: 20px;
		line-height: 30px;
		color: #e97b6a;
	}
	.grooming_menu .optionItem .itemTxt{
		font-weight: 600;
		font-size: 15px;
		line-height: 24px;
		color: #534f4f;
		margin-top: 15px;
	}
	.grooming_catch{
		width: 100%;
		position: relative;
	}
	.grooming_catch img{
		width: 100%;
	}
	.grooming_catch::before {
		content: "";
		display: block;
		width: 100%;
		height: 50%;
		background: url('images/cmn_wave02_top.webp') no-repeat top left;
		background-size: contain;
		position: absolute;
		top: 0;
		left: 0;
		z-index: 0;
		pointer-events: none;
	}
	.grooming_catch::after {
		content: "";
		display: block;
		width: 100%;
		height: 50%;
		background: url('images/cmn_wave01_bottom.webp') no-repeat bottom left;
		background-size: contain;
		position: absolute;
		bottom: 0;
		left: 0;
		z-index: 0;
		pointer-events: none;
	}
	.grooming_price{
		background: #f1e9e7;
		padding: 60px 0 70px;
	}
	.grooming_reserve{
		position: relative;
		padding: 60px 0 60px;
		border-bottom: 1px solid #c4c4c4;
	}
	.grooming_reserve::before {
		content: "";
		display: block;
		width: 100%;
		height: 50%;
		background: url('images/cmn_wave01_top.webp') no-repeat top left;
		background-size: contain;
		position: absolute;
		top: 0;
		left: 0;
		z-index: 0;
		pointer-events: none;
	}
	.grooming_reserve .reserveBlk{
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
		gap: 10px;
		margin-top: 50px;
	}
	.grooming_reserve .reserveItem{
		width: 100%;
		height: 110px;
		border-radius: 10px;
		background: #fbf9f6;
		padding: 20px;
	}
	.grooming_reserve .reserveItem .itemTtl{
		font-weight: 700;
		font-size: 18px;
		line-height: 26px;
		color: #534f4f;
		text-align: center;
	}	
	.grooming_reserve .reserveItem .itemTel{
		font-weight: 700;
		font-size: 28px;
		line-height: 40px;
		color: #534f4f;
		display: flex;
		justify-content: center;
		align-items: center;
		gap: 0 5px;
		margin-top: 5px;
	}
	.grooming_reserve .reserveItem .itemTel .icon{
		content: "";
		width: 25px;
		height: 25px;
		border-radius: 50%;
		background: #e97b6a;
		display: flex;
		justify-content: center;
		align-items: center;
		margin-top: 2px;
	}
	.grooming_reserve .reserveItem .itemTel .icon::before{
		content: "";
		display: block;
		-webkit-mask-image: url('images/icon_tel.svg');
		-webkit-mask-size: contain;
		-webkit-mask-repeat: no-repeat;
		-webkit-mask-position: center;
		background-color: #FFF;
		width: 15px;
		height: 18px;
	}
	.grooming_reserve .reserveLink {
		width: 100%;
		max-width: 300px;
		height: 60px;
		margin: 40px auto 0;
		background: #e97b6a;
		border-radius: 9999px;
		font-weight: 700;
		font-size: 16px;
		line-height: 24px;
		color: #fff;
		display: flex;
		justify-content: center;
		align-items: center;
		position: relative;
	}
	.grooming_reserve .reserveLink::after {
		content: "";
		display: block;
		background: url('images/icon_arrow.svg') no-repeat;
		background-size: contain;
		width: 24px;
		height: 24px;
		position: absolute;
		top: 50%;
		right: 16px;
		transform: translate(0%, -50%);
	}
}
@media screen and (max-width: 432px) {
	.grooming_catch .pc{
		display: none;
	}
	.grooming_catch .sp{
		display: block;
}
}

/*
Pet hotel
====================================*/
.pethotel_take{
	background: #fbf9f6;
	overflow: hidden;
}
.pethotel_take .takeTtl{
	font-weight: 700;
    font-size: 40px;
    line-height: 58px;
    color: #534f4f;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 0 24px;
}
.pethotel_take .takeTtl::before{
	content: "";
    display: block;
    width: 23px;
    height: 34px;
    -webkit-mask-image: url('images/icon_head1.svg');
	-webkit-mask-size: contain;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
	background-color: #534f4f;
    margin-bottom: 5px;
}
.pethotel_take .takeTtl::after{
	content: "";
    display: block;
    width: 23px;
    height: 34px;
    -webkit-mask-image: url('images/icon_head2.svg');
	-webkit-mask-size: contain;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
    background-color: #534f4f;
    margin-bottom: 5px;
}
.pethotel_take .takeBlk{
	display: flex;
	justify-content: center;
	gap: 0px 50px;
	margin-top: 60px;
	transform: translateX(-50px);
}
.pethotel_take .takeBlk:nth-of-type(2){
	margin-top: 10px;
	transform: translateX(50px);
}
.pethotel_take .takeItem{
	width: 230px;
}
.pethotel_take .takeItem .itemImg{
	width: 100%;
}
.pethotel_take .takeItem .itemImg img{
	width: 100%;
}
.pethotel_take .takeItem .itemTxt{
	font-weight: 700;
	font-size: 18px;
	line-height: 26px;
	text-align: center;
	color: #534f4f;
	margin-top: 10px;
}
.pethotel_take .takeNote{
	border-radius: 15px;
	background: #fff;
	padding: 40px 50px 50px;
	margin-top: 80px;
}
.pethotel_take .takeNote .noteTtl{
	font-weight: 700;
    font-size: 26px;
    line-height: 36px;
    padding-bottom: 10px;
    color: #534f4f;
    border-bottom: 2px dotted #534f4f;
}
.pethotel_take .takeNote .noteUl{
	display: flex;
	flex-flow: column;
	gap: 15px 0;
	margin-top: 25px;
	padding-bottom: 30px;
	border-bottom: 1px solid #c4c4c4;
}
.pethotel_take .takeNote .noteLi{
	font-weight: 600;
	font-size: 18px;
    line-height: 26px;
	color: #534f4f;
	position: relative;
	padding-left: 22px;
}
.pethotel_take .takeNote .noteLi:last-of-type{
	color: #e97b6a;
}
.pethotel_take .takeNote .noteLi::before{
	content: "";
    display: block;
    width: 12px;
    height: 12px;
    border-radius: 6px;
    background: #e97b6a;
    position: absolute;
    top: 7px;
    left: 0;
}
.pethotel_take .takeNote .noteHead{
	font-weight: 700;
	font-size: 22px;
	line-height: 30px;
	color: #534f4f;
	margin-top: 30px;
}
.pethotel_take .takeNote .noteBlk{
	display: flex;
	gap: 0 50px;
}
.pethotel_take .takeNote .noteItem{
	width: calc((100% - 50px) / 2);
}

.pethotel_take .takeNote .noteItem .itemUl{
	display: flex;
	flex-flow: column;
	gap: 15px 0;
	margin-top: 25px;
	padding-bottom: 12px;
}
.pethotel_take .takeNote .noteItem .itemLi{
	font-weight: 700;
	font-size: 20px;
    line-height: 26px;
	color: #e97b6a;
	position: relative;
}
.pethotel_take .takeNote .noteItem .itemTxt{
	font-weight: 600;
	font-size: 17px;
	line-height: 32px;
	text-align: left;
	color: #534f4f;
}
.pethotel_catch{
	width: 100%;
    position: relative;
}
.pethotel_catch img {
    width: 100%;
}
.pethotel_catch .pc{
}
.pethotel_catch .sp{
	display: none;
}
.pethotel_catch::before{
	content: "";
    display: block;
    width: 100%;
    height: 50%;
    background: url(images/cmn_wave02_top.webp) no-repeat top left;
    background-size: contain;
    position: absolute;
    top: 0;
    left: 0;
	z-index: 0;
	pointer-events: none;
}
.pethotel_catch::after {
    content: "";
    display: block;
    width: 100%;
    height: 50%;
    background: url(images/cmn_wave01_bottom.webp) no-repeat bottom left;
    background-size: contain;
    position: absolute;
    bottom: 0;
    left: 0;
	z-index: 0;
	pointer-events: none;
}
.pethotel_price{
	background: #f1e9e7;
}
.pethotel_reserve{
	position: relative;
	padding: 130px 0 90px;
	border-bottom: 1px solid #c4c4c4;
}
.pethotel_reserve::before {
    content: "";
    display: block;
    width: 100%;
    height: 50%;
    background: url('images/cmn_wave01_top.webp') no-repeat top left;
    background-size: contain;
    position: absolute;
    top: 0;
    left: 0;
	z-index: 0;
	pointer-events: none;
}
.pethotel_reserve .reserveBlk{
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 20px;
	margin-top: 50px;
}
.pethotel_reserve .reserveItem{
	width: 31%;
	height: 110px;
	border-radius: 10px;
	background: #fbf9f6;
	padding: 20px;
}
.pethotel_reserve .reserveItem .itemTtl{
	font-weight: 700;
	font-size: 18px;
	line-height: 26px;
	color: #534f4f;
	text-align: center;
}	
.pethotel_reserve .reserveItem .itemTel{
	font-weight: 700;
	font-size: 28px;
	line-height: 40px;
	color: #534f4f;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 0 5px;
	margin-top: 5px;
}
.pethotel_reserve .reserveItem .itemTel .icon{
	content: "";
	width: 25px;
	height: 25px;
	border-radius: 50%;
	background: #e97b6a;
	display: flex;
    justify-content: center;
    align-items: center;
	margin-top: 2px;
}
.pethotel_reserve .reserveItem .itemTel .icon::before{
    content: "";
    display: block;
    -webkit-mask-image: url('images/icon_tel.svg');
    -webkit-mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
	background-color: #FFF;
    width: 15px;
    height: 18px;
}
.pethotel_reserve .reserveLink {
    width: 300px;
    height: 60px;
    margin: 50px auto 0;
    background: #e97b6a;
    border-radius: 9999px;
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}
.pethotel_reserve .reserveLink::after {
    content: "";
    display: block;
    background: url('images/icon_arrow.svg') no-repeat;
    background-size: contain;
    width: 24px;
    height: 24px;
    position: absolute;
    top: 50%;
    right: 16px;
    transform: translate(0%, -50%);
}
@media screen and (max-width: 1024px) {
	.pethotel_take{
		background: #fbf9f6;
		padding: 60px 0 70px;
	}
	.pethotel_take .takeTtl{
		font-weight: 700;
		font-size: 20px;
		line-height: 29px;
		color: #534f4f;
		display: flex;
		justify-content: center;
		align-items: flex-end;
		gap: 0 15px;
	}
	.pethotel_take .takeTtl::before{
		content: "";
		display: block;
		width: 15px;
        height: 22px;
		-webkit-mask-image: url('images/icon_head1.svg');
        -webkit-mask-size: contain;
        -webkit-mask-repeat: no-repeat;
        -webkit-mask-position: center;
        background-color: #534f4f;
		margin-bottom: 2px;
	}
	.pethotel_take .takeTtl::after{
		content: "";
		display: block;
		width: 15px;
        height: 22px;
		-webkit-mask-image: url('images/icon_head2.svg');
        -webkit-mask-size: contain;
        -webkit-mask-repeat: no-repeat;
        -webkit-mask-position: center;
        background-color: #534f4f;
		margin-bottom: 2px;
	}
	.pethotel_take .takeBlk{
		display: flex;
		justify-content: center;
		gap: 0px 11px;
		margin-top: 30px;
		transform: translateX(0px);
	}
	.pethotel_take .takeBlk:nth-of-type(2){
		margin-top: 20px;
		transform: translateX(0px);
	}
	.pethotel_take .takeItem{
		width: 230px;
	}
	.pethotel_take .takeItem .itemImg{
		width: 100%;
	}
	.pethotel_take .takeItem .itemImg img{
		width: 100%;
	}
	.pethotel_take .takeItem .itemTxt{
		font-weight: 700;
		font-size: 16px;
		line-height: 24px;
		text-align: center;
		color: #534f4f;
		margin-top: 10px;
	}
	.pethotel_take .takeNote{
		border-radius: 15px;
		background: #fff;
		padding: 25px 20px 30px;
		margin-top: 60px;
	}
	.pethotel_take .takeNote .noteTtl{
		font-weight: 700;
		font-size: 20px;
		line-height: 30px;
		padding-bottom: 15px;
		color: #534f4f;
		border-bottom: 2px dotted #534f4f;
	}
	.pethotel_take .takeNote .noteUl{
		display: flex;
		flex-flow: column;
		gap: 15px 0;
		margin-top: 20px;
		padding-bottom: 25px;
		border-bottom: 1px solid #c4c4c4;
	}
	.pethotel_take .takeNote .noteLi{
		font-weight: 600;
		font-size: 15px;
		line-height: 24px;
		color: #534f4f;
		position: relative;
		padding-left: 12px;
	}
	.pethotel_take .takeNote .noteLi::before{
		content: "";
		display: block;
		width: 6px;
		height: 6px;
		border-radius: 6px;
		background: #e97b6a;
		position: absolute;
		top: 10px;
		left: 0;
	}
	.pethotel_take .takeNote .noteHead{
		font-weight: 700;
		font-size: 18px;
		line-height: 26px;
		color: #534f4f;
		margin-top: 25px;
	}
	.pethotel_take .takeNote .noteBlk{
		display: flex;
		flex-flow: column;
		gap: 0 50px;
	}
	.pethotel_take .takeNote .noteItem{
		width: 100%;
	}
	.pethotel_take .takeNote .noteItem .itemUl{
		display: flex;
		flex-flow: column;
		gap: 15px 0;
		margin-top: 20px;
		padding-bottom: 10px;
	}
	.pethotel_take .takeNote .noteItem .itemLi{
		font-weight: 700;
		font-size: 16px;
		line-height: 24px;
		color: #e97b6a;
		position: relative;
	}
	.pethotel_take .takeNote .noteItem .itemTxt{
		font-weight: 600;
		font-size: 15px;
		line-height: 26px;
		text-align: left;
		color: #534f4f;
	}
	.pethotel_catch{
		width: 100%;
		position: relative;
	}
	.pethotel_catch img {
		width: 100%;
	}
	.pethotel_catch::before{
		content: "";
		display: block;
		width: 100%;
		height: 50%;
		background: url(images/cmn_wave02_top.webp) no-repeat top left;
		background-size: contain;
		position: absolute;
		top: 0;
		left: 0;
		z-index: 0;
		pointer-events: none;
	}
	.pethotel_catch::after {
		content: "";
		display: block;
		width: 100%;
		height: 50%;
		background: url(images/cmn_wave01_bottom.webp) no-repeat bottom left;
		background-size: contain;
		position: absolute;
		bottom: 0;
		left: 0;
		z-index: 0;
		pointer-events: none;
	}
	.pethotel_price{
		background: #f1e9e7;
	}
	.pethotel_reserve{
		position: relative;
		padding: 60px 0 70px;
		border-bottom: 1px solid #c4c4c4;
	}
	.pethotel_reserve::before {
		content: "";
		display: block;
		width: 100%;
		height: 50%;
		background: url('images/cmn_wave01_top.webp') no-repeat top left;
		background-size: contain;
		position: absolute;
		top: 0;
		left: 0;
		z-index: 0;
		pointer-events: none;
	}
	.pethotel_reserve .reserveBlk{
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
		gap: 10px;
		margin-top: 50px;
	}
	.pethotel_reserve .reserveItem{
		width: 100%;
		height: 110px;
		border-radius: 10px;
		background: #fbf9f6;
		padding: 20px;
	}
	.pethotel_reserve .reserveItem .itemTtl{
		font-weight: 700;
		font-size: 18px;
		line-height: 26px;
		color: #534f4f;
		text-align: center;
	}	
	.pethotel_reserve .reserveItem .itemTel{
		font-weight: 700;
		font-size: 28px;
		line-height: 40px;
		color: #534f4f;
		display: flex;
		justify-content: center;
		align-items: center;
		gap: 0 5px;
		margin-top: 5px;
	}
	.pethotel_reserve .reserveItem .itemTel .icon{
		content: "";
		width: 25px;
		height: 25px;
		border-radius: 50%;
		background: #e97b6a;
		display: flex;
		justify-content: center;
		align-items: center;
		margin-top: 2px;
	}
	.pethotel_reserve .reserveItem .itemTel .icon::before{
		content: "";
		display: block;
		-webkit-mask-image: url('images/icon_tel.svg');
		-webkit-mask-size: contain;
		-webkit-mask-repeat: no-repeat;
		-webkit-mask-position: center;
		background-color: #FFF;
		width: 15px;
		height: 18px;
	}
	.pethotel_reserve .reserveLink {
		width: 100%;
        max-width: 300px;
        height: 60px;
        margin: 40px auto 0;
		background: #e97b6a;
		border-radius: 9999px;
		font-weight: 700;
		font-size: 16px;
		line-height: 24px;
		color: #fff;
		display: flex;
		justify-content: center;
		align-items: center;
		position: relative;
	}
	.pethotel_reserve .reserveLink::after {
		content: "";
		display: block;
		background: url('images/icon_arrow.svg') no-repeat;
		background-size: contain;
		width: 24px;
		height: 24px;
		position: absolute;
		top: 50%;
		right: 16px;
		transform: translate(0%, -50%);
	}
}
@media screen and (max-width: 432px) {
	.pethotel_catch .pc{
		display: none;
	}
	.pethotel_catch .sp{
		display: block;
	}
}

