@charset "UTF-8";
/*================================
 基本設定
================================*/
*{
	margin: 0;
	padding: 0;
	text-decoration: none;
	list-style: none;
}

body{
	background-color: #fff;
	font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, "sans-serif";
	color: #3d2004;
}

/*================================
 ヘッダー
================================*/
.header{
	width: 100%;
	padding: 30px 6vw;
	box-sizing: border-box;
}

.header_inner{
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
}

h1 a img{
	width: 80px;
	height: 80px; 
}

.header_nav ul{
	display: flex;
}

.header_nav ul li{
	margin-left: 60px;
}

.header_nav ul li a{	
	font-family: "Zen Maru Gothic", serif;
	font-size: 20px;
	font-weight: normal; 
	color: #3d2004;
    transition: .3s;
}

.header_nav ul li a:hover{
	color: #3d2004;
	opacity: 0.6;
}

.page_border a{
    border-bottom: 1px solid #3d2004;
}

.page_border a:hover{
    border-bottom: 1px solid #3d2004;
    opacity: 0.6;
}

.main_visual{
	background: url("../images/bg_main_visual.jpg")no-repeat;
	width: 100%;
	height: 830px;
	background-size: cover;
	background-position: center;
}
	
/*================================
 タイトル
================================*/
.title h2{
	font-family: "Zen Maru Gothic", serif;
	font-size: 220px;
	font-weight: normal;
	color: #fff;
	line-height: 1;
	padding-left: 150px;
	padding-top: 50px;
}

.title p{
	font-family: "Zen Maru Gothic", serif;
	font-size: 150px;
	font-weight: 600;
	color: #fff;
	padding-left: 155px;
}

/*================================
 タイトルアニメーション
================================*/
.title_1{
	animation: slideIn 1s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

.title_2{
	animation: slideIn 2s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

@keyframes slideIn {
	0%{
		transform: translateX(180px);
		opacity: 0;
	}
	100%{
		transform: translateX(0);
	}
	40%,100%{
		opacity: 1;
	}
}

/*================================
 下スクロール
================================*/
/* スクロールダウンの位置 */
.scroll {
	font-family: "Zen Maru Gothic", serif;
	font-size: 20px;
	padding-left: 5px; 
	position: absolute;
	right: 50%;
	top: 10%;
	writing-mode: vertical-rl;
	margin-top: 650px;
}
/* 線のアニメーション部分 */
.scroll::before {
	animation: scroll 2s infinite;
	background-color: #000;
	bottom: -115px;
	content: "";
	height: 100px;
	left: 0;
	margin: auto;
	position: absolute;
	right: 0;
	width: 1px;
}
/* 線のアニメーション */
@keyframes scroll {
	0%{
		transform: scale(1, 0);
		transform-origin: 0 0;
	}
	50%{
		transform: scale(1, 1);
		transform-origin: 0 0;
	}
	51%{
		transform: scale(1, 1);
		transform-origin: 0 100%;
	}
	100%{
		transform: scale(1, 0);
		transform-origin: 0 100%;
	}
}

/*================================
 私のこと
================================*/
h3.sub_title{
	font-family: "Zen Maru Gothic", serif;
	font-size: 40px;
	font-weight: 600; 
	color: #3d2004;
	writing-mode: vertical-rl;
	text-orientation: sideways;
	padding-right: 190px;
	height: 400px;
}

h3.sub_title span{
	font-size: 20px;
	font-weight: 600;
	vertical-align: 5px;
}

div#about{
	width: 1400px;
	height: 150px;
	margin: 240px auto 0 auto;
	padding-top: 150px;
	display: flex;
	position: relative;
}

div#about_title img{
	width: 1000px;
	margin-bottom: 50px;
	margin-top: -5px;
}

div#about_title p{
	font-size: 22px;
	padding-left: 2px;
}

div#button_1{
	margin-left: 1250px;
	margin-top: 230px;
	margin-bottom: -250px;
}

