@charset "UTF-8";

/* 基本 */
:root {
	--v-space: clamp(90px, 9vw, 120px);
	--font-family-sans-serif: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
	--font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

body {
	margin: 0;
	background-color: #eeeeee;
	color: #222222;
	font-family: sans-serif;
	font-family: sans-serif;
	font-weight: 400;
	font-size: 20px;
	line-height: 1.5;
	text-align: left;
	background-image: url(../img/paisley.jpg);
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
figure,
ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

p {
	line-height: 1.6;
}

@media (min-width: 767px) {
	p {
		font-size: 18px;
	}
}

a {
	color: inherit;
	text-decoration: none;
}

a:hover {
	filter: brightness(90%) contrast(120%);
}

img {
	display: block;
	max-width: 100%;
	height: auto;
}

li.list {
	list-style: url(../img/list.png) inside;
	text-indent: -1em;
	padding-left: 1em;
}

ul,
li.bodyscalpt {
	list-style: square;
	text-indent: 0.5em;
	padding-left: 1em;
	margin-left: 40px;
	margin-bottom: 20px;
}

/* 横幅と左右の余白 */
.w-container {
	width: min(92%, 1060px);
	margin: auto;
	position: relative;
}

/* ヘッダー */
.header {
	height: 112px;
	background: url(../img/paisley.jpg);
	position: fixed;
	top: 0;
	right: 0;
	left: 0;
	z-index: 80;
}

.header-container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	height: 100%;
}

/* .parallax-box {
	height: 100%;
	background-attachment: fixed;
	background-position: center bottom;
	background-repeat: no-repeat;
	background-size: cover;
	box-sizing: border-box;
}

.img1 {
	background-image: url("../img/muse_top.jpg");
} */

/* ナビゲーションボタン */
.navbtn {
	padding: 0;
	outline: none;
	border: none;
	background: transparent;
	cursor: pointer;
	/* color: #aaaaaa; */
	font-size: 30px;
}

.open .navbtn {
	z-index: 110;
	color: #ffffff;
}

.navbtn .fa-bars {
	display: revert;
}

.open .navbtn .fa-bars {
	display: none;
}

.navbtn .fa-times {
	display: none;
}

.open .navbtn .fa-times {
	display: revert;
}

@media (min-width: 768px) {
	.navbtn {
		display: none;
	}
}

/* ナビゲーションメニュー：モバイル */
@media (max-width: 767px) {
	.nav {
		position: fixed;
		inset: 0 -100% 0 100%;
		z-index: 100;
		background-color: #c7c7c7ec;
		transition: transform 0.3s;
	}

	.open .nav {
		transform: translate(-100%, 0);
	}

	.open body {
		position: fixed;
		overflow: hidden;
	}

	.nav ul {
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		height: 45%;
		gap: 15px;
		color: #ffffff;
	}
}

/* ナビゲーションメニュー：PC */
@media (min-width: 768px) {
	.nav ul {
		display: flex;
		gap: 40px;
	}
}

.nav-link {
	color: #002d94;
	font-family: "Times New Roman", Times, serif;
	font-style: italic;
	font-size: 1.7rem;
	font-weight: 600;
}

.hero {
	height: 1000px;
	/* background-image: url("../img/muse_top.jpg"); */
	background-attachment: fixed;
	background-position: center bottom;
	background-repeat: no-repeat;
	background-size: cover;
	box-sizing: border-box;
}

.hero-container {
	display: grid;
	justify-items: center;
	align-content: center;
	height: 100%;
}

.hero h1 {
	margin-bottom: 42px;
	font-family: "Montserrat", sans-serif;
	font-size: clamp(48px, 5vw, 68px);
	min-height: 0vw;
	font-weight: 400;
	line-height: 1.3;
	text-align: center;
}

.hero p {
	margin-bottom: 72px;
}


/* ボタン */
.btn {
	display: block;
	width: 260px;
	padding: 10px;
	box-sizing: border-box;
	border-radius: 4px;
	background-color: #e8b368;
	color: #ffffff;
	font-size: 18px;
	text-align: center;
	text-shadow: 0 0 6px #00000052;
}

.btn-accent {
	background-color: #b72661;
}

/* 画像とテキスト */
.imgtext {
	padding: var(--v-space) 0;
	background-color: #ffffff;
}

.imgtext+.imgtext {
	padding-top: 0;
}

.imgtext-container {
	display: flex;
	flex-direction: column;
	gap: clamp(20px, 3vw, 25px);
	padding-top: 1.4rem;
}

.text-right {
	text-align: right;
}

.menu-wrap h2 {
	font-family: "Times New Roman", Times, serif;
	font-size: 40px;
	font-weight: 600;
	font-style: italic;
	text-align: center;
	text-shadow: 1px 1px 1px #6e6e6e;
	color: #cc6f6f;
	width: max-content;
	margin: 0 auto;
	padding: 20px 0;
}

@media (min-width: 768px) {
	.menu-wrap h2 {
		font-size: 50px;
		padding: 20px 0;
	}
}

.feature {
	margin-bottom: 60px;
}

.feature-title {
	display: table;
	width: 100%;
	height: 5rem;
	margin: 3rem 0 1rem 0;
	position: relative;
}

li.float_l {
	list-style: none;
	/*デフォルトの指定を解除*/
	display: inline-block;
	/*liをインラインブロック要素に*/
	padding: 10px 0;
	/*縦の余白を指定*/
	/* width: 400px; */
	/*幅を指定*/
	/* height: 400px; */
	/*高さを指定*/
	vertical-align: middle;
	/*縦方向を中央揃え*/
	text-align: center;
	/*横方向を中央揃え*/
}

@media (min-width:768px) {
	.feature-title {
		display: table;
		width: 100%;
		height: 8rem;
		margin: 3rem 0 2rem 0;
		position: relative;
	}
}


#feature h3 {
	display: table-cell;
	font-family: "Noto Serif JP", serif;
	font-size: 2.2rem;
	font-style: italic;
	text-align: center;
	text-shadow: 2px 2px 2px #ffffff, -2px -2px 2px #ffffff;
	color: #ba5674;
	vertical-align: middle;
	background-image: url(../img/papmarb6lge.jpg);
	border-radius: 16px;
}

