@charset "UTF-8";
/* ****************************************************************** 

	--style.css--

	1. Style setting
		1-1. FontColor styles
		1-2. Headline styles

	2. Layout setting
		2-1. Base styles
		2-2. Header styles
		2-3. Navi styles
		2-4. Main styles
		2-5. Side styles
		2-6. Footer styles

****************************************************************** */

/*==================================================================
	1. Style setting
===================================================================*/

/* ------------------------------------------------------------------
	1-1. FontColor styles
-------------------------------------------------------------------*/
html {
	color: #333;
	overflow-x: hidden;
	width: 100%;
}

body {
	font-family: "ヒラギノ角ゴシック Pro", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

.touchHover,
.noTapColor,
button {
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.pcDisplay {
	display: block;
}

.spDisplay {
	display: none;
}

@media screen and (max-width:768px) {
	.pcDisplay {
		display: none;
	}

	.spDisplay {
		display: block;
	}
}


/* ------------------------------------------------------------------
	1-2. Headline styles
-------------------------------------------------------------------*/

.headline2 {
	text-align: center;
	color: #0f60ad;
	font-size: 46px;
	margin-bottom: 70px;
	letter-spacing: 2px;
}

.headline2.red {
	color: #f3131a;
}

@media screen and (max-width:768px) {
	.headline2 {
		font-size: 28px;
		margin-bottom: 15px;
	}
}

@media screen and (max-width:610px) {
	.headline2 {
		font-size: 21px;
	}
}

/*==================================================================
	2. Layout setting
===================================================================*/

/* ------------------------------------------------------------------
	2-1. Keyv styles
-------------------------------------------------------------------*/
#keyv {
	position: relative;
}

#keyv::before {
	background-color: #f2f2f2;
	content: "";
	height: 100%;
	left: 0;
	opacity: 0;
	position: absolute;
	top: 0;
	transition: opacity 1.53s;
	z-index: -1;
	width: 100%;
}

#keyv.bgAnimation::before {
	opacity: 1;
}

.titleKeyv {
	padding-top: 130px;
}

#keyv .inner {
	position: relative;
	height: 445px;
}

#keyv .person {
	cursor: pointer;
	opacity: 0;
	outline: none;
	position: absolute;
	transition: opacity 1.53s;
	-webkit-tap-highlight-color: transparent;
}

#keyv .person.fadeIn {
	opacity: 1;
}

#keyv .person img {
	vertical-align: middle;
}

#keyv .person:after {
	position: absolute;
	opacity: 0;
	transition: opacity .3s;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	content: '';
}

#keyv .person:before {
	position: absolute;
	transition: opacity .3s;
	pointer-events: none;
	font-size: 14px;
	opacity: 0;
	white-space: nowrap;
}

#keyv .person.pos01 {
	left: 41.5%;
	bottom: 10px;
}

#keyv .person.pos01:after {
	background: url(../img/common/img_people01_color.png) no-repeat 50% 50%/contain;
}

#keyv .person.pos01:before {
	bottom: 5px;
	left: 77%;
	content: '（広告代理店営業リーダー・36歳）';
}

#keyv .person.pos02 {
	right: 2.6%;
	bottom: 37px;
}

#keyv .person.pos02:after {
	background: url(../img/common/img_people02_color.png) no-repeat 50% 50%/contain;
}

#keyv .person.pos02:before {
	bottom: -26px;
	right: -4px;
	content: '（広告代理店営業・33歳）';
}

#keyv .person.pos03 {
	left: 59.1%;
	top: 15px;
}

#keyv .person.pos03:after {
	background: url(../img/common/img_people03_color.png) no-repeat 50% 50%/contain;
}

#keyv .person.pos03:before {
	top: 41%;
	left: 75%;
	content: '（メーカー商品開発部・32歳）';
}

#keyv .person.pos04 {
	left: 16.8%;
	top: 16px;
}

#keyv .person.pos04:after {
	background: url(../img/common/img_people04_color.png) no-repeat 50% 50%/contain;
}

#keyv .person.pos04:before {
	top: 32%;
	right: 83%;
	content: '（⾃治体ブランド推進室・42歳）';
}

#keyv .person.pos05 {
	bottom: 5%;
	left: 6.3%;
}

#keyv .person.pos05:after {
	background: url(../img/common/img_people05_color.png) no-repeat 50% 50%/contain;
}

#keyv .person.pos05:before {
	top: 37%;
	left: 66%;
	content: '（メーカー商品企画部・27歳）';
}

#keyv .person:hover:after,
#keyv .person:hover:before {
	opacity: 1;
}

#keyv .person:hover img,
#keyv .person:hover::after {
	animation: personHover 1s infinite;
}

@keyframes personHover {
	0% {
		transform: rotate(0);
	}
	25% {
		transform: rotate(3deg);
	}
	50% {
		transform: rotate(0);
	}
	75% {
		transform: rotate(3deg);
	}
	100% {
		transform: rotate(0);
	}
	75% {
		transform: rotate(3deg);
	}
	50% {
		transform: rotate(0);
	}
	25% {
		transform: rotate(3deg);
	}
	0% {
		transform: rotate(0);
	}
}

