/*
* fontawesomeセット
* content:'\○○○';
* font: var(--fa-font-solid);
*/
html,body{
  color: #111;
}
.none{
	display: none;
}
/*=====================================
*
*header
*
=======================================*/
.hum{
  width: 100px;
  height: 48px;
  display: block;
  position: fixed;
  right: 30px;
  top: 40px;
  z-index: 999;
}
.hum:hover{
	cursor: pointer;
}
.hum span{
  display: block;
  width: 100%;
  height: 4px;
  background: #111;
  position: relative;
  top: 0;
  transition: ease all .4s;
}
.hum span:nth-child(2){
  margin: 18px auto;
}
.hum.active span:nth-child(1){
  top: 22px;
  transform: rotate(25deg);
}
.hum.active span:nth-child(2){
  top: 0;
  transform: rotate(-25deg);
}
.hum.active span:nth-child(3){
  opacity: 0;
}
.header_menu{
  position: fixed;
  left: 0;
  top: -40px;
  z-index: 99;
  background: url(../images/gmenu_bg.jpg)no-repeat center / cover;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: cubic-bezier(0.76, 0.17, 0.68, 0.66) all .8s;
}
.header_menu.active{
  opacity: 1;
  top: 0;
  pointer-events: all;
}
.header_menu .header_menu_inner{
  max-width: 940px;
  width: 100%;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
}
.header_menu .header_menu_inner .logo{
  display: flex;
  align-items: center;
  padding-right: 40px;
}
.header_menu .header_menu_inner .logo a{
	transition: ease all .4s;
}
.header_menu .header_menu_inner .logo a:hover{
	opacity: .7;
}
.header_menu .header_menu_inner .global{
  display: flex;
  justify-content: space-between;
}
.header_menu .header_menu_inner .global ol{
  margin-right: 80px;
}
.header_menu .header_menu_inner .global ol:nth-child(2){
  margin-right: 0;
}
.header_menu .header_menu_inner .global ol li{
  margin: 50px 0;
}
.header_menu .header_menu_inner .global ol li a{
  color: #111;
  font-family: 'Caudex';
  font-size: 24px;
  font-weight: 100;
	transition: ease all .4s;
}
.header_menu .header_menu_inner .global ol li a:hover{
	opacity: .7;
}
@media screen and (max-width:960px){
  .hum{
    width: 70px;
  }
  .hum span{
    height: 3px;
  }
  .hum span:nth-child(2){
    margin: 10px auto;
  }
  .hum.active span:nth-child(1){
    top: 14px;
  }
  .header_menu{
    background: url(../images/gmenu_bg.jpg)no-repeat 26% / cover;
  }
  .header_menu .header_menu_inner .logo{
    width: 220px;
  }
}
@media screen and (max-width:620px){
  .hum{
    right: 20px;
    top: 30px;
    width: 50px;
    height: auto;
  }
  .hum span{
    height: 3px;
  }
  .hum span:nth-child(2){
    margin: 7px auto;
  }
  .hum.active span:nth-child(1){
    top: 10px;
  }
  .header_menu .header_menu_inner{
    display: block;
    width: auto;
  }
  .header_menu .header_menu_inner .global ol {
    margin-right: 20%;
  }
}
@media screen and (max-width:568px){
  .header_menu .header_menu_inner .global ol li{
    margin: 40px 0;
  }
  .header_menu .header_menu_inner .global ol li a{
    font-size: 18px;
  }
}
/*=====================================
*
*front
*
=======================================*/
.inner{
  max-width: 1600px;
  margin: 0 auto;
  position: relative;
}
.front_title{
  font-family: "SGEO";
  font-size: 100px;
  font-weight: bold;
  line-height: 1;
  text-align: center;
  background: url(../images/title.jpg) center/cover no-repeat;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  margin-bottom: 80px;
}
.w106{
  max-width: 1100px;
  width: 100%;
  padding: 0 20px;
}
.w126{
  max-width: 1300px;
  width: 100%;
  padding: 0 20px;
}
.more{
  text-align: right;
  margin: 40px auto;
}
.more.center{
  text-align: center;
}
.more a{
  font-family: 'Caudex';
  color: #111;
  position: relative;
  padding: 4px 5px;
  padding-right: 25px;
  line-height: 1;
  letter-spacing: 1px;
  font-size: 20px;
  font-weight: 100;
	transition: ease all .4s;
}
.more a::before{
  content: '';
  display: block;
  background: #111;
  width: 100%;
  height: 1px;
  position: absolute;
  left: 0;
  bottom: 0;
}
.more a::after{
  content: '';
  border: 5px solid transparent;
  border-left: 5px solid #111;
  border-bottom: 5px solid #111;
  position: absolute;
  right: 0;
  bottom: 0;
}
.more a:hover{
	opacity: .7;
}
@media screen and (max-width:1680px){
  .inner{
    max-width: 1600px;
    padding: 0 40px;
  }
  .w106{
    padding: 0 40px;
  }
}
@media screen and (max-width:1480px){
  .front_title{
    font-size: 8vw;
  }
}
@media screen and (max-width:620px){
  .inner,
  .w106{
    padding: 0 20px;
  }
  .more a{
    font-size: 16px;
    padding-right: 15px;
  }
  .more a::after{
    border: 3px solid transparent;
    border-left: 3px solid #111;
    border-bottom: 3px solid #111;
  }
}

