@charset "utf-8";
/* CSS Document */
html {
	font-size: 62.5%;
}
body {
	font-size: 1.6rem;
	font-family: "Noto Sans JP", sans-serif, "Open Sans", sans-serif, "Prompt", sans-serif;
	color: #4d4338;
	letter-spacing: 0.1rem;
	line-height: 2;
	background-color: #f4e8da;
}
a {
	text-decoration: none;
	color: #4d4338;
}
h1 {
	margin: 0;
}

.wrapper {
	width: 1080px;
	margin: 0 auto;
}
*[lang="en"] {
	font-family: "Open Sans";
}

.br-pc {
	display: block;
}
.br-sp {
	display: none;
}
.aline_center {
	text-align: center;
}

/*===============================

home

===============================*/
/*header*/
.page-header {
	width: 1080px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.logo {
	margin: 20px 0;
	position: relative;
	width: 120px;
	height: 120px;
}
.logo-frame {
	position: absolute;
	width: 100%;
	top: 0;
	left: 0;
}
.logo-text {
	position: absolute;
	left: 50%;
	font-family: "Kalam", cursive;
	font-size: 24px;
	line-height: 30px;
	top: 30px;
	text-align: center;
	transform: translate(-50%);
}

.main-nav {
	display: flex;
	list-style: none;
}
.nav-button {
	display: none;
}
.main-nav li a {
	margin-left: 64px;
	font-size: 1.8rem;
	position: relative;
}
.main-nav li a::after {
	content: "";
	position: absolute;
	bottom: -10px;
	left: -10%;
	width: 120%;
	height: 1px;
	background: #b7a186;
	/*アニメーションの指定*/
	transition: all 0.3s;
	transform: scale(0, 1);
	transform-origin: center top;
}

.main-nav li.current a::after,
.main-nav li a:hover::after {
	transform: scale(1, 1);
}
/*hero-image*/
.main-image {
	margin-top: -360px;
}
.circle-box {
	width: 100%;
	height: 520px;
	position: relative;
}
.circle {
	position: absolute;
	height: 520px;
	right: 0px;
}
.myname {
	position: absolute;
	color: #ffffff;
	width: fit-content;
	top: 190px;
	right: 198px;
	text-align: center;
	font-family: "Open Sans", sans-serif;
	font-weight: 400;
	font-size: 5rem;
	line-height: 1.5;
	letter-spacing: 0.4rem;
}
/*about*/
.history{
	display: none;
}
.section-title {
	font-family: "Noto Sans JP", sans-serif;
	font-weight: 400;
	font-size: 3.6rem;
	margin-top: 160px;
	margin-bottom: 0px;
}
.subtitle {
	display: flex;
	align-items: center;
	font-size: 2.4rem;
	font-family: "Open Sans", sans-serif;
	font-weight: 100;
	margin-bottom: 80px;
}
.subtitle:before {
	border-top: 1px solid;
	border-right: 1px solid;
	content: "";
	width: 30px;
	margin-right: 20px;
}
.profile-box {
	display: flex;
	align-items: center;
}
.profile-photobox {
	display: block;
	width: 400px;
	height: 400px;
	margin-right: 80px;
}
.profile-photobox img {
	width: 400px;
}
.profile-text {
	width: 600px;
	font-family: "Noto Sans JP", sans-serif;
	font-weight: 100;
}
.profile-name {
	font-size: 2.4rem;
	font-weight: 400;
	padding-right: 20px;
}
.profile-undername {
	font-size: 2.4rem;
	font-weight: 400;
}
.about-button {
	padding: 56px 0 0 488px;
}
.button {
	position: relative;
	font-family: "Noto Sans JP", sans-serif;
	font-weight: 400;
}
.button a::after {
	content: "";
	display: block;
	width: 86px;
	height: 1px;
	position: absolute;
	background-color: #4d4338;
	bottom: -10px;
	left: 0px;
	transition: all 0.3s;
}
.button a::before {
	position: absolute;
	font-family: "Font Awesome 5 Free";
	content: "\f105";
	display: block;
	font-weight: 600;
	left: 100px;
	bottom: -25px;
	transition: all 0.3s;
}
.button a:hover::after {
	width: 100px;
}
.button a:hover::before {
	left: 105px;
}

/*works blog*/

.post-box {
	margin-bottom: 40px;
	padding-right: 10px;
	padding-left: 10px;
}
.post-items {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-around;
}
.post-categories {
	font-family: "Open Sans", sans-serif;
}

.category-name {
	position: relative;
}
.post-text {
	font-size: 1.5rem;
	margin-top: 20px;
	padding-left: 8px;
	border-left: solid 1px #4d4338;
	width: 300px;
}
.post-text h3 {
	font-size: 1.5rem;
}
.post-image {
	position: relative;
}

.post-image img {
	width: 100%;
	height: auto;
	cursor: pointer;
	transition: all 0.3s;
}
.post-image p {
	font-family: "Open Sans", sans-serif;
	font-weight: 200;
	color: #b7a186;
	font-size: 1.4rem;
	display: none;
	position: absolute;
	bottom: 24px;
	left: 50%;
	transform: translateX(-50%);
}
.post-image,
.post-image img:hover {
	border-radius: 10%;
}
.post-image:hover p {
	display: block;
}
.post-button {
	padding-top: 64px;
	padding-left: 968px;
}

/*contact*/
.contact-title {
	font-family: "Open Sans", sans-serif;
	font-weight: 800;
	font-size: 3.2rem;
	text-align: center;
	margin-top: 164px;
	margin-bottom: 64px;
}
.contact-text {
	text-align: center;
	margin-bottom: 40px;
}

label {
	display: block;
	font-family: "Noto Sans JP", sans-serif;
	font-weight: 500;
	margin-bottom: 10px;
}
label span {
	border: 1px #b7a186 solid;
	background-color: #b7a186;
	border-radius: 6px;
	padding: 1px 5px;
	color: #fff;
	font-size: 1.4rem;
	margin-left: 10px;
}

input[type="text"],
input[type="email"],
textarea {
	box-sizing: border-box;
	outline: none;
	font-family: "Noto Sans JP", sans-serif;
	font-weight: 400;
	background-color: rgba(255, 255, 255, 0.5);
	border: none;
	border-radius: 5px;
	padding: 10px;
	font-size: 1.6rem;
	resize: none;
	margin-bottom: 20px;
}
input[type="text"],
input[type="email"] {
	width: 100%;
	max-width: 1080px;
}
textarea {
	width: 100%;
	max-width: 1080px;
}
input[type="submit"] {
	font-family: "Open Sans", sans-serif;
	font-size: 2.4rem;
	letter-spacing: 0.3rem;
	margin-top: 80px;
	margin-bottom: 300px;
	border: none;
	border-radius: 60px;
	cursor: pointer;
	background-color: #b7a186;
	color: #4d4338;
	padding: 10px 80px;
	transition: box-shadow 0.5s;
	background: linear-gradient(145deg, #dcd1c4, #fff8e9);
	box-shadow: 8px 8px 24px #cfc5b9, -8px -8px 24px #fffffb;
}
input[type="submit"]:hover {
	box-shadow: 8px 8px 24px transparent, -8px -8px 24px transparent, inset 8px 8px 24px #cfc5b9,
		inset -8px -8px 24px #fffffb;
}
input[type="submit"]:after {
	font-family: "Font Awesome 5 Free";
	content: "\f135";
	font-weight: 900;
}
.submit-button {
	text-align: center;
}
.footer {
	text-align: center;
}
.copyright {
	font-family: "Open Sans", sans-serif;
	margin: 0 auto;
	font-size: 1.4rem;
}

/*===============================

下層ページ共通

===============================*/
.page-title {
	padding-top: 104px;
	font-size: 8rem;
	font-weight: 400;
	margin-bottom: 0;
}
.page-subtitle {
	font-family: "Open Sans", sans-serif;
	font-weight: 100;
	font-size: 6.8rem;
	position: relative;
	padding-left: 130px;
	margin-bottom: 100px;
}
.page-subtitle::before {
	position: absolute;
	top: 50%;
	left: 0px;
	content: "";
	width: 100px;
	height: 1px;
	background-color: #4d4338;
}
/*===============================

ページャースタイル

===============================*/
.wp-pagenavi {
	/* 全体 */
	margin: 40px 0;
	font-size: 12px;
	text-align: center;
}
.wp-pagenavi a {
	/* フォント色 */
	color: #4d4338;
}
.wp-pagenavi .previouspostslink,
.wp-pagenavi .nextpostslink {
	font-size: 1.8rem;
}

.wp-pagenavi .current,
.wp-pagenavi a.page,
.wp-pagenavi .previouspostslink,
.wp-pagenavi .nextpostslink {
	display: inline-block;
	margin: 0px 6px 0px 0;
	width: 40px;
	height: 40px;
	line-height: 40px;
	border: solid 1px #4d4338;
	border-radius: 50%;
}
/*===============================

aboutページ

===============================*/

/*main-profile*/
.page-section-title {
	position: relative;
	font-family: "Open Sans", sans-serif;
	font-weight: 200;
	font-size: 2.4rem;
	width: auto;
	display: table;
	padding-right: 10px;
	margin-bottom: 20px;
}

.page-section-title::after {
	content: "";
	position: absolute;
	height: 1px;
	width: 24px;
	background-color: #4d4338;
	top: 50%;
	left: 110%;
}
.main-profilebox {
	margin-top: 120px;
	display: flex;
	flex-flow: row-reverse;
	justify-content: space-between;
}
.main-profile-text {
	width: 50%;
	font-family: "Noto Sans JP", sans-serif;
	margin-bottom: 20px;
}
.profile-items li {
	list-style: none;
	font-family: "Noto Sans JP", sans-serif;
	font-weight: 100;
}
.profile-items {
	padding: 0;
}
.skills-title {
	margin-top: 56px;
}
.skill-items {
	padding: 0;
	margin: 0;
	display: flex;
}
.skill-text {
	margin-bottom: 0;
}
.skill-items li {
	padding: 8px 0;
	margin-right: 20px;
	list-style: none;
	font-family: "Open Sans", sans-serif;
	font-size: 2rem;
	font-weight: 600;
	border: solid #4d4338 1px;
	border-radius: 5px;
	background-color: #4d4338;
	width: 56px;
	text-align: center;
	color: #fff;
}
.another-skill-items {
	padding-top: 10px;
	font-family: "Open Sans", sans-serif;
	font-size: 2rem;
}
.main-profile-image {
	margin-top: 80px;
	width: 30%;
}
.main-profile-image img{
	width: 100%;
}

/*vision*/
.vision {
	margin-top: 64px;
}

.vision-text {
	text-align: center;
}
.vision-text span {
	font-weight: 600;
	font-size: 2.4rem;
}

/*points*/
.points {
	margin-top: 64px;
	display: flex;
	justify-content: space-between;
}
.points li {
	list-style: none;
}
.page-section-title::after {
	left: 100%;
}
/*history*/
.history {
	margin-top: 64px;
}

.history dl {
	display: table;
	margin: 0;
	padding: 0;
	height: 100px;
}
.history dl:first-of-type {
	margin-top: 56px;
}
.history dt {
	width: 116px;
	display: table-cell;
	vertical-align: middle;
	font-family: "Open Sans", sans-serif;
	font-weight: 600;
	font-size: 2.4rem;
	color: #a19689;
	padding-right: 20px;
	position: relative;
}
.history dl:last-of-type dt {
	font-size: 3.2rem;
}
.history dt::after {
	content: "";
	width: 20px;
	height: 1px;
	position: absolute;
	background-color: #4d4338;
	top: 50%;
	left: 92%;
}
.history dd {
	display: table-cell;
	vertical-align: middle;
	padding-left: 20px;
	border-left: 2px solid #a19689;
}
/*===============================

works一覧ページ

===============================*/
.article_meta {
	font-family: "Open Sans", sans-serif;
}
.workspage-point-items {
	margin-top: 40px;
}

.workspage-point-box {
	padding-top: 80px;
}
/*===============================

blog一覧ページ

===============================*/
.main_title {
	border-bottom: double 2px #4d4338;
	border-top: double 2px #4d4338;
	padding: 40px 24px;
	font-size: 2.4rem;
	margin-bottom: 80px;
}

/*===============================

各worksページ

===============================*/
.pic img {
	width: 100%;
}
.works-title-name {
	margin-top: 80px;
	font-weight: 400;
}

.works-section-titel {
	margin-top: 40px;
	font-size: 2rem;
}
.jp-title {
	font-family: "Noto Sans JP", sans-serif;
	font-size: 1.6rem;
}
.page-section-title.works-section-titel::after {
	width: 24px;
}
.works-image {
	width: 100%;
	margin: 0 auto;
}
.works-title-name {
	font-size: 2rem;
}
.works-button {
	width: 20%;
	text-align: center;
	display: block;
	margin: 0 auto;
	margin-top: 100px;
}
.works-button .button a::before {
	content: "\f104";
	left: inherit;
	right: 164px;
}
.works-button .button a::after {
	left: inherit;
	right: 64px;
}
.works-button .button a:hover::after {
	width: 100px;
	left: inherit;
}
.works-button .button a:hover::before {
	left: inherit;
	right: 169px;
}
.header-image {
	filter: drop-shadow(8px 8px 10px gray);
}
/*===============================

各blogページ

===============================*/
.article_header {
	border-bottom: double 2px #4d4338;
	border-top: double 2px #4d4338;
	padding: 24px;
	margin-bottom: 80px;
}
.article_title {
	font-size: 2rem;
	padding-bottom: 18px;
}
.article_meta {
	display: flex;
	justify-content: space-between;
	position: relative;
	padding-left: 30px;
}
.article_meta::before {
	position: absolute;
	top: 50%;
	left: 0px;
	content: "";
	width: 20px;
	height: 1px;
	background-color: #4d4338;
}
.article_body h2 {
	font-size: 18px;
	font-weight: 600;
	background-color: #fff;
	border-left: 2px solid;
	padding: 0 20px;
	margin-bottom: 30px;
	margin-top: 60px;
}
.article_body p {
	margin-bottom: 30px;
}
.postlink-set {
	margin-top: 120px;
	border-top: double 2px #4d4338;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.postlink-prev {
	width: 52.23px;
}
.postlink-next {
	width: 51.094px;
}
.wp-block-quote {
	background-color: #f7f6f6;
	box-sizing: border-box;
	padding: 0 20px 20px 20px;
	margin-bottom: 30px;
}
.wp-block-quote p {
	margin-bottom: 10px;
}
.wp-block-quote cite::before {
	font-family: "Open Sans", sans-serif;
	content: "url:";
	font-weight: 800;
}
.wp-block-quote::before {
	content: "\f10d";
	position: relative;
	left: 0;
	font-family: "Font Awesome 5 Free";
	font-weight: 600;
	font-size: 30px;
	color: #f4e8da;
}

.content img {
	height: auto;
}

/*===============================

contactページ

===============================*/
.contact-page {
	margin-top: 100px;
}

/*===============================

タブレットデザイン

===============================*/
@media screen and (max-width: 1080px) and (min-width: 600px) {
	.br-sp {
		display: block;
	}
	.br-pc {
		display: none;
	}
	img {
		max-width: 100%;
	}
	.wrapper {
		width: auto;
		padding-right: 20px;
		padding-left: 20px;
	}
	.hero-image {
		margin-top: 120px;
		height: 1000px;
	}
	.main-image {
		width: 600px;
	}
	.page-header {
		position: fixed;
		top: 0;
		width: 100%;
		height: 120px;
		padding: 0;
		z-index: 100;
	}
	.nav-button {
		-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
		cursor: pointer;
		display: block;
		position: absolute;
		width: 36px;
		height: 60px;
		top: 20px;
		right: 20px;
	}
	.nav-button span {
		position: absolute;
		display: block;
		width: 36px;
		height: 1px;
		background-color: #4d4338;
		top: 20px;
		transition: transform 0.3s;
	}
	.nav-button span:last-of-type {
		display: block;
		width: 30px;
		top: 40px;
		transition: transform 0.3s;
	}
	.logo {
		position: absolute;
		top: 20px;
		left: 20px;
		z-index: 200;
		margin: 0;
	}
	/*----active----*/
	.nav-button.active {
		position: absolute;
		top: 20px;
		right: 20px;
		z-index: 400;
	}
	.nav-button.active span {
		transform: rotate(-45deg);
		top: 21px;
		transition: transform 0.3s;
	}
	.nav-button.active span:last-of-type {
		transform: rotate(45deg);
		width: 36px;
		top: 21px;
	}
	.main-nav {
		display: none;
		position: absolute;
		top: 0;
		right: inherit;
		text-align: center;
		width: 100%;
		height: 100vh;
		padding-top: 150px;
		background-color: #faf4ed;
	}
	.main-nav li {
		font-size: 1.6rem;
		padding-bottom: 50px;
	}
	.main-nav li a {
		margin-left: 0px;
	}
	body.scrollno {
		overflow: hidden;
	}
	.profile-box {
		display: block;
	}

	.profile-photobox {
		margin: 0 auto;
	}

	.profile-photobox img {
		width: 100%;
	}
	.profile-text {
		width: 100%;
		margin-top: 24px;
	}
	.about-button {
		padding-right: 0px;
		padding-left: 0px;
	}
	.button {
		font-size: 1.5rem;
		width: 80px;
		margin: 0 auto;
	}
	.button a::after {
		width: 80px;
	}
	.button a:hover::after {
		width: 96px;
	}
	.button a::before {
		left: 96px;
	}
	.button a:hover::before {
		left: 101px;
	}
	.post-button {
		padding-top: 16px;
		padding-right: 0px;
		padding-left: 0px;
	}
}

/*===============================

スマートフォンデザイン

===============================*/

@media screen and (max-width: 600px) {
	.br-sp {
		display: block;
	}
	.br-pc {
		display: none;
	}
	img {
		max-width: 100%;
	}
	body {
		font-size: 1.5rem;
	}
	a {
		-ms-scrollbarhighlight-color: rgba(0, 0, 0, 0);
		cursor: pointer;
	}
	.wrapper {
		width: auto;
		padding-right: 20px;
		padding-left: 20px;
	}
	.page-header {
		position: fixed;
		top: 0;
		width: 100%;
		height: 100px;
		padding: 0;
		z-index: 100;
	}
	.nav-button {
		-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
		cursor: pointer;
		display: block;
		position: absolute;
		width: 36px;
		height: 60px;
		top: 20px;
		right: 20px;
	}
	.nav-button span {
		position: absolute;
		display: block;
		width: 36px;
		height: 1px;
		background-color: #4d4338;
		top: 20px;
		transition: transform 0.3s;
	}
	.nav-button span:last-of-type {
		display: block;
		width: 30px;
		top: 40px;
		transition: transform 0.3s;
	}
	.logo {
		position: absolute;
		top: 20px;
		left: 20px;
		width: 60px;
		z-index: 200;
		margin: 0;
	}
	.logo-text {
		font-size: 12px;
		line-height: 15px;
		top: 15px;
	}

	/*----active----*/
	.nav-button.active {
		position: absolute;
		top: 20px;
		right: 20px;
		z-index: 400;
	}
	.nav-button.active span {
		transform: rotate(-45deg);
		top: 21px;
		transition: transform 0.3s;
	}
	.nav-button.active span:last-of-type {
		transform: rotate(45deg);
		width: 36px;
		top: 21px;
	}
	.main-nav {
		display: none;
		position: absolute;
		top: 0;
		right: inherit;
		text-align: center;
		width: 100%;
		height: 100vh;
		padding-top: 150px;
		background-color: #faf4ed;
	}
	.main-nav li {
		font-size: 1.6rem;
		padding-bottom: 50px;
	}
	.main-nav li a {
		margin-left: 0px;
	}
	body.scrollno {
		overflow: hidden;
	}
	/*----/active----*/
	/*hero-image*/

	.hero-image {
		margin-top: 100px;
		height: 667px;
	}
	.main-image {
		width: 100%;
		margin-top: -100px;
	}
	.circle-box {
		height: 250px;
	}
	.circle {
		height: 250px;
	}
	.myname {
		font-size: 1.6rem;
		top: auto;
		bottom: 100px;
		right: 100px;
	}
	/*about*/
	.section-title {
		font-size: 20px;
		margin-top: 64px;
	}
	.subtitle {
		font-size: 1.5rem;
		margin-bottom: 64px;
	}
	.subtitle:before {
		width: 15px;
	}
	.profile-box {
		display: block;
	}

	.profile-photobox {
		width: 280px;
		height: 280px;
		margin: 0 auto;
	}

	.profile-photobox img {
		width: 100%;
	}
	.profile-text {
		width: 100%;
		margin-top: 24px;
	}
	.profile-name {
		font-size: 2rem;
	}
	.profile-undername {
		font-size: 2rem;
	}
	.post-text p {
		font-size: 1.5rem;
	}
	.about-button {
		padding-right: 0px;
		padding-left: 0px;
	}
	.button {
		font-size: 1.5rem;
		width: 80px;
		margin: 0 auto;
	}
	.button a::after {
		width: 80px;
	}
	.button a:hover::after {
		width: 96px;
	}
	.button a::before {
		left: 96px;
	}
	.button a:hover::before {
		left: 101px;
	}

	/*works*/
	.post-items {
		display: block;
	}
	.post-image {
		margin: 0 auto;
	}
	.post-image,
	.post-image img {
		width: 280px;
		height: auto;
	}
	.post-image,
	.post-image img:hover {
		width: 280px;
		height: auto;
	}

	.post-box {
		margin-bottom: 64px;
	}
	.post-text {
		width: 280px;
		margin: 0 auto;
		margin-top: 20px;
		box-sizing: border-box;
	}
	.post-button {
		padding-top: 16px;
		padding-right: 0px;
		padding-left: 0px;
	}
	.postlink-prev {
		width: 49.219px;
	}
	.postlink-next {
		width: 48.141px;
	}
	/*contact*/
	.contact-title {
		margin-top: 0px;
		padding-top: 80px;
		margin-bottom: 40px;
		font-size: 2.4rem;
	}

	input[type="text"],
	input[type="email"],
	textarea {
		font-size: 1.5rem;
	}
	/*===============================

aboutページ

===============================*/
	.page-title {
		font-size: 4rem;
	}
	.page-subtitle {
		font-size: 3.4rem;
		padding-left: 25px;
	}
	.page-subtitle::before {
		width: 15px;
	}
	.main-profilebox {
		display: block;
	}
	.main-profile-text {
		width: 100%;
	}
	.main-profile-image {
		width: 50%;
		height: auto;
		margin-bottom: 24px;
	}
	.main-profile-image img {
		width: 100%;
	}
	.main-profilebox {
		margin-top: 40px;
	}
	.page-section-title {
		font-size: 2rem;
	}
	.profile-items {
		margin-bottom: 10px;
	}
	.skills-title {
		margin-top: 36px;
	}
	.skill-items li {
		padding: inherit;
		margin-right: 18px;
		width: 40px;
		font-size: 1.8rem;
	}
	.another-skill-items {
		font-size: 1.8rem;
	}
	.vision {
		margin-top: 36px;
	}
	.vision-text span {
		font-size: 2rem;
	}
	.points {
		display: block;
		margin-top: 40px;
	}
	.weak-points {
		width: 154px;
		margin-left: auto;
		margin-top: 24px;
	}
	.history dl {
		display: block;
		margin-bottom: 24px;
		height: auto;
	}
	.history dl:first-of-type {
		margin-top: 36px;
	}
	.history dt::after {
		left: 90px;
	}
	.history dt {
		display: block;
		font-size: 2rem;
	}
	.history dd {
		display: block;
	}
	/*===============================

worksページ

===============================*/
	.workspage-point-box {
		padding-top: 0px;
	}
	.works-detail a {
		word-wrap: break-word;
	}
	.jp-title {
		font-size: 1.5rem;
	}
	.works-button {
		width: 80px;
	}
	.works-button .button a::before {
		right: 96px;
	}
	.works-button .button a::after {
		right: 0px;
	}
	.works-button .button:hover a::before {
		right: 101px;
	}
	.workspage-point-box:last-of-type {
		margin-bottom: 0;
	}
	.header-image {
		filter: drop-shadow(3px 3px 4px gray);
	}
}
