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

html {
	height: 100%;
}

body {
	height: 100%;
	font-family: 'M PLUS 1p', sans-serif;
	font-size: 14px;
	line-height: 1.5;
	color: #333;
}

/* googlefont
-------------------------------------------------- */

.googlefont {
	transform: rotate(0.03deg);
}

/* link
-------------------------------------------------- */

a {
	color: #b8cf16;
}

a:hover {
	text-decoration: none;
}

/* button
-------------------------------------------------- */

.buttonWrap {
	margin: 40px 0 0;
	text-align: center;
}

.button {
	display: inline-block;
	width: 240px;
	max-width: 100%;
	height: 30px;
	padding: 3px 0;
	border: 2px solid #b8cf16;
	border-radius: 15px;
	font-size: 12px;
	line-height: 20px;
	text-align: center;
	font-weight: bold;
	text-decoration: none;
}

.buttonEn {
	padding: 4px 0 2px;
	font-family: 'Josefin Sans', sans-serif;
}

.buttonYellow {
	background: #fff;
	color: #b8cf16;
}

.buttonYellow:hover {
	background: #b8cf16;
	color: #fff;
}

/* container
-------------------------------------------------- */

.container {
	padding: 0 15px;
}

@media (min-width: 960px) {
	.container {
		padding: 0 100px;
	}
}

/* breadcrumb
-------------------------------------------------- */

.breadcrumb {
	margin-bottom: 40px;
}

.breadcrumb ul {
	display: flex;
	padding: 0;
	margin: 0;
	list-style: none;
	font-size: 14px;
	line-height: 20px;
}

.breadcrumb ul li {
	white-space: nowrap;
}

.breadcrumb ul li:last-of-type {
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 1;
	overflow: hidden;
	text-overflow: ellipsis;
}

.breadcrumb ul li:not(:last-of-type):after {
	padding: 0 10px;
	content: '／';
}

/* pagination
-------------------------------------------------- */

.pagination ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	padding: 0;
	margin: 40px 0 0;
	list-style: none;
	font-size: 14px;
}

.pagination ul li:not(:last-of-type):after {
	padding: 0 5px;
	content: '｜';
}

/* definitionlist
-------------------------------------------------- */

.definitionlist {
	display: flex;
	flex-wrap: wrap;
	margin: 0;
	border-top: 1px solid #ccc;
}

.definitionlist>dt {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	align-content: center;
	flex-basis: 100%;
	padding: 20px 0 0;
}

@media (min-width: 640px) {
	.definitionlist>dt {
		flex-basis: 300px;
		padding: 20px 0;
	}
}

@media (min-width: 640px) {
	.definitionlist>dt {
		border-bottom: 1px solid #ccc;
	}
}

.definitionlist>dd {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	align-content: center;
	flex-basis: 100%;
	padding: 10px 0 20px;
	margin: 0;
}

.definitionlist>dd {
	border-bottom: 1px solid #ccc;
}

@media (min-width: 640px) {
	.definitionlist>dd {
		flex-basis: calc(100% - 300px);
		padding: 20px 0;
	}
}

/* header
-------------------------------------------------- */

.menu {
	position: fixed;
	left: 0;
	top: 0;
	z-index: 99;
	display: none;
	width: 100%;
	height: 100%;
	padding: 100px 15px 0;
	background: #cfdb00;
}

.menu ul {
	padding: 0;
	margin: 0;
	list-style: none;
	font-size: 16px;
	text-align: center;
}

.menu ul li:not(:last-of-type) {
	margin-bottom: 10px;
}

.menu ul li a {
	display: block;
	padding: 10px 0;
	color: #fff;
	font-weight: bold;
	text-decoration: none;
}

header {
	position: fixed;
	left: 0;
	top: 0;
	z-index: 100;
	display: flex;
	justify-content: space-between;
	width: 100%;
	padding: 10px 15px;
	background: #fff;
	filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.2));
}

@media (min-width: 960px) {
	header {
		padding: 20px 30px;
	}
}

header:after {
	content: '';
	position: absolute;
	left: 0;
	top: 100%;
	display: block;
	width: 100%;
	height: 5px;
	background: url(../img/waveWhiteBottom.svg) repeat-x center/auto 5px;
}

@media (min-width: 960px) {
	header:after {
		height: 20px;
		background-size: auto 20px;
	}
}

header h1 {
	margin: 0;
	font-size: 10px;
}

header h1 img {
	width: auto;
	height: 40px;
	vertical-align: bottom;
}

@media (min-width: 960px) {
	header h1 img {
		height: 60px;
	}
}

header nav {
	display: none;
}

@media (min-width: 960px) {
	header nav {
		display: flex;
	}
}

header nav ul {
	display: flex;
	padding: 0;
	margin: 0;
	list-style: none;
	font-size: 14px;
	line-height: 20px;
}

header nav ul li {
	margin-right: 30px;
}

header nav ul li a {
	display: flex;
	align-items: center;
	padding: 20px 0;
	color: #333;
	font-weight: bold;
	text-decoration: none;
}

header nav ul li a:hover {
	color: #cfdb00;
}

.headerIcon {
	margin-right: 5px;
}

.headerContact {
	margin: 0;
	padding: 5px 0;
}

