@charset "UTF-8";
/* header、footer など、ベースとなる部分のCSSを書く*/
/*メディアクエリ（サンプル最後に取る）*/
/*sp（なくても良い）*/
@media screen and (max-width: 480px) {}
/*tablet 768px以下*/
@media screen and (max-width: 767px) {}
/*pc 1000px以下*/
@media screen and (max-width: 1000px) {}
body{
  overflow-x: hidden;
}
img {
  width: 100%;
  height: auto;
}
a {
  color: #000;
  text-decoration: none;
}
a:hover {
  color: #000;
}
/* 文字基準 */
html, h1, h2, h3, h4, h5, h6, p ,span {
  font-family: 'Noto Sans JP', sans-serif;
  line-height: 1.6;
}
p,span{
  font-size: 1.4rem;
}
p{
  margin-bottom: 20px;
}
/* 文字基準 */
/*header*/
header {
  display: block;
}
/*breadcrumb*/
.breadcrumb{
  display: flex;
  margin: 15px 0 65px;
    flex-wrap: wrap;
}
.breadcrumb li + li::before{
  content: '>';
  margin: 0 10px;
}
/*contents*/
.contents {
  position: relative;
  width: auto;
  margin-top: 100px;
}
.contents .mar-style {
  position: relative;
  width: calc(100% - 10%);
  margin: 0 auto 40px;
}
.contents .wide-style {
  width: 100%;
  margin: 40px auto;
}
.swiper-container{
	position: relative;
	width: 100%;
	margin: 0px auto;
	overflow: hidden;
}
.swiper-slide{
	width: 100%;
	height: 100%;
	background-color: #000;
}

.swiper-slide img{
	opacity: 0.7 !important;
}
.swiper-slide.swiper-slide-prev img,
.swiper-slide.swiper-slide-next img{
	opacity: 0.7 !important;
}
.swiper-slide.swiper-slide-active img{
	opacity: 1 !important;
}
.contents .main_img {
  width: 100%;
  position: relative;
}

.swiper-container .swiper-button-prev,
.swiper-container .swiper-button-next{
	width: 40px;
	height: 40px;
	color: #fff;
	background-color: #272727;
}
.swiper-container .swiper-button-prev{
	left: 12%;
}
.swiper-container .swiper-button-next{
    right: 12%;
}
.swiper-button-next::after, .swiper-button-prev::after{
	font-size: 2em;
}

.main_pc{
	display: block;
}
.main_sp {
	display: none;
}

.main_link{
	position: absolute;
	right: 0;
	bottom: 0;
	z-index: 2;
	display: flex;
	align-items: center;
	background-color: #000;
	padding: 10px 20px;
	margin-bottom: 0px;
}
.main_link p{
	color: #fff;
	margin-bottom: 0px;
}
.main_link::after{
  content: '';
  background-image: url("../images/arrow_top_slider.svg");
  background-size: cover;
  display: inline-block;
  width: 30px;
  height: 30px;
  margin-left: 15px;
}


