@charset "utf-8";
/*Font Awesomeの読み込み
---------------------------------------------------------------------------*/
@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.2/css/all.min.css");

/*テンプレート専用cssファイルの読み込み
---------------------------------------------------------------------------*/
@import url("slide.css");
/* @import url("inview.css"); */

/*CSSカスタムプロパティ（サイト全体を一括管理する為の設定）
---------------------------------------------------------------------------*/
:root {
	--primary-color: #212445;
	--primary-inverse-color: #fff;
	--space-large: 6vw;
	--space-small: 2vw;
}

/*opa1のキーフレーム設定（汎用的）
---------------------------------------------------------------------------*/
@keyframes opa1 {
	0% {
		opacity: 0;
	}

	100% {
		opacity: 1;
	}
}

/*全体の設定
---------------------------------------------------------------------------*/
body * {
	box-sizing: border-box;
}

html,
body {
	font-size: 15px;
	height: 100%;
}

/*画面幅1200px以上の追加指定*/
@media screen and (min-width:1200px) {

	html,
	body {
		font-size: 16px;
	}
}

/*画面幅1600px以上の追加指定*/
@media screen and (min-width:1600px) {

	html,
	body {
		font-size: 1vw;
	}
}


body {
	margin: 0;
	padding: 0;
	font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "Yu Gothic", "游ゴシック体", "Meiryo", "メイリオ", sans-serif;
	-webkit-text-size-adjust: none;
	background: #f6f8fa;
	color: #333;
	line-height: 2;
}

/*リセット他*/
figure {
	margin: 0;
}

dd {
	margin: 0;
}

nav ul {
	list-style: none;
}

nav,
ul,
li,
ol {
	margin: 0;
	padding: 0;
}

section li {
	margin-left: 1rem;
}

table {
	border-collapse: collapse;
}

img {
	border: none;
	max-width: 100%;
	height: auto;
	vertical-align: middle;
}

video {
	max-width: 100%;
}

iframe {
	width: 100%;
}

input {
	font-size: 1rem;
}

section {
	overflow-x: hidden;
	padding: var(--space-large);
}

/*リンクテキスト全般の設定
---------------------------------------------------------------------------*/
a {
	color: inherit;
	transition: 0.3s;
}

a:hover {
	text-decoration: none;
	opacity: 0.9;
}

/*container（サイト全体を囲むボックス）
---------------------------------------------------------------------------*/
#container {
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

/*header（ロゴが入った最上段のブロック）
---------------------------------------------------------------------------*/
header {
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 60px;
}

body:not(.home) header {
	margin-bottom: var(--space-large);
}

#logo img {
	display: block;
}

#logo {
	margin: 0;
	padding: 0;
	width: 10vw;
	position: relative;
	z-index: 1;
	left: 4.5vw;
	top: 4vw;
}

.logo-svg {
	color: #000;
	/* 通常色 */
}

.logo-svg:hover {
	color: #ff6600;
	/* ホバー色 */
}

/*画面幅500px以下の追加指定*/
@media screen and (max-width:500px) {
	#logo {
		top: 0;
		width: 60px;
	}
}

/*ヘッダー内メニュー
---------------------------------------------------------------------------*/
/*900px未満では非表示*/
header nav ul {
	display: none;
}

/*画面幅900px以上の追加指定*/
@media screen and (min-width:900px) {
	header>nav>ul {
		margin-right: 10vw;
		display: flex;
	}

	header nav li a {
		display: block;
		text-decoration: none;
		font-size: 0.9rem;
		padding: 0.5rem 1rem;
	}

	header nav i {
		padding-right: 0.5rem;
	}

}

/*ヘッダー内メニュー、開閉メニュー、共通のドロップダウン設定
---------------------------------------------------------------------------*/
header nav ul ul,
.small-screen #menubar ul ul {
	animation: opa1 0.5s 0.1s both;
}


/*ヘッダー内メニューのドロップダウン
---------------------------------------------------------------------------*/
/*ドロップダウンメニューブロック全体*/
header nav ul ul {
	position: absolute;
	z-index: 100;
}

/*メニュー１個あたりの設定*/
header nav ul ul a {
	background: rgba(255, 255, 255, 0.8);
	padding: 0.3em 1em;
	margin-top: 4px;
	border: 1px solid var(--primary-color);
}

/*メニューブロック初期設定
---------------------------------------------------------------------------*/
/*メニューをデフォルトで非表示*/
#menubar {
	display: none;
}

