@charset "utf-8";
/* CSS Document */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1;
  position: relative;
  /*cursor: none;*/ /*もともとあるカーソルは見えなくなるようにする*/
}
ol, ul {
  list-style: none;
}
blockquote, q {
  quotes: none;
}
blockquote:before, blockquote:after, q:before, q:after {
  content: '';
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
a {
  text-decoration: none;
  color: black;
}
body {
  font-size: 14px;
  line-height: 30px;
	font-family:YuMincho,
	'Yu Mincho',
	serif;
  font-weight: normal;
  color: #000;
}
.wrapper {
  overflow: hidden;
}
img {
  max-width: 100%;
  vertical-align: bottom;
}
a:hover {
  opacity: 0.6;
  transition: 0.3s;
}
.roman {
  font-family: 'Times New Roman', Times, 'serif';
}
*, *:before, *:after {
  box-sizing: border-box;
}
.pc {
  display: block;
}
.sp {
  display: none;
}
#wrapper {
	overflow: hidden;
}
@media screen and (max-width: 768px) {
  .pc {
    display: none;
  }
  .sp {
    display: block;
  }
}
/*================================
    　　ハンバーガーメニュー
=================================*/
#gloval-nav {
  background-color:rgba(9,12,23,0.95);
  color: #fff;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 990;
  text-align: center;
  display: flex;
  visibility: hidden;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  font-size: 18px;
  opacity: 0;
  transition: opacity .6s ease, visibility .6s ease;
  position: fixed;
  padding: 0 20px;
}
.open #gloval-nav {
  visibility: visible;
  opacity: 1;
}
@media (-ms-high-contrast: none), (-ms-high-contrast: active) {
	
#gloval-nav {
  display: none;
}
.open #gloval-nav {
  display: block;
}
}
#nav-toggle {
  display: none;
}
#nav-toggle {
  z-index: 1000;
  position: absolute;
  top: 22px;
  right: 20px;
  height: 22px;
  cursor: pointer;
}
#nav-toggle div {
  position: relative;
  width: 42px;
}
#nav-toggle span {
  width: 100%;
  height: 2px;
  left: 0;
  display: block;
  background: #fff;
  position: absolute;
  transition: transform .6s ease-in-out, top .5s ease;
}
#nav-toggle span:nth-child(1) {
  top: 0;
}
#nav-toggle span:nth-child(2) {
  top: 10px;
}
#nav-toggle span:nth-child(3) {
  top: 20px;
}
#nav-toggle span:hover span:nth-child(1) {
  top: 4px;
}
#nav-toggle span:hover span:nth-child(3) {
  top: 23px;
}
#gloval-nav li {
  text-align:right;
  margin-bottom: 32px;
}
#gloval-nav > nav {
	width: 100%;
	position: relative;
	top:80px;
}
.open #nav-toggle span {
  background: #fff;
}
.open #nav-toggle span:nth-child(1) {
  top: 15px;
  transform: rotate(45deg);
}
.open #nav-toggle span:nth-child(2) {
  top: 15px;
  width: 0;
  left: 50%;
}
.open #nav-toggle span:nth-child(3) {
  top: 15px;
  transform: rotate(-45deg);
}
.open {
  overflow: hidden;
}
.open #gloval-nav {
  visibility: visible;
  opacity: 1;
}
.open #gloval-nav li {
  opacity: 1;
  transform: translateX(0);
  transition: transform 0.5s ease, opacity .9s ease;
}
.open #gloval-nav li:last-child {
  margin-bottom: 0;
}
#gloval-nav a {
  display: block;
  color: #fff;
  text-decoration: none;
  transition: color .6s ease;
}
#gloval-nav a:hover {
  color: #666;
}
#gloval-nav ul {
  list-style: none;
}
#gloval-nav li {
  opacity: 0;
  transform: translateX(200px);
  transition: transform .35s ease, opacity .8s ease;
}
#gloval-nav li:nth-child(2) {
  transition-delay: .05s;
}
#gloval-nav li:nth-child(3) {
  transition-delay: .1s;
}
#gloval-nav li:nth-child(4) {
  transition-delay: .15s;
}
#gloval-nav li:nth-child(5) {
  transition-delay: .2s;
}
#gloval-nav li:nth-child(6) {
  transition-delay: .25s;
}
#gloval-nav li:nth-child(7) {
  transition-delay: .3s;
}
#gloval-nav li:nth-child(8) {
  transition-delay: .35s;
}
@media screen and (max-width: 1220px) {
  .pc_menu {
    display: none;
  }
  #nav-toggle {
    display: block;
  }
	#page-wrapper, #wrapper{
		overflow: hidden;
	}
}
@media screen and (max-width: 350px) {
#gloval-nav li {
    margin-bottom: 15px;
}
}
/*-----共通header-----*/
header {
  position: absolute;
  width:100%;
  -webkit-transition: all 0.3s;
     -moz-transition: all 0.3s;
      -ms-transition: all 0.3s;
       -o-transition: all 0.3s;
          transition: all 0.3s;
}