/*footer*/
footer {
  width: 100%;
  padding: 10px 0px 0px;
  text-align: center;
  font-size: 0.813em;
}
footer p {
  color: #000;
  padding: 32px 0 52px;
	margin-bottom: 0px;
	background-color: #fff;
}
.footer_inner {
  background-color: #000;
  min-height: 128px;
  padding: 25px 0;
}
.footer_inner ul {
  display: flex;
  max-width: 896px;
  flex-wrap: wrap;
  margin: auto;
  justify-content: flex-start;
}
.footer_inner li {
  width: 20%;
  padding: 2%
}
.footer_inner a {
  color: #fff;
  text-align: left;
  display: block;
  height: 25px;
  font-size: 1.2rem;
  border-bottom: 1px solid #fff;
  position: relative;
}
.footer_inner a:hover {
  border-bottom: 1px solid rgba(255, 255, 255, 0);
  transition: .5s ease-in-out;
}
.footer_inner a::before {
  content: '';
  background-image: url(../images/arrow_w.svg);
  background-size: cover;
  position: absolute;
  top: 3px;
  right: 0;
  width: 8px;
  height: 7px;
}
.footer_inner a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left:  0;
  width: 0;
  height: 1px;
  background-color: #ffffff00;
  transition: .5s ease-in-out;
}
.footer_inner a:hover::after {
  height: 2px;
  width: 100%;
  background-color: #fff;
}
/*nav*/
.inner {
  max-width: 980px;
  margin: 0 auto;
}
.inner:after {
  content: "";
  clear: both;
  display: block;
}
/* header */
#top-head {
  position: fixed;
  top: -100px;
  z-index: 999;
  width: 100%;
  margin: 100px auto 0;
  padding: 20px 0 0;
  line-height: 1;
  height: 100px;
  background-color: #fff;
}
#top-head a, #top-head {
  color: #000;
  text-decoration: none;
}
#top-head .inner {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#top-head .logo {
  width: 180px;
}
#global-nav {
  width: calc(100% - 200px);
  padding-left: 5%;
}
#global-nav ul {
  position: relative;
  display: flex;
  justify-content: space-between;
  font-size: 0.875em;
  list-style: none;
  flex-wrap: wrap;
}
#global-nav ul li.menu_list {
  padding-bottom: 50px;
  margin-bottom: -50px;
}
#global-nav ul li span, #global-nav ul li a {
  font-size: 1.5rem;
}
/* Fixed */
#top-head.fixed {
  position: fixed;
  top: 0;
  padding-top: 10px;
  margin-top: 0;
  height: 55px;
  background: #000;
  background: rgba(255, 255, 255, .7);
  transition: top 0.65s ease-in;
  -webkit-transition: top 0.65s ease-in;
  -moz-transition: top 0.65s ease-in;
}
#top-head.fixed .logo {
  width: 180px;
}
#top-head.fixed #global-nav ul li a {
  color: #333;
}
/* Toggle Button */
#nav-toggle {
  display: none;
  position: absolute;
  z-index: 101;
  right: 20px;
  top: 44px;
  width: 34px;
  height: 36px;
  cursor: pointer;
}
.fixed #nav-toggle {
  top: 34px;
}
.fixed.open #nav-toggle {
  top: 44px;
}
#nav-toggle div {
  position: relative;
}
#nav-toggle span {
  display: block;
  position: absolute;
  left: 0;
  height: 4px;
  width: 100%;
  background: #000;
  -webkit-transition: .35s ease-in-out;
  -moz-transition: .35s ease-in-out;
  transition: .35s ease-in-out;
}
.open #nav-toggle span {
  background: #fff;
}
#nav-toggle span:nth-child(1) {
  top: 0;
}
#nav-toggle span:nth-child(2) {
  top: 11px;
}
#nav-toggle span:nth-child(3) {
  top: 22px;
}
.mv_sp{
	display: none;
}
@media screen and (max-width: 834px) {
  #top-head, .inner {
    width: 100%;
    padding: 0;
  }
  #top-head {
    top: 0;
    position: fixed;
    margin-top: 0;
  }
  /* Fixed reset */
  #top-head.fixed {
    padding-top: 0;
    background: transparent;
  }
  #mobile-head {
    position: relative;
    z-index: 999;
    width: 100%;
    height: 56px;
  }
  .open #mobile-head {
    position: relative;
    z-index: 999;
    width: 100%;
    height: 140px;
    background-color: #335BA1;
  }
  #top-head.fixed .logo, #top-head .logo {
    margin: auto;
    position: absolute;
    left: 0;
    right: 0;
    top: 40px;
    color: #fff;
    font-size: 1.625em;
    width: 180px;
  }
  #global-nav {
    position: absolute;
    /* 開いてないときは画面外に配置 */
    top: -100vh;
    width: 100%;
    height: 100vh;
    padding: 10px 0;
    background-color: #335BA1;
    text-align: center;
    -webkit-transition: .5s ease-in-out;
    -moz-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
    overflow-y: scroll;
  }
  #global-nav ul {
    position: static;
    right: 0;
    bottom: 0;
    font-size: 0.875em;
    list-style: none;
  }
  #top-head #global-nav ul li.menu_list > a, #top-head.fixed #global-nav ul li.menu_list > a {
    display: block;
    width: 100%;
    margin: 0px auto 15px;
    padding: 12px 10px;
    font-size: 1.6rem;
    letter-spacing: 0.1em;
    font-weight: 700;
    text-align: left;
    background-color: #fff;
    color: #335BA1;
  }
  #nav-toggle {
    display: block;
  }
  /* #nav-toggle 切り替えアニメーション */
  .open #nav-toggle span:nth-child(1) {
    top: 11px;
    -webkit-transform: rotate(315deg);
    -moz-transform: rotate(315deg);
    transform: rotate(315deg);
  }
  .open #nav-toggle span:nth-child(2) {
    width: 0;
    left: 50%;
    font-family: 'Jost', sans-serif;
    font-weight: bold;
  }
  .open #nav-toggle span:nth-child(3) {
    top: 11px;
    -webkit-transform: rotate(-315deg);
    -moz-transform: rotate(-315deg);
    transform: rotate(-315deg);
  }
  /* #global-nav スライドアニメーション */
  .open #global-nav {
    -moz-transform: translateY(100vh);
    -webkit-transform: translateY(100vh);
    transform: translateY(100vh);
  }
}
/*parts*/
.alpha a:hover {
  -webkit-transition: all 1s;
  -moz-transition: all 1s;
  -ms-transition: all 1s;
  -o-transition: all 1s;
  transition: all 1s;
  opacity: 0.5;
  filter: alpha(opacity=50);
  -ms-filter: "alpha(opacity=50)";
}
.fade {
  opacity: 1;
}

