:root {
	--maincolor: #007CC8;
}
body {
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-weight: 500;
	color: #1C1C1C;
}
body.fixed {
	overflow: hidden;
}
.sp {
	display: none;
}
.container {
	max-width: 1260px;
	margin: auto;
}
.slick-dotted.slick-slider {
	margin-bottom: 0;
}
.slick-dots li button:before {
	font-size: 12px;
}
.slick-dots li button:before {
	color: #EAEAEA;
	opacity: 1;
}
.slick-dots li.slick-active button:before {
	color: #00409A;
	opacity: 1;
}
.slick_prev,.slick_next {
	width: 60px;
	cursor: pointer;
	transition: .3s;
}
.slick_prev:hover,.slick_next:hover {
	opacity: .6;
}
@media (max-width: 767px) {
	.pc {
		display: none;
	}
	.sp {
		display: block;
	}
	.slick-dots li {
		width: 10px;
		height: 10px;
		margin: 0 5px;
	}
	.slick-dots li button {
		width: 10px;
    	height: 10px;
	}
	.slick-dots li button:before {
		width: 10px;
    	height: 10px;
		font-size: 10px;
		line-height: 5px;
	}
}


/* タイトル */
.h2_sub {
	display: flex;
	align-items: center;
	gap: 10px;
}
.h2_sub:before {
	content: "";
	width: 15px;
	height: 15px;
	border-radius: 50%;
	background-color: #FFA000;
}
.h2_ja {
	color: var(--maincolor);
    display: block;
}
.h2_en {
	font-weight: 500;
	font-family: "Ubuntu", sans-serif;
	font-size: 62px;
	line-height: 1;
	color: var(--maincolor);
	margin-top: 15px;
	display: block;
}
@media (max-width: 767px) {
	.h2_sub {
		font-size: 14px;
		gap: 8px;
		line-height: 1.7;
		margin-bottom: 5px;
	}
	.h2_sub:before {
		width: 8px;
		height: 8px;
	}
	.h2_en {
		font-size: 40px;
		margin-top: 8px;
	}
}


/* アニメーション */
@keyframes transformTop {
	0% {
		transform: translateY(0);
	}
	100% {
		transform: translateY(-100%);
	}
}
@keyframes transformBottom {
	0% {
		transform: translateY(100%);
	}
	100% {
		transform: translateY(0);
	}
}
@keyframes transformRightLeft {
	0% {
		transform: translateX(0) rotate(180deg);
	}
	50% {
		transform: translateX(-50%) rotate(180deg);
		opacity: 0;
	}
	51% {
		transform: translateX(50%) rotate(180deg);
		opacity: 0;
	}
	100% {
		transform: translateX(0) rotate(180deg);
		opacity: 1;
	}
}
@keyframes transformLeftRight {
	0% {
		transform: translateX(0);
	}
	50% {
		transform: translateX(50%);
		opacity: 0;
	}
	51% {
		transform: translateX(-50%);
		opacity: 0;
	}
	100% {
		transform: translateX(0);
		opacity: 1;
	}
}
.text_animation_box {
	overflow: hidden;
	position: relative;
}
.text_animation_text {
	display: inline-block;
	padding: 2px 0;
}
.text_animation_text:nth-of-type(2) {
	position: absolute;
    top: 0;
    left: 0;
    transform: translateY(101%);
}
.text_animation_text > .case_tab_item_small {
		font-size: 13px;
		padding: 0 3px;
	}
.hover_active .text_animation_text:nth-of-type(1) {
	animation-name: transformTop;
	animation-fill-mode: forwards;
  	animation-duration: .3s;
	transition-timing-function: ease-out;
}
.hover_active .text_animation_text:nth-of-type(2) {
	animation-name: transformBottom;
	animation-fill-mode: forwards;
  	animation-duration: .3s;
	transition-timing-function: ease-out;
}
@media (max-width: 767px) {
.text_animation_text > .case_tab_item_small {
		font-size: 12px;
		padding: 0px;
	}
	}
/* ボタン */
.btn {
	width: 100%;
    max-width: 240px;
    height: 60px;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 999px;
    padding: 22px 13px 22px 38px;
    box-sizing: border-box;
}
.btn_white {
	background-color: #fff;
	border: 1px solid #ccc;
}
.btn_blue {
	background: linear-gradient(180deg, rgba(0, 124, 200, .85) 0%, rgba(0, 64, 154, .85) 100%);
}
.btn_text {
	font-weight: bold;
	color: #1C1C1C;
}
.btn_arrow_box {
	width: 38px;
	height: 38px;
	border-radius: 50%;
	overflow: hidden;
	display: grid;
	place-items: center;
	position: relative;
}
.btn_arrow_blue {
	background: linear-gradient(180deg, rgba(0, 124, 200, 1) 0%, rgba(0, 64, 154, 1) 100%);
}
.btn_arrow {
	width: 10px;
    margin-left: 2px;
}
.btn_arrow:nth-of-type(2) {
	position: absolute;
    top: 0;
    left: 0;
    transform: translateX(101%);
}
.hover_active .btn_arrow:nth-of-type(1) {
	animation-name: transformLeftRight;
	animation-fill-mode: forwards;
  	animation-duration: .3s;
	transition-timing-function: ease-out;
}
.hover_active .btn_arrow:nth-of-type(2) {
	animation-name: transformLeftRight;
	animation-fill-mode: forwards;
  	animation-duration: .3s;
	transition-timing-function: ease-out;
}
@media (max-width: 767px) {
	.btn {
		max-width: 200px;
		height: 55px;
		padding: 12px 13px 12px 24px;
	}
	.btn_text {
		font-size: 14px;
	}
	.btn_arrow_box {
		width: 25px;
		height: 25px;
	}
	.btn_arrow {
		width: 6px;
	}
}