#menubar ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

#menubar a {
	display: block;
	text-decoration: none;
}

/*上で非表示にしたメニューを表示させる為の設定*/
.large-screen #menubar {
	display: block;
}

.small-screen #menubar.display-block {
	display: block;
}

/*3本バーをデフォルトで非表示*/
#menubar_hdr.display-none {
	display: none;
}

/*ドロップダウンをデフォルトで非表示*/
.ddmenu_parent ul {
	display: none;
}

/*ddmenuを指定しているメニューに矢印アイコンをつける設定*/
a.ddmenu::before {
	font-family: "Font Awesome 6 Free";
	content: "\f078";
	font-weight: bold;
	margin-right: 0.5em;
}


/*開閉メニュー
---------------------------------------------------------------------------*/
/*animation1のキーフレーム設定*/
@keyframes animation1 {
	0% {
		right: -100vw;
	}

	100% {
		right: 0px;
	}
}

/*メニューブロック設定*/
.small-screen #menubar.display-block {
	position: fixed;
	overflow: auto;
	z-index: 100;
	right: 0px;
	top: 0px;
	max-width: 800px;
	height: 100%;
	padding: 90px 10vw 50px;
	background: var(--primary-color);
	color: var(--primary-inverse-color);
	animation: animation1 0.2s both;
}

/*子メニューの設定*/
.small-screen #menubar ul ul {
	margin: 2rem;
}

/*メニュー１個あたりの設定*/
.small-screen #menubar nav ul li {
	border: 1px solid #fff;
	margin: 1rem 0;
	border-radius: 5px;
}

.small-screen #menubar a {
	color: inherit;
	padding: 1rem 2rem;
}

.small-screen #menubar nav ul li:hover {
	border: 1px solid #fff;
	background: #fff;
	color: var(--primary-color);
}


/*３本バー（ハンバーガー）アイコン設定
---------------------------------------------------------------------------*/
#menubar_hdr {
	animation: opa1 0.3s 0.5s both;
	position: fixed;
	z-index: 101;
	cursor: pointer;
	top: 0;
	right: calc(var(--space-small) + 5px);
	width: 60px;
	height: 60px;
	padding: 20px 0;
	display: flex;
	justify-content: center;
	align-items: center;
	transition: transform 0.5s;
	mix-blend-mode: exclusion;
}

/*マウスオン時だけmix-blend-modeを無効に*/
#menubar_hdr.ham {
	mix-blend-mode: normal;
}

/*バーの設定*/
#menubar_hdr div span {
	display: block;
	width: 100%;
	height: 2px;
	background-color: #fff;
	transition: all 0.5s ease-in-out;
	position: absolute;
}

/*以下変更不要*/
#menubar_hdr div {
	position: relative;
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

#menubar_hdr div span:nth-child(1) {
	top: 0;
}

#menubar_hdr div span:nth-child(2) {
	bottom: 0;
}

#menubar_hdr.ham div span:nth-child(1) {
	top: 50%;
	transform: translateY(-50%) rotate(45deg);
}

#menubar_hdr.ham div span:nth-child(2) {
	top: 50%;
	transform: translateY(-50%) rotate(-45deg);
}

/*main（メインコンテンツ）
---------------------------------------------------------------------------*/
main {
	flex: 1 0 auto;
	overflow-x: hidden;
	padding: 4vw 0 0;
}

main h2 {
	margin: 0;
	padding: 0;
	font-size: 2.2rem;
	font-weight: bold;
	letter-spacing: 0.05em;
	margin-bottom: 3vw;
	display: flex;
	flex-direction: column-reverse;
	align-items: flex-start;
	color: var(--primary-color);
}

main h2.c {
	align-items: center;
}

main h2 span.sub-text {
	display: inline-block;
	border-top: 1px solid var(--primary-color);
	font-size: 0.9rem;
	opacity: 0.6;
	letter-spacing: 0.1rem;
	padding-top: 2rem;
}

main h3 {
	font-weight: 600;
	font-size: 1.4rem;
	color: var(--primary-color);
}

/*Google Map
---------------------------------------------------------------------------*/
.iframe-box {
	width: 100%;
	height: 0;
	padding-top: 100%;
	position: relative;
	overflow: hidden;
}

.iframe-box iframe {
	position: absolute;
	left: 0px;
	top: 0px;
	width: 100%;
	height: 100%;
}

@media screen and (min-width:769px) {
	.iframe-box {
		padding-top: 40%;
	}
}


