@import url('https://fonts.googleapis.com/css?family=Noto+Sans+JP:100,300,400,500,700,900|Noto+Serif+JP:200,300,400,500,600,700,900|Shippori+Mincho+B1:400;500;600;700;800&display=swap');
/*=====================================
*
*reset
*
=======================================*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
*{
  margin:0;
  padding:0;
  list-style: none;
  box-sizing: border-box;
}
html{
	font-size: 10px;
}
body{
  font-family:'Noto Sans JP',"游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium";
  color: #111;
  font-size:1.6rem;
  font-weight: normal;
  line-height: 1.5;
  --color-main: #004BA7;
}
img{
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}
a,a:visited{
  text-decoration:none;
  color:#1977ec;
  transition: ease all .4s;
}
a:hover{
  color:#ec194a;
  opacity: .7;
}
.w126{
	max-width: 1300px;
	width: 100%;
	position: relative;
	margin: 0 auto;
	padding: 0 20px;
}
.w172{
	max-width: 1760px;
	width: 100%;
	position: relative;
	margin: 0 auto;
	padding: 0 20px;
}
.poppins{
	font-family: 'Poppins';
}
@media screen and (min-width:969px){
	.sp_only{
		display: none !important;
	}
}
@media screen and (max-width:968px){
	.pc_only{
		display: none !important;
	}
}
@media screen and (max-width:768px){
	.w126{
		padding: 0 10px;
	}
}
/*======================
*
*header
*
=======================*/
header{
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	z-index: 99;
	transition: ease all .4s;
}
header.active{
	box-shadow: 0 -5px 20px 0 #00000061;
    background: #ffffff4a;
    backdrop-filter: blur(5px);
}
header .header_inner{
	width: 100%;
	max-width: 1300px;
	padding: 10px 20px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin: 0 auto;
	transition: ease all .4s;
}
header .header_inner .right{
	display: block;
}
header .header_inner .right .btn{
	display: flex;
	justify-content: flex-end;
	align-items: center;
	gap: 20px;
}
header .header_inner .right .btn .btn_inner{
	width: 100%;
	max-width: 180px;
}
header .header_inner .right .btn .btn_inner a{
	width: 100%;
	border-radius: 500px;
	background: #0055bf;
	color: #fff;
	display: block;
	padding: 10px;
	text-align: center;
}
header .header_inner .right .btn .btn_inner.contact a{
	background: #333;
}
header .header_inner .right .menu{
	margin-top: 20px;
}
header .header_inner .right .menu ol{
	display: flex;
	justify-content: flex-end;
	gap: 20px;
}
header .header_inner .right .menu ol li a{
	color: #111;
	font-size: 14px;
}
@media screen and (max-width:1260px){
	header .header_inner .right .menu ol{
		gap: 10px;
	}
}
@media screen and (max-width:968px){
	header .header_inner .right .btn .btn_inner{
		width: auto;
	}
	header .header_inner .right .btn .btn_inner a{
		padding: 5px 15px;
	}
    header .header_inner .btn .spbtn {
        width: 30px;
        height: 32px;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
    }
    header .header_inner .btn .spbtn span {
        width: 100%;
        height: 3px;
        display: flex;
        justify-content: center;
        align-items: center;
        background: #0055bf;
        margin: 3px auto
    }
    .modal_bg {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: #000;
        z-index: 98;
        transition: ease all .4s;
        opacity: 0;
        pointer-events: none
    }
    .modal_bg.active {
        opacity: .7;
        pointer-events: auto
    }
	header .header_inner .right .menu {
		margin-top: 20px;
		position: fixed;
		right: 0;
		top: 0;
		height: 100vh;
		width: 70%;
		max-width: 320px;
		margin: 0;
		background: #0055bf;
		padding: 20px;
		color: #fff;
		transform: translateX(100%);
		transition: ease all .4s;
	}
	header .header_inner .right .menu.active{
		transform: translateX(0);
	}
	header .header_inner .right .menu .close{
		text-align: right;
        font-size: 40px;
        display: inline-block;
        position: relative;
        left: 100%;
        transform: translateX(-100%);
	}
	header .header_inner .right .menu ol{
		display: block;
		gap: 0;
	}
	header .header_inner .right .menu ol li a{
		color: #fff;
        font-size: 16px;
        padding: 15px 20px;
        border-bottom: 1px solid #fff;
        display: block;
	}
}
@media screen and (max-width:768px){
	header .header_inner{
		padding: 10px;
	}
	header .header_inner .logo{
		width: 120px;
	}
	header .header_inner .right .btn{
		gap: 5px;
	}
	header .header_inner .right .btn .btn_inner a{
		font-size: 12px;
	}
}
/*======================
*fixed
=======================*/
/*======================
*mv
=======================*/
.mv{
	position: relative;
	overflow: hidden;
    padding-bottom: 60px;
}
.mv .mv_image{
	max-width: 1640px;
    width: 100%;
    padding: 0 20px;
    margin: 0 auto;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 0;
    display: flex;
    justify-content: flex-end;
}
.mv .mv_inner{
	position: relative;
    margin: 180px auto 0;
    max-width: 1300px;
    padding: 0 20px;
}

