@charset "utf-8";

/* common
------------------------------------------------------------*/
/* p:not(:last-child),
ul:not(:last-child),
ol:not(:last-child),
table:not(:last-child) {
	margin-bottom: 20px;
} */

a { text-decoration: none; }

.desktop {
	display: block;
}

@media (max-width: 480px) {
	.desktop {
		display: none;
	}

	.mobile {
		display: block;
	}
}

body {
	background-color: #FFF8D8;
}

h2 {
	font-family: "Nunito", sans-serif;
	word-break: break-word;
}

h3 {
	word-break: break-word;
	line-height: 1.4;
}

h4 {
	word-break: break-word;
	line-height: 1.4;
}

p {
	word-break: break-word;
	line-height: 1.4;
}

ul li {
	word-break: break-word;
}

.mb16 {
	margin-bottom: 16px;
}

ul.disc {
	padding-left: 24px;
}

ul.disc li {
	list-style-type: disc;
}

a:hover {
	opacity: .5;
	transition-duration: .3s;
}

a {
	cursor:pointer
}

a.whiteLink {
	color: #fff;
	text-decoration: underline;
}

.btnWhite {
	margin: auto;
}

.btnWhite a {
	background-color: #fff;
	font-weight: 600;
	padding: 10px 32px;
	color: #231F20;
	border-radius: 10px;
	display: block;
	text-align: center;
	display: inline-block;
	font-weight: 700;
}

.btnYellow {
	margin: auto;
}

.btnYellow a {
	background-color: #FFD967;
	font-weight: 600;
	padding: 10px 32px;
	color: #231F20;
	border-radius: 10px;
	display: block;
	text-align: center;
	display: inline-block;
	font-weight: 700;
}


.btnKv {
	margin: auto;
}

.btnKv a {
	background-color: #FFD967;
	font-weight: 600;
	padding: 10px 32px;
	color: #231F20;
	border-radius: 10px;
	display: block;
	text-align: center;
	display: inline-block;
	font-weight: 700;
}

@media (min-width: 769px) {
	.btnKv {
		margin: auto;
	}

	.btnKv a {
		background-color: #fff;
		font-weight: 600;
		padding: 10px 32px;
		color: #231F20;
		border-radius: 10px;
		display: block;
		text-align: center;
		display: inline-block;
		font-weight: 700;
	}
}

.blueLink a{
	color: #327EF0;
	font-weight: 800;
	line-height: 2;
}



/* Header 
------------------------------------------------------------------------------------------------------------------------*/
header {
	position: relative;
	background-image: url("../img/pc-kv-bg.jpg");
	background-repeat: no-repeat;
	background-position: top center;
	background-size: 1920px;
	height: 720px;
}


/* Navigation */
.header {
	width: 100%;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 999;
	background-color: #FFD967;
}

.headerInner {
	padding: 16px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: inherit;
	position: relative;
}


.headerTitle a{
	width: 100%;
	display: block;
}

.headerNav {
	position: absolute;
	right: 0;
	left: 0;
	top: 0;
	width: 100%;
	height: 100vh;
	transform: translateX(100%);
	background-color: #fff;
	transition: ease .4s;
}

.navUl {
	margin-top: 60px;
}

.navItems a {
	color: black;
	width: 100%;
	display: block;
	text-align: center;
	font-size: 1.6rem;
	font-weight: 700;
	padding: 16px 0;
}

.navItems:last-child a {
	margin-bottom: 0;
}

.nav-cta {
	display: flex;
	justify-content: center;
	padding-top: 24px;
}

.nav-cta li {
	margin-right: 16px;
}

.nav-cta li:last-child {
	margin-right: 0;
}

.nav-cta .subBtn{
	background-color: #fff;
	border: solid 1px #1A2DD8;
	padding: 10px 32px;
	color: #1A2DD8;
	border-radius: 6px;
}

.nav-cta .mainBtn{
	background-color: #1A2DD8;
	padding: 10px 32px;
	color: #fff;
	border-radius: 6px;
}