/*フッター設定
---------------------------------------------------------------------------*/
footer a {
	color: inherit;
	text-decoration: none;
}

footer small {
	font-size: 100%;
}

footer {
	background: var(--primary-color);
	color: var(--primary-inverse-color);
	font-size: 0.85rem;
	padding: 5vw;
}
/*画面幅600px以上の追加指定*/
@media screen and (min-width:769px) {
	footer {
		display: flex;
		justify-content: space-between;
	}
}

footer .image {
	width: 200px;
	text-align: center;
}

/*画面幅500px以下の追加指定*/
@media screen and (max-width:500px) {
	footer .image {
		width: auto;
	}

	footer .image img {
		width: 80px;
	}
}

/*画面幅600px以上の追加指定*/
@media screen and (min-width:769px) {
	footer .text {
		display: flex;
		gap: 5rem;
	}

}

footer h4 {
	font-weight: 200;
	font-size: 1.2rem;
	margin-top: 0;
}

.btn a {
	display: block;
	text-decoration: none;
	font-size: 1rem;
	text-align: center;
	background: #fff;
	color: var(--primary-color);
	padding: 1rem;
	margin-top: 2rem;
	margin-bottom: 2rem;
}


/*フッター内にあるソーシャルメディアのアイコン
---------------------------------------------------------------------------*/
.icons {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	align-self: center;
	gap: 1rem;
}

.icons i {
	font-size: 30px;
}


/*お知らせブロック
---------------------------------------------------------------------------*/
/*ブロック全体*/
.new {
	display: grid;
	grid-template-columns: auto 1fr;
	max-width: 700px;
	margin: 0 auto;
}

/*日付、記事（共通）*/
.new dt,
.new dd {
	border-bottom: 1px solid rgba(0, 0, 0, 0.1);
	padding-top: 2rem;
	padding-bottom: 2rem;
}

/*日付*/
.new dt {
	padding-right: 4rem;
}
/*インスタボタンとプレオープンニュース
---------------------------------------------------------------------------*/
.preopen-label {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background: rgba(255, 255, 255, 0.6);
	backdrop-filter: blur(2px);
	padding: 1.2rem 3rem;
	border-radius: 200px;
	z-index: 10;
	text-align: center;
	white-space: nowrap;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
	letter-spacing: 0.1em;
	font-size: 4.5vw;
	font-weight: 700;
	color: #fff;
	text-shadow: 2px 2px rgba(0, 0, 0, 0.5), 0px 0px 10px rgba(0, 0, 0, 0.5);
	line-height: 1.4;
}

.insta {
	text-align: center;
	padding: 0 5%;
}

.insta a {
	transition: all 0.3s;
	display: block;
}

.insta a:hover {
	transform: translateY(5px);
}

