@charset "UTF-8";
/*
 * layout.css
 * 
 */

/* !wrapper
---------------------------------------------------------- */
#wrapper {
	overflow: hidden;
	position: relative;
}

/* !header
---------------------------------------------------------- */
#header {
	position: fixed;
	left: 0;
	top: 0;
	z-index: 99;
	transition-duration: 0.3s;
	width: 100%;
}
#header.on {
	background: #002060;
}
#headerIn {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0 5rem;
	margin: 0 auto;
	max-width: 141rem;
}

#headerLogo {
	display: flex;
	align-items: center;
	gap: 0 3.5rem;
	padding: 1.6rem 0;
}
#headerLogo a {
	padding-right: 3.8rem;
	border-right: 2px solid #fff;
}
#headerLogo img {
	width: 14.6rem;
}
#headerLogo .txt {
	color: #fff;
	font-size: 2.2rem;
	font-weight: 700;
}

.consulteLink {
	display: inline-flex;
	align-items: center;
	padding: 0 6rem;
	height: 9.2rem;
	background: #E0021F;
	border-radius: 0.8rem;
	color: #fff;
	font-size: 2.3rem;
	font-weight: 700;
}

.btnMenu {
	cursor: pointer;
	display: block;
	width: 5rem;
}
.btnMenu span {
    display: block;
	margin: 1rem 0;
    background: #D11322;
    width: 100%;
    height: 0.3rem;
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
}
.btnMenu.active span:first-child {
    -webkit-transform: translateY(1.3rem) rotate(45deg);
    -moz-transform: translateY(1.3rem) rotate(45deg);
    -ms-transform: translateY(1.3rem) rotate(45deg);
    transform: translateY(1.3rem) rotate(45deg);
}
.btnMenu.active span:nth-child(2) {
    opacity: 0;
}
.btnMenu.active span:last-child {
    -webkit-transform: translateY(-1.3rem) rotate(-45deg);
    -moz-transform: translateY(-1.3rem) rotate(-45deg);
    -ms-transform: translateY(-1.3rem) rotate(-45deg);
    transform: translateY(-1.3rem) rotate(-45deg); 
} 

#gNavi {
	opacity: 0;
	visibility: hidden;
	position: absolute;
	right: 0;
	top: 100%;
	padding: 0 2.4rem 2rem 1.6rem;
	width: 100%;
	max-width: 41.5rem;
	height: calc(100vh - 9rem);
	background: #fff;
}
#gNavi.open {
	opacity: 1;
	visibility: visible;
}
#gNavi li + li {
	border-top: 1px solid #BABABA;
}
#gNavi li a {
	display: block;
	padding: 2rem 2rem 2rem 0.2rem;
	background: url(../img/icon_link.svg)no-repeat right 0.7rem center;
	background-size: 1rem;
	font-size: 2rem;
	font-weight: 700;
}
#gNavi .btn {
	margin-top: 2rem;
	text-align: center;
}
#gNavi .btn .consulteLink {
	padding: 0 4.5rem;
	height: 6.8rem;
	font-size: 1.7rem;
}
 
.pageTop {
	cursor: pointer;
	position: absolute;
	top: 50%;
	right: 14rem;
	transform: translateY(-50%);
	width: 6.3rem;
	height: 6.3rem;
	background: url(../img/ico_pagetop.svg)no-repeat center #fff;
	background-size: 2.5rem;
	border-radius: 50%;
	box-shadow: 0 0 1rem rgba(50, 50, 50, 0.4);
}

/* hover */
@media screen and (min-width: 960px) {
	#gNavi li a:hover {
		background-position: right center;
	}
	
	.consulteLink:hover {
		opacity: 0.7;
	}
}
/* sp */
@media screen and (max-width: 767px) {
	#headerIn {
		padding: 0 2rem;
	}
	#headerLogo {
	    gap: 0 1.8rem;
	}
	#headerLogo a {
	    padding-right: 2rem;
	}
	#headerLogo img {
	    width: 7.3rem;
	}
	#headerLogo .txt {
	    font-size: 1.1rem;
	}
	
	.btnMenu {
		width: 2.6rem;
	}
	.btnMenu span {
		margin: 0.4rem 0;
		height: 0.2rem;
	}
	.btnMenu.active span:first-child {
	    transform: translateY(0.6rem) rotate(45deg);
	}
	.btnMenu.active span:last-child {
	    transform: translateY(-0.6rem) rotate(-45deg); 
	}
	
	.consulteLink {
		padding: 0 2.6rem;
		height: 4.5rem;
		font-size: 1.2rem;
	}
	
	#gNavi {
		height: calc(100vh - 5.6rem);
	}
	#gNavi li a {
		padding: 1.8rem 1.6rem 1.8rem 0.2rem;
		font-size: 1.8rem;
	}
	#gNavi .btn .consulteLink {
	    padding: 0 3.6rem;
	    height: 6rem;
	    font-size: 1.6rem;
	}
	
	
	
}