/*=====================================
*mv
=======================================*/
.mv{
  position: relative;
  background: url(../images/mv.jpg)no-repeat center / cover;
  height: 100vh;
}
.mv .mv_cont{
  width: 100%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
  text-align: center;
}
.mv .mv_cont .title{
  font-size: 30px;
  font-weight: bold;
  margin-bottom: 20px;
}
@media screen and (max-width:620px){
  .mv .mv_cont .title{
    font-size: 20px;
  }
  .mv .mv_cont .logo img{
    width: 220px;
  }
}
@media screen and (max-width:568px){
  .front_title{
    margin-bottom: 20px;
  }
}
/*=====================================
*load
=======================================*/
body.hide{
	overflow: hidden;
}
.load{
	background: #111;
	position:fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: 999;
	transition: ease all 1s;
}
.load.remove{
	opacity: 0;
	pointer-events: none;
}
.load.active .load_inner{
	position: absolute;
	left: 50%;
	top: 0;
	transform: translateX(-50%);
	height: 100%;
	width: 200px;
}
.load.active .load_inner .slash{
	overflow: hidden;
	transform: translateX(-50%) skew(-15deg);
    width: 2px;
    height: 0;
    transform-origin: right top;
    position: fixed;
    left: 95%;
    top: 0;
	animation: slash 1.2s cubic-bezier(0.38, -0.01, 0.31, 1.02) .4s forwards;
	z-index: 2;
}
.load.active .load_inner .slash::before{
	content: '';
	transform: translateX(-47%) skew(15deg);
    background: url(../images/load_bg.jpg) no-repeat center;
	display: block;
	width: 100vw;
    height: 110vh;
	min-height: 130vh;
	position: fixed;
	left: 50%;
	top: 0;
	z-index: -1;
	animation: blur_anime 1.2s cubic-bezier(0.38, -0.01, 0.31, 1.02) .4s forwards;
	filter: blur(2px);
}
@media screen and (min-width:1061px){
	.load.active .load_inner{
		width: 400px;
	}
	.load.active .load_inner .slash{
		transform: translateX(-50%) skew(-45deg);
		left: 180%;
		animation: slash_pc 1.2s cubic-bezier(0.38, -0.01, 0.31, 1.02) .4s forwards;
	}
	.load.active .load_inner .slash::before{
		transform: translateX(-47%) skew(45deg);
		width: 200vw;
	}
}
@media screen and (max-width: 1060px){
	.load.active .load_inner .slash::before{
		width: 150vw;
		min-height: 130vh;
	}
}
@keyframes slash{
	0%{
		height: 0;
	}
	13%{
		height: 100%;
		width: 2px;
	}
	13.1%{
		height: 100%;
		width: 2px;
	}
	30%{
		width: 2px;
		height: 100%;
	}
	50%{
		width: 100%;
		height: 100%;
	}
	80.1%{
		width: 100%;
		height: 100%;
	}
	100%{
		width: 200vw;
		height: 100%;
	}
}
@keyframes slash_pc{
	0%{
		height: 0;
	}
	13%{
		height: 100%;
		width: 2px;
	}
	13.1%{
		height: 100%;
		width: 2px;
	}
	30%{
		width: 2px;
		height: 100%;
	}
	50%{
		width: 100%;
		height: 100%;
	}
	80.1%{
		width: 100%;
		height: 100%;
	}
	100%{
		width: 200vw;
		height: 100%;
	}
}
@keyframes blur_anime{
	0%{
		filter: blur(2px);
	}
	80.1%{
		filter: blur(2px);
	}
	100%{
		filter: blur(0);
	}
}

/*=====================================
*section1
=======================================*/
.sec1{

}
.sec1 .sec1_flex{
  display: flex;
  justify-content: space-between;
  flex-flow: row-reverse;
  align-items: center;
  padding: 140px 0 160px;
}
.sec1 .sec1_flex .images{
  position: relative;
  text-align: right;
	width: 50%;
}
.sec1 .sec1_flex .text{

}
.sec1 .sec1_flex .text .front_title{
  text-align: left;
  margin-bottom: 0;
}
.sec1 .sec1_flex .text .title{
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 40px;
}
.sec1 .sec1_flex .text p{
  font-size: 20px;
  line-height: 2;
  margin: 20px auto;
  color: #555;
}
@media screen and (max-width:1480px){
  .sec1 .sec1_flex .images{
    width: 50%;
  }
  .sec1 .sec1_flex .text {
    width: 48%;
  }
  .sec1 .sec1_flex .text p{
    font-size: 1.4vw;
  }
  .sec1 .sec1_flex .text .title{
    font-size: 3.4vw;
    margin-bottom: 20px;
  }
}
@media screen and (max-width:620px){
  .sec1 .sec1_flex{
    padding: 40px 0;
  }
}
@media screen and (max-width:568px){
  .sec1 .sec1_flex .text p {
    font-size: 3vw;
  }
  .sec1 .sec1_flex{
    display: block;
  }
  .sec1 .sec1_flex .images{
    width: 100%;
  }
  .sec1 .sec1_flex .text{
    width: 100%;
    margin-top: 40px;
  }
  .sec1 .sec1_flex .text p {
    font-size: 2.5vw;
  }
}