/*================================
 MOREボタン
================================*/
.button-text{
	color: #3d2004;
}

.arrow-extend {
	padding: 90px;
	color: #fff;
	overflow: hidden;
	position: relative;
	z-index: 1;
}

.arrow-extend::before {
	content: '';
	width: 60px;
	height: 60px;
	background-color: #ffa800;
	border-radius: 100px;
	position: absolute;
	left: 0;
	top: 50%;
  	transform: translateY(-50%);
	transition: .4s;
	z-index: -1;
}

.arrow-extend::after {
	content: '';
	width: 8px;
	height: 8px;
	border-right: 2px solid #fff;
	border-bottom: 2px solid #fff;
	position: absolute;
	left: 24px;
	top: 50%;
	transform: translateY(-50%) rotate(-45deg);
}

.arrow-extend:hover::before {
	width: 100%;
}

/*================================
 制作物
================================*/
div#works_wrapper{
	width: 1400px;
	height: 1400px;
	margin: 240px auto 0 auto;
	padding-top: 250px;
	display: flex;
}

div#works_wrapper ul{
	width: 1400px;
	height: 1400px;
	display: flex;
	flex-wrap: wrap;
}

div#works_wrapper ul li {
	width: 47%;
	height: 490px;
}

div#works_wrapper img{
	width: 480px;
	box-shadow: 8px 8px 15px #f9af68;
	border-radius: 13px;
}

div#works_wrapper img:hover{
	transform: scale(1.04);
	transition: .4s;
}

div#works_wrapper dd h4{
	font-size: 22px;
	font-weight: 600;
	color: #3d2004;
	padding-top: 8px;
	line-height: 1.4;
}

div#works_wrapper dd p{
	font-size: 15px;
	font-weight: 400;
	color: #ff4800;
}

div#background{
	background: url("../images/bg_gradation.png")no-repeat;
	width: 100%;
	height: 1940px;
	background-size: cover;
	background-position: center;
}

div#button_2{
	margin-left: 1250px;
	margin-top: -250px;
}
/*================================
 コンタクト
================================*/
div#contact{
	width: 1400px;
	height: 350px;
	margin: 0 auto;
	margin-top: 200px;
	display: flex;
}

div#address_wrapper{
    width: 1020px;
    height: 350px;
    text-align: center;
}

div#contact p{
	font-size: 22px;
	line-height: 1.5;
	padding-bottom: 20px;
	margin-top: -5px;
}

div#address a{
	font-size: 25px;
	font-weight: 600; 
	color: #fff;
    text-align: center;
	line-height: 80px;
    width: 500px;
	height: 80px;
    background:#ffa800;
	border: 1px solid #ffa800;
	border-radius: 50px;
    display: block;
    margin: 0 auto;
}

div#address a {
  background: #fff;
  color: #ffa800;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

div#address a::after {
  background: #ffa800;
  position: absolute;
  top: 0;
  left: 0;
  content: '';
  width: 100%;
  height: 100%;
  transform: scale(0, 1);
  transform-origin: left top;
  transition: .2s cubic-bezier(0.45, 0, 0.55, 1);
  z-index: -1;
}

div#address a:hover {
  color: #fff;
}

div#address a:hover::after {
  transform: scale(1, 1);
}

/*================================
 フッター
================================*/
footer{
	background: url("../images/bg_footer.jpg")no-repeat;
	width: 100%;
	height: auto;
	background-size: cover;
	background-position: center;
}

div#footer_inner{
	padding: 50px 6vw;
	height: 120px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
}

div#footer_logo{
	display: flex;
}

div#footer_logo img{
	width: 80px;
	height: 80px; 
	margin-right: 10px;
	margin-top: -4px;
}

div#footer_logo p{
	font-family: "Zen Maru Gothic", serif;
	font-size: 60px;
	font-weight: normal; 
	color: #fff;
	line-height: 0.5;
	text-align: left;
}