/* !footer
---------------------------------------------------------- */
#footer {
	position: relative;
	z-index: 90;
	padding: 4.6rem 5rem;
	background: #E0021F;
	color: #fff;
}

.footerLinks {
	display: none;
	position: fixed;
	left: 0;
	bottom: 0;
	z-index: 5;
	padding: 1.6rem 0;
	width: 100%;
	background: #fff;
	box-shadow: 0 -0.5rem 1rem rgba(50, 50, 50,0.3);
	text-align: center;
}
.footerLinks.fixed {
	position: absolute;
	bottom: 100%;
}

#footer .footerIn {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin: 0 auto;
	max-width: 134rem;
}
.footerLogo {
	font-size: 0;
}
.footerLogo img {
	width: 18.2rem;
}
#copyright {
	font-size: 1.2rem;
}
 
/*** sp ***/
@media screen and (max-width: 767px) { 
	#footer {
		padding: 2.4rem 1rem 2rem;
	}
	
	.footerLinks {
		padding: 1rem 0;
	}
	.pageTop {
	    position: absolute;
	    top: 0;
	    right: 1.6rem;
	    transform: translateY(-130%);
	    width: 3.4rem;
	    height: 3.4rem;
	    background-size: 1.3rem;
	}
	#footer .footerIn {
	    display: block;
	}
	.footerLogo {
		margin-bottom: 1.6rem;
		text-align: center;
	}
	.footerLogo img {
	    width: 7.1rem;
	}
	#copyright {
		text-align: center;
	    font-size: 1rem;
	}
}
	
/* !common
---------------------------------------------------------- */
.inner {
	margin: 0 auto;
	padding: 0 5rem;
	max-width: 120rem;
}

#mainVisual {
	padding: 24rem 5rem 25rem;
	background: url(../img/kv.jpg)no-repeat center;
	background-size: cover;
} 
#mainVisual .info {
	margin-left: auto;
	max-width: 56%;
	color: #fff;
}
#mainVisual .head {
	letter-spacing: 0.08em;
	line-height: 1.17;
	font-weight: 700;
}
#mainVisual .head .jap {
	margin-bottom: 1.4rem;
	font-size: 2.6rem;
}
#mainVisual .head .eng {
	font-size: 6.5rem;
}

/*** sp ***/
@media screen and (max-width: 767px) {
	.inner {
		padding: 0 1.6rem;
	}
	
	#mainVisual {
	    padding: 25rem 2rem 26rem;
	}
	#mainVisual .info {
	    max-width: 100%;
	}
	#mainVisual .head .jap {
	    margin-bottom: 1rem;
	    font-size: 1.5rem;
	}
	#mainVisual .head .eng {
	    font-size: 3.8rem;
	}
	
	
	
	
	
	
	
	
	
	
	
}


/* !page
---------------------------------------------------------- */
.topWrap {
	padding: 9.5rem 5rem 14.5rem;
	background: url(../img/bg_top.png)no-repeat center;
	background-size: cover;
}
.topWrap .head {
	margin-bottom: 4rem;
	text-align: center;
	line-height: 1.88;
	color: #002060;
	font-size: 5rem;
	font-weight: 700;
}
.topWrap .head span {
	border-bottom: 0.5rem solid;
}
.topWrap .sub {
	text-align: center;
	line-height: 2.23;
	font-size: 2.6rem;
	font-weight: 700;
}

.topMethod {
	padding: 19rem 0 15rem; 
	color: #fff;
}
.topMethod .img {
	margin-top: 8rem;
}
.topMethod .hd01 {
	margin-top: 4.5rem;
	text-align: center;
	line-height: 1.73;
	font-size: 3.7rem;
	font-weight: 700;
}

