@import 'https://use.fontawesome.com/releases/v5.0.10/css/all.css';
/* @font-face {
	font-family: "NSJ S";
	font-style: normal;
	font-weight: 400;
	src: url("../font/nsjpr.woff") format("woff");
}

@font-face {
	font-family: "NSJ S";
	font-style: normal;
	font-weight: 700;
	src: url("../font/nsjpbd.woff") format("woff");
}

@font-face {
	font-family: "NSJ S";
	font-style: normal;
	font-weight: 900;
	src: url("../font/nsjpbc.woff") format("woff");
} */

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

html,
body {
	margin: 0;
	padding: 0;
}

body {
	-moz-osx-font-smoothing: grayscale;
	-webkit-font-smoothing: antialiased;
	background: #fff;
	color: #333;
	/* font-family: "NSJ S", sans-serif; */
	font-family: font-"Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
	font-size: 16px;
	line-height: 1.6;
}

img {
	border: 0;
	height: auto;
	max-width: 100%;
	vertical-align: top;
}

p {
	margin: 0;
	padding: 0;
}

code,
kbd,
pre,
samp {
	font-family: monospace;
	font-size: 1em;
}

pre code {
	font-family: Monaco, Consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
	font-size: 1em;
}

ul,
ol {
	margin: 0;
	padding: 0 0 0 20px;
}

table {
	background: #fff;
	border: 1px solid rgba(0, 0, 0, 0.2);
	border-collapse: collapse;
	border-spacing: 0;
	margin: 0;
	table-layout: fixed;
	width: 100%;
}

th,
td {
	border: 1px solid rgba(0, 0, 0, 0.2);
	padding: 0.6em 1em;
	text-align: left;
	vertical-align: middle;
}

blockquote {
	margin: 0 1em;
}

form {
	margin: 0;
	padding: 0;
}

input,
textarea {
	-webkit-appearance: none;
	background-image: none;
	border: 1px solid #aaa;
	border-radius: 0;
	font-family: inherit;
	font-size: 1em;
	padding: 0.6em 0.8em;
}

input:focus {
	border: 1px solid #e65100;
	box-shadow: 0 0 5px 0 #e65100;
	outline: none;
}

input[type="submit"]:hover,
input[type="submit"]:focus {
	cursor: pointer;
	outline: none;
}

input[type="submit"] ::-moz-focus-inner {
	border: none;
	padding: 0;
}

input[type="radio"] {
	border: none;
	border-radius: 50%;
	box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.2);
	display: inline-block;
	height: 15px;
	margin: 0 8px 0 0;
	vertical-align: middle;
	width: 15px;
}

input[type="radio"]:focus,
input[type="radio"]:checked {
	background: #e65100;
	border: 1px solid #fff;
	box-shadow: 0 0 0 1px #e65100;
	outline: none;
}

textarea:focus {
	border: 1px solid #e65100;
	box-shadow: 0 0 5px 0 #e65100;
	outline: none;
}

select {
	-moz-appearance: none;
	-webkit-appearance: none;
	background-image: none;
	border: none;
	border-bottom: 1px solid rgba(0, 0, 0, 0.1);
	border-radius: 0;
	color: inherit;
	font-family: inherit;
	font-size: 1em;
	padding: 0.4em 2.4em 0.4em 0.8em;
	width: 100%;
}

select::-ms-expand {
	display: none;
}

select:focus {
	border: 1px solid rgba(0, 0, 0, 0.3);
	box-shadow: none;
	outline: none;
}

section:nth-child(even) {
	background: #eee;
}

.inner {
	margin: 0 auto;
	padding: 3em 0 5em;
}

.inner h2 {
	font-size: 2em;
	line-height: 1.4;
	margin: 0 0 1.8em;
	text-align: center;
}

.inner h2 > span {
	display: block;
	font-size: 0.65em;
}

.header,
.content,
.footer {
	width: 100%;
}

.row {
	display: flex;
	justify-content: space-between;
}

.row-c {
	align-items: center;
	display: flex;
	justify-content: space-between;
}

.m_sp {
	display: none;
}

.sp-hidden {
	display: block;
}

.m_pc {
	display: none;
}

.pc-hidden {
	display: block;
}

#drawer {
	display: none;
	left: 0;
	position: fixed;
	top: 0;
	z-index: 40;
}

