@charset "UTF-8";
/* CSS Document */

html {
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	background: #fff;
	font-family: "Noto Sans JP", "游ゴシック体","Yu Gothic",YuGothic,"ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	color: #000;
}

body {
	-webkit-animation: fadeIn 1.5s ease 0s 1 normal;
    animation: fadeIn 1.5s ease 0s 1 normal;
}

@keyframes fadeIn {
    0% {
      opacity: 0
    }

    100% {
      opacity: 1
    }
  }

@-webkit-keyframes fadeIn {
    0% {
      opacity: 0
    }

    100% {
      opacity: 1
    }
  }

.mbXL{ margin-bottom: 3em;}
.mbLL{ margin-bottom: 2em;}
.mbL{ margin-bottom: 2em;}
.mbM{ margin-bottom: 1em;}
.mbS{ margin-bottom: .8em;}
.mbSS{ margin-bottom: .5em;}
.mbXS{ margin-bottom: 2em;}


.mb0{
	width:100%;
	overflow: hidden; /* heightを戻す */
}

.mb5{
	width:100%;
	overflow: hidden; /* heightを戻す */
	margin-bottom: 5px;
	line-height: 140%;
}

.mb10{
	width:100%;
	overflow: hidden; /* heightを戻す */
	margin-bottom: 10px;
}

.mb20{
	width:100%;
	overflow: hidden; /* heightを戻す */
	margin-bottom: 20px;
}

.mb30{
	width:100%;
	overflow: hidden; /* heightを戻す */
	margin-bottom: 30px;
}

.mb50{
	width:100%;
	overflow: hidden; /* heightを戻す */
	margin-bottom: 50px;
}

.mb70{
	width:100%;
	overflow: hidden; /* heightを戻す */
	margin-bottom:70px;
}

.mb100{
	width:100%;
	overflow: hidden; /* heightを戻す */
	margin-bottom: 100px;
}

#header_wrapper{
	width:100%;
	overflow: hidden;
    text-align: center;
	line-height: 100%;
	z-index: 100;
    background-color:#fff;
    box-sizing: border-box;
	padding:20px 2% 20px 3%;
}

.headerlogo{
	width:420px;
	float: left;
	padding:18px 0;
}


.topbnrbtnsns{
	width:590px;
	float: right;
	overflow: hidden;
	padding-top:15px;
	margin-right:20px;
	box-sizing: border-box;
	
}

.topbnr_wrapper{
 	width:470px;
	float: left;
	margin-right: 20px;
	overflow: hidden;
 }

.topbnr{
 	width:49.5%;
	float: left;
	margin-right: 1%;
}
	
.topbnr:last-child{
	margin-right: 0;
}

/* overlay-styles.css */
.hamburger-overlay {
	width: 50px;
	height: 50px;
	position: relative;
	float: left;
	z-index: 1000;
	border: none;
	background-color: transparent;
	transition: background-color 1s ease;
	cursor: pointer;
}

.hamburger-overlay.scrolled {
  background-color: #fff; /* スクロール後の色 */
  box-shadow: 0 2px 10px rgba(0,0,0,0.6);
}

.hamburger-overlay__line {
  position: absolute;
  left: 10px;
  width: 30px;
  height: 2px;
  background-color: #000;
  transition: all .6s;
}

.hamburger-overlay__line:nth-of-type(1) { top: 12px; }
.hamburger-overlay__line:nth-of-type(2) { top: 21px; }
.hamburger-overlay__line:nth-of-type(3) { top: 30px; }

.hamburger-overlay.active .hamburger-overlay__line:nth-of-type(1) {
  transform: translateY(9px) rotate(-45deg);
}
.hamburger-overlay.active .hamburger-overlay__line:nth-of-type(2) {
  opacity: 0;
}
.hamburger-overlay.active .hamburger-overlay__line:nth-of-type(3) {
  transform: translateY(-9px) rotate(45deg);
}

.nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(255,255,255, 0.95);
  visibility: hidden;
  opacity: 0;
  transition: all .6s;
  z-index: 150;
  display: table;
}