.topStepProcess {
	padding: 15.8rem 0 14rem;
}
.topStepProcess .stepPoints {
	display: flex;
	justify-content: center;
	gap: 0 6rem;
	margin-top: 4rem;
}
.topStepProcess .stepPoints li {
	clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 1.5rem 0;
	padding: 12rem 2rem 10.8rem;
	width: 48%;
	max-width: 39.6rem;
	background: #2AC9D2;
	text-align: center;
	color: #fff;
	line-height: 1.78;
	font-size: 1.9rem;
}
.topStepProcess .stepPoints .step {
	margin: 0 auto;
	padding: 1.3rem 1rem;
	width: 15.5rem;
	background: #fff;
	border-radius: 3rem;
	line-height: 1;
	color: #2AC9D2;
	font-size: 1.8rem;
	font-weight: 700;
}
.topStepProcess .stepPoints .tit {
	line-height: 1.43;
	font-size: 2.8rem;
	font-weight: 700;
}
.topStepProcess .stepPoints .purpleSt {
	background: #A60FB0;
}
.topStepProcess .stepPoints .purpleSt .step {
	color: #A60FB0;
}

.topStepProcess .processPart {
	margin-top: 6rem;
}
.topStepProcess .processPart .img {
	margin-top: 4rem;
}
.topStepProcess .hdM.end {
	margin: 5rem 0 0;
}

.topResult {
	padding: 16.6rem 0;
	color: #fff;
}
.topResult .inner {
	max-width: 85.4rem;
}
.topResult .resultFlow {
	margin-top: 4rem
}
.topResult .resultFlow .item + .item {
	margin-top: 8rem;
}
.topResult .resultFlow .head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 4rem;
	font-weight: 700;
}
.topResult .resultFlow .head .step {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding-top: 0.8rem;
	width: 12rem;
	height: 14rem;
	background: url(../img/bor_hexagon.svg)no-repeat center;
	background-size: 100%;
	text-align: center;
	font-size: 3rem;
}
.topResult .resultFlow .head .step:before {
	content: "Result";
	display: block;
	font-size: 1.8rem;
}
.topResult .resultFlow .head .tit {
	width: calc(100% - 17.6rem);
	font-size: 3.2rem;
}

.topConsultant {
	padding: 15rem 0;
}
.topConsultant .display {
	display: flex;
	justify-content: space-between;
	margin-top: 7.2rem;
}
.topConsultant .display .pic {
	overflow: hidden;	
	width: calc(42% + 0.2rem);
}
.topConsultant .display .pic img {
	object-fit: cover;
	height: auto;
	aspect-ratio: 1;
	width: 100%;
	border-radius: 100%;
}
.topConsultant .display .info {
	width: 43%;
	line-height: 2.3;
	font-size: 2rem;
	font-weight: 700;
}
.topConsultant .display .img {
	width: 54%;
}
.topConsultant .display .sub {
	margin-bottom: 3.5rem;
	line-height: 1.7;
	font-size: 2.4rem;
}
.topConsultant .display .name {
	display: flex;
	align-items: center;
	gap: 0 3rem;
	margin-bottom: 1.4rem;
	line-height: 1.5;
	font-weight: 700;
}
.topConsultant .display .name .jap {
	font-size: 3.5rem;
}
.topConsultant .display .name .eng {
	font-size: 2.4rem;
}
.topConsultant .message .info {
	width: 48%;
}
.topConsultant .bookIntrod {
	display: flex;
	justify-content: space-between;
	padding: 2.8rem 3rem;
	width: calc(50% + 3.6rem);
	background: #002060;
	color: #fff;
}
.topConsultant .bookIntrod .book {
	width: 42%;
}
.topConsultant .bookIntrod .info {
	width: 52.83%;
	font-weight: 500;
}
.topConsultant .bookIntrod .title {
	padding-bottom: 1rem;
	margin-bottom: 1.2rem;
	border-bottom: 1px solid #fff;
	line-height: 1.86875;
}
.topConsultant .bookIntrod .name {
	margin-bottom: 2rem;
	line-height: 1;
	font-size: 2.5rem;
	font-weight: 700;
}
.topConsultant .bookIntrod .txt {
	line-height: 2;
	font-size: 1.8rem;
}