@media (max-width: 768px) {
	#feature h3 {
		display: table-cell;
		font-family: "Noto Serif JP", serif;
		font-size: 1.8rem;
		font-style: italic;
		text-align: center;
		text-shadow: 2px 2px 2px #ffffff, -2px -2px 2px #ffffff;
		color: #db6d8e;
		vertical-align: middle;
		background-image: url(../img/papmarb6lge.jpg);
		border-radius: 16px;
	}
}

@media (min-width: 768px) {
	.imgtext-container {
		flex-direction: row;
		align-items: center;
	}

	.imgtext-container.reverse {
		flex-direction: row-reverse;
	}

	.imgtext-container>.text {
		flex: 1;
		min-width: 30em;
	}

	.imgtext-container>.img {
		flex: 1;
	}
}

.plus {
	display: grid;
	grid-auto-flow: column;
	justify-content: center;
	place-items: center;
	gap: 20px;
	list-style: none;
}

.grid-container {
	display: grid;
	grid-template-columns: 20% 30% 20% 30%;
	grid-template-rows: auto auto;
	/* 2行 */
	gap: 10px;
	/* アイテム間の隙間（必要に応じて調整） */
	width: 100%;
	max-width: 800px;
	margin: 0 auto;
	padding: 20px;
	background-color: #ffffff;
}

.item {
	/* background-color: #aee; */
	border: 1px solid #88c;
	padding: 20px;
	text-align: center;
	font-weight: bold;
}

/* 記事一覧 */
.posts {
	padding: var(--v-space) 0;
	background-color: #f3f1ed;
}

.posts-container {
	display: grid;
	grid-template-columns: repeat(1, 1fr);
	gap: 32px 25px;
}

