@charset "UTF-8";

/* base
==================================*/
h1,
h2,
h3,
h4,
h5,
h6,
p,
pre,
blockquote,
ul,
li,
ol,
dl,
dd,
tr {
	font-size: 16px;
	line-height: 1.5;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	line-height: 1;
}


.sp {
	display: none !important;
}

a {
	color: #1D1D1D;
	text-decoration: none;
	transition: 0.3s;
}

a:visited {
	color: #1D1D1D;
}


a:active {
	color: #1D1D1D;
}



@media screen and (min-width: 960px) {
	a:hover {
		color: #1D1D1D;
		text-decoration: none;
	}
	
	a.tel {
		pointer-events: none;
		cursor: default;
	}
}

/* main
==================================*/
main {
	position: relative;
	display: block;
	/*IE対策*/
}

/*　Retina対応時のCSS↓　*/

/* button link
==================================*/
.button_link {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	text-decoration: none;
	border-radius: 50px;
}

.button_link.button_cont .text_inner {
	display: block;
	font-weight: 700;
	overflow: hidden;
	height: 24px;
}

.button_link.button_cont .text_inner .text {
	line-height: 1.5;
	display: block;
	transition-property: transform;
	transition-duration: .5s;
	transition-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
}

.button_link .link_icon {
	display: block;
	position: relative;
	border-radius: 50%;
	width: 26px;
	height: 26px;
	margin-left: 15px;
}

.button_link.button_cont {
	color: #fff;
	display: inline-flex;
	align-items: center;
	position: relative;
	padding:0 0 2px 0;
}

.button_link.button_cont .link_icon {
	position: absolute;
	right: 30px;
	top: 50%;
	transform: translateY(-50%);
	z-index: 2;
}

.button_link.button_cont.yellow {
	background: #f4a323;
}

.button_link.button_cont.gray {
	background: #484848;
}

.button_link.button_cont.red {
	background: #e61f1e;
}

.button_link.yellow .link_icon {
	background: #f4a323;
}

.button_link.gray .link_icon {
	background: #484848;
}

.button_link.red .link_icon {
	background: #e61f1e;
}

.button_link .link_icon::before {
	content: "";
	display: block;
	width: 25px;
	height: 25px;
	position: absolute;
	top: 50%;
	left: 50%;
	background: #fff;
	border-radius: 50%;
	transform: translate(-50%,-50%) scale(0.28);
	transition-property: transform, opacity;
	transition-duration: .5s;
	transition-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
}

.button_link .link_icon .icon_arrow {
	display: block;
	width: 12px;
	height: 13px;
	position: absolute;
	left: 50%;
	top: 50%;
	z-index: 2;
	opacity: 0;
	transform: translate(-100%, -50%) scale(0.5);
	transition-property: transform, opacity;
	transition-duration: .5s;
	transition-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
}

.button_link .link_icon .icon_arrow::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	z-index: 2;
	width: 12px;
	height: 13px;
	background: url('../images/common/icon_arrow_gray.svg') no-repeat;
	background-size: cover;
}

@media screen and (min-width: 960px) {
	.button_link.button_cont:hover .text_inner .text {
		transform: translateY(-101%);
	}
	
	.button_link:hover .link_icon::before {
		transform: translate(-50%, -50%) scale(1);
	}
	
	.button_link:hover .link_icon .icon_arrow {
		opacity: 1;
		transform: translate(-50%, -50%) scale(1);
	}
}

@media screen and (max-width: 800px){
	.button_link.button_cont .text_inner {
		height: auto;
	}
	
	.button_link.button_cont .text_inner .text:last-child {
		display: none;
	}
	
	.button_link .link_icon .icon_arrow {
	    display: none;
	}
	
	.button_link .link_icon {
	    width: 7px;
	    height: 7px;
	    margin-left: 0;
	}
	
	.button_link .link_icon::before {
	    width: 7px;
	    height: 7px;
	    transform: translate(-50%, -50%) scale(1);
	}
	
}
/* header
==================================*/
header {
	position: fixed;
	top: 35px;
	left: 0;
	right: 0;
	z-index: 999;
	padding: 0 10px;
	
	width: 100%;
	/* opacity: 0; */
	/* top: -100px; */
}

header .header_inner {
	max-width: 1400px;
	width: 100%;
	margin: 0 auto;
	height: 70px;
	transition: all .3s ease;
	padding: 0 35px;
	position: relative;
	z-index: 2;
}

header .header_inner:before {
	position: absolute;
	z-index: -1;
	width: 100%;
	height: 100%;
	backdrop-filter:blur(5px);
  	-webkit-backdrop-filter:blur(5px);
	background: rgba(255, 255, 255, .82);
	transition: all .3s ease;
	box-shadow: 0 1.5px 12px rgb(0, 0, 0 , .11);
	left: 0;
	top: 0;
	border-radius: 38px;
	opacity: 0;
	visibility: hidden;
	content: '';
}


header.scroll .header_inner:before {
	opacity: 1;
	visibility: visible;
	transition: all .3s ease;
}

header .logo {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
}

header .logo.is_logo {
	width: 128.5px;
	margin-right: 10px;
}

header .logo.logo_white {
	width: 128.5px;
margin-right: 10px;
}

header .logo a {
	display: block;
}

header .logo a img {
	width: 100%;
}

header .logo.is_logo {
	/* display: none; */
	opacity: 0;
	transition: opacity .5s ease;
	pointer-events: none;
}

header .logo.logo_white {
	/* display: block; */
	opacity: 1;
	transition: opacity .5s ease;
}

header.scroll .logo.is_logo {
	display: block;
	opacity: 1;
	transition: opacity .5s ease;
	pointer-events: initial;
}

header.scroll .logo.logo_white {
	/* display: none; */
	opacity: 0;
	transition: opacity .5s ease;
	pointer-events: none;
	
}

header .header_box {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: flex-end;
	position: relative;
}

header #menu-open {
	cursor: pointer;
	width: 48px;
	height: 48px;
	border-radius: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	background: #fff;
	line-height: 1;
	position: fixed;
	top: 17.5px;
	right: 15px;
	z-index: 1000;
	background: #fff;
	box-shadow: 1px 1px 12px rgb(0, 0, 0 , .11);
	display: none;
}

header #menu-open span {
	width: 17px;
	height: 2px;
	background: #1D1D1D;
	border-radius: 1px;
	display: block;
	transition: .5s ease;
}

header #menu-open span + span {
	margin-top: 5px;
}

header #menu-open > div {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	height: 100%;
}
header #menu-open.is_active span:nth-child(1) {
	transform: translateY(7px) rotate(45deg);
}

header #menu-open.is_active span:nth-child(2) {
	opacity: 0;
}

header #menu-open.is_active span:nth-child(3) {
	transform: translateY(-7px) rotate(-45deg);
}

/* nav
==================================*/
#g_navi {
	width: calc(100% - 138.5px);
	display: flex;
	justify-content: flex-end;
}

#g_navi .navi_menu > li {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	height: 70px;
}

#g_navi .navi_menu > li.pc {
	display: flex !important;
}

#g_navi > .g_navi_inner > .navi_menu > li > a {
	padding: 0 22px;
	font-size: 15px;
	font-weight: 500;
	line-height: 1;
	color: #fff;
}

header.scroll #g_navi > .g_navi_inner > .navi_menu > li > a {
	color: #1D1D1D;
}

#g_navi .navi_menu {
	display: flex;
}

#g_navi .navi_menu .sub_menu {
	display: flex;
	position: fixed;
	width: 100%;
	left: 0;
	top: 0;
	z-index: -1;
	padding: 0 70px;
	pointer-events: none;
	visibility: hidden;
	height: 0;
}

#g_navi .sub_overlay {
	position: fixed;
	left: 0;
	top: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0 , .5);
	pointer-events: none;
	transition-duration: 800ms;
	transition-timing-function: ease-out;
	opacity: 0;
}

#g_navi .sub_menu_box {
	position: absolute;
	top: 105px;
	left: 50%;
	z-index: 1;
	max-width: calc(100% - 136px);
	width: 100%;
	opacity: 0;
	transform: translate(-50%, -10px);
	transition-duration: 800ms;
	transition-timing-function: ease-out;
}

#g_navi .sub_menu_inner {
	background: #fff;
	min-height: 386.5px;
	border-radius: 20px;
	padding: 72px 80px 66px;
}
	
header.scroll #g_navi .sub_menu_box {
	padding-top: 20px;
}

header #g_navi .has_child > a {
	position: relative;
}

header.scroll #g_navi > .g_navi_inner > .navi_menu > li.has_child > a:hover {
	color: #fff;
}

#g_navi .sub_button {
	display: none;
}

header #g_navi .has_child > a::before,
header #g_navi .has_child > a::after {
	width: 8px;
	height: 1px;
	background: #fff;
	position: absolute;
	right: 10px;
	top: 50%;
	z-index: 2;
	content: '';
	transition: transform .5s ease;
	transform: translateY(-50%);
	margin-top: 1px;
}

header.scroll #g_navi .has_child > a::before,
header.scroll #g_navi .has_child > a::after {
	background: #000;
}

header #g_navi .has_child > a::after {
	transform: translateY(-50%) rotate(90deg);
}

#g_navi .sub_menu_list {
	display: grid;
	grid-template-columns: repeat(4,1fr);
	gap: 25px;
}

#g_navi .sub_menu_list a {
	text-align: center;
}

#g_navi .sub_menu_title {
	margin-bottom: 45px;
}

#g_navi .sub_menu_title a {
	font-size: 32px;
	letter-spacing: 0.08em;
	line-height: 1.68;
	font-weight: 700;
}

#g_navi .sub_menu_title .button_link .link_icon::before {
	width: 20px;
	height: 20px;
}

#g_navi .sub_menu_title .button_link .link_icon .icon_arrow {
	width: 9px;
	height: 9px;
}

#g_navi .sub_menu_title .button_link .link_icon .icon_arrow::before {
	width: 9px;
	height: 9px;
}

#g_navi .sub_menu_list a .image {
	width: 100%;
	position: relative;
	padding-top: 48.54%;
	border-radius: 30px;
	overflow: hidden;
	z-index: 1;
}

#g_navi .sub_menu_list a .image img {
	position: absolute;
	left: 0;
	top: 0;
	z-index: 1;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .3s ease;
}

#g_navi .sub_menu_list a .link {
	margin-top: 15px;
	font-size: 23px;
	line-height: 1.16;
	letter-spacing: 0.08em;
	font-weight: 700;
}

#g_navi .sub_menu_links {
	display: flex;
	justify-content: center;
	margin-top: 50px;
}

#g_navi .sub_menu_links .button_link .text_inner {
	height: 35.19px;
}

#g_navi .sub_menu_links .button_link .text_inner .text {
	font-size: 22px;
	line-height: 1.6;
}

#g_navi .sub_menu_links .button_link {
	max-width: 405px;
	width: 100%;
	height: 80px;
	justify-content: center;
}

#g_navi .sub_menu_links .button_link+.button_link {
	margin-left: 37px;
}

@media screen and (min-width: 960px) {
	
	#g_navi > .g_navi_inner > .navi_menu > li:hover > a:not(.here) .text {
		transform: translateY(-100%);
	}
	
	#g_navi > .g_navi_inner > .navi_menu > li:hover > a:not(.here) .text:first-child {
		opacity: 0;
	}
	
	#g_navi > .g_navi_inner > .navi_menu > li:hover > a:not(.here) .text:last-child {
		opacity: 1;
	}
	
	
	#g_navi .sub_menu_list a:hover .image img {
		transform: scale(1.1);
		transition: transform .3s ease;
	}
}

@media screen and (min-width: 801px) {
	#g_navi > .g_navi_inner > .navi_menu > li > a {
		overflow: hidden;
		display: block;
		height: 15px;
		transition-property: background-size, color;
		transition-duration: .5s;
		transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
	}

    #g_navi > .g_navi_inner > .navi_menu > li > a .text {
        display: block;
        transition-property: transform, opacity;
        transition-duration: .5s;
        transition-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
        transition-delay: 0s, .1s;
    }
	
	#g_navi .sub_menu_list .job-link {
		display: none;
	}
}

@media screen and (min-width: 800px) {
	/* #g_navi .has_child:hover , */
	#g_navi .has_child.active {
		position: relative;
		z-index: 100;
	}
	
	/* #g_navi .has_child:hover > a, */
	#g_navi .has_child.active > a {
		position: relative;
		z-index: 200;
		transition: all .5s ease;
		color: #fff;
		/* pointer-events: none; */
	}
	
	/* header #g_navi .has_child:hover > a::after , */
	header #g_navi .has_child.active > a::after {
		transform: translateY(-50%) rotate(0);
		transition: transform .5s ease;
	}
	
	/* #g_navi .has_child:hover .sub_menu , */
	#g_navi .has_child.active .sub_menu {
		pointer-events: inherit;
		visibility: visible;
		height: auto;
		transition-delay: 0ms;
	}
	
	/* #g_navi .has_child:hover .sub_menu_box , */
	#g_navi .has_child.active .sub_menu_box {
		opacity: 1;
		transform: translate(-50%, 0px);
	}
	
	/* #g_navi .has_child:hover .sub_overlay , */
	#g_navi .has_child.active .sub_overlay {
		opacity: 1;
	}


	
	header.scroll #g_navi > .g_navi_inner > .navi_menu > li.has_child:hover > a .text {
		color: #fff;
	}
	
	header.scroll #g_navi > .g_navi_inner > .navi_menu > li.has_child:hover > a::before,
	header.scroll #g_navi > .g_navi_inner > .navi_menu > li.has_child:hover > a::after {
		background: #fff;
	}
}

@media screen and (max-width: 1400px) {
	#g_navi .sub_menu_title a {
		font-size: 28px;
	}
	
	#g_navi .sub_menu_list a .link {
		font-size: 18px;
	}
}

@media screen and (max-width: 1150px) {
	
	#g_navi .sub_menu_list a .link {
		font-size: 16px;
	}
	
	#g_navi .sub_menu_inner {
	    padding: 75px 30px 50px;
	}
	
	#g_navi .sub_menu_list {
	    gap: 17px;
	}
}

@media screen and (max-width: 950px) {
	header .logo.is_logo {
		width: 140px;
	}
	
	header .logo.logo_white {
		width: 140px;
	}
	
	#g_navi > .g_navi_inner > .navi_menu > li > a {
		padding: 0 13px;
		font-size: 14px;
	}
	
	header #g_navi .has_child > a::before, header #g_navi .has_child > a::after {
		right: 5px;
	}
	
	#g_navi .sub_menu_list a .link {
		font-size: 14px;
	}
	
	#g_navi .sub_menu_box {
	    max-width: calc(100% - 50px);
	}
}

@media screen and (max-width: 800px) {
	header {
		position: fixed;
		padding: 0;
		top: 0;
	}
	
	header .header_inner {
		background: transparent;
		margin: 0 auto;
		height: auto;
		border-radius: 0;
		padding: 0;
	}
	
	header.scroll  .header_inner {
		background: transparent;
		box-shadow: unset;
	}
	
	header .logo {
		position: fixed;
		left: 16px;
		top: 25px;
		z-index: 1000;
		width: 90px;
		transform: translateY(0);
		margin-right: 0;
	}
	
	header .logo.logo_white {
		width: 90px;
	}
	
	header .logo a {
		display: block;
	}
	
	header .logo a img {
		width: 100%;
	}
	
	header .logo.is_logo {
		/* display: none; */
		display: block;
		opacity: 0;
		transition: opacity .5s ease;
		pointer-events: none;
		width: 118px;
	}
	
	header .logo.logo_white {
		/* display: block; */
		display: block;
		transition: opacity .5s ease;
		opacity: 1;
	}
	
	header.scroll .logo.is_logo {
		/* display: block; */
		display: block;
		opacity: 1;
		transition: opacity .5s ease;
		pointer-events: initial;
	}
	
	header.scroll .logo.logo_white {
		/* display: none; */
		pointer-events: none;
		display: block;
		opacity: 0;
		transition: opacity .5s ease;
	}
	
	header.is_show .logo.logo_white,
	header.scroll.is_show .logo.logo_white {
		/* display: block; */
		display: block;
		transition: opacity .5s ease;
		opacity: 1;
	}
	
	header.is_show .logo.is_logo,
	header.scroll.is_show .logo.is_logo {
		/* display: none; */
		display: block;
		opacity: 0;
		transition: opacity .2s;
	}
	
	header .header_box {
		width: 100%;
		height: 100%;
		display: flex;
		align-items: center;
		justify-content: space-between;
	}
	
	header #menu-open {
		display: block;
	}
	
	/* nav
	==================================*/
	
	#g_navi {
		position: fixed;
		left: 0;
		top: 0;
		z-index: 100;
		width: 100%;
		height: 100vh;
		display: none;
		/* transform: translateY(-100%); */
		overflow-y: hidden;
		-webkit-overflow-scrolling: touch;
		/* transition: 0.8s all ease; */
		padding: 78px 12.5px;
	}
	
	#g_navi.is_open {
		/* transform: translateY(0); */
	}
	
	.navi_overlay {
		position: fixed;
		left: 0;
		top: 0;
		z-index: -1;
		width: 100%;
		height: 100%;
		background: rgba(0,0,0,.5);
		text-indent: -9999rem;
	}
	
	#g_navi > .g_navi_inner {
		height: 100%;
		border-radius: 20px;
		background: #fff;
		padding: 32px 25px 45px;
		overflow-y: scroll;
	}
	
	#g_navi .navi_menu > li {
		position: relative;
		border-bottom: 1px solid #C9C9C9;
		height: auto;
		display: block;
	}

	#g_navi .navi_menu > li.pc {
		display: none !important;
	}
	
	#g_navi > .g_navi_inner > .navi_menu > li.has_child > a {
		pointer-events: none;
	}
	

	#g_navi > .g_navi_inner > .navi_menu > li > a {
		padding: 15px 10px;
		font-size: 16px;
		letter-spacing: 0.1em;
		color: #1D1D1D;
		display: block;
		position: relative;
	}
	
	#g_navi .navi_menu {
		display: block;
	}
	
	#g_navi .navi_menu .sub_menu {
		display: block;
		position: static;
		width: 100%;
		height: auto;
		left: 0;
		top: 0;
		z-index: 3;
		padding: 0 0 10px 1.7em;
		pointer-events: all;
		visibility: visible;
		opacity: 1;
		display: none;
		box-shadow: none;
		transition: unset;
	}
	
	#g_navi .sub_overlay {
		display: none;
	}
	
	#g_navi .sub_menu_box {
		background: transparent;
		position: static;
		top: auto;
		left: auto;
		transform: translateX(0) !important;
		margin-top: 0;
		z-index: 1;
		width: 100%;
		min-height: unset;
		border-radius: 0;
		padding: 0;
		opacity: 1;
		transition: unset;
	}
	
	#g_navi .sub_menu_inner {
		padding: 0;
		min-height: unset;
		border-radius: 0;
	}
	
	header.scroll #g_navi .sub_menu_box {
	    padding-top: 0;
	}
	
	header #g_navi .has_child > a {
		position: relative;
	}
	
	header.scroll #g_navi > .g_navi_inner > .navi_menu > li.has_child > a:hover {
		color: #fff;
	}
	
	#g_navi .sub_button {
		display: block;
		position: absolute;
		right: 0;
		top: 2px;
		z-index: 3;
		width: 100%;
		height: 40px;
	}
	
	#g_navi .sub_button:before,
	#g_navi .sub_button:after {
		width: 15px;
		height: 1px;
		background: #1D1D1D;
		position: absolute;
		right: 11px;
		top: 50%;
		margin-top: -.5px;
		z-index: 2;
		content: '';
		transition: transform .5s;
	}
	
	#g_navi .sub_button:after {
		transform: rotate(90deg);
	}
	
	#g_navi .sub_button.is_active:after {
		transform: rotate(0);
	}
	
	header #g_navi .has_child > a::before,
	header #g_navi .has_child > a::after {
		content: unset;
	}
	
	header.scroll #g_navi .has_child > a::before,
	header.scroll #g_navi .has_child > a::after {
		background: #1D1D1D;
	}
	
	header #g_navi .has_child > a::after {
		transform: translateY(-50%) rotate(90deg);
	}
	
	#g_navi .sub_menu_list {
		display: block;
	}
	
	#g_navi .sub_menu_list a {
		text-align: left;
	}
	
	#g_navi .sub_menu_title {
		margin-bottom: 0;
	}
	
	#g_navi .sub_menu_title a {
		font-size: 16px;
		letter-spacing: 0.06em;
		line-height: 2.6;
		font-weight: 500;
	}
	
	#g_navi .sub_menu_title a .link_icon {
		display: none;
	}
	
	#g_navi .sub_menu_list a .image {
		display: none;
	}
	
	#g_navi .sub_menu_list a .link {
		margin-top: 0;
		font-size: 16px;
		letter-spacing: 0.06em;
		line-height: 2.6;
		font-weight: 500;
	}
	
	#g_navi .sub_menu_links {
		display: none;
		justify-content: center;
		margin-top: 50px;
	}
	
	#g_navi > .g_navi_inner > .navi_menu > li > a .text:last-child {
		display: none;
	}
	
	.header_contact_wrap {
		margin-top: 30px;
	}
	
	.header_contact_wrap .header_item {
		display: block;
		max-width: unset;
		width: 100%;
		border-radius: 35px;
		margin: 0 auto;
	}
	
	.header_contact_wrap .header_item+.header_item {
		margin-top: 15px;
	}
	
	.header_contact_wrap .header_item a {
		width: 100%;
		height: 70px;
		display: flex;
		justify-content: center;
		align-items: center;
	}
	
	.header_contact_wrap .header_item a .mail_title,
	.header_contact_wrap .header_item a .tel_title {
		display: inline-flex;
		align-items: center;
	}
	
	.header_contact_wrap .header_item.tel a .tel_title::before {
		content: '';
		background: url('../images/common/icon_tel.svg') no-repeat center;
		width: 23px;
		height: 25.5px;
		background-size: 100% auto;
		margin-right: 11px;
	}
	
	.header_contact_wrap .header_item.mail a .mail_title::before {
		content: '';
		background: url('../images/common/icon_mail.svg') no-repeat center;
		width: 26px;
		height: 21px;
		background-size: 100% auto;
		margin-right: 6px;
	}
	
	.header_contact_wrap .header_item.tel a {
		font-size: 24px;
		font-weight: 700;
		letter-spacing: 0.08em;
	}
	
	.header_contact_wrap .header_item.tel a .text_inner {
		line-height: 1.5;
		height: auto;
	}
	
	.header_contact_wrap .header_item.mail a .text_inner {
		font-size: 17px;
		letter-spacing: 0.06em;
		font-weight: 700;
		line-height: 1.5;
		height: auto;
	}
	
	.header_contact_wrap .button_link.button_cont .link_icon {
	    right: 27px;
	}
	
	.header_contact_wrap .header_item.tel  .link_icon {
	   /* display: none; */
	}
}
/* pageTop
==================================*/

/*#pageTop {
	opacity: 0;
	position: fixed;
	right: 0;
	bottom: 0;
	z-index: 888;
	transition: 0.3s;
}

#pageTop.active {
	opacity: 1;
}

#pageTop a {
	display: block;
	width: 50px;
}

#pageTop a:hover {
	opacity: 0.7;
}*/

#pageTop a {
	display: block;
	width: 63px;
}

#pageTop a:hover {
	opacity: 0.7;
}

@media (max-width: 800px) {
	#pageTop {
		opacity: 0;
		position: fixed;
		right: 20px;
		bottom: 37px;
		z-index: 888;
		transition: 0.3s;
	}

	#pageTop.active {
		opacity: 1;
	}

	#pageTop a {
		display: block;
		width: 50px;
	}

	#pageTop a:hover {
		opacity: 1;
	}
}

/* loader
==================================*/
#loader {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: #fff;
	z-index: 1001;
}

/* Animation
==================================*/
.c-anim-up {
	transform: translate(0, 30px);
	opacity: 0;
	transition: 0.5s ease;
}

.move {
	transform: translate(0, 0);
	opacity: 1;
}

.delay1 {
	-moz-transition-delay: 300ms;
	-webkit-transition-delay: 300ms;
	-o-transition-delay: 300ms;
	-ms-transition-delay: 300ms;
}

.delay2 {
	-moz-transition-delay: 600ms;
	-webkit-transition-delay: 600ms;
	-o-transition-delay: 600ms;
	-ms-transition-delay: 600ms;
}

.delay3 {
	-moz-transition-delay: 900ms;
	-webkit-transition-delay: 900ms;
	-o-transition-delay: 900ms;
	-ms-transition-delay: 900ms;
}

.delay4 {
	-moz-transition-delay: 1245ms;
	-webkit-transition-delay: 1245ms;
	-o-transition-delay: 1245ms;
	-ms-transition-delay: 1245ms;
}

.delay5 {
	-moz-transition-delay: 1500ms;
	-webkit-transition-delay: 1500ms;
	-o-transition-delay: 1500ms;
	-ms-transition-delay: 1500ms;
}

.delay6 {
	-moz-transition-delay: 1800ms;
	-webkit-transition-delay: 1800ms;
	-o-transition-delay: 1800ms;
	-ms-transition-delay: 1800ms;
}

.delay7 {
	-moz-transition-delay: 2100ms;
	-webkit-transition-delay: 2100ms;
	-o-transition-delay: 2100ms;
	-ms-transition-delay: 2100ms;
}

/*==================================
  Component
==================================*/
html {
	overflow: auto;
}



img {
	max-width: 100%;
	height: auto;
}

