@charset "UTF-8";

/*========================================================================

  base

========================================================================*/

.pbPage {
	padding-top: 90px;
}

@media screen and (max-width: 1200px) {
	.pbPage {
		padding-top: 66px;
	}
}

/*========================================================================

  header

========================================================================*/

.header.group {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0 50px;
}
.header.group:after {
	content: '';
	position: absolute;
	z-index: 2;
	left: 50%;
	transform: translateX(-50%);
	top: 100%;
	width: 100%;
	height: 10px;
	background: linear-gradient(to bottom,  rgba(0,0,0,.08) 0%,rgba(0,0,0,0) 100%);
	transition: all .3s;
}
.header.group .inner {
	padding: 0;
}
.header.group .h_logo {
	width: auto;
}
.header.group .h_global {
	position: static;
	width: auto;
	border: none;
}
.header.group .h_global:after {
	display: none;
}
.header.group .h_global .global-inner {
	width: auto;
}
.header.group .h_global .global-inner a {
	display: flex;
	align-items: center;
	height: 90px;
}


@media screen and (max-width: 1200px) {
	.header.group {
		padding: 0 0 0 20px;
	}
	.header.group:after {
		height: 5px;
	}
	.header.group .inner {
		width: 100%;
		height: 66px;
	}
	.header.group .inner:after {
		display: none;
	}
	.header.group .h_logo img {
		height: auto;
	  	width: 300px;
	}
}

/*========================================================================

  footer

========================================================================*/

.footer.group {
	background: #fff;
	color: #333;
}
.footer.group .inner {
	padding: 50px 0;
	max-width: 1300px;
}
.footer.group .f_menu .com {
	width: 480px;
}
.footer.group .f_menu nav {
	width: 736px;
}
.footer.group .f_menu .box:first-child {
	width: 271px;
}
.footer.group .f_menu .box:last-child {
	width: 430px;
}
.footer.group .f_menu .title ul {
	display: flex;
	max-width: none;
	gap: 30px;
}
.footer.group .f_menu .title li:not(:first-child) {
	margin: 0;
}
.footer.group .f_menu .list ul{
	display: flex;
	flex-wrap: wrap;
	max-width: none;
	gap: 10px 20px;
}
.footer.group .f_menu .list li:not(:first-child) {
	margin: 0;
}
.footer.group a:before,
.footer.group .f_menu .list a:before {
	background: #333;
}
.footer.group .f_menu .list a:after {
	border-color: #333;
}
.footer.group .f_copy {
	border-color: #C7C7C7;
	justify-content: flex-end;
}

@media screen and (max-width: 767px) {
	.footer.group .inner {
		padding: 75px 0 20px;
	}
	.footer.group .f_menu .com {
		width: 100%;
	}
	.footer.group .f_menu nav {
		width: 100%;
	}
	.footer.group .f_menu .box:first-child {
		width: 100%;
	}
	.footer.group .f_menu .box:last-child {
		width: 100%;
	}
	.footer.group .f_menu .title ul {
		flex-wrap: wrap;
		gap: 15px 25px;
	}
	.footer.group .f_copy .copy {
		margin-top: 20px;
	}
  	.footer.group .honsha_link_PC {
        display: none;
	}
}

@media screen and (min-width: 768px) {
    .footer.group .honsha_link_SP {
        display: none;
    }
}


/*========================================================================

  main

========================================================================*/

