@charset "utf-8";
/*------------------------------------------------------------
Reset
------------------------------------------------------------*/
*, *::before, *::after {
	box-sizing: border-box
}

html {
	-moz-text-size-adjust: none;
	-webkit-text-size-adjust: none;
	text-size-adjust: none;
	scroll-behavior: smooth;
}
body, h1, h2, h3, h4, p, figure, blockquote, dl, dd {
	margin: 0
}
ul[role='list'], ol[role='list'] {
	list-style: none
}
body {
	min-height: 100vh;
}
h1, h2, h3, h4, button, input, label {}
h1, h2, h3, h4 {
	text-wrap: wrap;
}
a:not([class]) {
	text-decoration-skip-ink: auto;
	color: currentColor
}
img, picture {
	max-width: 100%;
	display: block
}
input, button, textarea, select {
	font: inherit
}
textarea:not([rows]) {
	min-height: 10em
}
:target {
	scroll-margin-block: 5ex
}
ol, ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

/*------------------------------------------------------------
Body
------------------------------------------------------------*/
body {
	font-size:1rem;
	line-height: 1.6;
	font-family: 'Cladea', 'Noto Sans JP', "游ゴシック体", "Yu Gothic", "Hiragino Kaku Gothic Pro", "Meiryo", sans-serif;
}

@media (max-width: 960px) {
	body {
		width: 100%;
	}
}

@media (max-width: 768px) {
	body {
		width: 100%;
	}
}
/*------------------------------------------------------------
共通
------------------------------------------------------------*/
p, li, dd {
	font-size: 1rem;
}

section {
	padding: 60px 0;
}

.inner {
	max-width: 1000px;
	width: 100%;
	margin: 0px auto;
}

.container {
	display: flex;
	flex-wrap: wrap;
}

a,
a:hover,
a:visited,
a:focus {
	text-decoration: none;
}

small {
	display: block;
}

.sp_only {
	display: none;
}

.pc_only {
	display: block;
}

.txtImp {
	font-weight: 700;
}

@media (max-width: 960px) {
	.inner {
		width: 100%;
		margin: 0px auto;
		padding: 0 20px;
	}

}

@media (max-width: 768px) {
	section {
		padding: 40px 0;
	}

	.inner {
		width: 100%;
		padding: 0 10px;
		margin: 0px auto;
	}

	.pc_only {
		display: none;
	}
	
	.sp_only {
		display: block;
	}
}
/*------------------------------------------------------------
見出し
------------------------------------------------------------*/
h2 {
	text-align: center;
	font-size: 2.5rem;
	font-weight: 700;
	margin-bottom: 20px;
	line-height: 2.6rem;
}

.brackets-heading {
	position: relative;
}

.brackets-heading::before,
.brackets-heading::after {
	content: "";
	display: inline-block;
	width: 1em;
	height: 1em;
	background: url("../images/brackets.svg") no-repeat center;
	background-size: contain;
	vertical-align: -0.2em;
}

.brackets-heading::before {
	margin-right: 0.3em;
}

.brackets-heading::after {
	margin-left: 0.3em;
	transform: scaleX(-1);
}

p.ttl_note {
	font-size: 1.125rem;
	font-weight: 700;
	text-align: center;
	margin-bottom: 40px;
}

p.ttl_note span {
	color: #2d73c6;
}

@media screen and (max-width:768px) {
	h2 {
		font-size: 1.625rem;
		line-height: 2rem;
		text-align:center;
		display:inline-block;
	}
	
	.brackets-heading-wrap{
		text-align:center;
	}
		
	.brackets-heading::before,
	.brackets-heading::after {
		content: "";
		display: inline-block;
		width: 1em;
		height: 1em;
		background: url("../images/brackets.svg") no-repeat center;
		background-size: contain;
		vertical-align: 0;
		position:absolute;
		top:.3rem;
	}

	.brackets-heading::before {
		margin-right: 0;
		left:-2rem;
	}

	.brackets-heading::after {
		margin-left: 0;
		transform: scaleX(-1);
		right:-2rem;
	}

	p.ttl_note {
		font-size: 1rem;
		font-weight: 700;
		text-align: center;
		margin-bottom: 40px;
	}
}
/*------------------------------------------------------------
SPMenu
------------------------------------------------------------*/

