@charset "UTF-8";
/* CSS Document */

@import url('https://fonts.googleapis.com/css2?family=Zen+Maru+Gothic:wght@400;500;700&display=swap&family=Noto+Sans+JP:wght@100..900&display=swap');

:root {
	/* 基本色 */
	--primary-color: #E27E5A;
	/* メインカラー */
	--secondary-color: #DBB055;
	/* サブカラー */
	--accent-color: #869A53;
	/* アクセントカラー */
}

/* PC
---------------------------------------------------------------------- */

@media (min-width: 1001px) {

	.pet main.main {
		font-family: 'Noto Sans JP', sans-serif;
		font-feature-settings: "palt";
	}

	/* visual
---------------------------------------------------------------------- */
	#pageTitleVox {
		height: 95vh;
		min-height: 900px;
		position: relative;
		background: url(../images/pageTitleBg.jpg) no-repeat bottom center;
		background-size: cover;
		z-index: 1;
	}

	#pageTitleVox::before {
		content: "";
		z-index: 0;
		display: block;
		position: absolute;
		left: 0;
		z-index: 0;
		bottom: -1px;
		width: 100%;
		height: 200px;
		background: url(../images/bg_section.png) no-repeat center bottom;
		background-size: 100% auto;
	}

	#pageTitleVox #pageTitle {
		top: 55%;
		opacity: 0;
	}

	#pageTitleVox.is-on #pageTitle {
		animation: mv_ttl 0.7s ease-in-out 0s forwards;
	}

	@keyframes mv_ttl {
		0% {
			opacity: 0;
		}

		100% {
			opacity: 1
		}
	}

	.mv_paws li {
		position: absolute;
		bottom: 93px;
		left: 292px;
		transform: rotate(-109deg);
		opacity: 0;
		z-index: 0;
	}

	.is-on .mv_paws li:first-of-type {
		bottom: 93px;
		left: 292px;
		animation: walk 0.3s ease-out 0.7s forwards;
	}

	.is-on .mv_paws li:nth-of-type(2) {
		bottom: 56px;
		left: 278px;
		animation: walk 0.3s ease-out 0.9s forwards;
		transform: rotate(-125deg);
	}

	.is-on .mv_paws li:nth-of-type(3) {
		bottom: 72px;
		left: 239px;
		animation: walk 0.3s ease-out 1.1s forwards;
		transform: rotate(-94deg);
	}

	.is-on .mv_paws li:nth-of-type(4) {
		bottom: 39px;
		left: 218px;
		animation: walk 0.3s ease-out 1.3s forwards;
		transform: rotate(-120deg);
	}

	.is-on .mv_paws li:nth-of-type(5) {
		bottom: 57px;
		left: 180px;
		animation: walk 0.3s ease-out 1.4s forwards;
		transform: rotate(-101deg);
	}

	.is-on .mv_paws li:nth-of-type(6) {
		bottom: 20px;
		left: 163px;
		animation: walk 0.3s ease-out 1.6s forwards;
		transform: rotate(-126deg);
	}

	.is-on .mv_paws li:nth-of-type(7) {
		bottom: 32px;
		left: 122px;
		animation: walk 0.3s ease-out 1.8s forwards;
		transform: rotate(-107deg);
	}

	.is-on .mv_paws li:nth-of-type(8) {
		bottom: -7px;
		left: 112px;
		animation: walk 0.3s ease-out 2s forwards;
		transform: rotate(-139deg);
	}

	.is-on .mv_paws li:nth-of-type(9) {
		bottom: -4px;
		left: 70px;
		animation: walk 0.3s ease-out 2.2s forwards;
		transform: rotate(-120deg);
	}

	.is-on .mv_paws li:nth-of-type(10) {
		bottom: -42px;
		left: 67px;
		animation: walk 0.3s ease-out 2.4s forwards;
		transform: rotate(-146deg);
	}

	.is-on .mv_paws li:nth-of-type(11) {
		bottom: -45px;
		left: 25px;
		animation: walk 0.3s ease-out 2.6s forwards;
		transform: rotate(-125deg);
	}

	.is-on .mv_paws li:nth-of-type(12) {
		bottom: -84px;
		left: 25px;
		animation: walk 0.3s ease-out 2.8s forwards;
		transform: rotate(-149deg);
	}

	@keyframes walk {
		0% {
			opacity: 0;
			filter: blur(10px);
		}

		100% {
			opacity: 1;
			filter: blur(0);
		}
	}


	#pageTitleVox .scroll {
		position: absolute;
		bottom: 84px;
		z-index: 10;
		left: 50%;
		text-align: center;
		transform: translateX(-50%);
		display: flex;
		align-items: center;
		justify-content: center;
	}

	#pageTitleVox .scroll a {
		margin-bottom: 31px;
		margin-right: 5px;
	}

	/* 丸の描写 */
	#pageTitleVox .scroll::before {
		content: "";
		position: absolute;
		bottom: 0;
		width: 6px;
		height: 6px;
		border-radius: 50%;
		background: #fff;
		animation:
			circlemove 1.6s ease-in-out infinite,
			cirlemovehide 1.6s ease-out infinite;
		left: 50%;
		transform: translateX(-50%);
	}

	@keyframes circlemove {
		0% {
			bottom: 23px;
		}

		100% {
			bottom: -50px;
		}
	}

	@keyframes cirlemovehide {
		0% {
			opacity: 0
		}

		50% {
			opacity: 1;
		}

		80% {
			opacity: 0.9;
		}

		100% {
			opacity: 0;
		}
	}

	/* 線の描写 */
	#pageTitleVox .scroll:after {
		content: "";
		position: absolute;
		bottom: -45px;
		width: 1px;
		height: 70px;
		background: #fff;
		left: 50%;
		transform: translateX(-50%);
	}

	/* ininne
---------------------------------------------------------------------- */
	.pet p {
		line-height: 2;
		font-size: 1.125rem;
		letter-spacing: 0.05em;
		font-weight: 500;
	}

	.pet main.main .inner {
		padding: 0 20px;
		box-sizing: content-box;
	}

	.pet_ttl {
		color: #4E3F0B;
		font-family: "Zen Maru Gothic", sans-serif;
		font-size: 3.125rem;
		font-weight: 500;
		line-height: 1.6;
		letter-spacing: 0.03em;
		text-align: center;

	}

	.pet_ttl>span {
		display: block;
		color: var(--primary-color);
		font-size: 1.625rem;
		letter-spacing: 0.12em;
	}

	.pet_ttl_border {
		color: #4E3F0B;
		font-size: 2.6875rem;
		font-weight: 500;
		letter-spacing: 0.04em;
		padding-bottom: 23px;
		line-height: 1.39;
		font-family: "Zen Maru Gothic", sans-serif;
		text-align: center;
		border-bottom: 4px solid #4E3F0B;
		background: url(../images/icon_bone.svg) no-repeat top 46% left 1.5625rem, url(../images/icon_paws02.svg) no-repeat top 39% right 0.75rem;
		background-size: 3.4375rem 3.75rem, 4rem 5.125rem;
	}

	p.chatch_ttl {
		font-size: 1.375rem;
		line-height: 1.3;
		font-weight: bold;
		margin-bottom: 20px;
		letter-spacing: 0.05em;
		text-align: center;
		display: flex;
		gap: 15px;
		justify-content: center;
	}

	.chatch_ttl::before,
	.chatch_ttl::after {
		content: "";
		display: block;
		width: 2px;
		background-color: #0F3759;
	}

	.chatch_ttl::before {
		transform: rotate(-28deg);
	}

	.chatch_ttl::after {
		transform: rotate(20deg);
	}

	.banner_btn {
		position: relative;
	}

	.banner_btn a {
		width: 100%;
		min-height: 180px;
		border-radius: 1.25rem;
		overflow: hidden;
		display: flex;
	}

	.banner_btn .img {
		width: 240px;
	}

	.banner_btn .img img {
		width: 100%;
		height: 100%;
		object-fit: cover;
	}

	.banner_btn .txt {
		display: flex;
		align-items: flex-start;
		justify-content: center;
		flex-direction: column;
		color: #fff;
		flex: 1;
		background: url(../images/bg_btn.png) no-repeat bottom right 10px;
		background-size: auto 95%;
		background-color: var(--accent-color);
		font-size: 2.375rem;
		letter-spacing: 0.1em;
		line-height: 1.22;
		padding: .8em .8em .4em;
		font-weight: bold;
		position: relative;
		font-feature-settings: "palt";
		font-family: '游明朝', 'Yu Mincho', YuMincho, 'Hiragino Mincho Pro', serif;
	}

	.banner_btn .txt::after {
		content: '';
		width: 1rem;
		height: 1rem;
		border-top: solid 2px #fff;
		border-right: solid 2px #fff;
		position: absolute;
		right: 4%;
		top: 50%;
		transform: rotate(45deg) translateY(-50%);
	}

	.banner_btn .txt span:not(.num) {
		display: block;
		font-size: 1.375rem;
		margin-bottom: 13px;
	}

	.banner_btn .txt span.num {
		font-size: 2.5rem;
	}

	.banner_btn::after {
		content: "";
		position: absolute;
		right: 31px;
		bottom: 100%;
		display: block;
		width: 76px;
		height: 46px;
		background: url(../images/icon_dog03.svg) no-repeat;
		background-size: contain;
	}


	/* intro
---------------------------------------------------------------------- */
	.intro {
		padding: 85px 0;
	}

	.intro .pet_ttl span::before {
		content: "";
		display: inline-block;
		width: 50px;
		height: 45px;
		background: url(../images/icon_dog01.svg) no-repeat;
		background-size: contain;
		margin-right: 13px;
		vertical-align: text-bottom;
	}

	.intro .container {
		display: flex;
	}

	.intro .img {
		width: 41%;
		margin-right: 4%;
		padding-top: 10px;
	}

	.intro .img figure {
		margin-left: calc(122% - 50vw);
		height: 100%;
		border-radius: 0 1.25em 1.25em 0;
		overflow: hidden;
		max-height: 433px;
	}

	.intro .img img {
		width: 100%;
		height: 100%;
		object-fit: cover;
	}

	.intro .content {
		flex: 1;
	}

	.intro .content p {
		letter-spacing: 0.1em;
	}

	.intro .content h3 {
		font-size: 1.375em;
		font-weight: 500;
		letter-spacing: 0.1em;
		border-top: 2px solid #D97B58;
		border-bottom: 2px solid #D97B58;
		text-align: center;
		padding: 1.3em;
		display: flex;
		align-items: center;
		justify-content: center;
		font-family: "Zen Maru Gothic", sans-serif;
		position: relative;

	}

	.intro .content h3::after {
		content: "";
		width: 32px;
		height: 32px;
		border-top: solid 2px #D97B58;
		border-right: solid 2px #D97B58;
		transform: rotate(135deg) translate(-50%, 2px);
		background: #fff;
		position: absolute;
		left: 48%;
		top: calc(100% - 2px);
	}

	.intro .content h3::before {
		content: "";
		display: inline-block;
		width: 20px;
		height: 19px;
		background: url(../images/icon_paws03.svg) no-repeat;
		background-size: contain;
		margin-right: 13px;
		vertical-align: text-bottom;
	}

	.intro .content .deco {
		margin: 27px 10px 0 0;
	}

	/* room
---------------------------------------------------------------------- */
	.room {
		padding: 109px 0 0;
		position: relative;
	}

	.room::before {
		content: "";
		display: block;
		width: 100%;
		position: absolute;
		top: 415px;
		bottom: 0;
		background-color: #FCFAF4;
	}

	.room .pet_ttl {
		line-height: 1;
	}

	.room .pet_ttl span {
		color: var(--secondary-color);
		margin-bottom: -3px;
	}

	.room .pet_ttl span::before {
		content: "";
		display: inline-block;
		width: 45px;
		height: 68px;
		background: url(../images/icon_dog02.svg) no-repeat;
		background-size: contain;
		margin-right: 13px;
		vertical-align: middle;
	}

	.room main.main {
		border-radius: 1.25em;
		overflow: hidden;
	}

	.room h3 {
		color: #4E3F0B;
		font-size: 1.875rem;
		font-weight: 500;
		line-height: 1.4;
		font-family: "Zen Maru Gothic", sans-serif;
	}

	.room .info {
		display: flex;
	}

	.room .info .img {
		width: 46.5%;
		margin-right: 3.5%;
	}

	.room .info .img figcaption {
		font-size: 1.125rem;
		letter-spacing: 0.1em;
		line-height: 1.3;
		font-weight: 500;
	}

	.room .info .list {
		font-size: 1.125rem;
		letter-spacing: 0.05em;
		font-weight: 500;
		line-height: 1.44;
	}

	.room .info .list li {
		padding-left: .8em;
		position: relative;
		margin-bottom: 0.55em;
	}

	.room .info .list li span {
		display: block;
		font-size: .9375rem;
		margin-top: 0.65em;
	}

	.room .info .list li::before {
		content: "●";
		font-size: 10px;
		font-weight: 500;
		color: var(--secondary-color);
		position: absolute;
		left: 0;
		top: .6em;
	}

	/* equipment
---------------------------------------------------------------------- */
	.equipment {
		padding: 70px 0 125px;
		position: relative;
	}

	.room .equipment h3 {
		font-size: 1.75em;
		letter-spacing: 0;
	}

	.equipment_list {
		display: flex;
		justify-content: space-between;
	}

	.equipment_list li {
		width: 47%;
	}

	.equipment_list .pet_slider li {
		border-radius: 1.25rem;
		overflow: hidden;
	}

	.equipment_list li p {
		letter-spacing: 0.1em;
		line-height: 1.38;
	}


	.pet_slider .slick-dots {
		position: relative;
		z-index: 3;
		margin: 0 auto;
		bottom: 27px;
		text-align: center;
	}

	.pet_slider.slick-dotted.slick-slider {
		margin-bottom: 0;
		font-size: 0;
	}

	.pet_slider .slick-dots li {
		display: inline-block;
		margin: 0 5px;
		width: 13px;
		height: 13px;
	}

	.pet_slider .slick-dots li button {
		padding: 0;
		color: transparent;
		outline: none;
		width: 13px;
		height: 13px;
		border: unset;
		display: block;
		background: rgba(255, 255, 255, 0.6);
		cursor: pointer;
		border-radius: 50%;
	}

	.pet_slider .slick-dots li button:before {
		width: 13px;
		height: 13px;
		color: transparent;
	}

	.pet_slider .slick-dots li.slick-active button {

		background: var(--secondary-color);
	}

	.pet_slider .slick-dots li.slick-active button::before {
		color: transparent;
	}

	/* amenities
---------------------------------------------------------------------- */
	.amenities {
		padding: 58px 0 60px;
		background-color: #F6EBD4;
		position: relative;
	}

	.amenities .container {
		display: flex;
	}

	.amenities .img {
		width: 41%;
		margin-right: 3.5%;
		margin-top: -114px;

	}

	.amenities .img .pet_slider {
		margin-left: calc(122% - 50vw);
		height: 100%;
		border-radius: 0 1.25rem 1.25rem 0;
		overflow: hidden;
		max-height: 433px;
	}

	.amenities .slick-list,
	.amenities .slick-track,
	.amenities .slick-slide>div,
	.amenities .slick-slide>div li {
		height: 100%;
	}

	.amenities .img img {
		width: 100%;
		height: 100%;
		object-fit: cover;
	}

	.amenities .content {
		flex: 1;
	}

	.amenities h3 {
		font-size: 23px;
	}

	.amenities h3::before {
		content: "";
		width: 25px;
		height: 24px;
		background: url(../images/icon_paws.svg) no-repeat;
		background-size: contain;
		margin-right: 10px;
		display: inline-block;
		vertical-align: bottom;
	}

	.amenities dl {
		font-size: 1.125rem;
		line-height: 2;
		letter-spacing: 0.1em;
		font-weight: 500;
		font-feature-settings: "palt";
	}

	.amenities dl:not(:last-of-type) {
		margin-bottom: 35px;
	}

	/* stay_plan
---------------------------------------------------------------------- */
	.stay_plan {
		padding: 200px 0 160px;
	}

	.stay_plan .pet_ttl span {
		color: var(--accent-color);
		position: relative;
	}

	.stay_plan .pet_ttl strong {
		color: var(--accent-color);
		font-weight: 500;
		position: relative;
	}

	.stay_plan .pet_ttl strong span::before {
		content: "";
		display: block;
		width: 8px;
		height: 8px;
		position: absolute;
		left: 50%;
		background-color: #4E3F0B;
		border-radius: 50%;
		transform: translateX(-50%);
		top: .08em;
	}

	.stay_plan .pet_ttl>span::before {
		content: "";
		display: inline-block;
		width: 71px;
		height: 54px;
		background: url(../images/icon_dog04.svg) no-repeat;
		background-size: contain;
		margin-right: 13px;
		vertical-align: text-bottom;
	}

	.stay_plan .banner_btn .txt {
		font-size: 2.1875rem;
		padding: .6em .8em .6em;
	}

	.stay_plan .banner_btn::after {
		width: 74px;
		height: 54px;
		right: 42px;
		bottom: 99.5%;
		background-image: url(../images/icon_dog06.svg);
	}

	.stay_plan .list {
		display: flex;
		justify-content: space-between;
		flex-wrap: wrap;
		row-gap: 75px;
	}

	.stay_plan .list .img {
		border-radius: 1.25rem;
		overflow: hidden;
		position: relative;
	}

	.stay_plan .list .img figcaption {
		position: absolute;
		left: 20px;
		bottom: 8px;
		color: #fff;
		font-size: 1rem;
		letter-spacing: 0.05em;
		font-weight: 500;
	}

	.stay_plan .list li {
		width: 46.5%;
	}

	.stay_plan .list li:last-of-type {
		width: 50%;
		margin-top: -.5em;
	}

	.stay_plan .list li:last-of-type p {
		letter-spacing: 0.07em;
	}

	.stay_plan .list li:last-of-type p.note {
		font-size: .9375em;
		letter-spacing: 0.03em;
	}


	/* opening
---------------------------------------------------------------------- */
	.opening {
		padding-bottom: 160px;
	}

	.opening .banner_btn::after {
		left: 47px;
		bottom: 99%;
		width: 73px;
		height: 38px;
		background-image: url(../images/icon_dog05.svg);
	}

	/* premium_twin
---------------------------------------------------------------------- */
	.premium_twin {
		padding-bottom: 100px;
	}

	.premium_twin .list {
		display: flex;
		justify-content: space-between;
	}

	.premium_twin .list li {
		width: 32.5%;
	}

	.premium_twin .list .img {
		border-radius: 1.25rem;
		overflow: hidden;
	}

	.premium_twin h3 {
		color: #4E3F0B;
		font-size: 1.125rem;
		line-height: 1.5;
		font-weight: 600;
		display: flex;
		align-items: center;
		padding: 0 0.625rem;
		font-family: "Zen Maru Gothic", sans-serif;
	}

	.premium_twin h3::before {
		content: "";
		display: block;
		width: 10px;
		height: 2px;
		background-color: #0F3759;
		flex-shrink: 0;
		margin-right: 8px;
	}

	.premium_twin .list li p {
		letter-spacing: 0.1em;
		line-height: 1.38;
		padding: 0 0.625rem;
	}

	/* notice
---------------------------------------------------------------------- */
	.notice {
		padding: 45px 0 55px;
		background-color: #F4F4F4;
		text-align: center;
	}

	.notice h2 {
		display: flex;
		align-items: center;
		justify-content: center;
		color: #4E3F0B;
		font-size: 1.75rem;
		font-weight: 500;
		letter-spacing: 0.04em;
		font-family: "Zen Maru Gothic", sans-serif;
	}

	.notice h2::before {
		content: "";
		display: block;
		width: 25px;
		height: 24px;
		background: url(../images/icon_paws.svg) no-repeat;
		background-size: contain;
		margin-right: 10px;
	}

	.notice p {
		text-align: center;
	}

	.notice .txt:first-of-type {
		margin-bottom: 2em;
	}

	.notice .note {
		font-size: 0.9375rem;
		letter-spacing: 0.05em;
		font-weight: 500;
	}

	.notice .btn {
		display: flex;
		justify-content: center;
		gap: 40px;
	}

	.notice .btn a {
		margin: 0;
		height: 60px;
		font-size: 1.125rem;
		letter-spacing: 0.2em;
		font-weight: 500;
		background-color: #4E3F0B;
		padding: .5em;
		display: flex;
		align-items: center;
		justify-content: center
	}

}