#page-top {
  position: fixed;
  bottom: 50px;
  right: 20px;
  width: 100px;
  margin-bottom: 0;
    z-index: 2;
}

.next-page {
	position: fixed;
	bottom: 0px;
	width: 100%;
	height: 50px;
	z-index: 5;
	background-color: #4E85A0;
}
.next-page.none {
	position: fixed;
	width: 100%;
	height: 0px;
	z-index: 5;
	background-color: #f0f8ff00;
}

.next-page .page-top-2-next{
	color: #fff;
}
.next-page .page-top-2-next p{
	max-width: 1000px;
	padding: 0px 20px;
	display: flex;
	margin: 14px auto;
}
.next-page .page-top-2-next .mark::after{
	content: '';
  border-left: 10px solid #fff;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  position: absolute;
	top: 0px;
	bottom: 0px;
	margin: auto 0px auto 20px;
	width: 10px;
	height: 1px;
}
.next-page .page-top-2-next .line2{
	display: inline-block;
	height: 24px;
	width: 1px;
	background-color: #fff;
	margin: 0px 20px;
}

.page-top-con {
  width: 100%;
  position: relative;
}
#page-top-sub {
	width: 100px;
	position: absolute;
	right: 20px;
	bottom: -1px;
	margin-bottom: 0;
	z-index: 3;
}

.advice {
	position: absolute;
	right: 120px;
	bottom: 40px;
	padding: 10px 20px;
	border: 1px solid #707070;
	background-color: #fff;
	opacity: 0;
	visibility: hidden;
	z-index: 2;
}
.advice::after{
	content: '';
	width: 25px;
	height: 1px;
	display: inline-block;
	background-color: #707070;
	position: absolute;
	right: -15px;
	bottom: 20px;
	margin: auto;
}
.advice p{
	margin-bottom: 0;
}
.advice .bold{
	font-weight: bold;
}

.advice.is-hidden {
  visibility: visible;
  opacity: 1;
	margin-left: 10px;
}

/*parts*/
/* グローバルメニュー */
/* SP時：ハンバーガーメニューボタン */
.global-nav-icon {
  display: none;
}
@media screen and (min-width:1024px) {
  .contents .mar-style {
    max-width: 960px;
    width: auto;
    margin: 0 auto 40px;
  }
}
@media screen and (max-width: 768px) {
  body.open {
    height: 95%;
    overflow-y: hidden;
  }
  .contents {
    margin-top: 120px;
  }
  .breadcrumb li{
    line-height: 2;
}
#page-top {
  width: 80px;
}
#page-top-sub {
  width: 80px;
}
	.advice {
  right: 100px;
  bottom: 20px;
}



}
/* メガメニュー */
.menu_contents {
  background: #335BA1;
  position: absolute;
  top: 55px;
  height: 0;
  left: 0;
  width: 100vw;
  margin: 0 calc(calc(50% - 114px) - 50vw);
  overflow: hidden;
  transition: all 0.2s;
}
.menu_contents h2  {
  max-width: 980px;
  margin: 60px auto 30px;
  padding-bottom: 30px;
  color: #fff;
  border-bottom: 1px solid #fff;
  position: relative;
  font-size: 1.8rem;
  letter-spacing: 0.1em;
  font-weight: 500;
  width: calc(100% - 80px);
}
.menu_contents h2 a {
  color: #fff;
}
#top-head .menu_contents h2 a {
  color: #fff;
  font-size: 1.8rem;
  letter-spacing: 0.1em;
  font-weight: 500;
}
.menu_contents h2::before {
  content: '';
  width: 8px;
  height: 12px;
  background-image: url(../images/arrow_r_w.svg);
  display: inline-block;
  background-size: contain;
  background-repeat: no-repeat;
  margin-right: 10px;
}
.menu_contents h3 {
  font-size: 1.8rem;
  color: #fff;
  letter-spacing: 0.1em;
  font-weight: 500;
    margin-bottom: 10px;
}
.memu_second_wrap {
  max-width: 980px;
  width: calc(100% - 80px);
  margin: 40px auto 10px;
}