.openbtn {
	position: absolute;
	background: #002664;
	cursor: pointer;
	width: 50px;
	height: 50px;
	border-radius: 5px;
	top: 20px;
	right: 10px;
	z-index: 50;
}

.openbtn span {
	display: inline-block;
	transition: all .4s;
	position: absolute;
	left: 14px;
	height: 3px;
	border-radius: 2px;
	background: #fff;
	width: 45%;
}

.openbtn span:nth-of-type(1) {
	top: 15px;
}

.openbtn span:nth-of-type(2) {
	top: 23px;
}

.openbtn span:nth-of-type(3) {
	top: 31px;
}

.openbtn.active span:nth-of-type(1) {
	top: 18px;
	left: 18px;
	transform: translateY(6px) rotate(-45deg);
	width: 30%;
}

.openbtn.active span:nth-of-type(2) {
	opacity: 0;
}

.openbtn.active span:nth-of-type(3) {
	top: 30px;
	left: 18px;
	transform: translateY(-6px) rotate(45deg);
	width: 30%;
}
/*------------------------------------------------------------
ヘッダー
------------------------------------------------------------*/
header{
	width:100%;
	background:#fff;
	padding:20px;
}

header .cj_logo {
	width: 260px;
}

@media (max-width: 768px) {
	header .cj_logo {
		width: 50%;
		margin: 0 auto;
	}
}

/*------------------------------------------------------------
メインビジュアル
------------------------------------------------------------*/
#hero {
	background-color:#2d73c6;
	position:relative;
	overflow: hidden; 
}

#hero:before {
	width: 100%;
	height: 100%;
	position:absolute;
	content: "";
	background-image: url(../images/bg_l.png);
	background-repeat: no-repeat;
	background-position: center left;
	background-size: cover;
	bottom: -10%;
	left: 0;
}

#hero:after {
	width: 100%;
	height: 100%;
	position:absolute;
	content: "";
	background-image: url(../images/bg_l.png);
	background-repeat: no-repeat;
	background-position: center left;
	background-size: cover;
	transform: rotate(180deg);	
	top: -10%;
	left: 0;
}

#hero #inner {
	width:100%;
	max-width: 1134px;
	text-align: left;
	margin: 40px auto;
	z-index:1;
	position:relative;
}

#hero h1 {
	font-size: 2.875rem;
	color: #fff;
	font-weight: 900;
	line-height: 4rem;
	margin-bottom: 40px;
	text-align: left;
	letter-spacing: 1px;
}

#hero h1 span{
	font-size: 2.875rem;
}

#hero p.subcopy {
	color: #fff;
	font-size: 1.125rem;
	margin-bottom: 60px;
	text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.4);
}

#hero .wrapper {
	display: flex;
}

#hero ul.achieve {
	width: 50%;
	display: flex;
	flex-wrap: nowrap;
	align-items: center;
	margin-right: 30px;
}

#hero ul.achieve li {
	margin-right: 15px;
}

#hero ul.achieve li:last-of-type {
	margin-right: 0;
}

#hero_offer {
	background: rgba(255, 255, 255, .2);
	padding: 20px;
	text-align: center;
	border-radius: 10px;
	font-weight: 700;
	width: 50%;
}

#hero_offer h3 {
	font-size: 1.5rem;
	margin-bottom: 20px;
	line-height: 2.6rem;
	color: #fff;
}

#hero_offer ul.request {
	display: flex;
	flex-wrap: nowrap;
	justify-content: center;
	margin-bottom: 20px;
}

#hero_offer ul.request li {
	background: #000;
	font-size: .8125rem;
	width: calc((100% - 20px)/3);
	margin-right: 10px;
	color: #fff;
	padding: 10px;
	display: flex;
	align-items: center;
}

#hero_offer ul.request li:last-of-type {
	margin-right: 0;
}