img[src$=".png"],
img[src$=".jpg"] {
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

.container {
	max-width: 1340px;
	margin-left: auto;
	margin-right: auto;
	padding-left: 50px;
	padding-right: 50px;
	box-sizing: border-box;
}

@media (max-width: 1000px) {
	.container {
		padding-left: 30px;
		padding-right: 30px;
	}
}

@media (max-width: 800px) {
	.container {
		padding-left: 20px;
		padding-right: 20px;
	}
	
	html.no_move {
		overflow: hidden;
	}
}

.row {
	display: flex;
	flex-wrap: wrap;
	box-sizing: border-box;
}

.row .col {
	position: relative;
	width: 100%;
	min-height: 1px;
	box-sizing: border-box;
}

.row .col.col_4 {
	flex: 0 0 33.3333%;
	max-width: 33.3333%;
}

/*==================================
	NEWS リスト系
==================================*/
.news_wrap {
	display: flex;
    justify-content: space-between;
    align-items: flex-start;
	position: relative;
}

.wrap_side {
	position: sticky;
	top: 145px;
	z-index: 10;
}

.news_wrap .news_side {
	margin-right: 10px;
	width: 344px;
}

.news_side li+li {
	margin-top: 15px;
}

.wrap_cate li a {
	font-size: 15px;
	line-height: 1.8;
	font-weight: 700;
	padding-left: 25px;
	position: relative;
	transition: transform .5s ease;
	white-space: nowrap;
	word-break: keep-all;
}

.wrap_cate li+li {
	margin-top: 12px;
}

.wrap_cate li a span {
	display: inline-block;
	transition: transform .5s ease-out;
}

.wrap_cate li a::before {
	content: '';
	position: absolute;
	left: 0;
	top: 7px;
	z-index: 3;
	width: 10px;
	height: 10px;
	border-radius: 100%;
	background: #484848;
	transition: transform .5s ease;
	transform: scale(0.7);
}

.wrap_cate li.is_active a::before {
	background: #E61F1E;
	/* width: 10px;
	height: 10px; */
	transform: scale(1);
}

.news_main {
	width: calc(100% - 354px);
}



/* NEWS DETAIL */
.news_detail {
	padding-bottom: 177px;
}

.news_detail_head {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	padding-bottom: 28.5px;
	border-bottom: 1px solid #E2E2E2;
	margin-bottom: 50px;
}

.news_detail_head .date {
	font-size: 16px;
	line-height: 1;
	margin-right: 22px;
	display: inline-block;
}

.news_detail_head .cate {
	font-size: 14px;
	font-weight: 500;
	letter-spacing: 0.03em;
	color: #fff;
	min-width: 90px;
	min-height: 29px;
	background: #318BCB;
	border-radius: 15px;
	margin-right: 51px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.news_detail_head .title {
	margin-top: 18px;
	width: 100%;
	font-size: 24px;
	font-weight: 700;
	letter-spacing: 0.06em;
	line-height: 1.5;
	word-break: break-all;
}

.news_detail {
	word-break: break-all;
}

.news_detail p {
	font-size: 16px;
	font-weight: 500;
	letter-spacing: 0.06em;
	line-height: 2.3;
	word-break: break-all;
}

.news_detail .block_image {
	margin-top: 47px;
	max-width: 616px;
	width: 100%;
}

.news_detail .block_image img {
	width: 100%;
}

@media (min-width: 960px) {
	.wrap_cate li a:hover::before {
		background: #E61F1E;
		transform: scale(1);
		transition: transform .5s ease;
	}
	
	.wrap_cate li a:hover span {
		transform: translateX(10px);
		transition: transform .5s ease-out;
	}
	
}


@media screen and (max-width: 1400px) {
	.news_wrap .news_side {
		width: 280px;
	}
	
	.news_wrap .news_main {
		width: calc(100% - 290px);
	}
}

@media screen and (max-width: 1050px) {
	.news_wrap .news_side {
		width: 200px;
	}
	
	.news_wrap .news_main {
		width: calc(100% - 210px);
	}
	
}

@media screen and (max-width: 900px) {
	.news_wrap .news_side {
		width: 190px;
	}
	
	.news_wrap .news_main {
		width: calc(100% - 200px);
	}
}

@media (max-width: 800px) {
	.news_wrap {
		display: flex;
		flex-direction: column;
		justify-content: flex-start;
	}
	
	.news_wrap .news_side {
		position: sticky;
		top: 90px;
		z-index: 10;
		width: 100%;
	}
	
	.news_wrap .news_side .news_cate ul {
		display: none;
	}
	
	.news_cate .select_box option,
	.news_cate .select_box .title {
		font-size: 14px;
		letter-spacing: 0.06em;
		line-height: 1.42;
	}
	
	.news_cate .select_box {
		width: 100%;
		height: 45px;
		display: flex;
		align-items: center;
		background: #F5F5F5;
		border-radius: 22.5px;
		position: relative;
	}
	
	.news_cate .select_box::after {
		content: '';
		position: absolute;
		right: 24px;
		top: 0;
		z-index: 2;
		width: 11px;
		height: 100%;
		background: url('../images/common/icon_select.svg') no-repeat center;
		background-size: 100% auto;
		pointer-events: none;
	}
	
	.news_cate .select_box select {
		border: none;
		background: #F5F5F5;
		width: 100%;
		height: 45px;
		border-radius: 22.5px;
		position: absolute;
		left: 0;
		top: 0;
		z-index: 2;
		padding: 0 50px 0 20px;
		appearance: none;
		outline: none;
		color: #1d1d1d;
		font-weight: 500;
	}
	
	/* .news_cate .select_box select option {
		background: #318BCB;
		color: #fff;
	} */
	
	.news_wrap .news_main {
		width: 100%;
		margin-top: 35px;
	}
	
	.news_wrap .news_list li+li {
		margin-top: 0;
	}
	
	.news_wrap .news_list a {
		display: block;
		padding: 22px 0;
		border-top: 1px solid #E2E2E2;
	}
	
	.news_wrap .news_list li:first-child a {
		padding-top: 0;
	}
	
	.news_wrap .news_list li:first-child a {
		border-top: none;
	}
	
	
	/* NEWS DETAIL */
	.news_detail {
		padding-bottom: 130px;
	}
	
	.news_detail_head {
		align-items: center;
		padding-bottom: 19px;
		margin-bottom: 29px;
	}
	
	.news_detail_head .date {
		margin-right: 14px;
	}
	
	.news_detail_head .cate {
		font-size: 12px;
		min-width: 78px;
		min-height: 25px;
		margin-right: 1px;
		padding-bottom: 2px;
	}
	
	.news_detail_head .title {
		margin-top: 13px;
		font-size: 20px;
	}
	
	.news_detail p {
		line-height: 1.8;
	}
	
	.news_detail .block_image {
		margin-top: 28px;
		width: 100%;
	}
	
	
}

/*==================================
	ページナビ
==================================*/
.page_navigation .wp-pagenavi {
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 112px 0 173px;
}

.page_navigation .wp-pagenavi .page-numbers {
	font-size: 17px;
	font-weight: 500;
	line-height: 1.2;
	color: #D6D6D6;
	margin: 0 24px;
	font-family: "Outfit", sans-serif;
	display: inline-block;
	transition: all .3s ease;
}

.page_navigation .wp-pagenavi .nav-links{
	position: relative;
}

.page_navigation .wp-pagenavi .page-numbers.prev,
.page_navigation .wp-pagenavi .page-numbers.next {
	width: 20px;
	height: 20px;
	font-family: YakuHanJP_Noto, "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
	color: transparent;
	font-size: 0;
	line-height: 0;
	position: absolute;
	top: 0;
	z-index: 3;
	text-indent: 9999px;
}

.page_navigation .wp-pagenavi .page-numbers.prev {
	left: -76px;
	margin: 0;
}

.page_navigation .wp-pagenavi .page-numbers.next {
	margin: 0;
	right: -76px;
}

.page_navigation .wp-pagenavi .page-numbers.prev::before {
	left: 0;
}

.page_navigation .wp-pagenavi .page-numbers.next::before {
	right: 0;
}

.page_navigation .wp-pagenavi .page-numbers.prev::after,
.page_navigation .wp-pagenavi .page-numbers.next::after {
	content: '';
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 12.5px;
	height: 14px;
	transition: .5s ease;
}

.page_navigation .wp-pagenavi .page-numbers.prev::after {
	left: 0px;
	background: url('../images/news/icon_prev.svg')  left no-repeat;
	background-size: cover;
}

.page_navigation .wp-pagenavi .page-numbers.next::after {
	right: 0px;
	background: url('../images/news/icon_next.svg') right no-repeat;
	background-size: cover;
}


.page_navigation .wp-pagenavi .page-numbers.dots {
	position: relative;
	color: #D6D6D6;
}

.page_navigation .wp-pagenavi > .page,
.page_navigation .wp-pagenavi .current {
	font-size: 17px;
	font-weight: 500;
	line-height: 1.2;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 100%;
	box-sizing: border-box;
	margin: 0 24px;
	text-decoration: underline;
	color: #1D1D1D;
}

.page_navigation .wp-pagenavi .dots {
	margin: 0;
}

@media screen and (min-width: 960px) {
	.page_navigation .wp-pagenavi .page-numbers.prev:hover {
		transform: translateX(-10px);
	}
	
	.page_navigation .wp-pagenavi .page-numbers.next:hover {
		transform: translateX(10px);
	}
	
	.page_navigation .wp-pagenavi .page-numbers:hover {
		color: #1D1D1D;
		transition: all .3s ease;
	}
}

@media screen and (max-width: 800px) {
	.page_navigation .wp-pagenavi {
		margin: 0;
		padding: 40px 0 145px;
	}
	
	.page_navigation .wp-pagenavi .page-numbers {
		font-size: 17px;
		margin: 0 16px;
	}
	
	.page_navigation .wp-pagenavi .page-numbers.prev {
		left: -45px;
	}
	
	.page_navigation .wp-pagenavi .page-numbers.next {
		right: -45px;
	}
	
	.page_navigation .wp-pagenavi > .page,
	.page_navigation .wp-pagenavi .current {
		margin: 0 16px;
	}
}
/*==================================
  News
==================================*/
#News main#Blog .pager_wrap {
	max-width: 560px;
	margin: 80px auto 0;
}

#News main#Blog .pager_wrap ul {
	position: relative;
}

#News main#Blog .pager_wrap ul li a:hover {
	opacity: 0.7;
}

#News main#Blog .pager_wrap ul .list a {
	font-weight: 500;
	display: block;
	width: 210px;
	color: #002344;
	border: 2px solid #002344;
	letter-spacing: 0.2em;
	line-height: 34px;
	border-radius: 19px;
	font-size: 18px;
	text-align: center;
	margin: auto;
}

#News main#Blog .pager_wrap ul .prev,
#News main#Blog .pager_wrap ul .next {
	position: absolute;
	top: 0;
	bottom: 0;
	margin: auto;
	height: 32px;
}

#News main#Blog .pager_wrap ul .prev a,
#News main#Blog .pager_wrap ul .next a {
	display: inline-block;
	position: relative;
	font-weight: 500;
	width: 32px;
	height: 32px;
	border: 1px solid #000;
	box-sizing: border-box;
}

#News main#Blog .pager_wrap ul .prev a::before,
#News main#Blog .pager_wrap ul .next a::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	margin: auto;
	width: 0;
	height: 0;
	border-top: 4px solid transparent;
	border-bottom: 4px solid transparent;
	transition: all 0.3s ease;
}

#News main#Blog .pager_wrap ul .prev {
	left: 90px;
}

#News main#Blog .pager_wrap ul .prev a::before {
	border-right: 8px solid #000;
}

#News main#Blog .pager_wrap ul .next {
	right: 90px;
}

#News main#Blog .pager_wrap ul .next a::before {
	border-left: 8px solid #000;
}

/*==================================
  Contact_reset
==================================*/
main#Contact {
	/*------ Reset CSS ------*/
	/*------ Reset END ------*/
}

main#Contact input {
	-webkit-appearance: none;
}

main#Contact input[type=text] {
	padding: 0;
	border: none;
	border-radius: 0;
	outline: none;
	background: none;
}

main#Contact input[type=radio] {
	opacity: 0;
	margin: 0;
	width: 0;
	height: 0;
	font-size: 0;
	line-height: 1;
}

main#Contact input[type=radio]:checked+label {
	background: #ff0000;
}

main#Contact input[type=checkbox] {
	opacity: 0;
	margin: 0;
	width: 0;
	height: 0;
	font-size: 0;
	line-height: 1;
}

main#Contact input[type=checkbox]:checked+label {
	background: #ff0000;
}

main#Contact input::-moz-placeholder {
	color: #b7b7b7;
}

main#Contact input::placeholder {
	color: #b7b7b7;
}

main#Contact input:-ms-input-placeholder {
	color: #b7b7b7;
}

main#Contact input::-webkit-input-placeholder {
	color: #b7b7b7;
}

main#Contact button,
main#Contact input[type=button],
main#Contact input[type=submit] {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	padding: 0;
	border: none;
	outline: none;
	background: transparent;
}

main#Contact textarea {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	resize: none;
	padding: 0;
	border: 0;
	outline: none;
	background: transparent;
	border-radius: 0;
}

main#Contact select {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	border: none;
	outline: none;
	background: transparent;
	border-radius: 0;
}

/*==================================
  Contact_base
==================================*/
/* input, textarea
--------------------------------*/
/* radio_button
--------------------------------*/

input, textarea, select,option {
	color: #1D1D1D;
	font-size: 16px;
}
main#Contact {
	/*------ Form Base ------*/
	/*------ Form Base END ------*/
}

@-webkit-keyframes onAutoFillStart {}

@keyframes onAutoFillStart {}

main#Contact span.error {
	color: #E61F1E;
	display: block;
	margin: 7px 0 0;
}

main#Contact input:-webkit-autofill {
	-webkit-animation-name: onAutoFillStart;
	animation-name: onAutoFillStart;
	background: rgb(255, 255, 255) !important;
	-webkit-transition: background-color 50000s ease-in-out 0s;
	transition: background-color 50000s ease-in-out 0s;
}

main#Contact input[type=text]:focus,
main#Contact input[type=email]:focus,
main#Contact input[type=tel]:focus,
main#Contact input[type=search]:focus,
main#Contact input[type=url]:focus,
main#Contact textarea:focus {
	color: #1D1D1D;
	background-color: #F5F5F5;
}

main#Contact .ERR {
	color: #E61F1E;
}

main#Contact input[type=text] {
	font-size: 16px;
	line-height: 1.43;
	font-weight: 500;
	letter-spacing: 0.06em;
	padding: 27px 43px 29px;
	border: none;
	background: #F5F5F5;
	box-sizing: border-box;
	color: #1D1D1D;
	border-radius: 30px;
	width: 100%;
	height: 80px;
}

main#Contact input[type=text].zip {
	max-width: 247px;
	width: 100%;
}

main#Contact input::placeholder,
main#Contact textarea::placeholder {
	font-size: 16px;
	line-height: 1.43;
	font-weight: 500;
	letter-spacing: 0.06em;
	color: #B9B9B9;
} 

main#Contact .zip-wrap {
	background: #F5F5F5;
	display: inline-block;
	position: relative;
	max-width: 247px;
	width: 100%;
	margin-right: 3px;
}

main#Contact .zip-wrap::before {
	content: "〒";
	font-size: 18px;
	position: absolute;
	top: 0.8em;
	left: 24px;
	margin: auto;
}

main#Contact .zip-wrap input {
	padding: 12px 21px 12px 55px;
	width: 100%;
}

main#Contact input[type=button] {
	font-size: 16px;
	line-height: 1.625;
	letter-spacing: 0.03em;
	font-weight: 500;
	color: #1D1D1D;
	max-width: 140px;
	width: 100%;
	background: #F5F5F5;
	padding: 10px 19px;
	box-sizing: border-box;
	transition: all 0.3s ease;
	cursor: pointer;
}

main#Contact input[type=button]:hover {
	background: none;
}

main#Contact input[type=checkbox]+label {
	padding-left: 55px;
	position: relative;
	cursor: pointer;
	display: block;
}

main#Contact input[type=checkbox]+label::before {
	content: "";
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 30px;
	height: 30px;
	border: 1px solid #C9C9C9;
	background: #fff;
	box-sizing: border-box;
}

main#Contact input[type=checkbox]+label::after {
	content: "";
	position: absolute;
	top: 0;
	opacity: 0;
	left: 0;
	width: 30px;
	height: 30px;
	background: url('../images/contact/icon_check.svg') no-repeat;
	background-size: cover;
}

main#Contact input[type=checkbox]:checked+label {
	background: none;
}

main#Contact input[type=checkbox]:checked+label::after {
	opacity: 1;
}

main#Contact input[type=radio]+label {
	padding-left: 58px;
	position: relative;
	cursor: pointer;
}

main#Contact input[type=radio]+label::before {
	content: "";
	display: block;
	position: absolute;
	top: -7.5px;
	left: 0;
	width: 40px;
	height: 40px;
	background: url('../images/contact/icon_radio.svg') no-repeat;
	background-size: cover;
	box-sizing: border-box;
}

main#Contact input[type=radio]+label::after {
	content: "";
	display: block;
	position: absolute;
	top: -7.5px;
	left: 0;
	z-index: 3;
	width: 40px;
	height: 40px;
	background: url('../images/contact/icon_radio_blue.svg') no-repeat;
	background-size: cover;
	opacity: 0;
}

main#Contact input[type=radio]:checked+label {
	background: none;
}

main#Contact input[type=radio]:checked+label::after {
	opacity: 1;
}

main#Contact .select-box {
	overflow: hidden;
	width: 60%;
	text-align: center;
	position: relative;
	border-radius: 2px;
	background: #F5F5F5;
}

main#Contact .select-box select {
	font-size: 16px;
	color: #1D1D1D;
	letter-spacing: 0.035em;
	width: 100%;
	padding-right: 1em;
	cursor: pointer;
	text-indent: 0.01px;
	text-overflow: ellipsis;
	border: none;
	outline: none;
	background: transparent;
	background-image: none;
	box-shadow: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	padding: 12px 38px 12px 21px;
}

main#Contact .select-box select::-ms-expand {
	display: none;
}

main#Contact .select-box::before {
	position: absolute;
	top: 1.25em;
	right: 21px;
	width: 0;
	height: 0;
	padding: 0;
	content: "";
	border-left: 5px solid transparent;
	border-right: 5px solid transparent;
	border-top: 5px solid #000;
	pointer-events: none;
}

main#Contact textarea {
	font-size: 16px;
	line-height: 1.43;
	font-weight: 500;
	letter-spacing: 0.06em;
	padding: 27px 43px 29px;
	border-radius: 30px;
	border: 1px solid #F5F5F5;
	background: #F5F5F5;
	box-sizing: border-box;
	width: 100%;
	min-height: 320px;
	color: #1D1D1D;
}

main#Contact .overscroll {
	overflow-y: scroll;
	height: 237px;
	padding: 25px 21px;
	background: #F5F5F5;
}

main#Contact .overscroll ul>li {
	margin-bottom: 25px;
}

main#Contact .overscroll ul>li strong {
	font-size: 16px;
	line-height: 1.25;
	font-weight: 500;
	letter-spacing: 0.03em;
	display: block;
	margin-bottom: 5px;
	color: #1D1D1D;
}

main#Contact .overscroll ul>li p {
	font-size: 14px;
	line-height: 1.42;
}

main#Contact .overscroll ul>li>ol {
	margin-top: 5px;
}

main#Contact .overscroll ul>li>ol li {
	text-indent: -1.25em;
	padding-left: 1.25em;
}

main#Contact .overscroll ul>li:first-child strong {
	margin-bottom: 245x;
}

main#Contact .overscroll ul>li:last-child {
	margin-bottom: 0;
}

main#Contact .submit_area {
	margin-top: 85px;
	text-align: center;
	
	width: 100%;
	
}

main#Contact .submit_area .submit_inner {
	max-width: 359px;
	width: 100%;
	margin: 0 auto;
	height: 75px;
	background: #484848;
	box-sizing: border-box;
	border-radius: 37.5px;
	box-sizing: border-box;
	font-feature-settings: "palt";
	position: relative;
	text-align: center;
	transition: all 0.3s ease;
	padding:0 0 1px 0;
}

main#Contact .submit_area span input[type=submit] {
	position: absolute;
	left: 0;
	top: 0;
	z-index: 2;
	color: #fff;
	cursor: pointer;
	width: 100%;
	height: 75px;
	background: #484848;
	box-sizing: border-box;
	border-radius: 37.5px;
	opacity: 0;
}

main#Contact .submit_area .submit_inner .text {
	font-size: 17px;
	line-height: 1.5;
	font-weight: 500;
	letter-spacing: 0.06em;
}

main#Contact .submit_area .button_link .link_icon {
    margin-left: 0px;
}

main#Contact .submit_area ul.koumoku {
	/* max-width: 590px; */
	margin: 85px auto 0;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 10px;
	flex-direction:row-reverse;
}

main#Contact .submit_area ul.koumoku li {
	font-size: 17px;
	line-height: 1.44;
	font-weight: 500;
	letter-spacing: 0.06em;
	max-width: 359px;
	width: 100%;
	border-radius: 37.5px;
	height: 75px;
	box-sizing: border-box;
	font-feature-settings: "palt";
	position: relative;
	display: inline-block;
	text-align: center;
	box-sizing: border-box;
	transition: all 0.3s ease;
	position: relative;
	background: #484848;
}


main#Contact .submit_area ul.koumoku li input[type=submit] {
	font-size: 17px;
	line-height: 1.44;
	font-weight: 700;
	letter-spacing: 0.06em;
	cursor: pointer;
	width: 100%;
	height: 100%;
	color: #fff;
	background: transparent;
	box-sizing: border-box;
	border-radius: 37.5px;
	box-sizing: border-box;
}

/* main#Contact .submit_area ul.koumoku li::before {
    content: "";
    display: block;
    width: 20px;
    height: 20px;
    position: absolute;
    top: 50%;
    right: 30px;
    background: #fff;
    border-radius: 50%;
    transform: translate(0, -50%) scale(0.4);
    transition-property: transform, opacity;
    transition-duration: .5s;
    transition-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
}

main#Contact .submit_area ul.koumoku li::after {
    content: '';
    position: absolute;
    right: 30px;
    top: 50%;
    z-index: 2;
    width: 8px;
    height: 8px;
    background: url(../images/common/icon_arrow_gray.svg) no-repeat;
    background-size: cover;
	transform: translate(-100%, -50%) scale(0.4);
	opacity: 0;
    transition-property: transform, opacity;
    transition-duration: .5s;
    transition-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
} */
/* 
main#Contact .submit_area ul.koumoku li::after {
    content: '';
    position: absolute;
    right: 30px;
    top: 50%;
    z-index: 2;
    width: 8px;
    height: 8px;
    background: url(../images/common/icon_arrow_gray.svg) no-repeat;
    background-size: cover;
	transform: translate(-100%, -50%) scale(0.5);
	opacity: 0;
} */

main#Contact .submit_area ul.koumoku li.btn_back .link_icon {
	right: unset;
	left: 30px;
}

main#Contact .submit_area ul.koumoku li.btn_back .link_icon .icon_arrow::before {
	transform: rotate(180deg);
}

main#Contact .submit_area ul.koumoku li:hover svg path {
	fill: #000;
}

main#Contact .contact_back a {
	font-size: 17px;
	line-height: 1.44;
	font-weight: 500;
	letter-spacing: 0.06em;
	max-width: 359px;
	width: 100%;
	border-radius: 37.5px;
	height: 75px;
	transition: all 0.3s ease;
	/* background: #484848; */
	display: flex;
	margin: 30px auto 0;
}

@media screen and (min-width: 960px) {
	.submit_inner.button_link.gray:hover {
		background: #f4a323;
	}
	
	main#Contact .submit_area .submit_inner:hover {
	    background: #f4a323;
	}
	
	.submit_inner.button_link.gray:hover .link_icon {
	    background: #f4a323;
	}
	
	main#Contact .submit_area ul.koumoku li:hover::before {
	    transform: translate(0, -50%) scale(1);
	}
	
	main#Contact .submit_area ul.koumoku li:hover::after {
		transform: translate(-63%, -50%) scale(1);
		opacity: 1;
	}

	main#Contact .submit_area ul.koumoku li.btn_back:hover::after {
		transform: translate(63%, -50%) scale(1) rotate(180deg);
	}
	
	main#Contact .button_link.gray:hover .link_icon {
		background: #f4a323;
	}
	
}

@media screen and (max-width: 800px) {
	main#Contact input[type=text] {
		padding: 17px 22px 19px;
		border-radius: 20px;
		width: 100%;
		height: 60px;
	}
	
	main#Contact textarea {
	    padding: 17px 10px 19px 22px;
	    border-radius: 20px;
	    min-height: 240px;
	}
	
	main#Contact input::placeholder,
	main#Contact textarea::placeholder {
		letter-spacing: 0.03em;
	} 

	
	main#Contact input[type=checkbox]+label {
		padding-left: 47px;
		line-height: 2.28;
	}
	
	main#Contact input[type=checkbox]+label::before {
		content: "";
		display: block;
		position: absolute;
		top: 6px;
		left: 8px;
		width: 28px;
		height: 28px;
	}
	
	main#Contact input[type=checkbox]+label::after {
		top: 6px;
		left: 8px;
		width: 28px;
		height: 28px;
	}
	
	main#Contact .check-list {
		margin-top: 30px;
	}
	
	main#Contact  tr .radio {
		margin-bottom: 15px;
	}
	
	main#Contact input[type=radio]+label {
		padding-left: 51px;
	}
	
	main#Contact input[type=radio]+label::before {
		top: -5px;
		left: -8px;
		width: 36px;
		height: 36px;
	}
	
	main#Contact input[type=radio]+label::after {
		top: -5px;
		left: -8px;
		width: 36px;
		height: 36px;
	}
	
	
	main#Contact .submit_area {
		margin-top: 50px;
		
	}
	
	main#Contact .submit_area .submit_inner {
		height: 65px;
		border-radius: 32.5px;
	}
	
	main#Contact .submit_area span input[type=submit] {
		height: 65px;
		border-radius: 32.5px;
	}
	
	main#Contact .submit_area .button_link .link_icon {
	    margin-left: 0px;
	}
	
	main#Contact .submit_area ul.koumoku {
		margin: 50px auto 0;
		flex-direction: column;
	}
	
	main#Contact .submit_area ul.koumoku li {
		height: 65px;
	}
	
	main#Contact .submit_area ul.koumoku li + li {
		margin-top: 20px;
	}
	
	main#Contact .submit_area ul.koumoku li::before {
		width: 7px;
		height: 7px;
		transform: translate(-50%, -50%) scale(1);
	}
	
	main#Contact .submit_area ul.koumoku li::after {
	    content: unset;
	}
	
}
/*==================================
  Contact
==================================*/
main#Contact {
	padding-bottom: 165px;
}

main#Contact .container {
	margin: auto;
	max-width: 1150px;
}

main#Contact .contact_head,
main#Contact .send_comp p {
	font-size: 16px;
	font-weight: 500;
	letter-spacing: 0.06em;
	line-height: 1.8;
	margin-bottom: 91.3px;
}