#drawer.drawer-right {
	left: auto;
	right: 0;
}

.drawer-hidden {
	display: none;
}

#drawer-close {
	background: #000;
	display: none;
	height: 100%;
	left: 0;
	opacity: 0;
	position: fixed;
	top: 0;
	transition: 0.3s ease-in-out;
	width: 100%;
	z-index: 39;
}

.drawer-close-icon {
	cursor: pointer;
	display: inline-block;
	height: 60px;
	position: relative;
	vertical-align: middle;
	width: 60px;
}

.drawer-close-icon span::before,
.drawer-close-icon span::after {
	background: #fff;
	border-radius: 3px;
	content: "";
	display: block;
	height: 4px;
	left: 50%;
	margin: -2px 0 0 -14px;
	position: absolute;
	top: 50%;
	width: 28px;
}

.drawer-close-icon span::before {
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
}

.drawer-close-icon span::after {
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}

#drawer-open {
	-webkit-transform: translateX(0);
	background: #efa336;
	cursor: pointer;
	display: inline-block;
	height: 60px;
	position: relative;
	transform: translateX(0);
	transition: 0.5s ease-in-out;
	vertical-align: middle;
	width: 60px;
}

#drawer-open span {
	background: #fff;
	border-radius: 3px;
	display: block;
	height: 4px;
	left: 50%;
	margin: -2px 0 0 -14px;
	position: absolute;
	top: 50%;
	transition: 0.5s ease-in-out;
	width: 28px;
}

#drawer-open span::before,
#drawer-open span::after {
	-webkit-transform: rotate(0);
	background: #fff;
	border-radius: 3px;
	content: "";
	cursor: pointer;
	display: block;
	height: 100%;
	left: 50%;
	margin: -2px 0 0 -50%;
	position: absolute;
	top: 50%;
	transform: rotate(0);
	transition: 0.5s ease-in-out;
	width: 100%;
}

#drawer-open span::before {
	-webkit-transform: rotate(0);
	margin-top: -10px;
	transform: rotate(0);
}

#drawer-open span::after {
	-webkit-transform: rotate(0);
	margin-top: 6px;
	transform: rotate(0);
}

#drawer-content {
	-webkit-transform: translateX(-105%);
	background: #fff;
	height: 100%;
	left: 0;
	max-width: 90%;
	overflow: auto;
	position: fixed;
	top: 0;
	transform: translateX(-105%);
	transition: 0.5s ease-in-out;
	width: 250px;
	z-index: 40;
}

#drawer-content .drawer-title {
	font-size: 1em;
	font-weight: 700;
	padding: 0 34px;
	text-align: center;
}

#drawer.drawer-right #drawer-content {
	-webkit-transform: translateX(105%);
	left: auto;
	right: 0;
	text-align: left;
	transform: translateX(105%);
}

#drawer-check:checked ~ #drawer-open.drawer-open-fixed {
	-webkit-transform: translateX(250px);
	position: relative;
	transform: translateX(250px);
	z-index: 41;
}

#drawer-check:checked ~ #drawer-open.drawer-open-fixed span {
	background: rgba(255, 255, 255, 0);
}

#drawer-check:checked ~ #drawer-open.drawer-open-fixed span::before,
#drawer-check:checked ~ #drawer-open.drawer-open-fixed span::after {
	background: #fff;
	border-radius: 3px;
	content: "";
	display: block;
	height: 4px;
	left: 50%;
	margin: -2px 0 0 -14px;
	position: absolute;
	top: 50%;
	width: 28px;
}

#drawer-check:checked ~ #drawer-open.drawer-open-fixed span::before {
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
}

#drawer-check:checked ~ #drawer-open.drawer-open-fixed span::after {
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}

#drawer.drawer-right #drawer-check:checked ~ #drawer-open.drawer-open-fixed {
	-webkit-transform: translateX(-250px);
	transform: translateX(-250px);
}

#drawer-check:checked ~ #drawer-close {
	display: block;
	opacity: 0.4;
}

#drawer-check:checked ~ #drawer-content {
	-webkit-transform: translateX(0);
	box-shadow: 6px 0 25px rgba(0, 0, 0, 0.15);
	transform: translateX(0);
}

.drawer-head {
	color: #efa336;
	font-size: 1.2em;
	font-weight: 700;
	line-height: 60px;
	text-align: center;
}

.footer {
	background: #333;
}