.notice {
	background: #fef8f3;
	padding: 2rem;
	text-align: center;
	border: 1px solid #f3e1d5;
	border-radius: 8px;
	margin: 0 auto 4rem;
	width: 90%;
	max-width: 900px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.notice h2 {
	font-size: 1.6rem;
	font-weight: bold;
	color: var(--primary-color);
	margin-bottom: 1rem;
	letter-spacing: 0.05em;
	text-align: center;
	display: block;
}

.notice p {
	line-height: 1.8;
}
@media screen and (min-width:769px) {
	.notice h2 {
		font-size: 2.2rem;
	}
}

/*about
---------------------------------------------------------------------------*/
.about {
	overflow-x: visible;
	position: relative;
	background: #ecf0f5;
	padding: var(--space-large);
	margin-top: 10vw;
}

.about .deco-text {
	position: absolute;
	right: 0;
	top: -13vw;
	color: #ecf0f5;
	font-size: 7vw;
	font-weight: bold;
	line-height: 1;
}

.about .illust1 {
	position: absolute;
	right: 20vw;
	top: 9vw;
	width: 23vw;
	opacity: 0.3;
}

.about .text {
	margin-bottom: 5rem;
}

.about .image {
	position: relative;
}

.about .image img {
	border-radius: 10px;
}

.about .image img:nth-of-type(1) {
	width: 80%;
}

.about .image img:nth-of-type(2) {
	width: 43%;
}

.about .image img:nth-of-type(2) {
	position: absolute;
	right: 0;
	top: 40vw;
}


/*画面幅600px以上の追加指定*/
@media screen and (min-width:769px) {
	.about {
		display: flex;
		gap: 5vw;
		border-radius: 20vw 0 20vw 0;
	}

	.about>* {
		flex: 1;
	}

	.about .illust1 {
		rignt: auto;
		left: 1vw;
		top: -10vw;
		width: 14vw;
	}

	.about h2 img {
		width: 5vw;
	}

	.about .text {
		margin-bottom: 0;
	}

	.about .image img:nth-of-type(2) {
		top: 20vw;
	}
}

/*施設案内
---------------------------------------------------------------------------*/
.guide-image {
	width: 100%;
	max-width: 100%;
}

.guide-image img {
	border-radius: 8px;
}
@media screen and (min-width:769px) {
	.guide-image {
		width: 50%;
		max-width: 50%;
	}
}
/* ドッグラン
---------------------------------------------------------------------------*/
.dogpark {
	background: #eaeef7;
	border-radius: 10vw 0 10vw 0;
}
.dogrun-note {
	width: 100%;
	margin: 3rem auto;
	padding: 2rem !important;
	background-color: #fff;
	border: 1px solid #ccc;
	border-radius: 8px;
	line-height: 1.8;
	max-width: 800px;
	box-shadow: 0 0 5px rgba(0, 0, 0, 0.05);
}

.dogrun-note h3 {
	margin-bottom: 1.2rem;
	color: var(--primary-color);
	font-weight: bold;
	border-left: 4px solid var(--primary-color);
	padding-left: 1rem;
}

.dogrun-note ul {
	padding-left: 1.2rem;
	margin: 0;
	list-style-type: disc;
}

.dogrun-note li {
	margin-bottom: 0.4rem;
}
@media screen and (min-width:769px) {
	.dogrun-note {
		width: 50%;
	}
}

/*list-free ドッグランとBBQの表
---------------------------------------------------------------------------*/
.list-free * {
	margin: 0;
	padding: 0;
}

.list-free {
	display: flex;
	flex-wrap: wrap;
	flex-direction: column;
	align-items: flex-start;
	margin-bottom: 0;
	gap: 5vw;
}

.list-free h4 {
	font-weight: 500;
	font-size: 1.3rem;
	color: var(--primary-color);
	margin-bottom: 0.5em;
}

/* 表の注意書き */
.note-inside {
	padding: 1rem;
	color: #555;
	line-height: 1.6;
}
.note-inside .tel-label {
	display: inline-block;
	font-weight: bold;
	font-size: 1.4rem;
	margin-top: 0.5rem;
	color: var(--primary-color);
}

.note-inside .tel-link {
	font-size: 1.4rem;
	font-weight: bold;
	color: var(--primary-color);
	text-decoration: none;
}

.note-inside .tel-link:hover {
	text-decoration: underline;
}

.note-inside i {
	color: var(--primary-color);
	margin-right: 0.3em;
	font-size: 1.8rem;
}
/* 表の中の電話*/
.contact-tel {
	font-size: 1.4rem;
	line-height: 1.6;
	color: #fff;
	margin-top: 1rem;
}

.contact-tel i {
	margin-right: 0.5em;
}

.contact-tel a {
	font-size: 1.6rem;
	text-decoration: none;
	font-weight: bold;
	letter-spacing: 0.1em;
}

.contact-tel a:hover {
	text-decoration: underline;
}
.contact-tel span {
	font-size: 76%;
}

/*画面幅600px以上の追加指定*/
@media screen and (min-width:769px) {
	.list-free {
		flex-direction: row;
	}

	.list-free .w1 {
		width: 30%;
	}

	.list-free .w2 {
		width: 50%;
		width: calc(100% / 2 - 5vw);
	}

	.list-free .order1 {
		order: 1;
	}

	.list-free .order2 {
		order: 2;
	}

	.list-free .order3 {
		order: 3;
	}
}

/*list-grid1ドッグランとBBQの写真
---------------------------------------------------------------------------*/
.list-grid1 {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 3vw;
}

.list-grid1 .list * {
	margin: 0;
	padding: 0;
}

.list-grid1 .list {
	display: grid;
	margin-bottom: 2rem;
}

.list-grid1 .list p {
	font-size: 0.85rem;
	line-height: 1.5;
}

.list-grid1 .list {
	padding: 1rem;
	background: #fff;
	color: #111;
	grid-template-rows: auto 1fr auto;
	box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.1);
}

.list-grid1 .list figure {
	margin: -1rem;
	margin-bottom: 0.5rem;
}

