:root {
	--main-color: #8AADCF;
}
html {
	scroll-behavior: smooth;
	scroll-padding-top: 50px;
}
body {
	font-family: 'Noto Sans JP';
	position: relative;
	line-height: 1.7;
	font-size: 15px;
}
a, a:hover {
	transition: 1s;
}
@font-face {
	font-family: 'Noto Sans JP';
	font-style: normal;
	font-weight: 400;
	src: local("Noto Sans CJK JP Regular"),
		url(//fonts.gstatic.com/ea/notosansjp/v5/NotoSansJP-Regular.woff2) format('woff2'),
		url(//fonts.gstatic.com/ea/notosansjp/v5/NotoSansJP-Regular.woff) format('woff'),
		url(//fonts.gstatic.com/ea/notosansjp/v5/NotoSansJP-Regular.otf) format('opentype');
}
.jost {
	font-family: "Jost", serif;
	font-optical-sizing: auto;
	font-weight: 400;
	font-style: normal;
}
/* ----------------------------------------
common
---------------------------------------- */
@media screen and (min-width: 641px) {
	.pc_off {
		display: none;
	}
	header {
		position: fixed;
		width: 100%;
		padding: 0 10vw;
		background: rgba(255, 255, 255, 0.8);
		box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
		height: 70px;
		display: flex;
		justify-content: space-between;
		align-items: center;
		z-index: 1;
		ul {
			display: flex;
			margin-left: auto;
			li {
				a {
					white-space: nowrap;
					&:hover {
						color: var(--main-color);
					}
				}
				&:not(:last-child):after {
					content: "/";
					padding: 0 20px;
				}
			}
		}
	}
	.h__ttl {
		letter-spacing: 2px;
		margin-right: 3vw;
		white-space: nowrap;
		line-height: 1.2;
		a {
			p {
				font-size: 22px;
			}
			&:hover {
				color: var(--main-color);
			}
		}
	}
	.h__contact {
		margin-left: 3vw;
		a {
			height: 40px;
			width: 200px;
		}
	}
}
@media screen and (max-width: 640px) {
	.sp_off {
		display: none;
	}
	header {
		z-index: 9999;
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: 60px;
		display: flex;
		align-items: center;
		justify-content: space-between;
		background: rgba(255, 255, 255, 0.7);
	}
	.h__ttl {
		display: flex;
		letter-spacing: 2px;
		white-space: nowrap;
		line-height: 1.2;
		a {
			display: block;
			padding: 5px 10px;
			p {
				font-size: 22px;
			}
			&:hover {
				color: var(--main-color);
			}
		}
	}
	.h__btn__menu {
		width: 80px;
		height: 50px;
		border-left: 1px solid #999;
		padding-left: 5px;
		margin-right: 10px;
		display: flex;
		align-items: center;
		justify-content: center;
		svg {
			margin-right: 5px;
		}
	}
	/* overlay
---------------------------------------- */
	#menu-toggle {
		display: none;
	}
	.overlay {
		position: fixed;
		inset: 0;
		background: linear-gradient(to bottom right, #D5CAE3, var(--main-color));
		opacity: 0;
		visibility: hidden;
		transition: all 0.3s ease;
	}
	.overlay__contents {
		padding: 10vw;
	}
	.overlay .h__ttl {
		padding: 5px;
	}
	.overlay__li {
		margin-bottom: 30px;
		li {
			a {
				display: flex;
				align-items: center;
				justify-content: space-between;
				padding: 10px 0;
				color: #111;
				border-bottom: 1px solid rgba(255, 255, 255, 0.2);
				span {
					font-weight: bold;
					font-size: 16px;
				}
				svg {
					fill: #111;
				}
				&:hover span {
					color: var(--sub-color);
				}
				&:hover svg {
					fill: var(--sub-color);
				}
			}
		}
	}
	.overlay__contact {
		a {
			height: 50px;
			font-size: 16px;
		}
	}
	#menu-toggle:checked~.overlay {
		opacity: 1;
		visibility: visible;
	}
	.close-btn {
		position: absolute;
		top: 0;
		right: 15px;
		font-size: 2rem;
		color: #fff;
		cursor: pointer;
		user-select: none;
	}
	#menu-toggle:checked~.overlay {
		opacity: 1;
		visibility: visible;
	}
}
.pagettl {
	background: linear-gradient(to bottom right, #D5CAE3, var(--main-color));
	padding-top: 70px;
	h1, p {
		font-size: 24px;
		display: flex;
		align-items: center;
		justify-content: center;
		height: 150px;
	}
}
@media screen and (max-width: 640px) {
	.pagettl {
		padding-top: 60px;
		h1, p {
			font-size: 20px;
			line-height: 1.4;
			height: 100px;
		}
	}
}
.breadcrumb {
	background: #eee;
	font-size: 13px;
	color: #999;
	height: 24px;
	line-height: 24px;
	padding: 0 20px;
	span {
		padding: 0 5px;
	}
	a:hover {
		color: #111;
	}
}
@media screen and (max-width: 640px) {
	.breadcrumb {
		padding: 0;
		overflow-x: auto;
		overflow-y: hidden;
		-webkit-overflow-scrolling: touch;
		white-space: nowrap;
	}
}
.nav-links {
	display: flex;
	justify-content: center;
	padding-top: 40px;
	.page-numbers {
		margin: 0 5px;
		width: 40px;
		height: 40px;
		display: flex;
		align-items: center;
		justify-content: center;
		color: #111;
		background: #fff;
		border: 1px solid var(--main-color);
		color: var(--main-color);
	}
	.current {
		background: var(--main-color);
		border: 1px solid var(--main-color);
		color: #fff;
	}
	.prev, .next {
		width: 60px;
	}
	a:hover {
		background: var(--main-color);
		color: #fff;
	}
}
.copy {
	font-size: 12px;
	letter-spacing: 2px;
	text-align: center;
	padding: 10px 0;
	background: #eee;
}
.basic_btn {
	a {
		display: flex;
		align-items: center;
		justify-content: center;
		box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
		border: 1px solid var(--main-color);
		color: var(--main-color);
		border-radius: 5px;
		background: #fff;
		&:hover {
			background: var(--main-color);
			color: #fff;
		}
	}
}
/* ----------------------------------------
top
---------------------------------------- */
.top_main {
	position: relative;
}
@media screen and (min-width: 641px) {
	.top_main {
		display: flex;
		align-items: center;
		height: 640px;
	}
	.top_h1 {
		width: 40%;
		text-align: center;
		letter-spacing: 2px;
		p {
			font-size: 28px;
		}
	}
	.top_image {
		overflow: hidden;
		position: relative;
		width: 60%;
		height: 100%;
	}
}
@media screen and (max-width: 640px) {
	.top_h1 {
		display: none;
	}
	.top_image {
		overflow: hidden;
		position: relative;
		height: 400px;
	}
}
.top_image img {
	object-fit: cover;
	object-position: left center;
	width: 100%;
	height: 100%;
}
@media screen and (min-width: 641px) {
	.top_image img {
		object-position: center center;
	}
}
.top_main_txt {
	box-sizing: border-box;
}
@media screen and (min-width: 641px) {
	.top_main_txt {
		width: 60%;
		margin-left: 40%;
		padding: 50px 10%;
	}
}
@media screen and (max-width: 640px) {
	.top_main_txt {
		width: 100%;
		padding: 30px 10%;
	}
}
.conts {
	position: relative;
	overflow: hidden;
	padding: 50px 0;
}
.conts_box {
	margin: 0 auto 100px;
}
.conts:after {
	position: absolute;
	content: url("../images/common/bg_l.webp");
	top: 100px;
	right: -25%;
	z-index: -1;
}
h2.top_h2 {
	font-size: 23px;
	letter-spacing: 2px;
	position: relative;
	text-align: center;
	margin: 0 auto 30px;
	width: 200px;
	height: 70px;
	display: flex;
	flex-direction: column;
	align-items: center;
}
h2.top_h2:before {
	content: "";
	display: block;
	background: url(../images/common/mark.webp);
	background-size: 70px;
	width: 70px;
	height: 70px;
	animation: rotation 3s infinite linear;
}
@keyframes rotation {
	from {
		transform: rotate(0deg);
	}
	to {
		transform: rotate(359deg);
	}
}
h2.top_h2 p {
	margin-top: -55px;
}
.top_can {
	background: rgba(234, 237, 242, 0.8);
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	padding: 3%;
}
.top_can_box {
	text-align: center;
	img {
		animation: rotation3 1s ease-in-out;
	}
	:hover img {
		animation: rotation2 1s ease-in-out;
	}
}
@media screen and (min-width: 641px) {
	.top_can {
		max-width: 1200px;
	}
	.top_can_li {
		width: calc(100%/3);
		max-width: 350px;
		padding: 2%;
	}
	.top_can_box img {
		max-width: 100%;
	}
}
@media screen and (max-width: 640px) {
	.top_can {
		width: 92%;
	}
	.top_can_li {
		margin: 3%;
	}
	.top_can_box img {
		max-width: 180px;
	}
}
@keyframes rotation2 {
	from {
		transform: rotateY(0deg);
	}
	to {
		transform: rotateY(360deg);
	}
}
@keyframes rotation3 {
	from {
		transform: rotateY(360deg);
	}
	to {
		transform: rotateY(0deg);
	}
}
.top_can_box p {
	font-weight: bold;
	font-size: 16px;
	padding: 10px 0;
	letter-spacing: 2px;
}
.top_me {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
}
@media screen and (min-width: 641px) {
	.top_me_info {
		width: 35%;
	}
	.top_me_photo {
		margin-right: 10%;
	}
}
@media screen and (max-width: 640px) {
	.top_me_info {
		width: 90%;
	}
	.top_me_photo {
		margin-bottom: 40px;
	}
}
.top_me_photo {
	text-align: center;
	img {
		width: 250px;
		height: 250px;
		border-radius: 125px;
		margin-bottom: 20px;
	}
	p {
		font-size: 18px;
	}
	span {
		letter-spacing: 2px;
	}
}
.top_me_comment {
	margin-bottom: 30px;
}
.top_me_sns {
	ul {
		display: flex;
		li {
			width: 50px;
			height: 50px;
			margin-right: 10px;
			a {
				width: 100%;
				height: 100%;
			}
		}
	}
}
.top_me_sns a img {
	width: 100%;
	animation: rotation3 1s ease-in-out;
}
.top_me_sns a:hover img {
	animation: rotation2 1s ease-in-out;
}
.top_works {
	display: flex;
	justify-content: center;
}
.top_works_box {
	position: relative;
	a {
		display: block;
	}
}
.top_works_image {
	margin-bottom: 20px;
	width: 100%;
	position: relative;
	overflow: hidden;
	box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
	&:before {
		content: "";
		display: block;
		padding-top: 100%;
	}
	img {
		position: absolute;
		width: 100%;
		height: 100%;
		top: 0;
		right: 0;
		bottom: 0;
		left: 0;
		margin: auto;
		object-fit: cover;
		transition: 1s all;
		object-position: 50% 0;
	}
}
.top_works_ttl {
	font-weight: bold;
}
.top_works_box a:hover {
	color: var(--main-color);
}
.top_works_box a:hover img {
	transform: scale(1.2, 1.2);
}
.top_works_category {
	position: absolute;
	top: 5px;
	left: 5px;
	color: #fff;
	font-weight: bold;
	font-size: 11px;
	padding: 2px 5px;
	background: linear-gradient(to right, #eed3e8, var(--main-color));
}
@media screen and (min-width: 641px) {
	.top_works_box {
		width: calc(100%/3);
		max-width: 400px;
		margin: 2%;
	}
}
@media screen and (max-width: 640px) {
	.top_works {
		flex-wrap: wrap;
	}
	.top_works_box {
		width: 90%;
		margin: 5%;
		padding-bottom: 5%;
		border-bottom: 1px solid #ccc;
	}
}
.top_works_more {
	display: flex;
	justify-content: center;
	margin-top: 40px;
	a {
		display: flex;
		align-items: center;
		justify-content: center;
		background: #fff;
		color: #111;
		height: 60px;
		box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
		border: 1px solid var(--main-color);
		color: var(--main-color);
		border-radius: 10px;
		&:hover {
			background: var(--main-color);
			color: #fff;
		}
	}
}
@media screen and (min-width: 641px) {
	.top_works_more a {
		width: 30%;
		min-width: 500px;
	}
}
@media screen and (max-width: 640px) {
	.top_works_more a {
		width: 90%;
	}
}
/* ----------------------------------------
works
---------------------------------------- */
.works {
	padding: 50px 0;
}
@media screen and (max-width: 640px) {
	.works {
		padding: 40px 0;
	}
}
.works-filter {
	display: flex;
	justify-content: center;
	li {
		padding: 3px;
		a {
			display: flex;
			align-items: center;
			padding: 0 15px;
			height: 28px;
			border-radius: 14px;
			color: var(--main-color);
			border: 1px solid var(--main-color);
			&:hover {
				background: var(--main-color);
				color: #fff;
			}
		}
	}
}
.works_li {
	display: flex;
	justify-content: center;
}
.works_li_box {
	position: relative;
	a {
		display: block;
	}
}
.works_li_image {
	margin-bottom: 20px;
	width: 100%;
	position: relative;
	overflow: hidden;
	box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
	&:before {
		content: "";
		display: block;
		padding-top: 100%;
	}
	img {
		position: absolute;
		width: 100%;
		height: 100%;
		top: 0;
		right: 0;
		bottom: 0;
		left: 0;
		margin: auto;
		object-fit: cover;
		transition: 1s all;
		object-position: 50% 0;
	}
}
.works_li_ttl {
	font-weight: bold;
}
.works_li_box a:hover {
	color: var(--main-color);
}
.works_li_box a:hover img {
	transform: scale(1.2, 1.2);
}
.works_li_category {
	position: absolute;
	top: 5px;
	left: 5px;
	color: #fff;
	font-weight: bold;
	font-size: 11px;
	padding: 2px 5px;
	background: linear-gradient(to right, #eed3e8, var(--main-color));
}
@media screen and (min-width: 641px) {
	.works_li_box {
		width: calc(100%/3);
		max-width: 400px;
		margin: 2%;
	}
}
@media screen and (max-width: 640px) {
	.works_li {
		flex-wrap: wrap;
	}
	.works_li_box {
		width: 90%;
		margin: 5%;
		padding-bottom: 5%;
		border-bottom: 1px solid #ccc;
	}
}
.works_page {
	width: 1200px;
	margin: 0 auto;
}
@media screen and (max-width: 640px) {
	.works_page {
		width: 92%;
	}
}
.works_page_intro {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 40px;
}
.works_page_ttl {
	font-size: 22px;
}
.works_link {
	a {
		height: 40px;
		width: 200px;
	}
}
.works_page_content {
	background: #f5f5f5;
	padding: 20px;
	margin-bottom: 40px;
}
.works_page_image {
	max-width: 1200px;
	text-align: center;
	img {
		max-width: 1200px;
		height: auto;
		box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
		margin-bottom: 40px;
	}
}
.works_back {
	padding-top: 50px;
	display: flex;
	justify-content: center;
	a {
		height: 50px;
		width: 400px;
	}
}
@media screen and (max-width: 640px) {
	.works_page_intro {
		display: block;
	}
	.works_page_ttl {
		margin-bottom: 15px;
	}
	.works_page_image {
		img {
			width: 100%;
		}
	}
	.works_link, .works_back {
		a {
			width: 100%;
		}
	}
}
/* ----------------------------------------
contact
---------------------------------------- */
.contact {
	display: flex;
	justify-content: center;
	padding: 50px 0;
	&>div {
		width: 60%;
	}
	br {
		display: none;
	}
}
.contact_box {
	display: flex;
	flex-direction: column;
	margin: 0 auto 10px;
	max-width: 600px;
	.contact_item {
		width: 100%;
	}
	input, textarea {
		border: 1px solid #ccc;
		padding: 10px;
		border-radius: 5px;
		width: 100%;
	}
	textarea {
		height: 120px;
	}
}
.wpcf7-submit {
	margin: 50px auto 0;
	display: block;
	background: var(--main-color);
	color: #111;
	height: 60px;
	width: 300px;
	box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
	border: 1px solid var(--main-color);
	color: #fff;
	text-align: center;
	font-size: 18px;
	&:hover {
		background: #7695b3;
	}
}
@media screen and (max-width: 640px) {
	.contact {
		&>div {
			width: 92%;
		}
	}
}