.nav-overlay.active {
  visibility: visible;
  opacity: 1;
}

.menu_wrapper{
    width:100%;
	margin:0 auto ;
	opacity: 1;
	display: table-cell;
	vertical-align: middle;
	color: #fff;
	text-align: center;
}

.menu_wrapper a{
    display: inline-block;
    color:#000;
    font-size: 16px;
	line-height: 15px;
    text-decoration:none;
    position: relative;
    transition: .3s;
	font-family: "Roboto";
    font-weight: 500;
    font-style: normal;
    letter-spacing: 1px;
	padding-bottom: 10px;
}

.menu_wrapper a::after {
  background-color: #000;
  bottom: 0px;
  content: "";
  height: 1px;
  left: 0;
  position: absolute;
  transform: scale(0, 1);
  transform-origin: center top;
  transition: transform .3s;
  width: 100%; 
}
/* リンクにホバーした際の下線の表示 */
.menu_wrapper a:hover::after {
  transform: scale(1, 1);
}

.menu{
    width:100%;
	overflow: hidden; /* heightを戻す */
    transition: 0.7s;
	margin-bottom: 1%;
}

.menuj{
	font-size: 10px;
	font-family: "Shippori Mincho", serif;
	font-weight: 400;
}

.sns{
	width:30px;
	float: right;
	padding-top:5px;
}

/* 親要素を全幅にする */
.slider-wrapper {
    width: 100%;
	margin-bottom: 30px;
}

/* 親要素を全幅にする */
.slider-wrapper2 {
    width: 100%;
	margin:0 auto;
}

/* bxSlider自体の枠線を消し、影やマージンをリセットする */
.bx-wrapper {
	position: relative;
    margin: 0 auto;
    border: none !important;
    box-shadow: none !important;
    margin-bottom: 0 !important;
}

.bx-wrapper, 
.bx-viewport {
    padding: 0 !important;
    margin: 0 !important;
    left: 0 !important;
    border: none !important;
    box-shadow: none !important;
    max-width: 100% !important; /* 横幅100%を強制 */
}

.bxslider {
    margin: 0;
    padding: 0;
    list-style: none;
}

/* 画像を横幅いっぱいに広げ、アスペクト比を維持する */
.bxslider img {
    width: 100%;
    height: auto;
    display: block;
}

.bxslider img:hover {
	opacity: 1.0;
}

.content-box{
	padding-bottom: 0%;
}

.contentbox_top_wrapper{
	width:100%;
	height: 100%;
	position: relative;
}

.contentbox_top{
	width:100%;
	padding: 0.5% 1% 0% 1%;
	box-sizing: border-box;
	overflow: hidden;
	z-index: 1;
}

.grid-sizer, .grid-item { 
	width: 16%;
	box-sizing: border-box;
	overflow: hidden;
	border-radius: 5px;
	margin:0.3332%;
}

.grid-item img{
	box-sizing: border-box;
	overflow: hidden;
	transition-duration: 0.5s;
}
	
.grid-item img:hover{
	transform: scale(1.2,1.2);
	transition-duration: 0.5s;
	box-sizing: border-box;
	overflow: hidden;
}

#footer_wrapper{
	width:100%;
	padding:3% 0;
	border-top:1px solid #000;
	background-color: #fff;
}

#footer_wrapper_top_wrapper{
	width:100%;
	background-color: #fff;
	z-index: 10;
	position: absolute;
	left:0;
	bottom:0;
	padding-top:100px;
}


#footer_wrapper_top{
	width:100%;
	padding:4% 0;
	border-top:1px solid #000;
	background-color: #fff;
	z-index: 10;
}


.footerlogo{
	width: 20%;
	margin:0 auto 10px;
}

.footercopy{
  width: 100%;
  text-align: center;
  color: #000;
  font-size: 10px;
}


.bx-controls-direction {
	display: inherit;
}
	