.footer .inner {
	padding-bottom: 0.4em;
	padding-top: 0.4em;
}

.footer-copy {
	color: #fff;
	font-size: 14px;
	text-align: center;
}

.header {
	background: #fff;
	border-bottom: 3px solid #efa336;
	box-shadow: 0 0 3px 1px rgba(0, 0, 0, 0.2);
	height: 70px;
	left: 0;
	position: fixed;
	top: 0;
	transition: all 2s ease 0s;
	width: 100%;
	z-index: 20;
}

.header .inner {
	align-items: center;
	display: flex;
	justify-content: space-between;
	padding-bottom: 0;
	padding-top: 0;
}

.hnav-item {
	display: inline-block;
}

.hnav-item > a {
	color: #333;
	display: block;
	line-height: 70px;
	padding: 0 1.2em;
	text-decoration: none;
}

.hnav-item > a:hover {
	opacity: 0.6;
}

.hnav-item.m_contact > a {
	background: #e65100;
	border-radius: 6px;
	box-shadow: 0 0 1px 1px rgba(0, 0, 0, 0.2);
	color: #fff;
	display: inline-block;
	line-height: 1;
	margin: 0;
	padding: 1em 0.8em 1.2em;
	font-weight: 700;
	letter-spacing: 0.05em;
}

.hlogo > a {
	color: #404040;
	display: inline-block;
	font-size: 1.8em;
	font-weight: 700;
	line-height: 1.2;
	text-align: center;
	text-decoration: none;
	text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
}

.hlogo > a:hover {
	opacity: 0.6;
}

.hlogo-em {
	color: #e65100;
	font-size: 1.1em;
	margin: 0 0.1em;
}

.hlogo-ruby {
	display: block;
	font-size: 0.4em;
}

.hlogo-ruby > span {
	color: #e65100;
	margin: 0 0.1em;
}

.load {
	background: #fff;
	height: 100%;
	left: 0;
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 200;
}

.load-content {
	-webkit-transform: translate(-50%, -50%);
	align-items: center;
	display: flex;
	justify-content: space-between;
	left: 50%;
	position: fixed;
	top: 50%;
	transform: translate(-50%, -50%);
	z-index: 200;
}

.load-img {
	padding: 1em;
	width: 300px;
}

.load-balloon {
	background: #fff;
	border: 2px solid #bdbdbd;
	display: inline-block;
	margin-bottom: 20px;
	max-width: 100%;
	padding: 0.8em;
	position: relative;
	text-align: left;
}

.load-balloon::before,
.load-balloon::after {
	content: "";
	position: absolute;
	right: 100%;
	top: 50%;
}

.load-balloon::before {
	border: 12.82px solid transparent;
	border-right: 12.82px solid #bdbdbd;
	margin-top: -12.82px;
	z-index: 1;
}

.load-balloon::after {
	border: 10px solid transparent;
	border-right: 10px solid #fff;
	margin-top: -10px;
	z-index: 2;
}

.load-ball {
	-webkit-transform: translate(-50%, -50%);
	left: 50%;
	position: fixed;
	top: 50%;
	transform: translate(-50%, -50%);
	z-index: 10;
}

.load-ball > div {
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
	background-color: #efa336;
	border-radius: 100%;
	display: inline-block;
	height: 15px;
	margin: 2px;
	width: 15px;
}

.load-ball > div:nth-child(1) {
	-webkit-animation: scale 1s -0.48s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08);
	animation: scale 1s -0.48s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08);
}

.load-ball > div:nth-child(2) {
	-webkit-animation: scale 1s -0.24s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08);
	animation: scale 1s -0.24s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08);
}

.load-ball > div:nth-child(3) {
	-webkit-animation: scale 1s 0s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08);
	animation: scale 1s 0s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08);
}

.screen-reader-response {
	border: 0 none;
    clip: rect(1px, 1px, 1px, 1px);
    height: 1px;
    margin: 0;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
}

.wpcf7-not-valid-tip {
	font-size: 13px;
	font-weight: 700;
	padding-left: 3px;
}

div.wpcf7-response-output {
	margin-top: 0.3em;
	font-size: 13px;
	background-color: transparent;
	margin-left: auto;
	margin-right: auto;
	width: 520px;
	font-weight: 700;
}

.concept-content {
	margin: 0 auto;
	padding: 1em;
	width: 520px;
}

