@import url('https://fonts.googleapis.com/css2?family=Cardo:ital,wght@0,400;0,700;1,400&family=Noto+Sans+JP:wght@100..900&family=Noto+Serif+JP:wght@200..900&display=swap');
/* Reset CSS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
  
html, body {
    height: 100%;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
    line-height: 1;
    font-family: 'Noto Sans JP';
}
  
article, aside, details, figcaption, figure,
  footer, header, hgroup, menu, nav, section {
    display: block;
}
  
ol, ul {
    list-style: none;
}
  
blockquote, q {
    quotes: none;
}
  
blockquote::before, blockquote::after,
  q::before, q::after {
    content: '';
}
  
table {
    border-collapse: collapse;
    border-spacing: 0;
}
  
a {
    text-decoration: none;
    color: inherit;
	transition: ease all .4s;
}
  
img {
    max-width: 100%;
    height: auto;
    display: block;
}
/*====================/
*
* header
*
*====================*/
header{
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 99;
	transition: ease all .4s;
}
header.active{
	background: #ffffff8f;
	overflow: hidden;
	padding-bottom: 20px;
}
.header_inner{
    display: flex;
    justify-content: space-between;
    min-width: 1200px;
    max-width: calc( 100% - 280px );
    padding: 0 20px;
    width: 100%;
    margin: 0 auto;
    margin-top: 40px;
	transition: ease all .4s;
}
header.active .header_inner{
	margin-top: 20px;
}
.header_inner .logo{
    width: 200px;
    position: relative;
}
.header_inner .global{

}
.header_inner .global ol{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    height: 100%;
}
.header_inner .global ol li{
    margin-right: 20px;
}
.header_inner .global ol li.contact{
    margin-right: 0;
    width: 200px;
}
.header_inner .global ol li.contact a{
    border: 2px solid #fff;
    background: url(../images/btn_bg.png) no-repeat left center;
    background-size: cover;
    display: block;
    width: 100%;
    color: #fff;
    font-family: 'Noto Serif JP';
    font-size: 20px;
    text-align: center;
    padding: 10px;
    border-radius: 500px;
    box-shadow: 0px 2px 5px 0px #00000045;
}
.header_inner .global ol li a:hover{
	opacity: .7;
}
.header_inner .global ol li.contact a:hover{
	opacity: .7;
}
.header_inner .menubtn{
    display: none;
}
.modal_bg{
    display: none;
}
@media screen and (max-width:968px){
    .header_inner{
        min-width: 100%;
        margin-top: 20px;
    }
}
@media screen and (max-width:768px){
    .header_inner .global ol li {
        margin-right: 15px;
    }
    .header_inner .global ol li a{
        font-size: 14px;
    }
    .header_inner .global ol li.contact{
        width: 140px;
    }
    .header_inner .global ol li.contact a{
        font-size: 14px;
    }
    .header_inner .logo{
        width: 160px;
    }
}
@media screen and (max-width:700px){
    .modal_bg{
        position: fixed;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        opacity: 0;
        pointer-events: none;
        background: #000;
        transition: ease all .4s;
        display: block;
        z-index: 2;
    }
    .modal_bg.active{
        opacity: .3;
        pointer-events: all;
    }
    .header_inner .menubtn{
        display: flex;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
        width: 40px;
        height: 24px;
        position: relative;
    }
    .header_inner .menubtn span{
        display: block;
        width: 100%;
        height: 3px;
        background: #111;
        position: relative;
        top: 0;
        transition: ease all .4s;
    }
    .header_inner .menubtn.active span:nth-child(1){
        transform: rotate(45deg);
        top: 8px;
    }
    .header_inner .menubtn.active span:nth-child(2){
        transform: rotate(-45deg);
    }
    .header_inner .menubtn.active span:nth-child(3){
        opacity: 0;
    }
    .header_inner .global {
        position: fixed;
        right: 0;
        top: 0;
        width: 70%;
        height: 100%;
        background: #fff;
        transform: translateX(100%);
        transition: ease all .4s;
    }
    .header_inner .global.active{
        transform: translateX(0);
    }
    .header_inner .global ol {
        display: block;
        padding-top: 60px;
    }
    .header_inner .global ol li {
        margin: 0 10px;
    }
    .header_inner .global ol li a {
        display: block;
        padding: 20px;
        font-size: 16px;
        border-bottom: 1px solid #ccc;
    }
    .header_inner .global ol li.contact {
        width: calc(100% - 20px);
        margin: 0 auto;
        margin-top: 20px;
    }
    .header_inner .global ol li.contact a {
        font-size: 16px;
        padding: 15px 10px;
    }
}