/* SP
---------------------------------------------------------------------- */
@media screen and (max-width:1000px) {

	.pet main.main {
		font-family: 'Noto Sans JP', sans-serif;
		font-feature-settings: "palt";
	}

	/* visual
---------------------------------------------------------------------- */
	#pageTitleVox {
		height: calc(100vh - 60px - 10vw);
		min-height: 500px;
		position: relative;
		background: url(../images/pageTitleBg.jpg) no-repeat bottom center;
		background-size: cover;
		z-index: 1;
	}

	#pageTitleVox::before {
		content: "";
		z-index: 0;
		display: block;
		position: absolute;
		left: 0;
		bottom: -1px;
		width: 100%;
		height: 200px;
		background: url(../images/bg_section.png) no-repeat center bottom;
		background-size: 100% auto;
	}

	#pageTitleVox #pageTitle {
		top: 55%;
	}

	#pageTitleVox #pageTitle {
		width: 80%;
		max-width: 500px;
		opacity: 0;
	}

	#pageTitleVox.is-on #pageTitle {
		animation: mv_ttl 0.7s ease-in-out 0s forwards;
	}

	@keyframes mv_ttl {
		0% {
			opacity: 0;
		}

		100% {
			opacity: 1
		}
	}

	.mv_paws li {
		position: absolute;
		bottom: 93px;
		left: 292px;
		transform: rotate(-109deg);
		opacity: 0;
		z-index: 0;
	}

	.is-on .mv_paws li:first-of-type {
		bottom: 93px;
		left: min(87vw, 292px);
		animation: walk 0.3s ease-out 0.7s forwards;
	}

	.is-on .mv_paws li:nth-of-type(2) {
		bottom: 56px;
		left: 278px;
		animation: walk 0.3s ease-out 0.9s forwards;
		transform: rotate(-125deg);
	}

	.is-on .mv_paws li:nth-of-type(3) {
		bottom: 72px;
		left: 239px;
		animation: walk 0.3s ease-out 1.1s forwards;
		transform: rotate(-94deg);
	}

	.is-on .mv_paws li:nth-of-type(4) {
		bottom: 39px;
		left: 218px;
		animation: walk 0.3s ease-out 1.3s forwards;
		transform: rotate(-120deg);
	}

	.is-on .mv_paws li:nth-of-type(5) {
		bottom: 57px;
		left: 180px;
		animation: walk 0.3s ease-out 1.4s forwards;
		transform: rotate(-101deg);
	}

	.is-on .mv_paws li:nth-of-type(6) {
		bottom: 20px;
		left: 163px;
		animation: walk 0.3s ease-out 1.6s forwards;
		transform: rotate(-126deg);
	}

	.is-on .mv_paws li:nth-of-type(7) {
		bottom: 32px;
		left: 122px;
		animation: walk 0.3s ease-out 1.8s forwards;
		transform: rotate(-107deg);
	}

	.is-on .mv_paws li:nth-of-type(8) {
		bottom: -7px;
		left: 112px;
		animation: walk 0.3s ease-out 2s forwards;
		transform: rotate(-139deg);
	}

	.is-on .mv_paws li:nth-of-type(9) {
		bottom: -4px;
		left: 70px;
		animation: walk 0.3s ease-out 2.2s forwards;
		transform: rotate(-120deg);
	}

	.is-on .mv_paws li:nth-of-type(10) {
		bottom: -42px;
		left: 67px;
		animation: walk 0.3s ease-out 2.4s forwards;
		transform: rotate(-146deg);
	}

	.is-on .mv_paws li:nth-of-type(11) {
		bottom: -45px;
		left: 25px;
		animation: walk 0.3s ease-out 2.6s forwards;
		transform: rotate(-125deg);
	}

	.is-on .mv_paws li:nth-of-type(12) {
		bottom: -84px;
		left: 25px;
		animation: walk 0.3s ease-out 2.8s forwards;
		transform: rotate(-149deg);
	}

	@keyframes walk {
		0% {
			opacity: 0;
			filter: blur(10px);
		}

		100% {
			opacity: 1;
			filter: blur(0);
		}
	}



	/* ininne
---------------------------------------------------------------------- */
	.pet p {
		line-height: 2;
		letter-spacing: 0.05em;
		font-weight: 500;
	}

	.pet main.main .inner {
		padding: 0 6vw;
		box-sizing: content-box;
	}

	.pet_ttl {
		color: #4E3F0B;
		font-family: "Zen Maru Gothic", sans-serif;
		font-size: 1.625rem;
		font-size: calc(45 / 750 *100vw);
		font-weight: 500;
		line-height: 1.6;
		letter-spacing: 0.03em;
		text-align: center;

	}

	.pet_ttl>span {
		display: block;
		color: var(--primary-color);
		font-size: 1.25rem;
		font-size: calc(35 / 750 *100vw);
		letter-spacing: 0.12em;
	}

	.pet_ttl_border {
		color: #4E3F0B;
		font-size: calc(22 / 375 *100vw);
		font-weight: 500;
		letter-spacing: 0.04em;
		padding-bottom: 3vw;
		line-height: 1.39;
		font-family: "Zen Maru Gothic", sans-serif;
		text-align: center;
		border-bottom: 4px solid #4E3F0B;
		background: url(../images/icon_bone.svg) no-repeat top 46% left 0, url(../images/icon_paws02.svg) no-repeat top 39% right 0;
		background-size: calc(55 / 750 *100vw) calc(61 / 750 *100vw), calc(64 / 750 *100vw) calc(82 / 750 *100vw);
	}

	p.chatch_ttl {
		font-size: calc(17 / 375 *100vw);
		line-height: 1.3;
		font-weight: bold;
		margin-bottom: 15vw;
		letter-spacing: 0.05em;
		text-align: center;
		display: flex;
		gap: 4%;
		justify-content: center;
	}

	.chatch_ttl::before,
	.chatch_ttl::after {
		content: "";
		display: block;
		width: 2px;
		background-color: #0F3759;
	}

	.chatch_ttl::before {
		transform: rotate(-28deg);
	}

	.chatch_ttl::after {
		transform: rotate(20deg);
	}

	.banner_btn {
		position: relative;
	}

	.banner_btn a {
		width: 100%;
		border-radius: 1.25rem;
		overflow: hidden;
	}

	.banner_btn .img img {
		width: 100%;
	}

	.banner_btn .txt {
		display: flex;
		align-items: flex-start;
		justify-content: center;
		flex-direction: column;
		color: #fff;
		flex: 1;
		background: url(../images/bg_btn.png) no-repeat bottom right 10px;
		background-size: auto 95%;
		background-color: var(--accent-color);
		font-size: calc(24 / 375 *100vw);
		letter-spacing: 0.1em;
		line-height: 1.22;
		padding: 1em .5em .6em;
		font-weight: bold;
		position: relative;
		font-feature-settings: "palt";
		font-family: '游明朝', 'Yu Mincho', YuMincho, 'Hiragino Mincho Pro', serif;
	}

	.banner_btn .txt::after {
		content: '';
		width: calc(16 / 375 *100vw);
		height: calc(16 / 375 *100vw);
		border-top: solid 2px #fff;
		border-right: solid 2px #fff;
		position: absolute;
		right: 7%;
		top: 50%;
		transform: rotate(45deg) translateY(-50%);
	}

	.banner_btn .txt span:not(.num) {
		display: block;
		font-size: calc(18 / 375 *100vw);
		margin-bottom: 3vw;
	}

	.banner_btn .txt span.num {
		font-size: 1.1em;
	}

	.banner_btn::after {
		content: "";
		position: absolute;
		right: 31px;
		bottom: 100%;
		display: block;
		width: calc(76 / 375 *100vw);
		height: calc(46 / 375 *100vw);
		background: url(../images/icon_dog03.svg) no-repeat;
		background-size: contain;
	}

	.main_img {
		aspect-ratio: 1 / .6;
	}

	.main_img img {
		width: 100%;
		height: 100%;
		object-fit: cover;
	}


	/* intro
---------------------------------------------------------------------- */
	.intro {
		padding: 15vw 0;
	}

	.intro .pet_ttl span::before {
		content: "";
		display: block;
		width: 50px;
		height: 45px;
		background: url(../images/icon_dog01.svg) no-repeat;
		background-size: contain;
		margin-right: 13px;
		margin: 0 auto;
	}

	.intro .img {
		margin-bottom: 5vw;
	}

	.intro .img figure {
		margin-left: -6vw;
		height: 100%;
		border-radius: 0 1.25em 1.25em 0;
		overflow: hidden;
	}

	.intro .img img {
		width: 100%;
		height: 100%;
		object-fit: cover;
	}

	.intro .content {
		flex: 1;
	}

	.intro .content p {
		letter-spacing: 0.1em;
	}

	.intro .content h3 {
		font-size: 1.375em;
		font-weight: 500;
		line-height: 1.4;
		letter-spacing: 0.1em;
		border-top: 2px solid #D97B58;
		border-bottom: 2px solid #D97B58;
		text-align: center;
		padding: 1.3em;
		display: flex;
		align-items: center;
		justify-content: center;
		font-family: "Zen Maru Gothic", sans-serif;
		position: relative;

	}

	.intro .content h3::after {
		content: "";
		width: 32px;
		height: 32px;
		border-top: solid 2px #D97B58;
		border-right: solid 2px #D97B58;
		transform: rotate(135deg) translate(-50%, 2px);
		background: #fff;
		position: absolute;
		left: 48%;
		top: calc(100% - 2px);
	}

	.intro .content h3::before {
		content: "";
		display: inline-block;
		width: calc(30 / 375 *100vw);
		height: calc(29 / 375 *100vw);
		background: url(../images/icon_paws03.svg) no-repeat;
		background-size: contain;
		margin-right: 13px;
		vertical-align: text-bottom;
	}

	.intro .content .deco {
		margin: 27px 10px 0 0;
	}

	/* room
---------------------------------------------------------------------- */
	.room {
		padding: 15vw 0 0;
		position: relative;
	}

	.room::before {
		content: "";
		display: block;
		width: 100%;
		position: absolute;
		top: 415px;
		bottom: 0;
		background-color: #FCFAF4;
	}

	.room .pet_ttl span {
		color: var(--secondary-color);
	}

	.room .pet_ttl span::before {
		content: "";
		display: block;
		width: calc(45 / 375 *100vw);
		height: calc(68 / 375 *100vw);
		background: url(../images/icon_dog02.svg) no-repeat;
		background-size: contain;
		margin: 0 auto;
	}

	.room main.main {
		border-radius: 1.25em;
		overflow: hidden;
	}

	.room h3 {
		color: #4E3F0B;
		font-size: calc(40 / 750 *100vw);
		font-weight: 500;
		line-height: 1.4;
		font-family: "Zen Maru Gothic", sans-serif;
	}

	.room .info {
		display: flex;
		flex-direction: column-reverse;
	}

	.room .info .img figcaption {
		letter-spacing: 0.1em;
		line-height: 1.3;
		font-weight: 500;
	}

	.room .info .list {
		margin-bottom: 5vw;
		letter-spacing: 0.05em;
		font-weight: 500;
		line-height: 1.44;
	}

	.room .info .list li {
		padding-left: .8em;
		position: relative;
		margin-bottom: 0.55em;
	}

	.room .info .list li span {
		display: block;
		font-size: .9em;
		margin-top: 0.65em;
	}

	.room .info .list li::before {
		content: "●";
		font-size: 10px;
		font-weight: 500;
		color: var(--secondary-color);
		position: absolute;
		left: 0;
		top: .6em;
	}

	.room .pet_loop_slider {
		padding-top: 5vw;
	}

	/* equipment
---------------------------------------------------------------------- */
	.equipment {
		padding: 10vw 0 25vw;
		position: relative;
	}

	.room .equipment .pet_slider {
		margin-bottom: 3vw;
	}

	.equipment_list li:not(:last-of-type) {
		margin-bottom: 10vw;
	}

	.equipment_list .pet_slider li {
		border-radius: 1.25rem;
		overflow: hidden;
	}

	.equipment_list li p {
		letter-spacing: 0.1em;
		line-height: 1.38;
	}


	.pet_slider .slick-dots {
		position: absolute;
		z-index: 3;
		margin: 0 auto;
		bottom: 8%;
		text-align: center;
	}

	.pet_slider.slick-dotted.slick-slider {
		font-size: 0;
	}

	.pet_slider .slick-dots li {
		display: inline-block;
		margin: 0 calc(5 / 375 *100vw);
		width: calc(13 / 375 *100vw);
		height: calc(13 / 375 *100vw);
	}

	.pet_slider .slick-dots li button {
		padding: 0;
		color: transparent;
		outline: none;
		width: calc(13 / 375 *100vw);
		height: calc(13 / 375 *100vw);
		border: unset;
		display: block;
		background: rgba(255, 255, 255, 0.6);
		cursor: pointer;
		border-radius: 50%;
	}

	.pet_slider .slick-dots li button:before {
		width: 13px;
		height: 13px;
		color: transparent;
	}

	.pet_slider .slick-dots li.slick-active button {

		background: var(--secondary-color);
	}

	.pet_slider .slick-dots li.slick-active button::before {
		color: transparent;
	}

	/* amenities
---------------------------------------------------------------------- */
	.amenities {
		padding: 58px 0 60px;
		background-color: #F6EBD4;
		position: relative;
	}

	.amenities .img {
		margin-top: -20vw;
		font-size: 0;
	}

	.amenities .img .pet_slider {
		margin: 0 0 5vw -6vw;
		height: 100%;
		border-radius: 0 1.25rem 1.25rem 0;
		overflow: hidden;
	}

	.amenities .slick-list,
	.amenities .slick-track,
	.amenities .slick-slide>div,
	.amenities .slick-slide>div li {
		height: 100%;
		font-size: 0;

	}

	.amenities .img img {
		width: 100%;
		height: 100%;
		object-fit: cover;
	}

	.amenities .content {
		flex: 1;
	}

	.amenities h3 {
		display: flex;
		align-items: center;
	}

	.amenities h3::before {
		content: "";
		width: calc(25 / 375 *100vw);
		height: calc(24 / 375 *100vw);
		background: url(../images/icon_paws.svg) no-repeat;
		background-size: contain;
		margin-right: 3%;
		display: inline-block;
		vertical-align: bottom;
	}

	.amenities dl {
		line-height: 2;
		letter-spacing: 0.1em;
		font-weight: 500;
		font-feature-settings: "palt";
	}

	.amenities dl:not(:last-of-type) {
		margin-bottom: 5vw;
	}

	/* stay_plan
---------------------------------------------------------------------- */
	.stay_plan {
		padding: 15vw 0 15vw;
	}

	.stay_plan .pet_ttl_border {
		font-size: calc(20 / 375 *100vw);
	}

	.stay_plan .pet_ttl span {
		color: var(--accent-color);
		position: relative;
	}

	.stay_plan .pet_ttl strong {
		color: var(--accent-color);
		font-weight: 500;
		position: relative;
	}

	.stay_plan .pet_ttl strong span::before {
		content: "";
		display: block;
		width: calc(8 / 375 *100vw);
		height: calc(8 / 375 *100vw);
		position: absolute;
		left: 50%;
		background-color: #4E3F0B;
		border-radius: 50%;
		transform: translateX(-50%);
		top: -.2em;
	}

	.stay_plan .pet_ttl>span::before {
		content: "";
		display: block;
		width: calc(71 / 375 *100vw);
		height: calc(54 / 375 *100vw);
		background: url(../images/icon_dog04.svg) no-repeat;
		background-size: contain;
		margin: 0 auto;
	}

	.stay_plan .banner_btn::after {
		width: calc(74 / 375 *100vw);
		height: calc(54 / 375 *100vw);
		right: 42px;
		bottom: 99.5%;
		background-image: url(../images/icon_dog06.svg);
	}

	.stay_plan .list li {
		margin-bottom: 5vw;
	}

	.stay_plan .list .img {
		border-radius: 1.25rem;
		overflow: hidden;
		position: relative;
	}

	.stay_plan .list .img figcaption {
		position: absolute;
		left: 5%;
		bottom: 5%;
		color: #fff;
		letter-spacing: 0.05em;
		font-weight: 500;
	}

	.stay_plan .list li:last-of-type p {
		letter-spacing: 0.07em;
	}

	.stay_plan .list li:last-of-type p.note {
		font-size: .9375em;
		letter-spacing: 0.03em;
	}


	/* opening
---------------------------------------------------------------------- */
	.opening {
		padding-bottom: 15vw;
	}

	.opening .banner_btn::after {
		left: 47px;
		bottom: 99%;
		width: calc(73 / 375 *100vw);
		height: calc(38 / 375 *100vw);
		background-image: url(../images/icon_dog05.svg);
	}

	.opening .banner_btn .txt span:not(.num) {
		white-space: nowrap;
	}

	/* premium_twin
---------------------------------------------------------------------- */
	.premium_twin {
		padding-bottom: 15vw;
	}

	.premium_twin .list li {
		margin-bottom: 10vw;
	}

	.premium_twin .list .img {
		border-radius: 1.25rem;
		overflow: hidden;
	}

	.premium_twin h3 {
		color: #4E3F0B;
		font-size: calc(20 / 375 * 100vw);
		line-height: 1.5;
		font-weight: 600;
		display: flex;
		align-items: center;
		padding: 0 0.625rem;
		font-family: "Zen Maru Gothic", sans-serif;
	}

	.premium_twin h3::before {
		content: "";
		display: block;
		width: 10px;
		height: 2px;
		background-color: #0F3759;
		flex-shrink: 0;
		margin-right: 8px;
	}

	.premium_twin .list li p {
		letter-spacing: 0.1em;
		line-height: 1.38;
		padding: 0 0.625rem;
	}

	/* notice
---------------------------------------------------------------------- */
	.notice {
		padding: 45px 0 55px;
		background-color: #F4F4F4;
		text-align: center;
	}

	.notice h2 {
		color: #4E3F0B;
		font-size: calc(40 / 750 * 100vw);
		font-weight: 500;
		line-height: 1.4;
		letter-spacing: 0.04em;
		font-family: "Zen Maru Gothic", sans-serif;
	}

	.notice h2::before {
		content: "";
		display: block;
		width: calc(25 / 375 * 100vw);
		height: calc(24 / 375 * 100vw);
		background: url(../images/icon_paws.svg) no-repeat;
		background-size: contain;
		margin: 0 auto;
	}

	.notice p {
		text-align: center;
	}

	.notice .txt:first-of-type {
		margin-bottom: 2em;
		text-align: justify;
	}

	.notice .note {
		font-size: 3.5vw;
		letter-spacing: 0.05em;
		font-weight: 500;
		text-align: justify;
	}

	.notice .btn a {
		font-size: 3.7333vw;
		margin: 0 auto;
		letter-spacing: 0.2em;
		font-weight: 500;
		background-color: #4E3F0B;
		border: none;
		padding: .929em;
		height: auto;
		display: flex;
		align-items: center;
		justify-content: center
	}

	.notice .btn a:first-of-type {
		margin-bottom: 3vw;
	}
}