#global-nav .memu_second ul li:first-child{
	border-bottom: 1px solid #7885BB;
	padding-top: 0px;
}
#global-nav .memu_second ul li{
	border-bottom: 1px solid #7885BB;
	padding-top: 25px;
	padding-bottom: 25px;
}
#global-nav .memu_second ul li.memu_second_sub{
	width: 100%;
}
#global-nav .memu_second ul li a {
  font-size: 1.6rem;
  color: #fff;
  letter-spacing: 0.05em;
  font-weight: 400;
  transition: .2s ease-in-out;
}
#global-nav .memu_second ul li a:hover {
  opacity: 0.7;
}
#global-nav .memu_second ul li a::before {
  width: 8px;
  height: 12px;
  background-image: url(../images/arrow_r_w.svg);
  content: '';
  display: inline-block;
  background-size: contain;
  background-repeat: no-repeat;
  margin-right: 10px;
  vertical-align: middle;
}

#global-nav .memu_second ul li .memu_third{
	margin-top: 25px;
	padding-left: 35px;
	display: flex;
	justify-content: flex-start;
}
#global-nav .memu_second ul li .memu_third li{
	border-bottom: 0px solid #7885BB;
	padding-bottom: 0px;
	padding-top: 0px;
	margin-right: 25px;
}
#global-nav .memu_second ul li .memu_third li a{
	font-size: 1.4rem;
	font-weight: 400;
	transition: .2s ease-in-out;
}
/* #nav color */
.portfolio .menu_contents {
  background-color: #D90000;
}
#global-nav .portfolio .memu_second ul li:first-child {
  border-bottom: 1px solid #E15E5E;
}
#global-nav .portfolio .memu_second ul li {
  border-bottom: 1px solid #E15E5E;
}
.interview .menu_contents {
  background-color: #259B62;
}
#global-nav .interview .memu_second ul li:first-child {
  border-bottom: 1px solid #5BBF8F;
}
#global-nav .interview .memu_second ul li {
  border-bottom: 1px solid #5BBF8F;
}

li .menu_contents {
  padding-bottom: 0px;
  transition: 0.2s;
}
li.sub_open .menu_contents {
  height: auto;
  padding-bottom: 40px;
}