main#Contact .agree_area {
	margin-top: 55px;
}

main#Contact .agree_area label {
	font-weight: 500;
	font-size: 16px;
	line-height: 1.53;
	letter-spacing: 0.05em;
}

main#Contact .agree_area label a {
	position: relative;
}

main#Contact .agree_area label a::before {
	content: '';
	position: absolute;
	left: 0;
	bottom: -5px;
	z-index: 2;
	width: 100%;
	height: 1px;
	background: #555555;
}

main#Contact .need {
	color: #E61F1E;
}

main#Contact table {
	display: block;
}

main#Contact table tbody {
	display: block;
}

main#Contact table tr+tr {
	display: block;
	margin-top: 30px;
}

main#Contact table tr th {
	font-size: 17px;
	line-height: 1.88;
	letter-spacing: 0.08em;
	font-weight: 700;
	display: block;
	text-align: left;
	margin-bottom: 8px;
}

main#Contact table tr td {
	display: block;
	font-size: 16px;
	line-height: 1.43;
	font-weight: 500;
	letter-spacing: 0.06em;
}

main#Contact .check-list {
	padding: 12px 0 35px;
}

main#Contact .check-list li {
	display: inline-block;
	margin-right: 57.5px;
	font-size: 16px;
	line-height: 2.5;
	font-weight: 500;
	letter-spacing: 0.06em;
}

main#Contact.sfm1 form {
	position: relative;
}

main#Contact.sfm1 form::after {
	content: '';
	position: absolute;
	right: 0;
	top: -86px;
	z-index: 3;
	width: 138.5px;
	height: 128px;
	background: url('../images/contact/icon_yellow.svg') no-repeat;
	background-size: cover;
	opacity: 0;
	transform: translateY(30px);
	transition: all 0.5s 0.4s ease;
}

main#Contact.sfm1 .move form::after {
	opacity: 1;
	transform: translateY(0);
}
main#Contact.sfm2 td p {
	overflow-wrap: break-word;
}



@media screen and (max-width: 930px) {
	main#Contact .check-list li {
	    margin-right: 40px;
	}
	
	main#Contact input[type=radio]+label {
		padding-left: 40px;
	}
	
	main#Contact input[type=radio]+label::before {
	    top: -1.5px;
	    width: 30px;
	    height: 30px;
	}
	
	main#Contact input[type=radio]+label::after {
	    top: -1.5px;
	    width: 30px;
	    height: 30px;
	}
}

@media screen and (max-width: 850px) {
	main#Contact .check-list li {
	    margin-right: 20px;
	}
}



@media screen and (max-width: 800px) {
	main#Contact {
		padding-bottom: 125px;
	}
	
	main#Contact .contact_head {
		line-height: 1.78;
		margin-bottom: 42px;
	}
	
	main#Contact .agree_area {
		margin-top: 20px;
	}
	
	main#Contact table tr+tr {
		margin-top: 20px;
	}
	
	main#Contact table tr th {
		margin-bottom: 4px;
	}

	main#Contact .check-list {
		padding: 20px 0 0;
		margin-top: 0;
	}
	
	main#Contact .check-list li {
		display: block;
		padding-top: 0;
		margin-right: 0;
	}
	
	main#Contact .check-list li+li {
		margin-top: 19px;
	}
	
	main#Contact.sfm1 form {
		position: relative;
	}
	
	main#Contact.sfm1 form::after {
		right: 18px;
		top: -59px;
		z-index: 3;
		width: 80px;
		height: 85px;
	}
	
}
/*==========================================
  Common
==========================================*/
#AllBox {
	padding: 0;
	position: relative;
}
*,
*:before,
*::after {
	box-sizing: border-box;
}

.op {
	-webkit-transition: opacity 0.5s ease-out;
	-moz-transition: opacity 0.5s ease-out;
	-ms-transition: opacity 0.5s ease-out;
	transition: opacity 0.5s ease-out;
}

.op:hover {
	text-decoration: none;
	opacity: .1;
	-webkit-opacity: .8;
	-moz-opacity: .8;
	-webkit-transition: opacity 0.5s ease-out;
	-moz-transition: opacity 0.5s ease-out;
	-ms-transition: opacity 0.5s ease-out;
	transition: opacity 0.5s ease-out;
}
.pc {
	display: block !important;
}
.sp {
	display: none !important;
}
@media screen and (max-width: 800px) {
	#AllBox {
		max-width: unset;
		padding: 0;
	}
	.pc {
		display: none !important;
	}
	.sp {
		display: block !important;
	}
}

/*==========================================
  Header
==========================================*/

@media screen and (max-width: 1000px) {
	
}
@media screen and (max-width: 800px) {
	.header_in nav {
		display: none;
		padding-right: 0;
		position: fixed;
		left: 0;
		top: 0;
		width: 100%;
		height: 100vh;
		z-index: 222;
		overflow-y: auto;
  	-webkit-overflow-scrolling: touch;
  	padding: 104px 25px 0;
  	background: #ebece6;
	}
}


/*==========================================
  Footer
==========================================*/

footer {
	border-top: 1px solid #C9C9C9;
	width: 100%;
	background: #fff;
	overflow: hidden;
}

#Top footer {
	border-top: none;
}

.footer_inner {
	position: relative;
	z-index: 1;
	padding-bottom: 55px;
}


.footer_bg_blue {
	width:100%;
	position: absolute;
	top:0;
	left: 0;
	z-index: -1;
	pointer-events: none;
}

.footer_bg_blue::after {
	display: block;
	content:'';
	width:100%;
	height:300px;
	position: absolute;
	top:0;
	left:-30%;
	z-index: 1;
	aspect-ratio: 1/1.2;
	pointer-events: none;
	background: url(../images/top/bg_wrap.webp) no-repeat right center;
	background-size: 100% 100%;
	transition: all 3.5s ease;
	transform: translateX(0) scale(-1,1);
}

.no-webp .footer_bg_blue::after {
	background: url(../images/top/bg_wrap.png) no-repeat right center !important;
}

.footer_bg_blue.move::after {
	transform: translateX(100%) scale(-1,1);
}

.footer_bg_blue svg {
	width:400px;
}

.footer_bg_blue svg > path {
	fill: #318bcb;
	stroke: #318bcb;
}

.footer_bg_blue svg .mask-style {
	stroke: #fff;
	stroke-dasharray: 0, 2000;
	stroke-width: 200;
}

.footer_bg_blue.move svg .mask-style {
	animation: line-anime 2s ease-out forwards;
}

@media screen and (max-width: 800px) {
	.footer_bg_blue {
		top:0;
		left: -66px;
	}
	
	.footer_bg_blue svg {
		width:50%;
	}
}


.footer_bg_green {
	width:100%;
	text-align: right;
	position: absolute;
	bottom:0;
	right: 0;
	z-index: -1;
	pointer-events: none;
}

.footer_bg_green::after {
	display: block;
	content:'';
	width:100%;
	height:300px;
	position: absolute;
	top:0;
	right:-30%;
	z-index: 1;
	aspect-ratio: 1/1.2;
	pointer-events: none;
	background: url(../images/top/bg_wrap.webp) no-repeat right center;
	background-size: 100% 100%;
	transition: all 3.5s ease;
	transform: translateX(0);
}

.no-webp .footer_bg_green::after {
	background: url(../images/top/bg_wrap.png) no-repeat right center !important;
}

.footer_bg_green.move::after {
	transform: translateX(-100%);
}

.footer_bg_green svg {
	width:370px;
	transform: translate(15px,15px);
}

.footer_bg_green svg > path {
	fill: #1d993a;
	stroke: #1d993a;
}

.footer_bg_green svg .mask-style {
	stroke: #fff;
	stroke-dasharray: 0, 2000;
	stroke-width: 200;
}

.footer_bg_green.move svg .mask-style {
	animation: line-anime 2s ease-out forwards;
}

@media screen and (max-width: 800px) {
	.footer_bg_green {
		right:-20px;
		bottom:-20px;
	}
	.footer_bg_green svg {
		width:45%;
	}
}

@keyframes line-anime{
	0%{
	  stroke-dasharray: 0, 2000;
	}
	100%{
	  stroke-dasharray: 2000, 2000;
	}
}

.footer_contact {
	padding: 113px 0 152px;
}

.footer_contact .head_large {
	text-align: center;
	margin-bottom: 42.5px;
}

.footer_contact .head_large .eng {
	font-size: 49px;
	line-height: 61.5px;
	font-weight: 700;
}

.footer_contact .head_large .jap {
	font-size: 17px;
	letter-spacing: 0.08em;
	line-height: 25px;
	display: block;
	margin-top: 6px;
}

.footer_contact .footer_contact_wrap {
	display: flex;
	justify-content: center;
}

.footer_contact .footer_item {
	display: block;
	max-width: 400px;
	width: 100%;
	border-radius: 37.5px;
}

.footer_contact .footer_item+.footer_item {
	margin-left: 56px;
}

.footer_contact .footer_item a {
	width: 100%;
	height: 75px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.footer_contact .footer_item a .mail_title,
.footer_contact .footer_item a .tel_title {
	display: inline-flex;
	align-items: center;
}

.footer_contact .footer_item.tel a .tel_title::before {
	content: '';
	background: url('../images/common/icon_tel.svg') no-repeat center;
	width: 25.5px;
	height: 25.5px;
	background-size: 100% auto;
	margin-right: 11px;
}

.footer_contact .footer_item.mail a .mail_title::before {
	content: '';
	background: url('../images/common/icon_mail.svg') no-repeat center;
	width: 24px;
	height: 17.5px;
	background-size: 100% auto;
	margin-right: 6px;
	margin-top: 3px;
}

.footer_contact .footer_item.tel a {
	font-size: 25px;
	font-weight: 700;
	letter-spacing: 0.08em;
}

.footer_contact .footer_item.tel .link_icon {
	/* display: none; */
}

.footer_contact .footer_item.tel a .text_inner {
	height: 37.5px;
}

.footer_contact .footer_item.tel a .text_inner .text {
	line-height: 1.5;
}

.footer_contact .footer_item.mail a .text_inner {
	font-size: 18px;
	letter-spacing: 0.06em;
	font-weight: 700;
	height: 27px;
}

.footer_wrap {
	padding-top: 86px;
	border-top: 1px solid #C9C9C9;
	position: relative;
}

#page_top a {
	display: block;
	position: absolute;
	right: -32px;
	top: -50px;
	z-index: 2;
	transform: translateX(100%) rotate(90deg);
	transform-origin: left bottom;
	font-weight: 700;
	font-size: 13px;
	line-height: 1;
}

#page_top a .eng {
	display: block;
}

#page_top .button_link .link_icon {
    display: block;
    position: absolute;
	top: 50%;
	left: 0;
	z-index: 3;
    border-radius: 50%;
    width: 26px;
    height: 26px;
    margin-left: -20px;
	transform: translate(-50%,-50%);
}

#page_top .button_link .link_icon::before {
    width: 18px;
    height: 18px;
}

#page_top .button_link .link_icon .icon_arrow {
	width: 10px;
	height: 10px;
}

#page_top .button_link .link_icon .icon_arrow::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    z-index: 2;
    width: 10px;
    height: 10px;
	transform: rotate(-90deg);
    background: url(../images/common/page_top.svg) no-repeat;
    background-size: cover;
}

.footer_body {
	display: flex;
	justify-content: space-between;
}

.footer_box {
	width: 242.5px;
	margin-right: 10px;
}

.footer_logo {
	width: 191.5px;
	margin-bottom: 32px;
}

.footer_name {
	font-size: 15px;
	font-weight: 700;
	letter-spacing: 0.06em;
	line-height: 1.46;
	margin-bottom: 14px;
}

.footer_info p ,
.footer_info p a {
	font-size: 14px;
	font-weight: 500;
	letter-spacing: 0.06em;
	line-height: 1.92;
}

.footer_section {
	width: calc(100% - 252.5px);
}

.footer_nav {
	display: flex;
	justify-content: flex-end;
}

.footer_nav .footer_nav_item {
	/* width: calc(25% - 70px); */
	margin-left: 70px;
}

.footer_nav_item .nav_links a {
	font-size: 15px;
	letter-spacing: 0.06em;
	line-height: 1.4667;
	font-weight: 700;
	display: inline-block;
	transition: .3s transform ease-out;
}

.footer_nav_item .nav_links li+li {
	margin-top: 18px;
}

.footer_nav_item .nav_links_son {
	margin-top: 22px;
}

.footer_nav_item .nav_links_son a {
	font-size: 14px;
	font-weight: 500;
	color: #858585;
	line-height: 1.42857;
	display: inline-block;
	transition: .3s transform ease-out;
}

.footer_nav_item .nav_links_son li+li {
	margin-top: 18px;
}

.footer_nav_item .nav_links li,
.footer_nav_item .nav_links_son li {
	line-height: 1;
}

.footer_links {
	display: flex;
	justify-content: flex-end;
}

.footer_link_item {
	width: 100%;
	margin-top: 63.5px;
}

.footer_link_item a {
	font-size: 15px;
	font-weight: 500;
	letter-spacing: 0.06em;
	line-height: 1.5;
	color: #fff;
	background: #484848;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 25px;
	height: 50px;
	width: 100%;
	transition: all .3s ease;
	padding:0 !important;
}

.footer_link_item.item01 {
	max-width: 250px;
}

.footer_link_item.download  {
	max-width: 210px;
}

.footer_link_item.download {
	margin-left: 12.5px;
}

.footer_link_item.download a .icon_download {
	display: inline-flex;
	align-items: center;
}

.footer_link_item.download a .icon_download::before {
	content: '';
	width: 18.5px;
	height: 18.5px;
	background: url('../images/common/icon_download.svg') no-repeat;
	background-size: cover;
	margin-right: 10px;
}

.copy {
	position: absolute;
	bottom: 0;
	left: 0;
	z-index: 3;
	width: 100%;
	font-size: 12px;
	letter-spacing: 0.08em;
	line-height: 1.25;
	font-weight: 500;
	color: #858585;
	pointer-events: none;
	font-family: "Outfit", sans-serif;
}

@media screen and (min-width: 960px) {
	.footer_contact .button_link.button_cont.yellow:hover {
	    background: #E61F1E;
	}
	
	.footer_contact  .button_link.yellow:hover .link_icon {
	    background: #E61F1E;
	}
	
	.footer_nav_item .nav_links a:hover,
	.footer_nav_item .nav_links_son a:hover {
		transform: translateX(10px);
		transition: .3s transform ease-out;
	}
	
	.footer_link_item a:hover {
		background: #F4A323;
		transition: all .3s ease;
	}
	
	.footer_contact .footer_item .button_link .link_icon::before {
	    transform: translate(-50%, -50%) scale(0.3);
	}
	
	.footer_contact .footer_item .button_link:hover .link_icon::before {
	    transform: translate(-50%, -50%) scale(1);
	}
}


@media screen and (max-width: 1400px) {
	
	#page_top a {
		right: -8px;
	}
}

@media screen and (max-width: 1200px) {
	.footer_nav .footer_nav_item {
	    margin-left: 40px;
	}
	
	#page_top a {
		top: -45px;
	}
	
}

@media screen and (max-width: 1060px) {
	.footer_nav .footer_nav_item {
	    margin-left: 20px;
	}
	
	
}

@media screen and (max-width: 1000px) {
	.footer_nav_item .nav_links a {
	    font-size: 12px;
	    letter-spacing: 0em;
	}
	
	.footer_nav_item .nav_links_son a {
	    font-size: 12px;
	}
	
	.copy {
	    bottom: -30px;
	}
}

@media screen and (max-width: 900px) {
	.footer_name {
		font-size: 12px;
	}
	
	.footer_info p, .footer_info p a {
	    font-size: 12px;
	}
	
	.footer_box {
	    width: 200px;
	    margin-right: 10px;
	}
	
	.footer_section {
	    width: calc(100% - 210px);
	}
}

@media screen and (max-width: 800px) {
	.footer_inner {
		padding-bottom: 26px;
	}
	.footer_inner::after {
		content: '';
		position: absolute;
		right: 0;
		bottom: 0;
		z-index: -1;
		width: 100%;
		height: 100%;
		background: url('../images/common/sp/footer_bg_green.svg') no-repeat right bottom;
		background-size: 100% auto;
		clip-path: inset(100% 0% 100% 0%);
	}
	
	.footer_contact {
		padding: 54px 0 42px;
	}
	
	.footer_contact .head_large {
		text-align: center;
		margin-bottom: 42.5px;
	}
	
	.footer_contact .head_large .eng {
		font-size: 35px;
		line-height: 36.5px;
	}
	
	.footer_contact .head_large .jap {
		font-size: 16px;
		margin-top: 2px;
	}
	
	.footer_contact .footer_contact_wrap {
		display: block;
		justify-content: center;
	}
	
	.footer_contact .footer_item {
		display: block;
		max-width: 335px;
		margin: 0 auto;
		border-radius: 35px;
	}
	
	.footer_contact .footer_item.tel a .text_inner,
	.footer_contact .footer_item.mail a .text_inner {
	   height: auto;
	}
	
	.footer_contact .footer_item.tel a .text_inner .text {
		line-height: 2.52;
	}
	
	.footer_contact .footer_item.mail a .text_inner .text {
		line-height: 1.95;
	}
	
	.footer_contact .footer_item.tel a .link_icon {
		/* display: none; */
	}
	
	.footer_contact .footer_item+.footer_item {
		margin-left: auto;
		margin-top: 13px;
	}
	
	.footer_contact .footer_item a {
		width: 100%;
		height: 70px;
	}
	
	.footer_contact .footer_item.tel a .tel_title::before {
		margin-right: 8px;
	}
	
	.footer_contact .footer_item.mail a .mail_title::before {
		margin-right: 7px;
		margin-top: 0;
	}
	
	.footer_wrap {
		padding-top: 33px;
		position: relative;
	}
	
	#page_top a {
		right: 20px;
		top: auto;
		bottom: 307px;
		transform: translateX(100%) rotate(90deg);
	}
	
	#page_top .button_link .link_icon {
	    margin-left: -22px;
	}
	
	#page_top .button_link .link_icon::before {
	    width: 7px;
	    height: 7px;
	}
	
	.footer_body {
		flex-direction: column-reverse;
		justify-content: flex-start;
	}
	
	.footer_box {
		width: 100%;
		margin-right: 0;
		margin-top: 40px;
	}
	
	.footer_logo {
		width: 155px;
		margin-bottom: 14px;
	}
	
	.footer_name {
		font-size: 15px;
		margin-bottom: 5px;
	}
	
	.footer_info p, .footer_info p a {
	    font-size: 14px;
		line-height: 1.89;
	}
	
	.footer_section {
		width: 100%;
	}
	
	.footer_nav {
		flex-wrap: wrap;
		justify-content: flex-start;
	}

	.footer_nav_item .nav_links a {
        font-size: 15px;
    	letter-spacing: 0.06em;
    }

	.footer_nav_item .nav_links li+li {
		margin-top: 15px;
	}

	.footer_nav_item .nav_links_son {
		margin-top: 11px;
	}

	.footer_nav_item .nav_links_son a {
        font-size: 14px;
    }

	.footer_nav_item .nav_links_son li+li {
		margin-top: 15px;
	}
	
	.footer_nav .footer_nav_item {
		width: 50%;
		/* width: calc(25% - 70px); */
		margin-left: 0;
		margin-top: 20px;
	}
	
	
	.footer_links {
		display: block;
	}
	
	.footer_link_item {
		max-width: 270px;
		width: 100%;
		margin: 30px auto 0;
	}
	
	.footer_link_item.item01 {
		max-width: 270px;
	}
	
	.footer_link_item.download  {
		max-width: 270px;
	}
	
	.footer_link_item.download {
		margin: 8px auto 0;
	}
	
	.copy {
		position: relative;
		bottom: auto;
		font-size: 11px;
		margin-top: 24px;
		line-height: 1.63;
	}
	
}

/*==========================================
  Main
==========================================*/
/* main {
	background: #EBECE6;
	position: relative;
}

main::after {
	content: '';
	background: #fff;
	position: absolute;
	bottom: 0;
	left: 0;
	z-index: 3;
	width: 100%;
	height: 96px;
} */

@media screen and (max-width: 800px) {
	main::after {
		height: 40px;
	}
}

/*==================================
  Main Visual
==================================*/
.main_visual {
	position: relative;
	width: 100%;
	/* height: 100vh; */
	/* height: 100vh;
	min-height: 905px; */
	overflow: hidden;
	box-sizing: border-box;
}

/* .main_visual::before {
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	z-index: 1;
	width: 100%;
	height: 100%;
	background-image: url('../images/top/main_flower.webp');
	background-position: right;
	background-repeat: no-repeat;
	background-size: auto 100%;
	opacity: 0;
} */

.move.main_visual::before {
	opacity: 1;
	transition: opacity 1s ease 1s;
}

.main_visual::after {
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	z-index: 1;
	width: 100%;
	height: 100%;
	background-image: url('../images/top/main_bg_white.webp');
	background-repeat: no-repeat;
	background-size: 100% 100%;

}


.no-webp .main_visual::after {
	background-image: url('../images/top/main_bg_white.png') !important;
}

/* .main_visual_flower {
	position: absolute;
	left: 0;
	top: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
} */

.main_visual_image img{
	width: 100%;
}

.main_fig {
	width:100%;
	text-align: right;
	position: absolute;
	bottom: 15%;
	right: 0;
	z-index: 1;
	pointer-events: none;
}

.main_fig .f2 {
	width:8.35%;
	position: absolute;
	bottom: 22.42%;
	right: 23.8%;
}

.main_fig .f2 img {
	width:100%;
	opacity: 0;
	transform: rotate(15deg);
	transform-origin: right bottom;
	transition: all 0.6s 0.6s ease;
}

.main_fig.move .f2 img {
	opacity: 1;
	transform: rotate(0);
}

.main_fig .f3 {
	width:11.28%;
	position: absolute;
	bottom: 100%;
	right: 23.8%;
}

.main_fig .f3 img {
	width:100%;
	opacity: 0;
	transform: rotate(10deg);
	transform-origin: right bottom;
	transition: all 0.6s 0.8s ease;
}

.main_fig.move .f3 img {
	opacity: 1;
	transform: rotate(0);
}


.main_fig .f4 {
	width:14.71%;
	position: absolute;
	bottom: 81%;
	right: 7.28%;
}

.main_fig .f4 img {
	width:100%;
	opacity: 0;
	transform: rotate(-15deg);
	transform-origin: left bottom;
	transition: all 0.6s 0.7s ease;
}

.main_fig.move .f4 img {
	opacity: 1;
	transform: rotate(0);
}




.main_fig svg {
	width:22%;
}

.main_fig svg > path {
	fill: #348acb;
	stroke: #348acb;
}

.main_fig svg .mask-style {
	stroke: #fff;
	stroke-dasharray: 2000, 2000;
	stroke-width: 400;
}

.main_fig.move svg .mask-style {
	animation: line-anime 1s ease-out;
}

@keyframes line-anime{
	0%{
	  stroke-dasharray: 0, 2000;
	}
	100%{
	  stroke-dasharray: 2000, 2000;
	}
}


@media screen and (max-width: 800px) {
	.main_visual {
		position: relative;
		width: 100%;
		height: auto;
		overflow: hidden;
		box-sizing: border-box;
	}
	
	.main_visual::after {
		background-image: url('../images/top/sp/main_bg_white.webp');
		background-repeat: no-repeat;
		background-size: cover;
	}

	.no-webp .main_visual::after {
		background-image: url('../images/top/sp/main_bg_white.png') !important;
	}

	.main_fig {
		bottom: 7%;
	}
	
	.main_fig svg {
		width:34.9%;
	}

	.main_fig .f2 {
		width:13.73%;
		bottom: 22.42%;
		right: 36.66%;
	}
	
	.main_fig .f3 {
		width:18.26%;
		bottom: 100%;
		right: 36.66%;
	}
		
	.main_fig .f4 {
		width:23.6%;
		bottom: 81%;
		right: 11.2%;
	}
	

}

/*==========================================
  Teaser
==========================================*/
.teaser {
	position: relative;
}

.teaser_box {
	position: relative;
	width: 100%;
	/* min-height: 564px; */
	/* height: 100vh; */
	/* height: 100vh;
	min-height: 905px; */
	/* overflow: hidden; */
	box-sizing: border-box;
}

.teaser_box .f2 {
	width:5.39%;
	position: absolute;
	transform: translateY(-40%);
	right: 21.17%;
}

.teaser_box .main_fig .f3 {
	width:7.07%;
	position: absolute;
	transform: translateY(-273%);
	right: 21.17%;
}

.teaser_box .main_fig .f4 {
	width:9.71%;
	position: absolute;
	bottom: 0;
	right: 10.3%;
	transform: translateY(-103%);
}

.teaser_box .main_fig svg {
	width:13.95%;
	position: absolute;
	bottom: 0;
	right: 6.28%;
}


@media screen and (max-width: 800px) {

	.teaser_box .f2 {
		width:8.53%;
		position: absolute;
		transform: translateY(-110%);
		right: 25.27%;
	}
	
	.teaser_box .main_fig .f3 {
		width:10.93%;
		position: absolute;
		transform: translateY(-383%);
		right: 25.27%;
	}
	
	.teaser_box .main_fig .f4 {
		width:13.73%;
		position: absolute;
		bottom: 0;
		right: 10.3%;
		transform: translateY(-173%);
	}
	
	.teaser_box .main_fig svg {
		width:21.33%;
		position: absolute;
		bottom: 0;
		right: 3.0%;
		transform: translateY(-40%);
	}
	

}



.move.teaser_box::before {
	opacity: 1;
	transition: opacity 1s ease 1s;
}

.teaser_box::after {
	content: '';
	position: absolute;
	left: 0;
	bottom: -27%;
	z-index: 1;
	width: 100%;
	aspect-ratio: 2800 / 808;
	background-image: url('../images/common/bg.png');
	background-repeat: no-repeat;
	background-size: cover;
}

.teaser_image img {
	width: 100%;
}

.teaser_heading {
	position: absolute;
	left: 0;
	bottom: 7.3%;
	z-index: 10;
	width: 100%;
}

.teaser_heading .eng {
	font-size: 80px;
	font-weight: 700;
	line-height: 1.2625;
	display: block;
	font-family: "Outfit", sans-serif;
}