div#footer_logo p span{
	font-size: 30px;
	font-weight: 600;
	padding-left: 1px;
}

div#footer_inner nav ul{
	display: flex;
}

div#footer_inner nav ul li{
	margin-left: 60px;
}

div#footer_inner nav ul a{
	font-family: "Zen Maru Gothic", serif;
	font-size: 20px;
	font-weight: normal; 
	color: #3d2004;
}

div#footer_inner nav ul a:hover{
	color: #3d2004;
	opacity: 0.5;
}

footer p{
	font-family: "Zen Maru Gothic", serif;
	font-size: 15px;
	font-weight: 600; 
	color: #fff;
	text-align: center;
	padding-bottom: 20px;
}

/*================================
 追従するトップへ戻るボタン
================================*/
html {
  scroll-behavior: smooth;
}

.page-top {
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    right: 30px;
    bottom: 30px;
    width: 50px;
    height: 50px;
    background-color: #3d2004;
    border-radius: 100%;
    cursor: pointer;
    z-index: 5;
    opacity: 0;
    visibility: hidden;
    transform: translateY(50px);
    transition: opacity 1s,visibility 1s, transform 1s;
}

.page-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0px);
}

.page-top:hover {
    opacity: .7;
}
.page-top__arrow {
    height: 15px;
    width: 15px;
    border-top: 2px solid #fff;
    border-left: 2px solid #fff;
    transform: translateY(3px) rotate(45deg);
}
/*================================
 aboutページ
================================*/
.about_photo{
    width: 900px;
    height: 630px;
    box-shadow: 8px 8px 15px #f9af68; 
    margin: 0 auto;
    position: relative;
    z-index: 100;
    animation: 1s fadeup ease-in-out forwards
}

/* メイン画像アニメーション */
@keyframes fadeup {
  0% {
    opacity: 0;
    transform: translateY(-30px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* 画像裏アニメーション */
.loop_wrap{
    display: flex;
    width: 100vw;
    height: 300px;
    overflow: hidden;
    margin-top: -350px;
    position: absolute;
    z-index: 10;
}

.loop_wrap img{
    width: 2246px;
    height: 134px;
    padding-left: 150px;
}

@keyframes loop {
  0% {
    transform: translateX(100%);
  }
  to {
    transform: translateX(-100%);
  }
}

@keyframes loop2 {
  0% {
    transform: translateX(0);
  }
  to {
    transform: translateX(-200%);
  }
}

.loop_wrap img:first-child {
  animation: loop 120s -60s linear infinite;
}

.loop_wrap img:last-child {
  animation: loop2 120s linear infinite;
}

/* 名前・プロフィール */
.profile{
    text-align: center;
    margin: 50px;
}

h4.name{
    font-size: 28px;
    font-weight: 500;
    margin-bottom: 20px;
    letter-spacing: 0.1em;
}

h4.name span{
    font-family: "Zen Maru Gothic", serif;
    font-size: 15px;
    font-weight: normal;
    vertical-align: middle;
}

.profile p{
    font-size: 15px;
    font-weight: 500;
    line-height: 27px;
    letter-spacing: 0.05em;
}

/*================================
 バイオグラフィー
================================*/
div#about_wrap{
    width: 1200px;
    height: auto;
    margin: 0 auto;
}

h3.about_sub_title1{
	font-family: "Zen Maru Gothic", serif;
	font-size: 50px;
	font-weight: 600; 
	color: #3d2004;
    padding-top: 330px;
    padding-bottom: 120px;
}

h3.about_sub_title1 span{
	font-size: 20px;
	font-weight: 600;
	vertical-align: 5px;
}

div#background_about{
	background: url("../images/bg_about_s.png")no-repeat;
	width: 100%;
	height: 1400px;
	background-size: cover;
	background-position: center;
    margin-top: -100px;
}

.side-scroll-list-wrapper {
    position: relative;
}

.side-scroll-list {
    position: absolute;

}

.side-scroll-item img{
    width: auto;
    height: 380px;
    margin-left: 270px;
}

/*================================
 私の強み
================================*/
h3.about_sub_title2{
	font-family: "Zen Maru Gothic", serif;
	font-size: 50px;
	font-weight: 600; 
	color: #3d2004;
    margin-bottom: 120px;
    }

h3.about_sub_title2 span{
	font-size: 20px;
	font-weight: 600;
	vertical-align: 5px;
}

div#strength_wrap ul{
    display: flex;
    justify-content: space-between;
}

