@charset "UTF-8";
/* CSS Document */
body{
	color: #333;
	margin: 0 auto;
	padding: 0px;
	line-height: 1;
	font-family: "Noto Serif JP", serif;
}

*{
	list-style: none;
	margin: 0px;
	padding: 0px;
	box-sizing: border-box;
}

html{
	overflow-x: hidden;
}

p{
	line-height: 1.8em;
}

th{
	text-align: left;
}

a{
	outline: none;
}

::placeholder {
	color: #ddd;
	font-size: 12px;
}

address{
	font-style: inherit;
}

.clear{
	clear: both;
}

.left{
	float: left;
}

.right{
	float: right;
}

.block{
	overflow: hidden;
}

fit{
	object-fit: cover;
	font-family: 'object-fit: cover;';
}

just{
	text-align: justify;
	text-justify: inter-ideograph;
}

.min{
	font-family: 'Noto Serif JP', serif;
}

img{
	border: none;
	height: auto;
	line-height: 1em;
	margin: 0px;
	padding: 0px;
	vertical-align: bottom;
}

img.centered {
	display: block;
	margin-left: auto;
	margin-right: auto;
}

img.alignright {
	padding: 4px;
	margin: 0 0 2px 10px;
	display: inline;
}

img.alignleft {
	padding: 4px;
	margin: 0 10px 2px 0;
	display: inline;
}

.alignright {
	float: right;
}

.alignleft {
	float: left;
}

a,
a img{
	transition: 0.3s;
}

a[href^="tel:"] {
	pointer-events: none;
	color:#666;
	text-decoration: underline;
}

input[type="submit"] {
	-webkit-appearance: none;
	border-radius: 0;
}

.sp{
	display: none;
}

.menu-wrapper {
	position: relative;
	display: none;
}

.menu-icon {
	width: 40px;
	height: 30px;
	position: fixed; /* ← fixedにして常に左上固定 */
	top: 20px;
	right: 20px;
	cursor: pointer;
	z-index: 3;
	display: inline-block;
}

.menu-icon span {
	display: block;
	height: 2px;
	margin: 6px 0;
	background: #333;
	border-radius: 2px;
	transition: 0.4s;
}

/* ハンバーガーがXに変形 */
#menu-toggle:checked + .menu-icon span:nth-child(1) {
	transform: translateY(7px) rotate(45deg);
}
#menu-toggle:checked + .menu-icon span:nth-child(2) {
	opacity: 0;
}
#menu-toggle:checked + .menu-icon span:nth-child(3) {
	transform: translateY(-10px) rotate(-45deg);
}

/* オーバーレイ背景 */
.overlay {
	position: fixed;
	inset: 0;
	background: rgba(0,0,0,0.5);
	opacity: 0;
	pointer-events: none;
	transition: 0.4s;
	z-index: 1;
}

#menu-toggle:checked ~ .overlay {
	opacity: 1;
	pointer-events: auto;
}

/* メニュー本体（左から出す） */
.menu {
	position: fixed;
	top: 0;
	right: -250px; /* ← 初期位置を左へ */
	width: 250px;
	height: 100%;
	background: #fff;
	box-shadow: 2px 0 8px rgba(0,0,0,0.2);
	transition: right 0.4s ease;
	z-index: 2;
}

#menu-toggle:checked ~ .menu {
	right: 0; /* ← 開いたときは左0へ */
}

.menu ul {
	list-style: none;
	padding: 60px 20px;
}

.menu li {
	margin: 20px 0;
	text-transform: uppercase;
}

.menu a {
	text-decoration: none;
	color: #333;
	font-size: 15px;
	transition: color 0.3s;
}

.menu a:hover {
	color: #007bff;
}

/*----------------------------contents----------------------------*/

header{
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	margin: 0 auto;
	box-sizing: border-box;
	padding: 20px 50px;
	border-bottom: 1px solid #eee;
	z-index: 1;
	position: relative;
	background-color: #fff;
}

h1{
	text-align: left;
	padding-top: 0;
}

ul#nav{
	display: flex;
	justify-content: flex-end;
	text-transform: uppercase;
}

ul#nav li{
	margin: 0px 0 0 40px;
	padding-top: 20px;
	letter-spacing: 0.1em;
	font-size: 15px;
}