[class^="p_group-"] {
	position: relative;
}
[class^="p_group-"] .inner {
	position: relative;
	max-width: 1000px;
	margin: auto;
}
.pbPage:not(.edit) [class^="p_group-"].u_animation .inner {
	opacity: 0;
}
.pbPage:not(.edit) [class^="p_group-"].u_animation.animation .inner {
	animation: fade-in .8s ease-in-out 0s forwards;
}
[class^="p_group-"] .textbox .title {
    font-size: 64px;
    font-family: Overpass, sans-serif;
    font-weight: 600;
    vertical-align: middle;
    line-height: 1.1;
}
[class^="p_group-"] .textbox .subtitle {
    font-size: 24px;
    font-weight: 500;
    line-height: 1.1;
}
.p_group-button {
	margin-top: 65px;
}
.p_group-button a {
	position: relative;
	z-index: 1;
	display: flex;
	align-items: center;
	width: 226px;
	height: 50px;
	padding-left: 16px;
	background: #02007C;
	border: 4px solid #02007c;
	color: #fff;
	text-decoration: none;
	border-radius: 30px;
	font-weight: 500;
}
.p_group-button span {
	display: ;
	position: absolute;
	z-index: -1;
	right: 0;
	width: 42px;
	height: 100%;
	background: #fff;
	border-radius: 30px;
	transition: all .3s;
}
.p_group-button span:before,
.p_group-button span:after {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	margin: auto;
	transition: all .3s;
}
.p_group-button span:before {
	left: 15px;
	width: 13px;
	height: 2px;
	background: #02007c;
}
.p_group-button span:after {
	left: 20px;
	width: 6px;
	height: 6px;
	border-top: 2px solid #02007c;
	border-right: 2px solid #02007c;
	transform: rotate(45deg);
}
@media (min-width: 768px) {
	.p_group-button a:hover {
		padding-left: 40px;
		color: #02007C;
	}
	.p_group-button a:hover span {
		width: 100%;
	}
}

@media screen and (max-width: 767px) {
	[class^="p_group-"] .textbox .title {
	    font-size: 48px;
	}
	[class^="p_group-"] .textbox .subtitle {
	    font-size: 20px;
	}
	.p_group-button {
		margin-top: 40px;
	}
}

/*  top-slider
========================================================================*/

.p_top-slider.group .textarea {
	top: 50%;
	width: calc(100% - 40px);
	max-width: 1140px;
	text-align: left;
  	color: #fff;
    background-color: rgba(0,0,0,.05);
}  
.p_top-slider.group .title {
	font-size: 38px;
	font-weight: 500;
	line-height: 1.5;
}
.p_top-slider.group .text {
	margin-top: 25px;
	font-size: 18px;
	font-weight: 500;
}
.p_top-slider.group .slick-dots li:only-child {
	display: none;
}

@media screen and (max-width: 767px) {
	.p_top-slider.group .title {
		font-size: 20px;
	}
	.p_top-slider.group .text {
		margin-top: 20px;
		font-size: 14px;
	}
}

/*  group-company
========================================================================*/

.p_group-company .inner {
    padding: 120px 0;
}
.p_group-company .column {
    display: flex;
    align-items: center;
    flex-direction: row-reverse;
}
.p_group-company .column .imagebox {
    width: 540px;
}
.p_group-company .column .textbox {
	flex: 1;
}

@media screen and (max-width: 767px) {
	.p_group-company .inner {
	    padding: 0;
	}
	.p_group-company .column {
		flex-flow: column;
	}
	.p_group-company .column .imagebox,
	.p_group-company .column .imagebox img{
	    width: 100%;
	}
	.p_group-company .column .textbox {
		width: calc(100% - 40px);
		margin: 40px auto;
	}
}

/*  group-results
========================================================================*/

.p_group-results {
	overflow: hidden;
	padding-top: 60px;
}
.p_group-results .inner {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 460px;
}
.p_group-results .inner:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100%;
	background: rgba(20,20,20,.08);
} 
.p_group-results .column {
	position: relative;
	width: 400px;
	margin-left: auto;
	padding-left: 80px;
}
.p_group-results .column .imagebox {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	right: 100%;
	width: 803px;
	margin-top: -60px;
}