.concept-content p {
	line-height: 2;
	margin-bottom: 1em;
}

.contact {
	background: #efa336;
}

.contact:nth-child(even) {
	background: #efa336;
}

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

.contact-form {
	margin: 0 auto 1em;
	width: 520px;
}

.contact-attention {
	width: 520px;
	max-width: 100%;
	margin: 0 auto;
}

.contact-attention a {
	color: inherit;
}

#contact .contact-form input,
#contact .contact-form textarea {
	border: none;
	border-radius: 4px;
	outline: none;
	width: 100%;
	max-width: 100%;
	margin-bottom: 0;
}

.contact-form input,
.contact-form textarea {
	border: none;
	border-radius: 4px;
	outline: none;
	width: 100%;
	max-width: 100%;
	margin-bottom: 0;
}

.contact-input {
	margin-bottom: 1em;
	margin-top: 0 !important;
}

.contact-textarea {
	margin-bottom: 1em;
	margin-top: 0 !important;
}

.contact-submit {
	text-align: center;
	margin-top: 0 !important;
}

.contact-submit input {
	background: #e65100;
	border-radius: 6px;
	box-shadow: 0 0 1px 1px rgba(0, 0, 0, 0.2);
	color: #fff;
	display: inline-block;
	margin: 0;
	padding: 1.2em 4.2em;
	position: relative;
	text-decoration: none;
	width: auto;
}

.contact-submit input:hover {
	opacity: 0.6;
}

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

.dnav-item > a {
	border-top: 1px solid #efa336;
	color: #333;
	display: block;
	padding: 1em;
	text-decoration: none;
	width: 100%;
}

.dnav-item:first-child > a {
	border-top: none;
}

.dnav-item.m_contact {
	padding: 0 1em;
}

.dnav-item.m_contact > a {
	background: #e65100;
	border: none;
	border-radius: 2px;
	box-shadow: 0 0 1px 1px rgba(0, 0, 0, 0.2);
	color: #fff;
	line-height: 1;
	margin: 0;
	padding: 1em 0.8em;
	position: relative;
	text-align: center;
}

.dnav-item.m_contact > a::after {
	-webkit-transform: translateY(-50%);
	content: "\f0da";
	font-family: "Font Awesome 5 Free", sans-serif;
	font-size: 24px;
	font-weight: 900;
	position: absolute;
	right: 0.4em;
	top: 50%;
	transform: translateY(-50%);
}