#hero_offer a.btn {
	position:relative;
	display: block;
	font-size: 1.625rem;
	width: auto;
	background: #000;
	border-radius: 60px;
	padding: 20px 0;
	margin: 0 auto;
	color: #fff;
	border:3px solid #f3d000;
	margin-bottom:30px;
}

#hero_offer a.btn:hover {
	background: #fff;
	transition: .3s;
	color:#000;
	border:3px solid #f3d000;
}

#hero_offer a.btn:before {
	position: absolute;
	content: "無料";
	height: 60px;
	width: 60px;
	border-radius: 50%;
	background: #fff;
	left: 10px;
	top: 50%;
	color: #000;
	font-size: 1rem;
	line-height: 60px;
	transform: translateY(-50%);
}

#hero_offer a.btn:hover:before {
	position: absolute;
	content: "無料";
	height: 60px;
	width: 60px;
	border-radius: 50%;
	background: #000;
	left: 10px;
	top: 50%;
	color: #fff;
	font-size: 1rem;
	line-height: 60px;
	transform: translateY(-50%);
	transition: .3s;
}

#hero_offer a.btn2 {
	display: block;
	width: 400px;
	background: #fff;
	border-radius: 60px;
	padding: 10px 0;
	margin: 0 auto;
	color: #2d73c6;
	position:relative;
	font-size: 1.125rem;  
}

#hero_offer a.btn2:hover {
	background: #000;
	transition: .3s;
	color:#fff;
}

@media (max-width: 1050px) {
	#hero {
		padding: 20px 20px 40px;
		height: auto;
		background-image: url(../images/hero.jpg);
		background-size: cover;
		background-position: top left;
	}

	#hero:before {
		content: none;
	}

	#hero #inner {
		width: 100%;
	}

	#hero .wrapper {
		display: flex;
		flex-direction: column;
	}

	#hero ul.achieve {
		width: 100%;
		padding: 0 100px;
		margin-bottom: 50px;
	}

	#hero_offer {
		width: 100%;
	}
	
	#hero ul.achieve li {
		margin-right: 30px;
	}
	
	#hero_offer a.btn{
		width:530px;
	}

}

@media (max-width: 768px) {

	#hero {
		padding: 20px 10px 40px;
		height: auto;
		background-image: url(../images/hero.jpg);
		background-size: cover;
		background-position: top left;
	}

	#hero:before {
		content: none;
	}

	#hero #inner {
		width: 100%;
		margin: 30px auto 0;
		flex-direction: column;
		align-items: start;
	}

	#hero_ttl h2 {
		font-size: 1rem;
		width: 100%;
	}

	#hero h1 {
		font-size: 10vw;
		color: #fff;
		font-weight: 900;
		line-height: 13vw;
		margin: 20px 0;
		text-align: center;
		
	}

	#hero h1 span {
		font-size: 8.5vw;
	}

	#hero ul.achieve {
		display: flex;
		flex-wrap: wrap;
		margin-bottom: 20px;
		align-items: center;
		padding: 0;
	}

	#hero ul.achieve li {
		width: calc((100% - 30px) / 3);
		margin-right: 15px;
	}

	#hero ul.achieve li:last-of-type {
		margin-right: 0;
	}

	#hero_offer {
		margin-left: 0;
		padding: 10px;
		text-align: center;
		border-radius: 10px;
		font-weight: 700;
		width: 100%;
	}
	
	#hero_offer h3 {
		font-size: 1.25rem;
		line-height:1.6rem;
	}

	#hero_offer ul.request {
		display: flex;
		flex-direction: column;
		flex-wrap: nowrap;
		justify-content: center;
		margin-bottom: 20px;
	}

	#hero_offer ul.request li {
		width: 100%;
		margin: 0 0 10px 0;
		color: #fff;
		padding: 10px;
		display: block;
	}

	#hero_offer ul.request li:last-of-type {
		margin-bottom: 0;
	}

	#hero_offer a.btn {
		width: 100%;
		padding: 20px 0;
	}

	#hero_offer a.btn span {
		position:relative;
		font-size: 1.375rem;
		left: 5%;
	}
	
	#hero_offer a.btn2 {
		width: 100%;
	}

}