div#strength_wrap ul li{
    width: 350px;
    height: 350px;
}

div#strength_wrap ul li dt{
    font-family: "Zen Maru Gothic", serif;
	font-size: 40px;
	font-weight: 700; 
	color: #3d2004;
    text-align: center;
    line-height: 25px;
    border-bottom: 1px solid #3d2004;
    padding-bottom: 20px;
}

div#strength_wrap ul li dt span{
    font-size: 15px;
	font-weight: 600; 
}

div#strength_wrap ul li dd{
    font-size: 15px;
    font-weight: 500;
    line-height: 27px;
    letter-spacing: 0.05em; 
    padding-top: 20px;
    text-align: justify;
    /* text-justify: inter-ideograph; */
}

div#background_strength{
    width: 1300px;
    height: 680px;
    margin: 0 auto;
    margin-top: -120px;
    position: relative;
}

div#background_logo img{
    width: 780px;
    height: auto;
    position: absolute;
    top: -20px;
    right: -80px;
}

/*================================
 制作物その他
================================*/
.header_works{
    margin-bottom: 300px;
}

div#works_wrap{
    width: 1200px;
    height: auto;
    margin: 0 auto;
    margin-top: -350px;
}

h3.works_sub_title{
	font-family: "Zen Maru Gothic", serif;
	font-size: 50px;
	font-weight: 600; 
	color: #3d2004;
    padding-top: 120px;
    padding-bottom: 80px;
}

h3.works_sub_title span{
	font-size: 20px;
	font-weight: 600;
	vertical-align: 5px;
}

div#works_wapper_2{
	width: 1400px;
	height: 1400px;
	display: flex;
}

div#works_wapper_2 ul{
	width: 1400px;
	height: 1400px;
	display: flex;
	flex-wrap: wrap;
}

div#works_wapper_2 ul li {
	width: 47%;
	height: 490px;
}

div#works_wapper_2 img{
	width: 480px;
	box-shadow: 8px 8px 15px #f9af68;
	border-radius: 13px;
}

div#works_wapper_2 img:hover{
	transform: scale(1.04);
	transition: .4s;
}

div#works_wapper_2 dd h4{
	font-size: 22px;
	font-weight: 600;
	color: #3d2004;
	padding-top: 8px;
	line-height: 1.4;
}

div#works_wapper_2 dd p{
	font-size: 15px;
	font-weight: 400;
	color: #ff4800;
}

div#works_wrap_bg{
    background: url("../images/bg_gradation.png")no-repeat;
	width: 100%;
	height: 1940px;
    margin-bottom: -110px;
	background-size: cover;
	background-position: center;
    position: relative;
}

div#works_inner img{
    width: 900px;
    position: absolute;
    top: -150px;
    right: 40px;
    z-index: -1;
    animation: 1s fadeup ease-in-out forwards;
}
/*================================
 イラスト
================================*/
div#illustration_wrap{
    width: 1200px;
    height: 190px;
    margin: 0 auto;
}

.illustration_title{
    font-family: "Zen Maru Gothic", serif;
	font-size: 50px;
	font-weight: 600; 
	color: #3d2004;
    padding-bottom: 15px;
}

h3.illustration_title span{
	font-size: 20px;
	font-weight: 600;
	vertical-align: 5px;
}

div#illustration_wrap p{
    font-size: 15px;
    font-weight: 500;
    line-height: 27px;
    letter-spacing: 0.05em;
}