/* ------------------------------------------------------------------
	2-2. Header styles
-------------------------------------------------------------------*/
header {
	padding: 25px 20px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	position: fixed;
	width: 100%;
	z-index: 11;
	background-color: #FFF;
	box-shadow: 0 -3px 5px #999;
}

header .logo {
	transition: opacity .3s;
	width: 100%;
	max-width: 243px;
}

header .logo:hover {
	opacity: .7;
}

/* ------------------------------------------------------------------
	2-3. Navi styles
-------------------------------------------------------------------*/
nav {
	font-size: 14px;
	font-weight: bold;
}

nav a {
	color: #403d3c;
	text-decoration: none;
	padding-bottom: 8px;
	margin: 0 12px;
	transition: border-bottom .3s, color .3s;
	border-bottom: 3px solid #FFF;
}

nav a:hover {
	color: #f3131a;
	border-color: #f3131a;
}

nav a:last-child {
	margin-right: 0;
}

.inner {
	padding: 0 20px;
	max-width: 1040px;
	width: 100%;
	margin: 0 auto;
}

.fontSpec {
	font-family: 'Leckerli One', cursive;
}

.headline1 {
	text-align: center;
	color: #212121;
	font-size: 40px;
	margin-bottom: 30px;
	letter-spacing: 2px;
}

.headline2 span,
.headline1 span {
    display: inline-block;
    margin: 0 5px;
	opacity: 0;
	position: relative;
	transition: opacity 1.53s;
}

.headline2 span.fadeIn,
.headline1 span.fadeIn {
	opacity: 1;
}

.headline1.red {
	color: #f3131a;
}

.modal {
	display: none;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	transition: opacity .3s;
}

.modal.active {
	opacity: 1;
}

.modalPrev,
.modalNext {
	cursor: pointer;
	left: 30px;
	position: absolute;
	transform: translateY(-50%);
	top: 50%;
	width: 40px;
}

.modalNext {
	left: auto;
	right: 30px;
}

.modal .inner {
	display: flex;
	justify-content: center;
	align-items: flex-end;
}

.modal .btnClose {
	position: absolute;
	display: flex;
	justify-content: center;
	align-items: center;
	top: 20px;
	right: 20px;
	width: 28px;
	height: 28px;
	background-color: #FFF;
	cursor: pointer;
}

.modal .image {
	position: relative;
	font-size: 0;
	bottom: -25px;
	pointer-events: none;
	visibility: hidden;
}

.modal#modalPerson02 .image,
.modal#modalPerson03 .image,
.modal#modalPerson04 .image,
.modal#modalPerson05 .image {
	bottom: 20px;
}

#modalPerson01 {
	background-color: #44ae1b;
}

#modalPerson02 {
	background-color: #fd712d;
}

#modalPerson03 {
	background-color: #bd8bc3;
}

#modalPerson04 {
	background-color: #e7c400;
}

#modalPerson05 {
	background-color: #ed7b88;
}

#staff {
	padding-top: 80px;
	position: relative;
}

.staffArrow {
	animation: arrowBound 1.5s infinite;
	cursor: pointer;
	content: "";
	display: inline-block;
	height: 44px;
	left: 0;
	margin: 0 auto;
	position: absolute;
	right: 0;
	top: 0;
	width: 91px;
}

#staff .headline2 {
	margin-bottom: 15px;
}

.boxStaff {
	margin-bottom: 90px;
	opacity: 0;
	padding: 0 60px;
	position: relative;
	transition: opacity 1.53s;
}

.boxStaff.fadeIn {
	opacity: 1;
}