.mv .mv_inner .mv_inner_text{
	width: 70%;
    max-width: 715px;
}
.mv .mv_inner .mv_inner_text .fukidasi{
	font-size: 30px;
	line-height: 1.5;
	font-weight: 900;
	position: relative;
	text-align: center;
}
.mv .mv_inner .mv_inner_text .fukidasi::before{
	content: "";
	position: absolute;
	left: 0;
	top: 55px;
	width: 100%;
	height: 100%;
	background: url(images/mv-fukidasi.png)no-repeat left bottom;
	background-size: contain;
}
.mv .mv_inner .mv_inner_text .fukidasi span{
	color: #0055bf;
	font-size: 40px;
}
.mv .mv_inner .mv_inner_text .title{
	margin-top: 80px;
}
.mv .mv_inner .mv_inner_text .title .sub{
	font-size: 30px;
	font-weight: 800;
	color: #0055bf;
	line-height: 1;
}
.mv .mv_inner .mv_inner_text .title h1{
	font-size: 100px;
	font-weight: 900;
	line-height: 1;
}
.mv .mv_inner .mv_inner_text .title h1 span{
	font-size: 120px;
}
.mv .mv_inner .mv_inner_text .title .cau{
	font-size: 16px;
	font-weight: 700;
	margin-top: 20px;
	line-height: 1;
}
.mv .mv_inner .mv_inner_text .text{
	margin-top: 40px;
	color: #333;
	font-size: 20px;
	font-weight: 500;
	letter-spacing: 1px;
}
.mv .mv_inner .badge{
	position: absolute;
	right: 20px;
	bottom: 0;
}
.mv .mv_inner .badge ol{
	display: flex;
	justify-content: flex-end;
	gap: 20px;
}
.mv .mv_bottom{
	max-width: 1300px;
	width: 100%;
	padding: 0 20px;
	margin: 0 auto;
	position: relative;
	z-index: 2;
	margin-top: 60px;
}
.mv .mv_bottom .mv_bottom_inner{
	background: linear-gradient(to right, #4ba1d8, #0055bf);
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #fff;
    font-weight: 900;
    padding: 50px 70px;
    font-size: 55px;
    line-height: 1;
	border-radius: 10px;
	position: relative;
}
.mv .mv_bottom .mv_bottom_inner::after{
	content: "";
	position: absolute;
	left: 10px;
	top: 10px;
	width: calc( 100% - 20px );
	height: calc( 100% - 20px );
	border-radius: 10px;
	border: 1px solid #fff;
	opacity: .2;
	pointer-events: none;
}
.mv .mv_bottom .mv_bottom_inner .left{
	color: #f6ff00;
	font-size: 60px;
}
.mv .mv_bottom .mv_bottom_inner .right span{
	color: #f6ff00;
}
.mv .mv_bottom .mv_bottom_inner .right strong{
	font-size: 80px;
	font-weight: 700;
	position: relative;
	top: 6px;
}
@media screen and (max-width:1260px) {
	.mv{
		height: auto;
	}
	.mv .mv_image img{
		position: relative;
		right: -20%;
	}
	.mv .mv_inner{
		margin-top: 140px;
	}
	.mv .mv_inner .mv_inner_text{
		width: 60%;
	}
	.mv .mv_inner .mv_inner_text .fukidasi{
		font-size: 24px;
	}
	.mv .mv_inner .mv_inner_text .fukidasi span{
		font-size: 30px;
	}
	.mv .mv_inner .mv_inner_text .title .sub{
		font-size: 24px;
	}
	.mv .mv_inner .mv_inner_text .title h1{
		font-size: 70px;
	}
	.mv .mv_inner .mv_inner_text .title h1 span{
		font-size: 80px;
	}
	.mv .mv_inner .mv_inner_text .text{
		margin-top: 20px;
    	font-size: 16px;
	}
	.mv .mv_inner .badge{
		width: 45%;
	}
	.mv .mv_bottom{
		margin: 40px auto;
	}
	.mv .mv_bottom .mv_bottom_inner{
		padding: 20px;
		font-size: 40px;
		justify-content: center;
		gap: 40px;
	}
	.mv .mv_bottom .mv_bottom_inner .left{
		font-size: 40px;
		position: relative;
        top: 4px;
	}
	.mv .mv_bottom .mv_bottom_inner .right strong{
		font-size: 60px;
		top: 4px;
	}
}
@media screen and (max-width:968px){
	.mv{
		padding-bottom: 0;
	}
	.mv .mv_inner{
		margin-top: 120px;
	}
	.mv .mv_image img {
        right: -25%;
    }
	.mv .mv_inner .mv_inner_text{
		width: 55%;
	}
	.mv .mv_inner .mv_inner_text .fukidasi::before{
		top: 40px;
	}
	.mv .mv_inner .mv_inner_text .title {
		margin-top: 60px;
	}
	.mv .mv_inner .mv_inner_text .title .cau{
		margin-top: 10px;
	}
	.mv .mv_inner .mv_inner_text .text{
		font-size: 13px;
	}
	.mv .mv_inner .badge ol{
		gap: 10px;
	}
	.mv .mv_bottom .mv_bottom_inner{
		font-size: 32px;
	}
	.mv .mv_bottom .mv_bottom_inner .left{
		font-size: 32px;
	}
	.mv .mv_bottom .mv_bottom_inner .right strong {
        font-size: 52px;
        top: 3px;
    }
}
@media screen and (max-width:768px){
	.mv .mv_image{
		top: 10%;
	}
	.mv .mv_image img {
        right: -35%;
    }
    .mv .mv_inner{
		padding: 0 10px;
		margin-top: 80px;
	}
    .mv .mv_inner .mv_inner_text {
        width: 100%;
    }
	.mv .mv_inner .mv_inner_text .fukidasi {
        font-size: 18px;
        width: 64%;
    }
	.mv .mv_inner .mv_inner_text .fukidasi::before {
        top: 30px;
    }
	.mv .mv_inner .mv_inner_text .fukidasi span {
        font-size: 20px;
    }
	.mv .mv_inner .mv_inner_text .title {
        margin-top: 50px;
    }
	.mv .mv_inner .mv_inner_text .title .sub {
        font-size: 20px;
        margin-bottom: 10px;
    }
	.mv .mv_inner .mv_inner_text .title h1 {
        font-size: 40px;
    }
	.mv .mv_inner .mv_inner_text .title h1 span {
        font-size: 45px;
    }
	.mv .mv_inner .badge {
        position: relative;
        width: 100%;
        padding: 0 20px;
        margin: 10px auto;
		right: auto;
    }
	.mv .mv_bottom .mv_bottom_inner{
		display: block;
		text-align: center;
		font-size: 28px;
	}
	.mv .mv_bottom .mv_bottom_inner .left {
        font-size: 28px;
		margin-bottom: 10px;
    }
	.mv .mv_bottom .mv_bottom_inner .right strong {
        font-size: 46px;
        top: 3px;
    }
}
/*======================
*
*main
*
=======================*/
.ttl{
	text-align: center;
	margin: 0 auto 80px;
}
.ttl .sub{
	font-size: 30px;
	font-weight: 800;
	color: #333;
	line-height: 1;
}
.ttl h2{
	font-size: 70px;
	font-weight: 900;
	color: #004892;
}
.center_text{
	text-align: center;
	font-weight: 500;
	font-size: 20px;
	line-height: 2;
}
@media screen and (max-width:1260px){
	.ttl h2{
		font-size: 60px;
	}
	.center_text{
		font-size: 18px;
	}
}
@media screen and (max-width:968px){
	.ttl{
		margin-bottom: 40px;
	}
	.ttl .sub{
		font-size: 26px;
	}
	.ttl h2{
		font-size: 40px;
	}
	.center_text{
		font-size: 16px;
	}
}
@media screen and (max-width:768px){
	.ttl{
		margin-bottom: 20px;
	}
	.ttl .sub{
		font-size: 20px;
	}
	.ttl h2{
		font-size: 22px;
	}
	.center_text{
		font-size: 14px;
	}
}
/*======================
*cta
=======================*/
.cta{
	padding: 80px 0;
	background: url(images/sec01-bg.png)no-repeat center top;
	background-size: cover;
	position: relative;
}
.cta .cta_title{
	font-size: 50px;
	font-weight: 800;
	text-align: center;
	color: #fff;
	text-shadow: 0px 4px 8px #000000e3;
}
.cta .cta_title span{
	color: #0055bf;
	background: #fff;
	text-shadow: none;
}
.cta .cta_btn{
	margin-bottom: 0;
}
.cta .text{
	font-size: 20px;
	font-weight: 600;
	text-align: center;
	margin-top: 20px;
	color: #fff;
	margin: 40px auto;
}
.cta_btn{
	margin: 60px auto 40px;
	width: 100%;
	max-width: 720px;
}
.cta_btn a{
	position: relative;
}
.cta_btn a .btn_text{
	z-index: 3;
    position: absolute;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 24px;
    font-weight: 800;
    color: #111;
    border-radius: 5px;
    background: #f6ff00;
    padding: 5px 40px;
}
.cta_btn a .inner{
	position: relative;
	padding: 4px;
	border-radius: 500px;
	background: linear-gradient(to top,#f56c00,#ffbb82);
	padding: 2px;
}
.cta_btn a .inner .inner_text{
	position: relative;
	padding: 40px;
	background: linear-gradient(to right,#f8a900,#f86300);
	z-index: 2;
	border-radius: 500px;
	font-size: 40px;
	font-weight: 900;
	color: #fff;
	text-align: center;
}
.cta_btn a .inner .inner_text::before{
	content: '';
	width: 40px;
	height: 40px;
	z-index: -1;
	position: absolute;
	right: 40px;
	top: 50%;
	transform: translateY(-50%);
	background: url(images/btn-arrow.png)no-repeat center center;
}
@media screen and (max-width:1260px){
	.cta .cta_title{
		font-size: 40px;
	}
}
@media screen and (max-width:968px){
	.cta{
		padding: 40px 0;
	}
	.cta .cta_title {
        font-size: 32px;
    }
	.cta_btn {
    	max-width: 640px;
	}
	.cta_btn a .inner .inner_text{
		padding: 30px;
		font-size: 32px;
	}
}
@media screen and (max-width:768px){
	.cta .cta_title {
        font-size: 22px;
    }
	.cta .text{
		font-size: 18px;
	}
	.cta_btn a .btn_text{
		font-size: 18px;
		padding: 5px 20px;
	}
	.cta_btn a .inner .inner_text {
        padding: 20px 10px;
        font-size: 20px;
    }
	.cta_btn a .inner .inner_text::before {
		content: '';
		width: 20px;
		height: 20px;
		z-index: -1;
		position: absolute;
		right: 10px;
		top: 50%;
		transform: translateY(-50%);
		background: url(images/btn-arrow.png) no-repeat center center;
		background-size: contain;
	}
}
/*======================
*section01
=======================*/
.sec01{
	padding: 120px 0;
	position: relative;
}
.sec01 .sec01_image{
	width: 100%;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	position: absolute;
	left: 0;
	top: -80%;
	z-index: -1;
}
.sec01 .sec01_image img{
	box-shadow: 0px 10px 16px -10px #00000070;
}
.sec01 .sec01_text{
	margin-top: 40px;
}
.sec01 .sec01_text .text{
	font-size: 24px;
	font-weight: 500;
	text-align: center;
	color: #111;
	line-height: 2.5;
	text-shadow: 0px 3px 10px #fff;
}
@media screen and (max-width:1260px){
	.sec01 .sec01_image{
		opacity: .5;
	}
}
@media screen and (max-width:968px){
	.sec01 {
		padding: 80px 0;
	}
	.sec01 .sec01_image{
		top: -50%;
	}
	.sec01 .sec01_image img{
		width: 30%;
	}
	.sec01 .sec01_text .text{
		font-size: 18px;
	}
}
@media screen and (max-width:768px){
	.sec01{
		padding: 40px 0;
	}
	.sec01 .sec01_text .text {
        font-size: 16px;
        line-height: 2;
    }
	.sec01 .sec01_image {
        top: 50%;
        transform: translateY(-50%);
    }
	.sec01 .sec01_image img{
		width: 40%;
	}
}
/*======================
*section2
=======================*/
.sec02{
	padding: 80px 0;
	background: #ebf4ff;
}
.sec02 .sec02_inner{
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	margin-top: 60px;
	background: #fff;
	box-shadow: 0px 10px 10px -5px #00000070;
	padding: 40px;
	border-radius: 10px;
}
.sec02 .sec02_inner.re{
	flex-flow: row-reverse;
}
.sec02 .sec02_inner .image{
	width: 55%;
}
.sec02 .sec02_inner.re .image{
	text-align: right;
}
.sec02 .sec02_inner .text{
	width: 45%;
}
.sec02 .sec02_inner .text h3{
	font-size: 30px;
	font-weight: 800;
}
.sec02 .sec02_inner .text p{
	font-size: 18px;
	color: #333;
	margin: 20px auto;
	font-weight: 500;
}
.sec02 .sec02_inner .text .red{
	border-radius: 10px;
	position: relative;
}
.sec02 .sec02_inner .text .red .icon{
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	background: #e12f2f;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 2;
}
.sec02 .sec02_inner .text .red .red_inner{
	background: #fff6f6;
    border: 1px solid #e12f2f;
    width: calc(100% - 20px);
    left: 20px;
    position: relative;
	border-radius: 10px;
	padding: 15px;
	padding-left: 30px;
}
.sec02 .sec02_inner .text .red .red_inner .title{
	font-weight: 800;
	color: #e12f2f;

}
.sec02 .sec02_inner .text .red .red_inner p,
.sec02 .sec02_inner .text .orange .orange_inner p{
	margin: 5px auto 0;
	font-size: 16px;
}
.sec02 .sec02_inner .text .red .red_inner ol{
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 10px;
}
.sec02 .sec02_inner .text .red .red_inner ol li{
	padding: 5px 10px;
	display: inline-block;
	background: #e98181;
	color: #fff;
	border-radius: 3px;
	line-height: 1;
}
.sec02 .sec02_inner .text .orange{
	border-radius: 10px;
	position: relative;
	margin-top: 20px;
}
.sec02 .sec02_inner .text .orange .icon{
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	background: #f5a100;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 2;
}
.sec02 .sec02_inner .text .orange .orange_inner{
	background: #fffdf9;
    border: 1px solid #f5a100;
    width: calc(100% - 20px);
    left: 20px;
    position: relative;
	border-radius: 10px;
	padding: 15px;
	padding-left: 30px;
}
.sec02 .sec02_inner .text .orange .orange_inner .title{
	font-weight: 800;
	color: #f5a100;
}
.sec02 .sec02_inner .text .cau{
	font-size: 14px;
	color: #555;
}
.sec02 .sec02_bottom{
	margin-top: 60px;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 20px;
}
.sec02 .sec02_bottom .image{
	text-align: center;
}
.sec02 .sec02_bottom .text{
	text-align: center;
	font-size: 40px;
	font-weight: 800;
	margin-top: 20px;
}
.sec02 .sec02_bottom .text span{
	font-size: 50px;
	font-weight: 900;
	display: block;
}
@media screen and (max-width:1260px){
	.sec02 .sec02_inner{
		padding: 20px;
	}
	.sec02 .sec02_inner .image{
		width: 50%;
	}
	.sec02 .sec02_inner .text {
		width: 48%;
	}
	.sec02 .sec02_inner .text h3{
		font-size: 24px;
	}
	.sec02 .sec02_inner .text p{
		font-size: 14px;
	}
	.sec02 .sec02_inner .text .red .red_inner .title{
		font-size: 15px;
	}
	.sec02 .sec02_inner .text .red .red_inner p,
	.sec02 .sec02_inner .text .orange .orange_inner p,
	.sec02 .sec02_inner .text .red .red_inner ol li{
		font-size: 15px;
	}
	.sec02 .sec02_bottom .text{
		font-size: 30px;
	}
	.sec02 .sec02_bottom .text span{
		font-size: 34px;
	}
}
@media screen and (max-width:968px){
	.sec02{
		padding: 40px 0;
	}
	.sec02 .sec02_inner{
		align-items: center;
	}
	.sec02 .sec02_bottom .text {
        font-size: 22px;
    }
	.sec02 .sec02_bottom .text span {
        font-size: 28px;
    }
}
@media screen and (max-width:768px){
	.sec02 .sec02_inner{
		display: block;
		padding: 10px;
	}
	.sec02 .sec02_inner .image {
        width: 100%;
    }
	.sec02 .sec02_inner .text {
        width: 100%;
        margin-top: 20px;
    }
	.sec02 .sec02_inner .text h3 {
        font-size: 18px;
    }
	.sec02 .sec02_inner .text .red .icon,
	.sec02 .sec02_inner .text .orange .icon{
		width: 30px;
		height: 30px;
		padding: 8px;
	}
	.sec02 .sec02_inner .text .red .red_inner,
	.sec02 .sec02_inner .text .orange .orange_inner{
		padding: 10px;
		padding-left: 20px;
		width: calc(100% - 15px);
	    left: 15px;
	}
	.sec02 .sec02_inner .text .red .red_inner ol li{
        font-size: 13px;
		padding: 5px;
	}
	.sec02 .sec02_bottom{
		gap: 10px;
	}
	.sec02 .sec02_bottom .text {
        font-size: 18px;
		margin-top: 0;
    }
	.sec02 .sec02_bottom .text span {
        font-size: 22px;
    }
}
/*======================
*section3
=======================*/
.sec03{
	padding: 80px 0 ;
}
.sec03 .sec03_image{
	text-align: center;
	margin: 60px auto;
	padding: 0 5%;
}
.sec03 .sec03_list{
	margin: 60px auto;
}
.sec03 .sec03_list ol{
	display: flex;
	justify-content: space-between;
	gap: 20px;
}
.sec03 .sec03_list ol li{
	width: 32%;
    border: 1px solid #0055bf;
    border-radius: 5px;
    padding: 20px;
    position: relative;
    margin-top: 160px;
}
.sec03 .sec03_list ol li .image{
	text-align: center;
    position: absolute;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    top: 0;
}
.sec03 .sec03_list ol li .text{
	padding-top: 160px;
}
.sec03 .sec03_list ol li .text h3{
	font-size: 26px;
	font-weight: 800;
	color: #0055bf;
	text-align: center;
}
.sec03 .sec03_list ol li .text p{
	font-size: 18px;
    font-weight: 500;
    line-height: 1.8;
    margin-top: 10px;
}
.sec03 .sec03_list ol li .text p span{
	color: #0055bf;
	font-weight: 800;
}
.sec03 .sec03_bottom{
	text-align: center;
    margin-top: 60px;
    background: linear-gradient(to right, #f8a900, #f86300);
    color: #fff;
    font-size: 36px;
    padding: 36px;
    border-radius: 10px;
    position: relative;
    line-height: 1.4;
    font-weight: 800;
	box-shadow: 0px 15px 10px -10px #0000002e;
}
.sec03 .sec03_bottom::before{
	content: '';
	width: 132px;
    height: 132px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    border: 14px solid #fff;
    border-radius: 50%;
    z-index: 1;
	opacity: .2;
}
.sec03 .sec03_bottom_inner{
	position: relative;
	z-index: 2;
}
.sec03 .sec03_bottom_inner span{
	font-size: 42px;
	font-weight: 900;
	display: block;
	color: #fcff00;
}
@media screen and (max-width:1260px){
	.sec03 .sec03_list ol li .image{
		padding: 0 20px;
	}
	.sec03 .sec03_list ol li .text {
		padding-top: 50%;
	}
	.sec03 .sec03_list ol li .text h3{
		font-size: 22px;
	}
	.sec03 .sec03_list ol li .text p{
		font-size: 16px;
	}
}
@media screen and (max-width:968px){
	.sec03{
		padding: 40px 0;
	}
	.sec03 .sec03_list {
		margin: 40px auto;
	}
	.sec03 .sec03_list ol li{
		padding: 10px;
	}
	.sec03 .sec03_list ol li .text h3 {
        font-size: 20px;
    }
    .sec03 .sec03_list ol li .text p {
        font-size: 14px;
    }
	.sec03 .sec03_bottom_inner span{
		font-size: 32px;
	}
	.sec03 .sec03_bottom{
		font-size: 26px;
		margin-top: 40px;
	}
	.sec03 .sec03_bottom::before {
		width: 102px;
		height: 102px;
	}
}
@media screen and (max-width:768px){
	.sec03 .sec03_image{
		padding: 0;
	}
	.sec03 .sec03_list ol{
		display: block;
	}
	.sec03 .sec03_list ol li {
        padding: 10px;
        margin: 20px auto;
        display: flex;
		justify-content: flex-end;
        width: 100%;
		border: none;
    }
	.sec03 .sec03_list ol li .image {
        left: 0;
        top: 50%;
        transform: translateY(-50%);
        padding: 0;
        width: 40%;
    }
	.sec03 .sec03_list ol li .text {
        padding: 10px;
        border: 1px solid #0055bf;
        border-radius: 5px;
        width: 80%;
        padding-left: 25%;
    }
	.sec03 .sec03_list ol li .text h3{
		text-align: left;
	}
	.sec03 .sec03_bottom {
        font-size: 20px;
        margin-top: 40px;
        padding: 20px;
    }
	.sec03 .sec03_bottom_inner span {
        font-size: 24px;
    }
	.sec03 .sec03_bottom::before {
        width: 82px;
        height: 82px;
    }
}
/*======================
*section4
=======================*/
.sec04{
	padding: 80px 0;
	background: #fafafa;
}
.sec04 .sec04_list{
	
}
.sec04 .sec04_list ol li{
	margin-top: 80px;
}
.sec04 .sec04_list ol li .step{
	max-width: 280px;
	width: 100%;
	text-align: center;
	border-radius: 500px;
	padding: 2px;
	border: 3px solid #0055bf;
	background: #fff;
	color: #0055bf;
	font-size: 40px;
	font-weight: 800;
	margin: 0 auto;
	margin-bottom: -35px;
    z-index: 2;
    position: relative;
}
.sec04 .sec04_list ol li .sec04_list_inner{
    border-radius: 5px;
    padding: 50px 30px;
    position: relative;
	background: url(images/sec04-bg1.png)no-repeat center top;
	background-size: cover;
    border-radius: 10px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	color: #fff;
}
.sec04 .sec04_list ol li:nth-child(2) .sec04_list_inner{
	background: url(images/sec04-bg2.png)no-repeat center top;
	background-size: cover;
}
.sec04 .sec04_list ol li:nth-child(3) .sec04_list_inner{
	background: url(images/sec04-bg3.png)no-repeat center top;
	background-size: cover;
}
.sec04 .sec04_list ol li .sec04_list_inner .image{
	width: 30%;
	text-align: center;
    margin-top: -90px;
}
.sec04 .sec04_list ol li .sec04_list_inner .title{
	width: 35%;
	font-size: 18px;
	font-weight: 500;
}
.sec04 .sec04_list ol li .sec04_list_inner .title h3{
	font-weight: 800;
	font-size: 40px;
	margin-bottom: 5px;
}
.sec04 .sec04_list ol li .sec04_list_inner .text{
	width: 35%;
	line-height: 2;
}
@media screen and (max-width:1260px){
	.sec04 .sec04_list ol li .sec04_list_inner .image {
		width: 25%;
	}
	.sec04 .sec04_list ol li .sec04_list_inner .title {
		width: 40%;
		padding: 0 20px;
		font-size: 16px;
	}
	.sec04 .sec04_list ol li .sec04_list_inner .title h3{
		font-size: 34px;
	}
	.sec04 .sec04_list ol li .sec04_list_inner .text{
		width: 35%;
		font-size: 14px;
	}
}
@media screen and (max-width:968px){
	.sec04{
		padding: 40px 0;
	}
	.sec04 .sec04_list ol li .step{
		font-size: 30px;
		max-width: 220px;
		margin-bottom: -30px;
	}
	.sec04 .sec04_list ol li .sec04_list_inner{
		padding: 50px 10px;
	}
	.sec04 .sec04_list ol li .sec04_list_inner .title{
		font-size: 14px;
	}
	.sec04 .sec04_list ol li .sec04_list_inner .title h3 {
        font-size: 24px;
    }
	.sec04 .sec04_list ol li .sec04_list_inner .image {
        width: 20%;
    }
	.sec04 .sec04_list ol li .sec04_list_inner .text{
		width: 40%;
		font-size: 12px;
	}
	.sec04 .sec04_list ol li:first-child .sec04_list_inner .image img{
		height: 180px;
	}
}
@media screen and (max-width:768px){
	.sec04 .sec04_list ol li {
		margin-top: 40px;
	}
	.sec04 .sec04_list ol li .step {
        font-size: 24px;
        max-width: 140px;
        margin-bottom: -22px;
    }
	.sec04 .sec04_list ol li .sec04_list_inner{
		display: flex;
		justify-content: flex-end;
		flex-wrap: wrap;
        padding: 30px 10px;
	}
	.sec04 .sec04_list ol li .sec04_list_inner .image {
        width: 40%;
        text-align: center;
        margin: 0 auto;
        position: absolute;
        left: 0;
        padding: 0 15px;
    }
	.sec04 .sec04_list ol li .sec04_list_inner .title{
		width: 60%;
		padding: 0;
		margin-bottom: 10px;
	}
	.sec04 .sec04_list ol li .sec04_list_inner .title h3 {
        font-size: 20px;
    }
	.sec04 .sec04_list ol li .sec04_list_inner .text{
		width: 60%;
	}
}
/*======================
*section5
=======================*/
.sec05{
	
}
.sec05 .company_inner{
	background: url(images/sec05-bg.png)no-repeat center top;
	background-size: cover;
	padding: 80px 0;
}
.sec05 .company_inner .ttl h2{
	text-align: center;
	color: #fff;
}
.sec05 .company_inner .message{
	color: #fff;
	font-size: 20px;
	font-weight: 500;
	position: relative;
	padding-left: 100px;
	margin: 120px auto 80px;
	letter-spacing: 2px;
}
.sec05 .company_inner .message::before{
	content: '';
	width: 80px;
	height: 1px;
	background: #fff;
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(calc( -50% + .5px));
}
.sec05 .company_inner .company_flex{
	display: flex;
	position: relative;
	justify-content: flex-end;
}
.sec05 .company_inner .company_flex .image{
	position: absolute;
	left: 0;
	top: 0;
}
.sec05 .company_inner .company_flex .image img{
	border-radius: 10px;
	box-shadow: 0px 15px 10px -10px #0000002e;
}
.sec05 .company_inner .company_flex .text{
	max-width: 930px;
	width: 70%;
	padding: 50px;
	padding-left: 200px;
	background: linear-gradient(to right, #ffffff21, transparent);
	border-radius: 10px 0 0 10px;
	color: #fff;
	margin-top: 40px;
	position: relative;
}
.sec05 .company_inner .company_flex .text .growth{
	position: absolute;
    right: 10px;
    top: -50px;
}
.sec05 .company_inner .company_flex .text .growth img{
	box-shadow: 0px 15px 10px -10px #0000002e;
}
.sec05 .company_inner .company_flex .text .sub{
	font-size: 18px;
	font-weight: 500;
}
.sec05 .company_inner .company_flex .text h3{
	margin: 20px auto 30px;
	font-weight: 800;
	font-size: 26px;
}
.sec05 .company_inner .company_flex .text p{
	line-height: 2;
}
.sec05 .sec05_wrap{
	background: #f6faff;
	overflow: hidden;
}
.sec05 .sec05_flex{
	margin: 80px auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.sec05 .sec05_flex.re{
	flex-flow: row-reverse;
}
.sec05 .sec05_flex .iamge{
	width: 50%;
	border-radius: 10px;
}
.sec05 .sec05_flex .text{
	width: 50%;
}
.sec05 .sec05_flex .text .sub{
	font-size: 20px;
	font-weight: 600;
	margin-bottom: 5px;
}
.sec05 .sec05_flex .text h3{
	font-size: 34px;
	font-weight: 800;
	margin-bottom: 20px;
}
.sec05 .sec05_flex .text h3 span{
	font-size: 44px;
	margin: 0 3px;
}
.sec05 .sec05_flex .text h3 span.cau{
	font-size: 16px;
}
.sec05 .sec05_flex .text p{
	color: #333;
	line-height: 2;
}
.sec05 .sec05_flex .text .cau{
	font-size: 14px;
	color: #555;
	margin-top: 20px;
}
@media screen and (max-width:1260px){
	.sec05 .company_inner .message{
		margin: 40px auto;
	}
	.sec05 .company_inner .company_flex .image{
		width: 40%;
	}
	.sec05 .company_inner .company_flex .text{
		padding: 20px;
		padding-left: 130px;
	}
	.sec05 .company_inner .company_flex .text h3{
		margin: 10px auto;
	}
	.sec05 .sec05_flex .image {
        width: 45%;
    }
	.sec05 .sec05_flex .text .sub{
		font-size: 18px;
	}
	.sec05 .sec05_flex .text h3{
		font-size: 26px;
	}
	.sec05 .sec05_flex .text h3 span{
		font-size: 34px;
	}
}
@media screen and (max-width:968px){
	.sec05 .company_inner{
		padding: 40px 0;
	}
	.sec05 .company_inner .message{
		font-size: 18px;
	}
	.sec05 .company_inner .company_flex .text{
		padding-left: 90px;
		font-size: 14px;
		margin-top: 20px;
	}
	.sec05 .company_inner .company_flex .text h3{
		font-size: 24px;
	}
	.sec05 .sec05_flex{
		margin: 60px auto;
	}
	.sec05 .sec05_flex .text{
		font-size: 14px;
	}
	.sec05 .sec05_flex .text .sub {
        font-size: 16px;
    }
	.sec05 .sec05_flex .text h3 {
        font-size: 24px;
    }
	.sec05 .sec05_flex .text h3 span {
        font-size: 30px;
    }
	.sec05 .company_inner .company_flex .text .growth{
		right: 10px;
		top: -10px;
		max-width: 80px;
	}
}
@media screen and (max-width:768px){
	.sec05 .company_inner .message {
        margin: 20px auto;
        font-size: 16px;
        padding-left: 60px;
    }
	.sec05 .company_inner .message::before {
		width: 40px;
	}
	.sec05 .company_inner .company_flex {
		display: block;
	}
	.sec05 .company_inner .company_flex .image {
        width: 90%;
        position: relative;
    }
	.sec05 .company_inner .company_flex .text {
        margin-top: -55px;
        padding: 10px;
        width: 90%;
        padding-top: 66px;
        position: relative;
        left: 100%;
        transform: translateX(-100%);
    }
	.sec05 .company_inner .company_flex .text .sub {
		font-size: 16px;
		font-weight: 500;
	}
	.sec05 .company_inner .company_flex .text h3 {
        font-size: 20px;
		margin-bottom: 5px;
    }
	.sec05 .company_inner .company_flex .text p {
		line-height: 2;
		font-size: 14px;
	}
	.sec05 .sec05_flex {
        margin: 40px auto;
        display: block;
    }
	.sec05 .sec05_flex .image {
        width: 100%;
    }
	.sec05 .sec05_flex .text {
        width: 100%;
        margin-top: 20px;
    }
	.sec05 .sec05_flex .text h3 {
        font-size: 20px;
    }
	.sec05 .sec05_flex .text h3 span {
        font-size: 24px;
    }
}
/*======================
*section06
=======================*/
.sec06{
	padding: 80px 0;
}
.sec06 .sec06_list{
	margin: 40px auto;
}
.sec06 .sec06_list ol{
	display: flex;
	justify-content: center;
	gap: 10px;
}
.sec06 .sec06_list ol li{
	width: 30%;
	max-width: 360px;
	border: 1px solid #004892;
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0px 15px 10px -10px #0000002e;
}
.sec06 .sec06_list ol li .title{
	color: #fff;
	text-align: center;
	background: #004892;
	font-size: 20px;
	font-weight: 800;
	padding: 10px 0;
}
.sec06 .sec06_list ol li .inner{
	padding: 10px 20px;
	text-align: center;
}
.sec06 .sec06_list ol li .inner .col_title{
	font-size: 18px;
	font-weight: 600;
}
.sec06 .sec06_list ol li .inner .col_title span{
	font-size: 14px;
}
.sec06 .sec06_list ol li .inner .col_text{
	height: 40px;
    padding-bottom: 5px;
	border-bottom: 1px solid #ccc;
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
}
.sec06 .sec06_list ol li .inner:last-child .col_text{
	border-bottom: none;
}
.sec06 .sec06_list ol li .inner .col_text.border::after{
	content: '';
	width: 30px;
	height: 3px;
	background: #999;
}
.sec06 .sec06_list ol li .inner .col_text span{
	position: absolute;
    bottom: 5px;
    left: calc(50% + 20px);
    transform: translateX(-50%);
    font-size: 14px;
    color: #999;
}
.sec06 .sec06_list ol li .inner .col_text.price{
	height: auto;
	font-size: 30px;
	font-weight: 800;
	padding: 0;
}
.sec06 .sec06_list ol li .inner .col_text.price02{
	height: auto;
	font-size: 30px;
	font-weight: 800;
	padding: 0;
	color: #f86300;
}
.sec06 .sec06_list ol li:nth-child(2){
	width: 36%;
	max-width: 420px;
	background: #fff6f0;
	border: 1px solid #ff9e5d;
}
.sec06 .sec06_list ol li:nth-child(2) .title{
	font-size: 26px;
	background: linear-gradient(to right, #f8a900, #f86300);
	padding: 5px 0;
}
.sec06 .sec06_list ol li:nth-child(2) .inner{
	padding: 10px 40px;
}
.sec06 .sec06_list ol li:nth-child(2) .inner .col_text{
	border-bottom: 1px solid #efcab1;
}
.sec06 .sec06_list ol li:nth-child(2) .inner:last-child .col_text{
	border-bottom: none;
}
.sec06 .sec06_list .cau{
	max-width: 1200px;
	width: 100%;
	padding: 0 20px;
	margin: 20px auto 0;
	font-size: 14px;
	color: #555;
}
.sec06 .sec06_list ol li .title br{
	display: none;
}
@media screen and (max-width:1260px){
	.sec06 .sec06_list ol li .inner .col_text.price,
	.sec06 .sec06_list ol li .inner .col_text.price02{
		font-size: 26px;
	}
	.sec06 .sec06_list ol li .title {
		height: 80px;
		display: flex;
		justify-content: center;
		align-items: center;
	}
	.sec06 .sec06_list ol li .title br{
		display: inherit;
	}
	.sec06 .sec06_list ol li .inner .col_title span{
		display: block;
	}
}
@media screen and (max-width:968px){
	.sec06{
		padding: 40px 0;
	}
	.sec06 .sec06_list ol li .inner .col_text.price,
	.sec06 .sec06_list ol li .inner .col_text.price02 {
        font-size: 20px;
    }
}
@media screen and (max-width:768px){
	.sec06 .sec06_list{
		margin-bottom: 0;
	}
	.sec06 .sec06_list ol{
		display: block;
	}
	.sec06 .sec06_list ol li{
		width: 100%;
		margin: 20px auto;
	}
	.sec06 .sec06_list ol li .title{
		height: auto;
	}
	.sec06 .sec06_list ol li:nth-child(2){
		width: 100%;
	}
	.sec06 .sec06_list ol li:nth-child(2) .title{
		font-size: 20px;
		padding: 10px 0;
	}
	.sec06 .sec06_list .cau{
		padding: 0;
	}
}
/*======================
*section07
=======================*/
.sec07{
	padding: 80px 0;
	background: #fafafa;
}
.sec07 .faq ol li{
	margin: 60px auto 0;
	padding: 0 20px;
	background: #fff;
	border-radius: 10px;
	box-shadow: 0px 15px 10px -10px #0000002e;
}
.sec07 .faq ol li .title{
	padding: 20px 60px;
	position: relative;
	font-size: 24px;
	font-weight: 800;
}
.sec07 .faq ol li .title::before{
	content: 'Q';
    font-size: 40px;
    color: #004892;
    position: absolute;
    left: 10px;
    top: 18px;
    font-family: 'Poppins';
    line-height: 1;
}
.sec07 .faq ol li .title span {
    position: absolute;
    right: 40px;
    top: 50%;
    transform: translateY(-50%)
}

.sec07 .faq ol li .title span:before {
    content: '';
    display: block;
    width: 20px;
    height: 2px;
    background: var(--color-main);
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%)
}

.sec07 .faq ol li .title span:after {
    content: '';
    display: block;
    width: 2px;
    height: 20px;
    background: var(--color-main);
    position: absolute;
    left: 9px;
    top: 50%;
    transform: translateY(-50%);
    transition: ease all .4s
}

.sec07 .faq ol li .title span.active:after {
    transform: translateY(-50%) rotate(90deg);
    opacity: 0
}
.sec07 .faq ol li .text{
	padding: 20px;
    padding-left: 60px;
    position: relative;
	border-top: 1px solid #ccc;
	display: none;
	color: #333;
	font-weight: 400;
}
.sec07 .faq ol li .text::before{
	content: 'A';
    font-size: 40px;
    color: #d82626;
    position: absolute;
    left: 10px;
    top: 20px;
    font-family: 'Poppins';
	font-weight: 800;
	line-height: 1;
}
@media screen and (max-width:1260px){
	.sec07 .faq ol li .title{
		font-size: 20px;
	}
}
@media screen and (max-width:968px){
	.sec07{
		padding: 40px 0;
	}
	.sec07 .faq ol li .title {
        font-size: 18px;
    }
	.sec07 .faq ol li{
		margin-top: 40px;
	}
}
@media screen and (max-width:768px){
	.sec07 .faq ol li {
        margin-top: 20px;
		padding: 0 10px;
    }
	.sec07 .faq ol li .title {
        padding: 10px 30px;
        font-size: 14px;
    }
	.sec07 .faq ol li .title::before{
		font-size: 26px;
		left: 0;
	}
	.sec07 .faq ol li .title span{
		right: 20px;
	}
	.sec07 .faq ol li .text::before{
		font-size: 26px;
    	left: 0;
	}
	.sec07 .faq ol li .text{
		padding: 10px;
		padding-left: 30px;
		font-size: 13px;
		line-height: 1.8;
	}
}
/*======================
*document
=======================*/
.document{
	padding: 160px 0 80px;
}
.document .doc_inner{
	position: relative;
	border: 2px solid #004892;
	border-radius: 10px;
	padding: 80px 60px;
}
.document .doc_inner .title{
	position: absolute;
	left: 50%;
	top: 0;
	transform: translate(-50%,-75%);
}
.document .doc_inner .title .sub{
	color: #004892;
	font-size: 26px;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	font-weight: 900;
}
.document .doc_inner .title .sub::before{
	content: '';
	width: 16px;
	height: 28px;
	background: url(images/ex02.png) no-repeat;
}
.document .doc_inner .title .sub::after{
	content: '';
	width: 16px;
	height: 28px;
	background: url(images/ex01.png) no-repeat;
}
.document .doc_inner .title h2{
	background: #004892;
    color: #fff;
    font-size: 40px;
    font-weight: 900;
    border-radius: 10px;
    padding: 5px 10px;
	margin-top: 5px;
}
.document .doc_inner .doc_flex{
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.document .doc_inner .doc_flex .image{
	width: 56%;
}
.document .doc_inner .doc_flex .text{
	width: 42%;
}
.document .doc_inner .doc_flex .text ol li{
	border-bottom: 1px solid #ccc;
	padding: 15px 10px;
	font-size: 18px;
	font-weight: 500;
	position: relative;
	padding-left: 75px;
}
.document .doc_inner .doc_flex .text ol li::before{
	content: '';
	width: 38px;
	height: 38px;
	background: url(images/paper-check.png) no-repeat;
	position: absolute;
	left: 20px;
	top: 50%;
	transform: translateY(-50%);
}
.document .doc_inner .doc_flex .text ol li span{
	display: block;
	font-size: 24px;
	font-weight: 800;
	color: #004892;
}
.document .doc_inner .doc_flex .text ol li:last-child{
	border-bottom: none;
}
.document .doc_inner .cta_btn{
	margin-bottom: 0;
}
@media screen and (max-width:1260px){
	.document .doc_inner{
		padding: 40px 20px;
	}
	.document .doc_inner .title{
		width: 70%;
		text-align: center;
	}
	.document .doc_inner .title h2{
		font-size: 34px;
	}
}
@media screen and (max-width:968px){
	.document .doc_inner .title h2 {
        font-size: 24px;
        padding: 10px;
    }
	.document .doc_inner .doc_flex{
		display: block;
		margin: 20px auto;
	}
	.document .doc_inner .doc_flex .image{
		width: 100%;
		text-align: center;
	}
	.document .doc_inner .doc_flex .text{
		width: 100%;
	}
}
@media screen and (max-width:768px){
	.document {
		padding: 110px 0 80px;
	}
	.document .doc_inner .title {
        width: 90%;
    }
	.document .doc_inner .title h2 {
        font-size: 18px;
        padding: 10px;
    }
	.document .doc_inner .doc_flex .text ol li{
		font-size: 14px;
	}
	.document .doc_inner .doc_flex .text ol li span{
		font-size: 18px;
	}
}
/*======================
*footer
=======================*/
footer{
	background: linear-gradient(30deg,#097cc5,#00316e);
	color: #fff;
	overflow: hidden;
}
footer .footer_logo{
	text-align: center;
	margin-top: 20px;
}
footer .footer_menu{
	margin-top: 20px;
}
footer .footer_menu ol{
	display: flex;
	justify-content: center;
	gap: 10px;
}
footer .footer_menu ol li{
	position: relative;
	border-right: 1px solid #fff;
	padding-right: 10px;
	line-height: 1;
}
footer .footer_menu ol li:last-child{
	border-right: none;
}
footer .footer_menu ol li a{
	color: #fff;
	font-size: 13px;
}
footer .copyright{
	margin-top: 20px;
	text-align: center;
	background: #111;
	color: #fff;
	padding: 5px 0;
	font-size: 13px;
}
@media screen and (max-width:968px){
	footer .footer_logo {
		text-align: center;
		width: 200px;
		margin: 20px auto 0;
	}
	footer .footer_menu ol li {
		display: flex;
		justify-content: center;
		align-items: center;
	}
	footer .footer_menu ol li a{
		font-size: 12px;
		line-height: 1.4;
	}
}
/*=====================================
*
*pcのみ
*
=======================================*/
/*=====================================
*
*sp用
*
=======================================*/
/*========================================================================
*
* 電話番号テキスト化
*
*========================================================================*/