.hamburger {
	background-color: transparent;
	border-color: transparent;
	z-index: 9999;
	width: 40px;
	height: 100%;
}

.hamburger span {
	width: 100%;
	height: 2px;
	background-color: #000;
	position: relative;
	transition: ease .4s;
	display: block;
}

.hamburger span:nth-child(1) {
	top: 0;
}

.hamburger span:nth-child(2) {
	margin: 8px 0;
}

.hamburger span:nth-child(3) {
	top: 0;
}

.headerNav.active {
	transform: translateX(0);
}

.hamburger.active span:nth-child(1) {
	top: 6px;
	transform: rotate(45deg);
}

.hamburger.active span:nth-child(2) {
	opacity: 0;
}

.hamburger.active span:nth-child(3) {
	top: -14px;
	transform: rotate(-45deg);
}

@media (min-width: 769px) {
	.header {
		background-color: transparent;
		position: inherit;
	}

	.headerInner {
		display: flex;
		justify-content: space-between;
		max-width: 1200px;
		margin: auto;
		padding-top: 24px;
	}

	.headerTitle {
		width: 160px;
	}

	.headerNav {
		position: static;
		transform: initial;
		background-color: inherit;
		height: inherit;
		display: flex;
		justify-content: end;
		width: 50%;
	}

	.navUl {
		width: 100%;
		display: flex;
		align-items: center;
		height: initial;
		justify-content: flex-start;
	}

	.navItems a {
		margin-bottom: 0;
	}

	.hamburger {
		display: none;
	}

	.headerNav {
		width: auto;
	}

	.navUl {
		width: auto;
		margin-top: 0;
	}

	.navItems {
		margin-right: 32px;
	}

	.nav-cta {
		padding: 0;
	}

	.nav-cta li {
		margin-right: 10px;
	}

	.nav-cta .subBtn{
		padding: 6px 12px;
	}
	
	.nav-cta .mainBtn{
		padding: 6px 12px;
	}

	.navItems {
		display: block;
	}

}


@media (min-width: 1200px) {
	.headerInner {
		padding: 24px 0 0 0;
	}
	
}


/* --------- KV --------- */


header {
	position: relative;
	background-image: url("../img/sp-kv-bg.jpg");
	background-repeat: no-repeat;
	background-position: top center;
	background-size: 100%;
	height: 550px;
	margin-bottom: 140px;
}

.kv {
	max-width: 1200px;
	margin: auto;
	display: block;
	height: 100%;
	position: relative;
}

.kvCont{
	position: absolute;
	padding: 0;
	width: auto;
	bottom: 350px;
	left: 35%;
	z-index: 100;
}

.kvCont h2 {
	font-size: 3rem;
	font-weight: 1000;
	line-height: 1.3;
	margin-bottom: 8px;
}

.kvCont p {
	font-size: 2.4rem;
	line-height: 1.4;
	margin-bottom: 24px;
}

.kvCont::after {
	content: none;
}

.kvCont {
	bottom: -90px;
	left: 0;
	width: 100%;
	padding: 0 16px;
	text-align: center;
}

.kvCont p {
	font-size: 1.8rem;
}


@media (min-width: 370px) {
	.kvCont {
		bottom: -130px;
	}
	.kvCont h2 {
		font-size: 3.4rem;
	}
}




@media (min-width: 400px) {
	header {
		margin-bottom: 200px;
		height: 600px;
	}
	.kvCont {
		bottom: -150px;
	}
}

@media (min-width: 500px) {
	header {
		height: 700px;
	}
	
	.kvCont {
		bottom: -180px;
	}
}

@media (min-width: 600px) {
	header {
		height: 850px;
	}
}

@media (min-width: 700px) {
	header {
		height: 950px;
	}
}