.boxStaff::before {
	background-image: linear-gradient(#FFF 30px, #F3131a 30px, #F3131a 315px, #FFF 30px);
	background-image: -ms-linear-gradient(#FFF 30px, #F3131a 30px, #F3131a 315px, #FFF 30px);
	content: "";
	display: inline-block;
	height: 100%;
	left: 0;
	opacity: 0;
	position: absolute;
	top: 0;
	transform: translateX(-100vw);
	transition: transform 0.75s;
	width: 100%;
	z-index: -1;
}

.boxStaff.bgAnimation::before {
	opacity: 1;
	transform: translateX(0);
}

.boxStaff .inner {
	position: relative;
}

.listStaff .swiper-slide {
	display: flex;
	align-items: center;
	justify-content: center;
}

.listStaff .boxInfo {
	display: flex;
	justify-content: space-between;
	align-items: center;
	height: 285px;
	margin: 30px 0;
	width: 660px;
	opacity: 0;
	transition: opacity 0.3s;
}

.listStaff .boxInfo.fadeIn {
	opacity: 1;
}

.listStaff .detail {
	position: relative;
	color: #FFF;
	padding-bottom: 20px;

}

.listStaff .name {
	font-size: 25px;
	font-weight: bold;
	margin-bottom: 30px;
}

.listStaff .name .sub {
	font-size: 12px;
	font-weight: normal;
	display: block;
	margin-top: 5px;
}

.listStaff .description {
	font-size: 14px;
	line-height: 1.8;
}

.swiper-pagination,
.swiper-button-next,
.swiper-button-prev {
	opacity: 0;
	transition: opacity 0.5s;
}

.swiper-pagination.fadeIn,
.swiper-button-next.fadeIn,
.swiper-button-prev.fadeIn {
	opacity: 1;
}

.swiper-button-next:after,
.swiper-container-rtl .swiper-button-prev:after,
.swiper-button-prev:after,
.swiper-container-rtl .swiper-button-next:after {
	content: none;
}

.swiper-button-prev,
.swiper-container-rtl .swiper-button-next,
.swiper-button-next,
.swiper-container-rtl .swiper-button-prev {
	width: 41px;
	height: 80px;
	top: 44%;
	outline: none;
	-webkit-tap-highlight-color: transparent;
}

.swiper-wrapper {
	align-items: center;
}

.swiper-button-prev,
.swiper-container-rtl .swiper-button-next {
	left: -45px;
	background: url(../img/common/icon_arrow_right.svg) no-repeat 0 0/contain;
}

.swiper-button-next,
.swiper-container-rtl .swiper-button-prev {
	right: -45px;
	background: url(../img/common/icon_arrow_left.svg) no-repeat 0 0/contain;
}

.swiper-pagination {
	width: 100%;
	bottom: -50px;
}

.swiper-pagination-bullet {
	outline: 0;
	margin: 0 8px;
	width: 15px;
	height: 15px;
}

.swiper-pagination-bullet-active {
	background-color: #F3131a;
}

.boxAbout {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	max-width: 860px;
	margin: 0 auto;
	margin-bottom: 30px;
	opacity: 0;
	transition: opacity 1.53s;
}

.boxAbout.fadeIn {
	opacity: 1;
}

.boxAbout .logo {
	display: block;
	max-width: 161px;
}

.boxAbout .boxLeft {
	width: 58.7%;
	padding-right: 20px;
}

.boxAbout .boxRight {
	width: 41.3%;
}

.boxAbout .boxRight .logo {
	display: none;
}

.boxAbout .info {
	font-size: 15px;
	line-height: 1.79;
	margin: 13px 0 45px;
}

.boxAbout .info .boxTxt {
	display: flex;
}

.boxAbout .info .txt01 {
	width: 19%;
	min-width: 90px;
}

.boxAbout .info .txt02 {
	width: 81%;
}

.boxAbout .tutorial {
	font-size: 15px;
	line-height: 1.467;
}

.boxAbout .map {
	margin-bottom: 45px;
}

.boxAbout .map img {
	display: block;
	width: 100%;
}

.boxAbout .map .link {
	display: block;
	text-decoration: none;
	font-size: 14px;
	margin-top: 5px;
	color: #212121;
	font-weight: bold;
	transition: opacity .3s;
}

.boxAbout .map .link:hover {
	opacity: 0.7;
}

#about {
	padding-top: 120px;
	position: relative;
}

.aboutArrow {
	animation: arrowBound 1.5s infinite;
	cursor: pointer;
	content: "";
	display: inline-block;
	height: 44px;
	left: 0;
	margin: 0 auto;
	position: absolute;
	right: 0;
	top: 40px;
	width: 91px;
}

footer {
	border-top: 1px solid #212121;
}

footer .text {
	text-align: center;
	padding: 20px 20px 25px;
	font-size: 10px;
}

#overlay {
	position: fixed;
	display: none;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	background-color: rgba(0, 0, 0, 0.6);
	z-index: 12;
	opacity: 0;
	transition: opacity 0.3s;
}

#overlay.active {
	opacity: 1;
}

.displayBlock {
	display: block !important;
}

.formCollec {
	position: fixed;
	display: none;
	opacity: 0;
	z-index: 13;
	top: 50%;
	left: 50%;
	max-width: 700px;
	width: 100%;
	padding: 40px;
	background-color: #FFF;
	transform: translate(-50%, -50%);
	transition: opacity .3s;
	visibility: hidden;
}

.formCollec.active {
	opacity: 1;
	visibility: visible;
}

.blockCollec {
	max-width: 450px;
	width: 100%;
	margin: 0 auto 20px auto;
}

.boxCollec {
	display: flex;
	flex-direction: column;
	margin-bottom: 20px;
}

.boxCollec label {
	margin-bottom: 5px;
	font-size: 15px;
}

.boxCollec input {
	font-size: 16px;
	padding: 3px 5px 2px 5px;
	outline: none;
	border: 1px solid #666463;
	border-radius: 0;
	-webkit-appearance: none;
}

.boxCollec textarea {
	font-size: 15px;
	padding: 3px 5px 2px 5px;
	outline: none;
	border: 1px solid #666463;
	height: 100px;
	border-radius: 0;
	-webkit-appearance: none;
}

.boxCollec label span {
	color: #f3131a;
}

.btnCloseCollec {
	display: inline-block;
	position: absolute;
	right: 20px;
	top: 15px;
	padding: 3px;
	border: 1px solid #000;
	line-height: 0;
	cursor: pointer;
}