/* イラスト スクロール */
	@keyframes infinity-scroll-left {
from {
  transform: translateX(0);
}
  to {
  transform: translateX(-100%);
}
}

.scroll-hight{
    height: 600px;
}

.scroll-infinity__wrap {
  display: flex;
  overflow: hidden;
}

.scroll-infinity__list {
  display: flex;
  list-style: none;
  padding: 0;
}

.scroll-infinity__list--left {
  animation: infinity-scroll-left 80s infinite linear 0.5s both;
}

.scroll-infinity__item a>img {
    width: auto;
    height: 210px;
    box-shadow: 8px 8px 15px #f9af68;
    margin-left: 70px;
    margin-bottom: 30px;
}

.scroll-infinity__item a>img:hover{
    transform: scale(1.04);
	transition: .4s;
}

@keyframes infinity-scroll-right {
from {
  transform: translateX(-100%);
}
  to {
  transform: translateX(0%);
}
}
.scroll-infinity__list--right{
  animation :infinity-scroll-right 80s infinite linear 0.5s both;
}

/*================================
 制作物01
================================*/
.works_photo_logo{
    width: 1200px;
    height: auto;
    margin: 0 auto;
    margin-top: 30px;
    text-align: center;
}

.works_photo_logo img{
    width: 700px;
    height: auto;
    z-index: 100;
    animation: 1s fadeup ease-in-out forwards;
    margin-bottom: 50px;
}

.works_various_title_logo{
    text-align: center;   
}

.works_various_title_logo h2{
    font-size: 40px;
    font-weight: bold;
    padding-top: 300px;
}

.works_various_wrap2-logo{
    background: url("../images/bg_about_s.png")no-repeat;
	width: 100%;
	height: 1400px;
	background-size: cover;
	background-position: center;
    margin-top: -130px;
    margin-bottom: 20px;
}

.works_various_wrap2-2-logo{
    width: 1200px;
    height: 1000px;
    margin: 0 auto;
    padding-top: 90px;
    display: flex;
}

.logo_various_imagewrap{
    width: 1200px;
    height: 500px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    margin-top: -100px;
}

.works_various_image2 img{
    width: 70%;
    height: auto;
    padding-left: 70px;
    margin-bottom: 150px;
}

/* 前後ページ矢印 */
.page_arrow_wrap{
    width: 1200px;
    margin: 0 auto;
    height: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 120px;
}

.page_arrow_wrap h3{
    font-family: "Zen Maru Gothic", serif;
	font-size: 30px;
	font-weight: 600; 
	color: #3d2004;
}   

.page_arrow a{
    font-family: "Zen Maru Gothic", serif;
	font-size: 20px;
	font-weight: normal; 
	color: #3d2004;
    display: block;
    display: flex;
    transition: .3s;
}

.page_arrow a:hover{
    color: #3d2004;
	opacity: 0.6;
}

.page_arrow a img{
    height: 21px;
    padding-top: 2px;
    margin: 0 8px;
}

/*================================
 制作物02
================================*/
.works_various_wrap1{
    width: 100%;
    height: auto;
    position: relative;
    margin-top: -50px;
}

.works_various_title_web h2{
    font-size: 40px;
    font-weight: bold;
    line-height: 48px;
    position: absolute;
    left: 280px;
    top: 200px;
}

.works_photo_web{
    text-align: center;
}

.works_photo_web img{
    width: 1300px;
    height: auto;
    z-index: 100;
    animation: 1s fadeup ease-in-out forwards;
}

.works_various_wrap2{
	background: url("../images/bg_about_s.png")no-repeat;
	width: 100%;
	height: 1400px;
	background-size: cover;
	background-position: center;
    margin-top: -250px;
}

.works_various_wrap2-2{
    width: 1200px;
    height: 1000px;
    margin: 0 auto;
    padding-top: 380px;
    display: flex;
}

