@charset "utf-8";

/*----------------------------------------------------------
    font
----------------------------------------------------------*/

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500;600;700;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@300;400;500;600;700;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Heebo:wght@500;600;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Red+Hat+Text:wght@500&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Sawarabi+Mincho&display=swap');

body{font-family: 'Noto Sans JP', "游ゴシック", YuGothic, sans-serif; line-height: 1; color: #222;}
.serif{font-family: 'Noto Serif JP', 游明朝, "Yu Mincho", YuMincho, serif;}

/*----------------------------------------------------------
    common
----------------------------------------------------------*/

*{
	box-sizing: border-box;
}

article, body, dd, div, dl, dt, footer, form, h1, h2, h3, h4, h5, h6, header, html, iframe, img, label, li, nav, p, section, span, sub, sup, table, tbody, td, tfoot, th, thead, tr, ul {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
	font-size: 100%;
    vertical-align: baseline;
	background:transparent;
}

ol, ul{
    list-style: none;
}

a{
	margin: 0;
	padding: 0;
	font-size: 100%;
	vertical-align: baseline;
	background: transparent;
	text-decoration: none;
}

a:hover{
	opacity: 0.6;
}

.pc, .pc_inline{display: none;}

@media screen and (min-width:1000px) {
    
    .pc {display: block;}
    .pc_inline {display: inline;}
	.sp {display: none;}
}

/*----------------------------------------------------------
    menu-btn
----------------------------------------------------------*/

.menu-btn {
  display: block;
  position: absolute;
  right: 2.6vw;
  top: 2.8vw;
  width: 12vw;
  height: 12vw;
  cursor: pointer;
  z-index: 9999;
  text-align: center;
}

.menu-btn span {
  display: block;
  position: absolute;
  left: 50%;
  width: 7.2vw;
  height: 3px;
  background: #000;
  transition: .35s ease-in-out;
  margin-left: -4vw;
}
.menu-btn span:nth-child(1) {
  top: 2.3vw;
  transform: scaleY(0.5);
}
.menu-btn span:nth-child(2) {
  top: 4.6vw;
  transform: scaleY(0.5);
}
.menu-btn span:nth-child(3) {
  top: 6.9vw;
  transform: scaleY(0.5);
}

.menu-btn span.txt {
  position: absolute;
  top: 50%;
  left: -1.5em;
  background: none;
  font-size: 2.5vw;
  font-family: 'Red Hat Text', 'Noto Sans JP', sans-serif;
  font-weight: 500;
  line-height: 1.7;
  margin-top: -1.2em;
}

@media screen and (min-width:1000px) {
	
  .menu-btn {
    width: 80px;
    height: 80px;
    top: 3px;
    right: 30px;
  }
	
  .menu-btn span {
    width: 37px;
    margin-left: 0;
  }
  .menu-btn span:nth-child(1) {
    top: 23px;
  }
  .menu-btn span:nth-child(2) {
    top: 36px;
  }
  .menu-btn span:nth-child(3) {
    top: 49px;
  }
	
  .menu-btn span.txt {
    font-size: 14px;
    top: 43px;
  }
}

.menu-btn.active {
  position: fixed;
  right: 50%;
  margin-right: -25px;
  top: 5vh !important;
}

.menu-btn.active span {
  background: #fff;
}
.menu-btn.active span:nth-child(1) {
  top: 20px;
  height: 1.5px;
  transform: rotate(-45deg);
}
.menu-btn.active span:nth-child(2) {
  top: 20px;
  height: 1.5px;
  transform: rotate(45deg);
}
.menu-btn.active span:nth-child(3) {
  display: none;
}
.menu-btn.active span.txt {
  display: none;
}

@media screen and (min-width:1000px) {
	
  .menu-btn.active {
    top: 12.4vh !important;
  }
}

/*----------------------------------------------------------
    head-nav
----------------------------------------------------------*/

.head-nav {
  display: none;
  font-family: 'Sawarabi Mincho', serif;
  line-height: 1.74;
}

.head-nav__wrap {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  z-index: 9998;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.head-nav__gnav {
  width: 100%;
  max-width: 860px;
  margin-top: 10vh;
  padding: 0 14vw;
}

.head-nav__gnav .gnav-item {
  padding-bottom: 4vh;
}

.head-nav__gnav .gnav-item.gnav01 {
  display: flex;
  flex-wrap: wrap;
}

.head-nav__gnav .gnav-item.gnav01 ul {
  width: 50%;
}

.head-nav__gnav .gnav-item.gnav03{
  padding-bottom: 2vh;
}

.head-nav__gnav .gnav-item .gnav-title {
  position: relative;
  width: 100%;
  margin-bottom: 0.5em;
}

.head-nav__gnav .gnav-item .gnav-title span {
  background: #000;
  padding: 0.5em 0.5em 0.5em 0;
  font-size: 3.5vw;
  color: #ccc;
}

.head-nav__gnav .gnav-item .gnav-title:before {
  content: "";
  width: 100%;
  height: 1px;
  background: #ccc;
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  z-index: -1;
}

.head-nav__gnav ul li {
  color: #fff;
  font-size: 3.5vw;
  padding: 0.7vh 0;
}

.head-nav__gnav ul li.link-box{
    text-align: center;
	margin: 0.2em 0 0.5em;
	position: relative;
}

.head-nav__gnav ul li.link-box::after{
	content: " ";
    display: block;
    background: url(https://www.r-regent.jp/themes/main/assets/img/icon_arrow_w.svg) no-repeat;
    background-size: 12vw;
	width: 12vw;
	height: 3vw;
    position: absolute;
    right: 16%;
	top: 50%;
	margin-top: -2.8%;
}

.head-nav__gnav ul li.link-box a{
	display: block;
	width: 75%;
	font-size: 3.3vw;
    padding: 0.5em 1.5em 0.5em 0;
	border: 1px solid #fff;
}

.head-nav__gnav ul li a {
  color: #fff;
}

@media print, screen and (min-width: 1000px) {

	.head-nav__gnav {
	  margin: 0;
	  padding: 0;
	  display: flex;
	  flex-wrap: wrap;
	}

	.head-nav__gnav .gnav-item {
	  padding: 0 3vw 0 0;
	  width: calc(100% / 3);
	}
	
	.head-nav__gnav .gnav-item.gnav01 ul {
	  width: 100%;
	}

	.head-nav__gnav .gnav-item.gnav03{
	  padding: 0 0 0 3vw;
	}
	
	.head-nav__gnav .gnav-item .gnav-title{
	  margin-bottom: 1.2em;
	}

	.head-nav__gnav .gnav-item .gnav-title span {
	  font-size: 14px;
	}

	.head-nav__gnav ul li {
	  font-size: 20px;
	  padding: 0.5em 0;
	}

	.head-nav__gnav ul li:first-child {
	  padding-top: 0;
	}
	
	.head-nav__gnav ul + ul li:first-child {
	  padding-top: 0.5em;
	}

	.head-nav__gnav ul li.link-box::after{
	  background-size: 54px;
	  width: 54px;
	  height: 9px;
	  right: -30px;
	  margin-top: -8px;
	}

	.head-nav__gnav ul li.link-box a{
	  width: 100%;
	  font-size: 17px;
	}
}

/*----------------------------------------------------------
    h2
----------------------------------------------------------*/

h2{
	font-family: 'Noto Serif JP', 游明朝, "Yu Mincho", YuMincho, serif;
	font-size: 4.7vw;
    font-weight: 700;
	letter-spacing: 0.05em;
	line-height: 1.8;
    text-align: center;
    margin-bottom: 10vw;
}

@media screen and (min-width:1000px) {
	
	h2{
		font-size: 24px;
		margin-bottom: 70px;
	}
}

/*----------------------------------------------------------
    cta_area
----------------------------------------------------------*/

.cta_area{
	margin: 0 auto;
}

.cta_area .btn{
	display: block;
	position: relative;
    margin: 0 auto;
	padding-left: 8vw;
    color: #fff;
    background-color: #6f0101;
    border-radius: 3px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.25);
	width: 90vw;
    height: 17vw;
    line-height: 16.7vw;
    font-size: 4.2vw;
	font-weight: 500;
	letter-spacing: 0.15em;
}

.cta_area .btn span{
	margin-right: 5vw;
    padding: 1vw 2.2vw 1.5vw 3.2vw;
	border: 1px solid #fff;
	border-radius: 1vw;
	font-size: 3.2vw;
}

.cta_area .btn::after{
	content: "";
	position: absolute;
    width: 0.5em;
    height: 0.5em;
	border-radius: 2px;
    top: 50%;
    right: 9%;
    transform: translateY(-50%) rotate(-45deg);
    border-right: 2px solid #fff;
    border-bottom: 2px solid #fff;
}

@media screen and (min-width:1000px) {

	.cta_area .btn{
		padding-left: 50px;
		width: 450px;
		height: 70px;
		line-height: 65px;
		font-size: 18px;
	}

	.cta_area .btn span{
		margin-right: 32px;
		padding: 4px 11px 7px 15px;
		border-radius: 3px;
		font-size: 16px;
	}

	.cta_area .btn::after{
		right: 10%;
	}
}

/*----------------------------------------------------------
    header
----------------------------------------------------------*/

header{
    height: 135vw;
    background-image: url("../img/main_search_cxo_sp_2.jpg");
    background-size: cover;
    background-position: bottom;
    background-repeat: no-repeat;
	position: relative;
}

header .logo{
    padding: 4.5vw 0 0 4.5vw;
}

header .logo a img{
    height: 7vw;
}

header .catch{
	margin-top: 11vw;
}

header .catch .catch01{
	font-size: 4.3vw;
    font-weight: 600;
    letter-spacing: 0.07em;
	text-align: center;
}

header .catch .catch02{
	margin-top: 5vw;
    font-size: 7vw;
    font-weight: 700;
    letter-spacing: 0.07em;
	text-align: center;
    line-height: 1.6;
}

header .three_point{
	position: absolute;
	right: 6vw;
    bottom: 9vw;
	display: flex;
	flex-direction: column;
}

header .three_point div{
	width: 45.8vw;
    height: 14.4vw;
    border-radius: 1.5vw;
    background-color: rgba(255, 255, 255, 0.5);
	display: flex;
}

header .three_point div + div{
	margin-top: 5vw;
}

header .three_point div .number{
	width: 20%;
	background-color: #6f0101;
	border-radius: 1.5vw 0 0 1.5vw;
	position: relative;
    font-size: 5vw;
	letter-spacing: 0.05em;
    color: #fff;
    padding: 4.5vw 0 0 2.5vw;
}

header .three_point div .number::after{
	content: "";
    position: absolute;
    top: 0;
    right: -3vw;
    width: 3vw;
    height: 14.4vw;
    background-color: #6f0101;
    clip-path: polygon(0% 0%, 100% 100%, 0% 100%);
}

header .three_point div .content{
	width: 80%;
	font-size: 2.4vw;
    font-weight: 500;
	letter-spacing: 0.1em;
	text-align: center;
}

header .three_point div.point01 .content{
	padding: 2.4vw 0 0 3vw;
}

header .three_point div.point02 .content{
	padding: 3vw 0 0 3vw;
	letter-spacing: 0.05em;
}

header .three_point div.point03 .content{
	padding: 2.9vw 0 0 3vw;
}

header .three_point div .content .red{
	color: #6f0101;
	font-weight: 600;
}

header .three_point div.point01 .content .red{
	font-size: 2.3vw;
	line-height: 1.5;
}

header .three_point div.point01 .content .red.big{
	font-size: 5.5vw;
}

header .three_point div.point02 .content .red{
	font-size: 4vw;
    line-height: 1.8;
}

header .three_point div.point03 .content .red{
	font-size: 4.2vw;
    line-height: 1.8;
}

@media screen and (min-width:1000px) {

	header{
		height: 650px;
		background-image: url("../img/main_search_cxo_pc_2.jpg");
	}

	header .logo{
		padding: 25px 0 0 30px;
	}

	header .logo a img{
		height: 33.58px;
	}

	header .catch{
		width: 1000px;
        margin: 42px auto 0;
        padding-right: 360px;
	}

	header .catch .catch01{
		font-size: 23px;
	}

	header .catch .catch02{
		margin-top: 25px;
        font-size: 42px;
        letter-spacing: 0.15em;
	}

	header .three_point{
		right: 0;
		bottom: 0;
		position: relative;
        width: 770px;
        margin: 53px auto 0;
	}

	header .three_point div{
		width: 410px;
		height: 60px;
		border-radius: 7px;
	}

	header .three_point div + div{
		margin-top: 25px;
	}

	header .three_point div .number{
		width: 14%;
		border-radius: 7px 0 0 7px;
        font-size: 25px;
        padding: 16px 0 0 16px;
        letter-spacing: 0.1em;
	}

	header .three_point div .number::after{
		top: 0;
		right: -15px;
		width: 15px;
		height: 60px;
	}

	header .three_point div .content{
		width: 86%;
		font-size: 14px;
		letter-spacing: 0.15em;
	}

	header .three_point div.point01 .content{
		padding: 3px 0 0 15px;
	}

	header .three_point div.point02 .content{
		padding: 11px 0 0 15px;
		font-size: 12px;
		letter-spacing: 0.1em;
	}

	header .three_point div.point03 .content{
		padding: 9px 0 0 15px;
	}

	header .three_point div.point01 .content .red{
		font-size: 14px;
	}

	header .three_point div.point01 .content .red.big{
		font-size: 35px;
	}

	header .three_point div.point02 .content .red{
		font-size: 22px;
	}

	header .three_point div.point03 .content .red{
		font-size: 23px;
	}
}

/*----------------------------------------------------------
    greeting
----------------------------------------------------------*/

#greeting div{
	margin: 15vw 7.5vw;
}

#greeting div p{
	font-size: 3.5vw;
    line-height: 2.3;
    letter-spacing: 0.08em;
}