.headerContact a {
	display: inline-block;
	width: 180px;
	height: 50px;
	background: url(../img/cloudYellow.svg) no-repeat center/100% 100%;
	line-height: 50px;
	text-align: center;
	color: #fff;
	font-weight: bold;
	text-decoration: none;
}

.headerContact a:hover {
	color: #333;
}

.headerButton {
	margin: 0;
}

@media (min-width: 960px) {
	.headerButton {
		display: none;
	}
}

.headerButton a {
	display: block;
	width: 50px;
	padding: 10px 0;
	border-radius: 20px;
	background: #cfdb00;
	line-height: 20px;
	text-align: center;
	color: #fff;
	font-weight: bold;
	text-decoration: none;
	cursor: pointer;
}

/* footer
-------------------------------------------------- */

footer {
	position: relative;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: flex-end;
	padding: 60px 30px;
	background: #111;
	filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.2));
	color: #fff;
}

footer:before {
	content: '';
	position: absolute;
	left: 0;
	bottom: 100%;
	display: block;
	width: 100%;
	height: 5px;
	background: url(../img/waveBlackTop.svg) repeat-x center/auto 5px;
}

@media (min-width: 960px) {
	footer:before {
		height: 20px;
		background-size: auto 20px;
	}
}

.footerCompany {
	flex-basis: 100%;
}

@media (min-width: 960px) {
	.footerCompany {
		flex-basis: auto;
	}
}

.footerCompany h1 {
	margin: 0 0 10px;
	font-size: 18px;
	text-align: center;
}

@media (min-width: 960px) {
	.footerCompany h1 {
		margin: 0 0 20px;
		text-align: left;
	}
}

.footerAddress {
	margin: 0;
	font-size: 12px;
	text-align: center;
}

@media (min-width: 960px) {
	.footerAddress {
		font-size: 14px;
		text-align: left;
	}
}

.footerInfo {
	flex-basis: 100%;
}

@media (min-width: 960px) {
	.footerInfo {
		flex-basis: auto;
	}
}

.footerPrivacypolicy {
	text-align: center;
}

@media (min-width: 960px) {
	.footerPrivacypolicy {
		text-align: right;
	}
}

.footerCopyright {
	margin: 0;
	font-size: 12px;
	text-align: center;
	color: #999;
}

@media (min-width: 960px) {
	.footerCopyright {
		text-align: right;
	}
}

/* topFirstview
-------------------------------------------------- */

.topFirstview {
	position: relative;
	margin-top: 60px;
	height: 76vw;
}

@media (min-width: 768px) {
	.topFirstview {
		height: 70vh;
	}
}

@media (min-width: 960px) {
	.topFirstview {
		height: calc(100vh - 100px);
		position: relative;
		margin-top: 100px;
	}
}

@media (min-width: 1920px) {
	.topFirstview {
		height: 100%;
	}
}

/* .topFirstview video {
	width: 100%;
	height: 100%;
	object-fit: cover;
} */
.topFirstview figure {
	margin: initial;
	width: 100%;
	height: 100%;
}