.works_various_explanation-1 ul{
    width: 330px;
    height: 150px;
    background-color: #fff;
    border-radius: 10px;
    padding: 20px 20px;
    margin-right: 80px;
}

.works_various_explanation-1 ul li{
    font-size: 18px;
    font-weight: 500;
    line-height: 30px;
}

.works_various_explanation-2 ul{
    width: 740px;
    height: 800px;
}

.works_various_explanation-2 ul li dl dt{
    font-size: 23px;
    font-weight: 600;
    border-bottom: 1px solid #3d2004;
    padding-bottom: 10px;
}

.works_various_explanation-2 ul li dl dd{
    font-size: 17px;
    font-weight: 500;
    line-height: 23px;
    letter-spacing: 0.05em; 
    padding-top: 10px;
    padding-bottom: 50px;
    text-align: justify;
    /* text-justify: inter-ideograph; */
}

.works_various_imagewrap{
    width: 1200px;
    height: 2000px;
    margin: 0 auto;
    margin-top: -200px;
    display: flex;
}

.works_various_image1 img{
    width: 90%;
    height: auto;
    box-shadow: 8px 8px 15px #f9af68;
}

/*================================
 制作物03
================================*/
.works_photo_DM{
    width: 1200px;
    height: auto;
    margin: 0 auto;
    margin-top: 30px;
    text-align: center;
}

.works_photo_DM img{
    width: 40%;
    height: auto;
    box-shadow: 8px 8px 15px #f9af68;
    z-index: 100;
    animation: 1s fadeup ease-in-out forwards;
    margin-bottom: -100px;
}

/*================================
 制作物04
================================*/
.works_photo_banner{
    width: 1200px;
    height: auto;
    margin: 0 auto;
    margin-top: 40px;
    text-align: center;
}

.works_photo_banner img{
    width: 1100px;
    height: auto;
    box-shadow: 8px 8px 15px #f9af68;
    z-index: 100;
    animation: 1s fadeup ease-in-out forwards;
}

.works_various_title_banner{
    text-align: center;
}

.works_various_title_banner h2{
    font-size: 40px;
    font-weight: bold;
    line-height: 48px;
    margin-top: 70px;
}

.works_various_title_banner p{
    font-size: 15px;
    font-weight: 500;
    color: #967656;
    line-height: 27px;
    letter-spacing: 0.05em;
    margin-bottom: 150px;
}

.banner_wrap2{
    margin-top: -470px;
}

.banner_various_imagewrap{
    width: 1200px;
    height: 750px;
    margin: 0 auto;
    display: flex;
    margin-top: -290px;
}

.banner_various_imagewrap img{
    box-shadow: 8px 8px 15px #f9af68;
}

.banner_various_imagewrap p{
    font-size: 15px;
    font-weight: 500;
    color: #967656;
    line-height: 20px;
    letter-spacing: 0.05em;
    padding-top: 10px;
    padding-bottom: 98px;
}

.works_various_image4{
    width: 200px;
    height: auto;
    margin: 0 100px;
}

.works_various_image4_wrap{
    width: 728px;
    height: auto;
    padding-top: 130px;
}

/*================================
 制作物06
================================*/
.works_photo_banner img{
    width: 900px;
}

.banner_various_wrap{
    width: 1200px;
    height: 1200px;
    margin: 0 auto;
    margin-top: -200px;
}

.banner_various_wrap p{
    font-size: 15px;
    font-weight: 500;
    color: #967656;
    line-height: 27px;
    letter-spacing: 0.05em;
    padding-left: 120px;
    margin-bottom: -30px;
}

.works_various_image6_wrap{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 300px;
}

.works_various_image6_wrap img{
    width: 40%;
    margin-left: 50px;
    margin-bottom: 50px;
    height: auto;
    box-sizing: border-box;
}

/*================================
 イラスト　LINEスタンプ
================================*/
.works_il_main{
    width: 1200px;
    height: auto;
    margin: 0 auto;
    margin-top: 30px;
    text-align: center;
}