/*------------------------------------------------------------
Splide
------------------------------------------------------------*/
.splide_dot {
	background-color: #fff;
	height: 12px;
	width: 12px;
	transition: .5s all;
}
/* 現在表示されているページネーションのスタイル */
.splide_dot.is-active {
	background-color: #2d73c6;
	height: 12px;
	width: 12px;
	opacity: 1;
}

.splide_dot_gray {
	background-color: #e4e4e4;
	height: 12px;
	width: 12px;
	transition: .5s all;
}
/* 現在表示されているページネーションのスタイル */
.splide_dot_gray.is-active {
	background-color: #2d73c6;
	height: 12px;
	width: 12px;
	opacity: 1;
}

.splide_page {
	bottom: 1.1em;
}

.splide_page li {
	margin-right: 16px;
}

.splide_page li:last-of-type {
	margin-right: 0;
}

.splide__arrow>svg {
	fill: #fff;
}

.your-class-prev {
	background-color: #2d73c6;
	left: 40px !important;
}

.your-class-next {
	background-color: #2d73c6;
	right: 40px !important;
}

/*------------------------------------------------------------
problem
------------------------------------------------------------*/
#issue {
	background: #fff;
	padding: 90px 0 0 0;
}

#issue h2 {
	margin-bottom: 50px;
}

#issue .inner {
	/*background-image:url(../images/issue_bg.png);
	background-position: top left;
	background-repeat: no-repeat;*/
	position: relative;
}


#issue .wrap {
	display:flex;
}

#issue .item {
	width: calc((100% - 60px) / 3);
	border-radius: 10px;
	margin-right: 30px;
	background: #f3f2f7;
	padding: 20px;
	position: relative;
}

#issue .item:last-of-type {
	margin-right: 0;
}

/*#issue .item:after {
	position: absolute;
	content: "";
	width: 0px;
	height: 0px;
	border-style: solid;
	border-width: 25px 7.5px 0 7.5px;
	border-color: #f3f2f7 transparent transparent transparent;
	bottom: -23px;
	left: 50%;
	transform: translateX(-50%);
}*/

#issue .item picture {
	margin-bottom: 20px;
}

#issue .item h3 {
	color: #333;
	text-align: center;
	font-size: 1.125rem;
	font-weight: 700;
}

#issue p.solution {
	font-size: 1.625rem; 
	font-weight: 700;
	text-align: center;
	margin-top: 3rem;
	background: #2d73c6;
	width: 100%;
	color: #fff;
	padding: 20px 0;
	position:relative;
}

#issue p.solution:after {
	position: absolute;
	content: "";
	width: 0px;
	height: 0px;
	border-style: solid;
	border-width: 20px 10px 0 10px;
	border-color: #2d73c6 transparent transparent transparent;
	bottom: -18px;
	left: 50%;
	transform: translateX(-50%);
}

#issue p.solution span {
	color: #f6dd32;
}

@media (max-width: 960px) {
	#issue p.solution {
		font-size: 1.1875rem;
		padding: 20px 10px;
	}
}

@media (max-width: 768px) {

	#issue {
		position: relative;
		padding: 60px 0;
	}

	#issue h2 {
		margin-bottom: 40px;
	}
	
	#issue .brackets-heading::before,
	#issue .brackets-heading::after {
		height: 2.5em;
	}

	#issue .inner {
		position: static;
	}

	#issue .wrap {
		width: 100%;
		flex-direction:column;
	}
	
	#issue .item{
		width:100%;
		margin:0 auto 30px auto;
	}
	
	#issue .item:last-of-type {
		margin-right: auto;
	}

	#issue .item h2 {
		margin-bottom: 10px;
	}

	#issue .item p.step {
		margin-bottom: 10px;
	}

	#issue .item picture{
		width:70%;
		margin:0 auto 20px auto;
	}
	
	#issue p.solution {
		text-align: left;
		margin-top:0;
	}
}