li.menu_list a {
  position: relative;
  color: #335BA1;
}
li.portfolio.menu_list a {
  position: relative;
  color: #D90000;
}
li.menu_list a::after {
  content: "";
  display: inline-block;
  width: 0%;
  height: 4px;
  background-color: #335BA1;
  position: absolute;
  bottom: -20px;
  left: 0;
  right: 0;
  transition: .5s ease-in-out;
  margin: auto;
}
li.menu_list:hover a::after {
  width: 100%;
}
li.menu_list.portfolio a::after {
  background-color: #D90000;
}
li.menu_list.interview a::after {
  background-color: #259B62;
}
#job li.menu_list.job a::after,#job-sub li.menu_list.job a::after,#selection li.menu_list.selection a::after,#selection-sub li.menu_list.selection a::after,
#portfolio li.menu_list.portfolio a::after,#portfolio-sub li.menu_list.portfolio a::after, #next li.menu_list.next a::after, #next-sub li.menu_list.next a::after,#interview li.menu_list.interview a::after,#interview-sub li.menu_list.interview a::after{
  width: 100%;
}
.menu_contents li a {
  color: #fff;
}
.menu_contents .close {
  width:15px;
  position: absolute;
  right: -15px;
  top: 0;
}
.sub-toggle {
  display: none;
}
.tp-Hero_Scroll {
  z-index: 1;
  color: #000;
  writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  font-size: 0.8rem;
  line-height: 1;
  position: relative;
	left: calc(50% - 8px);
  padding: 25px 0 0 5px;
	margin: 10px auto 20px;
	transform: rotate(-180deg) translateX(-50%);
  -webkit-transform: rotate(-180deg) translateX(-50%);
  -moz-transform: rotate(-180deg) translateX(-50%);
  -ms-transform: rotate(-180deg) translateX(-50%);
  background-color: rgba(255,255,255,0.0)
}
.tp-Hero_Scroll::before {
  content: "";
  width: 1px;
  height: 100%;
  background: linear-gradient(#000 0%, #000 100%);
  position: absolute;
  left: 0;
  top: 0;
}

.works_point {
	margin-top: 10px;
    font-size: 15px;
	font-weight: 600;
}

.works_point {
	margin-top: 20px;
    font-size: 15px;
	font-weight: 600;
}

.works_point_text{
	margin-top: 20px;
	margin-bottom: 100px;
    font-size: 12px;
}

@media screen and (max-width: 1060px) {
.menu_contents .close {
  right: 0px;
}
}


@media screen and (max-width: 834px) {
  #top-head {
    top: 0;
    position: fixed;
    margin-top: 0;
  }
  #top-head, .inner {
    width: 100%;
    padding: 0;
  }
  /* Fixed reset */
  #top-head.fixed {
    padding-top: 0;
    background: transparent;
  }
  #mobile-head {
    position: relative;
    z-index: 999;
    width: 100%;
    height: 120px;
    transition: .35s ease-in-out;
    background-color: rgba(255, 255, 255, 1.0);
  }
  .fixed #mobile-head {
    height: 80px;
    background-color: rgba(255, 255, 255, 0.8);
  }

  .open #mobile-head {
    position: relative;
    z-index: 999;
    width: 100%;
    height: 140px;
    background-color: #335BA1;
  }
 #top-head .logo {

    top: 25px;
  }
  .fixed #top-head .logo {
    top: 20px;
  }
.fixed.open #top-head .logo {
    top: 40px;
  }
  #global-nav {
    position: absolute;
    top: -100vh;
    width: 100%;
    height: 100vh;
    padding: 10px 0;
    background-color: #335BA1;
    text-align: center;
    -webkit-transition: .5s ease-in-out;
    -moz-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
    overflow-y: scroll;
  }
  #global-nav ul {
    position: static;
    right: 0;
    bottom: 0;
    font-size: 0.875em;
    list-style: none;
  }
 /* #top-head #global-nav ul li a, #top-head.fixed #global-nav ul li a {
    display: block;
    width: 100%;
    margin: 0px auto 15px;
    padding: 12px 10px;
    font-size: 1.6rem;
    letter-spacing: 0.1em;
    font-weight: 500;
    text-align: left;
    background-color: #fff;
    color: #335BA1;
  }*/
#global-nav ul li.menu_list > a {
    pointer-events: none;
  }
li.menu_list a::after {
  display: none;
}
  #nav-toggle {
    display: block;
  }
  /* #nav-toggle 切り替えアニメーション */
  .open #nav-toggle span:nth-child(1) {
    top: 11px;
    -webkit-transform: rotate(315deg);
    -moz-transform: rotate(315deg);
    transform: rotate(315deg);
  }
  .open #nav-toggle span:nth-child(2) {
    width: 0;
    left: 50%;
  }
  .open #nav-toggle span:nth-child(3) {
    top: 11px;
    -webkit-transform: rotate(-315deg);
    -moz-transform: rotate(-315deg);
    transform: rotate(-315deg);
  }
  /* #global-nav スライドアニメーション */
  .open #global-nav {
    -moz-transform: translateY(100vh);
    -webkit-transform: translateY(100vh);
    transform: translateY(100vh);
  }
  /* sub-toggle 切り替えアニメーション */
.sub-toggle {
    display: block;
    position: absolute;
    width: 10px;
    right: 10px;
    top: 10px;
    height: 20px;
    cursor: pointer;
  }
.sp_link {
  display: block;
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  height: 40px;
}
.sub-toggle::before, 
.sub-toggle::after {
    content: '';
    display: block;
    width: 15px;
    height: 3px;
    border-radius: 5px;
    background: #335BA1;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
  }
