@charset "utf-8";

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
html {
	font-size: 16px;
	scroll-behavior: smooth;
}
p,a,h1,h2,h3,h4,h5,li,dt,dd{
  	font-family: "Noto Sans JP", sans-serif;
	font-weight: 400;
	color: #333;
	text-decoration: none;
}
p,dt,dd,li,a {
	font-size: 1rem;
	line-height: 2rem;
	font-feature-settings: "palt";
	list-style: none;
}
.sp_br {
	display: none;
}
img {
	width: 100%;
	vertical-align: bottom;
}
#top,article {
	width: 100%;
	max-width: 1920px;
	margin: 0 auto;
	background: #B2FFFF;
}
article {
	padding: 80px 0;
}

/*==============================
header / gnav
==============================*/
#header {
	width: 100%;
	background: #fff;
	position: relative;
	z-index: 1000;
}
.header_inner {
	max-width: 1920px;
	margin: 0 auto;
	padding: 15px 5%;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.header_logo {
	display: block;
	font-size: 1.3rem;
	font-weight: 700;
	letter-spacing: 0.03em;
	color: #333;
	white-space: nowrap;
}
#gnav ul {
	display: flex;
	align-items: center;
}
#gnav li {
	margin-left: 2.2rem;
}
#gnav a {
	font-weight: 700;
	transition: color 0.3s;
}
#gnav a:hover {
	color: #E34393;
}
.header_logo:hover {
	color: #E34393;
}
#hamburger {
	display: none;
	position: relative;
	width: 40px;
	height: 32px;
	border: none;
	background: transparent;
	cursor: pointer;
	z-index: 1100;
}
#hamburger span {
	position: absolute;
	left: 0;
	width: 100%;
	height: 3px;
	background: #333;
	border-radius: 2px;
	transition: all 0.3s ease;
}
#hamburger span:nth-child(1) { top: 4px; }
#hamburger span:nth-child(2) { top: 15px; }
#hamburger span:nth-child(3) { top: 26px; }
#hamburger.is-active span:nth-child(1) {
	top: 15px;
	transform: rotate(45deg);
}
#hamburger.is-active span:nth-child(2) {
	opacity: 0;
}
#hamburger.is-active span:nth-child(3) {
	top: 15px;
	transform: rotate(-45deg);
}
body.nav-open::after {
	content: "";
	position: fixed;
	inset: 0;
	background: rgba(0,0,0,0.4);
	z-index: 900;
}

/*==============================
トップ画像アニメーション
アニメーションが実行されない環境（一部のスクリーンショット/印刷
レンダラーなど）でもコンテンツが非表示にならないよう、opacityは
使わずtransform（位置のスライド）のみでアニメーションさせています。
アニメーションが動かなくても最終的な見た目（表示位置）は変わりません。
==============================*/
@keyframes slideDown {
	from { transform: translateY(-30px); }
	to   { transform: translateY(0); }
}
@keyframes slideRight {
	from { transform: translate(60px, -20px); }
	to   { transform: translate(0, 0); }
}
@keyframes slideLeft {
	from { transform: translate(-60px, 20px); }
	to   { transform: translate(0, 0); }
}
@keyframes slideUp {
	from { transform: translateY(30px); }
	to   { transform: translateY(0); }
}
@keyframes floatY {
	0%, 100% { transform: translateY(0); }
	50%      { transform: translateY(-18px); }
}
@media (prefers-reduced-motion: reduce) {
	.toplogo img, .topimg img, .topimg_btm, .message, .news {
		animation: none !important;
	}
}