/* 左右の矢印共通スタイル */
.bx-wrapper .bx-controls-direction a {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background:rgba(0,78,162,0.70);
    color: #fff;           
    text-align: center;
    line-height: 50px;       /* 縦方向の中央寄せ */
    font-size: 20px;
    text-decoration: none;
    transition: all 0.3s ease; /* アニメーションを滑らかに */
    z-index: 100;
    text-indent: 0 !important;
}

/* 戻るボタンの設定 */
.bx-wrapper .bx-prev {
    left: 0px;
}
.bx-wrapper .bx-prev:hover {
    background: rgba(255, 255, 255, 0.8);
    color: #333;
}

/* 次へボタンの設定 */
.bx-wrapper .bx-next {
    right: 0px;
}
.bx-wrapper .bx-next:hover {
    background: rgba(255, 255, 255, 0.8);
    color: #000;
}

.mainarea{
	width:70%;
	margin:0 auto;
	padding:5% 0 5% 0;
}

.mainarea2{
	width:100%;
	margin:0 auto;
	padding:5% 15%;
	box-sizing: border-box;
  	background: url("img/creators/bg.jpg") 100% 0 no-repeat fixed;
  	background-size:cover;
  	background-position: center top;
}

.pagetitle{
  font-size: 30px;
  color: #000;
  font-weight: 700;
  line-height: 40px;
  text-align: center;
  margin-bottom: 10px;
}


.pagetitle2{
  font-size: 16px;
  color: #000;
  font-weight: 700;
}

.arrow_u_wrapper{
  width:100%;
  text-align: center;
  margin-bottom: 30px;
}

.arrow_u {
  position: relative;
  display: inline-block;
}
.arrow_u:before {
  content: '';
  width: 6px;
  height: 6px;
  border: 0;
  border-bottom: solid 2px #333;
  border-right: solid 2px #333;
  transform: rotate(45deg);
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  margin: auto;
}


.subtitle_wrapper1{
	width:100%;
	overflow: hidden;
    text-align: center;
	line-height: 100%;
    box-sizing: border-box;
	margin-bottom: 50px;
}

.subtitle_wrapper2 nav{
    box-sizing: border-box;
	font-family: "Roboto", sans-serif;
	font-weight: 400;
    font-size: 13px;
    line-height: 13px;
    overflow: hidden;
	text-align: center;
}

.subtitle_wrapper2 ul{
	display: flex;
	padding-left: 0px;
	justify-content: center;
}
	
.subtitle_wrapper2 li{
	list-style: none;
}

.subtitle_wrapper2 a {
  transition: 0.5s;
  display: block;
  text-decoration: none;
  color: #000;
  padding:15px 20px 15px 20px ;
  box-sizing: border-box;
  margin-right:0;
}

.subtitle_wrapper2 a:hover {
  transition: 0.5s;
  text-decoration: none;
  outline: none;
  opacity: 0.5;
}

.yearmidashi{
	position: relative;
	padding: 0 65px;
	text-align: center;
	font-size: 26px;
	line-height: 26px;
	font-weight: 700;
	margin-bottom: 50px;
}

.yearmidashi:before {
  position: absolute;
  top: calc(50% - 1px);
  left: 0;
  width: 100%;
  height: 1px;
  content: '';
  background: #000;
}

.yearmidashi span {
  position: relative;
  padding: 0 1em;
  background-color: #fff;
}

.workslist_wrapper {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 20px 1.333333%;
  margin-bottom: 100px;
}

.workslist {
  width: calc((100% - 1.333333% * 3) / 4);
  border-radius: 5px;
  overflow: hidden;
  line-height: 0;
  font-size: 0;
  display: block;
  
  /* Flexboxの中で高さが勝手に伸びるのを防ぐ */
  align-self: flex-start; 
}

.workslist a {
  display: block;
  width: 100%;
  /* height: 100%; を削除！ これがあると画像より長くなる場合があります */
  height: auto; 
  overflow: hidden;
  border-radius: 5px;
  line-height: 0;
}