.topFirstview figure img {
	max-width: 100%;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.topFirstviewContainer {
	padding: 0 15px;
}

@media (min-width: 960px) {
	.topFirstviewContainer {
		padding: 0 30px;
	}
}

.topFirstviewMain {
	/* position: absolute;
	left: 50%;
	top: 50%;
	z-index: 1;
	transform: translate(-50%, -50%);
	width: 100%; */
}

@media (min-width: 960px) {
	.topFirstviewMain {
		/* width: 50%; */
	}
}

/* .topFirstviewMainLogo {
	margin: 0 0 50px;
	text-align: center;
}

.topFirstviewMainLogo img {
	max-width: 100%;
	height: auto;
	vertical-align: bottom;
} */
.topContentsWrap {
	position: absolute;
	bottom: 5%;
	left: 50%;
	transform: translateX(-50%);
	width: 100%;
	display: flex;
	flex-flow: column;
	gap: 2vw;
}

@media (min-width: 768px) {
	.topContentsWrap {
		bottom: 7%;
		gap: 26px;
	}
}

@media (min-width: 960px) {
	.topContentsWrap {
		bottom: 10%;
		gap: 32px;
	}
}

.topFirstviewMainCatchphrase {
	margin: 0;
	line-height: 1.6;
	text-align: center;
	color: #fff;
	font-weight: bold;
	-webkit-text-stroke: 4px #0094b7;
	text-stroke: 4px #0094b7;
	paint-order: stroke;
	font-size: 3vw;
}

@media (min-width: 768px) {
	.topFirstviewMainCatchphrase {
		font-size: 20px;
	}
}

@media (min-width: 960px) {
	.topFirstviewMainCatchphrase {
		font-size: 24px;
	}
}

.topFirstviewReadmore {
	/* position: absolute;
	left: 50%;
	bottom: 40px; */
	z-index: 2;
	/* transform: translateX(-50%); */
	font-family: 'Josefin Sans', sans-serif;
	text-align: center;
}

.topFirstviewReadmore a {
	display: inline-block;
	aspect-ratio: 180/50;
	width: 20vw;
	height: auto;
	background: url(../img/cloudWhite.svg) no-repeat center/100% 100%;
	text-align: center;
	color: #cfdb00;
	font-weight: bold;
	text-decoration: none;
	line-height: 3;
	font-size: 2.2vw;
}

@media (min-width: 768px) {
	.topFirstviewReadmore a {
		width: 180px;
		height: 50px;
		line-height: 50px;
		font-size: 14px;
	}
}

.topFirstviewInfo {
	position: absolute;
	right: 0;
	bottom: 30px;
	z-index: 2;
	width: 270px;
	height: 90px;
	padding: 15px 0 15px 10px;
	background: url(../img/topFirstviewInfo.svg) no-repeat left center/auto 100%;
}

@media (min-width: 960px) {
	.topFirstviewInfo {
		bottom: 60px;
		width: 360px;
		height: 120px;
		padding: 20px 0 20px 10px;
	}
}

.topFirstviewInfoHeadline {
	margin: 0;
	font-family: 'Josefin Sans', sans-serif;
	font-size: 16px;
	line-height: 20px;
	color: #cfdb00;
	font-weight: bold;
}

@media (min-width: 960px) {
	.topFirstviewInfoHeadline {
		font-size: 24px;
		line-height: 30px;
	}
}

.topFirstviewInfoTitle {
	margin: 0;
	font-size: 12px;
	line-height: 20px;
	font-weight: bold;
}

@media (min-width: 960px) {
	.topFirstviewInfoTitle {
		font-size: 16px;
		line-height: 30px;
	}
}

.topFirstviewInfoTitle a {
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 1;
	overflow: hidden;
	color: #333;
	text-decoration: none;
	white-space: nowrap;
	text-overflow: ellipsis;
}

.topFirstviewInfoTitle a:hover {
	color: #cfdb00;
}

.topFirstviewInfoDate {
	margin: 0;
	font-size: 10px;
	line-height: 20px;
	font-weight: bold;
}

@media (min-width: 960px) {
	.topFirstviewInfoDate {
		font-size: 12px;
		line-height: 20px;
	}
}

/* topCommon
-------------------------------------------------- */

.topCommon {
	padding: 60px 0;
}

@media (min-width: 960px) {
	.topCommon {
		padding: 180px 0;
	}
}

.topCommon h2 {
	margin: 0 0 30px;
	font-family: 'Josefin Sans', sans-serif;
	font-size: 50px;
	line-height: 1em;
	text-align: center;
	color: #cfdb00;
}

@media (min-width: 960px) {
	.topCommon h2 {
		margin: 0 0 60px;
		font-size: 100px;
	}
}

/* topWorks
-------------------------------------------------- */

.topWorks {
	position: relative;
	background: #fff;
}

.topWorks:before {
	content: '';
	position: absolute;
	left: 0;
	bottom: 100%;
	display: block;
	width: 100%;
	height: 5px;
	background: url(../img/waveWhiteTop.svg) repeat-x center/auto 5px;
}

@media (min-width: 960px) {
	.topWorks:before {
		height: 20px;
		background-size: auto 20px;
	}
}

.topWorksInfo {
	padding: 15px;
	margin-bottom: 15px;
	border-radius: 10px;
	background: #f0f3f5;
}

@media (min-width: 960px) {
	.topWorksInfo {
		padding: 30px;
		margin: 0 0 60px;
	}
}

.topWorksInfoHeader {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin-bottom: 10px;
}

@media (min-width: 960px) {
	.topWorksInfoHeader {
		margin-bottom: 20px;
	}
}

.topWorksInfoHeaderHeadline {
	padding-top: 6px;
	font-family: 'Josefin Sans', sans-serif;
	font-size: 24px;
	line-height: 24px;
	margin: 0;
	color: #2b99ff;
}

.topWorksInfoHeaderReadmore {
	margin: 0;
}

.topWorksInfoHeaderReadmore a {
	transition: 0.2s;
	display: block;
	width: 120px;
	padding: 4px 0 2px;
	border: 2px solid #2b99ff;
	border-radius: 15px;
	font-family: 'Josefin Sans', sans-serif;
	font-size: 12px;
	line-height: 20px;
	text-align: center;
	color: #2b99ff;
	font-weight: bold;
	text-decoration: none;
}

.topWorksInfoHeaderReadmore a:hover {
	background: #2b99ff;
	color: #fff;
}

.infoList {
	display: flex;
	flex-wrap: wrap;
	padding: 0;
	margin: -5px;
	list-style: none;
}

@media (min-width: 960px) {
	.infoList {
		margin: -10px;
	}
}

.infoList>li {
	flex-basis: 100%;
	padding: 5px;
}

@media (min-width: 960px) {
	.infoList>li {
		padding: 10px;
	}
}

@media (min-width: 960px) {
	.topWorksInfo .infoList>li {
		flex-basis: 33.33%;
	}
}

@media (min-width: 960px) {
	.topAwards .infoList>li {
		flex-basis: 33.33%;
	}
}

.infoList>li>span,
.infoList>li a {
	display: block;
	height: 100%;
	padding: 15px 20px;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.infoList>li>span {
	background: #fff;
}

.infoList>li a {
	transition: 0.2s;
	background: #fff url(../img/iconSearchGray.png) no-repeat right bottom/27px 22px;
	text-decoration: none;
}

@media (min-width: 960px) {

	.infoList>li>span,
	.infoList>li a {
		background-size: 41px 33px;
	}
}


.pastworks .infoList>li>span,
.pastworks .infoList>li a {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.pastworks .infoList>li>span>span,
.pastworks .infoList>li a>span {
	flex-basis: 100%;
}

@media (min-width: 960px) {

	.pastworks .infoList>li>span>span,
	.pastworks .infoList>li a>span {
		flex-basis: calc(50% - 10px);
	}
}

.infoListMetaTag {
	display: inline-block;
	width: 80px;
	margin-right: 1em;
	border-radius: 6px;
	background: #cdd6dd;
	font-size: 8px;
	line-height: 12px;
	text-align: center;
	color: #333;
}


.infoList>li a:hover {
	box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}

.infoListMeta {
	margin: 0 0 5px;
	font-size: 10px;
	color: #2b99ff;
	font-weight: bold;
}

@media (min-width: 960px) {
	.infoListMeta {
		margin: 0 0 10px;
		font-size: 12px;
	}
}

.infoListMetaSub {
	color: #333;
	font-weight: normal;
}

.infoListMetaFlex {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}

.infoListMeta span {
	flex-basis: auto;
}

.infoListMeta span:not(:last-of-type):after {
	content: '｜';
	padding: 0 10px;
	color: #ccc;
	font-weight: normal;
}

.infoListMeta i {
	width: 10px;
	margin-right: 0.6em;
	text-align: center;
}

@media (min-width: 960px) {
	.infoListMeta i {
		width: 12px;
	}
}

.infoListMetaNote {
	display: inline-block;
	margin-left: 16px;
	font-size: 8px;
	color: #666;
	font-weight: normal;
}

@media (min-width: 960px) {
	.infoListMetaNote {
		margin-left: 20px;
		font-size: 10px;
	}
}

.infoListTitle {
	margin: 0;
	font-size: 14px;
	color: #333;
	font-weight: bold;
}

@media (min-width: 960px) {
	.infoListTitle {
		font-size: 16px;
	}
}

.infoListTitleNote {
	display: inline-block;
	margin-left: 0.6em;
	font-size: 10px;
	color: #666;
	font-weight: normal;
}

@media (min-width: 960px) {
	.infoListTitleNote {
		font-size: 12px;
	}
}

.infoListMetaStatus {
	display: inline-block;
	padding: 0 10px;
	border-radius: 6px;
	font-size: 8px;
	line-height: 10px;
}

@media (min-width: 960px) {
	.infoListMetaStatus {
		font-size: 10px;
	}
}

.infoListMetaSchedule {
	border: 1px solid #2b99ff;
	color: #2b99ff;
}

.infoListMetaOnair {
	border: 1px solid #2b99ff;
	background: #2b99ff;
	color: #fff;
}

.infoListMetaEnd {
	border: 1px solid #999;
	color: #999;
}






.worksList {
	display: flex;
	flex-wrap: wrap;
	padding: 0;
	margin: -5px;
	list-style: none;
}

@media (min-width: 960px) {
	.worksList {
		margin: -15px;
	}
}

.worksList>li {
	flex-basis: 50%;
	padding: 5px;
}

@media (min-width: 960px) {
	.worksList>li {
		flex-basis: 25%;
		padding: 15px;
	}
}

.worksList>li a {
	transition: 0.2s;
	display: block;
	height: 100%;
	padding-bottom: 15px;
	background: #fff;
	background-image: url(../img/iconSearchYellow.png);
	background-repeat: no-repeat;
	background-position: right bottom;
	background-size: 27px 22px;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
	text-decoration: none;
}

@media (min-width: 960px) {
	.worksList>li a {
		padding-bottom: 25px;
		background-size: 41px 33px;
	}
}

.worksList>li a:hover {
	box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}

.worksListImage {
	margin: 0 0 15px;
}

@media (min-width: 960px) {
	.worksListImage {
		margin: 0 0 25px;
	}
}

.worksListImage img {
	width: 100%;
	height: auto;
	vertical-align: bottom;
}

.worksListTitle {
	padding: 0 20px;
	margin: 0 0 10px;
	font-size: 14px;
	line-height: 20px;
	color: #333;
	font-weight: bold;
}

@media (min-width: 960px) {
	.worksListTitle {
		padding: 0 30px;
		margin: 0 0 20px;
		font-size: 16px;
		line-height: 25px;
	}
}

.worksListMeta {
	padding: 0 20px;
	margin: 0 0 5px;
	font-size: 10px;
	line-height: 15px;
	color: #333;
}

@media (min-width: 960px) {
	.worksListMeta {
		padding: 0 30px;
		margin: 0 0 10px;
		font-size: 12px;
		line-height: 20px;
	}
}

.worksListCategory {
	display: flex;
	flex-wrap: wrap;
	padding: 0 18px;
	margin: 8px 0 -2px;
	list-style: none;
}

@media (min-width: 960px) {
	.worksListCategory {
		padding: 0 25px;
		margin: 15px 0 -5px;
		list-style: none;
	}
}

.worksListCategory li {
	padding: 2px;
}

@media (min-width: 960px) {
	.worksListCategory li {
		padding: 5px;
	}
}

.worksListCategory li span {
	display: block;
	padding: 0 6px;
	border: 1px solid #b8cf16;
	border-radius: 8px;
	background: #fff;
	font-size: 8px;
	line-height: 14px;
	color: #b8cf16;
}

@media (min-width: 960px) {
	.worksListCategory li span {
		padding: 0 14px;
		border-radius: 10px;
		font-size: 12px;
		line-height: 18px;
	}
}

.topWorksReadmore {
	margin: 15px 0 0;
}

@media (min-width: 960px) {
	.topWorksReadmore {
		margin: 30px 0 0;
	}
}

.topWorksReadmore a {
	display: block;
	width: 240px;
	padding: 4px 0 2px;
	margin: 0 auto;
	border: 2px solid #b8cf16;
	border-radius: 15px;
	font-family: 'Josefin Sans', sans-serif;
	font-size: 12px;
	line-height: 20px;
	text-align: center;
	color: #b8cf16;
	font-weight: bold;
	text-decoration: none;
}

.topWorksReadmore a:hover {
	background: #b8cf16;
	color: #fff;
}

/* topBlog
-------------------------------------------------- */

.topBlog {
	position: relative;
	background: #cfdb00;
}

.topBlog:before {
	content: '';
	position: absolute;
	left: 0;
	bottom: 100%;
	display: block;
	width: 100%;
	height: 5px;
	background: url(../img/waveYellowTop.svg) repeat-x center/auto 5px;
}

@media (min-width: 960px) {
	.topBlog:before {
		height: 20px;
		background-size: auto 20px;
	}
}

.topBlog h2 {
	color: #fff;
}

.blogList {
	display: flex;
	flex-wrap: wrap;
	padding: 0;
	margin: -5px;
	list-style: none;
}

@media (min-width: 960px) {
	.blogList {
		margin: -15px;
	}
}

.blogList>li {
	flex-basis: 50%;
	padding: 5px;
}

@media (min-width: 960px) {
	.blogList>li {
		flex-basis: 25%;
		padding: 15px;
	}
}

.blogList>li a {
	display: block;
	height: 100%;
	padding: 15px 0;
	background: #fff;
	background-image: url(../img/iconSearchYellow.png);
	background-repeat: no-repeat;
	background-position: right bottom;
	background-size: 27px 22px;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
	text-decoration: none;
}

.topBlog .blogList>li a {
	background-image: url(../img/iconSearchGray.png);
}

@media (min-width: 960px) {
	.blogList>li a {
		padding: 25px 0;
		background-size: 41px 33px;
	}
}

.blogList>li a:hover {
	box-shadow: 0 0 5px rgba(0, 0, 0, 0.05);
}

.blogListImage {
	margin: 0 0 15px;
}

@media (min-width: 960px) {
	.blogListImage {
		margin: 0 0 25px;
	}
}

.blogListImage img {
	width: 100%;
	height: auto;
	vertical-align: bottom;
}

.blogListTitle {
	padding: 0 20px;
	margin: 0 0 10px;
	font-size: 14px;
	line-height: 20px;
	color: #333;
	font-weight: bold;
}

@media (min-width: 960px) {
	.blogListTitle {
		padding: 0 30px;
		margin: 0 0 20px;
		font-size: 16px;
		line-height: 25px;
	}
}

.blogListMeta {
	padding: 0 20px;
	margin: 0 0 5px;
	font-size: 10px;
	line-height: 15px;
	color: #333;
}

@media (min-width: 960px) {
	.blogListMeta {
		padding: 0 30px;
		margin: 0 0 10px;
		font-size: 12px;
		line-height: 20px;
	}
}

.blogListCategory {
	display: flex;
	flex-wrap: wrap;
	padding: 0 18px;
	margin: 8px 0 -2px;
	list-style: none;
}

@media (min-width: 960px) {
	.blogListCategory {
		padding: 0 25px;
		margin: 15px 0 -5px;
		list-style: none;
	}
}

.blogListCategory li {
	padding: 2px;
}

@media (min-width: 960px) {
	.blogListCategory li {
		padding: 5px;
	}
}

.blogListCategory li span {
	display: block;
	padding: 0 6px;
	border: 1px solid #b8cf16;
	border-radius: 8px;
	background: #fff;
	font-size: 8px;
	line-height: 14px;
	color: #b8cf16;
}

@media (min-width: 960px) {
	.blogListCategory li span {
		padding: 0 14px;
		border-radius: 10px;
		font-size: 12px;
		line-height: 18px;
	}
}

.topBlogReadmore {
	margin: 15px 0 0;
}

@media (min-width: 960px) {
	.topBlogReadmore {
		margin: 30px 0 0;
	}
}

.topBlogReadmore a {
	display: block;
	width: 240px;
	padding: 4px 0 2px;
	margin: 0 auto;
	border: 2px solid #fff;
	border-radius: 15px;
	font-family: 'Josefin Sans', sans-serif;
	font-size: 12px;
	line-height: 20px;
	text-align: center;
	color: #fff;
	font-weight: bold;
	text-decoration: none;
}

.topBlogReadmore a:hover {
	background: #fff;
	color: #b8cf16;
}

/* topAwards
-------------------------------------------------- */

.topAwards {
	position: relative;
	background: #f0f3f5;
}

.topAwards:before {
	content: '';
	position: absolute;
	left: 0;
	bottom: 100%;
	display: block;
	width: 100%;
	height: 5px;
	background: url(../img/waveGrayTop.svg) repeat-x center/auto 5px;
}

@media (min-width: 960px) {
	.topAwards:before {
		height: 20px;
		background-size: auto 20px;
	}
}

.topAwardsReadmore {
	margin: 15px 0 0;
}

@media (min-width: 960px) {
	.topAwardsReadmore {
		margin: 30px 0 0;
	}
}

.topAwardsReadmore a {
	display: block;
	width: 240px;
	padding: 4px 0 2px;
	margin: 0 auto;
	border: 2px solid #2b99ff;
	border-radius: 15px;
	font-family: 'Josefin Sans', sans-serif;
	font-size: 12px;
	line-height: 20px;
	text-align: center;
	color: #2b99ff;
	font-weight: bold;
	text-decoration: none;
}

/* topAbout
-------------------------------------------------- */

.topAbout {
	position: relative;
	background: url(../img/aboutBg.jpg) center/cover fixed;
}

.topAbout:before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	display: block;
	width: 100%;
	height: 5px;
	background: url(../img/waveInnerGrayTop.svg) repeat-x center/auto 5px;
}

@media (min-width: 960px) {
	.topAbout:before {
		height: 20px;
		background-size: auto 20px;
	}
}

.topAbout h2 {
	color: #333;
}

.topAboutCatchphrase {
	font-size: 14px;
	text-align: center;
}

@media (min-width: 960px) {
	.topAboutCatchphrase {
		font-size: 18px;
	}
}

.topAboutReadmore {
	margin: 15px 0 0;
}

@media (min-width: 960px) {
	.topAboutReadmore {
		margin: 30px 0 0;
	}
}

.topAboutReadmore a {
	display: block;
	width: 240px;
	padding: 4px 0 2px;
	margin: 0 auto;
	border: 2px solid #333;
	border-radius: 15px;
	font-family: 'Josefin Sans', sans-serif;
	font-size: 12px;
	line-height: 20px;
	text-align: center;
	color: #333;
	font-weight: bold;
	text-decoration: none;
}

/* topRecruit
-------------------------------------------------- */

.topRecruit {
	position: relative;
	background: #cfdb00;
}

.topRecruit:before {
	content: '';
	position: absolute;
	left: 0;
	bottom: 100%;
	display: block;
	width: 100%;
	height: 5px;
	background: url(../img/waveYellowTop.svg) repeat-x center/auto 5px;
}

@media (min-width: 960px) {
	.topRecruit:before {
		height: 20px;
		background-size: auto 20px;
	}
}

.topRecruit h2 {
	color: #fff;
}

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

@media (min-width: 960px) {
	.topRecruitCatchphrase {
		font-size: 18px;
	}
}

.topRecruitReadmore {
	margin: 15px 0 0;
}

@media (min-width: 960px) {
	.topRecruitReadmore {
		margin: 30px 0 0;
	}
}

.topRecruitReadmore a {
	display: block;
	width: 240px;
	padding: 4px 0 2px;
	margin: 0 auto;
	border: 2px solid #fff;
	border-radius: 15px;
	font-family: 'Josefin Sans', sans-serif;
	font-size: 12px;
	line-height: 20px;
	text-align: center;
	color: #fff;
	font-weight: bold;
	text-decoration: none;
}

.topRecruitReadmore a:hover {
	background: #fff;
	color: #b8cf16;
}

/* underHeadline
-------------------------------------------------- */

.underHeadline {
	padding: 130px 0 60px;
	background: linear-gradient(135deg, #cfdb00, #dde566);
}

@media (min-width: 960px) {
	.underHeadline {
		padding: 220px 0 100px;
	}
}

.underHeadline h2 {
	margin: 0;
	font-family: 'Josefin Sans', sans-serif;
	font-size: 40px;
	line-height: 1;
	text-align: center;
	color: #fff;
}

@media (min-width: 960px) {
	.underHeadline h2 {
		font-size: 80px;
	}
}

/* underCommon
-------------------------------------------------- */

.underCommon {
	position: relative;
	padding: 40px 0 60px;
	background: #fff;
	filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.2));
}

@media (min-width: 960px) {
	.underCommon {
		padding: 60px 0 180px;
	}
}

.underCommon:before {
	content: '';
	position: absolute;
	left: 0;
	bottom: 100%;
	display: block;
	width: 100%;
	height: 5px;
	background: url(../img/waveWhiteTop.svg) repeat-x center/auto 5px;
}

@media (min-width: 960px) {
	.underCommon:before {
		height: 20px;
		background-size: auto 20px;
	}
}

.underCommonHeadline {
	margin: 40px 0 20px;
	font-size: 24px;
}

@media (min-width: 960px) {
	.underCommonHeadline {
		font-size: 36px;
	}
}

.underCommonMeta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	margin-bottom: 40px;
}