.btnCloseCollec img {
	width: 20px;
}

.txtNote {
	margin-top: 10px;
	color: #f3131a;
	font-size: 14px;
}

.btn {
	padding: 14px 25px 12px 25px;
	font-size: 13px;
	background-color: #403d3c;
	color: #FFF;
	border: 0;
	outline: none;
	transition: 0.3s opacity;
}

.boxBtn {
	display: flex;
	justify-content: center;
	margin-top: 30px;
}

.checkCollec {
	display: block;
	position: relative;
	padding-left: 21px;
	cursor: pointer;
	font-size: 17px;
	user-select: none;
}

.checkCollec input {
	position: absolute;
	opacity: 0;
	cursor: pointer;
	height: 0;
	width: 0;
}

.checkmark {
	position: absolute;
	top: 2px;
	left: 0;
	height: 14px;
	width: 14px;
	background-color: #eee;
	border: 1px solid #403d3c;
}

.checkmark:after {
	content: "";
	position: absolute;
	display: none;
}

.checkCollec input:checked~.checkmark:after {
	display: block;
}

.checkCollec .checkmark:after {
	left: 4px;
	top: 1px;
	width: 3px;
	height: 7px;
	border: solid #403d3c;
	border-width: 0 2px 2px 0;
	transform: rotate(45deg);
}

.sectionSolution {
	padding: 117px 0 70px;
	position: relative;
}

.sectionSolutionArrow {
	animation: arrowBound 1.5s infinite;
	content: "";
	cursor: pointer;
	display: inline-block;
	height: 44px;
	left: 0;
	margin: 0 auto;
	position: absolute;
	right: 0;
	top: 42px;
	width: 91px;
}

@keyframes arrowBound {
	0% {
		opacity: 0;
		transform: translateY(0);
	}
	100% {
		opacity: 1;
		transform: translateY(10px);
	}
}

.innerSolution {
	max-width: 1000px;
	width: 100%;
	margin: 0 auto;
}

.blockSolution {
	display: flex;
	margin-bottom: 176px;
}

.blockSolution:last-of-type {
	margin-bottom: 0;
}

.blockSolution.styleReverse {
	flex-direction: row-reverse;
	position: relative;
}

.imageSolution {
	opacity: 0;
	position: relative;
	transform: scale3d(.3, .3, .3);
	transition: opacity 0.5s, transform 0.5s;
	width: 48%;
	z-index: 1;
}

.imageSolution.zoomIn {
	opacity: 1;
	transform: scale3d(1, 1, 1);
}

.imageSolution img {
	position: absolute;
	z-index: 2;
}

.imageSolution.style01 img {
	right: -15px;
	top: -20%;
}

.imageSolution.style02 img {
	top: -41%;
	right: 19%;
}

.imageSolution.style03 img {
	right: -75px;
	top: 15%;
	max-width: 585px;
}

.boxSolution {
	position: relative;
	width: 52%;
	padding: 100px 0 50px 100px;
}

.blockSolution.styleReverse .boxSolution {
	padding: 90px 80px 60px 0;
	margin-bottom: 20px;
}

.boxSolution::after {
	background-color: #0f60ad;
	content: '';
	height: 100%;
	left: 0;
	position: absolute;
	top: 0;
	transform: translateX(100vw);
	transition: transform 0.5s;
	width: 100vw;
	z-index: -1;
}

.blockSolution.styleReverse .boxSolution::after {
	left: auto;
	right: 0;
    transform: translateX(-100vw);
}

.blockSolution.styleReverse .boxSolution.bgAnimation::after,
.boxSolution.bgAnimation::after {
	transform: translateX(0);
}

.boxSolution .btnTitle {
	opacity: 0;
	position: absolute;
	top: -18px;
	transform: scale3d(.3, .3, .3);
	transition: opacity 0.5s, transform 0.5s;
}

.boxSolution .ttl.zoomIn,
.boxSolution .txt.zoomIn,
.boxSolution .btnTitle.zoomIn {
	opacity: 1;
	transform: scale3d(1, 1, 1);
}

.boxSolution .btnTitle.style01 {
	left: 147px;
}

.boxSolution .btnTitle.style02 {
	right: 147px;
	top: -25px;
}

.boxSolution .btnTitle.style03 {
	left: -66px;
}

.btnTitle {
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: #00274c;
	color: #FFF;
	padding: 26px 10px 24px 10px;
	max-width: 270px;
	width: 100%;
	font-size: 26px;
	font-weight: bold;
}

.boxSolution .ttl {
	color: #FFF;
	font-weight: bold;
	font-size: 16px;
	line-height: 1.8;
	margin-bottom: 4px;
	opacity: 0;
	transform: scale3d(.3, .3, .3);
	transition: opacity 0.5s, transform 0.5s;
}

.boxSolution .txt {
	color: #FFF;
	font-size: 15px;
	line-height: 1.875;
	opacity: 0;
	transform: scale3d(.3, .3, .3);
	transition: opacity 0.5s, transform 0.5s;
}