#top > div {
  position: relative;
  z-index: 10;
  width: 100%;
  height: 1000px;
}
.toplogo img {
	width: 30%;
	padding: 30px 5px 0;
	max-width: 320px;
	position: absolute;
	top: 0;
	left: 10%;
  	z-index: 100;
	background: #fff;
	animation: slideDown 0.8s ease 0.1s;
}
.topimg img {
	width: 70%;
	max-width: 800px;
	position: absolute;
	top: 0;
	right: 0;
	animation-name: slideRight, floatY;
	animation-duration: 1s, 5s;
	animation-timing-function: ease, ease-in-out;
	animation-delay: 0.3s, 1.3s;
	animation-iteration-count: 1, infinite;
}
.topimg::after {
  	content: "";
  	position: absolute;
  	right:0;
	top: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	max-width: 800px;
	background: url(../images/maru1.svg);
	background-repeat: no-repeat;
	background-position: top right;
	background-size: contain;
}
.message {
	max-width: 550px;
	padding: 10px 0;
  	position: absolute;
	top: 420px;
	left: 10%;
	animation: slideUp 0.8s ease 0.7s;
}
.topimg_btm {
	width: 40%;
	max-width: 500px;
	position: absolute;
	bottom: 0;
	left: 5%;
	filter: drop-shadow(2px 10px 4px #2F5252);
	animation: slideLeft 1s ease 0.5s;
}
.news {
	width: 50%;
	max-width: 650px;
	position: absolute;
	bottom: 10%;
	right: 5%;
	animation: slideUp 0.8s ease 0.9s;
}
.news dl {
	display: flex;
}
.news dl > dt {
	padding-right: 10px;
}
.news dd a {
	color: #333;
	text-decoration: underline;
}

.news_more {
	display: inline-block;
	margin-top: 8px;
	font-size: 0.85rem;
	text-decoration: underline;
	color: #333;
}
.new_mark {
	display: inline-block;
	margin-right: 6px;
	padding: 1px 7px;
	border-radius: 3px;
	background: #E34393;
	color: #fff;
	font-size: 0.7rem;
	font-weight: 700;
	line-height: 1.6;
	letter-spacing: 0.03em;
	vertical-align: middle;
}
/*==============================
お知らせ一覧・個別ページ（home.php / single.php）
==============================*/
.news_archive {
	max-width: 900px;
	margin: 0 auto;
	padding: 100px 20px;
}
.news_archive .page_title {
	font-size: 1.8rem;
	font-weight: 900;
	text-align: center;
	margin-bottom: 40px;
}
.news_item {
	display: flex;
	gap: 20px;
	padding: 20px 0;
	border-bottom: 1px solid #ddd;
}
.news_item_thumb {
	width: 160px;
	flex-shrink: 0;
	aspect-ratio: 1 / 1;
	overflow: hidden;
}
.news_item_thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.news_item_body {
	flex-grow: 1;
}
.news_item_date {
	font-size: 0.85rem;
	color: #888;
}
.news_item_title {
	font-size: 1.2rem;
	font-weight: 700;
	margin: 4px 0 8px;
}
.news_item_title a {
	color: #333;
}
.news_pagination {
	display: flex;
	justify-content: center;
	gap: 10px;
	margin-top: 40px;
}
.news_pagination a, .news_pagination span {
	padding: 8px 14px;
	border: 1px solid #ccc;
}
.news_single {
	max-width: 800px;
	margin: 0 auto;
	padding: 100px 20px;
}
.news_single_title {
	font-size: 1.8rem;
	font-weight: 900;
	margin-bottom: 10px;
}
.news_single_date {
	color: #888;
	margin-bottom: 20px;
}
.news_single_thumb {
	margin-bottom: 30px;
}
.news_single_content p {
	margin-bottom: 1.5em;
}
.news_back {
	display: inline-block;
	margin-top: 40px;
	text-decoration: underline;
}
/*h2*/
.title,.title_zebra,.title_zebra_w {
	font-size: 2rem;
	padding-bottom: 10px;
	line-height: 3rem;
	font-weight: 900;
}
.title_zebra_w {
	color: #fff;
}
.kana {
	font-size: 1.6rem;
}
.title_zebra::after {
  	content: "";
  	display: block;
  	width: 43px;
	height: 37px;
	margin: 10px auto;
  	background: url(../images/zebra.svg);
  	background-size: cover;
}
.title_zebra_w::after {
  	content: "";
  	display: block;
  	width: 43px;
	height: 37px;
	margin: 10px auto;
  	background: url(../images/zebra_w.svg);
  	background-size: cover;
}
/*Instagram*/
#insta {
	width: 100%;
	max-width: 1920px;
	margin: 0 auto;
	text-align: center;
}
#insta > div {
	display: flex;
	flex-wrap: wrap;
}
#insta > div > p {
	width: calc(100% / 4);
	aspect-ratio: 1 / 1;
	overflow: hidden;
	border: solid 1px #B2FFFF;
}
.insta_link {
	display: block;
	width: 100%;
	height: 100%;
}
.insta_link img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	cursor: zoom-in;
	transition: transform 0.3s ease;
}
.insta_link:hover img {
	transform: scale(1.05);
}