/* CONTACT */
.section_contact {
	background-color: rgb(0 124 200 / .13);
	padding-top: 120px;
	padding-bottom: 120px;
	position: relative;
	overflow: hidden;
}
@keyframes infinity-scroll-left {
	from {
		transform: translateY(100%);
	}
		to {
		transform: translateY(-100%);
	}
}
@keyframes infinity-scroll-left2 {
	from {
		transform: translateY(0);
	}
		to {
		transform: translateY(-200%);
	}
}
@keyframes infinity-scroll-right {
	from {
		transform: translateY(100%);
	}
		to {
		transform: translateY(-100%);
	}
}
@keyframes infinity-scroll-right2 {
	from {
		transform: translateY(0);
	}
		to {
		transform: translateY(-200%);
	}
}
.contact_scroll {
	position: absolute;
	z-index: -1;
	top: 0;
	left: 47%;
	bottom: 0;
	width: 768px;
	max-width: 768px;
	height: 100%;
	display: grid;
	grid-template-columns: repeat(2,1fr);
	column-gap: 20px;
}
.contact_scroll_infinity_img {
	padding: 10px 0;
}
.contact_scroll_infinity_image1 {
	animation: infinity-scroll-left 40s -20s linear infinite;
}
.contact_scroll_infinity_image2 {
	animation: infinity-scroll-left2 40s linear infinite;
}
.contact_scroll_infinity_image3 {
	animation: infinity-scroll-right 40s -20s linear infinite reverse;
}
.contact_scroll_infinity_image4 {
	animation: infinity-scroll-right2 40s linear infinite reverse;
}
.contact_text {
	font-size: 18px;
	color: rgb(28 28 28 / .6);
    line-height: calc(26 / 16);
	margin-top: 14px;
}
.contact_box {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	column-gap: 3%;
	row-gap: 30px;
	margin-top: 65px;
}
.contact_box_item {
	border-radius: 20px;
	background: linear-gradient(180deg, rgba(0, 124, 200, .85) 0%, rgba(0, 64, 154, .85) 100%);
	padding: 2px;
	box-sizing: border-box;
	width: 100%;
	max-width: 610px;
}
.contact_box_item_inner {
	height: 100%;
	background-color: #fff;
	padding: 40px 75px 40px 26px;
	border-radius: 19px;
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	column-gap: 30px;
	position: relative;
}
.contact_box_item_image {
	width: 150px;
	aspect-ratio: 1/1;
	overflow: hidden;
	border-radius: 11px;
}
.contact_box_item_img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: .3s;
}
.hover_active .contact_box_item_img {
	transform: scale(1.1);
}
.contact_box_item_title {
	font-weight: bold;
	font-size: 18px;
	letter-spacing: 0.03em;
	border: 1px solid var(--maincolor);
	border-radius: 11px;
	padding: 11px 17px;
	margin-bottom: 20px;
}
.color_orange {
	background: linear-gradient(70deg, #F7B300 0%, #EC6C00 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}
.tel_flex {
	display: flex;
	align-items: center;
	    column-gap: 8px;
}
.tel_icon {
	width: 56px;
}
.tel_text {
	font-family: "Ubuntu", sans-serif;
	font-weight: bold;
	font-size: 36px;
	line-height: 1;
}
.tel_text_small {
	font-weight: bold;
	letter-spacing: 0.05em;
	margin-top: 10px;
}
.tel_text_small > span {
	font-size: 13px;
}
.icon_check {
	width: 18px;
	margin-top: 3px;
    margin-left: 3px;
	display: inline-block;
}
.mail_text {
	font-weight: bold;
	font-size: 26px;
	line-height: calc(34/26);
}
.contact_btn_arrow_box {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	right: 26px;
}
@media (max-width: 767px) {
	.section_contact {
		padding-top: 100px;
		padding-bottom: 100px;
	}
	.contact_text {
		font-size: 14px;
		        line-height: 1.8;
	}
	.contact_box {
		margin-top: 30px;
	}
	.contact_box_item {
		max-width: 400px;
	}
	.contact_box_item_inner {
		padding: 26px;
		column-gap: 20px;
		row-gap: 14px;
	}
	.contact_box_item_image {
		width: 80px;
	}
	.contact_box_item_textbox {
		display: contents;
	}
	.contact_box_item_title {
		font-weight: 500;
		font-size: 14px;
		line-height: calc(20/14);
		text-align: center;
		padding: 8px 0;
		width: 165px;
	}
	.contact_box_item_sp {
		width: 100%;
	}
	.tel_icon {
		width: 40px;
	}
	.tel_text {
		font-size: 28px;
	}
	.tel_text_small {
		font-size: 14px;
	}
	.mail_text {
		font-size: 18px;
	}
	.contact_btn_arrow {
		width: 6px;
	}
}