/*====================/
*
* mv
*
*====================*/
.mv{
    position: relative;
    overflow: hidden;
}
.mv .mv_inner{
    display: flex;
    justify-content: space-between;
    min-width: 1200px;
    max-width: calc( 100% - 280px );
    padding: 0 20px;
    width: 100%;
    margin: 0 auto;
    position: relative;
}
.mv .image{
    position: relative;
    left: -80px;
}
.mv .map{
    position: absolute;
    right: 0;
    top: 0;
}
.mv .text{
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    text-align: center;
}
.mv .text .main{
    font-family: "Cardo";
    font-size: 100px;
}
.mv .text .sub{
    font-family: "Cardo";
    font-size: 50px;
    margin-top: 20px;
}
.mv .text .sub span{
    font-size: 35px;
}
.mv .text .btn{
    margin: 0 auto;
    margin-top: 60px;
    width: 360px;
}
.mv .text .btn a{
    border: 3px solid #fff;
    background: url(../images/btn_bg.png) no-repeat left center;
    background-size: cover;
    display: block;
    width: 100%;
    color: #fff;
    font-family: 'Noto Serif JP';
    font-size: 20px;
    text-align: center;
    padding: 18px;
    border-radius: 500px;
    box-shadow: 0px 2px 5px 0px #00000045;
}
.mv .text .btn a:hover{
	opacity: .7;
}
@media screen and (max-width:1260px){
    .mv .text{
        width: 100%;
        right: 0;
    }
    .mv .mv_inner{
        min-width: 100%;
    }
    .mv .text .main{
        font-size: 9vw;
    }
}
@media screen and (max-width:968px){
    .mv .text .sub{
        font-size: 40px;
    }
    .mv .text .sub span {
        font-size: 30px;
    }
}
@media screen and (max-width:568px){
    .mv .mv_inner{
        height: 90vh;
    }
    .mv .image{
        height: 100%;
        transform: translateX(-25%);
        opacity: .5;
    }
    .mv .image img{
        max-width: max-content;
        height: 100%;
    }
    .mv .map {
        position: absolute;
        right: 30px;
        top: auto;
        bottom: 0;
    }
    .mv .map img{
        width: 130%;
        max-width: max-content;
    }
    .mv .text .sub {
        font-size: 25px;
    }
    .mv .text .sub span {
        font-size: 20px;
    }
    .mv .text .btn{
        width: calc(100% - 40px);
    }
}
/*====================/
*
* 共通
*
*====================*/
.inner{
    min-width: 1260px;
    max-width: calc( 100% - 280px );
    padding: 0 20px;
    margin: 0 auto;
}
.inner02{
    max-width: 1300px;
    padding: 0 20px;
    margin: 0 auto;
}
.lp_title{
    margin: 40px auto;
}
.lp_title .en{
    font-size: 90px;
    font-family: "Cardo";
    margin-bottom: 30px;
}
.lp_title h2{
    font-size: 20px;
    font-weight: 500;
    font-family: 'Noto Serif JP';
}
.lp_title.center{
    text-align: center;
}
.inner .btn,
.inner02 .btn{
    margin: 0 auto;
    margin-top: 60px;
    width: 360px;
}
.inner .btn a,
.inner02 .btn a{
    border: 3px solid #fff;
    background: url(../images/btn_bg.png) no-repeat left center;
    background-size: cover;
    display: block;
    width: 100%;
    color: #fff;
    font-family: 'Noto Serif JP';
    font-size: 20px;
    text-align: center;
    padding: 18px;
    border-radius: 500px;
    box-shadow: 0px 2px 5px 0px #00000045;
}
.inner .btn a:hover,
.inner02 .btn a:hover{
	opacity: .7;
}
@media screen and (max-width:968px){
    .lp_title .en{
        font-size: 60px;
    }
    .inner{
        min-width: 100%;
    }
}
@media screen and (max-width:768px){
    .lp_title .en {
        font-size: 40px;
        margin-bottom: 15px;
    }
    .sec2 .time_table .time_table_inner .time {
        font-size: 20px;
        width: 150px;
    }
    .sec2 .time_table .time_table_inner .contents{
        font-size: 20px;
    }
}
@media screen and (max-width:568px){
    .inner02{
        padding: 0px 15px;
    }
    .inner .btn,
    .inner02 .btn{
        width: calc(100% - 40px);
        margin-top: 40px;
    }
}
/*====================/
*
* sec1
*
*====================*/
.sec1{
    background: url(../images/sec1_bg.png)no-repeat left top;
    overflow: hidden;
}
.sec1 .sec1_flex{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.sec1 .sec1_flex .title{
    width: 320px;
}
.sec1 .sec1_flex .lp_title{
    color: #fff;
}
.sec1 .sec1_flex .lp_title .en{
    font-size: 60px;
}
.sec1 .sec1_flex .text{
    color: #fff;
    padding: 80px 0;
    width: 50%;
}
.sec1 .sec1_flex .text .main{
    font-family: 'Noto Serif JP';
    font-size: 40px;
    font-weight: 300;
    margin-bottom: 40px;
}
.sec1 .sec1_flex .text p{
    font-size: 20px;
    font-family: 'Noto Serif JP';
    font-weight: 300;
    line-height: 2.5;
}
@media screen and (max-width:1260px){
    .sec1 .sec1_flex .text .main{
        font-size: 30px;
    }
    .sec1 .sec1_flex .text {
        width: auto;
    }
    .sec1 .sec1_flex .text p{
        font-size: 18px;
    }
}
@media screen and (max-width:968px){
    .sec1 .sec1_flex .title{
        width: auto;
    }
    .sec1 .sec1_flex .lp_title .en {
        font-size: 50px;
    }
    .sec1 .sec1_flex .text p {
        font-size: 14px;
    }
    .sec1 .sec1_flex .text .main {
        font-size: 25px;
        margin-bottom: 20px;
    }
}
@media screen and (max-width:700px){
    .sec1 .sec1_flex .lp_title .en{
        font-size: 40px;
    }
    .sec1 .sec1_flex .lp_title{
        margin-top: 0;
    }
    .sec1 .sec1_flex{
        display: block;
        padding: 40px 0;
    }
    .sec1 .sec1_flex .text{
        padding: 0;
    }
}

/*====================/
*
* sec2
*
*====================*/
.sec2{
    background: #fafafa;
    overflow: hidden;
    position: relative;
    padding: 60px 0;
}
.sec2 .time_table{
    width: 100%;
    display: block;
}
.sec2 .time_table .time_table_inner{
    display: flex;
    align-items: center;
    justify-content: space-between;
    width:calc( 100% - 15px );
    position: relative;
    left: 0;
    border-bottom: 1px solid #111;
    margin: 20px auto;
}
.sec2 .time_table .time_table_inner::before{
    content: '';
    display: block;
    width: 5px;
    height: 100%;
    position: absolute;
    left: -15px;
    top: 0;
    background: #111;
}
.sec2 .time_table .time_table_inner .time{
    padding: 25px 10px;
    font-family: 'Cardo';
    font-size: 30px;
    width: 200px;
}
.sec2 .time_table .time_table_inner .contents{
    padding: 25px 10px;
    font-family: 'Noto Serif JP';
    font-weight: 400;
    font-size: 30px;
    width: calc( 100% - 200px );
}
@media screen and (max-width:968px){
    .sec2 .time_table .time_table_inner .time{
        font-size: 22px;
        width: 150px;
    }
    .sec2 .time_table .time_table_inner .contents{
        font-size: 22px;
        width: calc(100% - 160px);
    }
}
@media screen and (max-width:700px){
    .sec2 .time_table .time_table_inner .time{
        font-size: 18px;
        width: 130px;
    }
    .sec2 .time_table .time_table_inner .contents{
        font-size: 18px;
        width: calc(100% - 130px);
    }
}
@media screen and (max-width:568px){
    .sec2{
        padding: 20px 0;
    }
    .sec2 .time_table .time_table_inner{
        display: block;
    }
    .sec2 .time_table .time_table_inner .time{
        width: 100%;
        padding: 10px;
        padding-bottom: 0;
        font-size: 16px;
    }
    .sec2 .time_table .time_table_inner .contents{
        width: 100%;
        padding: 10px;
        padding-bottom: 20px;
        font-size: 16px;
    }
}

/*====================/
*
* sec3
*
*====================*/
.sec3{
    position: relative;
    overflow: hidden;
    padding: 40px 0 0;
}
.sec3 .sec3_contents{

}
.sec3 .sec3_contents .contents_title{
    background: #111;
    color: #fff;
    text-align: center;
    padding: 25px 0;
}
.sec3 .sec3_contents .contents_title .en{
    position: relative;
    font-family: 'Cardo';
    font-size: 24px;
}
.sec3 .sec3_contents .contents_title .en span{
    text-align: center;
    position: relative;
}
.sec3 .sec3_contents .contents_title .en span::before{
    content: '';
    display: block;
    position: absolute;
    left: -20px;
    top: 50%;
    transform: translate(-100%,-50%);
    width: 60px;
    height: 2px;
    background: linear-gradient(to right, #faaae1,#f448bf);
}
.sec3 .sec3_contents .contents_title .en span::after{
    content: '';
    display: block;
    position: absolute;
    right: -20px;
    top: 50%;
    transform: translate(100%,-50%);
    width: 60px;
    height: 2px;
    background: linear-gradient(to right, #f448bf, #faaae1);
}
.sec3 .sec3_contents .contents_title h3{
    font-size: 40px;
    font-family: 'Noto Serif JP';
    font-weight: 400;
    margin-top: 10px;
}
.sec3 .sec3_contents .contents_inner{
    display: flex;
}
.sec3 .sec3_contents .contents_inner.re{
    flex-flow: row-reverse;
}
.sec3 .sec3_contents .contents_inner .image{
    width: 50%;
}
.sec3 .sec3_contents .contents_inner .text{
    display: flex;
    align-items: center;
    width: 50%;
}
.sec3 .sec3_contents .contents_inner .text .text_inner{
    color: #333;
    padding-left: 20%;
}
.sec3 .sec3_contents .contents_inner .text .text_inner h4{
    font-family: 'Noto Serif JP';
    font-weight: 400;
    font-size: 30px;
    margin-bottom: 20px;
}
.sec3 .sec3_contents .contents_inner .text .text_inner p{
    color: #555;
    line-height: 2;
}
@media screen and (max-width:1700px){
    .sec3 .sec3_contents .contents_inner .text{
        justify-content: center;
    }
    .sec3 .sec3_contents .contents_inner .text .text_inner{
        padding-left: 0;
    }
}
@media screen and (max-width:1420px){
    .sec3 .sec3_contents .contents_inner .text .text_inner{
        padding: 20px;
    }
}
@media screen and (max-width:968px){
    .sec3 .sec3_contents .contents_title .en{
        font-size: 22px;
    }
    .sec3 .sec3_contents .contents_title h3{
        font-size: 28px;
    }
    .sec3 .sec3_contents .contents_title .en span::before{
        width: 40px;
    }
    .sec3 .sec3_contents .contents_title .en span::after{
        width: 40px;
    }
    .sec3 .sec3_contents .contents_inner .text .text_inner h4{
        font-size: 25px;
        margin-bottom: 10px;
    }
    .sec3 .sec3_contents .contents_inner .text .text_inner p{
        font-size: 14px;
        line-height: 1.5;
    }
}
@media screen and (max-width:768px){
    .sec3 .sec3_contents .contents_inner{
        display: block;
    }
    .sec3 .sec3_contents .contents_inner .image {
        width: 100%;
    }
    .sec3 .sec3_contents .contents_inner .text{
        width: 100%;
        display: block;
    }
    .sec3 .sec3_contents .contents_inner .text .text_inner{
        padding: 40px;
    }
    .sec3 .sec3_contents .contents_inner .text .text_inner h4{
        margin-bottom: 20px;
    }
    .sec3 .sec3_contents .contents_inner .text .text_inner p{
        font-size: 16px;
        line-height: 2;
    }
}
@media screen and (max-width:700px){
    .sec3 .sec3_contents .contents_title .en {
        font-size: 18px;
    }
    .sec3 .sec3_contents .contents_title .en span::before{
        left: -10px;
    }
    .sec3 .sec3_contents .contents_title .en span::after{
        right: -10px;
    }
    .sec3 .sec3_contents .contents_title h3 {
        font-size: 22px;
    }
}
@media screen and (max-width:568px){
    .sec3{
        padding: 20px 0;
    }
    .sec3 .sec3_contents .contents_inner .text .text_inner{
        padding: 40px 15px;
    }
}
/*====================/
*
* sec4
*
*====================*/
.sec4{
    background: #f9f9f9;
    overflow: hidden;
    position: relative;
    padding: 60px 0;
}
.sec4 .sec4_titile{
    font-family: 'Noto Serif JP';
    text-align: center;
    font-size: 40px;
    font-weight: 400;
    margin: 60px auto 40px;
}
.sec4 ol{
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
}
.sec4 ol li{
    width: calc((100% / 5) - 10px);
    margin: 40px 0;
    margin-right: 12.5px;
    transition: ease all .4s;
}
.sec4 ol li:nth-child(5n){
	margin-right: 0;
}
.sec4 ol li .image{
	transition: ease all .4s;
}
.sec4 ol li:hover > .image{
	opacity: .8;
	cursor: pointer;
}
.sec4 ol li .text{
    position: relative;
    background: #fff;
    padding: 10px;
    width: calc(100% - 20px);
    margin: 0 auto;
    margin-top: -60px;
	pointer-events: none;
}
.sec4 ol li .text .name{
    font-family: 'Noto Serif JP';
    font-size: 20px;
    margin: 0 auto;
}
.sec4 ol li .text .post{
	margin: 10px auto;
    font-weight: 500;
    font-size: 14px;
    line-height: 1.5;
}
.sec4 ol li .text p{
    font-size: 12px;
    color: #555;
    line-height: 1.8;
}
.sec4 .sec4_modal_bg{
	position: fixed;
	left: 0;
	top: 0;
	background: #000;
	width: 100%;
	height: 100%;
	z-index: 99;
	opacity: 0;
	pointer-events: none;
	transition: ease all .4s;
}
.sec4 .sec4_modal_bg.active{
	opacity: .3;
	pointer-events: all;
}
.sec4 ol li .modal{
	position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 99;
	width: 80vw;
    max-height: 80vh;
	display: flex;
	justify-content: space-between;
	background: #fff;
	padding: 20px;
	opacity: 0;
    pointer-events: none;
	max-width: 1060px;
	transition: ease all .4s;
}
.sec4 ol li .modal.active{
	opacity: 1;
	pointer-events: all;
}
.sec4 ol li .modal .image{
	width: 31%;
}
.sec4 ol li .modal .modal_text{
	width: 69%;
    padding-left: 20px;
	padding-top: 20px;
	padding-bottom: 40px;
}
.sec4 ol li .modal .modal_text .name{
	font-family: 'Noto Serif JP';
    font-size: 24px;
    margin: 0 auto;
}
.sec4 ol li .modal .modal_text .post{
	margin: 10px auto;
    font-weight: 500;
    font-size: 14px;
    line-height: 1.5;
}
.sec4 ol li .modal .modal_text p{
	font-size: 14px;
    line-height: 1.8;
    color: #333;
}
.sec4 ol li .modal .sec4_close{
	position: absolute;
	right: 20px;
	bottom: 20px;
	transition: ease all .4s;
	font-size: 14px;
}
.sec4 ol li .modal .sec4_close:hover{
	cursor: pointer;
	opacity: .7;
}
@media screen and (max-width:1260px){
    .sec4 ol li{
        margin: 20px 0;
    }
    .sec4 ol li .text{
        padding: 10px;
        width: calc(100% - 10px);
    }
    .sec4 ol li .text .name{
        font-size: 18px;
        margin: 15px auto;
    }
    .sec4 ol li .text p{
        font-size: 12px;
    }
    .sec4 .sec4_titile{
        font-size: 30px;
        margin-bottom: 0;
    }
}
@media screen and (max-width:768px){
    .sec4 ol li {
        width: calc(100% / 4);
    }
    .sec4 .sec4_titile{
        font-size: 25px;
        margin: 40px auto 0;
    }
	.sec4 ol li .modal{
		padding: 10px;
	}
/* 	.sec4 ol li .modal .image{
		width: 80%;
	}
	.sec4 ol li .modal .modal_text p{
		max-height: 160px;
		overflow: scroll;
	} */
}
@media screen and (max-width:700px){
    .sec4{
        padding: 20px 0;
    }
}
@media screen and (max-width:568px){
    .sec4 ol li {
		width: calc((100% / 2) - 5px);
		margin-right: 10px;
    }
	.sec4 ol li:nth-child(2n){
		margin-right: 0;
	}
    .sec4 ol li .text .name{
        font-size: 16px;
		margin: 0 auto;
    }
	.sec4 ol li .text .post{
		font-size: 12px;
	}
	.sec4 ol li .modal{
		width: 90vw;
		max-height: 90vh;
		display: block;
	}
	.sec4 ol li .modal .image{
		margin: 0 auto;
	}
	.sec4 ol li .modal .modal_text{
		width: 100%;
		padding: 0;
		margin: 20px auto;
		padding-bottom: 20px;
	}
	.sec4 ol li .modal .modal_text .name{
		font-size: 18px;
	}
	.sec4 ol li .modal .modal_text .post{
		font-size: 12px;
	}
	.sec4 ol li .modal .modal_text p{
		font-size: 12px;
		line-height: 1.6;
	}
	.sec4 ol li .modal .sec4_close{
		font-size: 12px;
		font-weight: 700;
	}
}
/*====================/
*
* sec5
*
*====================*/
.sec5{
    overflow: hidden;
    position: relative;
    padding: 60px 0 0;
}
.sec5 .logo_list{
    margin: 40px auto;
}
.sec5 .logo_list ol{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
	margin: 60px auto 120px;
}
.sec5 .logo_list ol.high li{
    margin: 20px;
	width: 100%;
	max-width: 27%;
}
.sec5 .logo_list ol.normal li{
    margin: 20px;
	max-width: 191px;
}
.sec5 .logo_list ol.high li{
	max-width: 32%;
}
.sec5 .logo_list ol.high li:first-child img,
.sec5 .logo_list ol.high li:nth-child(3) img{
	max-width: 70%;
	display: block;
	margin: 0 auto;
}
/* .sec5 .logo_list ol.high li:nth-child(2){
	max-width: 32%;
}
.sec5 .logo_list ol.high li:nth-child(3){
	max-width: 32%;
} */
@media screen and (max-width:700px){
	.sec5 .logo_list ol{
		margin: 40px auto;
	}
	.sec5 .logo_list ol.high li{
		max-width: 48%;
	}
    .sec5 .logo_list ol.normal li{
        width: calc( 32% - 20px );
        margin-left: 0;
    }
    .sec5 .logo_list ol li:nth-child(3n){
        margin-right: 0;
    }
}
@media screen and (max-width:568px){
    .sec5{
        padding: 20px 0;
    }
    .sec5 .logo_list{
        margin: 20px auto 0;
    }
	.sec5 .logo_list ol.high li{
		max-width: 48%;
		margin: 20px 0;
		margin-right: 4%;
	}
	.sec5 .logo_list ol.high li:first-child,
	.sec5 .logo_list ol.high li:nth-child(3){
        max-width: calc(45% - 40px);
	}
	.sec5 .logo_list ol.high li:first-child img,
	.sec5 .logo_list ol.high li:nth-child(3) img{
		max-width: 100%;
	}
	.sec5 .logo_list ol.high li:nth-child(2){
		max-width: 55%;
	}
	.sec5 .logo_list ol.high li:nth-child(2n){
		margin-right: 0;
	}
	.sec5 .logo_list ol.high li:nth-child(4) {
		max-width: 55%;
	}
    .sec5 .logo_list ol.normal li{
		width: 32%;
		max-width: 100%;
        margin: 0;
        margin-bottom: 20px;
        margin-right: 2%;
    }
    .sec5 .logo_list ol li:nth-child(3n){
        margin-right: 0;
    }
}
/*====================/
*
* sec6
*
*====================*/
.sec6{
    overflow: hidden;
    position: relative;
    padding: 60px 0;
}
.sec6 .logo_list{
    margin: 40px auto;
}
.sec6 .logo_list ol{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}
.sec6 .logo_list ol li{
    margin: 40px 20px;
}
@media screen and (max-width:700px){
    .sec6 .logo_list ol li{
        width: calc( 32% - 20px );
        margin-left: 0;
    }
    .sec6 .logo_list ol li:nth-child(3n){
        margin-right: 0;
    }
}
@media screen and (max-width:568px){
    .sec6{
        padding: 20px 0;
    }
    .sec6 .logo_list{
        margin: 20px auto;
    }
    .sec6 .logo_list ol li,
    .sec6 .logo_list ol li:nth-child(3n) {
        width: calc(50% - 20px);
        margin: 0;
        margin-bottom: 30px;
        margin-right: 20px;
    }
    .sec6 .logo_list ol li:nth-child(2n){
        margin-right: 0;
    }
}
/*====================/
*
* sec7
*
*====================*/
.sec7{
    overflow: hidden;
    position: relative;
    padding: 60px 0;
    background: url(../images/company_bg.jpg)no-repeat left top;
    background-size: cover;
}
.sec7 .lp_title{
    color: #fff;
}
.company_flex{
    display: flex;
    justify-content: space-between;
}
.company_flex .image{
    width: 500px;
    position: relative;
}
.company_flex .image img{
    position: relative;
    z-index: 2;
}
.company_flex .image::before{
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 20px;
    top: 20px;
    background: #000;
    opacity: .2;
}
.company_flex .table{
    width: calc( 100% - 620px );
}
.company_flex .table table{
    width: 100%;
    border-collapse: collapse;
    font-family: 'Noto Serif JP';
    text-align: left;
}
.company_flex .table table th{
    width: 30%;
    color: #fff;
    border-bottom: 1px solid #fff;
    padding: 30px 20px;
    font-size: 18px;
}
.company_flex .table table td{
    width: 70%;
    color: #fff;
    border-bottom: 1px solid #fff;
    padding: 30px 20px;
    font-size: 18px;
}
.company_flex .table table tr:first-child th,
.company_flex .table table tr:first-child td{
    border-top: 1px solid #fff;
}
@media screen and (max-width:1260px){
    .company_flex{
        align-items: flex-start;
    }
    .company_flex .image{
        max-width: 400px;
        width: 100%;
    }
    .company_flex .table{
        width: calc( 100% - 460px );
    }
    .company_flex .table table th{
        font-size: 16px;
        padding: 30px 20px;
        width: 40%;
    }
    .company_flex .table table td{
        width: 60%;
        font-size: 16px;
        padding: 30px 20px;
    }
}
@media screen and (max-width:768px){
    .company_flex{
        display: block;
    }
    .company_flex .image{
        margin: 20px auto;
    }
    .company_flex .table{
        width: 100%;
    }
    .company_flex .table table{
        margin: 40px auto;
    }
    .company_flex .table table th{
        width: 30%;
        padding: 20px;
    }
    .company_flex .table table td{
        width: 70%;
        padding: 20px;
    }
}
@media screen and (max-width:568px){
    .company_flex .table table th{
        width: 100%;
        display: block;
        padding: 10px;
        padding-top: 20px;
        padding-bottom: 0;
        border-bottom: none;
    }
    .company_flex .table table td{
        width: 100%;
        display: block;
        padding: 10px;
        padding-bottom: 20px;
    }
    .company_flex .table table tr:first-child td{
        border-top: none;
    }
}
/*====================/
*
* footer
*
*====================*/
footer{
    background: #111;
    color: #fff;
    padding: 10px;
    text-align: center;
    font-size: 12px;
    font-weight: 200;
}
footer .footer_inner{

}
footer .footer_inner ol{
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 20px auto;
}
footer .footer_inner ol li{
	margin-right:20px;
}
footer .footer_inner ol li:last-child{
	margin-right: 0;
}
footer .footer_inner ol li a{
	transition: ease all .4s;
}
footer .footer_inner ol li a:hover{
	opacity: .7;
}