@media (min-width: 768px) {
	header {
		position: relative;
		background-image: url("../img/pc-kv-bg-1440.jpg");
		background-repeat: no-repeat;
		background-position: top center;
		background-size: cover;
		height:  480px;
		margin-bottom: -50px;
	}

	.kv {
		max-width: 1200px;
		margin: auto;
		display: block;
		height: 100%;
		position: relative;
	}

	.kvCont{
		position: absolute;
		padding: 0;
		width: auto;
		bottom: 180px;
		left: 40%;
		z-index: 100;
		text-align: left;
	}

	.kvCont::after {
		content: "";
		position: absolute;
		bottom: -180px;
		right: -70px;
		width: 180px;
		background-image: url("../img/box_blue.png");
		background-repeat: no-repeat;
		background-position: top center;
		background-size: contain;
		height: 100%;
		z-index: 0;
	}

	.kvCont h2 {
		font-size: 4rem;
		font-weight: 900;
		line-height: 1.3;
		margin-bottom: 8px;
	}

	.kvCont p {
		font-size: 2rem;
		line-height: 1.4;
		margin-bottom: 24px;
	}
}

@media (min-width: 1000px) {

	header {
		margin-bottom: -70px;
		height: 520px;
	}

	.kvCont{
		bottom: 210px;
		left: 38%;
	}

	.kvCont::after {
		bottom: -120px;
		right: -150px;
		width: 250px;
	}

	.kvCont h2 {
		font-size: 4.8rem;
	}

	.kvCont p {
		font-size: 2.2rem;
	}
	
}

@media (min-width: 1200px) {
	header {
		height: 610px;
		margin-bottom: -30px;
	}

	.kvCont{
		bottom: 250px;
	}

	.kvCont::after {
		bottom: -180px;
		right: -200px;
		width: 270px;
	}

	.kvCont h2 {
		font-size: 5.2rem;
	}

	.kvCont p {
		font-size: 2.4rem;
	}
}

@media (min-width: 1500px) {
	header {
		background-image: url("../img/pc-kv-bg.jpg");
	}

	.kvCont{
		left: 42%;
	}
}

@media (min-width: 2000px) {
	header {
		height: 800px;
	}

	.kvCont{
		bottom: 350px;
		left: 35%;
	}
}

@media (min-width: 2500px) {
	header {
		height: 920px;
	}
}

@media (min-width: 3000px) {
	header {
		height: 1200px;
	}
}








/* Kv END
------------------------------------------------------------------------------------------------------------------------*/


.h2Title {
	font-size: 3rem;
	text-align: center;
	font-weight: 1000;
	margin-bottom: 40px;
}

.h2Title span{
	display: inline-block;
	font-size: 2.2rem;
}

h3 {
	font-size: 2.4rem;
	font-weight: 800;
	margin-bottom: 8px;
}

@media (min-width: 1000px) {
	.h2Title {
		font-size: 4rem;
	}	

	.h2Title span{
		font-size: 2.4rem;
	}

	h3 {
		font-size: 2.6rem;
	}
}









/* Problem Start
------------------------------------------------------------------------------------------------------------------------*/

#problems {
    padding: 56px 20px;
}

.problemsInner {
    margin: auto;
    max-width: 1200px;
}

.problemsList {
	margin-bottom: 40px;
}

.problemsList li{
	background-color: #fff;
	padding: 20px;
	text-align: center;
	margin-bottom: 24px;
	border-radius: 12px;
}

.problemsList li:last-child{
	margin-bottom: 0;
}

.problemsList li > div{
	margin-bottom: 20px;
}

.problemsInner > .btnYellow{
	text-align: center;
}


@media (min-width: 768px) {
	#problems {
		padding: 80px 20px;
	}

	.problemsList {
		display: flex;
	}

	.problemsList li{
		padding: 24px;
        margin-bottom: 0;
        margin-right: 4%;
        width: 48%;
        min-height: 400px;
	}

	.problemsList li:last-child{
        margin-right: 0;
	}



}
















/* Feature Start
------------------------------------------------------------------------------------------------------------------------*/

#features {
    padding: 56px 20px;
	background-color: #FFD967;
}

.featuresInner {
    margin: auto;
    max-width: 1200px;
}

.featuresList li{
	margin-bottom: 64px;
}