.workslist img {
  width: 100%;
  height: auto; /* 画像本来の比率を守る */
  display: block;
  transition: transform 0.5s ease;
}

.workslist a:hover img {
  transform: scale(1.2);
}

.aboutarea{
	width:80%;
	margin:0 auto;
	text-align: center;
}

.pcbr {
	display:inline;
}

.about-title{
  font-size: 15px;
  color: #000;
  font-weight: 700;
  line-height: 15px;
  margin-bottom: 20px;
}

.intro-title-box{
	width:100%;
	line-height: 100%;
	box-sizing: border-box;
	padding:1.5%;
	margin-bottom: 50px;
	text-align: center;
	position: relative;
	display: inline-block;
}

.intro-title-box:before {
  content: '';
  position: absolute;
  bottom: -15px;
  display: inline-block;
  width: 150px;
  height: 2px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  background-color: black;
}

.intro-title{
  font-size: 24px;
  line-height:30px;
  font-weight: 700;
  color: #000;
}

.intro_day{
	width:100%;
	font-size:16px;
	line-height: 22px;
	font-weight: 700;
	text-align:center;
	color:#000;
	box-sizing: border-box;
	margin-bottom: 80px;
}

.img-responsive img{
	width: 100%;
	border-radius: 5px;
	overflow: hidden;
	border: 1px solid #666;
	box-shadow: 3px 4px 10px -1px rgba(0,0,0,0.3);
}

.intro-left{
	float: left;
	width: 41%;
}

.intro-right{
	float: right;
	width: 54%;
}

.intro_d_midashi{
	width:100%;
	font-size: 15px;
	font-weight: 700;
	margin-bottom:10px;
	font-family: "Roboto", sans-serif;
}

.arrow_s {
  position: relative;
  display: inline-block;
  padding-left: 12px;
}

.arrow_s:before {
  content: '';
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px 0 6px 8px;
  border-color: transparent transparent transparent #333;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  margin: auto;
}

.intro_btn{
	width:100%;	
	font-size: 12px;
	text-align: center;
	margin-bottom: 10px;
	overflow: hidden;
	border-radius: 5px;
}


.intro_btn a{
	display: block;
	background-color: #000;
	color: #fff;
	padding:1.5%;
	text-align: center;
	font-size: 11px;
	font-family: "Roboto", sans-serif;
	font-weight: 500;
	text-decoration: none;
	letter-spacing: 1px;
	border:1px solid #000;
}

.intro_btn a:hover{
    -webkit-transition: 0.7s;
    -moz-transition: 0.7s;
    -o-transition: 0.7s;
    transition: 0.7s;
	background-color:#fff;
	color:#000;
	border:1px solid #000;
}

.movie-wrap {
  position: relative;
  padding-bottom: 56.25%;
  padding-top: 30px;
  height: 0;
  overflow: hidden;
	border:1px solid #000;;
	box-shadow: 3px 4px 10px -1px rgba(0,0,0,0.3);
}

.movie-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
	
.creators_left{
	width:30%;
	float: left;
}
	
.creators_right{
	width:65%;
	float: right;
}

.c_name_wrap{
  font-size: 20px;
  margin: 0;
  color: #000;
  font-weight: bold;
  line-height: 1.5;
  margin-bottom: 20px;
}
	
.c_name1{
	width:100%;
	font-size: 30px;
	line-height: 30px;
	margin-bottom: 10px;
}
	
.c_name2{
	width:100%;
	font-size: 24px;
	line-height: 24px;
	font-weight: 400;
}

.creators_text{
	width:100%;
	font-size: 15px;
	line-height: 25px;
	margin-bottom: 30px;
}

.creators_midashi{
    width:100%;
    margin-bottom: 20px;
    font-size: 20px;
    font-weight: 800;
     position: relative;
     padding-bottom: 0.5em;
     border-bottom: 2px solid #fff;
}
 
.creators_midashi::after {
     position: absolute;
     content: " ";
     border-bottom: solid 3px #000;
     bottom: -3px;
     width:20%;
     display: block;
}