.underCommonMeta .underCommonCategory {
	margin: 0 0 0 20px;
}

.underCommonCategory {
	display: flex;
	flex-wrap: wrap;
	padding: 0;
	margin: 0 0 40px;
	list-style: none;
}

.underCommonCategory li {
	margin-right: 4px;
}

@media (min-width: 960px) {
	.underCommonCategory li {
		margin-right: 10px;
	}
}

.underCommonCategory li span {
	display: block;
	padding: 0 6px;
	border: 1px solid #b8cf16;
	border-radius: 8px;
	background: #fff;
	font-size: 8px;
	line-height: 14px;
	color: #b8cf16;
}

@media (min-width: 960px) {
	.underCommonCategory li span {
		padding: 0 14px;
		border-radius: 10px;
		font-size: 12px;
		line-height: 18px;
	}
}

.underCommonBack {
	margin: 40px 0 0;
}

.underCommonBack a {
	display: block;
	width: 240px;
	padding: 4px 0 2px;
	margin: 0 auto;
	border: 2px solid #cdd6dd;
	border-radius: 15px;
	font-family: 'Josefin Sans', sans-serif;
	font-size: 12px;
	line-height: 20px;
	text-align: center;
	color: #cdd6dd;
	font-weight: bold;
	text-decoration: none;
}

