@charset "UTF-8";
/* 
Theme Name: KeikoWorks
Theme URI: 
Description: KeikoWorksスタイルシート
Author: keiko-works.com
Author URI: 
Version: 1.0
*/

/* http://meyerweb.com/eric/tools/css/reset/ 
v2.0 | 20110126
License: none (public domain)
*/
html, body, main, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	vertical-align: baseline;
}
input[type="submit"], input[type="button"] {
	 -webkit-appearance: none; 
}

/* Reset.css */
body {
	-webkit-text-size-adjust: 100%;
	font-family: "Noto Sans JP", sans-serif;
	color: #1a1714;
}

html, body {
	scroll-padding-top: 60px;
}

.strong {
	font-weight: bold;
	font-size: 1.2em;
}
.clearfix:after {
	content: "";
	clear: both;
	display: block;
}

.header__logo {
	padding-top: 1px;
	font-family: 'Squada One', cursive;
	font-size: 1.2em;
	letter-spacing: 3px;
	float: left;
}

.header__logo a {
	text-decoration: none;
	color: #1a1714;
}

.header__logo .keiko{
	font-size: 1.4em;
	letter-spacing: 1px;
}

.header__inner {
	max-width: 1100px;
	margin: 0 auto;
	padding: 0 4%;
}

.wrapper {
	max-width: 1100px;
	margin: 0 auto;
	padding: 0 4%;
}

.header__img img{
	width: 100%;
	object-fit: cover;
}

.sp-img {
	display: none;
}


.header__top {
	background-color: #FFFFFD;
	position: fixed;
	width: 100%;
	padding: 3px 0;
	height: 50px;
	box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
	top: 0;
	z-index: 100;
}

.header-top {
	justify-content: space-between;
	height: 50px;
}

.header__navigation {
	margin-top: 10px;
	float: right;
    clear: none;
}

.header__nav_item{
	float: left;
	padding: 5px 20px 5px 0;
	list-style: none;
	margin: 0 10px;
}

.header__nav_item img {
	margin: 0 4px -5px 0;
}

#menu-custom-menu .nav-home:before {
	content:"";
	background: url(images/home.svg) no-repeat;
	display: inline-block;
	width: 25px;
	height: 25px;
	vertical-align: middle;
	margin: 0 5px 3px 0;
}
#menu-custom-menu .nav-service:before {
	content:"";
	background: url(images/file-document-outline.svg) no-repeat;
	display: inline-block;
	width: 25px;
	height: 25px;
	vertical-align: middle;
	margin: 0 5px 3px 0;
}
#menu-custom-menu .nav-profile:before {
	content:"";
	background: url(images/account.svg) no-repeat;
	display: inline-block;
	width: 25px;
	height: 25px;
	vertical-align: middle;
	margin: 0 5px 3px 0;
}
#menu-custom-menu .nav-contact:before {
	content:"";
	background: url(images/email-outline.svg) no-repeat;
	display: inline-block;
	width: 25px;
	height: 25px;
	vertical-align: middle;
	margin: 0 5px 3px 0;
}

/* ハンバーガーメニュー */
.page-header__menu-button {
    display: none; 
}
@media screen and (max-width: 989px) {
    .page-header__menu-button {
        float: right;
        height: 50px;
        width: 50px;
        display: block;
        text-align: right;
        border: none;
        background: url(images/menu.svg) center center no-repeat;
    }
    .header__navigation {
        display: none;
        clear: both;
        float: none;
        background: #fffffd;
        width: 100%;
        height: auto;
        box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
        padding: 20px 0;
		padding-right: 4%;
    }
    .header__navigation a {
        text-decoration: none;
        color: #000;
    }
    .header__nav_item {
        float: none;
        background: url(images/arrow.png) no-repeat right;
        font-size: 1em;
        padding: 10px 20px;
        list-style: none;
        border-bottom: dashed 1px #ccc;
		margin: 0 10px;
    }
	.header__logo {
		padding-left: 4%;
	}
	.header__inner {
		width: 100%;
		padding: 0;
	}
}

.page-header__menu-button--is-open {
    background: url(images/close.svg) center center no-repeat;
}

/*メニューの下線アニメーション*/
.header__nav_item a {
	text-decoration: none;
	color: #1a1714;
	position: relative;
	display: inline-block;
}

