﻿@charset "UTF-8";

/** 2024 BOSO-Computer
* Global Reset CSS
*/
/*----------- 共通 -------------*/
h1 {
	font-size: 1rem;
	font-weight: normal;
}

.sec-inner {
	width: 98%;
	margin: 0 auto;
	/*  background-color: red;  */
}

/* --- header --- */
.odaiba-header {
	position: relative;

	width: 100%;
	height: 130px;

	overflow: hidden;
}


/* 看板＋植物＋台場石組 */

.odaiba-sign {
	position: absolute;

	left: 50%;
	bottom: 4px;

	z-index: 2;
	
	width: auto;
	max-width: 390px;

	transform: translateX(-50%);
}

.odaiba-sign img {
	width: auto;
	height: 105px;
	max-width: none;
	object-fit: contain;
	
}


/* 石垣 */

.odaiba-ishigaki {
	position: absolute;

	left: 0;
	bottom: 0;

	z-index: 1;

	width: 100%;
	height: 35px;

	background-image:
		url("../img/ishigaki.webp");

	background-repeat: repeat-x;
	background-position: center bottom;
	background-size: auto 100%;
}


/* ========================================
   石垣
======================================== */

.odaiba-ishigaki {
	position: absolute;

	left: 0;
	bottom: 0;

	z-index: 1;

	width: 100%;
	height: 45px;

	background-image:
		url("../img/ishigaki.webp");

	background-repeat: repeat-x;

	/*
		横に引き伸ばさず、
		高さを基準にサイズ決定
	*/
	background-size: auto 100%;

	background-position:
		left bottom;
}
/* header_img */
.header-logo {
	width: 300px;
	margin: auto;
}

/* logo */
.logo-main-a {
	text-decoration: none;
}

.logo-container {
	text-align: center;
	padding: 20px;
}

/* 肩書き部分（キャンプ場） */
.logo-sub {
	font-family: 'Mochiy Pop One', sans-serif;
	font-size: 0.6rem;
	color: #5c5346;
	/* 優しいブラウン */
	letter-spacing: 0.2em;
	margin-bottom: 8px;
	display: block;
}

/* メインの「お台場海浜庭園」部分 */
.logo-main {
	font-family: 'Mochiy Pop One', sans-serif;
	font-size: 1.8em;
	/* ロゴの大きさ */
	margin: 0;
	display: inline-flex;
	gap: 4px;
	/* 文字と文字の間隔 */
}

/* 各文字の共通スタイル（立体感を出すための白フチ＋影） */
.logo-main span {
	display: inline-block;
	text-shadow:
		3px 3px 0px #fff,
		-3px -3px 0px #fff,
		3px -3px 0px #fff,
		-3px 3px 0px #fff,
		4px 6px 0px rgba(92, 83, 70, 0.2);
}

/* ーーー 一文字ずつの個別設定（色・角度・位置の調整） ーーー */
.logo-main span:nth-child(1) {
	color: #ff6b6b;
	transform: rotate(-5deg);
}

/* お (赤) */
.logo-main span:nth-child(2) {
	color: #4dadf7;
	transform: rotate(4deg);
	padding-top: 6px;
}

/* 台 (水色) */
.logo-main span:nth-child(3) {
	color: #ff922b;
	transform: rotate(-2deg);
}

/* 場 (オレンジ) */
.logo-main span:nth-child(4) {
	color: #20c997;
	transform: rotate(5deg);
	padding-top: 4px;
}

/* 海 (エメラルド) */
.logo-main span:nth-child(5) {
	color: #f06595;
	transform: rotate(-4deg);
}

/* 浜 (ピンク) */
.logo-main span:nth-child(6) {
	color: #ffd43b;
	transform: rotate(3deg);
	padding-top: 2px;
}

/* 庭 (黄) */
.logo-main span:nth-child(7) {
	color: #845ef7;
	transform: rotate(-3deg);
}

.header-outer-flex {
	display: block;
	padding-left: 10px;
}