/*------------------------------------------------------------
Point
------------------------------------------------------------*/
#point {
	background: #f3f2f7;
	padding: 90px 0;
}

#point h2 {
	margin-bottom: 70px;
}

#point .inner {
	/*background-image:url(../images/point_bg.png);
	background-position: top right;
	background-repeat: no-repeat;*/
}

#point .wrap{
	display:flex;
	flex-wrap: wrap;
}

#point .item {
	width: calc(50% - 15px);
	background: #fff;
	border-radius: 10px;
	padding: 30px;
	margin-bottom: 50px;
	position: relative;
}

#point .item:nth-child(odd){
	margin-right:30px;
}

#point .item:nth-child(n+3){
	margin-bottom:0;
}

#point .item .point {
	font-family: "Bebas Neue";
	font-weight: 400;
	font-size: 3.4375rem;
	color: #000;
	display: block;
	position: absolute;
	top: -40px;
	left: 30px;
}

#point .item h3 {
	color: #2d73c6;
	font-size: 1.25rem;
	font-weight: 700;
	margin-bottom: 20px;
	text-align: left;
}

#point p {
	font-size: 1rem;
}

#point picture {
	margin-bottom:20px;
}

@media (max-width: 768px) {

	#point {
		position: relative;
		padding: 60px 0;
	}
	
	#point .wrap{
		flex-direction:column;
	}

	#point h2 {
		margin-bottom: 40px;
	}

	#point .inner {
		position: static;
	}
	
	#point .item {
		width: 100%;
		border-radius: 10px;
		padding: 20px 20px;
		margin-bottom: 20px;
		position: relative;
	}
	
	#point picture {
		margin:0 auto 10px;
		width:70%;
	}

	#point .item h3 {
		font-size: 1.25rem;
		position: relative;
		margin-bottom: 10px;
		text-align: center;
	}

	#point .item h3:before {
		content: "POINT.1";
		font-family: "Bebas Neue";
		font-weight: 400;
		font-size: 1.875rem;
		color: #000;
		display: block;
		line-height: 1;
		margin: 20px 0 10px;
	}

	#point .item:nth-of-type(2) h3:before {
		content: "POINT.2";
	}

	#point .item:nth-of-type(3) h3:before {
		content: "POINT.3";
	}

	#point .item:nth-of-type(4) h3:before {
		content: "POINT.4";
	}

	#point .item:nth-of-type(5) h3:before {
		content: "POINT.5";
	}

	#point .item .point {
		display: none;
	}
}

/*------------------------------------------------------------
Offer
------------------------------------------------------------*/
.offer {
	background: #2d73c6;
	padding: 90px 0;
	font-weight: 700;
	text-align: center;
	position:relative;
	overflow:hidden;
}

.offer:before {
	width: 100%;
	height: 100%;
	position:absolute;
	content: "";
	background-image: url(../images/bg_l.png);
	background-repeat: no-repeat;
	background-position: center left;
	background-size: cover;
	bottom: -10%;
	left: 0;
}

.offer h2 {
	color: #fff;
	margin-bottom: 3rem;
}

.offer a.btn {
	display: block;
	font-size: 1.625rem;
	width: 530px;
	background: #000;
	border-radius: 60px;
	padding: 20px 0;
	margin: 0 auto;
	color: #fff;
	position:relative;
	border:3px solid #f3d000;
	margin-bottom:30px;
}

.offer a.btn:hover {
	background: #fff;
	transition: .3s;
	color:#000;
	border:3px solid #f3d000;
}

.offer a.btn2 {
	display: block;
	width: 400px;
	background: #fff;
	border-radius: 60px;
	padding: 10px 0;
	margin: 0 auto;
	color: #2d73c6;
	position:relative;
	font-size: 1.125rem;  
}

.offer a.btn2:hover {
	background: #000;
	transition: .3s;
	color:#fff;
}