.header__nav_item a::after {
	position: absolute;
	bottom: -4px;
	left: 0;
	content: '';
	width: 100%;
	height: 2px;
	background: #f8b600;
	transform: scale(0, 1);
	transform-origin: center top;
	transition: transform .3s;
}
.header__nav_item a:hover::after {
	transform: scale(1, 1);
}

/* パンくずリスト */
.path {
	border-bottom: dashed 1px rgba(0, 0, 0, .1);
	margin: 5px 5px 20px;
	padding-top: 80px;
}

.path a {
	text-decoration: none;
	color: #1a1714;
}

.path img {
	margin: 0 4px -5px 0;
}

/*main*/
main {
	padding-bottom: 200px;
}
.concept, .profile {
	background-color: #fef4d9;
}

.concept, .service, .profile, .contact {
	padding: 30px;
	margin-top: -10px;
}

.concept, .animationTarget, .profile, .contact{
	opacity: 0;
	transform: translateY(50px);
	transition: 0.5s;
}

.show {
	opacity: 1;
	transform: none;
}

@media screen and (max-width: 989px) {
	.concept, .service, .profile, .contact {
		padding: 5px;
	}
}


.title {
	font-size: 2em;
	text-align: center;
	margin: 30px 0 10px;
	font-weight: bold;
}

.title_sub {
	text-align: center;
	margin: 0 0 20px;
	font-weight: bold;
	color: #f8b600;
	font-size: 1em;
}

.headline {
	text-align: center;
	font-weight: bold;
	margin: 0 0 15px;
}

.text {
	text-align: center;
	margin-bottom: 1em;
}

.content-image-outer {
	text-align: center;
	width: 50%;
	margin: 0 auto;
}

.content-image {
	width:100%;
	border-radius: 5px;
}

.service-outer {
	display: flex;
	justify-content: space-between;
	padding: 50px;
	text-align: center;
	background-color: #fef4d9;
	border-radius: 25px;
	margin-bottom: 1em;
}

.service_detail {
	width: 30%;
	padding: 5px;
	text-align: center;
	background-color: #FFFFFD;
	border-radius: 20px;
	box-shadow: 0 0 4px rgb(0 0 0 / 15%);
	transition: .3s;
}
.service_detail:hover {
	box-shadow: 0 3px 15px rgb(0 0 0 / 15%);
	transform: translateY(-5px);
}

.section_title {
	font-weight: bold;
	padding: 5px 0 10px;
	font-size: 1.5em;
}

.section_text {
	font-size: 1em;
	padding: 5px;
}

.service_image {
	height: 150px;
}

.link {
	text-decoration: none;
	color: #1a1714;
}

@media screen and (max-width: 989px) {
	.service-outer{
		display: block;
		padding: 20px;
	}
	.service_detail {
		width: auto;
		margin: 20px
	}
	.service_image {
		height: auto;
		width: 90%;
		border-radius: 5px;
		
	}
}

.div_button button {
	text-decoration: none;
	background-color:#f8b600;
	border: solid 1px #f8b600;
	padding: 10px 20px;
	color: #FFFFFD;
	display: inline-block;
	margin: 0 auto 20px;
	border-radius: 1000px;
	transition: .3s;
}

.div_button button:hover {
	background-color:#FFFFFD;
	color: #f8b600;
	font-weight: bold;
	cursor: pointer;
}


.div_button {
	text-align: center;
}

.profile-outer {
	display: flex;
	justify-content: space-around;
	margin-bottom: 1em;
	align-items: flex-start
}
.profile_img {
	width: 30%;
	object-fit: contain;
	height: 300px;
	object-position: top;
	border-radius: 5px;
}

.profile_text {
	width: 50%;
}

@media screen and (max-width: 989px) {
	.profile-outer {
		display: block;
		text-align: center;
	}
	.profile_text {
		margin: 0 auto;
		text-align: left;
		width: 80%;
	}
	.profile_img {
		width: 80%;
		height: auto;
		margin-bottom: 1.5em;
	}
}



/*個別投稿ページ、固定ページ*/
.contents h2 {
	font-weight: bold;
	font-size: 1.5em;
	border-left: solid 7px #f8b600;
	padding: 10px;
	display: inline-block;
	margin: 0 auto 20px;
}

.contents p {
	text-align: center;
}
.wpcf7 form .wpcf7-response-output {
	margin-top: 0 !important;
}
.image-outer {
	display: flex;
	justify-content: space-between;
	margin-bottom: 40px;
	flex-direction: row-reverse;
	align-items: flex-start
}