.creators_midashi_s{
    width:100%;
    margin-bottom: 10px;
    font-size: 12px;
    font-weight: bold;
    color: #fff;
}

dl.list {
	width:100%;
	line-height:150%;
	border-top: none;
	margin-bottom:10px;
	font-size:12px;
	border-bottom: 1px dotted #ccc;
	padding-bottom: 5px;
}

dl.list dt {
	margin: 0;
	width: 15%;
	float: left;
}
	
dl.list dd {
	margin: 0 0 0 15%;
}

dl.list a{
	color: #000;
	text-decoration: underline;
	transition: 0.5s;
}

dl.list a:hover{
	color: #fff;
	text-decoration: underline;
	transition: 0.5s;
}

.c_jusyo1{
		width:100%;
		margin-bottom: 7px;
		font-size: 13px;
		line-height: 13px;
		font-weight: bold;
		font-feature-settings: "palt";
	}
	
.c_jusyo2{
		width:100%;
		margin-bottom: 14px;
		padding-bottom: 10px;
		font-size: 13px;
		line-height: 13px;
		border-bottom: 1px dotted #ccc;
	}
	
.c_jusyo2 a{
	color: #000;
	text-decoration: underline;
	transition: 0.5s;
}
	
.c_jusyo2 a:hover{
	color: #fff;
	text-decoration: underline;
	transition: 0.5s;
}





@media screen and (max-width:1024px){
	
.brtext::before {
	content: "\A" ;
	white-space: pre ;
}
	
.spview{
	display: inherit;
}

#header_wrapper{
	width:100%;
	overflow: hidden;
    text-align: center;
	line-height: 100%;
	z-index: 100;
    background-color:#fff;
    box-sizing: border-box;
	padding:14% 0 0 0;
}

.headerlogo{
	width:80%;
	float: none;
	padding:0;
	margin:0 auto 40px;
}

/* overlay-styles.css */
.hamburger-overlay {
	position: fixed;
	top: 0px;
	right: 0px;
	z-index: 1000;
	width: 50px;
	height: 50px;
	border: none;
	background-color:#004ea2;
	transition: background-color 1s ease;
	cursor: pointer;
	border-radius: 0 0 0 5px;
}

.hamburger-overlay__line {
  position: absolute;
  left: 12px;
  width: 30px;
  height: 2px;
  background-color: #fff;
  transition: all .6s;
}

.hamburger-overlay.scrolled {
  background-color: #004ea2; /* スクロール後の色 */
  box-shadow:none;
}

.topbnrbtnsns{
	width:100%;
	float: none;
	overflow: hidden;
	padding-top:0;
	margin-right:0;
	box-sizing: border-box;
	margin:0 auto;
	padding:3% 3%;
	border-top:1px solid #000;
	border-bottom:1px solid #000;
}

.topbnr_wrapper{
 	width:90%;
	float: left;
	overflow: hidden;
	margin-right: 0;
 }

.sns{
	width:6.2%;
	float: right;
	padding-top:0;
}
	
/* 親要素を全幅にする */
.slider-wrapper {
    width: 100%;
	margin-bottom: 10px;
}
	

.grid-sizer, .grid-item { 
	width: 31.33642%;
	box-sizing: border-box;
	overflow: hidden;
	border-radius: 5px;
	margin:1%;
}
	
.contentbox_top{
	width:100%;
	padding: 0 3% 0% 3%;
	box-sizing: border-box;
	overflow: hidden;
	z-index: 1;
}

#footer_wrapper{
	width:100%;
	padding:8% 0;
	border-top:1px solid #000;
}

#footer_wrapper_top_wrapper{
	width:100%;
	background-color: #fff;
	z-index: 10;
	position: absolute;
	left:0;
	bottom:0;
	padding-top:30px;
}


#footer_wrapper_top{
	width:100%;
	padding:8% 0;
	border-top:1px solid #000;
	background-color: #fff;
	z-index: 10;
}

.footerlogo{
	width:80%;
	margin:0 auto 20px;
}
	