#greeting div p + p{
	margin-top: 1.8em;
}

#greeting div p span{
	font-weight: 900;
}

@media screen and (min-width:1000px) {

	#greeting div{
		width: 700px;
		margin: 100px auto 80px;
	}

	#greeting div p{
		font-size: 16.5px;
        line-height: 2.5;
        letter-spacing: 0.12em;
	}
}

/*----------------------------------------------------------
    achievements
----------------------------------------------------------*/

#achievements{
	margin: 18vw 0 0 0;
	padding: 15vw 0 18vw;
	background-color: #292f33;
}

#achievements h2{
	color: #fff;
}

#achievements .case_study .case{
	background-color: #fff;
	width: 90vw;
	margin: 0 auto;
	padding: 10vw 6vw 10vw 8vw;
}

#achievements .case_study .case + .case{
	margin-top: 7vw;
}

#achievements .case_study .case .title{
	display: flex;
}

#achievements .case_study .case .title .photo{
	width: 28%;
}

#achievements .case_study .case .title .photo img{
	width: 100%;
}

#achievements .case_study .case .title .info{
	width: 72%;
	padding-left: 5vw;
	letter-spacing: 0.05em;
}

#achievements .case_study .case .title .info .info01{
	font-size: 3vw;
	border-bottom: 1px solid #bfbfbf;
	margin: 0.5em 0 1em;
	padding-bottom: 1em;
}