.sectionWork {
	padding: 170px 0 30px 0;
	position: relative;
	overflow: hidden;
}

.sectionWork::before {
	background-color: #f2f2f2;
	bottom: 0;
	content: "";
	height: calc(100% - 90px);
	left: 0;
	position: absolute;
	width: 100%;
	z-index: -1;
}

.sectionWorkArrow {
	animation: arrowBound 1.5s infinite;
	cursor: pointer;
	content: "";
	display: inline-block;
	height: 44px;
	left: 0;
	margin: 0 auto;
	position: absolute;
	right: 0;
	top: 0;
	width: 91px;
}

.sectionWork .headline1 {
	margin-bottom: 45px;
}

.innerWork {
	max-width: 930px;
	width: 100%;
	margin: 0 auto;
	padding: 0 35px;
}

.listWork {
	display: flex;
	flex-wrap: wrap;
	margin-left: -20px;
	margin-right: -20px;
	opacity: 0;
	transition: opacity 1.53s;
}

.listWork.fadeIn {
	opacity: 1;
}

.listWork.col5 {
	margin-left: -10px;
	margin-right: -10px;
}

.listWork li {
	display: flex;
	width: calc(25% - 40px);
	margin: 0 20px 25px 20px;
}

.listWork.col5 li {
	width: calc(20% - 20px);
	margin: 0 10px;
}

.listWork li.more {
	display: none;
}

.listWork a {
	display: flex;
	flex-direction: column;
	pointer-events: none;
	text-decoration: none;
	transition: 0.3s opacity;
	width: 100%;
}

.listWork .image {
	margin-bottom: 13px;
}

.listWork .image img {
	display: block;
	width: 100%;
}

.listWork .ttl {
	font-size: 18px;
	line-height: 1.1;
	color: #212121;
	font-weight: bold;
}

.textMore {
	margin-bottom: 35px;
	margin-top: 10px;
	font-size: 18px;
	line-height: 1.1;
	color: #212121;
	text-align: right;
}

.collection {
	margin-bottom: 10px;
	font-size: 22px;
	line-height: 1.3;
	text-align: center;
	color: #212121;
	font-weight: bold;
}

.collection .click {
	cursor: pointer;
	color: #f3131a;
	transition: 0.3s opacity;
}

.collection .click span {
	display: inline-block;
	opacity: 0;
	transform: translateX(-25px);
}

.collection .click span.animation {
	opacity: 1;
	transform: translateX(0);
}

.tellWork {
	text-align: center;
	font-size: 15px;
	line-height: 1.2;

}

.tellWork a {
	color: #212121;
	text-decoration: none;
	pointer-events: none;
}

#contact .headline2 {
	background-color: #C00000;
	color: #FFF;
	font-size: 16px;
	margin-bottom: 0;
	padding: 15px 0 13px;
}

#contact .boxContact {
	background-color: #000;
	text-align: center;
	padding: 30px 0
}

#contact .btnContact {
	display: inline-block;
	background-color: #000;
	border: 2px solid #FFF;
	border-radius: 10px;
	color: #FFF;
	cursor: pointer;
	font-size: 20px;
	font-weight: bold;
	min-width: 350px;
	outline: none;
	padding: 9px 15px 7px 15px;
	transition: 0.3s opacity;
	text-decoration: none;
}

#contact .btnContact:hover {
	opacity: 0.7;
}

.btnContactUs {
	font-family: "Courgette", sans-serif;
	position: fixed;
	bottom: 140px;
	right: 40px;
	background: #C00000 url(/img/common/icon_letter.svg) no-repeat 22px center / 27px 19px;
	color: #FFF;
	padding: 12px 25px 12px 70px;
	font-size: 20px;
	font-style: italic;
	font-weight: bold;
	border-radius: 5px;
	text-decoration: none;
	z-index: 10;
	transition: 0.3s opacity;
}

.btnContactUs:hover {
	opacity: 0.7;
}

@media screen and (min-width:1025px) {
	.btn:hover {
		opacity: 0.7;
		cursor: pointer;
	}

	.listWork a:hover {
		opacity: 0.7;
	}

	.collection .click:hover {
		opacity: 0.7;
	}
}

@media screen and (max-width:1024px) {
	.boxSolution .ttl {
		margin-bottom: 4px;
		font-size: 14px;
		line-height: 2.1;
	}

	.boxSolution .txt {
		font-size: 14px;
		line-height: 2.1;
	}

	.boxSolution .btnTitle.style01 {
		left: 95px;
	}

	.boxSolution .btnTitle.style02 {
		right: 95px;
		top: -25px;
	}

	.blockSolution .boxSolution {
		padding: 80px 20px 60px 40px;
	}

	.blockSolution.styleReverse .boxSolution {
		padding: 90px 40px 60px 20px;
	}

	.imageSolution.style03 img {
		right: -20px;
		top: 25%;
		max-width: 100%;
	}

	.listWork {
		margin-left: -10px;
		margin-right: -10px;
	}

	.listWork li {
		width: calc(25% - 20px);
		margin: 0 10px 15px 10px;
	}

	.listWork .ttl {
		font-size: 15px;
	}
}