/*=====================================
*section2
=======================================*/
.sec2{
  margin: 120px auto;
}
.sec2 .sec2_inner{
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: space-between;
  padding: 40px;
  margin: 60px auto;
}
.sec2 .sec2_inner .bg{
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
  width: 100%;
}
.sec2 .sec2_inner .image{
  position: relative;
  width: 39.5%;
}
.sec2 .sec2_inner .text{
  position: relative;
  color: #fff;
  width: 57%;
}
.sec2 .sec2_inner .text .sec2_title{
  display: flex;
  flex-flow: wrap-reverse;
  border-bottom: 1px solid #ffffff30;
  padding: 20px 0;
}
.sec2 .sec2_inner .text .sec2_title .en{
  font-family: 'Caudex';
  font-weight: 100;
  font-size: 40px;
  width: 100%;
}
.sec2 .sec2_inner .text .sec2_title h3{
  font-size: 18px;
  font-weight: 600;
  width: 100%;
}
.sec2 .sec2_inner .text p{
  font-size: 18px;
  font-weight: 300;
  margin-top: 20px;
  line-height: 2.2;
  opacity: .9;
}
.sec2 .sec2_inner .text .more{
  position: absolute;
  margin: 0;
  right: 0;
  bottom: 0;
}
.sec2 .sec2_inner .text .more a{
  color: #fff;
}
.sec2 .sec2_inner .text .more a::before{
  background: #fff;
}
.sec2 .sec2_inner .text .more a::after{
  border-left: 5px solid #fff;
  border-bottom: 5px solid #fff;
}
@media screen and (max-width:1480px){
  .sec2 .sec2_inner .text .sec2_title{
    padding: 10px 0;
    padding-top: 0;
  }
  .sec2 .sec2_inner .text .sec2_title .en{
    font-size: 30px;
  }
  .sec2 .sec2_inner .text .sec2_title h3{
    font-size: 16px;
  }
  .sec2 .sec2_inner .text p{
    font-size: 1.3vw;
    margin-top: 10px;
  }
}
@media screen and (max-width:960px){
  .sec2 .sec2_inner{
    min-height: 260px;
  }
  .sec2 .sec2_inner .bg{
    width: auto;
    min-width: 100%;
    height: 100%;
  }
  .sec2 .sec2_inner .bg img{
    max-width: inherit;
  }
  .sec2 .sec2_inner .image{
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .sec2 .sec2_inner .text .sec2_title .en {
    font-size: 22px;
  }
  .sec2 .sec2_inner .text .sec2_title h3 {
    font-size: 14px;
  }
}
@media screen and (max-width:620px){
  .sec2 .sec2_inner{
    display: block;
    padding: 20px ;
  }
  .sec2 .sec2_inner .image{
    width: 100%;
  }
  .sec2 .sec2_inner .text{
    width: 100%;
  }
  .sec2 .sec2_inner .text p{
    font-size: 1.6vw;
  }
  .sec2 .sec2_inner .text .more{
    position: relative;
    margin-top: 20px;
  }
  .sec2 .sec2_inner .text .sec2_title{
    padding: 20px 0;
  }
  .sec2 .sec2_inner .text p {
    font-size: 1.8vw;
  }
  .sec2 .sec2_inner .bg img{
    min-height: 100%;
  }
}
@media screen and (max-width:568px){
  .sec2 {
    margin: 60px auto;
  }
  .sec2 .sec2_inner{
    margin: 40px auto;
  }
  .sec2 .sec2_inner .text p {
    font-size: 3vw;
  }
  .sec2 .sec2_inner .text .more a::after {
    border-left: 3px solid #fff;
    border-bottom: 3px solid #fff;
  }
}
/*=====================================
*section3
=======================================*/
.sec3{
  margin: 120px auto;
}
.sec3 .center_image{
  margin: 80px auto;
  text-align: center;
}
.sec3 .message{
  margin: 40px auto;
  padding: 40px;
  background: #fff8f1;
}
.sec3 .message p{
  max-width: 1260px;
  width: 100%;
  text-align: center;
  margin: 0 auto;
  font-size: 20px;
  line-height: 2.1;
}
@media screen and (max-width:1480px){
  .sec3 .message{
    padding: 20px;
  }
  .sec3 .message p{
    font-size: 16px;
    line-height: 1.8;
  }
}
@media screen and (max-width:620px){
  .sec3 .message p{
    font-size: 14px;
  }
}
@media screen and (max-width:568px){
  .sec3 {
    margin: 60px auto;
  }
  .sec3 .center_image{
    margin: 40px auto;
  }
  .sec3 .message p{
    font-size: 3vw;
  }
}

/*=====================================
*section4
=======================================*/
.sec4{
  margin: 120px auto;
}
.sec4 .sec4_list{

}
.sec4 .sec4_list ol{
  display: flex;
  justify-content: flex-start;
}
.sec4 .sec4_list ol li{
  width: 32%;
  margin-right: 2%;
}
.sec4 .sec4_list ol li:nth-child(3){
  margin-right: 0;
}
.sec4 .sec4_list ol li a .image{
  overflow: hidden;
  width: 100%;
  padding-top: 87.2%;
  position: relative;
}
.sec4 .sec4_list ol li a .image img{
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  max-width: inherit;
  height: 100%;
	width: auto;
	transition: ease all .4s;
}
.sec4 .sec4_list ol li a:hover .image img{
  transform: translate(-50%, -50%) scale( 1.1);
}
.sec4 .sec4_list ol li a .title{
  margin-top: 10px;
  font-size: 20px;
  font-weight: 500;
  color: #111;
}
@media screen and (max-width:1480px){
  .sec4 .sec4_list ol li a .title{
    font-size: 14px;
  }
}
@media screen and (max-width:620px){
  .sec4 .sec4_list ol li a .title {
    font-size: 12px;
  }
}
@media screen and (max-width:568px){
  .sec4 {
    margin: 60px auto;
  }
  .sec4 .sec4_list ol{
    display: block;
  }
  .sec4 .sec4_list ol li{
    margin: 40px auto;
    width: 100%;
  }
  .sec4 .sec4_list ol li a .title {
    font-size: 14px;
  }
}

/*=====================================
*section5
=======================================*/
.sec5{
  position: relative;
  margin: 120px auto;
}
.sec5 ol li{
  width: 100%;
}
.sec5 ol li a{
  display: block;
  padding: 30px 40px;
  color: #111;
  border-bottom: 1px solid #ccc;
  position: relative;
  font-weight: 600;
	transition: ease all .4s;
}
.sec5 ol li a:hover{
	opacity: .7;
}
.sec5 ol li a .date{
  font-size: 12px;
  font-family: 'Caudex';
  font-weight: normal;
  color: #555;
}
.sec5 ol li a::before{
  content: '';
  position: absolute;
  display: block;
  background: url(../images/arrow.png)no-repeat center;
  width: 8px;
  height: 16px;
  right: 40px;
  top: 50%;
  transform: translateY(-50%);
	transition: ease all .4s;
}
.sec5 ol li a:hover::before{
	right: 20px;
}
@media screen and (max-width:1480px){
  .sec5 ol li a{
    padding: 20px;
  }
}
@media screen and (max-width:568px){
  .sec5 {
    margin: 40px auto;
  }
  .sec5 ol li a {
    padding: 20px 10px;
    padding-right: 30px;
  }
  .sec5 ol li a::before{
    right: 10px;
  }
	.sec5 ol li a:hover::before{
		right: 5px;
	}
}

/*=====================================
*contact
=======================================*/
.contact_banner{
  margin: 120px auto;
}
.contact_banner .bg{
  background: url(../images/contact.jpg)no-repeat center;
}
.contact_banner .bg a{
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 240px;
  padding: 40px;
	transition: ease all .4s;
}
.contact_banner .bg a:hover{
	opacity: .7;
	background: #000000ba;
}
.contact_banner .bg a h2{
  font-family: 'Caudex';
  font-size: 50px;
  font-weight: 100;
  letter-spacing: 1px;
}
.contact_banner .bg a p{
  font-size: 14px;
  letter-spacing: 1px;
  line-height: 2;
}
.contact_banner .bg a .btn{
  padding: 15px 25px;
  line-height: 1;
  border: 1px solid #fff;
  border-radius: 500px;
  font-family: 'Caudex';
  font-weight: 100;
  font-size: 16px;
  letter-spacing: 1px;
}
#page .thanks .thanks_btn{
	text-align: center;
    margin: 40px auto;
    display: block;
}
#page .thanks .thanks_btn a{
	display: inline-block;
    margin: 20px auto;
    padding: 15px 40px;
    border-radius: 0;
    background: #111;
    color: #fff;
    font-size: 18px;
    width: 100%;
    max-width: 360px;
    font-family: 'Noto Sans JP';
	transition: ease all .4s;
}
#page .thanks .thanks_btn a:hover{
	opacity: .7;
}
@media screen and (max-width:1480px){
  .contact_banner .bg a h2{
    font-size: 40px;
  }
  .contact_banner .bg a p{
    letter-spacing: 0;
  }
}
@media screen and (max-width:1000px){
  .contact_banner .bg a{
    flex-wrap: wrap;
  }
  .contact_banner .bg a h2{
    width: 100%;
    line-height: 1;
  }
}
@media screen and (max-width:620px){
  .contact_banner .bg a{
    min-height: auto;
    padding: 25px;
  }
  .contact_banner .bg a p{
    margin: 20px 0;
  }
}
@media screen and (max-width:568px){
  .contact_banner .bg a h2 {
    font-size: 24px;
  }
  .contact_banner .bg a p{
    font-size: 12px;
  }
  .contact_banner {
    margin: 60px auto;
  }
}
/*=====================================
*
*single
*
=======================================*/
#single{
	
}
#single .single_contents{
	max-width: 1100px;
	padding: 0 20px;
	margin: 80px auto;
	position: relative;
}
#single .single_contents .single_title {
    font-family: 'SGEO', 'Noto Sans JP';
    font-weight: bold;
    font-size: 40px;
    letter-spacing: 4px;
	line-height: 1.8;
}
#single .single_contents .thumb{
	margin: 40px auto;
	text-align: center;
}
#single .single_contents h2{
	margin: 60px auto 40px;
    font-size: 30px;
    font-weight: 900;
}
#single .single_contents h3{
	margin: 60px auto 40px;
    font-size: 26px;
    font-weight: 900;
    border-bottom: 1px solid #ccc;
    padding: 15px 10px;
}
#single .single_contents p{
	margin: 20px auto;
	line-height: 1.8;
    font-size: 16px;
    letter-spacing: 1px;
}
#single .single_contents ul{
	background: none;
	border: none;
	padding: 0;
}
#single .single_contents ul li{
	margin: 20px auto;
	padding-left: 20px;
}
#single .single_contents ul li::before{
	content: '・';
    display: inline-block;
    width: auto;
    height: auto;
    background: none;
    border-radius: 50%;
    margin-right: 5px;
    top: -2px;
    position: absolute;
    left: 0;
    top: 0;
}
@media screen and (max-width: 1480px) {
    #single .single_contents .single_title {
        font-size: 2.8vw;
    }
}
@media screen and (max-width: 1260px) {
    #single .single_contents .single_title {
        font-size: 3.2vw;
    }
}
@media screen and (max-width: 968px) {
	#single .single_contents h2{
		font-size: 26px;
		margin: 40px auto 20px;
	}
	#single .single_contents h3{
		font-size: 22px;
		margin: 40px auto 20px;
	}
}
@media screen and (max-width: 768px){
    #single .single_contents .single_title {
		font-size: 4.5vw;
    }
}