.underCommonBack a:hover {
	border-color: #b8cf16;
	color: #b8cf16;
}

.underMenuHeadline {
	color: #b8cf16;
	font-weight: bold;
}

.underMenuHeadline i {
	width: 14px;
	margin-right: 0.4em;
	text-align: center;
}

.underMenu {
	position: relative;
	display: flex;
	padding: 0;
	margin: -10px 0 30px;
	overflow-x: auto;
	list-style: none;
}

.underMenu:before {
	position: absolute;
	bottom: 0;
	left: 0;
	display: block;
	width: 100%;
	height: 2px;
	background: #ccc;
	content: '';
}

.underMenu li {
	position: relative;
	z-index: 1;
	white-space: nowrap;
}

.underMenu li a {
	display: block;
	padding: 10px 20px;
	border-bottom: 2px solid #ccc;
	color: #333;
	text-decoration: none;
}

.underMenu li a:hover,
.underMenu li.active a {
	border-bottom: 2px solid #b8cf16;
	color: #b8cf16;
}











/* about
-------------------------------------------------- */

.about .definitionlist {
	margin: 60px 0;
}

/* googlemap
-------------------------------------------------- */

.googlemap {
	position: relative;
	height: 0;
	padding-bottom: 100%;
	overflow: hidden;
}