@media screen and (max-width:1023px) {
	#keyv .inner {
		height: 550px;
	}

	#keyv .person:before {
		font-size: 12px;
	}

	#keyv .person.pos01 {
		left: 42%;
		top: 17%;
		bottom: auto;
	}

	#keyv .person.pos01:before {
		left: 0;
		bottom: -20px;
	}

	#keyv .person.pos02 {
		right: auto;
		left: 3%;
	}

	#keyv .person.pos02:before {
		right: -57%;
		bottom: 15%;
	}

	#keyv .person.pos03 {
		left: auto;
		right: 5%;
	}

	#keyv .person.pos03:before {
		top: 15%;
		left: -96%;
	}

	#keyv .person.pos04 {
		left: 2%;
		top: 6%;
	}

	#keyv .person.pos04:before {
		top: 20%;
		right: -50%;
	}

	#keyv .person.pos05 {
		right: 5%;
		left: auto;
		bottom: 6%;
	}

	#keyv .person.pos05:before {
		left: -73%;
		top: 50%;
	}
}

#mainVisual {
	position: relative;
	margin-top: 36px;
}

#mainVisual .imgVisual {
	vertical-align: middle;
	width: 100%;
	object-fit: cover;
}

#mainVisual .ttlVisual {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 56%;
	height: auto;
	transform: translate(-50%, -50%);
	text-align: center;
}

#mainVisual .ttlVisual img {
	animation: blinker 2s linear infinite;
	vertical-align: middle;
}

@keyframes blinker {
	50% {
		opacity: 0.2;
	}
}

#mainVisual .btnVisual {
	position: absolute;
	width: fit-content;
	left: 50%;
	bottom: 30%;
	transform: translateX(-50%);
}

.btnEffect {
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	width: 100%;
	min-width: 336px;
	min-height: 88px;
	padding: 10px 45px;
	background-color: #e4008f;
	color: #FFF;
	line-height: 1.4;
	font-size: 18px;
	font-weight: bold;
	letter-spacing: 1px;
	text-align: center;
	text-decoration: none;
}

.btnEffect .iconArrow {
	position: absolute;
	display: inline-block;
	width: 15px;
	height: 15px;
	right: 20px;
	animation: fade 2s ease-out forwards infinite;
}

@keyframes fade
{
	from {transform: translateY(-30px); opacity: 0;}
	to { transform: translateY(15px); opacity: 1;}
}

.btnEffect .iconArrow::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	height: 70%;
	width: 70%;
	border-right: 4px solid #FFF;
	border-bottom: 4px solid #FFF;
	transform: translate(-50%, -50%) rotate(45deg);
}