/*=====================================
*
*page
*
=======================================*/


/*=====================================
*common
=======================================*/
.page_header{
	height: 32.1vw;
	overflow: hidden;
	position: relative;
	background: url(../images/page_header.jpg)no-repeat center / cover;
}
.page_header h1{
	position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
  	max-width: 1640px;
    width: 100%;
    padding: 0 20px;
    margin: 0 auto;
	font-family: 'SGEO','Noto Sans JP';
	font-weight: bold;
	font-size: 100px;
	letter-spacing: 4px;
}
.page_title{
	margin: 140px auto 80px;
	text-align: center;
}
.page_title .main{
	font-family: 'SGEO','Noto Sans JP';
	font-weight: bold;
	font-size: 80px;
	letter-spacing: 4px;
	line-height: 1.3;
	background: url(../images/title.jpg) center/cover no-repeat;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	color: transparent;
}
.page_title .main strong{
	font-size: 50px;
	display: block;
}
.page_title .sub{
	font-weight: bold;
	text-align: center;
	font-size: 20px;
	margin-top: 20px;
}
.page_title.contact{
	margin: 60px auto;
}
@media screen and (max-width: 1480px) {
    .page_header h1 {
        font-size: 6.5vw;
    	padding: 0 40px;
    }
	.page_title .main{
        font-size: 6.5vw;
	}
	.page_title .main strong{
		font-size: 4vw;
	}
	.page_title .sub{
		font-size: 18px;
	}
}