.consultantExample {
	margin: 9rem auto 0;
	max-width: 105.5rem;
}
.consultantExample .example {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 0 3rem;
	margin-top: 4rem;
	text-align: center;
}
.consultantExample li {
	position: relative;
}
.consultantExample li + li {
	margin-top: 3.8rem;
}
.consultantExample li .th {
	padding: 2.5rem 1rem;
	background: #002060;
	color: #fff;
	font-weight: 700;
	font-size: 2.8rem;
}
.consultantExample li .td {
	padding: 1.3rem 1rem;
	background: #FCFBE2;
	font-weight: 500;
	font-size: 2.4rem;
}
.consultantExample li .award {
	display: flex;
	justify-content: center;
	align-items: center;
	position: absolute;
	left: -6.4rem;
	top: -3rem;
	z-index: 2;
	width: 16rem;
	height: 16rem;
	background: #C30000;
	border-radius: 50%;
	text-align: center;
	line-height: 1.555;
	color: #fff;
	font-size: 1.8rem;
	font-weight: 500;
}

.topProblem {
	padding: 15rem 0 27rem;
	color: #fff;
}
.topProblem .problem {
	margin: 8rem auto 0;
	max-width: 76.8rem;
}
.topProblem ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 5.5rem 3.6rem;
}
.topProblem ul + ul {
	margin-top: 5.5rem;
}
.topProblem li {
	display: flex;
	justify-content: center;
	position: relative;
	padding: 3.2rem 1rem;
	width: 23.2rem;
	background: #fff;
	border: 2px solid #002060;
	border-radius: 0.4rem;
	line-height: 1.7;
	color: #002060;
	font-size: 2rem;
	font-weight: 700;
}
.topProblem li:after {
	content: "";
	position: absolute;
	left: 50%;
	top: calc(100% - 2px);
	transform: translateX(-50%);
	width: calc(100% + 4px);
	height: 3rem;
	background: url(../img/icon_talk.png)no-repeat center top;
	background-size: 100%;
}
.topProblem .end {
	margin: 8.5rem 0 0;
	font-weight: 500;
}