.teaser_heading .jap {
	font-size: 22px;
	font-weight: 700;
	letter-spacing: 0.08em;
	line-height: 34px;
	display: block;
}

@media screen and (max-width:1030px) {
	.teaser_heading {
		bottom: 0;
	}
}

@media screen and (max-width: 800px) {
	.teaser {
		overflow: visible;
		margin-bottom: 42px;
	}
	
	/* .teaser_box {	
		overflow: hidden;
	} */
	
	.teaser_box::before {
		background: url('../images/common/sp/teaser_flower.svg') no-repeat;
		background-size: 100% 100%;
	}
	
	.teaser_box::after {
		content: '';
		position: absolute;
		left: 0;
		bottom: -2px;
		z-index: 1;
		width: 100%;
		height: 100%;
		background: url('../images/common/sp/teaser_bg_white.webp') no-repeat;
		background-size: 100% 100%;
	}

	.no-webp .teaser_box::after {
		background-image: url('../images/common/sp/teaser_bg_white.png') !important;
	}
	
	.teaser_image img {
		width: 100%;
	}
	
	.teaser_heading {
		bottom: 13%;
	}
	
	.teaser_heading .eng {
		font-size: 52px;
		line-height: 1;
	}
	
	.teaser_heading .jap {
		font-size: 16px;
		line-height: 23px;
		margin-top: 5px;
	}
}

/* @media screen and (max-width: 760px) {
	.teaser_heading {
		bottom: 64px;
	}
} */


@media screen and (max-width: 530px) {
	.teaser_heading {
		bottom: 10%;
	}
}

@media screen and (max-width: 430px) {
	.teaser_heading {
		bottom: 5%;
	}
}

@media screen and (max-width: 400px) {
	
	.teaser_heading .eng {
		font-size: 52px;
		line-height: 1;
	}
	
	.teaser_heading .jap {
		font-size: 16px;
		line-height: 23px;
		margin-top: 5px;
	}
}
/*==========================================
  Breadcrumbs
==========================================*/
.breadcrumb {
	max-width: 1340px;
	margin: 0 auto;
	margin-bottom: 90px;
	padding: 0 50px;
}

.breadcrumb ul {
	display: flex;
	justify-content: flex-end;
}
.breadcrumb li {
	padding-right: 25px;
	position: relative;
	word-break: keep-all;
	white-space: nowrap;
}

.breadcrumb ul li:last-child {
	word-break: break-all;
	white-space: unset;
	padding-right: 0;
}

.breadcrumb li+li::before {
	content: '';
	position: absolute;
	left: -15px;
	top: 6px;
	width: 5px;
	height: 8px;
	background: url('../images/common/icon_teaser_arrow.svg') no-repeat center;
	background-size: 100% auto;
}
.breadcrumb li,
.breadcrumb li a {
	font-size: 12px;
	font-weight: 500;
	letter-spacing: 0.06em;
	line-height: 17.5px;
	color: #1D1D1D;
}
.breadcrumb li a.is_active {
	color: #2280C7;
	/* pointer-events: none; */
}

@media screen and (min-width: 960px) {
	.breadcrumb li a:hover {
		color: #2280C7;
	}
}

@media screen and (max-width: 800px) {
	.breadcrumb {
		margin: 0;
		padding: 0 60px;
		position: absolute;
		left: 0;
		bottom: 0;
		z-index: 10;
		padding: 30px 20px;
		width: 100%;
	}
	
	.breadcrumb ul {
		display: flex;
		justify-content: flex-start;
	}
	
	.breadcrumb li {
		padding-right: 22.5px;
	}

	
	.breadcrumb li+li::before {
		top: 5.5px;
	}
	
	.breadcrumb li,
	.breadcrumb li a {
		font-size: 11px;
		line-height: 16px;
	}
}


/*==================================
  Top
==================================*/
/* heading */
.heading_box {
	margin-bottom: 59px;
}

.heading_box .eng {
	font-size: 63px;
	font-weight: 700;
	line-height: 1;
	display: block;
	font-family: "Outfit", sans-serif;
}

.heading_box .jap {
	margin-top: 8px;
	font-size: 17px;
	font-weight: 700;
	letter-spacing: 0.08em;
	line-height: 1;
	display: block;
}

#Top {
	overflow: hidden;
}

.top_about {
	position: relative;
	z-index: 1;
}

.top_about .container {
	position: relative;
	z-index: 2;
}

.top_about_line {
	width:100%;
	height: 120vw;
	position: absolute;
	top:30%;
	left:50%;
	transform: translateX(-50%) translateY(-50%);
	z-index: -1;
	aspect-ratio: 1/1.2;
	pointer-events: none;
	background: url(../images/top/line01.svg) no-repeat center center;
	background-size: 2900px 821px;
}

.top_about_line02 {
	width:100%;
	height: 120vw;
	position: absolute;
	top:90%;
	left:50%;
	transform: translateX(-50%) translateY(-50%) rotate(0deg) scale(1, -1);
	z-index: -1;
	aspect-ratio: 1/1.2;
	pointer-events: none;
	background: url(../images/top/line01.svg) no-repeat center center;
	background-size: 2900px 821px;
}

.top_about_line_wrap {
	width:130%;
	height: 120vw;
	position: absolute;
	top:-40%;
	right:-30%;
	z-index: -1;
	aspect-ratio: 1/1.2;
	pointer-events: none;
	background: url(../images/top/bg_wrap.webp) no-repeat right center;
	background-size: 100% 100%;
	transition: all 2s ease;
	transform: translateX(0);
}

.no-webp .top_about_line_wrap {
	background: url(../images/top/bg_wrap.png) no-repeat right center;
	background-size: 100% 100%;
}

.top_about_line_wrap02 {
	width:130%;
	position: absolute;
	top:-20%;
	left:-30%;
	z-index: -1;
	aspect-ratio: 1/1.2;
	pointer-events: none;
	background: url(../images/top/bg_wrap.webp) no-repeat right center;
	background-size: 100% 100%;
	transition: all 2s ease;
	transform: translateX(0) scale(-1,1);
}

.no-webp .top_about_line_wrap02 {
	background: url(../images/top/bg_wrap.png) no-repeat right center;
	background-size: 100% 100%;
}

.top_about_image.move .top_about_line_wrap {
	transform: translateX(-100%);
}

.company_outline.move .top_about_line_wrap {
	transform: translateX(100%) scale(-1,1);
}



@media screen and (max-width: 1300px) {
	.top_about_line {
		top:35%;
	}
	.top_about_line02 {
		top:100%;
	}	
}

@media screen and (max-width: 1125px) {
	.top_about_line02 {
		top:110%;
	}	
}

@media screen and (max-width: 970px) {
	.top_about_line02 {
		top:115%;
	}	
}

@media screen and (max-width: 700px) {
	.top_about_line {
		top:15%;
		background-size: 1400px 519px;
	}
	.top_about_line02 {
		top:90%;
		transform: translateX(-50%) translateY(-50%) rotate(-5deg) scale(1, -1);
	}	

	.top_about_line_wrap {
		top:-32%;
	}
}

.top_about_section {
	display: flex;
}

.top_about_item {
	width: calc(100% - 431px);
	margin-right: 175px;
}

.top_about_item .title {
	font-size: 44px;
	font-weight: 700;
	letter-spacing: 0.05em;
	line-height: 1.39;
	margin-bottom: 35.8px;
}

.top_about_item .text {
	font-size: 16px;
	font-weight: 500;
	letter-spacing: 0.06em;
	line-height: 2.2;
}

.top_about_button {
	width: 259px;
	padding-top: 160px;
}

.top_about_button a {
	width: 100%;
	height: 75px;
	font-size: 17px;
	letter-spacing: 0.06em;
	transition: all .3s ease;
}

.top_about_button .button_link.button_cont .text_inner  {
	font-weight: 500;
}

.top_about_image {
	display: flex;
	justify-content: flex-end;
	margin-top: 40px;
	position:relative;
}

.top_about_image .about_image {
	/* max-width: 1500px; */
	width:65%;
}


@media screen and (max-width: 1300px) {
	.top_about_image .about_image {
		width:80%;
	}	
}

.top_about_image img {
	width: 100%;
}

.top_business {
	position: relative;
	z-index: 2;
	margin-top: 110px;
}

.business_list .business_item a {
	display: flex;
	align-items: center;
	padding: 50px 0;
	position: relative;
	border-bottom: 1px solid #C9C9C9;
}

#Top .business_list .business_item a {
	padding: 50px 0;
}


.business_list .business_item:first-child a {
	padding-top: 0 !important;
}

.business_list .business_item:last-child a {
	border-bottom: none;
}

.business_list .business_item .business_image {
	width: 390px;
	margin-right: 55.5px;
}

.business_list .business_item .business_image .image {
	border-radius: 30px;
	position: relative;
	width: 100%;
	padding-top: 48.71%;
	overflow: hidden;
}

.business_list .business_item .business_image img {
	position: absolute;
	left: 0;
	top: 0;
	z-index: 1;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.business_list .business_item .business_info {
	width: calc(100% - 445.5px);
	padding-right: 150px;
	transition: transform .3s ease-out;
	position: relative;
}

.business_list .business_item .business_info .title {
	font-size: 28px;
	font-weight: 700;
	letter-spacing: 0.08em;
	line-height: 1.14;
	margin-bottom: 20.3px;
}

.business_list .business_item .business_info .text {
	font-size: 16px;
	font-weight: 500;
	letter-spacing: 0.06em;
	line-height: 1.8;
}

.business_list .business_item .business_button {
	position: absolute;
	right: 10px;
	 top: 50%;
	transform: translateY(-50%); 
	z-index: 1;
}

.top_news {
	padding: 312.5px 0 120px;
	position: relative;
	z-index: 2;
}

.top_news::before {
	content: '';
	position: absolute;
	left: 50%;
	top: 95px;
	z-index: 2;
	width: 122px;
	height: 130px;
	background: url('../images/top/news_bg_red.webp') no-repeat;
	background-size: cover;
	opacity: 0;
	transform: translateY(30px);
	transition: all 0.5s 0.4s ease-out;
}

.no-webp .top_news::before {
	background: url('../images/top/news_bg_red.png') no-repeat;
	background-size: 100% 100%;
}

.move.top_news::before {
	opacity: 1;
	transform: translateY(0);
}

.top_news_wrap {
	position: relative;
	display: flex;
	justify-content: flex-end;
}

.top_news .heading_box {
	position: absolute;
	left: 0;
	top: -52.5px;
	z-index: 3;
}

.top_news_button {
	position: absolute;
	left: 0;
	top: -22.5px;
	z-index: 3;
	transform: translateY(100%);
	margin-top: 52.5px;
	width:  259px;
}

.top_news_button a {
	max-width: 259px;
	width: 100%;
	height: 75px;
	font-size: 17px;
	letter-spacing: 0.06em;
	font-weight: 500;
}

.top_news_button .button_link.button_cont .text_inner  {
	font-weight: 500;
}

#Top .news_list {
	width: calc(100% - 300px);
	display: flex;
	justify-content: flex-end;
}

#Top .news_list ul {
	width: 100%;
	max-width: 710px;
}

.news_list li+li {
	margin-top: 36px;
}

.news_list a {
	display: flex;
	word-break: keep-all;
	white-space: nowrap;
	align-items: flex-start;
}

.news_list .date {
	min-width: 90px;
	font-size: 16px;
	line-height: 1.8125;
	margin-right: 22px;
	display: inline-block;
}

.news_list .cate {
	font-size: 14px;
	font-weight: 500;
	letter-spacing: 0.03em;
	color: #fff;
	min-width: 90px;
	min-height: 29px;
	background: #318BCB;
	border-radius: 15px;
	margin-right: 51px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding-bottom: 2px;
}

.news_list .title {
	display: inline-block;
	font-size: 16px;
	font-weight: 500;
	letter-spacing: 0.06em;
	line-height: 1.5;
	transform: translateX(0);
	transition: transform .3s ease-out;
	word-break: break-all;
	white-space: normal;
	padding-top: 1px;
}

.top_recruit {
	position: relative;
}

.top_recruit::before {
    content: '';
    position: absolute;
    left: 0;
    top: -45px;
    z-index: 1;
    width: 101%;
    height: 300px;
    background-image: url(../images/top/recruit_bg_white.webp);
    background-repeat: no-repeat;
    background-size: 103% 100%;
	pointer-events: none;
}

.no-webp .top_recruit::before {
	background-image: url(../images/top/recruit_bg_white.png);
	background-size: 103% 100%;
}

/* .top_recruit::after {
    content: '';
    position: absolute;
    right: 0;
	top: -47px;
    z-index: 2;
    width: 101%;
    height: 300px;
    background: url(../images/top/recruit_bg_red.webp) no-repeat;
    background-size: 103% 100%;
    clip-path: inset(0% 0% 0% 100%);
	pointer-events: none;
    transition: all 1.5s linear;
}

.no-webp .top_recruit::after {
	background: url(../images/top/recruit_bg_red.png) no-repeat;
	background-size: 100% 100%;
} 
.move.top_recruit::after { 
    clip-path: inset(0%);
}	
*/

.top_recruit .top_recruit_line_wrap {
    position: absolute;
    right: 0;
	top: 0;
    z-index: 2;
    width: 100%;
    height: 300px;

	mask-image: url(../images/top/recruit_bg_white.png);
	mask-size: 103% 100%;
	mask-repeat: no-repeat;
	mask-position:  top left;
}

.top_recruit .top_recruit_line_wrap::after {
    content: '';
    position: absolute;
    right: 0;
	top: -47px;
    z-index: 2;
    width: 101%;
    height: 300px;
    background: url(../images/top/recruit_bg_red.webp) no-repeat;
	background-position: right 20px;
    background-size: 1400px 299px;
    clip-path: inset(0% 0% 0% 100%);
	pointer-events: none;
    transition: all 5s ease-out;

	-webkit-mask-image: url(../images/top/recruit_bg_white.png);
	-webkit-mask-size: 103% 100%;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position:  top left;

	mask-image: url(../images/top/recruit_bg_white.png);
	mask-size: 103% 100%;
	mask-repeat: no-repeat;
	mask-position:  top left;
}

.no-webp .top_recruit .top_recruit_line_wrap::after {
	background: url(../images/top/recruit_bg_red.png) no-repeat;
	background-size: 100% 100%;
}

.move .top_recruit_line_wrap::after { 
    clip-path: inset(0%);
}



.top_recruit_wrap {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 10;
	padding: 365px 0 20px;
	width: 100%;
}

.top_recruit_item .heading_box {
	color: #fff;
	margin-bottom: 26px;
}

.top_recruit_info .text {
	font-size: 16px;
	font-weight: 500;
	letter-spacing: 0.06em;
	line-height: 2;
	color: #fff;
}

.top_recruit_button {
	width: 259px;
	margin-top: 40px;
}

.top_recruit_button a {
	width: 100%;
	height: 75px;
	border: 1px solid #fff;
}

.top_recruit_list {
	overflow: hidden;
    display: flex;
}

.top_recruit_list ul {
    display: flex;
    align-items: center;
}

.top_recruit_list li {
	width: 530px;
	height: 445px;
	overflow: hidden;
}

.top_recruit_list .image {
	position: relative;
	width: 100%;
	padding-top: 97.96%;
}

.top_recruit_list .image::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	z-index: 3;
	width: 100%;
	height: 100%;
	opacity: .3;
	background: #303030;
}

.top_recruit_list img {
	position: absolute;
	left: 0;
	top: 0;
	z-index: 1;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.top_recruit_list.list02 {
	transform: rotate(180deg);
	margin:-1px 0 0 0;
}

.top_recruit_list.list02 li {
	transform: rotate(180deg);
	height: 375px;
}

.top_recruit_list.list02 .image {
	padding-top: 70.75%;
}

.top_recruit_list ul:nth-child(odd) {
    animation-name: image-loop-left1;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}

.top_recruit_list ul:nth-child(even) {
    animation-name: image-loop-left2;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}


@keyframes image-loop-left1 {
    0% {
        transform: translateX(100%);
    }

    100% {
        transform: translateX(-100%);
    }

}

@keyframes image-loop-left2 {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-200%);
    }

}

@media screen and (min-width: 960px) {
	.button_link.button_cont.gray:hover {
		background: #F4A323;
		transition: all .3s ease;
	}
	
	.button_link.gray:hover .link_icon {
	    background: #F4A323;
	}

	.business_list .business_item a:hover .business_info {
		transform: translateX(10px);
		transition: transform .3s ease-out;
	}
	
	.business_list .business_item a:hover .button_link .link_icon .icon_arrow {
		opacity: 1;
		transform: translate(-50%, -50%) scale(1);
	}
		
	.business_list .business_item a:hover .button_link .link_icon::before {
		transform: translate(-50%, -50%) scale(1);
	}
	
	.news_list a:hover .title {
		transform: translateX(10px);
		transition: transform .3s ease-out;
	}
	
	.top_recruit_button .button_link.button_cont:hover {
		background: #E61F1E;
		border: 1px solid #E61F1E;
	}
	
}

/* @media screen and (max-width: 1830px) {
	.top_about_image .about_image {
		max-width: 1420px;
	}
}

@media screen and (max-width: 1800px) {
	.top_about_image .about_image {
		max-width: 1320px;
	}
}

@media screen and (max-width: 1780px) {
	.top_about_image .about_image {
		max-width: 1120px;
	}
}

@media screen and (max-width: 1420px) {
	.top_about_image .about_image {
	    max-width: 1097px;
	}
} */

@media screen and (max-width: 1400px) {
	
	.top_news {
		padding: 185px 0 120px;
		position: relative;
	}
	
	.top_news::before {
		content: '';
		position: absolute;
		left: 50%;
		top: 8px;
		z-index: 2;
		width: 122px;
		height: 130px;
		background: url('../images/top/news_bg_red.webp') no-repeat;
		background-size: cover;
		opacity: 0;
		transition: all .5s ease-out 0.4s;
	}

	.no-webp .top_news::before {
		background: url('../images/top/news_bg_red.png') no-repeat;
		background-size: 100% 100%;
	}
}


@media screen and (max-width: 1300px) {
	.top_about_image {
		margin-top: 0;
	}
}

@media screen and (max-width: 1205px) {
	
	.top_about_item .title {
	    font-size: 38px;
	}

}

@media screen and (max-width: 1180px) {
	.top_about_item .title {
	    font-size: 28px;
	}
	
	.top_about_item {
	    width: calc(100% - 359px);
	    margin-right: 100px;
	}
	
	.top_about_button {
		padding-top: 127px;
	    width: 259px;
		
	}

}


@media screen and (max-width: 1105px) {
	
	.news_list .cate {
		margin-top: 1px;
	    padding-bottom: 0;
	}
	
}

@media screen and (max-width: 970px) {
	
	.top_recruit_list li {
		width: 371px;
		height: 361.5px;
	}

	.top_recruit_list.list02 li {
		height: 262.5px;
	}

	.top_recruit_wrap {
		padding-top: 230px;
	}
}

@media screen and (max-width: 930px) {

	.top_about_image .about_image {
		max-width: 697px;
	}
	
	.business_list .business_item .business_info .title {
	    font-size: 22px;
	}
}


@media screen and (max-width: 880px) {

	#Top .news_list {
		width: calc(100% - 250px);
	}
	
	.news_list .cate {
		position: relative;
		top: -1px;
		margin-top: 0;
		min-height: 25px;
	}
	
	.top_about_section {
		display: block;
	}
	
	.top_about_item {
		width: 100%;
		margin-right: 0;
	}
	
	.top_about_button {
		margin: 32px auto 0;
		padding-top: 0;
	}
}

@media screen and (max-width: 850px) {
	.top_news .heading_box {
	    top: 0;
	}
	
	.news_list .date,
	.news_list .title,
	.news_list .cate {
		font-size: 12px;
	}

	.news_list .cate {
		margin-right: 20px;
	}
	
	.top_news_button {
	    top: 0;
	}
	
	.top_news_button {
	    width: 200px;
	}
	
	.top_news_button a {
	    max-width: 200px;
	    height: 70px;
		line-height: 1.8;
	    font-size: 14px;
	}
	
	.top_news_button .button_link.button_cont .text_inner {
	    line-height: 1.9;
	}
	
}

@media screen and (max-width: 800px) {
	/* heading */
	.heading_box {
		margin-bottom: 35px;
	}
	
	.heading_box .eng {
		font-size: 34px;
		line-height: 1.02;
	}
	
	.heading_box .jap {
		margin-top: 2px;
		font-size: 16px;
		line-height: 1.43;
	}
	
	.top_about {
		padding-bottom: 0;
	}
	
	.top_about_section {
		display: block;
	}
	
	.top_about_item {
		width: 100%;
		margin-right: 0;
	}
	
	.top_about_item .title {
		line-height: 1.3;
		font-size: 26px;
		margin-bottom: 16.7px;
	}
	
	.top_about_item .text {
		font-size: 16px;
		line-height: 1.78;
	}
	
	.top_about_button {
		max-width: 290px;
		width: 100%;
		margin: 32px auto 0;
		padding-top: 0;
	}
	
	.top_about_button a {
		height: 65px;
	}
	
	.top_about_image {
		margin-top: 76px;
		display: flex;
		justify-content: flex-end;
	}
	
	.top_about_image .about_image {
		width: calc(100% - 30px);
	}
	
	.top_business {
		margin-top: 48px;
	}
	
	.business_list .business_item a {
		display: block;
		padding: 35px 0 30px;
	}
	
	.business_list .business_item:first-child a {
		padding: 0 0 30px;
	}
	
	.business_list .business_item:last-child a {
		border-bottom: none
	}
	
	.business_list .business_item .business_image .image {
		border-radius: 20px;
	}
	
	.business_list .business_item .business_image {
		width: 100%;
		margin-right: 0;
		margin-bottom: 27px;
	}
	
	.business_list .business_item .business_info {
		position: relative;
		width: 100%;
		padding-right: 0;
	}
	
	.business_list .business_item .business_info .text {
		text-align: justify;
	}
	
	.business_list .business_item .business_info .title {
		font-size: 22px;
		margin-bottom: 17px;
	}
	
	.business_list .business_item .business_button .link_icon {
		width: 38px;
		height: 38px;
		margin-left: 0;
	}
	
	.business_list .business_item .business_button .link_icon::before {
	    width: 7.5px;
	    height: 7.5px;
		transform: translate(-50%, -50%) scale(1);
	}
	
	.business_list .business_item .business_button {
		right: 0;
		top: -8px;
		transform: translateY(0);
	}
	
	.top_news {
		padding: 37.5px 0 80px;
	}
	
	.top_news::before {
		content: '';
		position: absolute;
		left: 50%;
		top: 0;
		width: 69px;
		height: 70px;
		background: url('../images/top/news_bg_red.webp') no-repeat;
		background-size: 100% 100%;
		transform: translateY(30px);
		margin-left: 55px;
		transition: all 0.5s 0.2s ease;
	}

	.no-webp .top_news::before {
		background: url('../images/top/news_bg_red.png') no-repeat;
		background-size: 100% 100%;
	}
	
	.top_news_wrap {
		display: block;
	}
	
	.top_news .heading_box {
		position: relative;
		left: 0;
		top: 0;
		z-index: 3;
	}
	
	.top_news .heading_box .eng {
		font-size: 39px;
	}
	
	.top_news_button {
		position: relative;
		left: 0;
		top: 0;
		transform: translateY(0);
		margin-top: 0;
		width: 100%;
	}
	.top_news_button .button_link.button_cont {
		display: flex;
	}
	
	.top_news_button a {
		max-width: 290px;
		width: 100%;
		height: 65px;
		margin: 45px auto 0;
		font-size: 17px;
	}
	
	#Top .news_list,
	.news_list {
		width: 100%;
		display: block;
	}

	.news_list a {
		display: block;
	}
	
	.news_list .date {
		font-size: 16px;
		line-height: 1.5625;
		margin-right: 14px;
		font-weight: 500;
	}
	
	#Top .news_list .cate ,
	.news_list .cate {
		font-size: 12px;
		min-width: 77.5px;
		min-height: 25px;
		margin-right: 0px;
		top: auto;
	}
	
	.news_list .title {
		margin-top: 5px;
		overflow : hidden;
		display: -webkit-box !important;
		/* text-overflow: ellipsis;
		-webkit-line-clamp: 1;
		-webkit-box-orient: vertical; */
		width: 100%;
		line-height: 1.5;
		font-size: 16px;
		letter-spacing: 0.06em;
		padding-top: 0;
	}
	
	.top_recruit_item .heading_box {
	    margin-bottom: 20px;
	}
	
	.top_recruit_item .heading_box .eng {
		font-size: 39px;
	}
	
	.top_recruit::before {
	    top: -59px;
	    height: 100%;
	    background-image: url(../images/top/sp/recruit_bg_white.webp);
	    background-repeat: no-repeat;
	    background-size: 100% auto;
	}
	.no-webp .top_recruit::before {
		background-image: url(../images/top/sp/recruit_bg_white.png);
	}

	.top_recruit .top_recruit_line_wrap::after {
		top: -59px;
		height: 100%;
		background: url(../images/top/recruit_bg_red.webp) no-repeat;
		background-position: right 50px;
		background-size: 150% auto;

		-webkit-mask-image: url(../images/top/sp/recruit_bg_white.png);
		-webkit-mask-size: 100% auto;

		mask-image: url(../images/top/sp/recruit_bg_white.png);
		mask-size: 100% auto;
	}

	/* .top_recruit::after {
		top: -59px;
	    height: 100%;
	    background: url(../images/top/sp/recruit_bg_red.webp) no-repeat;
	    background-size: 100% auto;
	}
	.no-webp .top_recruit::after {
		background-image: url(../images/top/sp/recruit_bg_red.png) !important;
	} */
	
	.top_recruit_wrap {
		padding: 117.9px 0 20px;
	}
	
	.top_recruit_info .text {
		line-height: 1.8;
	}
	
	.top_recruit_button {
		max-width: 290px;
		width: 100%;
		margin: 30px auto 0;
	}
	
	.top_recruit_button a {
		width: 100%;
		font-size: 17px;
		height: 65px;
	}
	
	.top_recruit_list li,
	.top_recruit_list.list02 li {
		width: 329px;
		height: 232.5px;
	}
	
	.top_recruit_list.list02 .image {
	    padding-top: 89.96%;
	}
}