#achievements .case_study .case .title .info .info02{
	font-size: 2.7vw;
	font-weight: 700;
}

#achievements .case_study .case .title .info .info03{
	font-size: 4.7vw;
    font-weight: 700;
    margin-top: 0.3em;
}

#achievements .case_study .case .content{
	margin-top: 5vw;
	font-size: 3.4vw;
    line-height: 2.2;
    letter-spacing: 0.08em;
}

#achievements .graph{
	width: 90vw;
	margin: 7vw auto 0;
	font-size: 3.2vw;
	color: #fff;
	border-collapse: collapse;
}

#achievements .graph th,
#achievements .graph td{
	border-bottom: 1px solid #ccc;
}

#achievements .graph th{
	padding: 1.7em 0;
	font-weight: 700;
	text-align: center;
	background-color: #595959;
	border-top: 1px solid #ccc;
}

#achievements .graph td{
	padding: 1.7em 0 1.7em 0.8em;
}

#achievements .graph td.industry{
	padding: 1.7em 0 1.7em 1.4em;
}

#achievements .graph .era{
	width: 15%;
}

#achievements .graph .industry{
	width: 62%;
}

#achievements .graph .income{
	width: 23%;
}

#achievements .dots,
#achievements .dots:before,
#achievements .dots:after{
    width: 2vw;
    height: 2vw;
    border-radius: 50%;
    background-color: #fff;
}

#achievements .dots{
	margin: 15vw auto 10vw;
	position: relative;
}

#achievements .dots:before{
    content: "";
    position: absolute;
    top: -7vw;
}

#achievements .dots:after{
    content: "";
    position: absolute;
    top: 7vw;
}

@media screen and (min-width:1000px) {
	
	#achievements{
		margin: 100px 0 0 0;
		padding: 100px 0;
	}
	
	#achievements .case_study .case_box{
		width: 950px;
		margin: 0 auto;
		display: flex;
		justify-content: space-between;
	}

	#achievements .case_study .case{
		width: 450px;
		margin: 0;
		padding: 50px 30px 50px 40px;
	}

	#achievements .case_study .case + .case{
		margin: 0;
	}

	#achievements .case_study .case .title .info{
		padding-left: 25px;
	}

	#achievements .case_study .case .title .info .info01{
		font-size: 15px;
	}

	#achievements .case_study .case .title .info .info02{
		font-size: 13px;
	}

	#achievements .case_study .case .title .info .info03{
		margin-top: 0.5em;
		font-size: 20px;
	}

	#achievements .case_study .case .content{
		margin-top: 25px;
		font-size: 16px;
	}
	
	#achievements .graph.pc{
		display: table;
	}

	#achievements .graph{
		width: 950px;
		margin: 50px auto 0;
		font-size: 16px;
	}
	
	#achievements .graph th{
		padding: 1.5em 0;
	}

	#achievements .graph td.era{
		padding: 1.5em 0 1.5em 2.5em;
	}
	
	#achievements .graph td.industry{
		padding: 1.5em 0 1.5em 2.3em;
	}
	
	#achievements .graph td.uiturn{
		padding: 1.5em 0 1.5em 3em;
	}
	
	#achievements .graph td.income{
		padding: 1.5em 0 1.5em 3.9em;
	}

	#achievements .graph .era{
		width: 12%;
	}

	#achievements .graph .industry{
		width: 42%;
	}
	
	#achievements .graph .uiturn{
		width: 26%;
	}

	#achievements .graph .income{
		width: 20%;
	}

	#achievements .dots,
	#achievements .dots:before,
	#achievements .dots:after{
		width: 10px;
		height: 10px;
	}

	#achievements .dots{
		margin: 80px auto 60px;
	}

	#achievements .dots:before{
		top: -35px;
	}

	#achievements .dots:after{
		top: 35px;
	}
}