/* hover */
@media screen and (min-width: 960px) {

}
/*** sp ***/
@media screen and (max-width: 767px) {
	.topWrap {
	    padding: 2.5rem 2rem 6.2rem;
	}
	.topWrap .head {
	    margin-bottom: 2rem;
	    line-height: 2.277;
	    font-size: 1.8rem;
	}
	.topWrap .head span {
		border-bottom-width: 0.4rem;
	}
	.topWrap .sub {
	    line-height: 1.785;
	    font-size: 1.4rem;
	}
	
	.topMethod {
	    padding: 7rem 0 3rem;
	    color: #fff;
	}
	.topMethod .img {
	    margin-top: 3.6rem;
	}
	.topMethod .methodInfo {
	    margin: 3.2rem -2rem 0;
	}
	.topMethod .methodInfo li {
		display: flex;
		line-height: 1.68;
		font-size: 1.4rem;
	}
	.topMethod .methodInfo li + li {
		margin-top: 1.6rem;
	}
	.topMethod .methodInfo .con {
		padding: 0 0 0.6rem 4.1rem;
		border-bottom: 1px solid;
	}
	.topMethod .methodInfo .tit {
		margin: 0 0 0.5rem -2.5rem;
		padding-left: 2.5rem;
		background: url(../img/icon_hexagon.svg) no-repeat left center;
		background-size: 2rem;
		font-weight: 700;
		font-size: 1.6rem;
	}
	.topMethod .methodInfo li:nth-of-type(even) {
		justify-content: flex-end;
	}
	.topMethod .methodInfo li:nth-of-type(even) .con {
		padding: 0 1.6rem 0.6rem 2.5rem;
	}
	.topMethod .hd01 {
	    margin-top: 3.5rem;
	    line-height: 1.58;
	    font-size: 1.7rem;
	}
	
	.topStepProcess {
	    padding: 5.8rem 0 5.2rem;
	}
	.topStepProcess .processPart {
		margin-top: 1.4rem;
	}
	.topStepProcess .stepPoints {
	    gap: 0 2.4rem;
	    margin-top: 1.4rem;
	}
	.topStepProcess .stepPoints li {
	    gap: 0.6rem 0;
	    padding: 3.2rem 1rem 3.6rem;
	    max-width: 15.8rem;
		min-height: 16rem;
	    line-height: 1.3;
	    font-size: 1.3rem;
	}
	.topStepProcess .stepPoints .step {
	    padding: 0.4rem 0;
	    width: 6.2rem;
	    font-size: 1.1rem;
	}
	.topStepProcess .stepPoints .tit {
	    font-size: 1.4rem;
	}
	.topStepProcess .processPart .img {
	    margin-top: 2.4rem;
	}
	.topStepProcess .hdM.end {
	    margin: 2.2rem 0 0;
		color: #000;
	}
	
	.topResult {
	    padding: 7.2rem 0;
	}
	.topResult .resultFlow {
	    margin-top: 3.5rem;
	}
	.topResult .resultFlow .item + .item {
	    margin-top: 4.2rem;
	}
	.topResult .resultFlow .head {
	    margin-bottom: 2rem;
	}
	.topResult .resultFlow .head .step {
	    padding-top: 0.5rem;
	    width: 6.5rem;
	    height: 7.5rem;
	    font-size: 1.6rem;
	}
	.topResult .resultFlow .head .step:before {
	    font-size: 1rem;
	}
	.topResult .resultFlow .head .tit {
		width: calc(100% - 9rem);
		font-size: 1.8rem;
	}
	
	.topConsultant {
	    padding: 3.6rem 0 5.6rem;
	}
	.topConsultant .display {
	    margin-top: 1rem;
	    display: block;
	}
	.topConsultant .message {
	    margin-top: 4.8rem;
	}
	.topConsultant .display .pic {
		margin: 0 auto 2.4rem;
	    width: 22rem;
	}

	.topConsultant .display .img {
	    margin-top: 2rem;
		width: auto;
	}
	.topConsultant .display .info {
		width: auto;
		line-height: 1.85;
		font-size: 1.4rem;
		font-weight: 500;
	}
	.topConsultant .display .sub {
	    margin-bottom: 0.8rem;
	    line-height: 1.91;
	    font-size: 1.6rem;
	}
	.topConsultant .display .name {
	    gap: 0 2rem;
	    margin-bottom: 1.2rem;
	}
	.topConsultant .display .name .jap {
	    font-size: 2.6rem;
	}
	.topConsultant .display .name .eng {
	    font-size: 1.6rem;
	}
	.topConsultant .bookIntrod {
		margin-top: 2rem;
		padding: 1.6rem 1.8rem;
		width: auto;
	}
	.topConsultant .bookIntrod .info {
		width: 52.83%;
	}
	.topConsultant .bookIntrod .title {
	    padding-bottom: 0.6rem;
	    margin-bottom: 0.8rem;
	    line-height: 1.458;
		font-size: 1.2rem;
	}
	.topConsultant .bookIntrod .name {
		font-size: 1.4rem;
	}
	.topConsultant .bookIntrod .txt {
	    line-height: 1.75;
	    font-size: 1.2rem;
	}
	
	.consultantExample {
		margin-top: 5rem;
	}
	.consultantExample .example {
	    grid-template-columns: repeat(1, 1fr);
	    gap: 2.4rem 0;
	    margin: 2.8rem auto 0;
		max-width: 28.8rem;
	}
	.consultantExample li + li {
	    margin-top: 2.4rem;
	}
	.consultantExample li .th {
	    padding: 1.5rem 1rem;
	    font-size: 1.8rem;
	}
	.consultantExample li .td {
		padding: 0.9rem 1rem;
	    font-size: 1.5rem;
	}
	.consultantExample li .award {
		left: -4rem;
		top: -1.8rem;
		z-index: 2;
		width: 10rem;
		height: 10rem;
		font-size: 1.1rem;
	}
	
	.topProblem {
	    padding: 7rem 0 8rem;
	}
	.topProblem ul {
	    gap: 4rem 2rem;
	}
	.topProblem ul + ul {
	    margin-top: 4rem;
	}
	.topProblem li {
		padding: 2.2rem 1rem;
		width: 13.9rem;
		line-height: 1.7;
		font-size: 1.2rem;
	}
	.topProblem .end {
		margin-top: 4rem;
		white-space: nowrap;
		word-wrap: break-word;
		word-break:break-all;
		font-weight: 700;
	}
	
}

@media screen and (max-width: 374px) {
	.topStepProcess .stepPoints {
		gap: 0 1.6rem;
	}
	.topStepProcess .stepPoints li {
		gap: 0.6rem 0;
		padding: 3.2rem 0 3.6rem;
	}
	
	
	
}