ul#nav li:last-child{
	margin-top: -10px;
}

ul#nav li a{
	color:#333;
	text-decoration: none;
}

#main{
	max-width: 1180px;
	width: 94%;
	margin: 0 auto;
}

h2.ttl{
	font-family: "Forum", serif;
	font-size: 60px;
	line-height: 1.4em;
	text-transform: uppercase;
	text-align: left;
	font-weight: 400;
	margin-top: 200px;
	letter-spacing: 0.1em;
	padding-bottom: 50px;
}

h2.ttl#completed{
	margin-top: 100px;
}

h2.ttl#aboutus{
	margin-top: 0px;
	padding-bottom: 30px;
}

h2.ttl.center{
	text-align: center;
}

h2.ttl span{
	display: block;
	font-size: 14px;
	line-height: 1.4em;
	letter-spacing: 0.05em;
	font-family: "Noto Serif JP", serif;
}

p#concept-ttl{
	font-size: 28px;
	text-align: center;
	line-height: 1.4em;
	padding-bottom: 45px;
}

p#concept-ttl span{
	border-bottom: 1px solid #333;
}

#concept-txt{
	display: flex;
	justify-content: center;
}

/*#concept-txt div{
	max-width: 300px;
}

#concept-txt div img{
	width: 300px;
	height: 400px;
	object-fit: cover;
	font-family: 'object-fit: cover;';
}*/

#concept-txt p{
	text-align: center;
	font-size: 15px;
	line-height: 3em;
	letter-spacing: 0.1em;
}

#about-list{
	justify-content: space-between;
	display: flex;
	margin-top: 200px;
}

#about-list #img{
	width: 42%;
}

#about-list #txt{
	width: 55%;
}

#about-list #txt h3{
	font-weight: 400;
	line-height: 1.6em;
	font-size: 32px;
}

#about-list #txt p{
	font-weight: 400;
	line-height: 2.4em;
	font-size: 15px;
	padding-top: 20px;
}

#about-list #txt b{
	font-weight: 400;
	line-height: 1.4em;
	font-size: 16px;
	text-align: right;
	padding-top: 20px;
	display: block;
}

ul#works-list{
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

ul#works-list li{
	width: 25%;
}

ul#works-list li img{
	width: 100%;
}

#mainimg{
	overflow: hidden;
	position: relative;
	z-index: 1;
}

#mainimg p{
	position: absolute;
	top: 0px;
	left: 0px;
	right: 0px;
	bottom: 0px;
	height: 150px;
	margin: auto;
	color:#fff;
	font-size: 40px;
	text-align: center;
	letter-spacing: 0.1em;
	line-height: 2em;
}

#mainimg p span{
	background: rgba(255, 255, 255, 0.75);
	padding: 12px 18px;
	line-height: 2.5em;
	backdrop-filter: blur(6px);
	-webkit-backdrop-filter: blur(6px);
	border-radius: 6px;
	box-shadow: 0 4px 12px rgba(0,0,0,0.08);
	letter-spacing: 0.05em;
	color:#8d5025;
}

#mainimg img{
	object-fit: cover;
	font-family: 'object-fit: cover;';
	width: 50%;
	height: 700px;
	vertical-align: top;
}

.footer-001 {
	display: flex;
	align-items: center;
	flex-direction: column;
	padding: 25px 10px 10px;
	border-top: 1px solid #eee;
}

.footer-001__logo {
	width: 130px;
	height: 30px;
}

.footer-001__list {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 0 1.5em;
	list-style-type: none;
	margin: 0 0 .5em;
	padding: .5em;
}

.footer-001__link {
	color: #333;
	font-weight: 200;
	text-decoration: none;
}

.footer-001 nav{
	padding-top: 20px;
}

.footer-001__list li:not(:last-of-type) .footer-001__link::after {
	margin-left: 1em;
	content: "/";
}

.footer-001__copyright {
	margin: 0;
	color: #333;
	font-weight: 200;
	position: fixed;
	font-size: 10px;
	writing-mode: vertical-rl;
	text-orientation: mixed;
	top: 0px;
	left: 10px;
	bottom: 0px;
	height: 170px;
	margin: auto;
	
}