/*----------------------------------------------------------
    reasons
----------------------------------------------------------*/

#reasons{
    background-color: #e8e5e0;
	padding: 15vw 0 18vw;
}

#reasons .white-box{
	margin: 20vw 4vw 0;
	background-color: #fff;
	position: relative;
}

#reasons .white-box.second{
	margin: 27vw 4vw 0;
}

#reasons .white-box::before{
	content: "";
    position: absolute;
    border-left: 1px solid #a6a6a6;
    height: 16vw;
    top: -8vw;
    left: 50%;
}

#reasons .white-box .number{
	font-size: 14vw;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-align: center;
    padding: 17vw 0 6vw;
}

#reasons .white-box .title{
	font-size: 4vw;
    font-weight: 600;
    line-height: 1.9;
    letter-spacing: 0.05em;
    text-align: center;
    padding: 0 0 14vw;
}

#reasons .white-box .title span{
	position: relative;
}

#reasons .white-box .title span::after{
	content: "";
	border-bottom: 0.7vw solid #770000;
	border-image: linear-gradient(to right, #770000, transparent) 1;
	position: absolute;
	left: 7vw;
    bottom: -4.3vw;
    width: 100%;
}

#reasons .lead{
	font-size: 3.4vw;
    line-height: 2;
    letter-spacing: 0.05em;
    text-align: center;
    margin: 0 0 12vw;
}

#reasons .lead p + p{
	margin-top: 5vw;
}

#reasons .brackets_title{
	font-size: 3.4vw;
    font-weight: 500;
	letter-spacing: 0.05em;
    text-align: center;
    margin-bottom: 9vw;
}

#reasons .img{
	width: 65vw;
    margin: 0 auto;
    padding-bottom: 12vw;
    text-align: center;
}

#reasons .img.second{
	width: 77vw;
}

#reasons .img img{
	width: 100%;
}

#reasons .job_box{
	margin: 12vw 0 0;
}

#reasons .job_box .job_flex{
	display: flex;
    overflow-x: scroll;
	margin-bottom: 15vw;
}

#reasons .job_box .job_flex.pc{
	display: none;
}

#reasons .job_box .job_flex .job{
	flex-shrink: 0;
	background-color: #fff;
	border-radius: 2vw;
	width: 80vw;
	margin: 0 0 0 4vw;
	font-weight: 500;
	letter-spacing: 0.06em;
}

#reasons .job_box .job_flex .job:last-child{
	margin: 0 4vw 0 4vw;
}

#reasons .job_box .job_flex .job .title{
	background-color: #292f33;
	border-radius: 2vw 2vw 0 0;
	height: 21vw;
	text-align: center;
}

#reasons .job_box .job_flex .job .title p{
	padding-top: 4.7vw;
	font-size: 4.7vw;
    line-height: 1.2;
    color: #fff;
}

#reasons .job_box .job_flex .job .title p span{
	font-size: 2.6vw;
}

#reasons .job_box .job_flex .job .content{
	padding: 6.5vw 0 6.5vw 6.5vw;
}

#reasons .job_box .job_flex .job .content .income{
	font-size: 3.2vw;
	margin: 0 6.5vw 1.5em 0;
    padding: 0 0 1.5em 0;
    border-bottom: 1px solid #292f33;
}

#reasons .job_box .job_flex .job .content .income span{
	font-size: 7.5vw;
}

#reasons .job_box .job_flex .job .content .details_title{
	font-size: 3vw;
	margin-bottom: 1em;
}

#reasons .job_box .job_flex .job .content .details{
	font-size: 3.1vw;
    line-height: 1.4;
	padding-right: 5vw;
}

#reasons .job_box .job_flex .job .content .details p + p{
	margin-top: 0.3em;
}

#reasons .job_box .job_flex .job .content .details .star{
	display: inline-block;
    vertical-align: top;
    width: 1.2em;
}

#reasons .job_box .job_flex .job .content .details .star + span{
	display: inline-block;
    width: calc(100% - 1.2em);
}

#reasons .column_box{
	margin: 15vw auto 0;
}

#reasons .column_box .column_flex{
	margin: 0 5vw;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

#reasons .column_box .column_flex .column{
	width: 47.5%;
	margin-bottom: 12vw;
}

#reasons .column_box .column_flex .column.sp_last{
	margin-bottom: 0;
}

#reasons .column_box .column_flex .column a{
	display: block;
	color: #000;
}

#reasons .column_box .column_flex .column img{
	width: 100%;
}

#reasons .column_box .column_flex .column .page-info{
	margin: 4vw 0;
}

#reasons .column_box .column_flex .column .page-info .info{
	font-size: 3vw;
	padding-left: 13vw;
	position: relative;
	display: none;
}

#reasons .column_box .column_flex .column .page-info .info::before{
	content: "";
	position: absolute;
    top: 49%;
    left: 0;
    display: block;
	background-color: #000;
    width: 10vw;
    height: 1px;
}

#reasons .column_box .column_flex .column .page-info .company{
	font-size: 4.5vw;
    font-weight: 500;
	letter-spacing: 0.05em;
    margin: 3.5vw 0 0;
	line-height: 1.25;
}

#reasons .column_box .column_flex .column .page-info .position{
	font-size: 3vw;
	letter-spacing: 0.05em;
    margin: 3.5vw 0 0;
}

#reasons .column_box .column_flex .column .page-info .name{
	font-size: 4vw;
	letter-spacing: 0.05em;
    margin: 1.5vw 0 0;
}

#reasons .column_box .column_flex .column .page-info .name span{
	font-size: 3.5vw;
    padding-left: 0.2em;
}

#reasons .column_box .column_flex .column .page-info .name span.no-padding{
	font-size: 2.5vw;
	padding-left: 0;
}

#reasons .column_box .column_flex .column .btn{
	display: block;
	position: relative;
    height: 8vw;
    line-height: 7vw;
    padding-left: 22%;
    width: 100%;
    background-color: #262626;
    font-size: 3vw;
    color: #fff;
	bottom: 0;
	left: 0;
}

#reasons .column_box .column_flex .column .btn::after{
	content: '';
    position: absolute;
    top: 48%;
    right: 10%;
    display: inline-block;
    background-image: url(../img/icon_blank_4.png);
    background-size: contain;
    background-repeat: no-repeat;
    vertical-align: middle;
    width: 3vw;
    height: 3vw;
    transform: translateY(-50%);
}