@media screen and (max-width: 767px) {
	.p_group-results {
		padding-top: 0;
		background: rgba(20,20,20,.08);
	}
	.p_group-results .inner {
	    min-height: auto;
	}
	.p_group-results .inner:before {
		display: none;
	} 
	.p_group-results .column {
	    width: 100%;
	    padding-left: 0;
	}
	.p_group-results .column .imagebox {
	    position: static;
	    transform: translateY(0);
	    width: 100%;
	    margin-top: 0;
	}
	.p_group-results .column .textbox {
		width: calc(100% - 40px);
		margin: 40px auto;
	}
}

/*  group-results
========================================================================*/

.p_group-news > div {
	position: relative;
	width: calc(100% - 40px);
	max-width: 1000px;
	margin: auto;
	padding: 120px 0;
}
.pbPage:not(.edit) .p_group-news.u_animation > div {
	opacity: 0;
}
.pbPage:not(.edit) .p_group-news.u_animation.animation > div {
	animation: fade-in .8s ease-in-out 0s forwards;
}
.p_group-news .column .textbox {
	float: left;
	width: 226px;
}
.p_group-news .column .newsbox {
	float: right;
	width: 693px;
}
.p_group-news .column .p_group-button {
	float: left;
}

@media screen and (max-width: 767px) {
	.p_group-news > div {
		padding: 40px 0;
	}
	.p_group-news .column > div > div {
		float: none!important;
		width: 100%!important;
	}
	.p_group-news .column .textbox {
		margin-bottom: 30px;
	}
}

/*  group-banner
========================================================================*/

.p_group-banner:not(:first-child) {
	margin-top: 120px;
}
.p_group-banner > div {
	position: relative;
}
.p_group-banner .image.link {
	overflow: hidden!important;
}
.p_group-banner .image.link p {
	position: relative;
	display: block;
}
.p_group-banner .image.link p:before,
.p_group-banner .image.link a:before,
.p_group-banner .image.link a:after {
	content: '';
	position: absolute;
	z-index: 1;
	top: 0;
	bottom: 0;
	margin: auto;
	right: 65px;
	pointer-events: none;
}
.p_group-banner .image.link p:before {
	right: 50px;
	width: 42px;
	height: 42px;
	background: #fff;
	border-radius: 50%;
}
.p_group-banner .image.link a:before {
	width: 13px;
	height: 2px;
	background: #02007c;
}
.p_group-banner .image.link a:after {
	width: 6px;
	height: 6px;
	border-top: 2px solid #02007c;
	border-right: 2px solid #02007c;
	transform: rotate(45deg);
}
@media (min-width: 768px) {
	.p_group-banner .image.link a:hover img {
		transform: scale(1.1);
	}
}
.p_group-banner .textbox {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	width: 100%;
	width: calc(100% - 100px);
	color: #fff;
}
.p_group-banner-2c .textbox {
	position: absolute;
	top: 32%;
	left: 45%;
	transform: translate(-50%,-50%);
	width: 100%;
	width: calc(100% - 100px);
	color: #fff;
}
.pbPage:not(.edit) .p_group-banner .textbox {
	pointer-events: none;
}

@media screen and (max-width: 767px) {
	.p_group-banner:not(:first-child) {
		margin-top: 60px;
	}
	.p_group-banner .image img {
		width: 100%;
		height: 160px;
		object-fit: cover;
	}
	.p_group-banner .image.link p:before {
		right: 20px;
	}
	.p_group-banner .image.link a:before,
	.p_group-banner .image.link a:after {
		right: 35px;
	}
	.p_group-banner .textbox {
		width: calc(100% - 40px);
	}
}

/*  section
========================================================================*/

.c_section.group > div {
	padding: 80px 0;
}

@media screen and (max-width: 767px) {
	.c_section.group > div {
		padding-top: 40px;
	}
}

/*  carousel
========================================================================*/