@media (min-width: 768px) {
	.posts-container {
		grid-template-columns: repeat(2, 1fr);
	}
}

/* 記事一覧の記事 */
.post {
	background-color: rgba(255, 254, 254, 0.45);
}

.post a {
	display: block;
}

.post h3 {
	font-family: "Times New Roman", Times, serif;
	font-size: clamp(2em, 2vw, 20px);
	font-style: italic;
	font-weight: 800;
	background-image: url(../img/menu-h3.jpg);
	background-repeat: no-repeat;
	width: 100%;
	color: #5c5c5c;
	text-align: center;
	padding: 18px 0px;
	margin-bottom: 0.8rem;
	min-height: 0vw;
	text-shadow: 2px 4px 3px #7f7f7f82;
}

.post p {
	width: 98%;
	margin-left: auto;
	margin-right: auto;
	/* font-size: clamp(0.95rem, 1.6vw, 1.2rem); */
	min-height: 0vw;
}

.post img {
	/* aspect-ratio: 3 / 2; */
	object-fit: cover;
	width: 100%;
	border-radius: 1rem;
	margin-bottom: 1rem;
}

@supports not (aspect-ratio: 3 / 2) {
	.post img {
		height: 180px;
		border-radius: 1rem !important;
	}
}

img.maker-logo {
	/* aspect-ratio: 1/1; */
	width: auto;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 5px;
}

h4 {
	font-family: "Noto Serif JP", serif;
	border-left: 10px solid #ba5674;
	padding-left: 0.8rem;
	margin: 0.5em 0;
	color: #ba5674;
	font-size: 1.4rem;
}

.letter-red {
	font-weight: 600;
	color: #cc6f6f;
	background: linear-gradient(transparent 65%, #f7afaf 65%);
	font-weight: bold;
	/* background: linear-gradient(transparent 90%, #cc6f6f 20%); */
}

.parallax-box {
	height: 100%;
	background-attachment: fixed;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	box-sizing: border-box;
}

.img1 {
	background-image: url("../img/muse_top_bg.jpg");
	background-size: cover;
}

footer {
	position: relative;
}

.navbar {
	background: url(../img/paisley.jpg);
}

.nav-link {
	color: #002d94 !important;
	font-family: "Times New Roman", Times, serif !important;
	font-style: italic !important;
	font-size: 1.7rem;
	font-weight: 600;
}

.nav-link:hover {
	color: #7180d8 !important;
	font-family: "Times New Roman", Times, serif !important;
	font-style: italic !important;
	font-size: 1.7rem;
	font-weight: 600;
}

.nav-item {
	padding-left: 25px;
}

.navbar-toggler {
	background-color: #002d94 !important;
}

.button[aria-expanded="true"]>span {
	position: relative;
	display: none;
}

.button[aria-expanded="true"]::after {
	position: absolute;
	top: 20px;
	right: 20px;
	font-size: 28px;
	content: "X";
}

.menu-close {
	cursor: pointer;
	display: block;
	position: absolute;
	font-size: 24px;
	color: #9b9b9b;
	width: 40px;
	height: 40px;
	line-height: 40px;
	top: 20px;
	right: 5px;
	-webkit-transition: all 0.1s ease-in-out;
	-moz-transition: all 0.1s ease-in-out;
	-ms-transition: all 0.1s ease-in-out;
	-o-transition: all 0.1s ease-in-out;
	transition: all 0.1s ease-in-out;
}

.menu-close:hover {
	color: #ffffff;
	-webkit-transition: all 0.1s ease-in-out;
	-moz-transition: all 0.1s ease-in-out;
	-ms-transition: all 0.1s ease-in-out;
	-o-transition: all 0.1s ease-in-out;
	transition: all 0.1s ease-in-out;
}

#portfolio img {
	width: 100%;
	margin: 40px 0;
	;
}

/* About Wrap & Conf */
.name-zig {
	width: 100%;
	height: 17px;
	margin: 18px 0 18px;
	background: url(../img/name-zig.png) 0 0 repeat-x;
	background-size: 73px 17px;
}