#reasons .company_box{
	margin: 15vw 0;
}

#reasons .company_box .outline{
	width: 90vw;
    margin: 0 auto;
    padding: 10vw 6vw 10vw 8vw;
    background-color: #fff;
}

#reasons .company_box .outline + .outline{
	margin-top: 6vw;
}

#reasons .company_box .outline .title{
	font-size: 3.2vw;
	font-weight: 700;
    letter-spacing: 0.05em;
	margin-bottom: 9vw;
}

#reasons .company_box .outline .lineup .list + .list{
	margin-top: 7vw;
}

#reasons .company_box .outline .lineup .list img{
	height: 3vw;
}

#reasons .company_box .outline .lineup .list img.height_3-4{
	height: 3.5vw;
}

#reasons .company_box .outline .lineup .list img.height_4{
	height: 4vw;
}

#reasons .company_box .outline .lineup .list img.height_4-5{
	height: 4.5vw;
}

#reasons .company_box .outline .lineup .list img.height_5{
	height: 5vw;
}

#reasons .company_box .outline .lineup .list img.height_5-6{
	height: 5.5vw;
}

#reasons .company_box .outline .lineup .list img.height_6{
	height: 6vw;
}

#reasons .company_box .outline .lineup .list img.height_6-7{
	height: 6.5vw;
}

#reasons .company_box .outline .lineup .list img.height_7{
	height: 7vw;
}

#reasons .company_box .outline .lineup .list p{
	font-size: 3.2vw;
	font-weight: 500;
    line-height: 2;
    letter-spacing: 0.05em;
	margin-top: 2vw;
}

@media screen and (min-width:1000px) {
	
	#reasons{
		background-color: transparent;
		padding: 100px 0 0;
	}

	#reasons .white-box{
		margin: 90px auto 0;
		background-color: transparent;
	}

	#reasons .white-box.second{
		margin: 130px auto 0;
	}

	#reasons .white-box::before{
		height: 80px;
		top: -40px;
	}

	#reasons .white-box .number{
		font-size: 70px;
		font-weight: 500;
		letter-spacing: 0.03em;
		padding: 65px 0 35px;
	}

	#reasons .white-box .title{
		font-size: 23px;
		padding: 0 0 65px;
	}

	#reasons .white-box .title span::after{
		border-bottom: 3px solid #770000;
		bottom: -23px;
		left: 38px;
	}

	#reasons .lead{
		font-size: 16px;
		margin: 0 0 70px;
	}

	#reasons .lead p + p{
		margin-top: 20px;
	}

	#reasons .brackets_title{
		font-size: 17px;
		margin-bottom: 50px;
	}

	#reasons .img{
		width: 360px;
        padding-bottom: 0;
        margin-bottom: 70px;
	}

	#reasons .img.second{
		width: 450px;
	}

	#reasons .job_box{
		margin: 60px 0 0;
	}

	#reasons .job_box .job_flex{
		overflow-x: auto;
		margin-bottom: 60px;
	}
	
	#reasons .job_box .job_flex.sp{
		display: none;
	}
	
	#reasons .job_box .job_flex.pc.slick-initialized{
		display: block;
		width: 1130px;
        margin: 0 auto 80px;
		padding: 0 60px
	}
	
	#reasons .job_box .job_flex.pc .slick-prev,
	#reasons .job_box .job_flex.pc .slick-next{
		position: absolute;
		display: block;
		height: 30px;
		width: 30px;
		line-height: 0px;
		font-size: 0px;
		cursor: pointer;
		background: transparent;
		top: 48%;
		padding: 0;
		border: none;
		outline: none;
	}
	#reasons .job_box .job_flex.pc .slick-prev{left: 10px;}
	#reasons .job_box .job_flex.pc .slick-next{right: 10px;}

	#reasons .job_box .job_flex.pc .slick-prev::before,
	#reasons .job_box .job_flex.pc .slick-next::before{
		content: "";
		position: absolute;
		display: block;
		height: 20px;
		width: 20px;
		border-top: 2px solid #999;
		border-right: 2px solid #999;
	}
	#reasons .job_box .job_flex.pc .slick-prev::before{right: 0; bottom: 4px; transform: rotate(-135deg);}
	#reasons .job_box .job_flex.pc .slick-next::before{left: 0; bottom: 4px; transform: rotate(45deg);}

	#reasons .job_box .job_flex .job{
		border-radius: 5px;
        width: 320px;
		height: 340px;
        margin: 0 10px;
        border: 1px solid #bfbfbf;
	}

	#reasons .job_box .job_flex .job:last-child{
		margin: 0 10px;
	}

	#reasons .job_box .job_flex .job .title{
		border-radius: 5px 5px 0 0;
		height: 80px;
	}

	#reasons .job_box .job_flex .job .title p{
		padding-top: 18px;
        font-size: 16px;
        line-height: 1.3;
	}

	#reasons .job_box .job_flex .job .title p span{
		font-size: 12px;
        font-weight: 400;
	}

	#reasons .job_box .job_flex .job .content{
		padding: 30px 0 30px 30px;
	}

	#reasons .job_box .job_flex .job .content .income{
		font-size: 14px;
		margin: 0 30px 1.5em 0;
		padding: 0 0 1.5em 0;
	}

	#reasons .job_box .job_flex .job .content .income span{
		font-size: 25px;
	}

	#reasons .job_box .job_flex .job .content .details_title{
		font-size: 12px;
	}

	#reasons .job_box .job_flex .job .content .details{
		font-size: 12px;
		padding-right: 25px;
	}
	
	#reasons .column_box{
		width: 1000px;
		margin: 60px auto 30px;
	}

	#reasons .column_box .column_flex{
		margin: 0 auto;
		width: 100%;
	}

	#reasons .column_box .column_flex .column{
		width: 30%;
		margin-bottom: 50px;
	}

	#reasons .column_box .column_flex .column.sp_last{
		margin-bottom: 50px;
	}

	#reasons .column_box .column_flex .column .page-info{
		margin: 20px 0;
	}

	#reasons .column_box .column_flex .column .page-info .info{
		font-size: 15px;
		padding-left: 60px;
	}

	#reasons .column_box .column_flex .column .page-info .info::before{
		width: 50px;
	}

	#reasons .column_box .column_flex .column .page-info .company{
		font-size: 21px;
		margin: 15px 0 0;
	}

	#reasons .column_box .column_flex .column .page-info .position{
		font-size: 14px;
		margin: 15px 0 0;
	}

	#reasons .column_box .column_flex .column .page-info .name{
		font-size: 18px;
		margin: 10px 0 0;
	}

	#reasons .column_box .column_flex .column .page-info .name span{
		font-size: 16px;
	}
	
	#reasons .column_box .column_flex .column .page-info .name span{
		font-size: 16px;
	}
	
	#reasons .column_box .column_flex .column .page-info .name span.no-padding {
        font-size: 16px;
        padding-left: 0.2em;
    }

	#reasons .column_box .column_flex .column .btn{
		height: 40px;
		line-height: 38px;
		padding-left: 32%;
		font-size: 13px;
	}

	#reasons .column_box .column_flex .column .btn::after{
		right: 25%;
		width: 13px;
		height: 13px;
	}
	
	#reasons .company_box{
		background-color: #e8e5e0;
		margin: 30px 0 80px;
		padding: 80px 0;
	}

	#reasons .company_box .outline{
		width: 800px;
		padding: 80px 70px;
	}

	#reasons .company_box .outline + .outline{
		margin-top: 30px;
	}

	#reasons .company_box .outline .title{
		font-size: 16px;
		margin-bottom: 60px;
	}

	#reasons .company_box .outline .lineup .list + .list{
		margin-top: 50px;
	}

	#reasons .company_box .outline .lineup .list img{
		height: 15px;
	}

	#reasons .company_box .outline .lineup .list img.height_3-4{
		height: 17.5px;
	}

	#reasons .company_box .outline .lineup .list img.height_4{
		height: 20px;
	}

	#reasons .company_box .outline .lineup .list img.height_4-5{
		height: 22.5px;
	}

	#reasons .company_box .outline .lineup .list img.height_5{
		height: 25px;
	}

	#reasons .company_box .outline .lineup .list img.height_5-6{
		height: 27.5px;
	}

	#reasons .company_box .outline .lineup .list img.height_6{
		height: 30px;
	}

	#reasons .company_box .outline .lineup .list img.height_6-7{
		height: 32.5px;
	}

	#reasons .company_box .outline .lineup .list img.height_7{
		height: 35px;
	}

	#reasons .company_box .outline .lineup .list p{
		font-size: 15px;
		margin-top: 10px;
	}
}