header {
	position: sticky;
	top: 0;
	z-index: 9999;
	background-color: #ffffff;
}

.header-main {
	position: relative;
	z-index: 9999;
}

.header-list {
	display: flex;
	align-items: center;
}

.header-list li {
	margin: 0 1rem;
}

.header_logo_image {
	width: 250px;
}

.site-header {

	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 20px 0;
}

.logo {
	margin-bottom: 20px;
}

.pc-nav ul {
	display: flex;
	justify-content: center;
	gap: 40px;
	list-style: none;
	margin: 0;
	padding: 0;
	padding-bottom: 15px;
}

.pc-nav a {
	text-decoration: none;
	color: #333;
	font-size: 16px;
	font-weight: normal;
}

.pc-nav {
	display: none;
}

/* =====================
   ハンバーガー
===================== */

.hamburger {
	position: fixed;
	top: 60px;
	right: 20px;
	width: 48px;
	height: 48px;
	border: none;
	background: none;
	cursor: pointer;
	z-index: 1002;
}

.hamburger span {
	position: absolute;
	left: 8px;
	width: 32px;
	height: 3px;
	background: #333;
	border-radius: 2px;
	transition: .35s;
}

.hamburger span:nth-child(1) {
	top: 13px;
}

.hamburger span:nth-child(2) {
	top: 22px;
}

.hamburger span:nth-child(3) {
	top: 31px;
}

/* × */