/* Instagramライトボックス */
.insta_lightbox {
	display: none;
	position: fixed !important;
	top: 0 !important;
	right: 0 !important;
	bottom: 0 !important;
	left: 0 !important;
	inset: 0;
	z-index: 2147483647;
	align-items: center;
	justify-content: center;
	padding: 20px;
	background: rgba(0,0,0,0.85);
}
.insta_lightbox.is-open {
	display: flex;
}
body.lightbox-open {
	overflow: hidden;
}
.insta_lightbox img {
	width: auto;
	max-width: 100%;
	max-height: 90vh;
	box-shadow: 0 4px 24px rgba(0,0,0,0.4);
}
.insta_lightbox_close {
	position: absolute;
	top: 20px;
	right: 20px;
	width: 44px;
	height: 44px;
	border: none;
	border-radius: 50%;
	background: rgba(255,255,255,0.9);
	color: #333;
	font-size: 1.5rem;
	line-height: 1;
	cursor: pointer;
}
#mind,#set_manu,#price,#profile {
	width: calc(100% - 20px);
	max-width: 1100px;
	margin: 0 auto;
	text-align: center;
}
#wrap > article.bg_pink {
	background: #E34393;
}
/*お客様に満足して頂く為に*/
#mind > p {
	margin-bottom: 20px;
}
#mind > div {
	display: flex;
	gap: 20px;
	flex-wrap: wrap;
}
.mind_box {
	width: calc((100% / 3) - 14px);
	display: flex;
	flex-direction: column;
	border: solid 2px #E34393;
	margin-bottom: 10px;
}
.mind_box > h3 {
	padding: 10px;
	font-size: 1rem;
	font-weight: 700;
	color: #fff;
	background: #E34393;
}
.mind_box > p {
	flex-grow: 1;
	padding: 10px;
	text-align: left;
	background: #fff;
}
/*メニュー表*/
#set_manu > ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.menu_jp,.menu_en {
	width: 48%;
	padding: 10px;
	text-align: left;
}
.menu_jp > h3,.menu_en > h3 {
	font-weight: 900;
	color: #fff;
}
.menu_jp > p,.menu_en > p {
	color: #fff;
}
.menu_en > p {
	font-size: 0.8rem;
	line-height: 1.5rem;
}

/*price*/
#price > div {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
#price > div > ul {
	width: 50%;
	text-align: left;
}
#price > div > ul > li {
	display: flex;
	justify-content: space-between;
}
#price > div > ul > li > p:last-of-type {
	width: 180px;
}
#price > div > ul > li > p:first-of-type > span {
	margin-bottom: 15px;
	display: block;
	font-size: 0.8rem;
}
#price > div > ul > h3 {
	font-weight: 900;
	font-size: 1.3rem;
	line-height: 3rem;
}
.price_txt {
	font-size: 0.8rem;
	line-height: 1.5rem;
}

/*プロフィール*/
.prof_box {
	display: flex;
	justify-content: center;
	gap:20px
}
.prof_box_l {
	width: 30%;
	max-width: 300px;
}
.profile_name {
	margin-bottom: 20px;
	font-size: 2rem;
	font-weight: 900;
	color: #fff;
	text-align: left;
}
.profile_name > span {
	font-size: 0.8rem;
	font-weight: 400;
}
.prof_box_r > ul {
	margin-bottom: 20px;
}
.prof_box_r > ul li {
	margin-left: 2rem;
	list-style: disc;
	color: #fff;
	text-align: left;
}
.profile_txt {
	text-align: left;
	color: #fff;
}

/*ポップアップ*/
.popup_btn {
	width: 100%;
	line-height: 1.3rem;
	margin: 10px 0;
	padding: 5px 8px;
	display: inline-block;
  	border: 1px solid #fff;
  	color: #fff;
  	transition-duration: 0.3s;
	cursor: pointer;
	background: transparent;
	font-size: 1rem;
}
.popup_btn:hover {
  background: #cc3d85;
  color: #ffffff;
}
.remodal_box {
	display: flex;
	flex-wrap: wrap;
}