@media screen and (max-width: 520px) {

	
	.top_recruit::before {
	    top: -49px;
	    height: 112.5px;
	    background-image: url(../images/top/sp/recruit_bg_white.webp);
	    background-repeat: no-repeat;
	    background-size: 100% 100%;
	}
	.no-webp .top_recruit::before {
		background-image: url(../images/top/sp/recruit_bg_white.png) !important;
	}
	
	.top_recruit .top_recruit_line_wrap::after {
		top: -49px;
		height: 112.5px;
		background: url(../images/top/recruit_bg_red.webp) no-repeat;
		background-position: right 50px;
		background-size: 150% auto;

		mask-image: url(../images/top/sp/recruit_bg_white.png);
		mask-size: 100% 100%;
	}
}


@media screen and (max-width: 1200px) {}

/*==========================================
  about
==========================================*/
.about_wrap {
	overflow: hidden;
	padding-bottom: 184px;
}

.about_area {
	position: relative;
	z-index: 2;
}

.about_section {
	display: flex;
	align-items: flex-start;
	position: relative;
	z-index: 3;
}

.about_section .about_info {
	width: calc(100% - 550px);
	margin-right: 70px;
}

.about_section .about_info .title {
	font-size: 33px;
	font-weight: 700;
	letter-spacing: 0.05em;
	line-height: 1.9;
	margin-bottom: 28.5px;
}

.about_section .about_info .text {
	font-size: 16px;
	font-weight: 500;
	letter-spacing: 0.06em;
	line-height: 2.18;
}

.about_section .about_image {
	width: 480px;
	border-radius: 30px;
	overflow: hidden;
}

.about_section .about_image img {
	width: 100%;
}

.about_cont {
	position: relative;
	z-index: 1;
}

.about_cont_bg_red {
	width:100%;
	height: 120vw;
	position: absolute;
	top:10%;
	left:calc(50% + 300px);
	transform: translateY(-50%);
	z-index: -1;
	aspect-ratio: 1/1.2;
	pointer-events: none;
	background: url(../images/top/line02.svg) no-repeat left center;
	background-size: 1328px 400px;
}

.business_son_item .about_cont_bg_red {
	top:5%;
	left:85%;
}

.business04area .about_cont_bg_red {
	top:5%;
	left:85%;
}

.about_cont_bg_red_wrap {
	width:130%;
	height: 120vw;
	position: absolute;
	top:0;
	right:-30%;
	transform: translateX(0) translateY(-50%);
	z-index: -1;
	aspect-ratio: 1/1.2;
	pointer-events: none;
	background: url(../images/top/bg_wrap.webp) no-repeat right center;
	background-size: 100% 100%;
	transition: all 4.5s ease-out;
}

.no-webp .about_cont_bg_red_wrap {
	background: url(../images/top/bg_wrap.png) no-repeat right center;
	background-size: 100% 100%;
}

.move > .about_cont_bg_red_wrap {
	transform: translateX(-100%);
}

@media screen and (max-width: 900px) {
	.about_cont_bg_red {		
		left:calc(50% + 100px);
		background: url(../images/top/line02.svg) no-repeat left center;
		background-size: 1328px 400px;
	}
}

@media screen and (max-width: 800px) {
	.about_cont_bg_red {
		top:-5%;
		left:calc(70%);
		background: url(../images/top/line02.svg) no-repeat left center;
		background-size: 160% auto;
	}
}

.about_item {
	margin-top: 85px;
	background: #F5F5F5;
	border-radius: 30px;
	padding: 80px 85.5px 44.5px;
	position: relative;
	z-index: 1;
}

.about_item:after {
    content: '';
    position: absolute;
	right: 93.5px;
    bottom: -105px;
    z-index: -1;
    width: 156px;
    height: 168px;
    background: url(../images/about/icon_yellow.svg) no-repeat bottom;
    background-size: cover;
	opacity: 0;
	transition: all 0.5s 0.4s ease-out;
	transform: translateY(30px);
}

.move.about_cont .about_item:after {
	opacity: 1;
	transform: translateY(0);
}

.about_head {
	padding-bottom: 59px;
	border-bottom: 1px solid #C9C9C9;
}

.about_logo {
	max-width: 495px;
	width: 100%;
	margin: 0 auto;
}

.about_box {
	padding-top: 59px;
	display: grid;
	grid-template-columns: repeat(2,1fr);
	gap: 56px;
}

.about_box .title .eng {
	font-size: 30px;
	font-weight: 700;
	line-height: 1.26;
	margin-right: 3.2px;
	display: inline-block;
}

.about_box .title .jap {
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 0.05em;
	line-height: 1.42;
}

.about_box .text {
	margin-top: 12.4px;
	font-size: 16px;
	font-weight: 500;
	letter-spacing: 0.06em;
	line-height: 2;
}

@media screen and (max-width: 1300px) {
	.about_section .about_info .title {
	    font-size: 20px;
	}
}

@media screen and (max-width: 1290px) {
	.about_item {
		padding: 40px 40px 44.5px;
	}
	.about_box {
		gap: 30px;
	}
	
	.about_box .text {
	    font-size: 14px;
	}
	
	.about_box .title .eng {
	    font-size: 20px;
	    margin-right: 2.8px;
	}
	
}

@media screen and (max-width: 1200px) {
	.about_cont::after {
	    right: -280px;
	}
}

@media screen and (max-width: 1090px) {
	.about_box .title .jap {
	    font-size: 12px;
	}
	
	.about_section .about_info {
		width: calc(100% - 420px);
		margin-right: 20px;
	}
	
	.about_section .about_image {
		width: 400px;
	}
	
	.about_cont::after {
	    right: -200px;
	}
}

@media screen and (max-width: 920px) {
	.about_box .title .jap {
	    display: block;
	}
	
		
	.about_section .about_info .title {
	    font-size: 16px;
	}
	
	.about_box .text {
	    font-size: 14px;
	}
	
	.about_section .about_info {
		width: calc(100% - 370px);
		margin-right: 20px;
	}
	
	.about_section .about_image {
		width: 350px;
	}
	
	.about_cont::after {
		right: -127px;
	}
	
}

@media screen and (max-width: 800px) {
	.about_wrap {
		overflow: hidden;
		padding-bottom: 115px;
	}
	
	.about_area {
		position: relative;
		z-index: 2;
	}
	
	.about_section {
		display: block;
	}
	
	.about_section .about_image {
		width: 100%;
		border-radius: 20px;
	}
		
	.about_section .about_info {
		width: 100%;
		margin-right: 0;
	}
	
	.about_section .about_info .title {
		font-size: 23px;
		line-height: 1.5;
		margin-bottom: 20px;
	}
	
	.about_section .about_info .text {
		font-size: 16px;
		font-weight: 500;
		letter-spacing: 0.06em;
		line-height: 1.78;
		margin-top: 21.5px;
		text-align: justify;
	}
		
	.about_item {
		margin-top: 32px;
		border-radius: 20px;
		padding: 38.5px 20px 50px;
		position: relative;
		z-index: 1;
	}
	
	.about_item:after {
		right: 60px;
	    bottom: -100px;
	    width: 150px;
	    height: 160px;
	}
	
	.about_item .cont+.cont {
		margin-top: 23px;
	}
	
	.about_head {
		padding-bottom: 30px;
	}
	
	.about_logo {
		max-width: 241px;
	}
	
	.about_box {
		padding-top: 26px;
		display: block;
	}
	
	.about_box .title .eng {
		font-size: 30px;
		margin-right: 0;
	}
	
	.about_box .title .jap {
		font-size: 14px;
	}
	
	.about_box .title .jap {
		display: block;
	}
	
	.about_box .text {
		margin-top: 13px;
		text-align: justify;
	}
	
}

@media screen and (max-width: 500px) {
	.about_item {
		padding: 38.5px 20px 25px;
	}
	
	.about_item:after {
		right: 93.5px;
	    bottom: -40px;
	    width: 70px;
	    height: 66px;
	}
	
	.about_box .title .eng {
		font-size: 25px;
		margin-right: 0;
	}
	
	.about_box .title .jap {
		display: block;
	}
}

/*==========================================
  BUSINESS
  CONTINUITY PLAN
==========================================*/
.business_bcp {
	padding-bottom: 166px;
	
	overflow: hidden;
}

.business_bcp .bcp_heading {
	max-width: 1340px;
	width: 100%;
	margin-left: auto;
	margin-right: auto;
	padding-left: 50px;
	padding-right: 50px;
	box-sizing: border-box;
}

.business_bcp .bcp_heading h3 {
	font-size: 38px;
	line-height: 1.44;
	font-weight: 700;
	letter-spacing: 0.08em;
	border-bottom: 1px solid #C9C9C9;
	margin-bottom: 75px;
	padding-bottom: 10px;
	position: relative;
}

.business_bcp .bcp_heading h3::after {
	content: '';
	position: absolute;
	right: 0;
	top: 0;
	z-index: 3;
	width: 125px;
	height: 113px;
	background: url('../images/bcp/icon_yellow.svg') no-repeat;
	background-size: cover;
	opacity: 0;
	transform: translateY(30px);
	transition: all 0.5s 0.4s ease-out;
}

.move.business_bcp .bcp_heading h3::after {
	opacity: 1;
	transform: translateY(0);
}

.bcp_area {
	padding: 60px 0;
	border-bottom: 1px solid #C9C9C9;
}

.bcp_section.section01 {
	position:relative;
	z-index: 3;
}

.bcp_section .about_cont_bg_red_wrap {
	transition: all 4s ease-out;
}


@media screen and (max-width: 800px) {
	.bcp_section .about_cont_bg_red {
		top:15%;
	}
}



.bcp_section.section01 .bcp_area {
	padding-top: 0;
}

.bcp_section:last-child .bcp_area {
	padding-bottom: 0;
	border-bottom: none;
}


.bcp_item {
	display: grid;
	grid-template-columns: repeat(2,1fr);
	gap: 71.5px 47px;
}

.bcp_area_head {
	margin-bottom: 37.5px;
	position: relative;
	padding-left: 50px;
}

.bcp_area_head .title {
	font-size: 25px;
	font-weight: 700;
	letter-spacing: 0.06em;
	line-height: 1.28;
}

.bcp_area_head .title_small,
.bcp_area_head ul {
	margin-top: 15px;
}

.bcp_area_head .title_small,
.bcp_area_head li {
	font-size: 16px;
	left: 0.06em;
	line-height: 2;
	font-weight: 500;
	position: relative;
}

.bcp_area_head li {
	padding-left: 21px;
	position: relative;
}

.bcp_area_head li::before {
	content: '';
	width: 10px;
	height: 10px;
	background: #318BCB;
	position: absolute;
	left: 0;
	top: 10px;
	z-index: 3;
}

.bcp_area_head .number {
	position: absolute;
	left: 0;
	top: 0;
	z-index: 3;
	width: 37px;
	height: 37px;
	font-weight: 700;
	font-size: 20px;
	line-height: 37px;
	background: #318BCB;
	display: flex;
	justify-content: center;
	align-items: center;
	color: #fff;
	border-radius: 100%;
}

.bcp_item .image {
	border-radius: 30px;
	overflow: hidden;
	padding-top: 60.1%;
	position: relative;
}

.bcp_item .image img {
	position: absolute;
	left: 0;
	top: 0;
	z-index: 3;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.bcp_item_cont .title {
	font-size: 18px;
	font-weight: 700;
	left: 0.06em;
	line-height: 1.66;
	margin-top: 24px;
	text-align: center;
}

.bcp_section.section11 .item01 {
	display: block;
	margin-bottom: 60px;
}

.bcp_section.section11 .item01 .image_wrap {
	display: grid;
	grid-template-columns: repeat(2,1fr);
	gap: 5px;
}

.bcp_section.section11 .image_wrap .image:first-child {
	border-radius: 30px 0 0 30px;
}

.bcp_section.section11 .image_wrap .image:last-child {
	border-radius: 0 30px 30px 0;
}

.bcp_section.section02 {
	position: relative;
}

.bcp_section.section02 .bg_red {
	position: absolute;
	width: 1189.5px;
	height: 1127px;
	top: -376.5px;
	right: -755.5px;
	z-index: -1;
	pointer-events: none;
	background: url('../images/common/red_bg.svg') right no-repeat;
	background-size: cover;
	clip-path: inset(0% 0% 100% 100%);
}

.bcp_section.section02.move .bg_red {
    clip-path: inset(0%);
    transition: 1.5s linear .2s;
}

@media screen and (max-width: 1040px) {
	#Bcp .teaser_heading .eng {
	    font-size: 60px;
	}
}

@media screen and (max-width: 1000px) {
	.bcp_section.section02 .bg_red {
		right: -900px;
	}
}


@media screen and (max-width: 800px) {
	#Bcp .teaser_heading .eng {
	    font-size: 42px;
	}
	
	 #Bcp .teaser_heading {
		bottom: 10%;
	}
	
	.business_bcp {
		overflow: hidden;
	}

	.business_bcp .bcp_heading {
		padding-left: 20px;
		padding-right: 20px;
	}
	
	.business_bcp .bcp_heading h3 {
		font-size: 26px;
		line-height: 1.23;
		margin-bottom: 33px;
	}
	
	.business_bcp .bcp_heading h3::after {
		right: 0;
		top: 2px;
		width: 115px;
		height: 101px;
	}
	
	.bcp_area {
		padding: 30px 0;
	}
	
	.bcp_item {
		display: block;
	}
	
	.bcp_item+.bcp_item {
		margin-top: 30px;
	}
	
	.bcp_area_head {
		margin-bottom: 20px;
		padding-left: 0;
	}
	
	.bcp_area_head .title {
		font-size: 22px;
		line-height: 1.45;
		padding-left: 30px;
	}
	
	.bcp_area_head .title_small,
	.bcp_area_head ul {
		margin-top: 11px;
	}
	
	.bcp_area_head .title_small,
	.bcp_area_head li {
		line-height: 1.78;
	}
	
	.bcp_area_head li {
		padding-left: 21px;
		position: relative;
	}
	
	.bcp_area_head li::before {
		top: 10px;
	}
	
	.bcp_area_head .number {
		top: 4px;
		width: 25.5px;
		height: 25.5px;
		font-size: 15px;
		line-height: 25.5px;
	}
	
	.bcp_item .image {
		border-radius: 20px;
	}
	
	.bcp_item_cont+.bcp_item_cont {
		margin-top: 30px;
	}
	
	.bcp_item_cont .title {
		padding-bottom: 10px;
		margin-top: 12px;
		white-space: nowrap;
	}
	
	
	.bcp_area:last-child .bcp_item_cont:last-child .title {
		padding-bottom: 0;
	}
	
	.bcp_section.section11 .item01 {
		display: block;
		margin-bottom: 0;
	}
	
	.bcp_section.section11 .item01 .image_wrap {
		grid-template-columns: repeat(1,1fr);
		gap: 10px;
	}
	
	.bcp_section.section11 .image_wrap .image:first-child {
		border-radius: 20px;
	}
	
	.bcp_section.section11 .image_wrap .image:last-child {
		border-radius: 20px;
	}
	
	
	.bcp_section.section02 .bg_red {
		display: none;
	}
	
}


@media screen and (max-width: 500px) {
	
	.business_bcp .bcp_heading h3::after {
		right: 0;
        top: -80px;
        width: 70px;
        height: 71px;
	}
	
}

@media screen and (max-width: 660px) {
	#Bcp .teaser_heading {
		bottom: 8%;
	}
}

@media screen and (max-width: 560px) {
	#Bcp .teaser_heading {
		bottom: 5%;
	}
}


@media screen and (max-width: 480px) {
	#Bcp .teaser_heading {
		bottom: 0;
	}
}


@media screen and (max-width: 400px) {
	#Bcp .teaser {
		overflow: visible;
		margin-bottom: 60px;
	}
	#Bcp .teaser_heading {
		bottom: -5%;
	}
}

/*==========================================
  BUSINESS
==========================================*/
.business_wrap {
	padding-bottom: 81.5px;
}

.business_wrap .business_list .business_item a {
    padding: 50px 0 50px 0;
}

.business_list .button_link .link_icon {
    width: 56px;
    height: 56px;
    margin-left: 0px;
}

.business_list .button_link .link_icon::before {
    width: 40px;
    height: 40px;
	transform: translate(-50%, -50%) scale(0.2);
}

.business_list .button_link .link_icon .icon_arrow {
	width: 14px;
	height: 14px;
	margin-left: 0.4px;
}

.business_list .button_link .link_icon .icon_arrow::before {
	width: 14px;
	height: 14px;
}

.business_section {
	border: 1px solid #C2C2C2;
	border-radius: 30px;
	padding: 65px 62px 63.5px 77px;
	margin-top: 95px;
	position: relative;
}

.business_section .hana_img {
    position: absolute;
	right: 125px;
	bottom: -40px;
    z-index: 2;
    width: 120px;
    height: 103px;
    opacity: 0;
	transition: all 0.5s 0.4s ease-out;
	transform: translateY(30px);
}

.business_section .hana_img.move {
    opacity: 1;
	transform: translateY(0);
}

.business_head {
	font-size: 30px;
	font-weight: 700;
	letter-spacing: 0.08em;
	line-height: 1.33;
	text-align: center;
	margin-bottom: 37.5px;
}

.business_section .business_cont {
	display: flex;
	align-items: flex-start;
}

.business_section .business_cont .image {
	width: 465px;
	margin-right: 73px;
	border-radius: 30px;
	overflow: hidden;
}

.business_section .business_cont .info {
	width: calc(100% - 538px);
}

.business_section .business_cont .text {
	font-size: 16px;
	letter-spacing: 0.06em;
	line-height: 2;
	font-weight: 500;
}

.business_section .business_button {
	max-width: 314px;
	width: 100%;
	margin-top: 29px;
}

.business_section .business_button a {
	width: 100%;
	height: 75px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 17px;
	font-weight: 500;
	letter-spacing: 0.06em;
	line-height: 1.5;
}

.business_section .business_button a .text {
	line-height: 1.5;
}

@media screen and (max-width: 1350px) {
	
	.business_section .business_cont .image {
		width: 400px;
		margin-right: 30px;
	}
	
	.business_section .business_cont .info {
		width: calc(100% - 430px);
	}
	
	.business_list .business_item .business_image {
	    margin-right: 20px;
	}
	
	.business_list .business_item .business_info {
	    width: calc(100% - 410px);
	    padding-right: 130px;
	}
}

@media screen and (max-width: 1220px) {
	.business_section {
	    padding: 40px 30px 70px;
	}
	
	.business_section::before {
		bottom: -66px;
	}
	
}

@media screen and (max-width: 1140px) {
	.business_section .business_cont .info > .text {
		font-size: 14px;
		letter-spacing: 0.02em;
		overflow : hidden;
		text-overflow: ellipsis;
		display: -webkit-box;
		/* -webkit-line-clamp: 5; */
		/* -webkit-box-orient: vertical; */
	}
}

@media screen and (max-width: 900px) {
	.business_section {
	    padding: 40px 20px 70px;
	}
	
	.business_section .business_cont .image {
		width: 350px;
		margin-right: 20px;
	}
	
	.business_section .business_cont .info {
		width: calc(100% - 370px);
		/* padding-right: 100px; */
	}
	
}

@media screen and (max-width: 800px) {
	.business_wrap {
		padding-bottom: 81.5px;
	}
	
	.business_wrap .business_list .business_item:first-child a {
		padding-top: 0;
	}
	
	.business_wrap .business_list .business_item a {
	    padding: 35px 0 31px;
	}
	
	.business_section {
		border-radius: 20px;
		padding: 36.15px 20px 53px;
		margin-top: 19px;
	}
	
	.business_section .hana_img {
		right: 80px;
		bottom: -41px;
	    width: 68.5px;
	    height: 60px;
	}
	
	.business_head {
		font-size: 24px;
		margin-bottom: 14.35px;
	}
	
	.business_section .business_cont {
		display: block;
	}
	
	.business_section .business_cont .image {
		width: 100%;
		margin-right: 0;
		border-radius: 20px;
		margin-bottom: 19.2px;
	}
	
	.business_section .business_cont .info {
		width: 100%;
		padding-right: 0;
	}
	
	.business_section .business_cont .info > .text {
		line-height: 1.8;
		letter-spacing: 0.06em;
		font-size: 16px;
	}
	
	.business_section .business_button {
		max-width: 290px;
		width: 100%;
		margin: 20px auto 0;
	}
	
	.business_section .business_button a {
		width: 100%;
		height: 65px;
	}
	
	.business_list .business_item .business_info {
		padding-right: 0;
		width: 100%;
	}
}

/* BUSINESS01 ガス充填業務*/
.business_son_wrap {
	padding-bottom: 0;
	overflow: hidden;
}

.business_son_secton {
	position: relative;
	z-index: 5;
}

.business_son_heading h3 {
	font-size: 38px;
	line-height: 1.44;
	font-weight: 700;
	letter-spacing: 0.08em;
	border-bottom: 1px solid #C9C9C9;
	margin-bottom: 75px;
	padding-bottom: 10px;
	position: relative;
}

.business_son_flex {
	display: flex;
	align-items: flex-start;
	margin-bottom: 94px;
	position: relative;
	z-index: 3;
}

.business_son_flex .image {
	width: 438px;
	margin-right: 85px;
	border-radius: 30px;
	overflow: hidden; 
}

.business_son_flex .image img {
	width: 100%;
}

.business_son_flex .info {
	width: calc(100% - 523px);
}

.business_son_flex .info  .title {
	font-size: 27px;
	line-height: 1.5;
	font-weight: 700;
	letter-spacing: 0.08em;
	margin-bottom: 20px;
}

.business_son_flex .info .text {
	font-size: 16px;
	line-height: 2;
	letter-spacing: 0.06em;
	font-weight: 500;
}

.business_son_area+.business_son_area {
	margin-top: 121.75px;
}

.business_son_area.area01 {
	position: relative;
}

.box_wrapper {
	position:relative;
}

.box_wrapper .about_cont_bg_red {
	top:-5%;
}

.box_wrapper .about_cont_bg_red.comp {
	top:0;
}

.box_wrapper .about_cont_bg_red.comp svg {
	width:40%;
}

@media screen and (max-width: 800px) {
	.box_wrapper .about_cont_bg_red {
		top:-10%;
	}
}


.business_son_area.area02 {
	position: relative;
}

.business_son_area.area02::before {
	content: '';
	position: absolute;
	left: -70px;
	top: -23px;
	z-index: -1;
	width: 124px;
	height: 110px;
	background: url('../images/bcp/icon_yellow.svg') no-repeat;
	background-size: cover;
	opacity: 0;
	transition: all 0.5s 0.4s ease-out;
	transform: translateY(30px);
}

.business_son_area.area02.move::before {
	opacity: 1;
	transform: translateY(0);
}

.business_son_item {
	display: grid;
}

.business_son_area.grid02 .business_son_item {
	grid-template-columns: repeat(2,1fr);
	gap: 30px ;
}

.business_son_area.grid03 .business_son_item {
	grid-template-columns: repeat(3,1fr);
	gap: 22px
}

.business_son_area .head_box {
	text-align: center;
	margin-bottom: 47.5px;
	position: relative;
	z-index: 2;
}

.business_son_area .head_box .title {
	font-size: 34px;
	letter-spacing: 0.08em;
	line-height: 1.26;
	font-weight: 700;
}

.business_son_area .head_box .title_small {
	font-size: 16px;
	letter-spacing: 0.06em;
	line-height: 1.5;
	font-weight: 500;
	position: relative;
	margin-top: 18.8px;
}

.business_son_item .business_son_cont .image {
	border-radius: 30px;
	overflow: hidden;
	padding-top: 60.1%;
	position: relative;
}