/*=====================================
*company
=======================================*/
.company_first{
	background: url(../images/company_sec1.jpg)no-repeat top center / cover;
	position: relative;
	top: -42px;
	text-align: center;
	padding: 80px 0;
}
.company_first .page_title{
	margin: 40px auto;
}
.company_first .page_title .main{
	font-size: 50px;
    font-weight: 900;
    color: #111;
    background: none;
    -webkit-text-fill-color: #111;
}
.company_first p{
	margin: 25px auto;
    font-size: 16px;
    line-height: 2.2;
    color: #555;
}
.message .message_flex > div{
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.message .message_flex > div figure{
	width: 42%;
}
.message .message_flex > div .text{
	width: 55%;
}
.message .message_flex > div .text h3{
	font-weight: 900;
	font-size: 40px;
}
.message .message_flex > div .text p{
	line-height: 2;
	font-size: 16px;
	color: #555;
	margin: 40px auto;
}
.message .bottoms{
	margin: 40px auto;
	padding: 20px;
	color: #555;
	background: #fafafa;
}
.message .bottoms p{
	margin: 10px auto;
}
.partner{
	
}
.partner .partner_flex > div{
	display: flex;
	justify-content: space-between;
	position: relative;
	z-index: 2;
	margin: 80px auto;
}
.partner .partner_flex > div::before{
	content: '';
	width: calc( 100% - 40px );
	height: 100%;
	background: #fafafa;
	position: absolute;
	left: 40px;
	top: 40px;
	z-index: -1;
}
.partner .partner_flex.re > div{
	flex-flow: row-reverse;
}
.partner .partner_flex.re > div::before{
	content: '';
	width: calc( 100% - 40px );
	height: 100%;
	background: #fafafa;
	position: absolute;
	left: auto;
	right: 40px;
	top: 40px;
	z-index: -1;
}
.partner .partner_flex > div figure{
	width: 38.2%;
}
.partner .partner_flex > div .text{
	width: 61.8%;
    position: relative;
    top: 40px;
    padding: 40px;
}
.partner .partner_flex > div .text h3{
	font-weight: 900;
	font-size: 30px;
	margin-bottom: 40px;
}
.partner .partner_flex > div .text p{
	color: #555;
	font-size: 16px;
	line-height: 2;
}
.partner .partner_list > div{
	display: flex;
	justify-content: flex-start;
	margin: 80px auto;
}
.partner .partner_list > div .partner_list_inner{
	width: calc( 25% - 10px );
	margin-right: 20px;
}
.partner .partner_list > div .partner_list_inner:last-child{
	margin-right: 0;
}
.partner .partner_list > div .partner_list_inner h3{
	font-weight: 900;
	font-size: 20px;
	text-align: center;
	margin: 20px auto;
	line-height: 1;
}
.partner .partner_list > div .partner_list_inner p{
	font-size: 14px;
	color: #555;
	line-height: 1.8;
}
.company_about{
	margin: 140px auto 80px;
}
.company_about .bg{
	position: relative;
	overflow: hidden;
	height: 22.436vw;
}
.company_about .bg img{
	position: absolute;
	left: 50%;
	top: 10%;
	transform: translate(-50%,-50%);
	width: 100%;
}
.company_about .company_about_inner{
	margin: 0 auto;
	position: relative;
	margin-top: -10.7vw;
	overflow: hidden;
	background: #fff;
}
.company_about .company_about_inner .page_title{
	margin: 80px auto;
}
.company_about .company_about_inner .company_table{
	max-width: 740px;
	padding: 0 40px;
	margin: 80px auto;
}
.company_about .company_about_inner .company_table .table_inner{
	border-bottom: 1px solid #dedede;
}
.company_about .company_about_inner .company_table .table_inner > div{
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 30px;
}
.company_about .company_about_inner .company_table .table_inner .title{
	font-weight: 900;
	font-size: 20px;
	width: 160px;
}
.company_about .company_about_inner .company_table .table_inner p{
	width: calc( 100% - 200px );
}
@media screen and (max-width:1340px){
	.company_about .company_about_inner{
		width: calc(100% - 40px);
	}
}
@media screen and (max-width: 960px){
	.page_title{
		margin: 80px auto 40px;
	}
	.company_first .page_title{
		margin: 20px auto;
	}
	.company_first .page_title .main{
		font-size: 5vw;
	}
	.company_first .page_title .main{
		letter-spacing: 0;
	}
	.company_first p{
		margin: 20px auto;
		font-size: 14px;
		line-height: 2;
	}
	.message .message_flex > div .text h3{
		font-size: 26px;
	}
	.message .message_flex > div .text p{
		margin: 20px auto;
		font-size: 14px;
		line-height: 1.8;
	}
	.message .bottoms{
		font-size: 14px;
		margin: 20px auto;
		line-height: 1.6;
	}
	.partner .partner_flex > div .text{
		padding: 20px;
	}
	.partner .partner_flex > div .text h3{
		font-size: 24px;
		margin-bottom: 20px;
	}
	.partner .partner_flex > div .text p {
		color: #555;
		font-size: 14px;
		line-height: 1.8;
	}
	.partner .partner_list > div .partner_list_inner h3{
		font-size: 16px;
		margin: 10px auto;
	}
	.partner .partner_list > div .partner_list_inner p{
		font-size: 12px;
	}
	.company_about {
		margin: 80px auto 40px;
	}
}
@media screen and (max-width: 768px){
	.company_first p{
		margin: 10px auto;
	}
	.company_first{
		padding: 60px 0;
	}
	.message .message_flex > div .text h3 {
        font-size: 22px;
    }
	.partner .partner_flex > div .text h3{
		margin-bottom: 10px;
		font-size: 22px;
	}
	.partner .partner_flex > div .text {
        padding: 20px;
		top: 20px;
    }
	.partner .partner_flex > div .text p{
		font-size: 12px;
	}
	.partner .partner_flex > div::before{
		left: 20px;
    	top: 20px;
		width: calc(100% - 20px);
	}
	.partner .partner_flex.re > div::before{
		width: calc(100% - 20px);
		left: auto;
		right: 20px;
		top: 20px;
	}
	.partner .partner_list > div{
		flex-wrap: wrap;
	}
	.partner .partner_list > div .partner_list_inner{
		width: 48%;
        margin: 20px 0;
        margin-right: 4%;
	}
	.partner .partner_list > div .partner_list_inner:nth-child(2n){
		margin-right: 0;
	}
	.company_about .company_about_inner .page_title {
		margin: 40px auto 20px;
	}
	.company_about .company_about_inner .company_table{
		margin: 20px auto;
		padding: 0;
	}
	.company_about .company_about_inner .company_table .table_inner > div{
		padding: 20px;
	}
	.company_about .company_about_inner .company_table .table_inner .title{
		width: 120px;
	}
	.company_about .company_about_inner .company_table .table_inner p{
		width: calc( 100% - 140px );
		font-size: 14px;
	}
}
@media screen and (max-width: 568px){
	.page_title{
		margin: 40px auto;
	}
	.company_first{
		padding: 40px 0;
	}
	.message .message_flex > div{
		display: block;
		width: 100%;
	}
	.message .message_flex > div figure{
		width: 100%;
	}
	.message .message_flex > div .text{
		width: 100%;
		margin-top: 20px;
	}
	.message .message_flex > div .text h3{
		font-size: 18px;
	}
	.partner .partner_flex > div{
		display: block;
	}
	.partner .partner_flex > div figure{
		width: calc(100% - 20px);
	}
	.partner .partner_flex > div .text {
        width: calc(100% - 20px);
        left: 20px;
		top: 0;
    }
	.partner .partner_flex.re > div figure{
		position: relative;
		left: 20px;
	}
	.partner .partner_flex.re > div .text{
		left: 0;
	}
	.company_about .company_about_inner .company_table .table_inner > div {
        padding: 20px 10px;
    }
	.company_about .company_about_inner .company_table .table_inner .title {
        width: 90px;
		font-size: 15px;
    }
	.company_about .company_about_inner .company_table .table_inner p {
        width: calc(100% - 90px);
        font-size: 14px;
    }
}

/*=====================================
*service
=======================================*/
.service_btn > div{
	display: flex;
/* 	justify-content: space-between; */
	justify-content: center;
	margin: 80px auto;
}
.service_btn > div p{
	width: 32%;
	margin-right: 2%;
	position: relative;
	transition: ease all .4s;
}
.service_btn > div p::before{
	content: '';
	display: block;
	width: 80px;
	height: 1px;
	position: absolute;
	background: #111;
	left: 50%;
    bottom: 40px;
    transform: translateX(-50%);
	pointer-events: none;
	transition: ease all .4s;
	z-index: 2;
}
.service_btn > div p::after{
	content: '';
    position: absolute;
    left: calc(50% + 37px);
    transform: translateX(-50%);
    border: 3px solid transparent;
    border-left: 3px solid #111;
    border-bottom: 3px solid #111;
    bottom: 40px;
	pointer-events: none;
	transition: ease all .4s;
	z-index: 2;
}
.service_btn > div p a{
	display: block;
    width: 100%;
    font-family: 'SGEO';
    font-weight: bold;
    font-size: 30px;
    text-align: center;
    color: #111;
    border: 1px solid #ccc;
    padding: 40px 20px;
    padding-bottom: 80px;
    letter-spacing: 2px;
	position: relative;
	overflow: hidden;
	transition: ease all .4s;
	background: transparent;
}
.service_btn > div p a::before{
	content: '';
	display: block;
	width: 603px;
	height: 307px;
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%,-50%);
	background: url(../images/service_btn02.jpg)no-repeat center;
	z-index: -1;
	transition: ease all .4s;
	pointer-events: none;
	opacity: 0;
}
.service_btn > div p:hover::before{
    left: calc(50% + 20px);
	background: #fff;
}
.service_btn > div p:hover::after{
    left: calc(50% + 57px);
	border-left: 3px solid #fff;
	border-bottom: 3px solid #fff;
}
.service_btn > div p a:hover{
	background: #00000060;
	color: #fff;
}
.service_btn > div p a:hover::before{
	opacity: 1;
}
.service_first_text{
	text-align: center;
	line-height: 2.2;
	font-size: 18px;
	color: #555;
	margin: 60px auto 90px;
}
.service_about > div{
	display: flex;
	justify-content: space-between;
	margin: 80px auto;
}
.service_about > div .service_about_inner{
	width: 32%;
	margin-right: 2%;
}
.service_about > div .service_about_inner:nth-child(3){
	margin-right: 0;
}
.service_about > div .service_about_inner p{
    background: #111;
    text-align: center;
    color: #fff;
    padding: 10px;
    width: calc(100% - 60px);
    margin: 0 auto;
    transform: translateY(-50%);
	font-size: 16px;
}
.service_cont{
	background: url(../images/service_cont_bg.jpg)no-repeat center top;
	background-color:#fafafa;
	overflow: hidden;
}
.service_cont .service_flex > div{
	display: flex;
	justify-content: space-between;
	margin: 120px auto;
	position: relative;
	z-index: 2;
}
.service_cont .service_flex > div::before{
	content: '';
	display: block;
	width: calc( 100% - 40px );
	height: calc( 100% - 40px );
	background: #fff;
	position: absolute;
	right: 0;
	bottom: -40px;
	z-index: -1;
}
.service_cont .service_flex > div figure{
	width: 40%;
}
.service_cont .service_flex > div .text{
	position: relative;
	width: 58%;
	margin-top: 40px;
	top: 40px;
	padding: 40px;
	padding-top: 80px;
}
.service_cont .service_flex > div .text h3{
	font-weight: bold;
	font-size: 40px;
	margin-bottom: 20px;
	line-height: 1.3;
}
.service_cont .service_flex > div .text .text_inner{
	margin: 40px auto;
	color: #555;
	line-height: 2;
}
.service_cont .service_flex > div .text .text_inner .text_cont{
	margin: 40px auto;
	color: #333;
}
.service_cont .service_flex > div .text .num{
	font-family: 'SGEO';
	font-weight: bold;
	font-size: 150px;
	position: absolute;
	right: 60px;
	top: 0;
	transform: translateY(-50%);
	color: #111;
	line-height: 1;
}
#service02 .service_cont .service_flex > div .text .num{
	color: #f93f05;
}
.service_cont .service_flex.re > div{
	flex-flow: row-reverse;
}
.service_cont .service_flex.re > div::before{
	left: 0;
}
.service_cont .service_flex.re > div .text .num{
	left: 40px;
}
@media screen and (max-width: 1360px){
	.service_btn > div p a{
		font-size: 20px;
		padding: 20px 10px;
    	padding-bottom: 40px;
	}
	.service_btn > div p::before{
		bottom: 20px;
	}
	.service_btn > div p::after{
		bottom: 20px;
	}
	.service_about > div .service_about_inner p{
		width: calc(100% - 20px);
    	font-size: 1.4vw;
	}
	.service_cont .service_flex > div figure{
		width: 42%;
	}
	.service_cont .service_flex > div .text{
		padding-top: 60px;
	}
	.service_cont .service_flex > div .text .num{
		font-size: 100px;
	}
	.service_cont .service_flex > div .text h3{
		font-size: 30px;
	}
	.service_cont .service_flex > div .text .text_inner{
		margin: 20px auto;
	}
}
@media screen and (max-width: 914px){
	.service_first_text{
		font-size: 16px;
	}
	.service_btn > div p{
		height: 110px;
	}
	.service_btn > div p a{
		height: 100%;
		font-size: 16px;
	}
	.service_cont .service_flex > div,
	.service_cont .service_flex.re > div{
		flex-wrap: wrap;
	}
	.service_cont .service_flex > div::before{
		width: calc(100% - 20px);
    	height: calc(100% - 20px);
		bottom: 0;
	}
	.service_cont .service_flex > div figure {
        width: 90%;
    }
	.service_cont .service_flex > div .text {
		width: calc(100% - 20px);
        padding: 0 20px;
		padding-top: 20px;
        margin-top: 0;
		top: 0;
		left: 20px;
    }
	.service_cont .service_flex.re > div .text{
		left: -20px;
	}
	.service_cont .service_flex > div .text .num{
		right: 20px;
		top: -30px;
	}
	.service_cont .service_flex.re > div .text .num {
		left: 20px;
		right: auto;
	}
}
@media screen and (max-width: 720px){
	.service_first_text {
        font-size: 14px;
        margin: 40px auto;
    }
	.service_about > div{
		display: block;
		margin: 40px auto;
	}
	.service_about > div .service_about_inner,
	.service_about > div .service_about_inner:nth-child(3){
		max-width: 400px;
		width: 100%;
		margin: 40px auto;
	}
	.service_about > div .service_about_inner p{
		font-size: 14px;
	}
	.service_cont .service_flex > div{
		margin: 60px auto;
	}
	.service_cont .service_flex > div .text .num{
        font-size: 60px;
		top: -10px;
    }
	.service_cont .service_flex > div .text h3 {
        font-size: 22px;
    }
}
@media screen and (max-width: 520px){
	.service_btn > div{
		display: block;
	}
	.service_btn > div p {
        height: auto;
        width: 100%;
        margin: 20px auto;
    }
	.service_btn > div p a{
		font-size: 20px;
	}
}
/*=====================================
*contact
=======================================*/
.contact_form{
	max-width: 800px;
	padding: 0 20px;
	margin: 40px auto;
}
.contact_form .contact_form_inner{
	margin: 20px auto;
}
.contact_form .contact_form_inner .title{
	font-size: 20px;
        font-weight: 600;
	position: relative;
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 10px;
}
.contact_form .contact_form_inner .title .required{
	color: #df3609;
	font-size: 14px;
	font-weight: 400;
}
.contact_form .contact_form_inner .text{
	
}
.contact_form .contact_form_inner .text input[type="text"]{
	display: block;
    width: 100%;
    font-size: 16px;
    font-family: 'Noto Sans JP';
    padding: 10px;
	border: 1px solid #bbbbbb;
}
.contact_form .contact_form_inner .text > span{
	display: block;
	margin: 10px auto;
}
.contact_form .contact_form_inner .text span label{
	display: flex;
	justify-content: flex-start;
	align-items: center;
}
.contact_form .contact_form_inner .text textarea{
	width: 100%;
	display: block;
	resize: none;
	border: 1px solid #bbbbbb;
}
.contact_form .privacy{
	text-align: center;
}
.contact_form .privacy a{
	color: #111;
	text-decoration: underline;
	transition: ease all .4s;
}
.contact_form .privacy a:hover{
	opacity: .7;
	text-decoration: underline;
}
.contact_form .contact_btn{
	text-align: center;
	margin: 40px auto;
}
.contact_form .contact_btn input{
	background: #111;
	border:1px solid transparent;
    font-family: 'Noto Sans JP';
	padding: 15px;
	color: #fff;
	font-size: 20px;
	font-weight: 400;
	width: 260px;
	line-height: 1;
	transition: ease all .4s;
}
.contact_form .contact_btn input:hover{
	opacity: .7;
	cursor: pointer;
}
@media screen and (max-width: 568px){
	.page_title.contact{
		margin: 40px auto;
	}
}
/*=====================================
*sitemap
=======================================*/
.sitemap_list{
	margin: 80px auto;
}
.sitemap_list li{
	margin: 40px auto;
}
.sitemap_list li a{
	font-size: 50px;
    font-weight: 900;
    font-family: 'SGEO';
    color: #111;
	position: relative;
	left: 0;
	transition: ease all .4s;
}
.sitemap_list li a:hover{
	left: 10px;
	opacity: .7;
}
@media screen and (max-width: 568px){
	.sitemap_list{
		margin: 40px auto;
	}
	.sitemap_list li a{
		font-size: 32px;
	}
}
/*=====================================
*privacy
=======================================*/
.privacy_contents{
	max-width: 1300px;
    padding: 0 20px;
    font-weight: 400;
    margin: 40px auto;
}
.privacy_contents p{
	margin: 20px auto;
	line-height: 1.8;
}
.privacy_contents h2{
	font-weight: 600;
	font-size: 20px;
	margin: 40px auto 20px;
}