@media screen and (min-width:800px) {
	.list-grid1 {
		display: grid;
		grid-template-columns: repeat(3, 1fr);
		gap: 3vw;
	}

	.list-grid1 .list {
		margin-bottom: 0;
	}
}

/*スライドショー
---------------------------------------------------------------------------*/
.slide-thumbnail-box {
	overflow-x: hidden;
	padding-left: 0;
	padding-right: 0;
}

.slide-thumbnail1 {
	margin-bottom: 6vw;
}

.slide-thumbnail1 .img {
	display: flex;
}

.slide-thumbnail1 .img img {
	padding: 0 1rem;
}

.slide-thumbnail1 .img div:nth-of-type(even) {
	transform: translateY(3vw);
}

.slide-thumbnail1 .rtl,
.slide-thumbnail1 .ltr {
	animation-timing-function: linear;
	animation-iteration-count: infinite;
}

.slide-thumbnail1 .rtl {
	animation-name: slide-rtl;
}

.slide-thumbnail1 .ltr {
	animation-name: slide-ltr;
}

@keyframes slide-rtl {
	0% {
		transform: translateX(0);
	}

	100% {
		transform: translateX(-50%);
	}
}

@keyframes slide-ltr {
	0% {
		transform: translateX(-50%);
	}

	100% {
		transform: translateX(0);
	}
}

/*FAQ
---------------------------------------------------------------------------*/
#faq {
	background: #ecf0f5;
	border-radius: 10vw 0 10vw 0;
}

.faq dt {
	border-radius: 10px;
	margin-bottom: 1rem;
	background: #fff;
	box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.1);
	text-indent: -2rem;
	padding: 0.5rem 1em 0.5rem 3em;
}

.faq dt::before {
	font-weight: 900;
	content: "Q";
	padding-right: 1rem;
	color: var(--primary-color);
	font-size: 110%;
	color: #cf3f3f;
}

.faq dd {
	padding: 0 1rem 1rem 4rem;
	text-indent: -2rem;
}

.faq dd::before {
	font-weight: 900;
	content: "A";
	padding-right: 1rem;
	color: var(--primary-color);
	font-size: 110%;
	color: #6d55e4;
}

.openclose {
	cursor: pointer;
}

/*テーブル表のとこ
---------------------------------------------------------------------------*/
/*テーブル１行目に入った見出し部分（※caption）*/
.ta1 caption {
	font-weight: bold;
	padding: 0.5rem 1rem;
	background: var(--primary-color);
	color: var(--primary-inverse-color);
	margin-bottom: 1rem;
	border-radius: 5px;
}

.ta1 {
	table-layout: fixed;
	border-top: 1px solid var(--primary-color);
	width: 100%;
	margin-bottom: 3rem;
}

.ta1 tr {
	border-bottom: 1px solid var(--primary-color);
}

.ta1 th,
.ta1 td {
	display: block;
	width: 100%;
	padding: 1rem;
	word-break: break-all;
}

.ta1 th {
	text-align: left;
	background: #b5c8e6;
}

@media screen and (min-width:900px) {

	.ta1 th,
	.ta1 td {
		display: table-cell;
	}

	.ta1 th {
		width: 30%;
	}

}

/*調整用スタイル
---------------------------------------------------------------------------*/
/*並べ替え*/
.order1 {
	order: 1;
}

.padding0 {
	padding: 0 !important;
}

.padding-bottom0 {
	padding-bottom: 0 !important;
}

.padding-lr0 {
	padding-left: 0 !important;
	padding-right: 0 !important;
}

.space-small {
	padding-left: var(--space-small);
	padding-right: var(--space-small);
}

/*その他
---------------------------------------------------------------------------*/
.l {
	text-align: left !important;
}

.c {
	text-align: center !important;
}

.r {
	text-align: right !important;
}

.small {
	font-size: 0.75em;
}

.large {
	font-size: 2em;
	letter-spacing: 0.1em;
}

.pc {
	display: none;
}

.dn {
	display: none !important;
}

.block {
	display: block !important;
}

.bg1 {
	background: #f0f0f0;
}

pre {
	white-space: pre-wrap;
	word-wrap: break-word;
	overflow-wrap: break-word;
}

.h2_style {
	margin-top: 2rem;
}

/*画面幅900px以上の追加指定*/
@media screen and (min-width:900px) {
	.ws {
		width: 48%;
		display: inline;
	}

	.sh {
		display: none;
	}

	.pc {
		display: block;
	}
}