.remodal_box > ul {
	width: 50%;
	padding: 10px;
}
.remodal_box > ul > h4 {
	margin-bottom: 5px;
	padding: 5px;
	background: #B2FFFF;
}
.remodal_box > ul > li {
	text-align: left;
	font-size: 0.8rem;
	line-height: 1.3rem;
}
/*footer*/
footer {
	padding: 50px 0;
	background: #333;
}
.add_box {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
}
.logo {
	width: 25%;
	margin-right: 20px;
	max-width: 200px;
}
.add > a, .add > p{
	color: #fff;
	font-size: 0.8rem;
	line-height: 1.2rem;
	margin-bottom: 1rem;
}
.sns_box {
	padding: 10px 10px 10px 0;
	display: flex;
}

.sns_link > a  {
	display: inline-block;
	font-size: 0.8rem;
	line-height: 1.2rem;
	color: #fff;
}
.icon {
	width: 2rem;
	padding-right: 10px;
}

/*==============================
ヘッダー：SP時はハンバーガーメニュー＋固定表示
PC時（769px〜）はheader_inner内で通常のメニュー表示
==============================*/
@media (max-width: 768px){
	html {
		scroll-padding-top: 60px;
	}
	body {
		padding-top: 60px;
	}
	#header {
		position: fixed;
		top: 0;
		left: 0;
		box-shadow: 0 2px 6px rgba(0,0,0,0.1);
	}
	.header_inner {
		padding: 10px 20px;
	}
	.header_logo {
		font-size: 1.05rem;
	}
	#hamburger {
		display: block;
	}
	#gnav {
		position: fixed;
		top: 0;
		right: -100%;
		width: 75%;
		max-width: 320px;
		height: 100vh;
		background: #fff;
		box-shadow: -2px 0 10px rgba(0,0,0,0.15);
		transition: right 0.4s ease;
		padding: 100px 30px 30px;
		z-index: 1050;
	}
	#gnav.is-open {
		right: 0;
	}
	#gnav ul {
		flex-direction: column;
		align-items: flex-start;
	}
	#gnav li {
		margin: 0 0 1.6rem;
	}
	#gnav a {
		font-size: 1.1rem;
	}
	body.nav-open {
		overflow: hidden;
	}
	#top > div {
	  position: relative;
	  z-index: 10;
	  width: 100%;
	  height: 800px;
	}	
}

@media (max-width: 480px){
	html {
		font-size: 12px;
	}
	p,a,h1,h2,h3,h4,h5,li,dt,dd{
		font-weight: 500;
	}
	.sp_br {
		display: block;
	}
	/*h2*/
	.title,.title_zebra,.title_zebra_w {
		font-weight: 700;
	}
	.title_zebra::after,.title_zebra_w::after  {
		width: 25px;
		height: 22px;
		margin: 10px auto;
	}
	#top > div {
	  position: relative;
	  z-index: 10;
	  width: 100%;
	  height: 600px;
	}
	.topimg::after {
		width: 70%;
		height: 70%;
	}
	#insta > div > p {
		width: calc(100% / 2);
	}
	.insta_lightbox_close {
		top: 10px;
		right: 10px;
		width: 38px;
		height: 38px;
	}
	.toplogo img {
		width: 30%;
		padding: 20px 5px 0;
		left: 0;

	}
	article {
		padding: 50px 0;
	}
	.message {
		width: calc(100% - 20px);
		padding: 0 0 0 20px;
		top: 320px;
		left: 0;
	}
	.topimg_btm {
		width: 150px;
		top: 180px;
		left: 20px;
		filter: drop-shadow(2px 5px 4px #2F5252);
	}
	.news {
		width: calc(100% - 20px);
		padding: 0 20px 0 0;
		bottom: 0;
		right: 0;
	}
	#mind > div {
		display: block;
	}
	.mind_box {
		width: 100%;
		margin-bottom: 10px;
	}
	.mind_box > h3,.mind_box > p  {
		padding: 8px;
	}
	.menu_jp, .menu_en,#price > div > ul {
    	width: 100%;
	}
	#price > div > ul > li > p:last-of-type {
		width: 80px;
	}
	.prof_box {
		display: block;
	}
	.prof_box_l {
		width: 100%;
		max-width: 200px;
		margin: 0 auto;
	}
	.profile_name {
		padding-top: 20px;
		text-align: center;
	}
	.add_box {
		width: calc(100% - 20px);
		margin: 0 auto;
		flex-wrap: wrap;
	}
	.logo {
		width: 100%;
		margin: 0 auto 20px;
		max-width: 100px;
	}
}