/*=====================================
*
*archive
*
=======================================*/
.archive_header{
	height: 32.1vw;
	overflow: hidden;
	position: relative;
	background: url(../images/page_header.jpg)no-repeat center / cover;
}
.archive_header h1{
	position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
  	max-width: 1640px;
    width: 100%;
    padding: 0 20px;
    margin: 0 auto;
	font-family: 'SGEO','Noto Sans JP';
	font-weight: bold;
	font-size: 100px;
	letter-spacing: 4px;
}
.looplist{
  max-width: 1600px;
  margin: 80px auto;
  position: relative;
}
.looplist ol{
  display: flex;
  justify-content: flex-start;
	flex-wrap: wrap;
}
.looplist ol li{
	width: 32%;
	margin: 20px 0;
	margin-right: 2%;
}
.looplist ol li:nth-child(3n){
  margin-right: 0;
}
.looplist ol li a .image{
  overflow: hidden;
  width: 100%;
  padding-top: 87.2%;
  position: relative;
}
.looplist ol li a .image img{
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  max-width: inherit;
  height: 100%;
	transition: ease all .4s;
}
.looplist ol li a:hover .image img{
  transform: translate(-50%, -50%) scale( 1.1);
}
.looplist ol li a time{
	font-size: 12px;
    font-family: 'Caudex';
    font-weight: normal;
    color: #555;
}
.looplist ol li a h2{
  font-size: 18px;
  font-weight: 500;
  color: #111;
}
.looplist .pagination{
	margin: 40px auto;
	text-align: center;
}
.looplist .pagination ul{
	display: inline-flex;
	justify-content: center;
}
.looplist .pagination ul li{
	width: 30px;
	height: 30px;
	margin: 0 5px;
}
.looplist .pagination ul li a{
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	border: 1px solid #999;
	color: #999;
	transition: ease all .4s;
}
.looplist .pagination ul li a:hover{
	background: #999;
	color: #fff;
}
.looplist .pagination ul li span{
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	border: 1px solid #111;
	background: #111;
	color: #fff;
}
.looplist.newslist{
	max-width: 1100px;
	padding: 0 20px;
	margin: 80px auto;
}
.looplist.newslist ol{
	display: block;
}
.looplist.newslist ol li{
	width: 100%;
	margin: 0 auto;
}
.looplist.newslist ol li a{
	display: block;
    padding: 30px 40px;
	padding-right: 60px;
    color: #111;
    border-bottom: 1px solid #ccc;
    position: relative;
    font-weight: 600;
    transition: ease all .4s;
}
.looplist.newslist ol li a::before {
    content: '';
    position: absolute;
    display: block;
    background: url(../images/arrow.png) no-repeat center;
    width: 8px;
    height: 16px;
    right: 40px;
    top: 50%;
    transform: translateY(-50%);
    transition: ease all .4s;
}
.looplist.newslist ol li a:hover::before{
    right: 20px;
}
@media screen and (max-width:1680px){
  .looplist{
    max-width: 1600px;
    padding: 0 40px;
  }
}
@media screen and (max-width: 1480px) {
	.archive_header h1 {
		font-size: 6.5vw;
		padding: 0 40px;
	}
	.looplist ol li a h2{
		font-size: 16px;
	}
	.looplist.newslist ol li a{
		padding: 20px;
		padding-right: 40px;
	}
	.looplist.newslist ol li a::before {
		right: 20px;
	}
	.looplist.newslist ol li a:hover::before{
		right: 10px;
	}
}
@media screen and (max-width:620px){
  .looplist ol li a h2 {
    font-size: 12px;
  }
}
@media screen and (max-width:568px){
  .looplist {
    margin: 60px auto;
  }
  .looplist ol{
    display: block;
  }
  .looplist ol li{
    margin: 40px auto;
    width: 100%;
  }
}