.footercopy{
  width: 100%;
  text-align: center;
  color: #000;
  font-size: 10px;
  line-height: 14px;
}
	

/* 左右の矢印共通スタイル */
.bx-controls-direction {
	display: none;
}

.mainarea{
	width:80%;
	margin:0 auto;
	padding:10% 0;
}

.mainarea2{
	width:100%;
	margin:0 auto;
	padding:10% 10%;
	box-sizing: border-box;
  	background:none;
}

.Section-Image-CREATOR {
  position: fixed;
  z-index: -1;
  display: block;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-size: cover;
  background-position: center center;
}
	
.Section-Image-CREATOR{
  background-image: url("img/creators/bgsp.jpg");
  background-color: #000;
}
	
.workslist_wrapper {
  gap: 15px 2%;
}
	
.workslist {
  width: calc((100% - 2%) / 2);
}
	
.pcbr {
	display:none;
}

.intro-title{
  font-size: 20px;
  line-height:26px;
  font-weight: 700;
  color: #000;
}

.img-responsive img{
	width: 100%;
	border-radius: 5px;
	overflow: hidden;
	border: 1px solid #666;
	box-shadow: 3px 4px 10px -1px rgba(0,0,0,0.3);
}

.intro-left{
	float: none;
	width: 100%;
	margin-bottom: 30px;
}

.intro-right{
	float: none;
	width: 100%;
}
.creators_left{
	width:100%;
	float: none;
	margin-bottom: 20px;
}
	
.creators_right{
	width:100%;
	float: none;
}

.c_name_wrap{
  font-size: 20px;
  margin: 0;
  color: #000;
  font-weight: bold;
  line-height: 1.5;
  margin-bottom: 20px;
}
	
.c_name1{
	width:100%;
	font-size: 30px;
	line-height: 30px;
	margin-bottom: 10px;
}
	
.c_name2{
	width:100%;
	font-size: 24px;
	line-height: 24px;
	font-weight: 400;
}

.creators_text{
	width:100%;
	font-size: 15px;
	line-height: 25px;
	margin-bottom: 30px;
}

.creators_midashi{
    width:100%;
    margin-bottom: 20px;
    font-size: 20px;
    font-weight: 800;
     position: relative;
     padding-bottom: 0.5em;
     border-bottom: 2px solid #fff;
}
 
.creators_midashi::after {
     position: absolute;
     content: " ";
     border-bottom: solid 3px #000;
     bottom: -3px;
     width:20%;
     display: block;
}

.creators_midashi_s{
    width:100%;
    margin-bottom: 10px;
    font-size: 12px;
    font-weight: bold;
    color: #fff;
}

dl.list {
	width:100%;
	line-height:150%;
	border-top: none;
	margin-bottom:10px;
	font-size:12px;
	border-bottom: 1px dotted #ccc;
	padding-bottom: 5px;
}

dl.list dt {
	margin: 0;
	width: 15%;
	float: left;
}
	
dl.list dd {
	margin: 0 0 0 15%;
}

dl.list a{
	color: #000;
	text-decoration: underline;
	transition: 0.5s;
}

dl.list a:hover{
	color: #fff;
	text-decoration: underline;
	transition: 0.5s;
}

.c_jusyo1{
		width:100%;
		margin-bottom: 7px;
		font-size: 13px;
		line-height: 13px;
		font-weight: bold;
		font-feature-settings: "palt";
	}
	
.c_jusyo2{
		width:100%;
		margin-bottom: 14px;
		padding-bottom: 10px;
		font-size: 13px;
		line-height: 13px;
		border-bottom: 1px dotted #ccc;
	}
	
.c_jusyo2 a{
	color: #000;
	text-decoration: underline;
	transition: 0.5s;
}
	
.c_jusyo2 a:hover{
	color: #fff;
	text-decoration: underline;
	transition: 0.5s;
}
	
/* 親要素を全幅にする */
.slider-wrapper2 {
    width: 100%;
	margin:0 auto;
}
	
}