header p.logo {
  font-size: 38px;
  font-family: 'Times New Roman', Times, 'serif';
  color: white;
  z-index: 3;
}
header .pc_menu .pc_menu_top {
  border-bottom: 1px solid white;
}
.pc_menu_bottom ul {
  display: flex;
  justify-content: space-between;
}
.pc_menu_top ul {
  display: flex;
  justify-content: flex-end;
}
.pc_menu_bottom ul li a, .pc_menu_top li a {
  padding: 16px 22px;
  line-height: 1;
  display: block;
  letter-spacing: 0.05em;
}
.pc_menu {
  width: auto;
  position: relative;
  z-index: 100;
}
.pc_menu_bottom ul li a:hover, .pc_menu_top li a:hover {
  background: -moz-linear-gradient(left, #0a0d12, #1c2334);
  background: -webkit-linear-gradient(left, #0a0d12, #1c2334);
  background: linear-gradient(to right, #0a0d12, #1c2334);
  opacity: 1;
}
header a {
  color: white;
}
.fixed {
	position: fixed;
	background: rgba(28,33,52,0.8);
	padding:10px 0;
	z-index: 9998;
}
.fixed2 {
	position: fixed;
	background: rgba(28,33,52,0.8);
	padding:0;
	z-index: 9998;
	height: 64px;
}
/*---------index---------*/
.index .mv {
  overflow: hidden;
  position: relative;
}
.index .mv .mv_left {
  background-color: #0a0d12;
  width: 50%;
  color: white;
  float: left;
  height: 100vh;
  position: relative;
}
.index .mv .mv_right {
  background-image: url("https://nippon-consulting.com/images/mv.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  width: 50%;
  float: right;
  height: 100vh;
  color: white;
  position: relative;
}
.index .mv .mv_left h1 {
  font-family: 'Times New Roman', Times, 'serif';
  font-size: 76px;
  font-weight: normal;
  line-height: 120px;
  position: absolute;
  top: 50%;
  right: 140px;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  letter-spacing: 0.05em;
}
.index .mv .mv_left h1 strong {
  font-size: 117px;
  font-weight: normal;
}
.index .mv .mv_left h1 .tb-rl {
  writing-mode: tb-rl;
  font-size: 35px;
  display: inline-block;
  transform: rotate(-180deg);
  width: 20px;
  margin-bottom: 15px;
  line-height: 1;
	margin-right: 20px;
}
.index .mv .mv_left h1 .tb-rl.with {
  margin-bottom: 0;
}
.index .mv .mv_right h2 {
  font-size: 30px;
  line-height: 2;
  letter-spacing: 0.15em;
  position: absolute;
  top: 50%;
  left: 115px;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}
.index .mv .mv_right h2::before {
  content: "";
  width: 180px;
  height: 1px;
  position: absolute;
  top: 50%;
  left: -205px;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  background: #fff;
}
.index .mv .mv_right p.scroll {
  writing-mode: tb-rl;
  font-family: 'Times New Roman', Times, 'serif';
  font-size: 12px;
  position: absolute;
  left: 17px;
  bottom: 39px;
  letter-spacing: 0.2em;
}
.index .mv .mv_right p.scroll::before {
  content: "";
  display: block;
  width: 1px;
  /*border-left: 1px #fff solid;*/
	animation: sdl 2.5s cubic-bezier(1, 0, 0, 1) infinite;
  margin: 0 auto 0;
  position: absolute;
  bottom: -39px;
  left: -17px;
	width: 1px;
height: 161px;
background: #fff;
}
/*縦書きMac対策*/
.mac .index .mv .mv_left h1 .tb-rl.for {
	vertical-align: middle;
	padding: 40px 0 0 0;
	margin-bottom: 0;
}
@media screen and (min-width: 1221px) {
.index .mv .mv_left h1 .tb-rl.for {
	padding-top: 14px;
}
}
@media screen and (max-width: 1220px) {
  .index .mv .mv_left h1 {
    font-size: calc(76px * 0.5);
    line-height: 62px;
  }
  .index .mv .mv_left h1 strong {
    font-size: calc(117px * 0.5);
    font-weight: normal;
  }
  .index .mv .mv_left h1 .tb-rl {
    font-size: calc(35px * 0.5);
    padding: 7px 0 0 20px;
	  margin-right: 0;
  }
  .index .mv .mv_left h1 .tb-rl.with {
    padding-top: 0;
  }
	/*縦書きMac対策*/
.mac .index .mv .mv_left h1 .tb-rl.for {
	vertical-align: middle;
	padding:  23px 0 0 0;
}
  header p.logo {
    font-size: 30px;
  }
  .index .mv .mv_right h2 {
    font-size: 22px;
    left: 80px;
  }
  .index .mv .mv_right h2::before {
    width: 140px;
    left: -165px;
  }
  header p.logo {
    top: 12px;
    left: 20px;
    line-height: 1;
	  position: absolute;
  }
}
@media screen and (max-width: 768px) {
  .index .mv .mv_left {
    background-color: #0a0d12;
    width: 100%;
    color: white;
    float: none;
    height: 100vh;
    position: relative;
  }
  .index .mv .mv_right {
    background-image: url(https://nippon-consulting.com/images/mv.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    float: none;
    height: 420px;
    color: white;
    position: relative;
  }
  .index .mv .mv_left h1 {
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    right: inherit;
    top: 50%;
  }
  .index .mv .mv_left h1 {
    font-size: calc(76px * 0.7);
    line-height: 76px;
  }
  .index .mv .mv_left h1 strong {
    font-size: calc(117px * 0.7);
    font-weight: normal;
  }
  .index .mv .mv_left h1 .tb-rl {
    font-size: calc(35px * 0.7);
    padding: 7px 0 0 28px;
  }
  .index .mv .mv_left h1 .tb-rl.with {
    padding-top: 0;
  }
  header p.logo {
    font-size: 23px;
  }
  .index .mv .mv_right h2 {
    font-size: 30px;
    text-align: center;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    top: 41%;
    width: 100%;
  }
  .index .mv .mv_right h2::before {
    width: 1px;
    height: 140px;
    left: 50%;
    transform: translateX(-50%);
    top: -155px;
  }
  .index .mv .mv_right p.scroll::before {
    left: 0%;
    transform: translateX(-50%);
    bottom: -60px;
  }
  .index .mv .mv_right p.scroll {
    position: absolute;
    left: 52%;
    transform: translateX(-50%);
    writing-mode: tb-rl;
    font-size: 10px;
    bottom: 30px;
  }
}
@media screen and (max-width: 480px) {
  .index .mv .mv_left h1 {
    display: none;
  }
}
@keyframes scroll {
  0% {
    height: 0;
    opacity: 0.1;
  }
  50% {
    height: 160px;
    margin-top: 0;
    opacity: 0.8;
  }
  100% {
    opacity: 0.1;
  }
}
@keyframes sdl {
  0% {
    transform: scale(1, 0);
    transform-origin: 0 0;
  }
  50% {
    transform: scale(1, 1);
    transform-origin: 0 0;
  }
  50.1% {
    transform: scale(1, 1);
    transform-origin: 0 100%;
  }
  100% {
    transform: scale(1, 0);
    transform-origin: 0 100%;
  }
}
.index .about {
  overflow: hidden;
}
.index .about .inner {
  max-width: 100%;
}
.index .about .about_left {
  max-width: calc(100% - (50% + 232px));
}
.index .about .about_left {
  float: left;
  width: 100%;
  /*min-width: 352px;*/
  background-color: #131823;
  color: white;
  height: 940px;
  box-sizing: border-box;
  position: relative;
}
.index .about .about_left h2 {
  font-family: 'Times New Roman', Times, 'serif';
  font-size: 50px;
  letter-spacing: 0.2em;
  line-height: 1;
  /*width: 315px;*/
}
.about_left_inner {
  padding-top: 155px;
  max-width: 354px;
  margin-left: auto;
  margin-right: 0;
}
.index .about .about_left h2 span.border {
  border-top: 1px solid white;
  display: inline-block;
  padding-top: 28px;
}
.index .about .about_left h2 span.greet {
  font-size: 12px;
  display: block;
  font-family:
    YuMincho, /* Mac用 */ 'Yu Mincho', /* Windows用 */ serif;
  letter-spacing: 0.05em;
  margin-top: 20px;
  line-height: 1;
}
.index .about .about_right {
  max-width: calc(100% - (50% - 232px));
}
.index .about .about_right {
  float: right;
  width: 100%;
  /*min-width: 818px;*/
  background-color: #1c2334;
  height: 940px;
  box-sizing: border-box;
  position: relative;
  color: white;
}
.index .about .about_right .about_right_inner {
  padding-left: 43px;
  padding-top: 178px;
  max-width: 816px;
  width: 100%;
}
.index .about .about_right p.lead {
  font-size: 14px;
  line-height: 30px;
  letter-spacing: 0.05em;
  margin-bottom: 70px;
}
.index .about .about_right p.name {
  text-align: right;
  font-size: 14px;
  line-height: 30px;
  letter-spacing: 0.05em;
  margin-bottom: 65px;
  margin-left: auto;
  margin-right: 0;
  width: 100%;
}
.index .about .about_right p.more a {
  display: block;
  font-size: 14px;
  font-family: "Times New Roman", Times, "serif";
  text-align: center;
  line-height: 60px;
  border: 1px solid white;
  width: 240px;
  margin-left: auto;
  color: white;
}
.index .about .about_right p.more a:hover {
  background-color: white;
  color: #1c2334;
  transition: 0.4s;
  opacity: 1;
}
/*IE用*/
@media all and (-ms-high-contrast: none){
  .index .about .about_left {
    width: 33.5%;
	  max-width: inherit;
  }
	.index .about .about_right{
		width: 66.5%;
		max-width: inherit;
	}
}
@media screen and (max-width: 1220px) {
  .index .about {
    background-color: #131823;
    padding-bottom: 80px;
  }
  .index .about .inner {
    padding-left: 20px;
    padding-right: 20px;
  }
  .index .about .about_left {
    float: none;
    width: 100%;
    background: none;
    max-width: 100%;
    height: auto;
  }
  .about_left_inner {
    padding-top: 65px;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
  .index .about .about_left h2 span.border {
    border: none;
    display: block;
    padding-top: 0;
  }
  .index .about .about_left h2 span.greet {
    font-size: 18px;
  }
  .index .about .about_left h2 {
    border-bottom: 1px solid #fff;
    padding-bottom: 35px;
    margin-bottom: 35px;
    font-size: 43px;
  }
  .index .about .about_right {
    float: none;
    width: 100%;
    /* min-width: 818px; */
    background: none;
    height: auto;
    max-width: 100%;
  }
  .index .about .about_right .about_right_inner {
    padding-left: 0;
    padding-top: 0;
    max-width: 100%;
    width: 100%;
  }
  .index .about .about_right p.lead {
    margin-bottom: 50px;
  }
  .index .about .about_right p.more a {
    margin-left: auto;
    margin-right: auto;
  }
}
.index .news {
  background-color: #e2e4ed;
  padding: 100px 0 115px 0;
  color: #222;
}
.index .news .inner {
  max-width: 1170px;
  margin: 0 auto;
  width: 100%;
}
.index .news h2 {
  font-family: "Times New Roman", Times, "serif";
  font-size: 50px;
  text-align: center;
  line-height: 1;
  letter-spacing: 0.2em;
  margin-bottom: 55px;
}
.index .news h2 span {
  font-family: YuMincho, 'Yu Mincho', serif;
  font-size: 14px;
  letter-spacing: 0.05em;
  display: block;
  margin-top: 15px;
}
.index .news ul {
  margin-bottom: 67px;
}
.index .news ul li {
  border-bottom: 2px solid #d0d2da;
  padding: 25px 0;
}
.index .news ul li:first-child {
  border-top: 2px solid #d0d2da;
}
.index .news ul li dl {
  overflow: hidden;
  font-size: 14px;
  letter-spacing: 0.05em;
}
.index .news ul li dl dt {
  float: left;
  width: 100px;
}
.index .news ul li dl dd {
  float: left;
}
.index .news ul li dl dd a {
  text-decoration: underline;
}
.index .news ul li dl dd a:hover {
  text-decoration: none;
  transition: 0.3s;
}
.index .news p.viewall a {
  display: block;
  text-align: center;
  width: 240px;
  font-size: 14px;
  letter-spacing: 0.2em;
  line-height: 60px;
  border: 1px solid #222;
  margin: 0 auto;
}
.index .news p.viewall a:hover {
  background-color: #222;
  color: #e2e4ed;
  transition: 0.3s;
  opacity: 1;
}
@media screen and (max-width: 1220px) {
  .index .news h2 {
    font-size: 43px;
    margin-bottom: 35px;
  }
  .index .news {
    background-color: #e2e4ed;
    padding: 65px 00;
    color: #222;
  }
  .index .news h2 span {
    font-size: 16px;
  }
  .index .news .inner {
    width: 100%;
    padding: 0 20px;
  }
  .index .news ul li:first-child {
    border-top: 2px solid #222222;
  }
  .index .news ul li {
    border-bottom: 2px solid #222222;
    padding: 15px 0;
  }
  .index .news ul {
    margin-bottom: 35px;
  }
}

/*-----共通footer-----*/
footer {
  background-color: #080b15;
  color: white;
}
footer a {
  color: white;
}
footer .inner {
  max-width: 1170px;
  margin: 0 auto;
  width: 100%;
}
footer .footer_top {
  padding: 90px 0 50px 0;
  border-bottom: 1px solid #9c9da1;
  overflow: hidden;
}
footer .footer_top p.logo {
  font-size: 25px;
  line-height: 1;
  width: 250px;
  font-family: "Times New Roman", Times, "serif";
  float: left;
}
footer .footer_top ul {
  width: 780px;
  float: left;
  overflow: hidden;
  height: 37px;
}
footer .footer_top ul li {
  float: left;
  display: inline-block;
  margin-right: 45px;
  letter-spacing: 0.05em;
  line-height: 37px;
}
footer .footer_top p.inq {
  float: left;
}
footer .footer_top p.inq a {
  display: block;
  line-height: 35px;
  font-size: 14px;
  border: 1px solid white;
  text-align: center;
  width: 140px;
  cursor: pointer;
}
footer .footer_top p.inq a:hover {
  background-color: white;
  color: #080b15;
  opacity: 1;
  transition: 0.3s;
}
footer .footer_bottom {
  padding: 30px 0 75px;
  overflow: hidden;
}
footer .footer_bottom p.copy {
  font-size: 12px;
  float: left;
  width: 300px;
}
footer .footer_bottom ul {
  float: right;
}
footer .footer_bottom ul li {
  float: right;
  font-size: 12px;
  display: inline-block;
  margin-left: 37px;
}
@media screen and (max-width: 1220px) {
  footer .footer_top ul li {
    margin-right: 20px;
  }
  footer .inner {
    padding: 0 20px;
  }
  footer .footer_top ul {
    width: auto;
    float: left;
    overflow: hidden;
  }
  footer .footer_top p.inq {
    width: 100%;
    line-height: 1;
    margin: 0 auto;
    text-align: center;
  }
  footer .footer_top p.inq a {
    width: 335px;
    margin: 0 auto;
    float: none;
    line-height: 1;
    padding: 25px 0;
    font-size: 18px;
    margin-top: 40px;
  }
}
@media screen and (max-width: 880px) {
  footer .footer_top ul {
    float: none;
    overflow: hidden;
    margin: 40px auto 0;
    text-align: center;
    display: inline-block;
  }
  footer .footer_top p.logo {
    font-size: 32px;
    line-height: 1;
    width: 100%;
    font-family: "Times New Roman", Times, "serif";
    float: none;
    text-align: center;
  }
  footer .footer_top ul li {
    text-align: center;
  }
  footer .footer_top ul li:last-child {
    margin-right: 0;
  }
  footer .footer_top {
    margin: 0 auto;
    text-align: center;
  }
}
@media screen and (max-width: 768px) {
  footer .footer_top {
    padding: 70px 0 50px 0;
  }
  footer .footer_top p.logo {
    text-align: left;
  }
  footer .footer_top ul {
    display: none;
  }
  footer .footer_bottom {
    padding: 30px 0 50px;
    overflow: hidden;
    margin: 0 auto;
    text-align: center;
  }
  footer .footer_bottom ul {
    float: none;
    margin-bottom: 30px;
  }
  footer .footer_bottom ul li {
    font-size: 14px;
    text-align: center
  }
  footer .footer_bottom ul {
    width: auto;
    display: inline-block;
    text-align: center;
  }
  footer .footer_bottom ul li:last-child {
    margin-left: 0px;
  }
  footer .footer_bottom p.copy {
    float: none;
    width: auto;
  }
	
}
@media screen and (max-width: 374px) {
	footer .footer_top p.inq a {
		width: 100%;
	}
	footer .footer_bottom ul li {
    margin-left: 25px;
}
}
/*-----マウスストーカー-----*/
/*html,
body {
  width: 100%;
  height: 100%;
  margin: 0;
}

body {
  position: relative;
  cursor: none;
}

.cursor,
.follower {
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 0; 
  pointer-events: none;
}

.cursor {
  width: 8px;
  height: 8px;
  background-color: #000;
  z-index: 1001;
}

.follower {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
	background-color: #d8b9bb;
  z-index: 1000;
  transition: transform ease .1s;
  text-align: center;
}
.follower span {
    display: inline-block;
    font-size: 14px;
    font-weight: bold;
    transform: scale(0);
}
.is-active {
    transform: scale(2);
  }*/
/*12/17修正*/
.index .mv .mv_left {
    width: 300px;
	}
.index .mv .mv_right {
    width: calc(100% - 300px);
	}
	.index .mv .mv_left h1{
		display: none;
	}
@media screen and (max-width: 768px) {
	.index .mv .mv_left {
    /*height: 64px;
    z-index: 2;*/
		display: none;
}
		.index .mv .mv_right {
    width: 100%;
	height: 100vh;
	}
	.index .mv .mv_right h2 {
    top: 50%;
	}
	.index .mv .mv_right h2::before {
    height: 500px;
top: -521px;
}
	.index header {
    position: fixed;
    width: 100%;
    z-index: 999;
    background-color: #0a0d12;
    height: 64px;
}
	/*.index .mv .mv_right p.scroll {
    bottom: 70px;
}
	.index .mv .mv_right p.scroll::before {
    bottom: -70px;
    height: 180px;
}*/
}
/* 220726 */
.index .news ul li dd a {
	max-width:calc(100% - 140px);
	display:inline-block;
	width:100%;
}
.index .news ul li dd .cat {
	line-height:30px;
	text-align:center;
	display:inline-block;
	width:126px;
	padding:0;
	height:30px;
}
.index .news ul li dl dd {
    float: none;
	display:flex;
	flex-wrap:wrap;
}
.index .news ul li dd a + .cat {
    margin-left:0;
}
.team-wrap .team-box {
	width:22%;
}
/*ラベル*/
.team-wrap .team-box label {
    display: block;
    font-weight: bold;
    cursor :pointer;
    margin-top: 10px;
    padding:5px;
	cursor:pointer;
}
.team-wrap .team-box label:hover {
    opacity:0.7;
}
.team-wrap .team-box input {
    display: none; 
}
.team-wrap .team-box div {
    height: 0;
    overflow-y: hidden;
    transition: 0.5s;
    opacity: 0;
}
.team-wrap .team-box input#tab1:checked + label[for="tab1"] + div,
.team-wrap .team-box input#tab2:checked + label[for="tab2"] + div,
.team-wrap .team-box input#tab3:checked + label[for="tab3"] + div,
.team-wrap .team-box input#tab4:checked + label[for="tab4"] + div,
.team-wrap .team-box input#tab5:checked + label[for="tab5"] + div,
.team-wrap .team-box input#tab6:checked + label[for="tab6"] + div,
.team-wrap .team-box input#tab7:checked + label[for="tab7"] + div,
.team-wrap .team-box input#tab8:checked + label[for="tab8"] + div,
.team-wrap .team-box input#tab9:checked + label[for="tab9"] + div,
.team-wrap .team-box input#tab10:checked + label[for="tab10"] + div,
.team-wrap .team-box input#tab11:checked + label[for="tab11"] + div,
.team-wrap .team-box input#tab12:checked + label[for="tab12"] + div,
.team-wrap .team-box input#tab13:checked + label[for="tab13"] + div{
    height: auto;
    opacity: 1;
}
.team-wrap .team-box label::before {
    content: "＋";
    padding-right: 8px;
}
/*クリックでアイコン入れ替え*/
.team-wrap .team-box input:checked + label::before 
{
    content: "－";
}

.team-wrap .flex-box {
	align-items:flex-start;
	gap:3%;
	justify-content:start;
}
@media screen and (max-width: 768px) {
.team-content .position {
    font-size: 12px;
}
.team-wrap .team-box {
	width:49%;
	padding:50px 8px 0;
}
.team-wrap .team-box .name {
    font-size: 25px;
}
.team-wrap .team-box label {
    margin-top: 0;
}
.team-wrap .team-box .name-en {
    font-size: 10px;
	display:block;
}
.index .news ul li dl dt {
    float: none;
    width: 100px;
}
	.index .news ul li dl dd {
		width:100%;
	}
	.index .news ul li dd a {
		max-width:100%;
		width:100%;
	}
	.index .news ul li dd .cat {
		margin-left:0;
	}
	.team-wrap .flex-box {
		gap:0;
	}
}