.problemsList li:last-child{
	margin-bottom: 0;
}

.featuresList li > div:first-child {
	margin-bottom: 24px;
}

@media (min-width: 768px) {
	#features {
		padding: 80px 20px;
	}

	.featuresList > li{
		display: flex;
		align-items: center;
		justify-content: space-between;
	}

	.featuresList > li > div{
		width: 48%;
	}

	.featuresList > li > div:last-child{
		width: 48%;
	}

	.featuresList > li:nth-child(1), .featuresList > li:nth-child(3){
		flex-direction: row-reverse;
	}

	.featuresList li > div:first-child {
		margin-bottom: 0;
	}

}






/*  Process Start
------------------------------------------------------------------------------------------------------------------------*/
#process {
    padding: 56px 20px;
}

.processInner {
    margin: auto;
    max-width: 1200px;
}

.processList li{
	margin-bottom: 100px;
	position: relative;
}

.processList li > div{
	margin-bottom: 16px;
}

.processList li > h3{
	margin-bottom: 8px;
	font-size: 2rem;
	line-height: 1.4;
}

.processList li:last-child{
	margin-bottom: 0;
}

.processList > li::after {
	content: "";
	position: absolute;
	right: 40%;
	bottom: -70px;
	transform: translateX(-50%);
	width: 24px;
	height: 24px;
	background: url('../img/arrow.svg') no-repeat center/contain;
}

.processList > li:last-child:after {
	content: none;
}

@media (min-width: 500px) {
	.processList > li::after {
		right:  42%;
	}
}

@media (min-width: 600px) {
	.processList > li::after {
		right:  44%;
	}
}


@media (min-width: 768px) {
	#process {
		padding: 80px 16px;
	}

	.processList {
		display: flex;
	}

	.processList li {
        margin-bottom: 0;
        margin-right: 6%;
        width: 20.5%;
        min-height: 250px;
    }

	.processList > li::after {
		top: 50%;
		right: -28px;
		transform: translateY(-50%) rotate(-90deg);
		width: 15px; /* 矢印のサイズ */
		height: 20px;
	}

	.processList li:last-child{
		margin-right: 0;
	}

}

@media (min-width: 850px) {
	.processList > li::after {
		right: -35px;
	}
}


@media (min-width: 950px) {
	.processList > li::after {
		right: -40px;
		width: 18px;
	}
}

@media (min-width: 1050px) {
	.processList > li::after {
		right: -45px;
		width: 20px;
	}
}



/*  Values START
------------------------------------------------------------------------------------------------------------------------*/
#values {
    padding: 56px 20px;
	background-color: #fff;
}

.valuesInner {
    margin: auto;
    max-width: 1200px;
}

.valuesList li{
	margin-bottom: 32px;
	display: flex;
}

.valuesList li:last-child{
	margin-bottom: 0;
}

.valuesList li > div:first-child{
	min-width: 130px;
	max-width: 400px;
	background-color: #FFD967;
	border-radius: 6px;
}

.valuesCard {
	text-align: center;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding: 8px;
	margin-right: 16px;
}

.valuesNum {
	font-weight: 800;
	font-size: 3.2rem;
}

@media (min-width: 768px) {
	#values {
		padding: 80px 16px;
	}

	.valuesList {
		display: flex;
	}

	.valuesInner {
		display: flex;
	}

	.valuesList {
		display: flex;
		flex-direction: column;
	}

	.valuesTitle {
		width: 80%;
		text-align: left;
	}
}













/*  Team START
------------------------------------------------------------------------------------------------------------------------*/
#team {
	padding: 56px 16px;
}

.teamInner {
	margin: auto;
	max-width: 1240px;
}

.teamCard > img{
	width: 88%;
}

.teamList {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
}

.teamList > li {
	width: 48.5%;
	margin-right: 3%;
	text-align: center;
	margin-bottom: 24px;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.teamList > li > div:first-child{
	width: 90%;
}

.teamList > li:nth-of-type(2n) {
	margin-right: 0;
}

#team h3 {
	font-weight: 800;
	font-size: 2rem;
	margin-bottom: 8px;
}