.business_son_item .business_son_cont .image img {
	position: absolute;
	left: 0;
	top: 0;
	z-index: 3;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.business_son_item .business_son_cont .title {
	font-size: 18px;
	font-weight: 700;
	letter-spacing: 0.06em;
	line-height: 1.77;
	margin-top: 18px;
	text-align: center;
}

.business_son_list {
	display: grid;
	grid-template-columns: repeat(4,1fr);
	gap: 32.9px;
	padding: 98px 0 100px;
	position: relative;
	margin-top: 148.5px;
}

.business_son_list::before {
	content: '';
	position: absolute;
	left: -100%;
	top: 0;
	z-index: -1;
	width: calc(100% + 100vw);
	height: 100%;
	background: #F5F5F5;
}

.business_son_list .image {
	border-radius: 30px;
	position: relative;
	width: 100%;
	overflow: hidden;
	padding-top: 64.91%;
}

.business_son_list .image img {
	position: absolute;
	left: 0;
	top: 0;
	z-index: 3;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.business_son_list .business_item a {
	display: block;
	position: relative;
}

.business_son_list .business_item.is_active .image::after {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	z-index: 5;
	width: 100%;
	height: 100%;
	background: #303030;
	opacity: .5;
}

.business_son_list .business_info .title {
	font-size: 19px;
	line-height: 1.44;
	margin-top: 18px;
	font-weight: 700;
}

.business_son_list .business_info {
	position: relative;
}

.business_son_list .button_link {
	position: absolute;
	top: 0;
	right: 0;
	z-index: 4;
}

.business_son_list .button_link .link_icon {
    margin-left: 0;
}


/* BUSINESS02 エリア配送業務*/
.business_son_wrap.son_wrap02 .business_son_item {
	position: relative;
	z-index: 3;
}

.business_son_wrap.son_wrap02 .business_son_item .hana_img04 {
	position: absolute;
	left: -33px;
	bottom: 0px;
	z-index: 5;
	width: 124px;
	height: 110px;
	opacity: 0;
	transform: translateY(30px);
	transition: all 0.5s 0.4s ease-out;
}

.business_son_wrap.son_wrap02 .business_son_item .hana_img04.move {
	opacity: 1;
	transform: translateY(0);
}



.business_son_large {
	margin-top: 66px;
}

.business_son_large .large_cont .image_wrap {
	display: grid;
	grid-template-columns: repeat(2,1fr);
	gap: 5px;
	position: relative;
}

.business_son_wrap.son_wrap03 .business_son_large .large_cont .image_wrap .hana_img05 {
	position: absolute;
	left: 13px;
	bottom: -44px;
	z-index: 5;
	width: 124px;
	height: 110px;
	opacity: 0;
	transform: translateY(30px);
	transition: all 0.5s 0.4s ease-out;
}

.business_son_wrap.son_wrap03 .business_son_large .large_cont .image_wrap .hana_img05.move {
	opacity: 1;
	transform: translateY(0);
}

.business_son_large .large_cont .title {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.06em;
    line-height: 1.66;
    margin-top: 24px;
    text-align: center;
}

.business_son_large .image {
	border-radius: 30px;
	overflow: hidden;
	padding-top: 60.1%;
	position: relative;
}

.business_son_large .image img {
	position: absolute;
	left: 0;
	top: 0;
	z-index: 3;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.business_son_large .image_wrap .image:first-child {
	border-radius: 30px 0 0 30px;
}

.business_son_large .image_wrap .image:last-child {
	border-radius: 0 30px 30px 0;
}

/* BUSINESS04 保安センター業務*/
.business_son_flex {
	position:relative;
}

@media screen and (max-width: 800px) {
	.business_son_flex .about_cont_bg_red {
		top:10%;
	}
	.business_son_flex .about_cont_bg_red_wrap {
		top:25%;
	}
}


.business_son_flex .info .text+.text {
	margin-top: 1em;
}

.business_son_flex .info .text .underline {
	background: linear-gradient(#1d1d1d,#1d1d1d) left bottom no-repeat;
	background-size: 100% 1px;
	display: inline-block;
}
.business04_box {
	background: #f5f5f5;
	border-radius: 30px;
	padding: 60px 92px;
	position: relative;
}

.business04_box .hana_img02 {
	position: absolute;
	left: 72.5px;
	bottom: -80px;
	z-index: 5;
	width: 158px;
	height: 145px;
	opacity: 0;
	transform: translateY(30px);
	transition: all 0.5s 0.4s ease-out;
}

.business04_box .hana_img02.move {
	opacity: 1;
	transform: translateY(0);
}

.business04_box .box_list {
	padding-bottom: 45px;
}

.business04_box .box_list ul {
	display: flex;
	flex-direction: column;
	height: 240px;
	flex-wrap: wrap;
	justify-content: flex-start;
	align-items: flex-start;
}

.business04_box .box_list li {
	position: relative;
	padding-left: 56px;
	margin-bottom: 28px;
	margin-right: 60px;
}

.business04_box .box_list .title {
	font-size: 20px;
	font-weight: 700;
	letter-spacing: 0.08em;
	line-height: 1.45;
}

.business04_box .box_list .title .small {
	font-size: 15px;
}

@media screen and (max-width: 1200px) {
	.business04_box .box_list .title .small {
		display: block;
	}	
}

@media screen and (max-width: 1030px) {
	.business04_box .box_list .title .small {
		display: inline;
	}	
}

.business04_box .box_list .number {
    position: absolute;
    left: 0;
    top: 0;
    z-index: 3;
    width: 37px;
    height: 37px;
    font-weight: 700;
    font-size: 20px;
    line-height: 37px;
    background: #318BCB;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    border-radius: 100%;
}

.business04_box .info {
	font-size: 16px;
	line-height: 2;
	letter-spacing: 0.06em;
	font-weight: 500;
	padding-top: 38.7px;
	border-top: 1px solid #C9C9C9;
}

.business04_box .info font {
	color: #318BCB;
}

.business_investigation {
	margin-top: 107.5px;
}

.business_investigation_section  {
	display: flex;
}
.business_investigation_section .investigation_list {
	width: calc(100% - 849px);
}

.business_investigation_section .investigation_list li {
	padding-left: 45px;
	position: relative;
}

.business_investigation_section .investigation_list li+li {
	margin-top: 22px;
}

.business_investigation_section .investigation_list li::before {
	content: '';
	position: absolute;
	left: 0;
	top: 5px;
	z-index: 2;
	width: 25px;
	height: 25px;
	background: url('../images/business/icon_check.svg') no-repeat;
	background-size: cover;
}

.business_investigation_section .investigation_list .title {
	font-size: 20px;
	letter-spacing: 0.08em;
	line-height: 1.45;
	font-weight: 700;
}

.business_investigation_section .investigation_list .small {
	margin-top: 6px;
	font-size: 16px;
	letter-spacing: 0.06em;
	line-height: 1.43;
	font-weight: 500;
}


.business_investigation_section .investigation_box .title {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.06em;
    line-height: 1.66;
    margin-top: 24px;
    text-align: center;
}

.business_investigation_section .investigation_box .image_wrap {
	display: grid;
	grid-template-columns: repeat(2,1fr);
	gap: 5px;
	width: 759px;
	margin-left: 90px;
}

.business_investigation_section .investigation_box .image {
	border-radius: 30px;
	overflow: hidden;
	padding-top: 93.5%;
	position: relative;
}

.business_investigation_section .investigation_box .image img {
	position: absolute;
	left: 0;
	top: 0;
	z-index: 3;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.business_investigation_section .investigation_box .image_wrap .image:first-child {
	border-radius: 30px 0 0 30px;
}

.business_investigation_section .investigation_box .image_wrap .image:last-child {
	border-radius: 0 30px 30px 0;
}

@media screen and (min-width: 960px) {
	.business_son_list .business_item a:hover .button_link.button_cont .text_inner .text {
		transform: translateY(-100%);
	}
	
	.business_son_list .business_item a:hover .button_link .link_icon::before {
		transform: translate(-50%, -50%) scale(1);
	}
	
	.business_son_list .business_item a:hover .button_link .link_icon .icon_arrow {
		opacity: 1;
		transform: translate(-50%, -50%) scale(1);
	}
	
	.business_son_list .business_item .button_link .link_icon::before {
		width: 17px;
		height: 17px;
	}
	
	.business_son_list .business_item .button_link .link_icon .icon_arrow {
	    width: 8px;
	    height: 9px;
	}
	
	.business_son_list .business_item .button_link .link_icon .icon_arrow::before {
	    width: 8px;
	    height: 9px;
	}
	
}


@media screen and (max-width: 1380px) {
	.business_son_area.area02::before {
		left: 0px;
		top: -100px;
	}
	
	.business_son_wrap.son_wrap02 .business_son_item::before {
		left: 0px;
	}
	
	.business_investigation_section .investigation_box .image_wrap {
	    width: 600px;
	    margin-left: 20px;
	}
	
	.business_investigation_section .investigation_list {
	    width: calc(100% - 620px);
	}
	
}


@media screen and (max-width: 1300px) {
	.business04_box {
	    padding: 60px 30px;
	}
	
	.business04_box .box_list li {
	    margin-right: 20px;
	}
	
}


@media screen and (max-width: 1120px) {
	.business_son_list .business_info .title {
	    font-size: 16px;
	}
}

@media screen and (max-width: 900px) {
	.business_son_list {
	    gap: 10px;
	}
	
	.business_son_list .business_info .title {
	    font-size: 14px;
	}
	
	.business04_box .box_list .title .small {
	    font-size: 12px;
	}
	
	.business_investigation_section .investigation_list .title {
	    font-size: 16px;
	}
	
	.business_investigation_section .investigation_list li {
	    padding-left: 20px;
	}
	
	.business_investigation_section .investigation_list li::before {
	    top: 5px;
	    width: 15px;
	    height: 15px;
	}
	
	.business_son_flex .info .title {
		line-height: 1.7;
	}
}

@media screen and (max-width: 1120px) {
	.business_son_flex .image {
		width: 400px;
		margin-right: 20px;
	}
	
	.business_son_flex .info {
		width: calc(100% - 420px);
	}
	
	.business_son_flex .info .title {
	    font-size: 20px;
	}
	
	.business04_box .box_list .title {
	    font-size: 16px;
	}
	
	.business04_box .box_list .number {
	    width: 30px;
	    height: 30px;
	    line-height: 30px;
		top: -2px;
		font-size: 18px;
	}
	
	.business04_box .box_list li {
		padding-left: 45px;
	}
	
	.business_investigation_section .investigation_box .image_wrap {
	    width: 500px;
	}
	
	.business_investigation_section .investigation_list {
	    width: calc(100% - 520px);
	}
}

@media screen and (max-width: 1030px) {
	
	.business04_box .box_list ul {
		height: auto;
		display: block;
	}
	
	.business_son_area .head_box .title {
	    font-size: 28px;
	}
}

@media screen and (max-width: 920px) {
	.business_son_item .business_son_cont .title {
	    font-size: 16px;
	}
	
	.business_son_flex .info .text {
	    font-size: 14px;
	}
}

@media screen and (max-width: 900px) {
	.business_son_area.grid03 .business_son_item {
	    gap: 10px;
	}
	
	.business_investigation_section .investigation_box .image_wrap {
	    width: 400px;
	}
	
	.business_investigation_section .investigation_list {
	    width: calc(100% - 420px);
	}
}


@media screen and (max-width: 800px) {
	.business_son_heading h3 {
		font-size: 26px;
		margin-bottom: 33.5px;
		padding-bottom: 9px;
		position: relative;
	}
	
	.business_son_flex {
		display: block;
		margin-bottom: 20px;
	}
	
	.business_son_flex .image {
		width: 100%;
		margin-right: 0;
		border-radius: 20px;
		margin-bottom: 22px;
	}
	
	.business_son_flex .info {
		width: 100%;
	}
	
	.business_son_flex .info  .title {
		font-size: 19px;
		letter-spacing: 0.02em;
		margin-bottom: 15px;
		line-height: 1.6;
	}
	
	.business_son_flex .info .text {
		font-size: 16px;
		line-height: 1.8;
	}
	
	.business_son_area+.business_son_area {
		margin-top: 73px;
	}
	
	.business_son_area.area01 {
		position: relative;
	}
	
	.business_son_area.area01 .bg_red {
		width: 500px;
		height: 410px;
		top: -161px;
		right: -290px;
	}
	
	.business_son_area.area02::before {
		left: -9.5px;
		top: -79px;
		width: 65px;
		height: 60px;
	}
	
	.business_son_item {
		display: block;
		margin-bottom: 60px;
	}
	
	.business_son_area .head_box {
		text-align: left;
		margin-bottom: 47.5px;
	}
	
	.business_son_area .head_box .title {
		font-size: 24px;
		letter-spacing: 0.06em;
		text-align: center;
	}
	
	.business_son_area .head_box .title_small {
		font-size: 16px;
		margin-top: 13.3px;
	}
	
	.business_son_item .business_son_cont+.business_son_cont {
		margin-top: 33.3px;
	}
	
	.business_son_item .business_son_cont .image {
		border-radius: 20px;
	}
	
	.business_son_item .business_son_cont .title {
		font-size: 17px;
		margin-top: 14px;
		line-height: 1.88;
	}
	
	.business_son_list {
		display: block;
		padding: 52px 0 110px;
		margin-top: 80px;
	}
	
	.business_son_list .business_image {
		width: 122px;
		height: 79px;
		margin-right: 18px;
		overflow: hidden;
	}
	
	.business_son_list .image {
		border-radius: 20px;
		height: 100%;
	}
	
	.business_son_list .business_item+.business_item {
		margin-top: 25px;
	}
	
	.business_son_list .business_item a {
		display: flex;
		align-items: center;
		position: relative;
	}
	
	.business_son_list .business_info .title {
		font-size: 17px;
		margin-top: 0;
	}
	
	.business_son_list .business_info {
		width: calc(100% - 140px);
	}
	
	.business_son_list .button_link {
		top: 50%;
		transform: translateY(-50%);
	}
	
	.business_son_list .business_button .link_icon {
		width: 25px;
		height: 25px;
		margin-left: 0;
	}
	
	.business_son_list .business_button .link_icon::before {
		width: 7.5px;
		height: 7.5px;
		transform: translate(-50%, -50%) scale(1);
	}
	
	/* BUSINESS02 エリア配送業務*/
	
	.business_son_wrap.son_wrap02 .business_son_item .hana_img04 {
		left: 0;
		bottom: 13px;
		width: 67px;
		height: 60px;
	}
	
	.business_son_wrap.son_wrap02 .business_son_flex .bg_red {
		position: absolute;
		width: 500px;
		height: 410px;
		top: 28px;
		right: -290px;
		z-index: -1;
		pointer-events: none;
		background: url('../images/common/red_bg.svg') right no-repeat;
		background-size: cover;
		clip-path: inset(0% 0% 100% 100%);
		transform: rotate(351deg);
	}
	
	.business_son_wrap.son_wrap02 .business_son_secton.move .business_son_flex .bg_red {
	    clip-path: inset(0%);
	    transition: 1.5s linear .2s;
	}
	
	/* BUSINESS03  LPGバルク供給システム*/
	.business_son_wrap.son_wrap03 .business_son_area.area01 .bg_red {
		top: 84px;
		right: -290px;
	}
		
	.business_son_large {
		margin-top: 31.8px;
	}
	
	.business_son_large .large_cont .image_wrap {
		display: block;
	}
	
	.business_son_large .large_cont .title {
		font-size: 17px;
		margin-top: 14px;
	}
	
	.business_son_large .image {
		border-radius: 20px;
	}
	
	.business_son_large .image+.image {
		margin-top: 2px;
	}
	
	.business_son_large .image_wrap .image:first-child {
		border-radius: 20px 20px 0 0;
	}
	
	.business_son_large .image_wrap .image:last-child {
		border-radius: 0 0 20px 20px;
	}
	
	.business_son_wrap.son_wrap03 .business_son_large .large_cont .image_wrap .hana_img05 {
		left: 0;
		bottom: -37px;
		width: 70px;
		height: 65px;
	}
	
	/* BUSINESS03 保安センター業務*/
	.business_son_wrap.son_wrap04 .business_son_area.area01 .bg_red {
		top: -142px;
		right: -317px;
	}
		
	.business04_box {
		border-radius: 20px;
		padding: 33px 23px 30px;
	}
	
	.business04_box .hana_img02 {
		left: 20px;
		bottom: -25px;
		z-index: 5;
		width: 70px;
		height: 60px;
	}

	
	.business04_box .box_list {
		padding-bottom: 25px;
	}
	
	.business04_box .box_list ul {
		display: block;
		height: auto;
	}
	
	.business04_box .box_list li {
		padding-left: 42px;
		margin-bottom: 0px;
		margin-right: 0;
	}
	
	.business04_box .box_list li+li {
		margin-top: 14px;
	}
	
	.business04_box .box_list .title {
		font-size: 17px;
	}
	
	.business04_box .box_list .title .small {
		font-size: 13px;
		display: inline;
	}
	
	.business04_box .box_list .number {
	    width: 26.5px;
	    height: 26.5px;
	    font-size: 15px;
	    line-height: 26.5px;
	}
	
	.business04_box .info {
		line-height: 1.7;
		padding-top: 22.2px;
	}
	
	.business_investigation {
		margin-top: 68.5px;
	}
	
	.business_investigation_section  {
		display: block;
		margin-bottom: 57px;
	}
	
	.business_investigation_section .investigation_list {
		width: 100%;
	}
	
	.business_investigation_section .investigation_list li {
		padding-left: 39px;
	}
	
	.business_investigation_section .investigation_list li+li {
		margin-top: 20px;
	}
	
	.business_investigation_section .investigation_list li::before {
		width: 25px;
		height: 25px;
		top: 3px;
	}
	
	.business_investigation_section .investigation_list .title {
		font-size: 20px;
	}
	
	.business_investigation_section .investigation_list .small {
		margin-top: 6px;
		font-size: 16px;
		letter-spacing: 0.02em;
	}
	
	.business_investigation_section .investigation_box .title {
	    font-size: 17px;
	    margin-top: 12px;
	}
	
	.business_investigation_section .investigation_box .image_wrap {
		display: grid;
		gap: 2px;
		width: 100%;
		margin-left: 0;
		margin-top: 34px;
	}
	
	.business_investigation_section .investigation_box .image {
		border-radius: 20px;
		padding-top: 93.39%;
	}
	
	
	.business_investigation_section .investigation_box .image_wrap .image:first-child {
		border-radius: 20px 0 0 20px;
	}
	
	.business_investigation_section .investigation_box .image_wrap .image:last-child {
		border-radius: 0 20px 20px 0;
	}
	
}

/*==========================================
  RECRUIT
==========================================*/

.recruit_wrap {
	padding-bottom: 80px;
}

#Recruit .recruit_wrap {
	overflow: hidden;
}

.recruit_wrap .business_list .business_item a {
    padding: 50px 0;
}

.recruit_wrap .business_list .business_item .business_info {
	padding-right: 170px;
}

.recruit_swiper {
	margin-top: 130px;
	position: relative;
}

.recruit_swiper::before {
	content: '';
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	top: -92.5px;
	z-index: -1;
	width: 141px;
	height: 150px;
	background: url('../images/recruit/icon_red.svg') no-repeat;
	background-size: cover;
	margin-left: 90px;
	opacity: 0;
	transform: translateY(30px);
	transition: all 0.5s 0.4s ease-out;
}

.recruit_swiper.move::before {
	opacity: 1;
	transform: translateY(0);
}

.recruit_interview_button {
	position: absolute;
	right: 0;
	top: 20px;
	z-index: 3;
	width: 259px;
	text-align: center;
}

.recruit_interview_button a {
	max-width: 259px;
	width: 100%;
	height: 75px;
	font-size: 17px;
	letter-spacing: 0.06em;
	font-weight: 500;
}

.recruit_swiper .swiper {
	overflow: visible;
}
.recruit_swiper .swiper-slide {
    width: 395px;
}

.recruit_swiper .swiper-slide:nth-child(2n-1) {
	position: relative;
	top: 45px;
}

.recruit_swiper  .swiper-button-prev, 
.recruit_swiper  .swiper-button-next {
    display: none;
}

.recruit_swiper .recruit_interview_item .info .text {
    font-size: 20px;
}

.recruit_swiper .recruit_interview_item .info .title {
    font-size: 16px;
    min-width: 240px;
    height: 32px;
    padding: 5px 24px;
}

.recruit_links_box {
	margin-top: 182.5px;
	background: #F5F5F5;
	border-radius: 30px;
	padding: 110px 177px 93.5px;
	position: relative;
}

.recruit_links_box::before {
	content: '';
	position: absolute;
	left: 314px;
	top: -81px;
	z-index: 3;
	width: 141px;
	height: 140px;
	background: url('../images/recruit/icon_yellow.svg') no-repeat;
	background-size: cover;
	opacity: 0;
	transform: translateY(30px);
	transition: all 0.5s 0.4s ease;
}

.recruit_links_box.move::before {
	opacity: 1;
	transform: translateY(0);
}


.recruit_links_box .title {
	font-size: 25px;
	letter-spacing: 0.08em;
	line-height: 1.44;
	font-weight: 700;
	text-align: center;
	margin-bottom: 50px;
}

.recruit_links_wrap {
	display: flex;
	justify-content: center;
}

.recruit_links_wrap .button_link .text_inner {
	height: 35.19px;
}

@media screen and (max-width: 800px) {
	.recruit_links_wrap .button_link .text_inner {
		height: auto;
	}
	
}

.recruit_links_wrap .button_link .text_inner .text {
	font-size: 22px;
	line-height: 1.6;
}

.recruit_links_wrap .button_link {
	max-width: 405px;
	width: 100%;
	height: 80px;
	justify-content: center;
}

.recruit_links_wrap .button_link+.button_link {
	margin-left: 37px;
}

@media screen and (min-width: 960px) {
	.recruit_swiper .recruit_interview_item a:hover .info .text {
		text-decoration: none;
	}

	/* cursor */
	.has_cursor {
	    position: relative;
/*		cursor: none;*/
	}
	
	.js-mouse {
	    position: fixed;
	    visibility: hidden;
	    opacity: 0;
	    z-index: 999;
	    width: 145px;
	    height: 55px;
		background: url('../images/recruit/icon_cursor.svg') no-repeat;
	    background-size: cover;
	    content: '';
	    pointer-events: none;
	    transition: opacity .3s;
	}
	
	.js-mouse.on_mouse {
	    visibility: visible;
	    opacity: 1;
	    transition: opacity .3s;
	}
}

@media screen and (max-width: 1300px) {
	.recruit_links_box {
		margin-top: 160px;
		padding: 110px 20px 93.5px;
	}
}

@media screen and (max-width: 1030px) {
	.recruit_links_box {
		margin-top: 100px;
	}

	.recruit_wrap .business_list .business_item .business_info {
		padding-right: 100px;
	}
}

@media screen and (max-width: 1000px) {
	.recruit_links_box .title {
		font-size: 18px;
	}
}

@media screen and (max-width: 800px) {
	
	.recruit_wrap {
		padding-bottom: 103px;
	}
	
	
	.recruit_wrap .business_list .business_item a {
		padding: 35px 0 31px;
	}

	.recruit_wrap .business_list .business_item .business_info {
		padding-right: 0;
	}
	
	.recruit_swiper {
		margin-top: 30px;
		position: relative;
	}
	
	.recruit_swiper::before {
		left: auto;
		right: 20px;
		transform: translateX(0) translateY(30px);
		top: 0;
		z-index: -1;
		width: 70px;
		height: 73px;
		margin-left: 0;
	}
	
	.recruit_swiper.move::before {
		opacity: 1;
		transform: translateX(0) translateY(0);
	}
	
	.recruit_interview_button {
		position: relative;
		right: auto;
		top: auto;
		z-index: 3;
		max-width: 290px;
		margin-top: 70px;
		width: 100%;
		margin: 70px auto 0;
	}
	
	.recruit_interview_button a {
		width: 100%;
		height: 65px;
	}
	
	.recruit_swiper .swiper {
		overflow: visible;
	}
	
	.recruit_swiper .swiper-slide {
	    width: 251px;
	}
	
	.recruit_swiper .swiper-slide:nth-child(2n-1) {
		top: 30px;
	}
	
	.recruit_swiper .recruit_interview_item .info .text {
	    font-size: 16px;
		letter-spacing: 0.01em;
		padding: 15px 0 0;
	}
	
	.recruit_swiper .recruit_interview_item .info .title {
	    font-size: 13px;
	    min-width: 172.5px;
	    height: 23.5px;
	    padding: 1.5px 13px 3px;
		line-height: 1;
	}
	
	
	.recruit_links_box {
		margin-top: 86.5px;
		border-radius: 20px;
		padding: 52px 20px 47px;
	}
	
	.recruit_links_box::before {
		left: 54px;
		top: -56px;
		width: 100px;
		height: 106px;
	}
	
	.recruit_links_box .title {
		font-size: 19px;
		white-space: nowrap;
		letter-spacing: 0.02em;
		margin-bottom: 27px;
		line-height: 1.8;
	}
	
	.recruit_links_wrap {
		display: block;
	}
	
	.recruit_links_wrap .button_link {
		display: flex;
	}
	
	.recruit_links_wrap .button_link+.button_link {
		margin-top: 15px;
	}
	
	.recruit_links_wrap .button_link .text_inner .text {
		font-size: 19px;
		line-height: 1.5;
	}
	
	.recruit_links_wrap .button_link {
		max-width: 305px;
		height: 70px;
		margin: 0 auto;
	}
	
	.recruit_links_wrap .button_link+.button_link {
		margin-left: auto;
		margin-top: 15px;
	}
	
}

@media screen and (max-width: 500px) {
	
	.recruit_links_box::before {
		left: 44px;
        top: -40px;
        width: 60px;
        height: 65px;
	}
}

/*==========================================
  RECRUIT
  INTERVIEW人を知る
==========================================*/
.interview_wrap {
	align-items: flex-start;
	display: flex;
}

.recruit_side {
	width: 344px;
	margin-right: 10px;
}

.recruit_main {
	width: calc(100% - 354px);
}

.recruit_interview_list {
	display: grid;
	grid-template-columns: repeat(2,1fr);
	gap: 40px 47px;
}

.recruit_interview_list .image {
	overflow: hidden;
	padding-top: 20px;
	border-bottom-right-radius: 30px;
}

.recruit_interview_list .image picture {
	display: block;
	transition: transform .5s ease;
}

.recruit_interview_item .info {
	position: relative;
}

.recruit_interview_item .info .title {
	font-size: 17px;
	font-weight: 700;
	letter-spacing: 0.08em;
	line-height: 1.44;
	color: #fff;
	min-width: 259px;
	height: 34.5px;
	display: flex;
	align-items: center;
	padding: 5px 24px;
	border-radius: 0 16px 16px 0;
	position: absolute;
	top: 0;
	transform: translateY(-100%);
	left: 0;
	z-index: 4;
	margin-top: -25px;
}

.recruit_interview_item .info .title.yellow {
	background: #F4A323;
}

.recruit_interview_item .info .title.blue {
	background: #348ACB;
}

.recruit_interview_item .info .title.red {
	background: #E61F1E;
}

.recruit_interview_item .info .title.green {
	background: #1D993A;
}

.recruit_interview_item .info .text {
	font-size: 22px;
	font-weight: 700;
	letter-spacing: 0.06em;
	line-height: 1.5;
	padding: 21px 10px 0;
	white-space: nowrap;
}
@media screen and (min-width: 960px) {
	.recruit_interview_item a:hover .info .text {
		text-decoration: underline;
	}
	
	.recruit_interview_item a:hover picture {
		transform: scale(1.08);
		transition: transform .5s ease;
	}
}
@media screen and (max-width: 1400px) {
	.recruit_side {
		width: 280px;
	}
	
	.recruit_main {
		width: calc(100% - 290px);
	}
	
	.recruit_interview_item .info .text {
		font-size: 16px;
	    padding: 21px 0 0;
	}
}
@media screen and (max-width: 1120px) {
	.recruit_interview_list {
	    gap: 30px 20px;
	}
}


@media screen and (max-width: 1050px) {
	.recruit_side {
		width: 200px;
	}
	
	.recruit_main {
		width: calc(100% - 210px);
	}
	
	.recruit_interview_item .info .text {
		font-size: 14px;
	}
}

@media screen and (max-width: 900px) {
	.recruit_side {
		width: 190px;
	}
	
	.recruit_main {
		width: calc(100% - 200px);
	}
	
	.wrap_cate li a {
	    font-size: 12px;
	}
	
	.recruit_interview_item .info .text {
		font-size: 12px;
	}
}

@media screen and (max-width: 800px) {
	.interview_wrap {
		display: block;
	}
	
	.recruit_side {
		display: none;
	}
	
	.recruit_main {
		width: 100%;
	}
	
	.recruit_interview_list {
		display: block;
	}
	
	.recruit_interview_item+.recruit_interview_item  {
		margin-top: 38.5px;
	}
	
	.recruit_interview_item .info .title {
		font-size: 14px;
		min-width: 203px;
		height: 27px;
		padding: 4px 14px;
		border-radius: 0 16px 16px 0;
		margin-top: -22px;
	}
	
	.recruit_interview_item .info .text {
		font-size: 18px;
		padding: 15px 10px 0;
	}
}

/* INTERVIEW ak */
.teaser_box.interview_teaser_box {
	min-height: auto;
}

.teaser_box.interview_teaser_box::before,
.teaser_box.interview_teaser_box::after {
    content: unset;
}

.interview_teaser_box  .teaser_heading{
    left: 0;
    bottom: auto;
	top: 50%;
	transform: translateY(-50%);
}

.interview_teaser_box .info_box .eng {
	color: #fff;
	font-size: 23px;
	font-weight: 700;
	line-height: 29px;
}

.interview_teaser_box .info_box .name {
	margin-top: 7px;
	color: #fff;
	font-size: 18px;
	font-weight: 700;
	line-height: 26px;
	letter-spacing: 0.08em;
}

.interview_teaser_box .info_box .title {
	margin-top: 38.5px;
	font-size: 33px;
	font-weight: 700;
	color: #fff;
	font-weight: 700;
	line-height: 1.59;
}

.interview_group+.interview_group {
	margin-top: 95px;
}

.interview_group_item p+h2 {
	margin-top: 33px;
}

.interview_group_item h2 {
	font-size: 28px;
	letter-spacing: 0.05em;
	line-height: 1.5;
	font-weight: 700;
	margin-bottom: 15px;
}

.interview_group_item p {
	font-size: 16px;
	font-weight: 500;
	letter-spacing: 0.06em;
	line-height: 2;
}

.interview_group_item {
	position: relative;
}

.interview_group_item.left {
	float: none;
	padding-left: 560px;
}

.interview_group_item.right {
	float: none;
	padding-right: 560px;
}

.interview_group_item.min_height {
	min-height: 589px;
}

.interview_group_item .block_image {
	position: absolute;
	top: 9px;
	z-index: 3;
	border-radius: 30px;
	overflow: hidden;
	width: 480px;
}

.interview_group_item .block_image img {
	width: 100%;
}

.interview_group_item.left .block_image  {
	left: 0;
}

.interview_group_item.right .block_image  {
	right: 0;
}

.interview_group .block_image.large_size {
	position: relative;
	left: auto;
	top: auto;
	right: auto;
	bottom: auto;
	width: 100%;
	margin: 100px auto 92px;
}

.pager_wrap .button_link.button_cont {
	display: flex;
	max-width: 259px;
    width: 100%;
    height: 75px;
	margin: 112px auto 0;
    font-size: 17px;
    letter-spacing: 0.06em;
    font-weight: 500;
    transition: all .3s ease;
}

.pager_wrap .button_link.button_cont .link_icon {
    position: absolute;
	left: 20px;
    right: auto;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
}

.pager_wrap .button_link.button_cont .link_icon .icon_arrow::before {
    background: url('../images/news/icon_prev.svg') no-repeat;
    background-size: cover;
}

.interview_group {
	min-height: 330px;
}

/* HK */

.interview_group_item.min_hk_height {
	min-height: 380px;
}

/* NS */

.interview_group_item.min_hk_height {
	min-height: 330px;
}

/* SS */
.interview_group_item.min_ss_height {
	min-height: 332px;
}

@media screen and (max-width: 1400px) {
	.interview_group_item h2 {
	    font-size: 20px;
	}
}

@media screen and (max-width: 1240px) {
	.interview_group_item .block_image {
	    width: 420px;
	}
	
	.interview_group_item.left {
		float: none;
		padding-left: 500px;
	}
	
	.interview_group_item.right {
		float: none;
		padding-right: 500px;
	}
	
	.interview_group_item.min_height {
		min-height: 515px;
	}
	
}

@media screen and (max-width: 1180px) {
	.interview_group_item .block_image {
	    width: 400px;
	}
	
	.interview_group_item.left {
		float: none;
		padding-left: 430px;
	}
	
	.interview_group_item.right {
		float: none;
		padding-right: 430px;
	}
	
	.interview_group_item.min_height {
		min-height: 491px;
	}
	
}

@media screen and (max-width: 1106px) {
	.interview_group_item h2 {
	    font-size: 18px;
	}
	
	.interview_group_item .block_image {
	    width: 380px;
	}
	
	.interview_group_item.left {
		padding-left: 400px;
	}
	
	.interview_group_item.right {
		padding-right: 400px;
	}
	
	.interview_group_item.min_height {
		min-height: 466px;
	}
	
}

@media screen and (max-width: 1030px) {
	.pager_wrap .button_link.button_cont {
		margin-top: 60px;
	}
	
}

@media screen and (max-width: 800px) {
	.teaser.interview_teaser {
		margin-bottom: 12px;
	}
	
	.teaser_box.interview_teaser_box {
		min-height: auto;
	}
	
	.interview_teaser_box  .teaser_heading {
	    left: 0;
	    bottom: auto;
		top: 50%;
		transform: translateY(-50%);
	}
	
	.interview_teaser_box .info_box .eng {
		font-size: 18px;
		line-height: 22.5px;
	}
	
	.interview_teaser_box .info_box .name {
		margin-top: 0;
		font-size: 18px;
		line-height: 16px;
	}
	
	.interview_teaser_box .info_box .title {
		margin-top: 20px;
		font-size: 22px;
		line-height: 1.45;
	}
	
	.interview_group+.interview_group {
		margin-top: 41px;
	}
	
	.interview_group_item p+h2 {
		margin-top: 41px;
	}
	
	.interview_group_item h2 {
		font-size: 22px;
		line-height: 1.45;
	}
	
	.interview_group_item p {
		letter-spacing: 0.06em;
		line-height: 1.78;
		text-align: justify;
	}
	
	.interview_group_item.left {
		padding-left: 0;
	}
	
	.interview_group_item.right {
		float: none;
		padding-right: 0;
	}
	
	.interview_group_item.min_height {
		min-height: auto;
	}
	
	.interview_group_item .block_image {
		position: relative;
		top: auto;
		border-radius: 20px;
		width: 100%;
		margin-bottom: 20.7px;
	}
	
	.interview_group_item .block_image img {
		width: 100%;
	}
	
	.interview_group_item.left .block_image  {
		left: 0;
	}
	
	.interview_group_item.right .block_image  {
		right: 0;
	}
	
	.interview_group .block_image.large_size {
		margin: 46px auto 56px;
	}
	
	.pager_wrap .button_link.button_cont {
		max-width: 290px;
	    height: 65px;
		margin: 25px auto 0;
	}
	
	.pager_wrap .button_link.button_cont .link_icon {
		left: 27px;
	}
	
	.interview_group {
		min-height: auto;
	}
	
	/* HK */
	
	.interview_group_item.min_hk_height {
		min-height: auto;
	}
	
	/* NS */
	
	.interview_group_item.min_hk_height {
		min-height: auto;
	}
	
	/* SS */
	.interview_group_item.min_ss_height {
		min-height: auto;
	}
	
}
/*==========================================
  DATE DOWNLOAD
==========================================*/
.date_download {
	padding-bottom: 197.5px;
}

.download_item+.download_item {
	margin-top: 65.6px;
}

.download_item .download_title {
	font-size: 17px;
	font-weight: 700;
	letter-spacing: 0.08em;
	line-height: 1.4;
	margin-bottom: 22px;
}

.download_list {
	margin:0 0 50px 0;
}

.download_list dl {
	display: flex;
	padding: 22px 8px 23px;
	border-top: 1px solid #C9C9C9;
}

.download_list dl:last-child {
	border-bottom: 1px solid #C9C9C9;
} 

.download_list dt {
	font-size: 16px;
	font-weight: 500;
	letter-spacing: 0.06em;
	line-height: 1.4;
	width: 215px;
}

.download_list dd {
	width: calc(100% - 215px);
}

.download_list dd a {
	display: flex;
	align-items: flex-start;
	transition: all .3s ease;
}

.download_list .icon_pdf {
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 12px;
	font-weight: 600;
	line-height: 1.25;
	color: #fff;
	border-radius: 13px;
	background: #484848;
	width: 65px;
	min-width: 70px;
	min-height: 26px;
	margin-right: 9px;
	transition: all .3s ease;
}

.download_list .icon_pdf::before {
    content: '';
    width: 13px;
    height: 13px;
    background: url(../images/common/icon_download.svg) no-repeat;
    background-size: cover;
    margin-right: 5px;
}

.download_list dd .text {
	font-size: 16px;
	font-weight: 500;
	letter-spacing: 0.06em;
	line-height: 1.43;
}

.download_item h3 {
    font-size: 25px;
    font-weight: 700;
    letter-spacing: 0.06em;
    line-height: 1.28;
	padding:0 0 15px 0;
}

.download_item .txt {
    font-size: 16px;
    letter-spacing: 0.06em;
    line-height: 2;
    font-weight: 500;
}


@media screen and (min-width: 960px) {
	.download_list a:hover .icon_pdf {
		background: #F4A323;
		transition: all .3s ease;
	}
}

@media screen and (max-width: 800px) {
	.date_download {
		padding-bottom: 112.5px;
	}
	
	.download_item+.download_item {
		margin-top: 57.7px;
	}
	
	.download_item .download_title {
		letter-spacing: 0.02em;
		line-height: 1.47;
		margin-bottom: 16.5px;
	}
	
	.download_list dl {
		display: block;
		padding: 15px 0 17px;
	}
	
	.download_list dt {
		margin-bottom: 9px;
		letter-spacing: 0.06em;
		width: 100%;
	}
	
	.download_list dd {
		width: 100%;
	}
	
	.download_list .icon_pdf {
		margin-right: 7.5px;
	}
	
	.download_list .icon_pdf::before {
	    margin-right: 4px;
	}
	
	.download_list dd .text {
		letter-spacing: 0.04em;
	}

}

.privacybox {
	padding:0 0 200px 0;
}


.privacybox h2 {
	font-size: 25px;
	padding:0 0 15px 0;
	margin:0 0 20px 0;
	border-bottom:#c9c9c9 1px solid;
}

.privacybox p {
    font-size: 16px;
    letter-spacing: 0.06em;
    line-height: 2;
    font-weight: 500;
	padding:0 0 25px 0;
}

.privacybox ul {
	padding:0 0 50px 0;
}

.privacybox ul li {
	font-size: 16px;
    letter-spacing: 0.06em;
    line-height: 2;
    font-weight: 500;
	position:relative;
	padding:0 0 20px 40px;
}

.privacybox .box > ul > li::before {
	display: block;
	content: '';
	width:30px;
	height:30px;
	padding:7px 0 0 2px;
	line-height: 1.1;
	font-size:16px;
	font-weight:bold;
	text-align: center;
	color:#fff;
	font-family: "Outfit", sans-serif;
	position:absolute;
	top:1px;
	left:0;
	background-color: #318bcb;
	border-radius: 15px;
}

.privacybox ul li.n01::before {
	content: '1';
}

.privacybox ul li.n02::before {
	content: '2';
}

.privacybox ul li.n03::before {
	content: '3';
}

.privacybox ul li ul {
	padding:3px 0 0 0;
}

.privacybox ul li ul li {
	padding:0 0 3px 0;
	margin:0 0 0 10px;
	text-indent: -10px;
}

@media screen and (max-width: 800px) {
	.privacybox {
		padding:0 0 100px 0;
	}
		
	.privacybox h2 {
		font-size: 20px;
		padding:0 0 10px 0;
	}
	
	.privacybox ul {
		padding:0 0 30px 0;
	}
	
	.privacybox ul li {
		font-size: 16px;
		letter-spacing: 0.06em;
		line-height: 2;
		font-weight: 500;
		position:relative;
		padding:0 0 20px 40px;
	}
	
	.privacybox .box > ul > li::before {
		display: block;
		content: '';
		width:30px;
		height:30px;
		padding:7px 0 0 2px;
		line-height: 1.1;
		font-size:16px;
		font-weight:bold;
		text-align: center;
		color:#fff;
		font-family: "Outfit", sans-serif;
		position:absolute;
		top:1px;
		left:0;
		background-color: #318bcb;
		border-radius: 15px;
	}
	
	.privacybox ul li.n01::before {
		content: '1';
	}
	
	.privacybox ul li.n02::before {
		content: '2';
	}
	
	.privacybox ul li.n03::before {
		content: '3';
	}
	
	.privacybox ul li ul {
		padding:3px 0 0 0;
	}
	
	.privacybox ul li ul li {
		padding:0 0 3px 0;
		margin:0 0 0 10px;
		text-indent: -10px;
	}
}


/*==========================================
  JOB DESCRIPTION
==========================================*/
.job_description {
	padding-bottom: 198px;
}

.job_navi {
	margin-bottom: 77px;
}

.job_navi ul {
	display: grid;
	grid-template-columns: repeat(4,1fr);
	gap: 13px;
}

.job_navi li a {
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: #484848;
	color: #fff;
	font-size: 17px;
	font-weight: 500;
	letter-spacing: 0.06em;
	line-height: 1.44;
	border-radius: 35px;
	min-height: 70px;
	position: relative;
	padding: 0 55px 0;
	transition: all .3s ease;
	text-align: center;
}

.job_navi li a::before {
    content: '';
	position: absolute;
	right: 27px;
	top: 50%;
	transform: translateY(-50%);
    width: 28px;
    height: 28px;
    background: url('../images/job/icon_arrow_gray.svg') no-repeat;
    background-size: cover;
}

.job_section+.job_section {
	margin-top: 125px;
}

.job_section .job_title {
	font-size: 25px;
	font-weight: 700;
	letter-spacing: 0.08em;
	line-height: 1.28;
	margin-bottom: 25px;
}

.job_list dl {
	display: flex;
	padding: 20px 8px;
	border-top: 1px solid #C9C9C9;
}

.job_list dl:last-child {
	border-bottom: 1px solid #C9C9C9;
} 

.job_list dt {
	font-size: 16px;
	font-weight: 500;
	letter-spacing: 0.06em;
	line-height: 1.4;
	width: 220px;
}

.job_list dd {
	width: calc(100% - 220px);
	font-size: 16px;
	font-weight: 500;
	letter-spacing: 0.06em;
	line-height: 1.4;
}

.job_list dd li {
	font-size: 16px;
	font-weight: 500;
	letter-spacing: 0.06em;
	line-height: 2;
	padding-left: 1.5em;
	position: relative;
}


.job_list dd li::before {
	content: '・';
	position: absolute;
	left: 0;
	top: 0;
	z-index: 3;
}

.job_btn {
	margin-top: 71.5px;
}

.job_btn .button_link {
	display: flex;
	max-width: 425px;
	width: 100%;
	height: 80px;
	margin: 0 auto;
	font-size: 22px;
	letter-spacing: 0.06em;
	line-height: 1.45;
	font-weight: 700;
}

.job_btn .button_link.button_cont .text_inner {
	height: 35.19px;
}

@media screen and (max-width: 800px) {
	.job_btn .button_link.button_cont .text_inner {
		height: auto;
	}
}

.anchor {
	position: relative;
}

@media screen and (min-width: 960px) {
	.job_btn .button_link.button_cont .text_inner {
		height: 35.19px;
	}
	
	.job_navi li a:hover {
		transition: all .3s ease;
		background-color: #F4A323;
	}
	
	.job_navi li a:hover::before {
		background: url('../images/job/icon_arrow_yellow.svg') no-repeat;
	    background-size: cover;
	}
}

@media screen and (max-width: 1199px) {
	.job_navi li a {
		font-size: 15px;
		padding: 0 40px;
	}
	
	.job_navi li a::before {
		right: 20px;
	}
}

@media screen and (max-width: 1030px) {
	.job_navi li a {
		font-size: 12px;
	}
	
	.job_navi li a::before {
		right: 20px;
	    width: 20px;
	    height: 20px;
	}
}

@media screen and (max-width: 849px) {
	.job_navi li a {
		padding: 0 30px;
	}
	.job_navi li a::before {
		right: 10px;
	}
}

@media screen and (max-width: 800px) {
	.job_description {
		padding-bottom: 112px;
	}
	
	.job_navi {
		margin-bottom: 55px;
	}
	
	.job_navi ul {
		display: block;
	}
	
	.job_navi li+li {
		margin-top: 15px;
	}
	
	.job_navi li a {
		font-size: 15px;
		line-height: 1.46;
		border-radius: 25px;
		min-height: 50px;
		padding: 0 42px;
	}
	
	.job_navi li a::before {
		right: 20px;
	    width: 22px;
	    height: 22px;
	}
	
	.job_section+.job_section {
		margin-top: 55px;
	}
	
	.job_section .job_title {
		font-size: 24px;
		margin-bottom: 7.5px;
	}
	
	.job_list dl {
		display: flex;
		padding: 15px 0;
	}
	
	.job_list dt {
		line-height: 1.56;
		width: 84px;
	}
	
	.job_list dd {
		width: calc(100% - 84px);
		line-height: 1.56;
		letter-spacing: 0.04em;
		line-height: 1.7;
		display: flex;
        flex-direction: column;
        justify-content: center;
	}
	
	.job_list dd li {
		line-height: 1.5625;
		padding-left: 0;
		letter-spacing: 0.04em;
	}
	
	.job_list dd li+li {
		margin-top: 1px;
	}

	.job_list dd p + .has-margin,
	.job_list dd .has-margin li+li {
		margin-top: 10px;
	}
	
	.job_list dd li::before {
		position: relative;
	}
	
	.job_btn {
		margin-top: 40px;
	}
	
	.job_btn .button_link {
		max-width: 290px;
		height: 65px;
		font-size: 17px;
	}
	
	.anchor_item {
		position: absolute;
		left: 0;
		top: -70px;
		z-index: -1;
	}
}

@media screen and (max-width: 550px) {
	#Job .teaser_heading .eng {
		font-size: 60px;
	}
}

@media screen and (max-width: 400px) {
	#Job .teaser_heading .eng {
		font-size: 50px;
	}
}

/*==========================================
  WORKS
==========================================*/
.works_wrap {
	display: flex;
	align-items: flex-start;
}

.works_head .title {
	font-size: 33px;
	font-weight: 700;
	letter-spacing: 0.05em;
	line-height: 1.59;
	margin-bottom: 23px;
}

.works_head .text {
	font-size: 16px;
	letter-spacing: 0.06em;
	line-height: 2.18;
	font-weight: 500;
}

.recruit_works_list {
	margin-top: 50px;
	position: relative;
}

.recruit_works_list::before {
	content: '';
	position: absolute;
	right: 63px;
	top: -15px;
	z-index: -1;
	width: 141px;
	height: 150px;
	background: url('../images/works/icon_red.svg') no-repeat;
	background-size: cover;
	opacity: 0;
	transform: translateY(30px);
	transition: all 0.5s 0.4s ease;
}

.recruit_works_list.move::before {
	opacity: 1;
	transform: translateY(0);
}

.works_item {
	padding: 50px 0 23px;
}

.works_item:first-child {
	padding-top: 0;
}

.works_item:last-child {
	padding-bottom: 0;
}

.works_item+.works_item  {
	border-top: 1px solid #C9C9C9;
}

.works_item .item_title {
	font-size: 30px;
	font-weight: 700;
	letter-spacing: 0.06em;
	line-height: 1.06;
	margin-bottom: 22px;
}

.works_item .item_image {
	border-radius: 30px;
	overflow: hidden;
}

.works_item .item_image img {
	width: 100%;
}

.works_item .item_text {
	font-size: 16px;
	letter-spacing: 0.06em;
	line-height: 2;
	font-weight: 500;
	margin-top: 30.2px;
}

@media screen and (max-width: 1200px) {
	.works_head .title {
		font-size: 28px;
	}
}

@media screen and (max-width: 800px) {
	.works_wrap {
		display: block;
	}
	
	.works_head .title {
		font-size: 24px;
		line-height: 1.39;
		margin-bottom: 15px;
	}
	
	.works_head .text {
		line-height: 1.78;
	}
	
	.recruit_works_list {
		margin-top: 40px;
		position: relative;
	}
	
	.recruit_works_list::before {
        right: 65px;
        top: -4px;
        width: 107px;
        height: 117px;
	}
	
	.works_item {
		padding: 30px 0;
	}
	
	.works_item .item_title {
		font-size: 22px;
		line-height: 1.45;
		margin-bottom: 12.5px;
	}
	
	.works_item .item_image {
		border-radius: 20px;
	}
	
	
	.works_item .item_text {
		line-height: 1.78;
		margin-top: 16px;
	}
}

@media screen and (max-width: 800px) {
	.recruit_works_list::before {
		right: 0;
		top: 26px;
		width: 61px;
		height: 62px;
	}
}

/*==========================================
  kaisha 会社を知る
==========================================*/
.kaisha_wrap {
	display: flex;
	align-items: flex-start;
}

.kaisha_wrap .heading_box {
    margin-bottom: 40px;
}

.kaisha_message {
	margin-bottom: 100px;
	position: relative;
}

.kaisha_message .hana_img03 {
    position: absolute;
    right: 135px;
    bottom: -100px;
    z-index: 1;
    width: 141px;
    height: 150px;
    opacity: 0;
	transform: translateY(30px);
	transition: all 0.5s 0.4s ease;
}

.kaisha_message .hana_img03.move {
    opacity: 1;
	transform: translateY(0);
}

.kaisha_message_head {
	margin-bottom: 34px;
}

.kaisha_message_head .title .eng {
	font-size: 20px;
	line-height: 1.25;
	font-weight: 700;
	margin-bottom: 20px;
	display: block;
}

.kaisha_message_head .title .jap {
	font-size: 33px;
	font-weight: 700;
	letter-spacing: 0.05em;
	line-height: 1.59;
	display: block;
}

.kaisha_message .text {
	font-size: 16px;
	letter-spacing: 0.06em;
	line-height: 2.18;
	font-weight: 500;
	margin-bottom: 38px;
}

.kaisha_message .image {
	border-radius: 30px;
	overflow: hidden;
}

.kaisha_message .image img {
	width: 100%;
}

.kaisha_attractioms_head {
	margin-bottom: 40px;
}

.kaisha_attractioms_head .text {
	font-size: 16px;
	letter-spacing: 0.06em;
	line-height: 2.18;
	font-weight: 500;
}

.attractioms_item {
	border-top: 1px solid #C9C9C9;
	padding: 45px 0 50px;
}

.attractioms_item:last-child {
	border-bottom: 1px solid #C9C9C9;
}

.attractioms_item_head {
    margin-bottom: 37.5px;
    position: relative;
    padding-left: 50px;
}

.attractioms_item_head .number {
    position: absolute;
    left: 0;
    top: 0;
    z-index: 3;
    width: 37px;
    height: 37px;
    font-weight: 700;
    font-size: 20px;
    line-height: 37px;
    background: #318BCB;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    border-radius: 100%;
}

.attractioms_item_head .title {
    font-size: 25px;
    font-weight: 700;
    letter-spacing: 0.06em;
    line-height: 1.28;
}

.attractioms_item_info {
	display: flex;
	align-items: flex-start;
}

.attractioms_item_info .image {
	width: 370px;
	margin-right: 45px;
	overflow: hidden;
	border-radius: 30px;
}

.attractioms_item_info .text {
	width: calc(100% - 415px);
	font-size: 16px;
	letter-spacing: 0.06em;
	line-height: 2;
	font-weight: 500;
}

.kaisha_numbers {
	margin-top: 97px;
}

.kaisha_numbers_list {
	display: grid;
	grid-template-columns: repeat(2,1fr);
	gap: 20px;
}

.kaisha_numbers_item {
	border-radius: 30px;
	background: #f5f5f5;
	padding: 57px 20px 74px;
}

.kaisha_numbers_item .title {
	font-size: 30px;
	font-weight: 700;
	letter-spacing: 0.08em;
	line-height: 1.45;
	margin-bottom: 15px;
	text-align: center;
}

.kaisha_numbers_item .info {
	min-height: 115px;
	display: flex;
	align-items: flex-end;
	justify-content: center;
}

.kaisha_numbers_item .info .icon_img {
	margin-right: 10px;
}

.kaisha_numbers_item .info .number_info {
	white-space: nowrap;
}

.kaisha_numbers_item .info .number_info .number {
	font-size: 110px;
	line-height: 83px;
	font-weight: 700;
	color: #F4A323;
	letter-spacing: -0.02em;
	display: inline-block;
}

.kaisha_numbers_item .info .number_info .jap {
	font-size: 35px;
	letter-spacing: 0.08em;
	line-height: 40px;
	font-weight: 700;
}

@media screen and (max-width: 1300px) {
	.kaisha_numbers_item .info .number_info .number {
		font-size: 90px;
	}
	
	.kaisha_numbers_item .info .number_info .jap {
		font-size: 30px;
	}
}

@media screen and (max-width: 1300px) {
	.kaisha_numbers_item .info .icon_img {
	    transform: scale(0.9);
	}
	
	.kaisha_numbers_item .info .number_info .number {
		font-size: 80px;
	}
	
	.kaisha_numbers_item .info .number_info .jap {
		font-size: 20px;
	}
}

@media screen and (max-width: 1200px) {
	.attractioms_item_info .image {
	    width: 300px;
	    margin-right: 20px;
	}
	
	.attractioms_item_info .text {
	    width: calc(100% - 320px);
	}
	
	
	.kaisha_numbers_item .info .number_info .number {
		font-size: 70px;
	}
	
	.kaisha_numbers_item .info .number_info .jap {
		font-size: 18px;
	}
}


@media screen and (max-width: 1000px) {
	.attractioms_item_head .title {
	    font-size: 18px;
	}
	
	.attractioms_item_head .number {
	    top: -2px;
	    width: 30px;
	    height: 30px;
	    font-size: 18px;
	    line-height: 30px;
	}
	
	.attractioms_item_info .text {
		font-size: 14px;
	}
	
	.kaisha_numbers_item .info .icon_img {
	    transform: scale(0.8);
	}
	
	.kaisha_numbers_item {
	    padding: 40px 20px 50px;
	}
	
	.kaisha_numbers_item .title {
	    font-size: 20px;
	    margin-bottom: 10px;
	}
	
	.kaisha_numbers_item .info .number_info .number {
		font-size: 60px;
	}
	
}

@media screen and (max-width: 900px) {
	
	.attractioms_item_info .image {
	    width: 200px;
	}
	
	.attractioms_item_info .text {
	    width: calc(100% - 220px);
		font-size: 12px;
	}
	
	.kaisha_numbers_item .info {
	    min-height: 115px;
	    display: flex;
	    align-items: flex-end;
	    justify-content: center;
	}
	
	.kaisha_numbers_item .info .number_info .number {
		font-size: 40px;
		line-height: 50px;
	}
	
	.kaisha_numbers_item .info .number_info .jap {
		font-size: 18px;
		line-height: 30px;
	}
	
}


@media screen and (max-width: 800px) {
	.kaisha_wrap {
		display: block;
	}
	
	.kaisha_wrap .heading_box {
	    margin-bottom: 30px;
	}
	
	.kaisha_message {
		margin-bottom: 52px;
	}
	
	.kaisha_message .hana_img03 {
		right: 135px;
		bottom: -30px;
		width: 102px;
		height: 106px;
	}
	
	.kaisha_message_head {
		margin-bottom: 15px;
	}
	
	.kaisha_message_head .title .eng {
		font-size: 13px;
		margin-bottom: 8.3px;
	}
	
	.kaisha_message_head .title .jap {
		font-size: 24px;
		line-height: 1.39;
	}
	
	.kaisha_message .text {
		font-size: 16px;
		line-height: 1.8;
		margin-bottom: 18px;
		text-align: justify;
	}
	
	.kaisha_message .image {
		border-radius: 20px;
	}
	
	.kaisha_attractioms_head {
		margin-bottom: 32px;
	}
	
	.kaisha_attractioms_head .text {
		line-height: 1.8;
		font-size: 16px;
	}
	
	.attractioms_item {
		padding: 38px 0 29px;
	}
	
	.attractioms_item_head {
	    margin-bottom: 16px;
	    padding-left: 35px;
	}
	
	.attractioms_item_head .number {
		top: 2px;
	    width: 26px;
	    height: 26px;
	    font-size: 15px;
	    line-height: 26px;
	}
	
	.attractioms_item_head .title {
	    font-size: 22px;
		letter-spacing: 0.03em;
	}
	
	.attractioms_item_info {
		display: block;
	}
	
	.attractioms_item_info .image {
		width: 100%;
		margin-right: 0;
		border-radius: 20px;
	}
	
	.attractioms_item_info .text {
		width: 100%;
		font-size: 16px;
		line-height: 1.8;
		margin-top: 19px;
	}
	
	.kaisha_numbers {
		margin-top: 51px;
	}
	
	.kaisha_numbers_list {
		gap: 10px;
	}
	
	.kaisha_numbers_item {
		border-radius: 20px;
		background: #f5f5f5;
		padding: 25px 14px 28px;
	}
	
	.kaisha_numbers_item .title {
		font-size: 20px;
		line-height: 1.45;
		margin-bottom: 15px;
	}
	
	.kaisha_numbers_item .info {
		min-height: unset;
		flex-direction: column;
		justify-content: flex-start;
		align-items: center;
		text-align: center;
	}
	
	.kaisha_numbers_item .info .icon_img {
		margin-right: 0;
		display: block;
		transform: scale(1);
		height: 50px;
		margin-bottom: 13px;
	}
	
	.kaisha_numbers_item .info .icon_img img {
		transform: scale(0.5);
		transform-origin: top;
	}
	
	.kaisha_numbers_item .info .number_info {
		white-space: nowrap;
		display: flex;
		align-items: flex-end;
	}
	
	.kaisha_numbers_item .info .number_info .number {
		font-size: 65px;
		line-height: 55px;
	}
	
	.kaisha_numbers_item .info .number_info .jap {
		font-size: 20px;
		line-height: 1.25;
		display: block;
	}
}

@media screen and (max-width: 500px) {
	.kaisha_message::before {
		right: 60px;
        bottom: -46px;
        width: 60px;
        height: 70px;
	}
}
/*==========================================
  ENVIRONMENT
==========================================*/

.environment_flow  {
	margin-top: 109px;
}

.environment_head .title {
	margin-bottom: 15px;
}

.environment_head .title .jap {
	font-size: 33px;
	font-weight: 700;
	letter-spacing: 0.05em;
	line-height: 1.59;
	display: block;
}

.environment_head .text {
	font-size: 16px;
	letter-spacing: 0.06em;
	line-height: 2.18;
	font-weight: 500;
	margin-bottom: 38px;
	text-align: justify;
}

.environment_head .image {
	border-radius: 30px;
	overflow: hidden;
}

.environment_head .image img {
	width: 100%;
}

.environment_certified {
	margin-top: 69px;
}

.environment_certified_list {
	margin-top: 65px;
}

.environment_certified_list .list_title {
	font-size: 30px;
	line-height: 1.75;
	font-weight: 700;
	letter-spacing: 0.05em;
	margin-bottom: 27px;
}

.environment_certified_list li+li {
	margin-top: 22px;
}

.environment_certified_list .title {
	font-size: 17px;
	letter-spacing: 0.08em;
	font-weight: 700;
	background: #318bcb;
	line-height: 2;
	border-radius: 0 16px 16px 0;
	color: #fff;
	margin-bottom: 15px;
	padding: 0 16px;
}

.environment_certified_list .text {
	font-size: 16px;
	letter-spacing: 0.06em;
	line-height: 2;
	font-weight: 500;
}

.environment_employee {
	margin-top: 82px;
}


.environment_employee_list {
	display: grid;
	grid-template-columns: repeat(2,1fr);
	gap: 20px;
	margin-top: 52px;
}

.environment_employee_item {
	border-radius: 30px;
	background: #f5f5f5;
	padding: 48px 40px 40px;
}

.environment_employee_item .icon_img {
	margin-bottom: 20px;
	min-height: 95px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.environment_employee_item .info {
	text-align: center;
}

.environment_employee_item .info .title {
	font-size: 30px;
	letter-spacing: 0.08em;
	line-height: 1.45;
	font-weight: 700;
}

.environment_employee_item .info .text {
	margin-top: 15px;
	font-size: 16px;
	letter-spacing: 0.06em;
	line-height: 1.8;
	font-weight: 500;
}


@media screen and (max-width: 1270px) {
	.environment_employee_item {
	    padding: 48px 20px 40px;
	}
}

@media screen and (max-width: 1170px) {
	.environment_head .title .jap {
	    font-size: 28px;
	}
	
	.environment_employee_item {
	    padding: 48px 10px 40px;
	}
	
	.environment_employee_item .info .title {
	    font-size: 20px;
	}
	
	.environment_employee_item .info .text {
	    font-size: 14px;
		letter-spacing: 0.02em;
	}
	
}


@media screen and (max-width: 950px) {
	.environment_head .title .jap {
	    font-size: 20px;
	}
	
}

@media screen and (max-width: 800px) {
	#Environment .teaser_heading {
        bottom: 72px;
    }
	
	.environment_flow  {
		margin-top: 50px;
	}
	
	.environment_head .title {
		margin-bottom: 15px;
	}
	
	.environment_head .title .jap {
		font-size: 24px;
		line-height: 1.4;
		letter-spacing: 0;
	}
	
	.environment_head .text {
		font-size: 16px;
		line-height: 1.8;
		margin-bottom: 20px;
	}
	
	.environment_head .image {
		border-radius: 20px;
	}
	
	.environment_head .image img {
		width: 100%;
	}
	
	.environment_certified {
		margin-top: 69px;
	}
	
	.environment_certified_list {
		margin-top: 45px;
	}
	
	.environment_certified_list .list_title {
		font-size: 22px;
		line-height: 1.45;
		margin-bottom: 26px;
		letter-spacing: 0;
	}
	
	.environment_certified_list li+li {
		margin-top: 20px;
	}
	
	.environment_certified_list .title {
		font-size: 18px;
		line-height: 1.4;
		border-radius: 0 32px 32px 0;
		margin-bottom: 12.5px;
		padding: 4px 12px;
	}
	
	.environment_certified_list .text {
		line-height: 1.78;
		text-align: justify;
	}
	
	.environment_employee {
		margin-top: 50px;
	}
	
	.environment_employee_list {
		display: block;
		margin-top: 50px;
	}
	
	.environment_employee_item+.environment_employee_item {
		margin-top: 12px;
	}
	
	.environment_employee_item {
		display: flex;
		align-items: center;
		border-radius: 20px;
		padding: 25px 11px 25px 22px;
	}
	
	.environment_employee_item .icon_img {
		margin-bottom: 0;
		margin-right: 15px;
		width: 78px;
		min-height: unset;
		display: flex;
		justify-content: center;
		align-items: center;
	}
	
	.environment_employee_item .icon_img img {
		width: 100%;
		transform: scale(0.82);
	}
	
	.environment_employee_item .info {
		text-align: left;
		width: calc(100% - 93px);
	}
	
	.environment_employee_item .info .title {
		font-size: 20px;
	}
	
	.environment_employee_item .info .text {
		margin-top: 10px;
		font-size: 14px;
		line-height: 1.71
	}
}


@media screen and (max-width: 660px) {
	#Environment .teaser_heading {
        bottom: 58px;
    }
}

@media screen and (max-width: 550px) {
	#Environment .teaser_heading {
        bottom: 50px;
    }
}