.offer a.btn:before {
	position: absolute;
	content: "無料";
	height: 60px;
	width: 60px;
	border-radius: 50%;
	background: #fff;
	left: 10px;
	top: 50%;
	color: #000;
	font-size: 1rem;
	line-height: 60px;
	transform: translateY(-50%);
}

.offer a.btn:hover:before {
	position: absolute;
	content: "無料";
	height: 60px;
	width: 60px;
	border-radius: 50%;
	background: #000;
	left: 10px;
	top: 50%;
	color: #fff;
	font-size: 1rem;
	line-height: 60px;
	transform: translateY(-50%);
	transition: .3s;
}

@media (max-width: 768px) {

	.offer {
		padding: 40px 0;
	}

	.offer a.btn {
		width: 100%;
	}
	
	.offer a.btn2 {
		width: 100%;
	}
	
	.offer a.btn span{
		position:relative;
		left:5%;
	}
}

/*------------------------------------------------------------
Process
------------------------------------------------------------*/
#process {
	background: #fff;
	padding: 90px 0;
}

#process h2 {
	margin-bottom: 60px;
}

#process .inner {
	/*background-image:url(../images/process_bg.png);
	background-position: top left;
	background-repeat: no-repeat;*/
	position: relative;
}

#process .wrap {
	width: 100%;
	display:flex;
}

#process .item {
	width: calc((100% - 90px) / 4);
	border-radius: 10px;
	margin-right: 30px;
	background: #f3f2f7;
	padding: 20px;
	position: relative;
}

#process .item:last-of-type {
	margin-right: 0;
}

#process .item:after {
	position: absolute;
	content: "";
	width: 0px;
	height: 0px;
	border-style: solid;
	border-width: 10px 0 10px 10px;
	border-color: transparent transparent transparent #2d73c6;
	top: 50%;
	right: -20px;
	transform: translateY(-50%);
}

#process .item:last-of-type:after {
	content: none;
}

#process .item p.step {
	font-family: "Bebas Neue";
	font-weight: 400;
	font-size: 1.625rem;
	color: #000;
	text-align: center;
	margin-bottom: 20px;
	line-height: 1;
}

#process .item picture {
	margin-bottom: 25px;
}

#process .item h3 {
	font-size: 1.125rem;
	font-weight: 700;
	color: #2d73c6;
	margin-bottom: 25px;
	text-align:center;
}

@media (max-width: 768px) {

	#process {
		padding: 60px 0;
	}

	#process h2 {
		margin-bottom: 40px;
	}

	#process .wrap {
		flex-direction:column;
	}
	
	#process .item {
		width:100%;
		margin-bottom:20px;
		padding: 20px 10px;
	}
	
	#process .item:last-of-type {
		margin: 0;
	}

	#process .item:after {
		content: none;
	}

	#process .item h3 {
		margin-bottom: 10px;
	}

	#process .item p.step {
		margin-bottom: 10px;
	}

	#process .item picture {
		margin:0 auto 10px;
		width:70%;
	}
	
	#process .item p {
		word-break: break-all;
	}

}

/*------------------------------------------------------------
Question
------------------------------------------------------------*/
#question {
	background: #f3f2f7;
	padding: 90px 0;
}

#question h2 {
	margin-bottom: 70px;
}

#question .inner {
	/*background-image:url(../images/question_bg.png);
	background-position: top right;
	background-repeat: no-repeat;*/
	position: relative;
}


#question details {
	width: 100%;
	background: #fff;
	border-radius: 10px;
	padding: 30px 20px;
	margin-bottom: 50px;
}

#question details:last-of-type {
	margin-bottom: 0;
}

#question details summary {
	list-style: none;
	font-size: 1.125rem;
	font-weight: 700;
	cursor: pointer;
	position: relative;
	margin-left: 40px;
}

summary::-webkit-details-marker {
	display: none;
}

#question details summary:before {
	content: "Q.";
	font-family: "Bebas Neue";
	font-weight: 400;
	font-size: 1.875rem;
	color: #2d73c6;
	position: absolute;
	top: -10px;
	left: -30px;
}