.image-outer img {
	width: 350px;
	height: 250px;
	border-radius: 5px;
	object-fit: cover;
	object-position: top;
}

.image-outer p {
	margin: 0 0 100px;
	width: 50%;
}

.service_text .bold {
	font-weight: bold;
}

@media screen and (max-width: 989px) {
	.image-outer {
		display: block;
		text-align: center;
		margin: 0 auto;
	}
	.image-outer img {
		width: 60%;
		height: auto;
	}
	.image-outer p {
		width: 80%;
		text-align: left;
		margin: 0 auto 40px;
	}
}

/*contact*/
.contact__text {
	margin-bottom: 2em;
}
.contact_form {
	padding: 0 0 20px;
	width: 70%;
	margin-inline: auto;
}

.contact_form label {
	font-weight: 500;
}

.contact_form input {
	display: block;
	height: 35px;
	background-color: #eff1f5;
	border: none;
	border-radius: 3px;
	width: 100%;
	max-width: 600px;
	outline: none;
	padding: 5px 10px;
}

.contact_form textarea {
	display: block;
	background-color: #eff1f5;
	border: none;
	border-radius: 3px;
	width: 100%;
	max-width: 600px;
	margin-bottom: 30px;
	font-family: "Noto Sans JP", sans-serif;
	padding: 5px 10px;
}

.contact_form input:focus {
	outline: solid 1px #333;
}

.contact_form textarea:focus {
	outline: solid 1px #333;
}

.contact_button {
	font-size: 1.2em;
	background-color:#f8b600;
	border: 1px solid #f8b600;
	padding:  10px 100px;
	color: #FFFFFD;
	border-radius: 30px;
	cursor: pointer;
	margin: 0 auto 20px;
	font-family: "Noto Sans JP", sans-serif;
	display: block;
	transition: 0.3s;
}
.contact_button:hover {
	color: #f8b600;
	background: #fffffd;
}

/* お問い合わせでinputがハンバーガーメニューより表層に出るため、Positionをリセット */
.contact_form .wpcf7-form-control-wrap {
	position: static;
	margin-top: 10px;
	display: block;
}

/* アーカイブページ */
.contents h2 a {
	text-decoration: none;
	color: #1a1714;
}
.contents h2 a:hover {
	border-bottom:solid 1px #1a1714;
}

.post-thumbnail {
	width: 60%;
	text-align: center;
	margin:0 auto;
}
.post-thumbnail img {
	width: 100%;
	height: auto;
	object-fit: cover;
}

.cat-links, .tags-links {
	font-size: smaller;
}
.cat-links a, .tags-links a {
	color: #1a1714;
}

.entry-footer {
	margin-bottom:20px ;
}

.nav-links {
	text-align: center;
}
.nav-links a {
	color: #1a1714;
}

/* プライバシーポリシー */

.privacy-policy h2 {
	font-weight: bold;
	font-size: 1.5em;
	border-left: none;
	margin: 20px 0 0;
}

.privacy-policy p {
	margin-bottom: 1em;
}

.contact_link {
	color: #1a1714;
}

.contents ol {
	padding-left: 25px;
} 

/* .contents > ol > li > ol {
	padding-left: 25px;
} 

.contents > ol > li > ol > li >ol {
	padding-left: 25px;
}  */

/*footer*/

.footer {
	background-color: #78642c;
	padding: 10px;
	margin-top: 20px;
}

footer ul {
	display: flex;
	justify-content: space-around;
	width: 60%;
	margin: 0 auto;
}

.privacy {
	text-align: center;
}
.privacy-policy-link {
	text-decoration: none;
	color: #FFFFFD;
	font-size: 13px;
}

@media screen and (max-width: 989px) {
	footer ul {
		width: 100%;
	}
}

footer ul li{
	list-style: none;
	margin-bottom: 0.7em;
}

footer ul li a {
	text-decoration: none;
	color: #FFFFFD;
}

.copyright {
	color: #FFFFFD;
	text-align: center;
	font-size: smaller;
}

/* YouTube */
.wp-block-embed-youtube {
	position: relative;
	padding-bottom: 56.25%;
	padding-top: 30px;
	height: 0;
	overflow: hidden;
	margin-top: 20px;
	margin-bottom: 20px;
}
.wp-block-embed-youtube iframe,
.wp-block-embed-youtube object,
.wp-block-embed-youtube embed {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.grecaptcha-badge {
	visibility: hidden;
}