@media screen and (max-width: 500px) {
	#Environment .teaser_heading {
        bottom: 22px;
    }
}
/*==========================================
 COMPANY
==========================================*/
#Company #AllBox {
	overflow: hidden;
}
#Company .company_wrap {
	padding-bottom: 92px;
}

.company_outline {
	position: relative;
	margin-bottom: 102px;
}

.outline_image {
	position: relative;
}

.outline_image::after {
	content: '';
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	top: -70px;
	z-index: 1;
	width: 95px;
	height: 80px;
	background: url(../images/company/icon_red.svg) no-repeat ;
	background-size: cover;
	opacity: 0;
	transform: translateY(30px);
	transition: all 0.5s 0.4s ease-out;
}

.move .outline_image::after {
	opacity: 1;
	transform: translateY(0);
}

.outline_image img {
	width: 100%;
	border-radius: 30px;
}

.company_outline_bg {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	z-index: -1;
	pointer-events: none;
}

.company_outline_bg.green {
	background: url('../images/top/about_bg_green.webp')  no-repeat;
	background-size: cover;
	
}

.no-webp .company_outline_bg.green {
	background: url('../images/top/about_bg_green.png')  no-repeat !important;
}

.c-anim-bg::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    width: 100%;
    height: 101%;
}

.company_outline_bg.green::before {
	background: #fff;
	background-size: cover;
	animation: c-anim-bg-right 1s linear 1.8s forwards;
}