@media screen and (max-width:768px) {
	.inner {
		padding: 0 10px;
	}

	.titleKeyv {
		padding-top: 65px;
	}

	#keyv .inner {
		height: calc(100vw * 1.33);
	}

	#keyv .person {
		max-width: 50%;
	}

	#keyv .person:before,
	#keyv .person:after {
		content: none !important;
	}

	#keyv .person.pos01 {
		left: 35px;
		top: 20px;
		right: 53%;
	}

	#keyv .person.pos02 {
		right: 35px;
		left: 56%;
		top: 15%;
		bottom: auto;
		text-align: right;
	}

	#keyv .person.pos03 {
		top: auto;
		left: 58%;
		bottom: 12%;
		right: 35px;
		text-align: right;
	}

	#keyv .person.pos04 {
		left: 35px;
		top: 41%;
		right: 54%;
	}

	#keyv .person.pos05 {
		left: 35px;
		right: 54%;
		bottom: 20px;
	}

	.modal .image {
		bottom: auto;
		align-items: center;
	}

	.modal#modalPerson04 .image,
	.modal#modalPerson05 .image {
		bottom: auto;
	}

	.modal .image {
		padding: 20px;
	}

	.modal .image img {
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
		height: calc(100% - 40px);
	}

	#menuSP {
		position: fixed;
		display: none;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		z-index: 1;
		background-color: rgba(255, 255, 255, 0.9);
		justify-content: center;
		align-items: center;
		flex-direction: column;
		opacity: 0;
		transition: opacity .3s;
	}

	#menuSP.display {
		display: flex;
	}

	#menuSP.active {
		opacity: 1;
	}

	#menuSP a {
		font-family: 'Leckerli One', cursive;
		font-size: 16px;
		color: #212121;
		text-decoration: none;
		padding: 20px 0;
		border-bottom: 1px solid #212121;
		text-align: center;
		width: 260px;
		
		-webkit-animation-name:fadeUp;
		animation-name: fadeUp;
		-webkit-animation-duration: .5s;
		animation-duration: .5s;
		-webkit-animation-timing-function: ease-in-out;
		animation-timing-function: ease-in-out;
		-webkit-animation-fill-mode: both;
		animation-fill-mode: both
	}
	
	#menuSP a:first-of-type {
		-webkit-animation-delay: .45s;
		animation-delay: .45s;
	}
	
	#menuSP a:nth-of-type(2) {
		-webkit-animation-delay: .4s;
		animation-delay: .4s;
	}
	
	#menuSP a:nth-of-type(3) {
		-webkit-animation-delay: .35s;
		animation-delay: .35s;
	}
	
	#menuSP a:nth-of-type(4) {
		-webkit-animation-delay: .3s;
		animation-delay: .3s;
	}
	
	#menuSP a:nth-of-type(5) {
		-webkit-animation-delay: .25s;
		animation-delay: .25s;
	}
	
	#menuSP a.noBorder {
		border-bottom: none;
	}

	#menuSP .btnCloseMenu {
		position: absolute;
		top: 15%;
		left: 50%;
		transform: translateX(-50%);
		width: 20px;
		height: 20px;
	}

	@-webkit-keyframes fadeUp {
		0% {
			opacity: 0;
			-webkit-transform: translateY(10px);
			transform: translateY(10px)
		}
	
		to {
			opacity: 1;
			-webkit-transform: none;
			transform: none
		}
	}
	
	@keyframes fadeUp {
		0% {
			opacity: 0;
			-webkit-transform: translateY(10px);
			transform: translateY(10px)
		}
	
		to {
			opacity: 1;
			-webkit-transform: none;
			transform: none
		}
	}

	header {
		padding: 15px 10px;
		margin-bottom: 20px;
	}

	header .hamburger {
		width: 26px;
		font-size: 0;
	}

	header .logo {
		width: 150px;
	}

	.boxStaff {
		padding: 0 20px;
		background: none;
		background-color: #F3131a;
		margin-bottom: 100px;
	}

	.swiper-button-prev,
	.swiper-container-rtl .swiper-button-next,
	.swiper-button-next,
	.swiper-container-rtl .swiper-button-prev {
		width: 14px;
		height: 27px;
		top: 50%;
	}

	.swiper-button-prev,
	.swiper-container-rtl .swiper-button-next {
		left: -10px;
	}

	.swiper-button-next,
	.swiper-container-rtl .swiper-button-prev {
		right: -10px;
	}

	.listStaff .boxInfo {
		height: auto;
		margin: 0;
		width: auto;
	}

	.listStaff .detail {
		padding-bottom: 0;
		max-width: 360px;
		width: 54%;
	}

	.listStaff .image {
		width: 46%;
		font-size: 0;
	}

	.boxAbout .info,
	.boxAbout .tutorial {
		font-size: 13px;
	}

	.boxAbout .info .txt01 {
		min-width: 80px;
		width: 15%;
	}

	.boxAbout .info .txt02 {
		width: 85%;
	}

	#about {
		padding: 80px 35px 0;
	}

	.headline1 {
		font-size: 28px;
	}

	footer .text {
		padding: 10px 10px 15px;
	}

	.btnCloseCollec img {
		width: 12px;
	}

	.boxCollec label {
		font-size: 11px;
	}

	.boxCollec input {
		font-size: 16px;
	}

	.boxCollec textarea {
		font-size: 16px;
		height: 70px;
	}

	.boxCollec {
		margin-bottom: 10px;
	}

	.txtNote {
		margin-top: 5px;
		font-size: 10px;
	}

	.btn {
		padding: 10px 25px 9px 25px;
		font-size: 11px;
	}

	.checkCollec {
		font-size: 12px;
		line-height: 1.4;
	}

	.sectionSolution {
		padding: 85px 0 20px;
	}
	.sectionSolutionArrow {
		height: 25px;
		top: 25px;
		width: 50px;
	}

	.blockSolution.styleReverse,
	.blockSolution {
		flex-direction: column-reverse;
		background-color: #0f60ad;
		margin-bottom: 0;
		padding-bottom: 40px;
	}

	.imageSolution {
		width: 100%;
	}

	.boxSolution {
		width: 100%;
	}

	.imageSolution img {
		display: block;
		position: static;
		width: 65%;
		max-width: 300px;
		margin: 0 auto;
	}

	.boxSolution .btnTitle {
		position: static;
	}

	.blockSolution .boxSolution {
		padding: 0 0 10px 0;
	}

	.blockSolution.styleReverse .boxSolution {
		padding: 0 0 10px 0;
	}

	.btnTitle {
		margin-bottom: 20px;
		max-width: 100%;
		padding: 15px 15px;
		font-size: 18px;
	}

	.boxSolution .ttl {
		padding: 0 30px;
		text-align: center;
	}

	.boxSolution .txt {
		padding: 0 30px;
	}

	.imageSolution.style03 img {
		width: calc(100% - 40px);
		max-width: 375px;
	}

	.sectionWork {
		padding: 90px 0 25px;
	}

	.sectionWorkArrow {
		height: 25px;
		width: 50px;
	}
	
	.sectionWork::before {
		height: calc(100% - 70px);
	}

	.sectionWork .headline1 {
		margin-bottom: 20px;
	}

	.listWork {
		margin-bottom: 10px;
	}

	.listWork li {
		width: calc(50% - 20px);
		margin: 0 10px 10px 10px;
	}

	.listWork.col5 li {
		width: calc((100% / 3) - 18px);
		margin: 0 9px 10px 9px;
	}

	.listWork li.more {
		display: flex;
		align-items: center;
		padding-bottom: 25px;
	}

	.listWork .ttl {
		font-size: 12px;
	}

	.listWork .ttl.fontMin {
		font-size: 11px;
	}

	.listWork .image {
		margin-bottom: 5px;
	}

	.textMore {
		display: none;
	}

	.collection .click {
		color: #212121;
	}

	.collection {
		font-size: 16px;
	}

	.tellWork {
		font-size: 12px;
	}

	#staff {
		padding-top: 60px;
	}

	.staffArrow {
		height: 25px;
		width: 50px;
	}

	.aboutArrow {
		height: 25px;
		top: 25px;
		width: 50px;
	}

	.modalPrev,
	.modalNext {
		left: 10px;
		width: 25px;
	}
	
	.modalNext {
		left: auto;
		right: 10px;
	}

	#mainVisual .btnVisual {
		bottom: 33%;
		transform: translate(-50%, 50%);
	}
	#mainVisual .ttlVisual {
		top: 40%;
		width: 75%;
	}
	
	.btnEffect {
		min-width: 210px;
		min-height: 55px;
		padding: 5px 30px;
		font-size: 14px;
	}
	
	.btnEffect .iconArrow {
		width: 8px;
		height: 8px;
		right: 10px;
		animation: fade 2s ease-out forwards infinite;
	}
	
	.btnEffect .iconArrow::after {
		border-width: 2px;
	}

	@keyframes fade
	{
		from {transform: translateY(-20px); opacity: 0;}
		to { transform: translateY(10px); opacity: 1;}
	}

	.btnContactUs {
		bottom: 10px;
		right: 10px;
		background: #C00000 url(/img/common/icon_letter.svg) no-repeat 15px center / 20px 14px; 
		padding: 10px 20px 10px 50px;
		font-size: 14px;
	}
}