.review-f {
	outline: 2px solid rgb(238, 183, 186);
	background-color: #ffffff;
}

.review-m {
	outline: 2px solid rgb(4, 186, 200);
	background-color: #ffffff;
}


.custom-list-f {
	list-style: none;
	padding: 0;
	margin: 0;
}

.custom-list-m {
	list-style: none;
	padding: 0;
	margin: 0;
}

.custom-list-f li {
	position: relative;
	padding-left: 60px;
	/* 画像の幅 + マージン分 */
	line-height: 1.5;
	margin: 0 0 10px;
	padding: 10px;
	padding-left: 70px;
	/* outline: 2px solid rgb(238, 183, 186);
	background-color: #ffffff; */
}

.custom-list-m li {
	position: relative;
	padding-left: 60px;
	/* 画像の幅 + マージン分 */
	line-height: 1.5;
	margin: 0 0 10px;
	padding: 10px;
	padding-left: 70px;
	/* outline: 2px solid rgb(238, 183, 186);
	background-color: #ffffff; */
}

.custom-list-f li::before {
	content: "";
	position: absolute;
	left: 10px;
	top: 50%;
	transform: translateY(-50%);
	width: 50px;
	height: 50px;
	background-image: url(../img/review1.png);
	/* ←ここに画像パス */
	background-size: contain;
	background-repeat: no-repeat;
}

.custom-list-m li::before {
	content: "";
	position: absolute;
	left: 10px;
	top: 50%;
	transform: translateY(-50%);
	width: 50px;
	height: 50px;
	background-image: url(../img/review3.png);
	/* ←ここに画像パス */
	background-size: contain;
	background-repeat: no-repeat;
}

.bodysculpt {
	list-style: none;
	padding: 0;
	margin: 8px;
}

.bodysculpt li {
	position: relative;
	padding-left: 50px;
	/* 画像の幅 + マージン分 */
	line-height: 1.5;
}

.bodysculpt li::before {
	content: "";
	position: absolute;
	left: 30px;
	top: 50%;
	transform: translateY(-50%);
	width: 20px;
	height: 20px;
	background-image: url('../img/869_ch_h.png');
	/* ←ここに画像パス */
	background-size: contain;
	background-repeat: no-repeat;
}








.price {
	/* font-family: "Tinos", sans-serif; */
	font-family: "Noto Serif JP", serif;
	font-style: italic;
	font-size: 1.6rem;
	color: rgb(204, 111, 111);
	text-align: right;
	margin-top: -0.2rem !important;
	margin-bottom: 1.6rem !important;
	padding-right: 1.2rem;
}

.yen {
	font-size: 1.4rem;
}

.brand {
	font-family: "Noto Serif JP", serif;
	display: block;
	font-size: 1.6rem;
	margin: 10px auto;
	color: rgb(204, 111, 111);
	text-align: center;
}

/* Footer */

.footer {
	background-image: url(../img/paisley-d.jpg);
	background-color: #2f2f2f;
	margin-top: 100px;
	padding: 30px;
}

.footer p {
	line-height: 2.5rem;
	font-size: 1.1rem;
	font-weight: 800;
	color: #858585;
	text-shadow: 1px 2px 3px #f1f1f1;
	text-align: center;
	width: fit-content;
	margin-left: auto;
	margin-right: auto;
}

.page-top {
	position: fixed;
	width: 100%;
	height: 55px;
}

.page-top a {
	width: 100px;
	height: 55px;
	display: block;
	margin-left: auto;
	margin-right: auto;
}

footer img {
	margin-left: auto;
	margin-right: auto;
}

footer .copy {
	text-align: center;
	color: #4c4c4c;
	padding: 0;
	font-size: 0.92rem;
}

.gmap {
	position: relative;
	padding-bottom: 56.25%;
	padding-top: 30px;
	height: 0;
	overflow: hidden;
	/* border: 3px solid #989898; */
}

.gmap iframe,
.gmap object,
.gmap embed {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}