#question details summary:after {
	content: "";
	color: #2d73c6;
	width: 35px;
	height: 35px;
	border-radius: 50%;
	background: #ececec;
	position: absolute;
	top: 50%;
	right: 0px;
	transform: translateY(-50%);
}

#question details summary span:before {
	content: "";
	color: #2d73c6;
	width: 15px;
	height: 1px;
	background: #2d73c6;
	position: absolute;
	top: 50%;
	right: 10px;
	transform: translateY(-50%);
	z-index: 10;
}

#question details summary span:after {
	content: "";
	color: #2d73c6;
	width: 1px;
	height: 15px;
	background: #2d73c6;
	position: absolute;
	top: 50%;
	right: 17px;
	transform: translateY(-50%);
	z-index: 10;
}

#question details[open] summary span:after {
	content: none;
}

#question details p {
	margin-left: 40px;
	position: relative;
	margin-top: 20px;
	padding-top: 20px;
	border-top: 1px solid #ececec;
}

#question details p:before {
	content: "A.";
	font-family: "Bebas Neue";
	font-weight: 400;
	font-size: 1.875rem;
	color: #2d73c6;
	position: absolute;
	top: 10px;
	left: -30px;
}

@media (max-width: 768px) {

	#question {
		background: #f3f2f7;
		padding: 60px 0;
		position: relative;
	}

	#question h2 {
		margin-bottom: 40px;
	}

	#question .inner {
		position: static;
	}

	#question details {
		width: 100%;
		padding: 20px 10px;
	}

}

/*------------------------------------------------------------
footer
------------------------------------------------------------*/
footer {
	padding: 40px 0 50px;
	background-color: rgba(0, 0, 0, 1);
	display: block;
	color: #fff;
}

footer .container {
	align-items: flex-start;
	margin-bottom: 30px;
}

.footer_item {
	display: flex;
	align-items: flex-start;
}

footer .container .footer_item:first-child {
	width: 200px;
	margin: 0 40px;
}

footer .container .footer_item:not(:first-child) {
	margin: 0 40px 0 0;
	width: calc((100% - 360px) / 2);
}

footer .container .footer_item.footer_item p {
	font-size: .75rem;
}

.logo-jpx {
	width: 45px;
	margin-right: 10px;
}

.logo-pmark {
	box-sizing: border-box;
	background: #fff;
	padding: 10px;
	width: 45px;
	margin-right: 10px;
}

ul.footer_link {
	display: flex;
	justify-content: center;
	margin-bottom: 10px;
}

ul.footer_link li {
	margin: 0 10px;
	font-size: .75rem;
}

ul.footer_link li a {
	color: #fff;
}

ul.footer_link li a:hover {
	text-decoration: underline;
}

footer p.copyright {
	font-size: .75rem;
	text-align: center;
}

@media (max-width: 768px) {

	footer {
		padding: 40px 30px;
	}

	footer .inner {
		padding: 0;
	}

	footer .container {
		flex-direction: column;
		margin-bottom: 40px;
	}

	footer .container .footer_item:first-child {
		width: 70%;
		margin: 0 auto 30px;
	}

	footer .container .footer_item:not(:first-child) {
		margin: 0 0 30px;
		width: 100%
	}

	footer .container .footer_item:last-of-type {
		margin: 0;
	}

}

/*------------------------------------------------------------
GoTop
------------------------------------------------------------*/
a.gotop {
	display: none;
	width: 40px;
	height: 40px;
	border-radius: 5px;
	background: #2d73c6;
	position: fixed;
	bottom: 20px;
	right: 20px;
	cursor: pointer;
	z-index: 100;
}

a.gotop:before {
	position: absolute;
	font-weight: 900;
	content: '▲';
	font-size: 13px;
	color: #fff;
	left: 50%;
	top: 50%;
	display: inline-block;
	transform: translateY(-50%) translateX(-50%);
}

a.gotop:hover {
	background-color: #fff;
}

a.gotop:hover:before {
	color: #2d73c6;
}

@media (max-width: 768px) {
	a.gotop {
		bottom: 10px;
		right: 10px;
	}
}