@media screen and (max-width: 610px) {
	.listStaff .name {
		font-size: 18px;
		margin-bottom: 15px;
	}

	.listStaff .name .sub {
		font-size: 10px;
	}

	.listStaff .description {
		font-size: 11px;
	}

	.swiper-pagination-bullet {
		width: 10px;
		height: 10px;
		margin: 0 5px;
	}

	.swiper-pagination {
		bottom: -30px;
	}

	.boxStaff {
		margin-bottom: 60px;
	}

	.boxAbout {
		flex-direction: column;
	}

	.boxAbout .boxLeft,
	.boxAbout .boxRight {
		width: 100%;
		padding-right: 0;
	}

	.boxAbout .logo {
		order: 4;
	}

	.headline1 {
		font-size: 21px;
		margin-bottom: 20px;
	}

	.boxAbout .boxRight .logo {
		display: block;
	}

	.boxAbout .boxLeft .logo {
		display: none;
	}

	.boxAbout .info {
		margin: 0 0 25px;
	}

	.boxAbout .map {
		margin-bottom: 15px;
	}

	.boxAbout .tutorial {
		margin-bottom: 25px;
	}

	.boxAbout .logo {
		max-width: 120px;
	}
}

/* ------------------------------------------------------------------
	formCollec
-------------------------------------------------------------------*/

@media screen and (max-width:374px) {
	.formCollec {
		top: calc(50% + 20px)
	}

	.boxCollec {
		margin-bottom: 5px;
	}

	.boxCollec label {
		margin-bottom: 2px;
	}

	.boxCollec input {
		padding: 2px 5px 1px 5px;
	}

	.boxBtn {
		margin-top: 10px;
	}

	.boxCollec textarea {
		height: auto;
	}

	.collection {
		font-size: 13px;
	}
	
	#contact .btnContact {
		min-width: inherit;
	}
}

.scroll {
	bottom: 15%;
	color: #0f60ad;
	cursor: pointer;
	height: 1em;
	position: absolute;
	pointer-events: none;
	right: -7.5vw;
	text-decoration: none;
	top: 0;
	width: 45px;
}
  
.scroll span {
	color: #0f60ad;
	font-size:15px;
	font-weight:700;
	text-align: center;
}
  
.arrow {
	animation: 2s arrow-animation infinite ease-in-out;
	background-color: #0f60ad;
	height: 5em;
	left: 22px;
	position: absolute;
    top: 25px;
	width: 1px;
}

.arrow::after {
	border-top: 10px solid #0f60ad;
	border-left: 2px solid transparent;
	border-right: 2px solid transparent;
	content: '';
	display: block;
	height: 10px;
	left: -2px;
	position: absolute;
	top: 100%;
	width: 1px;
}

@keyframes arrow-animation {
	0% {
		height: 1em;
	}
	66% {
		height: 5em;
	}
}

@media screen and (max-width: 1200px) {
	.scroll {
		right: 1vw;
	}
}

@media screen and (max-width: 768px) {
	.scroll {
		display: none;
	}
}