.message-cards {
	align-items: center;
	align-items: flex-start;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.message-card {
	width: 50%;
}

.message-title {
	font-size: 1.6em;
	margin: 0;
	text-align: center;
}

.message-content {
	line-height: 2;
	padding: 1em;
}

.mv {
	background: repeating-linear-gradient(
		45deg,
		#ffecb3,
		#ffecb3 15px,
		#ffffcd 0,
		#ffffcd 30px
	);
	padding-top: 70px;
}

.mv-inner {
	position: relative;
}

.mv-main {
	padding-right: 316px;
}

.mv-lead {
	margin-bottom: 3em;
	text-align: center;
}

.mv-lead span {
	font-size: 1.4em;
	font-weight: 700;
	padding: 0 0.2em;
}

.mv-head {
	font-size: 1.6em;
	font-weight: 700;
	margin-bottom: 1em;
	text-align: center;
}

.mv-head span {
	background: linear-gradient(transparent 60%, #ff6 0);
}

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

.mv-list li {
	font-size: 1.8em;
	font-weight: 900;
	padding: 0.2em 0 0.2em 2.2em;
	position: relative;
}

.mv-list li::before {
	-webkit-transform: translateY(-50%);
	color: #efa336;
	content: "\f00c";
	font-family: "Font Awesome 5 Free", sans-serif;
	font-size: 1.6em;
	font-weight: 900;
	left: 0;
	margin-right: 0.4em;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	vertical-align: middle;
}

.mv-attention {
	font-size: 0.875em;
	text-align: right;
}

.mv-attention > a {
	color: #333;
}

.mv-img {
	bottom: 32px;
	padding: 0 1em;
	position: absolute;
	right: 0;
	width: 300px;
}

.mv-img span {
	display: block;
	text-align: center;
}

.mv-balloon {
	background: #fff;
	border: 2px solid #bdbdbd;
	border-radius: 8px;
	display: inline-block;
	margin-bottom: 20px;
	max-width: 100%;
	padding: 0.8em;
	position: relative;
	text-align: left;
}

.mv-balloon::before,
.mv-balloon::after {
	content: "";
	left: 50%;
	position: absolute;
	top: 100%;
}

.mv-balloon::before {
	border: 15.82px solid transparent;
	border-top: 15.82px solid #bdbdbd;
	margin-left: -15.82px;
	z-index: 1;
}

.mv-balloon::after {
	border: 13px solid transparent;
	border-top: 13px solid #fff;
	margin-left: -13px;
	z-index: 2;
}

.mv-btn {
	margin-top: 3em;
	text-align: center;
}

.mv-btn > a {
	-webkit-transform: scale(1, 1);
	background: #e65100;
	border-radius: 8px;
	box-shadow: 0 0 1px 1px rgba(0, 0, 0, 0.2);
	color: #fff;
	display: inline-block;
	font-size: 1.2em;
	margin: 0;
	padding: 1em 4.2em 1.2em;
	position: relative;
	text-align: center;
	text-decoration: none;
	transform: scale(1, 1);
	transition: all 0.3s ease 0s;
	font-weight: 700;
}

.mv-btn > a:hover {
	-webkit-transform: scale(1.1, 1.1);
	transform: scale(1.1, 1.1);
}

.mv-btn > a::after {
	-webkit-transform: translateY(-50%);
	content: "\f0da";
	font-family: "Font Awesome 5 Free", sans-serif;
	font-size: 24px;
	font-weight: 900;
	position: absolute;
	right: 0.4em;
	top: 50%;
	transform: translateY(-50%);
}

.mv-sup {
	margin-top: 0.4em;
	text-align: center;
}

.portfolio-img {
	text-align: center;
}

.portfolio .swiper-slide {
	text-align: center;
	padding: 0 24px;
}

.portfolio-slider {
	margin: 0 auto;
	width: 820px;
}

.portfolio-body {
	margin: 0 auto;
	width: 820px;
}

.portfolio-attention {
	color: #dc4e41;
	margin-bottom: 3em;
}

.portfolio-btn {
	text-align: center;
}

.portfolio-btn > a {
	background: #ccc;
	border-radius: 6px;
	color: #fff;
	display: inline-block;
	margin: 0;
	padding: 1.2em 4.2em;
	position: relative;
	text-decoration: none;
}

.portfolio-btn > a:hover {
	opacity: 0.6;
}

.portfolio-btn > a::after {
	-webkit-transform: translateY(-50%);
	content: "\f0da";
	font-family: "Font Awesome 5 Free", sans-serif;
	font-size: 24px;
	font-weight: 900;
	position: absolute;
	right: 0.4em;
	top: 50%;
	transform: translateY(-50%);
}

.portfolio-prev,
.portfolio-next {
	background: #e65100;
	border-radius: 50%;
	box-shadow: 0 0 1px 1px rgba(0, 0, 0, 0.2);
	height: 50px;
	margin-top: -25px;
	width: 50px;
}

.portfolio-prev:hover,
.portfolio-next:hover {
	opacity: 0.6;
}

.portfolio-prev::after {
	color: #fff;
	content: "\f104";
	font-family: "Font Awesome 5 Free", sans-serif;
	font-size: 24px;
	font-weight: 900;
	left: 0;
	line-height: 50px;
	position: absolute;
	text-align: center;
	top: 0;
	width: 50px;
}

.portfolio-next::after {
	color: #fff;
	content: "\f105";
	font-family: "Font Awesome 5 Free", sans-serif;
	font-size: 24px;
	font-weight: 900;
	left: 0;
	line-height: 50px;
	position: absolute;
	text-align: center;
	top: 0;
	width: 50px;
}

.portfolio-pagination {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin: 0;
	position: static;
	width: 820px;
}

.portfolio-pagination .swiper-pagination-bullet {
	background: transparent;
	border-radius: 0;
	height: auto;
	opacity: 0.4;
	outline: none;
	padding: 2px;
	width: 12.5%;
}

.portfolio-pagination .swiper-pagination-bullet:hover {
	opacity: 1;
}

.portfolio-pagination
.swiper-pagination-bullet.swiper-pagination-bullet-active {
	opacity: 1;
}

.portfolio-pagination .swiper-pagination-bullet img {
	box-shadow: none;
	margin: 0;
}

.price-table th {
	background: #ffecb3;
	font-weight: 400;
}

.price-table th:first-child {
	width: 250px;
}

.price-table td span {
	font-size: 1.4em;
	font-weight: 700;
	letter-spacing: 0.1em;
}

.profile-resume {
	align-items: center;
	align-items: flex-start;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.profile-table {
	transition: all 0.3s ease 0s;
	width: calc(100% - 200px);
}

.profile-table.m_haniwa {
	display: table;
}

.profile-table.m_human {
	display: none;
}

.profile-table th {
	background: #ffecb3;
	font-weight: 400;
}

.profile-table th:first-child {
	width: 250px;
}

.profile-table td ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.profile-photo {
	text-align: center;
	width: 200px;
}

.profile-img {
	background: #fff;
	border: 1px solid rgba(0, 0, 0, 0.2);
	border-radius: 50%;
	cursor: pointer;
	height: 150px;
	line-height: 150px;
	margin: 1em auto;
	overflow: hidden;
	position: relative;
	width: 150px;
}

.profile-img img {
	vertical-align: middle;
	width: 120px;
}

.profile-img::after {
	background: rgba(0, 0, 0, 0.2);
	content: "";
	height: 100%;
	left: 0;
	position: absolute;
	top: 0;
	transition: all 0.3s ease 0s;
	width: 100%;
}

.profile-img.m_show::after {
	background: transparent;
}

.profile-sns {
	list-style: none;
	margin: 0;
	padding: 0;
}

.profile-sns li {
	display: inline-block;
	vertical-align: middle;
}

.profile-sns li.profile-twitter > a {
	color: #1b95e0;
}

.profile-sns li.profile-facebook > a {
	color: #3b5998;
}

.profile-sns li.profile-github > a {
	color: #4183c4;
}

.profile-sns li > a {
	display: block;
	font-size: 1.6em;
	padding: 0 0.4em;
	text-decoration: none;
	transition: all 0.3s ease 0s;
}

.profile-sns li > a:hover {
	opacity: 0.6;
}

.promise-card {
	counter-increment: number;
	margin: 0 0 3em;
	padding-left: 100px;
	position: relative;
}

.promise-card::before {
	background: #efa336;
	border-radius: 50%;
	color: #fff;
	content: counter(number);
	display: inline-block;
	font-size: 52px;
	font-weight: 700;
	height: 80px;
	left: 0;
	line-height: 80px;
	position: absolute;
	text-align: center;
	top: 0;
	vertical-align: middle;
	width: 80px;
}

.promise-content {
	line-height: 2;
}

.promise-media {
	margin-top: 1em;
}

.promise-link {
	display: inline-block;
	padding: 0 0.4em;
	vertical-align: middle;
}

.promise-link > a {
	color: #333;
	display: block;
	position: relative;
	text-decoration: none;
}

.promise-link > a:hover::after {
	width: 100%;
}

.promise-link > a::before {
	content: "\f105";
	font-family: "Font Awesome 5 Free", sans-serif;
	font-weight: 900;
	padding-right: 0.4em;
}

.promise-link > a::after {
	background: #efa336;
	bottom: 0;
	content: "";
	height: 3px;
	left: 0;
	position: absolute;
	transition: all 0.6s ease 0s;
	width: 0;
}

.skill-cards {
	align-items: center;
	align-items: flex-start;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.skill-card {
	width: 33.33333333%;
}

.skill-title {
	font-size: 1.2em;
	margin: 0 0 1em;
	text-align: center;
}

.skill-title.m_html5 span {
	border-bottom: 3px solid #e44d26;
}

.skill-title.m_wordpress span {
	border-bottom: 3px solid #0073aa;
}

.skill-title.m_responsive span {
	border-bottom: 3px solid #ffd966;
}

.skill-img {
	background: transparent;
	margin: 0 auto;
	padding: 2em;
	text-align: center;
}

.skill-img > img {
	vertical-align: middle;
	width: 100px;
}

.skill-content {
	line-height: 2;
	padding: 1em;
}

@media screen and (min-width: 1024px) {

	.inner {
		width: 1024px;
	}

	.m_pc {
		display: block;
	}

	.pc-hidden {
		display: none;
	}
}

@media screen and (max-width: 1023px) {

	.inner {
		padding-left: 12px;
		padding-right: 12px;
	}

	#drawer {
		display: block;
	}

	.header {
		height: 60px;
	}

	.hnav {
		display: none;
	}
}

@media screen and (max-width: 820px) {

	.portfolio-slider {
		width: 100%;
	}

	.portfolio-body {
		width: 100%;
	}

	.portfolio-pagination {
		width: 100%;
	}
}

@media screen and (max-width: 767px) {

	.inner {
		padding-top: 1.6em;
		padding-top: 3.2em;
	}

	.m_sp {
		display: block;
	}

	.sp-hidden {
		display: none;
	}

	.load-img {
		width: 120px;
	}

	.message-card {
		margin-bottom: 2.4em;
		width: 100%;
	}

	.message-card:last-child {
		margin-bottom: 0;
	}

	.mv {
		padding-top: 60px;
	}

	.mv-inner {
		padding-bottom: 2em;
		padding-top: 1.6em;
	}

	.mv-main {
		padding-right: 0;
	}

	.mv-lead {
		margin-bottom: 1.6em;
	}

	.mv-lead span {
		font-size: 1em;
	}

	.mv-head {
		font-size: 1.2em;
	}

	.mv-list li {
		font-size: 1.4em;
		font-weight: 700;
	}

	.mv-img {
		align-items: center;
		display: flex;
		justify-content: space-between;
		margin-top: 1.2em;
		padding: 0;
		position: static;
		width: auto;
	}

	.mv-balloon {
		width: 60%;
	}

	.mv-balloon::before,
	.mv-balloon::after {
		left: 100%;
		top: 50%;
	}

	.mv-balloon::before {
		border: 15.82px solid transparent;
		border-left: 15.82px solid #bdbdbd;
		margin-left: 0;
		margin-top: -15.82px;
	}

	.mv-balloon::after {
		border: 13px solid transparent;
		border-left: 13px solid #fff;
		margin-left: 0;
		margin-top: -13px;
	}

	.mv-haniwa {
		padding: 0 1em;
		width: 40%;
	}

	.mv-btn {
		margin-top: 1em;
	}

	.mv-btn > a {
		font-size: 1em;
	}

	.portfolio-pagination .swiper-pagination-bullet {
		width: 25%;
	}

	.price-table th {
		font-size: 0.9em;
	}

	.price-table th:first-child {
		width: 120px;
	}

	.profile-resume {
		flex-direction: column-reverse;
	}

	.profile-table {
		margin: 0 auto;
		width: calc(100% - 12px);
	}

	.profile-table th {
		font-size: 0.9em;
	}

	.profile-table th:first-child {
		width: 94px;
	}

	.profile-photo {
		margin-bottom: 1.2em;
		width: 100%;
	}

	.promise-card {
		padding-left: 0;
		padding-top: 80px;
	}

	.promise-card:last-child {
		margin-bottom: 0;
	}

	.promise-card::before {
		-webkit-transform: translateX(-50%);
		left: 50%;
		transform: translateX(-50%);
	}

	.promise-title {
		text-align: center;
	}

	.promise-link {
		margin-bottom: 0.8em;
	}

	.skill-card {
		margin-bottom: 2.4em;
		width: 100%;
	}

	.skill-card:last-child {
		margin-bottom: 0;
	}

	.skill-img {
		padding: 0;
	}
}

@media screen and (max-width: 520px) {

	div.wpcf7-response-output {
		margin-left: 0;
		margin-right: 0;
		width: 100%;
	}

	.concept-content {
		width: 100%;
	}

	.contact-form {
		width: 100%;
	}
}

@-webkit-keyframes scale {

	0% {
		-webkit-transform: scale(1);
		opacity: 1;
		transform: scale(1);
	}

	45% {
		-webkit-transform: scale(0.1);
		opacity: 0.7;
		transform: scale(0.1);
	}

	80% {
		-webkit-transform: scale(1);
		opacity: 1;
		transform: scale(1);
	}
}

@keyframes scale {

	0% {
		-webkit-transform: scale(1);
		opacity: 1;
		transform: scale(1);
	}

	45% {
		-webkit-transform: scale(0.1);
		opacity: 0.7;
		transform: scale(0.1);
	}

	80% {
		-webkit-transform: scale(1);
		opacity: 1;
		transform: scale(1);
	}
}