@keyframes c-anim-bg-right {
	100% {
		clip-path: inset(100% 0% 0% 0%);
	}
	
	0% {
		clip-path: inset(0%);
	}
}

@keyframes c-anim-bg-left {
	0% {
		
		clip-path: inset(100% 100% 100% 100%);
	}
	
	100% {
		clip-path: inset(0%);
		opacity: 1;
	}
	
}

.company_section.vehicles {
	position: relative;
}

.company_section.vehicles::after {
	content: '';
	position: absolute;
	right: 80px;
	top: -30px;
	z-index: -1;
	width: 138.5px;
	height: 128px;
	background: url('../images/contact/icon_yellow.svg') no-repeat;
	background-size: cover;
	opacity: 0;
	transition: opacity .5s ease;
}

.company_section.move.vehicles::after {
	opacity: 1;
	transition: opacity .5s ease 1s;
}

.company_list_item {
	padding: 24px 10px 20px;
	display: flex;
	border-top: 1px solid #C9C9C9;
}

.company_list_item:last-child {
	border-bottom: 1px solid #C9C9C9;
}

.company_list_item .item_info,
.company_list_item .item_info li,
.company_list_item li,
.company_list_item .item_title,
.company_list_box .box_title {
	font-size: 16px;
	font-weight: 500;
	letter-spacing: 0.06em;
	line-height: 2;
}

.company_list #certificate {
	position: absolute;
	top: -180px;
	z-index: -1;
	pointer-events: none;
}

.company_list_title {
	font-size: 20px;
	font-weight: 700;
	letter-spacing: 0.08em;
	line-height: 1.45;
	margin-bottom: 20px;
}

.company_list_item .item_info .info_ul {
	display: flex;
	align-items: flex-start;
	align-content: flex-start;
	flex-direction: column;
	flex-wrap: wrap;
	height: 100px;
}

.company_list_item .item_info .info_ul li {
	position: relative;
	padding-left: 17.5px;
	margin-right: 43px;
}

.company_list_item .item_info .info_ul li::before {
	content: '・';
	position: absolute;
	left: 0;
	top: 0;
	z-index: 2;
}

.company_list_title {
	margin-top: 96px;
}
/* .company_list_item .box_ul li {
	line-height: 1.56;
}

.company_list_item .box_ul li+li {
	margin-top: 12px;
}
 */

.company_list_item .box_ul li+li {
	margin-top: 5px;
}

.company_list_item .item_title {
	width: 165px;
}

.company_list_cont,
.company_list_item .item_info {
	width: calc(100% - 165px);
}

.company_section.vehicles .company_list_cont .company_list_box {
	padding-right: 360px;
}

.company_list_box {
	display: flex;
	padding: 27px 0;
}

.company_list_box.block {
	display: block;
}

.company_list_box:first-child {
	padding-top: 0;
}

.company_list_box:last-child {
	padding-bottom: 0;
}

.company_list_box+.company_list_box {
	border-top: 1px solid #C9C9C9;
}

.company_list_box .box_title {
	width: 272px;
	position: relative;
}

.company_list_box .box_title .title {
	padding-left: 23px;
	background: #fff;
}

.company_list_box .box_title .title::before {
	content: '■';
	position: absolute;
	left: 0;
	top: 0;
	z-index: 2;
}

.company_list_box .box_title.blue .title::before {
	color: #348ACB;
}

.company_list_box .box_title.yellow .title::before {
	color: #F4A323;
}

.company_list_box .box_title.green .title::before {
	color: #1D993A;
}

.company_list_box .box_ul {
	width: calc(100% - 272px);
}

.company_list_box .box_ul li .title {
	position: relative;
}

.company_list_box .box_ul li .title font {
	padding-left: 15px;
}

.company_list_box .box_ul li .title::after {
	content: '・';
	position: absolute;
	left: 0;
	top: 0;
	z-index: 2;
}

.company_list_box .box_ul li span {
	position: relative;
	display: block;
	/* background: #fff; */
}

.company_list_box .dots font,
.company_list_box .dots .number {
	background: #fff;
}

.company_list_box .dots {
	position: relative;
	width: 100%;
	display: flex;
	justify-content: space-between;
}


.company_list_box .dots::before {
    background: radial-gradient(circle farthest-side, #B0ACA9, #B0ACA9 30%, transparent 30%, transparent);
    background-size: 5px 5px;
    content: "";
    display: inline-block;
    height: 5px;
    width: 100%;
    position: absolute;
	left: 0;
	z-index: -1;
    top: 14px;
    /* transition: -webkit-clip-path 0.8s 0.1s ease-in;
    transition: clip-path 0.8s 0.1s ease-in;
    transition: clip-path 0.8s 0.1s ease-in, -webkit-clip-path 0.8s 0.1s ease-in; */
    /* -webkit-clip-path: inset(0 0 0 100%);
    clip-path: inset(0 0 0 100%); */
	/* -webkit-clip-path: inset(0 0 0 0);
	clip-path: inset(0 0 0 0); */
}

/* .box_ul li .title.move::before {
    -webkit-clip-path: inset(0 0 0 0);
    clip-path: inset(0 0 0 0);
} */

.company_list_box .dots .title font {
	padding-right: 10px;
}

.company_list_box .dots .number {
	padding-left: 10px;
	white-space: nowrap;
}

.company_section.certification {
	position: relative;
	z-index: 2;
}

.company_section.certification .heading_box .small {
	display: inline !important; 
	font-size: 12px;
	font-weight: 500;
}

.company_certification_list {
	display: flex;
}

.company_certification_list .certification_item {
	width: 50%;
}

.company_certification_list .certification_item+.certification_item  {
	margin-left: 62px;
}


.company_certification_list .certification_item .company_list_item  {
	justify-content: space-between;
}

.company_certification_list .company_list_item .item_info {
	width: auto;
}

.company_section.access {
	position: relative;
}

.company_section.access .about_cont_bg_red_wrap {
	transition: all 3.5s ease-out;
}

.access_map {
	width: 100%;
	position: relative;
	padding-top: 41.935%;
	border-radius: 30px;
	overflow: hidden;
}

.access_map iframe {
	position: absolute;
	left: 0;
	top: 0;
	z-index: 3;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.company_group {
	display: grid;
	grid-template-columns: repeat(2,1fr);
	gap: 40px;
}

.company_group_item a {
	display: block;
	border: 1px solid #C9C9C9;
	border-radius: 30px;
	overflow: hidden;
	position: relative;
}

.company_group_item a img {
	transition: transform .3s ease-out;
}

.company_group_item a::before {
	content: '';
	position: absolute;
	right: 35px;
	top: 35px;
	z-index: 1;
	width: 15.5px;
	height: 15.5px;
	background: url('../images/company/icon_link.svg') no-repeat;
	background-size: cover;
	transition: transform .3s ease-out;
}

.company_group_item .info {
	margin-top: 21.5px;
}

.company_group_item .info .title {
	font-size: 23px;
	font-weight: 700;
	letter-spacing: 0.08em;
	line-height: 1.43;
}

.company_group_item .info .text {
	font-size: 16px;
	font-weight: 500;
	letter-spacing: 0.06em;
	line-height: 2;
	margin-top: 14px;
}

.company_section+.company_section {
	margin-top: 106.5px;
}



@media screen and (min-width: 960px) {
	.company_group_item a:hover img {
		transform: scale(1.1);
	}
	
}

@media screen and (min-width: 1800px) {
	.company_outline_bg.green {
		background: url(../images/top/about_bg_green.webp) no-repeat;
		background-size: 102% 164%;
		
	}

}

@media screen and (max-width: 1300px) {
	.company_section.vehicles .company_list_cont .company_list_box {
		padding-right: 100px;
	}
}

@media screen and (max-width: 1100px) {
	.company_list_item .item_info .info_ul {
	    display: block;
	    height: auto;
	}
	
	.company_section.vehicles::after {
	    right: 0px;
	    top: -30px;
	    width: 120px;
	}
	
	.company_section.vehicles .company_list_cont .company_list_box {
		padding-right: 0;
	}
}

@media screen and (max-width: 1000px) {
	.company_section.vehicles::after {
	    top: -120px;
	    width: 110px;
		height: 120px;
	}
	.company_list_box .box_title {
	    width: 200px;
	}
	
	.company_list_box .box_ul {
	    width: calc(100% - 200px);
	}
	
	.company_list_box.block .box_title {
		width: 100%;
	}
}

@media screen and (max-width: 800px) {
	/* 0725 */
	
	#Company .company_wrap {
		padding-bottom: 100px;
	}
	
	.company_outline {
		margin-bottom: 50px;
	}
	
	.outline_image img {
		border-radius: 20px;
	}
	
	.company_outline_bg {
		position: absolute;
		width: 100%;
		height: 206px;
		top: -33px;
		z-index: -1;
		pointer-events: none;
	}
	
	.company_outline_bg.green {
		background: url('../images/top/sp/about_bg_green.webp') no-repeat;
		background-size: cover;
	}

	.no-webp .company_outline_bg.green {
		background: url('../images/top/about_bg_green.png')  no-repeat !important;
	}
	
	.company_outline_bg.blue {
		top: 0;
	}
	
	.company_section.vehicles::after {
		right: 0;
		top: -25px;
		z-index: -1;
		width: 91px;
		height: 80px;
	}
	
	.company_list_item {
		padding: 15px 0;
		display: flex;
		border-top: 1px solid #C9C9C9;
	}
	
	.company_list #certificate {
		top: -70px;
	}
	
	.company_list_item .item_info,
	.company_list_item .item_info li,
	.company_list_item li,
	.company_list_item .item_title,
	.company_list_box .box_title {
		line-height: 1.7;
	}
	
	.company_list_box .box_title .title {
		padding-left: 0;
		background: transparent;
	}
	
	.company_list_box .box_title .title::before {

	}
	
	.company_list.certificate .company_list_item .item_title {
		line-height: 1.25;
	}
	
	.company_list_item .item_info .info_ul {
		display: block;
		height: auto;
	}
	
	.company_list_item .item_info .info_ul li {
		padding-left: 0.8em;
		margin-right: 0;
		letter-spacing: 0;
		line-height: 2.125;
	}
	
	
	.company_list_item .item_info .info_ul li+li {
		margin-top: 10px;
	}
	
	.company_list_item li {
		line-height: 1.7;
	}
	
	.company_list+.company_list {
		margin-top: 37px;
	}
	
	.company_list.certificate .company_list_item {
		align-items: center;
	}
	
	.company_list_item .box_ul li+li {
		margin-top: 5px;
	}
	
	.company_list_item .item_title {
		/* white-space: nowrap; */
		width: 65px;
		letter-spacing: 0;
		margin-right: 10px;
	}
	
	.company_list_cont,
	.company_list_item .item_info {
		width: calc(100% - 75px);
	}
	
	
	.company_list_title {
		margin-top: 40px;
	}
	
	.company_list.certificate .company_list_title {
		line-height: 1.6;
	}
	
	.company_list.certificate  .company_list_item .item_title {
		width: 70px;
		margin-right: 10px;
	}
	
	.company_list.certificate  .company_list_item .item_info {
		width: calc(100% - 80px);
	}
	
	.company_section.vehicles .company_list_cont .company_list_box {
		padding-right: 360px;
	}
	
	.company_list_box {
		display: flex;
		padding: 27px 0;
	}
	
	.company_list_box.block {
		display: block;
	}
	
	.company_list_box:first-child {
		padding-top: 0;
	}
	
	.company_list_box:last-child {
		padding-bottom: 0;
	}
	
	.company_list_box+.company_list_box {
		border-top: 1px solid #C9C9C9;
	}
	
	.company_list_box .box_title {
		width: 272px;
		position: relative;
	}
	
	.company_list_box .box_ul {
		width: 100%;
	}
	
	.company_list_box .box_ul li .title {
		position: relative;
	}
	
	.company_list_box .box_ul li .title font {
		padding-left: 0;
	}
	
	.company_list_box .box_ul li .title {
		padding-left: 15px;
		position:relative;
	}
	
	.company_list_box .box_ul li .title::after {
		content: unset;
	}
	
	.company_list_box .box_ul li .title::before {
		content: '・';
	    position: absolute;
	    left: 0;
	    top: 0;
	    margin-right: 5px;
	}
	
	.company_list_box .box_ul li span {
		position: relative;
		display: block;
		/* background: #fff; */
	}
	
	.company_list_box .dots font,
	.company_list_box .dots .number {
		background: #fff;
	}
	
	.company_list_box .dots {
		position: relative;
		width: 100%;
		display: flex;
		justify-content: space-between;
	}
	
	
	.company_list_box .dots::before {
	    content: unset;
	}
	
	.company_list_box .dots .title font {
		padding-right: 0;
	}
	
	.company_list_box .dots .number {
		padding-left: 0;
	}
	
	/* 0724 */
	.company_list .certification_item {
		display: block;
	}
	

	.access_map {
		padding-top: 52.8%;
		border-radius: 20px;
	}
	
	.company_group {
		display: block;
	}
	
	.company_group_item+.company_group_item  {
		margin-top: 35px;
	}
	
	.company_group_item a {
		border-radius: 20px;
	}
	
	.company_group_item a::before {
		right: 11px;
		top: 11px;
		width: 10.5px;
		height: 10.5px;
	}
	
	.company_group_item .info {
		margin-top: 21.5px;
	}
	
	.company_group_item .info .title {
		font-size: 22px;
		line-height: 1.45;
	}
	
	.company_group_item .info .text {
		/* line-height: 1.68; */
		line-height: 1.7;
		text-align: justify;
		margin-top: 13px;
	}
	
	.company_section+.company_section {
		margin-top: 48.4px;
	}

	.company_section .about_cont_bg_red {
		top:18%;
	}
	
	/* 0725 */
	.company_section.certification .heading_box .small {
		display: none !important; 
	}
	
	.company_certification_list {
	    display: block;
	}
	
	.company_certification_list .certification_item {
	    width: 100%;
	}
	
	.company_certification_list .item_title {
		width: 170px;
		margin-right: 10px;
	}
	
	.company_certification_list .company_list_item .item_info {
	    width: calc(100% - 180px);
		text-align: right;
	}
	
	.company_certification_list .certification_item+.certification_item {
	    margin-left: 0;
	}
	
	 .company_certification_list .certification_item+.certification_item .company_list_item:first-child {
		border-top: none;
	}
	
	.company_section.vehicles .company_list_item {
		display: block;
	}
	
	.company_section.vehicles .company_list_cont .company_list_box {
	    padding-right: 0;
	}
	
	.company_section.vehicles .company_list_item .item_title {
		width: 100%;
		margin-bottom: 16px;
		letter-spacing: 0.06em;
	}
	
	.company_section.vehicles .company_list_cont {
		width: 100%;
	}
	
	.company_section.vehicles .company_list_box {
		display: block;
	}
	
	.company_section.vehicles .company_list_box .box_title {
		width: 100%;
	}
	
	.company_section.vehicles .company_list_box .box_ul {
	    width: 100%;
	}
	
	.company_section.vehicles .company_list_box .box_title .title {
		width: 290px;
		margin-right: 20px;
		letter-spacing: 0;
		position:relative;
		padding:0 0 0 28px;
	}
	
	.company_section.vehicles .company_list_box {
		padding: 18px 0;
	}
	
	.company_section.vehicles .company_list_box:last-child {
		padding-bottom: 0;
	}
	
	.company_section.vehicles .company_list_item:last-child {
	    border-bottom: none;
	}
	
	.company_section.vehicles .company_list_box:first-child {
		padding-top: 0;
	}
}

@media screen and (max-width: 500px) {
	
	.company_outline_bg.blue {
		top: -33px;
	}
}

@media screen and (max-width: 500px) {
	
	
	.outline_image::after {
		top: -40px;
		width: 60px;
		height: 50px;
	}
}
/* ==== ロゴのサイズを統一（白ロゴ／通常ロゴ） ==== */
header .logo.logo_white img,
header .logo.is_logo img {
  width: 200px !important;
  height: auto !important;
}