/*=====================================
*
*breadcrumb
*
=======================================*/
#page .breadcrumb,
#archive .breadcrumb{
	margin: 10px auto;
	position: relative;
	z-index: 9;
}
#page .breadcrumb ul,
#archive .breadcrumb ul{
	display: flex;
}
#page .breadcrumb ul li,
#archive .breadcrumb ul li{
	position: relative;
}
#page .breadcrumb ul li a,
#archive .breadcrumb ul li a{
	color: #111;
	font-size: 14px;
	line-height: 1;
	transition: ease all .4s;
}
#page .breadcrumb ul li a:hover,
#archive .breadcrumb ul li a:hover{
	opacity: .7;
}
#page .breadcrumb ul li::after,
#archive .breadcrumb ul li::after{
	content: '>';
	margin: 0 3px;
}
#page .breadcrumb ul li:last-child::after,
#archive .breadcrumb ul li:last-child::after{
	content: none;
}
#page .contact_breadcrumb .breadcrumb{
	margin: 50px auto;
}
#single .contents .breadcrumb{
	margin: 50px auto;
}
#single .contents .breadcrumb ul{
	display: flex;
	border: none;
    padding: 0;
    background: none;
}
#single .contents .breadcrumb ul li{
	position: relative;
	margin: 0;
}
#single .contents .breadcrumb ul li::before{
	content: none;
}
#single .contents .breadcrumb ul li a{
	color: #111;
	font-size: 14px;
	line-height: 1;
	transition: ease all .4s;
}
#single .contents .breadcrumb ul li a:hover{
	opacity: .7;
}
#single .contents .breadcrumb ul li::after{
	content: '>';
	margin: 0 3px;
}
#single .contents .breadcrumb ul li:last-child::after{
	content: none;
}
@media screen and (max-width: 768px){
	#page .breadcrumb ul li a,
	#archive .breadcrumb ul li a{
		font-size: 12px;
	}
	#page .contact_breadcrumb .breadcrumb,
	#single .contents .breadcrumb{
    	margin: 40px auto;
		padding-right: 60px;
	}
	#single .contents .breadcrumb ul{
		flex-wrap: wrap;
	}
}
@media screen and (max-width: 620px){
	#page .contact_breadcrumb .breadcrumb,
	#single .contents .breadcrumb{
    	margin: 30px auto;
	}
}