@media (min-width: 640px) {
	.googlemap {
		padding-bottom: 360px;
	}
}

.googlemap iframe,
.googlemap object,
.googlemap embed {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

/* recruit
-------------------------------------------------- */

.recruitHeadline {
	margin-top: 60px;
	font-size: 18px;
}

@media (min-width: 960px) {
	.recruitHeadline {
		font-size: 24px;
	}
}

/* works
-------------------------------------------------- */

.worksFlex {
	display: flex;
	flex-wrap: wrap;
	margin: -15px;
}

.worksImage {
	flex-basis: 100%;
	padding: 15px;
}

@media (min-width: 960px) {
	.worksImage {
		flex-basis: 50%;
	}
}

.worksImage img {
	width: 100%;
	height: auto;
	border: 1px solid #ccc;
	vertical-align: bottom;
}

.worksDescription {
	flex-basis: 100%;
	padding: 15px;
}

@media (min-width: 960px) {
	.worksDescription {
		flex-basis: 50%;
	}
}

.awards .definitionlist {
	margin: 40px 0;
}

.worksReadmore {
	margin: 15px 0 0;
}

@media (min-width: 960px) {
	.worksReadmore {
		margin: 30px 0 0;
	}
}

.worksReadmore a {
	display: block;
	width: 240px;
	padding: 4px 0 2px;
	margin: 0 auto;
	border: 2px solid #b8cf16;
	border-radius: 15px;
	font-family: 'Josefin Sans', sans-serif;
	font-size: 12px;
	line-height: 20px;
	text-align: center;
	color: #b8cf16;
	font-weight: bold;
	text-decoration: none;
}

.worksReadmore a:hover {
	background: #b8cf16;
	color: #fff;
}


/* blog
-------------------------------------------------- */

.blogImage img {
	width: 100%;
	max-width: 1200px;
	height: auto;
	vertical-align: bottom;
}

/* contact
-------------------------------------------------- */

input[type="text"],
input[type="email"],
textarea {
	-webkit-appearance: none;
	border-radius: 0;
}

button,
input,
textarea {
	font-family: 'M PLUS 1p', sans-serif;
}

/* contact
-------------------------------------------------- */

.contact .definitionlist {
	margin-bottom: 40px;
}

.mailformTag {
	display: inline-block;
	padding: 0 5px;
	margin-left: 0.5em;
	border-radius: 4px;
	font-size: 10px;
	font-weight: normal;
}

.mailformRequired {
	background: #e7280e;
	color: #fff;
}

.mailformOptional {
	background: #999;
	color: #fff;
}

.mailformNotes {
	flex-basis: 100%;
	font-size: 12px;
}

.mailformForm input,
.mailformForm textarea {
	padding: 5px;
	border: 1px solid #ccc;
	border-radius: 5px;
	line-height: 1.5;
}

.mailform400px input {
	width: 100%;
	max-width: 400px;
}

.mailformForm textarea {
	width: 100%;
	vertical-align: bottom;
}

.mailformButton {
	padding: 0;
	margin: 40px 0 -1em;
	list-style: none;
	text-align: center;
}

.mailformButton button {
	margin: 0 10px 1em;
	cursor: pointer;
}

.mailformButton button:focus {
	outline: 0;
}

.mw_wp_form_input .mailformHideInput {
	display: none;
}

.mw_wp_form_confirm .mailformHideConfirm {
	display: none;
}

/* privacylist
-------------------------------------------------- */

.privacylist {
	padding-left: 20px;
	margin: 40px 0 0;
}

.privacylist>li:not(:last-of-type) {
	margin-bottom: 40px;
}



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

.blogColumnMain {
	flex-basis: 100%;
}

@media (min-width: 960px) {
	.blogColumnMain {
		flex-basis: calc(100% - 340px);
	}
}



.blogColumnSide {
	flex-basis: 300px;
}

@media (max-width: 959px) {
	.blogColumnSide {
		display: none;
	}
}



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

.blogList02>li {
	margin-bottom: 40px;
}


.blogListBox {
	padding: 3px;
	border-radius: 10px;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
	background: #b8cf16;
}

.blogListBox02 {
	padding: 30px;
	border-radius: 9px;
	box-shadow: 0 0 5px rgba(0, 0, 0, 0.5) inset;
	background: url(../img/blogBg.jpg);
}

.blogListBox03 {
	position: relative;
	padding: 30px 30px 100px;
	box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
	background: url(../img/blogBg02.png);
}

@media (min-width: 960px) {
	.blogListBox03 {
		padding: 30px;
	}
}

.blogListPin {
	position: absolute;
	top: 0;
	left: 50%;
	transform: translate(-50%, -10px);
	width: 32px;
	height: 40px;
	background: url(../img/blogPin.png) no-repeat center/32px 40px;
}

.blogList02Title {
	font-size: 24px;
	font-weight: bold;
}


.blogList02Title {
	margin: 0 0 20px;
	padding: 100px 0 0;
	font-size: 20px;
	background: url(../img/blogBg03.png) repeat-x left bottom/auto 15px;
}

@media (min-width: 960px) {
	.blogList02Title {
		padding: 0 200px 0 0;
		font-size: 30px;
	}
}

.blogListBody {
	line-height: 2;
}

.blogListBody>* {
	max-width: 100%;
	overflow-wrap: anywhere;
}


.blogListTagTime {
	position: absolute;
	right: 0;
	top: 10px;
	z-index: 2;
	transform: translateX(-10px) rotate(-2deg);
	height: 51px;
	width: 188px;
	padding: 11px 20px 0;
	line-height: 40px;
	background: url(../img/blogTag.png) no-repeat left center/188px 51px;
	filter: drop-shadow(1px 1px 2px rgba(0, 0, 0, 0.2));
	font-weight: bold;
	color: #2b99ff;
}

.blogList02Category {
	position: absolute;
	right: 0;
	top: 65px;
	z-index: 1;
	transform: translateX(10px) rotate(1deg);
	height: 51px;
	width: 188px;
	padding: 11px 20px 0;
	line-height: 40px;
	background: url(../img/blogTag02.png) no-repeat left center/188px 51px;
	filter: drop-shadow(1px 1px 2px rgba(0, 0, 0, 0.2));
	font-weight: bold;
	list-style: none;
	margin: 0;
	display: flex;
}



.blogSideBoxMain ul {
	list-style: none;
	margin: 0;
	padding: 0 10px;
}

.blogSideBoxMain ul li h5 {
	margin: 0;
	font-size: 14px;
}

.blogSideBoxMain ul li a {
	text-decoration: none;
}

.blogSideBoxMain ul li {
	padding: 10px 0;
	border-bottom: 1px dashed #b8cf16;
}


.blogSideBox {
	margin-bottom: 40px;
	padding: 10px;
	border-radius: 10px;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
	background: #b8cf16;
}

.blogSideBox02 {
	padding: 15px 10px;
	border-radius: 9px;
	background: #fff;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.blogSideBox h4 {
	transform: translateX(-15px) rotate(0.03deg);
	height: 40px;
	padding-left: 50px;
	margin: 0;
	background: #cfebfb url(../img/blogTag03.png) no-repeat left center/256px 59px;
	line-height: 40px;
	box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.blogSideBox ul li p {
	color: #333;
	font-size: 12px;
	margin: 0;
}

.blogClip {
	transform: translate(10px, 10px);
	position: absolute;
	bottom: 0;
	right: 0;
	z-index: 2;
	background: url(../img/blogClip.png) no-repeat center/80px 81px;
	width: 80px;
	height: 81px;
}

.blogClip02 {
	transform: translate(10px, 10px);
	position: absolute;
	bottom: 0;
	right: 60px;
	z-index: 1;
	background: url(../img/seal1.png) no-repeat center/106px 107px;
	width: 106px;
	height: 107px;
}

.blog {
	background: url(../img/blogBg01.jpg);
}

.underCommon.blog:before {
	background: url(../img/waveGrayTop.svg) repeat-x center/auto 5px;
}

@media (min-width: 960px) {
	.underCommon.blog:before {
		height: 20px;
		background-size: auto 20px;
	}
}


@media (min-width: 480px) {}

@media (min-width: 640px) {}

@media (min-width: 960px) {}

@media (min-width: 1280px) {}