.sub-toggle::after {
    background: #335BA1;
    transform: translateY(-50%) rotate(90deg);
    transition: 0.1s;
  }
 .sub_open .sub-toggle::after {
    transform: rotate(0);
    transition: 0.1s;
  }
  /* nav */
  #global-nav ul li {
    width: 90%;
    margin: auto;
    position: relative;
  }
  #global-nav .memu_second {
    width: 100%;
    text-align: left;
  }
  #top-head #global-nav .memu_second ul li a {
    padding: 13px 30px 13px 15px;
    background-color: rgba(255, 255, 255, 0);
    color: #fff;
    line-height: 1.4;
    margin: 0px auto;
    font-size: 1.6rem;
    position: relative;
    width: 100%;
      display: block;
  }
	#top-head #global-nav .memu_second ul li.linennone a {
    border-bottom: 1px solid #7885BB;
  }

  #global-nav .memu_second ul li a::before {
    display: none;
  }
 #global-nav .memu_second ul li a::after {
    content: '';
    width: 8px !important;
    height: 12px;
    margin: auto;
    background-image: url(../images/arrow_w.svg);
    display: inline-block;
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    right: 15px;
    left: auto;
    top: 0px;
    bottom: 0px;
    background-color: inherit;
  }
  .menu_contents {
    top: 0;
    margin: auto;
    position: relative;
    width: 100%;
  }
  .open #global-nav ul {
    margin-top: 140px;
  }
  #global-nav .memu_second ul {
    width: 100%;
    margin: 0px auto;
  }
 /* .menu_contents h2 {
   max-width: 980px;
  margin: 20px auto 20px;
  padding-bottom: 20px;
  text-align: left;
  }*/
 #top-head .menu_contents h2{
  margin: 0 auto;
  padding-bottom: 10px;
  text-align: left;
  font-size: 1.8rem;
  width: calc(100% - 20px);
  
  }
#top-head .menu_contents h2 a {
  color: #fff;
  font-size: 1.8rem;
  letter-spacing: 0.1em;
  font-weight: 500;
}
    #global-nav .memu_second h3{
        margin-top: 30px;
    }
 .memu_second_wrap {
    margin: 0px;
    transition: 0.1s;
    display: block;
    width: 100%;
  }
  .memu_second_wrap h3, .memu_second_wrap li{
    height: 0;
    transition: 0.6s;
  }
  .li.sub_open .memu_second_wrap {
    max-width: 980px;
    height: 100%;
  }
 .sub_open .memu_second_wrap h3, .sub_open .memu_second_wrap li{
    height: auto;
  }
  .portfolio .menu_contents {
    background-color: inherit;
  }
  .interview .menu_contents {
    background-color: inherit;
  }

  #top-head #global-nav .memu_second ul li {
    position: relative;
    float: none;
    border-bottom: 1px solid inherit;
    margin: 0px;
  }
 #top-head #global-nav .sub_open .memu_second ul li {
	 transition: 0.3s;
	 width: 100%;
	 padding: 0px 0px 5px;
  }
	#top-head #global-nav .sub_open .memu_second ul li.linennone {
	 border-bottom: 0px;
  }
	
#global-nav .memu_second ul li .memu_third {
  margin-top: 0px;
}
	#global-nav .memu_second ul li .memu_third ul li{
  padding-left: 0px;
}
#global-nav .portfolio .memu_second ul li:first-child {
  border-bottom: 1px solid #7885BB;
}
	#global-nav .portfolio .memu_second ul li{
  border-bottom: 1px solid #7885BB;
}
	#global-nav .interview .memu_second ul li:first-child {
  border-bottom: 1px solid #7885BB;
}
	#global-nav .interview .memu_second ul li{
  border-bottom: 1px solid #7885BB;
}
  /* #nav color */
  li.menu_list.current a {
    color: inherit;
  }
  li.menu_list.portfolio.current a {
    color: inherit;
  }
  li.menu_list.current a::after {
    display: none;
  }
  .nav-toggle {
    margin-top: 30px;
  }
  li.menu_list.current a {
    position: relative;
  }
  li.menu_list.portfolio.current a {
    position: relative;
    color: inherit;
  }
  li.menu_list.current a::after {
    display: none;
  }
  .footer_inner li {
    width: 100%;
    padding: 2% 20px;
  }
  .footer_inner li img{
    max-width: 150px;
    margin: 10px auto 30px;
  }
  .menu_contents .close {
    display: none;
  }

}

@media screen and (max-width: 767px) {
	.main_pc{
		display: none;
	}
	.main_sp {
		display: block;
	}
	.swiper-container .swiper-button-prev {
		left: 0%;
	}
	.swiper-container .swiper-button-next {
		right: 0%;
	}
	
	
	
}