.works_il_main img{
    width: 460px;
    height: auto;
    z-index: 100;
    animation: 1s fadeup ease-in-out forwards;
    margin-bottom: 30px;
}

.works_il_01{
    text-align: center;
    margin-top: -450px;
    margin-bottom: 180px;
}

.works_il_01 img{
    width: 800px;
    height: auto;
    box-shadow: 8px 8px 15px #f9af68;
}

/*================================
 イラスト　BABYMETALアイコン
================================*/
.works_il_main2{
    width: 1200px;
    height: auto;
    margin: 0 auto;
    margin-top: 30px;
    text-align: center;
}

.works_il_main2 img{
    width: 900px;
    height: auto;
    z-index: 0;
    animation: 1s fadeup ease-in-out forwards;
    margin-bottom: 50px;
}

.works_il_wrap{
    width: 1200px;
    height: 500px;
    display: flex;
    margin: 0 auto;
    justify-content: space-between;
    margin-top: -700px;
    margin-bottom: 200px;
}

.works_il_image1 img{
    width: auto;
    height: 500px;
    margin-bottom: 150px;
    box-shadow: 8px 8px 15px #f9af68;
}

.works_il_image2 img{
    width: auto;
    height: 500px;
    margin-bottom: 150px;
    box-shadow: 8px 8px 15px #f9af68;
}

/*================================
 イラスト　BABYMETALハロウィン
================================*/
.works_il_main3{
    width: 1200px;
    height: auto;
    margin: 0 auto;
    margin-bottom: -300px;
    text-align: center;
}

.works_il_main3 img{
    width: 800px;
    height: auto;
    z-index: 0;
    animation: 1s fadeup ease-in-out forwards;
    margin-bottom: 100px;
    box-shadow: 8px 8px 15px #f9af68;
}

/*================================
 イラスト　BABYMETALちびキャラ
================================*/
.works_il_wrap1{
    width: 900px;
    height: 500px;
    display: flex;
    margin: 0 auto;
    justify-content: space-between;
    margin-top: -700px;
}

.works_il_wrap2{
    width: 900px;
    height: 500px;
    display: flex;
    margin: 0 auto;
    justify-content: space-between;
    margin-bottom: 100px;
}

.works_il_image3 img{
    width: 400px;
    height: auto;
    margin-bottom: 150px;
    box-shadow: 8px 8px 15px #f9af68;
}

/*================================
 イラスト　BABYMETAL メタルギャラクシー
================================*/
.works_il_main4{
    width: 1200px;
    height: auto;
    margin: 0 auto;
    margin-top: 30px;
    text-align: center;
}

.works_il_main4 img{
    width: 460px;
    height: auto;
    z-index: 100;
    animation: 1s fadeup ease-in-out forwards;
    margin-bottom: -100px;
}

.works_il_image4{
    text-align: center;
    margin-top: -670px;
    margin-bottom: 180px;
}

.works_il_image4 img{
    width: 700px;
    height: auto;
    box-shadow: 8px 8px 15px #f9af68;
}

/*================================
 イラスト　BABYMETAL the other one
================================*/
.works_il_wrap3{
    width: 900px;
    height: 500px;
    display: flex;
    margin: 0 auto;
    justify-content: space-between;
    margin-top: -700px;
}

.works_il_main5{
    width: 1200px;
    height: auto;
    margin: 0 auto;
    text-align: center;
}

.works_il_main5 img{
    width: 500px;
    height: auto;
    z-index: 0;
    box-shadow: 8px 8px 15px #f9af68;
    animation: 1s fadeup ease-in-out forwards;
    margin-bottom: -100px;
}

.works_il_image6 img{
    width: auto;
    height: 450px;
    margin-bottom: 150px;
    box-shadow: 8px 8px 15px #f9af68;
}

.movie{
    text-align: center;
}

.movie video{
    width: 400px;
    /* transform: rotate(180deg); */
    margin-top: 50px;
    margin-bottom: 150px;
}