.c_carousel.group > ul {
	width: calc(100% - 100px);
}
.c_carousel.group .slick-arrow {
	top: 40px;
	transform: none;
	background: #02007c;
	border: 2px solid #02007c;
	left: -50px;
}
.c_carousel.group .slick-next {
	left: auto;
	right: -50px;
}
.c_carousel.group .slick-arrow:before {
	width: 6px;
	height: 6px;
	border-width: 2px;
	border-color: #fff;
	left: 11px;
}
.c_carousel.group .slick-next:before {
	left: auto;
	right: 11px;
}
.c_carousel.group .slick-arrow:after {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	margin: auto;
	right: 0;
	left: 0;
	width: 13px;
	height: 2px;
	background: #fff;
	transition: all .3s;
}
@media (min-width: 768px) {
	.c_carousel.group .slick-arrow:hover {
		background: #fff;
	}
	.c_carousel.group .slick-arrow:hover:before {
		border-color: #02007c;
	}
	.c_carousel.group .slick-arrow:hover:after {
		background: #02007c;
	}
}
.c_carousel.group .slick-slide {
	margin: 0 10px;
}
.c_carousel.group li p {
	margin-top: 5px;
}
.c_carousel.group li a[target=_blank] p:after {
	content: '';
	position: relative;
	top: 1px;
	display: inline-block;
	width: 1em;
	height: 1em;
	margin-left: 5px;
	background: url(/assets/img/icon_window.png) no-repeat center top / contain;
}
.c_carousel.group .slick-dots {
	display: none!important;
}

@media screen and (max-width: 767px) {
	.c_carousel.group > ul {
		width: calc(100% - 50px);
	}
	.c_carousel.group .slick-arrow {
		width: 34px;
		height: 34px;
		left: -35px;
	}
	.c_carousel.group .slick-next {
		left: auto;
		right: -35px;
	}
	.c_carousel.group .slick-arrow:before {
		left: 9px;
	}
	.c_carousel.group .slick-next:before {
		left: auto;
		right: 9px;
	}
}

/*  group-contact
========================================================================*/

.p_group-contact a {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 200px;
	background: #02007C;
	color: #fff;
	text-decoration: none;
	border: 3px solid #02007C;
}
.p_group-contact a:before {
	display: none;
}
.p_group-contact .link {
	position: relative;
	display: flex;
	align-items: center;
	padding-right: 80px;
}
.p_group-contact .link:before,
.p_group-contact .link .title:before,
.p_group-contact .link .title:after {
	content: '';
	position: absolute;
	z-index: 1;
	top: 0;
	bottom: 0;
	margin: auto;
	right: 15px;
	pointer-events: none;
	transition: all .3s;
}
.p_group-contact .link:before {
	right: 0;
	width: 42px;
	height: 42px;
	background: #fff;
	border-radius: 50%;
}
.p_group-contact .link .title:before {
	width: 13px;
	height: 2px;
	background: #02007c;
}
.p_group-contact .link .title:after {
	width: 6px;
	height: 6px;
	border-top: 2px solid #02007c;
	border-right: 2px solid #02007c;
	transform: rotate(45deg);
}
@media (min-width: 768px) {
	.p_group-contact a:hover {
		background: #fff;
		color: #02007C;
	}
	.p_group-contact a:hover .link:before {
		background: #02007C;
		right: -15px
	}
	.p_group-contact a:hover .link .title:before {
		background: #fff;
		right: 0;
	}
	.p_group-contact a:hover .link .title:after {
		border-color: #fff;
		right: 0;
	}
}
.p_group-contact .link .title {
	font-size: 46px;
    font-family: Overpass, sans-serif;
    font-weight: 600;
}
.p_group-contact .link .text {
	margin-left: 15px;
	font-size: 17px;
	font-weight: 500;
}

@media screen and (max-width: 767px) {
	.p_group-contact a {
		justify-content: unset;
		height: 160px;
		padding: 20px;
		line-height: 1.1;
	}
	.p_group-contact .link {
		flex-flow: column;
		align-items: unset;
		width: 100%;
	}
	.p_group-contact .link .title {
		font-size: 48px;
	}
	.p_group-contact .link .text {
		margin-left: 0;
		font-size: 20px;
	}
}