.teamListInner {
	padding: 2px;
	margin-top: 8px;
}

.linkedIn {
	position: relative;
	display: inline-block;
	margin-top: 4px;
	margin-left: 24px;
}

.linkedIn::before {
	content: url('../img/team_linkedin.svg');
    display: block;
	position: absolute;
	left: -28px;
}





@media (min-width: 768px) {
	#team {
		padding: 80px 16px;
	}

	.teamList > li {
		width: 23.5%;
		margin-right: 2%;
		margin-bottom: 64px;
	}

	
	.teamList > li:nth-of-type(2n) {
		margin-right: 2%;
	}


	 .teamList > li:nth-of-type(4n) {
		margin-right: 0;
	}

	#team h2 {
		font-size: 3rem;
	}


}


@media (min-width: 1200px) {
	#team h2 {
		font-size: 3.6rem;
	}	
}






/*  Resource START
------------------------------------------------------------------------------------------------------------------------*/
#resource {
    padding: 56px 20px 16px 20px;
	background-color: #fff;
}

.resourceInner {
    margin: auto;
    max-width: 1200px;
}

.resourceList {
	display: flex;
	flex-direction: column;
}

.resourceList > li{
	margin-bottom: 16px;
}

.resourceList > li > a{
	min-width: 180px;
	padding: 10px 24px;
}

.resourceList > li:last-child{
	margin-bottom: 0;
}



@media (min-width: 880px) {
	#resource {
		padding: 80px 16px 16px 16px;
	}

	.resourceInner > .h2Title {
		text-align: left;
		margin: 0;
	}

	.resourceInner {
		display: flex;
		justify-content: space-between;
	}

	.resourceList {
		flex-direction: row;
		flex-wrap: wrap;
		align-items: center;
	}

	.resourceList > li {
		margin-top: 0;
		margin-bottom: 0;
		margin-right: 16px;
		height: auto;
	}

	.resourceList > li:last-child{
		margin-right: 0;
	}
}





/*  Footer START
------------------------------------------------------------------------------------------------------------------------*/

footer {
	padding: 56px 16px 8px 16px;
	background-color: #fff;
}

.footerInner {
	margin: auto;
	max-width: 1200px;
}

.footerTop {
	display: flex;
	justify-content: center;
	flex-direction: column;
	align-items: center;
	width: 100%;
	margin-bottom: 40px;
}

.footerLogo {
	margin-bottom: 40px;
}

.footerMenu {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	width: 100%;
}

ul.footerMenu > li{
	font-weight: 800;
}

ul.footerMenu > li:last-child{
	margin-bottom: 0;
}


.footerBottom{
	text-align: center;
	color: #8C8B91;
	margin-bottom: 32px;
}

.footerLogo {
	width: 200px;
}

footer a {
	color: #231F20;
}

@media (min-width: 400px) {
	.footerMenu {
		max-width: 400px;
	}
}


@media (min-width: 768px) {
	.footerInner {
		margin: auto;
		max-width: 1200px;
	}

	.footerLogo {
		width: 150px;
		margin-bottom: 0;
	}

	.footerTop {
		justify-content: space-between;
		flex-direction: row;
		margin-bottom: 0;
	}

	.footerMenu {
		margin-top: 0;
		display: flex;
		flex-wrap: wrap;
		width: auto;
	}

	ul.footerMenu > li{
		text-align: center;
		margin-bottom: 0;
	}

	.footerMenu > li {
		margin-right: 24px;
		display: flex;
		align-items: center;
	}

	.footerBottom {
		padding-top: 32px;
		border-top: solid #fff 1px;
	}

	.footerBottom > ul {
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
		margin-bottom: 32px;
	}

	.footerBottom > ul > li {
		margin-right: 24px;
		line-height: 2;
		text-decoration: underline;
	}

	.footerBottom > ul > li:last-child {
		margin-right: 0;
	}

	.footerBottom{
		text-align: center;
	}


}