/*=====================================
*
*toc
*
=======================================*/

/*=====================================
*
*footer
*
=======================================*/
footer{
  padding-top: 20px;
  text-align: center;
  background: #fafafa;
}
footer .footer_logo{
  text-align: center;
}
footer .footer_logo img{
  max-width: 193px;
}
footer .footer_logo a{
	transition: ease all .4s;
}
footer .footer_logo a:hover{
	opacity: .7;
}
footer .footer_menu{

}
footer .footer_menu ol{
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin: 20px auto;
}
footer .footer_menu ol li{
  margin: 0 10px;
}
footer .footer_menu ol li a{
  color: #111;
  font-family: 'Caudex';
	transition: ease all .4s;
}
footer .footer_menu ol li a:hover{
	opacity: .7;
}
footer .copyright{
  text-align: center;
  padding: 15px;
  line-height: 1;
  background: #111;
  color: #fff;
  font-family: 'Caudex';
  font-size: 14px;
}
@media screen and (max-width:768px){
	footer .footer_menu ol{
		margin: 15px auto;
	}
	footer .footer_menu ol li{
		margin: 5px 10px;
	}
	footer .copyright{
		font-size: 12px;
		padding: 10px;
	}
}

/*=====================================
*
*sidenav
*
=======================================*/

/*=====================================
*
*pc&tablet&spのnone処理
*
=======================================*/
/*=====================================
*pcのみ
=======================================*/
@media screen and (min-width: 1025px){
  .pcnone{
    display: none;
  }
}
/*=====================================
*tablet用
=======================================*/
@media screen and (max-width: 1024px) and (min-width: 415px){
  .tabnone{
    display: none;
  }
}
/*=====================================
*sp用
=======================================*/
@media screen and (max-width:414px){
  .spnone{
    display: none;
  }
}