/*================================
 イラスト　BABYMETAL SUMMER
================================*/
.works_il_image7{
    text-align: center;
    margin-top: -670px;
    margin-bottom: 180px;
}

.works_il_image7 img{
    width: 500px;
    height: auto;
    box-shadow: 8px 8px 15px #f9af68;
}

/*================================
 イラスト　BABYMETAL ステッカー
================================*/
.works_il_main6{
    width: 1200px;
    height: auto;
    margin: 0 auto;
    text-align: center;
}

.works_il_main6 img{
    width: 500px;
    height: auto;
    z-index: 0;
    box-shadow: 8px 8px 15px #f9af68;
    animation: 1s fadeup ease-in-out forwards;
    margin-bottom: -50px;
}

.movie2{
    text-align: center;
    margin-top: -700px;
    margin-bottom: 180px;
}

.movie2 video{
    width: 500px;
    box-shadow: 8px 8px 15px #f9af68;
}

/*================================
 ///タブレット用///
================================*/
@media (max-width: 960px){
/*---------- ヘッダー ----------*/
    .header{
        width: 100%;
        padding: 0px 5vw;
        box-sizing: border-box;
    }

    h1 a img{
        width: 65px;
        height: 65px; 
    }

    .header_inner{
        align-items: center;
        justify-content: space-between;
    }
    
    .header_nav ul li a{	
        font-size: 18px;
    }
    
/*---------- タイトル ----------*/
    .title h2{
        font-size: 100px;
        padding-left: 100px;
        margin-top: -50px;
    }

    .title p{
        font-size: 80px;
        font-weight: 500;
        padding-left: 103px;
    }
    
    .main_visual{
        width: 100%;
        height: 370px;
        background-size: cover;
        background-position: center;
    }
    
    /* スクロールダウンの位置 */
    .scroll {
        font-size: 15px;
        padding-left: 5px; 
        right: 50%;
        top: -25%;
    }
    /* 線のアニメーション部分 */
    .scroll::before {
        bottom: -50px;
        height: 40px;
    }
/*---------- 私のこと ----------*/
    h3.sub_title{
        font-size: 30px;
        font-weight: 600; 
        padding-right: 70px;
        height: 200px;
    }

    h3.sub_title span{
        font-size: 16px;
        font-weight: 600;
        vertical-align: 5px;
    }

    div#about{
        width: 650px;
        height: 150px;
        margin: 20px auto 0 auto;
    }

    div#about_title img{
        width: 500px;
        margin-bottom: 35px;
        margin-top: -5px;
    }

    div#about_title p{
        font-size: 16px;
    }

/*---------- MOREボタン ----------*/
div#button_1{
	margin-left: 480px;
	margin-top: 100px;
	margin-bottom: -250px;
}

/*---------- 制作物 ----------*/
div#works_wapper{
	width: 650px;
	height: 1400px;
	padding-top: 190px;
}

div#works_wapper ul{
	width: 670px;
	height: 750px;
}

div#works_wapper ul li {
	width: 50%;
	height: 150px;
}

div#works_wapper img{
	width: 230px;
}

div#works_wapper dd h4{
	font-size: 13px;
}

div#works_wapper dd p{
	font-size: 11px;
}

div#background{
	width: 100%;
	height: 1150px;
}

div#button_2{
	margin-left: 480px;
	margin-top: -160px;
}
    
/*---------- コンタクト ----------*/
div#contact{
	width: 650px;
	height: 200px;
	margin-top: 150px;
}

div#address_wrapper{
    width: 500px;
    height: 180px;
}

div#contact p{
	font-size: 16px;
	line-height: 1.5;
	padding-bottom: 20px;
	margin-top: -5px;
}

div#address a{
	font-size: 18px;
    width: 340px;
	height: 60px;
    line-height: 60px;
}


/*================================
 ///スマホ用///
================================*/
/*@media (max-width: 428px){
    
}*/