/*----------------------------------------------------------
    consul
----------------------------------------------------------*/

#consul{
	padding: 15vw 0 0;
}

#consul .brackets_title {
    font-size: 3.4vw;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-align: center;
    margin: 12vw 0 10vw;
}

#consul .lead p{
	font-size: 3.3vw;
    line-height: 2;
    letter-spacing: 0.05em;
    margin: 0 8vw;
}

#consul .lead p + p{
	margin-top: 5vw;
}

#consul .slider_consul_2{
	display: none;
	padding: 10vw 6vw 0;
}

#consul .slider_consul_2.slick-initialized{
	display: block;
}

#consul .slider_consul_2 .consultant{
    margin: 0 2vw;
}

#consul .slider_consul_2 .consultant img{
	width: 100%;
}

#consul .slider_consul_2 .consultant .ex{
	margin: 7vw auto;
    padding: 0 1vw 0 3.5vw;
    font-size: 3.3vw;
    letter-spacing: 0.05em;
    line-height: 2;
}

#consul .slider_consul_2 .consultant .btn{
	display: block;
	position: relative;
    height: 11vw;
    line-height: 10vw;
    width: 93%;
	margin: 0 auto;
    background-color: #262626;
    font-size: 3.6vw;
	text-align: center;
    color: #fff;
}

#consul .slider_consul_2 .consultant .btn::after{
	content: '';
    position: absolute;
    top: 47%;
    right: 18%;
    display: inline-block;
    background-image: url(../img/icon_blank_4.png);
    background-size: contain;
    background-repeat: no-repeat;
    vertical-align: middle;
    width: 3vw;
    height: 3vw;
    transform: translateY(-50%);
}

#consul .slider_consul_2 .slick-prev,
#consul .slider_consul_2 .slick-next{
	position: absolute;
    display: block;
    height: 7vw;
    width: 7vw;
    line-height: 0px;
    font-size: 0px;
    cursor: pointer;
    background: transparent;
    top: 40%;
    padding: 0;
    border: none;
    outline: none;
}
#consul .slider_consul_2 .slick-prev{left: 0;}
#consul .slider_consul_2 .slick-next{right: 0;}

#consul .slider_consul_2 .slick-prev::before,
#consul .slider_consul_2 .slick-next::before{
	content: "";
	position: absolute;
    display: block;
    height: 3.5vw;
    width: 3.5vw;
	border-top: 1.8px solid #999;
    border-right: 1.8px solid #999;
}
#consul .slider_consul_2 .slick-prev::before{right: 0; bottom: 1.2vw; transform: rotate(-135deg);}
#consul .slider_consul_2 .slick-next::before{left: 0; bottom: 1.2vw; transform: rotate(45deg);}

#consul .award_box .award{
	margin: 10vw 7vw 0;
	padding: 9vw 0 7vw;
	border: 1px solid #d9d9d9;
	border-radius: 10px;
	position: relative;
}

#consul .award_box .award .award_title{
	position: absolute;
	top: -2.5vw;
	width: 84vw;
	text-align: center;
}

#consul .award_box .award .award_title span{
	padding: 0 5vw;
	font-size: 3.8vw;
	font-weight: 500;
	color: #b81d23;
	background-color: #fff;
}

#consul .award_box .award .award_lead{
	font-size: 3.3vw;
	line-height: 2;
	margin: 0 0 5vw;
	padding: 0 5vw;
}

#consul .award_box .award .award_content{
	font-size: 3.3vw;
	font-weight: 500;
	line-height: 2;
	padding: 0 0 0 4vw;
}