.hamburger.active span:nth-child(1) {
	transform: translateY(9px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
	opacity: 0;
}

.hamburger.active span:nth-child(3) {
	transform: translateY(-9px) rotate(-45deg);
}


/* =====================
   オーバーレイ
===================== */

.overlay {

	position: fixed;
	inset: 0;
	background: rgba(120, 190, 255, .18);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	opacity: 0;
	visibility: hidden;
	transition: .35s;
	z-index: 1000;
}

.overlay.active {
	opacity: 1;
	visibility: visible;
}


/* =====================
   メニュー
===================== */

.drawer {

	position: fixed;
	top: 0;
	right: -340px;
	width: 320px;
	max-width: 90vw;
	height: 100vh;
	background: rgba(255, 255, 255, .88);
	backdrop-filter: blur(18px);
	-webkit-backdrop-filter: blur(18px);
	box-shadow: -10px 0 40px rgba(0, 0, 0, .15);
	transition: .35s ease;
	z-index: 1001;
	padding-top: 90px;
}

.drawer.active {
	right: 0;
}

.drawer ul {
	list-style: none;
}

.drawer li {
	border-bottom: 1px solid rgba(0, 0, 0, .08);
}

.drawer a {

	display: block;
	padding: 10px 32px;
	color: #333;
	text-decoration: none;
	font-size: 18px;
	transition: .25s;
}

.drawer a:hover {
	background: #4db8ff;
	color: #fff;
}

/* footer */
/* ==================================================
   海をイメージしたフッター
   デフォルト：スマートフォン
================================================== */

.sea-footer {
	position: relative;
	margin-top: 70px;

	background: linear-gradient(180deg,
			#eafaff 0%,
			#d8f5fb 45%,
			#c5edf5 100%);

	color: #333;
	overflow: hidden;
}

/* ==================================================
   フッター内部
================================================== */

.footer-inner {
	position: relative;

	max-width: 1200px;
	margin: 0 auto;

	padding: 45px 20px 20px;
}


/* ==================================================
   メイン
================================================== */

.footer-main {
	display: block;
}


/* ==================================================
   ブランド
================================================== */

.footer-brand {
	padding-right: 0;
	margin-bottom: 40px;
}

.footer-logo {
	display: inline-block;
	margin: 0 0 20px;
	font-size: 24px;
	font-weight: 700;
	letter-spacing: .08em;
	color: #333;
}


.footer-brand p {
	margin: 0 0 15px;
	font-size: 14px;
	line-height: 1.9;
	color: #444;
}


.footer-address {
	font-size: 13px !important;
	color: #666 !important;
}


/* ==================================================
   メニュー
================================================== */

.footer-menu {
	margin-bottom: 35px;
}

.footer-menu h3,
.footer-access h3 {
	margin: 0 0 20px;

	font-size: 13px;
	letter-spacing: .18em;

	color: #168fa7;
}


.footer-menu ul {
	margin: 0;
	padding: 0;

	list-style: none;
}


.footer-menu li {
	margin-bottom: 10px;
}


.footer-menu a {
	position: relative;

	color: #333;
	text-decoration: none;

	font-size: 14px;

	transition: .3s;
}


.footer-menu a::after {
	content: "";

	position: absolute;

	left: 0;
	bottom: -3px;

	width: 0;
	height: 1px;

	background: #25abc1;

	transition: .3s;
}


.footer-menu a:hover {
	color: #1595ad;
}


.footer-menu a:hover::after {
	width: 100%;
}


/* ==================================================
   ACCESS
================================================== */

.footer-access {
	margin-bottom: 20px;
}


.footer-access p {
	margin: 0 0 20px;

	font-size: 14px;
	line-height: 1.9;

	color: #444;
}


.footer-button {
	display: inline-block;

	padding: 10px 20px;

	border: 1px solid #39afc5;
	border-radius: 30px;

	color: #277d8d;
	text-decoration: none;

	font-size: 13px;

	background: rgba(255, 255, 255, .55);

	transition: .3s;
}


.footer-button:hover {
	background: #39afc5;
	color: #fff;

	transform: translateY(-2px);
}


/* ==================================================
   フッター下部
================================================== */

.footer-bottom {
	display: block;

	margin-top: 40px;
	padding-top: 20px;

	border-top: 1px solid rgba(50, 150, 170, .2);
}


.copyright {
	margin: 0 0 15px;

	font-size: 11px;
	letter-spacing: .08em;

	color: #666;
}


.footer-links {
	display: flex;
	flex-wrap: wrap;

	gap: 10px 20px;
}


.footer-links a {
	font-size: 11px;

	color: #666;
	text-decoration: none;

	transition: .3s;
}


.footer-links a:hover {
	color: #168fa7;
}

/* pagenavi */
.wp-pagenavi {
	clear: both;
	text-align: center;

}

.wp-pagenavi a,
.wp-pagenavi span {
	color: #fff;
	background-color: #3CB4E5;
	border: 1px solid #3CB4E5;
	padding: 8px 15px;
	margin: 0 2px;
	white-space: nowrap;
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
	border-radius: 3px;
	-webkit-transition: 0.2s ease-in-out;
	-moz-transition: 0.2s ease-in-out;
	-o-transition: 0.2s ease-in-out;
	transition: 0.2s ease-in-out;
	text-align: center;
	text-decoration: none;
}

.wp-pagenavi a:hover {
	color: #FFF;
	background-color: #FFC500;
	border-color: #FFC500;
}

.wp-pagenavi span.current {
	color: #FFF;
	background-color: #36C21C;
	border-color: #36C21C;
	font-weight: bold;
}

/* ========================================
   共通タイトルh1
   スマホ：基本スタイル
======================================== */

.com_h1 {
	position: relative;

	width: fit-content;
	margin: 35px auto 55px;
	padding: 0 20px 20px;

	color: #168bb8;

	font-size: 1.4rem;
	font-weight: 600;
	line-height: 1.4;
	letter-spacing: 0.12em;
	text-align: center;
}


/* タイトル下のライン */
.com_h1::after {
	content: "";

	position: absolute;
	left: 50%;
	bottom: 0;

	width: 100px;
	height: 8px;

	transform: translateX(-50%);

	background:
		radial-gradient(
			10px 7px at 10px 0,
			transparent 9px,
			#55c7e5 10px,
			#55c7e5 11px,
			transparent 12px
		);

	background-size: 20px 8px;
	background-repeat: repeat-x;
}


/* 小さな泡 */
.com_h1::before {
	content: "";

	position: absolute;
	right: -5px;
	top: -8px;

	width: 7px;
	height: 7px;

	border: 2px solid #79d4e9;
	border-radius: 50%;

	box-shadow:
		10px -8px 0 -2px #b5eaf4,
		17px 5px 0 -1px #d5f3f8;
}

/***** 画面サイズ768px以上の指定 *****/
@media screen and (min-width:768px) {
	/*.header_ishigaki */
	.odaiba-header {
		height: 170px;
	}

	.odaiba-sign {
		width: 90%;

		bottom: 8px;
	}
	.odaiba-sign img {
		height: 150px;
	}

	.odaiba-ishigaki {
		height: 60px;
	}

	/* logo */
	.logo-sub {
		font-size: 0.8rem;
	}

	.logo-main {
		font-size: 3.0em;
	}

	/*----------- 共通 -------------*/
	.header-outer-flex {
		width: 80%;
		margin: auto;
	}

	.sec-inner {
		width: 80%;
		margin: 2rem auto;
	}

	/* footer */

	.sea-footer {
		margin-top: 90px;
	}

	/* フッター内部 */

	.footer-inner {
		padding: 60px 30px 25px;
	}


	/* メイン */

	.footer-main {
		display: grid;

		grid-template-columns:
			1.5fr 1fr 1fr;

		gap: 40px;
	}


	/* ブランド */

	.footer-brand {
		padding-right: 20px;
		margin-bottom: 0;
	}


	.footer-logo {
		font-size: 26px;
	}


	/* メニュー */

	.footer-menu {
		margin-bottom: 0;
	}


	/* ACCESS */

	.footer-access {
		margin-bottom: 0;
	}


	/* 下部 */

	.footer-bottom {
		display: flex;

		justify-content: space-between;
		align-items: center;

		margin-top: 50px;
	}


	.copyright {
		margin: 0;
	}


	.footer-links {
		display: flex;
		gap: 20px;
	}
	/* h1 */
	.com_h1 {
		margin-top: 45px;
		margin-bottom: 65px;

		padding-bottom: 22px;

		font-size: 1.4rem;
		letter-spacing: 0.15em;
	}

	.com_h1::after {
		width: 100px;
	}

}

/***** 画面サイズ960px以上の指定 *****/
@media screen and (min-width:960px) {
	/*.odaiba_ishigaki */
	.odaiba-header {
		height: 210px;
	}

	.odaiba-sign {
		width: 82%;

		bottom: 14px;
	}
	.odaiba-sign img {
		height: 180px;
	}
	.odaiba-ishigaki {
		height: 75px;
	}
	/* header_img */
	.header-logo {
		width: 25%;
	}
	/* --- header --- */
	.header-outer-flex {
		display: flex;
		justify-content: center;
	}

	.pc-nav {
		display: block;
	}

	.hamburger {
		display: none;
	}

	.header_logo_image {
		width: 450px;
	}

	/*----------- 共通 -------------*/
	.header-outer-flex {
		max-width: 1280px;
	}

	.sec-inner {
		max-width: 1280px;
	}

	/* footer */
	.sea-footer {
		margin-top: 100px;
	}

	/* フッター内部 */

	.footer-inner {
		padding: 70px 30px 25px;
	}


	/* メイン */

	.footer-main {
		gap: 60px;
	}


	/* ブランド */

	.footer-brand {
		padding-right: 30px;
	}


	.footer-logo {
		font-size: 28px;
	}


	/* メニュー */

	.footer-menu h3,
	.footer-access h3 {
		margin-bottom: 20px;
	}
	/* h1 */
	.com_h1 {
		margin-top: 60px;
		margin-bottom: 75px;

		font-size: 1.4rem;
		letter-spacing: 0.18em;
	}

	.com_h1::after {
		width: 120px;
	}
}