@media screen and (min-width:1000px) {
	
	#consul{
		padding: 100px 0 0;
	}

	#consul .brackets_title {
		font-size: 17px;
		margin: 50px 0;
	}
	
	#consul .lead{
        margin: -20px auto 0;
		text-align: center;
	}

	#consul .lead p{
		font-size: 15px;
        margin: 0;
		text-align: center;
	}

	#consul .lead p + p{
		margin-top: 20px;
	}
	
	#consul .slider_consul_2{
		width: 1050px;
		margin: 60px auto 70px;
		padding: 0 50px;
	}

	#consul .slider_consul_2 .consultant{
		padding: 0;
		margin: 0 30px;
	}

	#consul .slider_consul_2 .consultant .ex{
		margin: 25px auto;
		padding: 0;
		font-size: 14.5px;
		line-height: 2.1;
	}

	#consul .slider_consul_2 .consultant .btn{
		height: 48px;
		line-height: 43px;
		width: 100%;
		font-size: 16px;
	}

	#consul .slider_consul_2 .consultant .btn::after{
		top: 47%;
		right: 17%;
		width: 15px;
		height: 15px;
	}
	
	#consul .slider_consul_2 .slick-prev,
	#consul .slider_consul_2 .slick-next{
		height: 30px;
		width: 30px;
	}
	#consul .slider_consul_2 .slick-prev{left: 10px;}
	#consul .slider_consul_2 .slick-next{right: 10px;}

	#consul .slider_consul_2 .slick-prev::before,
	#consul .slider_consul_2 .slick-next::before{
		height: 20px;
		width: 20px;
		border-top: 2px solid #999;
    	border-right: 2px solid #999;
	}
	#consul .slider_consul_2 .slick-prev::before{bottom: 4px;}
	#consul .slider_consul_2 .slick-next::before{bottom: 4px;}
	
	#consul .award_box{
		display: flex;
		justify-content: space-between;
		width: 790px;
		margin: 0 auto;
		padding-bottom: 0;
	}

	#consul .award_box .award{
		width: 48%;
		margin: 25px 0 0;
		padding: 40px 0;
	}

	#consul .award_box .award .award_title{
		top: -12px;
		width: 378px;
	}

	#consul .award_box .award .award_title span{
		padding: 0 25px;
		font-size: 17px;
	}

	#consul .award_box .award .award_lead{
		font-size: 15px;
		margin: 0 0 30px;
		padding: 0 35px;
	}

	#consul .award_box .award .award_content{
		font-size: 15px;
		padding: 0 0 0 30px;
	}
}

/*----------------------------------------------------------
    step
----------------------------------------------------------*/

#step{
    padding: 18vw 0 0;
}

#step .outline{
	padding: 2vw 6vw 0 7vw;
	position: relative;
}

#step .outline::after{
	content: "";
    height: 85%;
	border-right: 1px solid #6f0101;
	position: absolute;
    top: 7vw;
    left: 10.4vw;
}

#step .outline .box{
	position: relative;
	z-index: 1;
}

#step .outline .box + .box{
	margin: 8vw 0 0;
}

#step .outline .box .serif{
	position: absolute;
	top: -1.2vw;
    left: 0;
    width: 7vw;
    height: 7vw;
	background-color: #6f0101;
	border-radius: 50%;
}

#step .outline .box .serif::after{
	content: "1";
	position: absolute;
	top: 1.3vw;
    left: 2.6vw;
	font-size: 3.6vw;
	font-weight: 600;
	letter-spacing: 0.05em;
	color: #fff;
}

#step .outline .box .serif.number02::after{content: "2"; left: 2.4vw;}
#step .outline .box .serif.number03::after{content: "3"; left: 2.4vw;}
#step .outline .box .serif.number04::after{content: "4"; left: 2.3vw;}
#step .outline .box .serif.number05::after{content: "5"; left: 2.4vw;}

#step .outline .box .title{
	font-size: 3.8vw;
	font-weight: 600;
	letter-spacing: 0.05em;
	margin: 0 0 3.5vw 10.2vw;
}

#step .outline .box .content{
	font-size: 3.3vw;
	font-weight: 500;
	line-height: 2;
	letter-spacing: 0.05em;
	margin: 0 0 0 10.5vw;
}

#step .outline .box .sub{
	font-size: 3.2vw;
	font-weight: 500;
	line-height: 1.8;
	letter-spacing: 0.05em;
	margin: 2vw 0 0 10.5vw;
}

#step .outline .box .sub .star{
	display: inline-block;
    vertical-align: top;
    width: 1.2em;
}

#step .outline .box .sub .star + span{
	display: inline-block;
    width: calc(100% - 1.2em);
}

#step .alart{
    margin: 10vw 9vw 0;
}

#step .alart .alart_case{
	font-size: 3.1vw;
    letter-spacing: 0.05em;
    line-height: 2;
}

#step .alart .alart_case + .alart_case{
	margin-top: 1em;
}

#step .alart .alart_case .star{
	display: inline-block;
    vertical-align: top;
    width: 1.2em;
}

#step .alart .alart_case .star + span{
	display: inline-block;
    width: calc(100% - 1.2em);
}

@media screen and (min-width:1000px) {
    
	#step{
		padding: 100px 0 0;
	}

	#step .outline{
		padding: 0 0 0 20px;
        width: 780px;
        margin: 0 auto;
	}

	#step .outline::after{
		top: 25px;
        left: 36px;
	}

	#step .outline .box + .box{
		margin: 40px 0 0;
	}
	
	#step .outline .box .serif{
		position: absolute;
		top: -5px;
		width: 32px;
		height: 32px;
	}

	#step .outline .box .serif::after{
		top: 6.5px;
		left: 12px;
		font-size: 17px;
	}

	#step .outline .box .serif.number02::after{left: 11px;}
	#step .outline .box .serif.number03::after{left: 11px;}
	#step .outline .box .serif.number04::after{left: 11px;}
	#step .outline .box .serif.number05::after{left: 11px;}

	#step .outline .box .title{
		font-size: 17px;
		margin: 0 0 15px 65px;
	}

	#step .outline .box .content{
		font-size: 15px;
        font-weight: 400;
		margin: 0 0 0 67px;
	}

	#step .outline .box .sub{
		font-size: 14px;
		font-weight: 400;
		margin: 10px 0 0 68px;
	}

	#step .alart{
		width: 800px;
        margin: 50px auto 0;
        padding-left: 97px;
	}

	#step .alart .alart_case{
		font-size: 13px;
	}
}

/*----------------------------------------------------------
    gains
----------------------------------------------------------*/

#gains{
	padding: 18vw 0 15vw;
}

#gains .gain{
	margin: 0 5vw;
	box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.5);
}

#gains .gain + .gain{
	margin-top: 8vw;
}

#gains .gain .number{
	background-color: #292f33;
    height: 19vw;
    font-size: 8vw;
    font-weight: 500;
    letter-spacing: 0.08em;
    color: #fff;
    text-align: center;
    padding-top: 5.1vw;
}

#gains .gain .content{
	padding: 10vw;
}

#gains .gain .content .title{
	font-size: 4.2vw;
    font-weight: 700;
    letter-spacing: 0.08em;
    line-height: 2;
    padding-bottom: 7vw;
    margin-bottom: 7vw;
    border-bottom: 1px solid #7f7f7f;
}

#gains .gain .content .text p{
	font-size: 3.4vw;
    letter-spacing: 0.08em;
	line-height: 2;
}

#gains .gain .content .text p + p{
	margin-top: 1.7em;
}

#gains .gain .content .text p span{
	font-weight: 900;
}

@media screen and (min-width:1000px) {
    
	#gains{
		padding: 100px 0;
	}

	#gains .gain{
		width: 900px;
		margin: 0 auto;
		position: relative;
	}

	#gains .gain + .gain{
		margin-top: 90px;
	}

	#gains .gain .number{
		position: absolute;
        top: -34px;
        right: 28px;
        background-color: transparent;
        height: auto;
        font-size: 85px;
        letter-spacing: 0.04em;
        color: #a6a6a6;
        padding-top: 0;
	}

	#gains .gain .content{
		padding: 50px;
	}

	#gains .gain .content .title{
		font-size: 20px;
		padding-bottom: 30px;
		margin-bottom: 30px;
	}

	#gains .gain .content .text p{
		font-size: 15px;
	}

	#gains .gain .content .text p + p{
		margin-top: 1.7em;
	}
}

/*----------------------------------------------------------
    company
----------------------------------------------------------*/

#company{
	margin-top: 18vw;
	padding: 0 0 20vw;
	background-color: #25495d;
	color: #fff;
}

#company h2{
	padding: 15vw 0 0;
	margin-bottom: 11vw;
}

#company .lead{
    font-size: 3.5vw;
    line-height: 2;
    letter-spacing: 0.1em;
    text-align: center;
    margin: 12vw 0;
}

#company .title{
	font-size: 3.8vw;
	font-weight: 500;
    letter-spacing: 0.1em;
    text-align: center;
	margin: 0 0 8vw;
}

#company .about_list{
	margin: 10vw 10vw 0;
}

#company .about_list .about_title{
	font-size: 3.5vw;
	font-weight: 500;
	letter-spacing: 0.05em;
	padding-bottom: 4vw;
	margin-bottom: 3vw;
	border-bottom: 1px solid #fff;
}

#company .about_list .about_inner{
	font-size: 3.5vw;
	letter-spacing: 0.05em;
	line-height: 1.7;
}

#company .about_list .about_inner + .about_inner{
	margin: 5vw 0 0;
}

#company .about_list .about_inner a{
	color: #fff;
}

#company .about_list .about_inner a:after{
    content: '';
    display: inline-block;
    margin-left: 2vw;
    background-image: url("../img/icon_blank_4.png");
    background-size: contain;
    background-repeat: no-repeat;
    vertical-align: middle;
    width: 4vw;
    height: 4.5vw;
}

@media screen and (min-width:1000px) {
	
	#company{
		margin-top: 100px;
		padding: 0 0 100px;
	}

    #company h2{
        padding: 100px 0 60px;
        margin-bottom: 0;
    }

    #company h2:after{
        width: 750px;
    }
	
	#company .lead{
		font-size: 16px;
		margin: 0 0 60px;
	}

	#company .title{
		font-size: 18px;
		margin: 0 0 60px;
	}

	#company .about_list{
		width: 750px;
		margin: 50px auto 0;
	}

	#company .about_list .about_title{
		font-size: 16px;
		padding-bottom: 15px;
		margin-bottom: 10px;
	}

	#company .about_list .about_inner{
		font-size: 16px;
	}

	#company .about_list .about_inner + .about_inner{
		margin: 20px 0 0;
	}
	
	#company .about_list .about_inner a:after{
		margin-left: 10px;
        width: 17px;
        height: 20px;
	}
}

/*----------------------------------------------------------
    footer(corporate)
----------------------------------------------------------*/

footer.corporate{
    background: linear-gradient(180deg, white 0%, #e9e9e9 100%);
	padding: 9vw 10vw 16vw;
}

footer.corporate .footer__nav nav{
	display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

footer.corporate .footer__nav nav ul{
	width: 50%;
	display: flex;
	flex-direction: column;
	margin: 5vw 0 0;
}

footer.corporate .footer__nav nav ul li{
	color: #666;
    margin: 2vw 0;
    font-size: 3.2vw;
	letter-spacing: 0.1em;
}

footer.corporate .footer__nav nav ul li a{
	color: #666;
	padding: 0;
}

footer.corporate .sns_icon{
	display: flex;
    justify-content: center;
	align-items: center;
	margin: 12vw 0 0;
}

footer.corporate .sns_icon a img{
	height: 8vw;
}

footer.corporate .sns_icon a img.sns_x{
	height: 7.5vw;
}

footer.corporate .sns_icon a + a{
	margin-left: 8vw;
}

footer.corporate .footer__btm{
	display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    margin: 12vw 0 0;
}

footer.corporate .footer__btm .utility a{
	color: #808080;
	font-size: 3vw;
}

footer.corporate .footer__btm .copyright{
	font-size: 3vw;
	letter-spacing: 0.1em;
    margin: 0 0 0 2em;
	color: #808080;
}

@media screen and (min-width:1000px) {
	
	footer.corporate{
		padding: 70px 0 80px;
	}
	
	footer.corporate .footer__nav nav{
		flex-wrap: nowrap;
		justify-content: center;
	}

	footer.corporate .footer__nav nav ul{
		width: 270px;
        padding-left: 90px;
		margin: 0;
	}

	footer.corporate .footer__nav nav ul li{
		margin: 10px 0;
		font-size: 14px;
	}

	footer.corporate .sns_icon{
		margin: 60px 0 0;
	}

	footer.corporate .sns_icon a img{
		height: 35px;
	}

	footer.corporate .sns_icon a img.sns_x{
		height: 33px;
	}

	footer.corporate .sns_icon a + a{
		margin-left: 40px;
	}

	footer.corporate .footer__btm{
		margin: 60px 0 0;
	}

	footer.corporate .footer__btm .utility a{
		font-size: 12px;
	}

	footer.corporate .footer__btm .copyright{
		font-size: 12px;
		margin: 0 0 0 3em;
	}
}