@charset "UTF-8";

*,
*::before,
*::after {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

/*============================================
スライダー
============================================*/
.slider {
    width: 1100px;
    margin: 0 auto;
}

.slider img {
    width: 100%;
    height: auto;
    display: block;
}

.slick-dots {
	bottom: 10px;
	display: flex;
	justify-content: center;
	padding: 0;
	margin: 20px 0 0;
	list-style: none;
}

.slick-dots li {
    margin: 0 5px;
}

.slick-dots li button {
	width: 10px;
	height: 10px;
	border: 1px solid #999;
	background-color: #999;
	text-indent: -9999px;
	cursor: pointer;
}

.slick-dots li.slick-active button {
    background-color: #222;
    border-color: #222;
}

/* CSS Document */
/*============================================
全体設計
============================================*/
*{
	margin: 0;
	padding: 0;
	text-decoration: none;
	list-style: none;
}

body{
	font-family: YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, "sans-serif";
	color: #2b2b2b;
	background-color: #FFF;
}

div#wrapper{
	width: 1100px;
	margin: 0 auto;
}

.zen-maru-gothic-regular {
    font-family: "Zen Maru Gothic", serif;
    font-weight: 500;
    font-style: normal;
}

.return_top img {
    width: 50px;
    height: auto;
}

.return_top {
    position: fixed;
    right: 30px;
    bottom:30px;
    opacity: 0;
    visibility: hidden;
    cursor: pointer;
}

.return_top.active {
    opacity: 1;
    visibility: visible;
}

/*============================================
ヘッダー
============================================*/
header{
	width: 100%;
	height: 45px;
	background-color: #fff;
}

div#header_inner{
	width: 1100px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	color: #2b2b2b;
}

div#icon{
	width: 30px;
	height: 35px; 
	margin-top: 5px;
}

h1{
	font-size: 22px;
	font-weight: 100;
	color: #2b2b2b;
	margin-left: 5px;
}

a {
	color: inherit;
	text-decoration: none;
}

div#logo{
	height: 45px;
	display: flex;
}

nav ul li a{
	font-size: 14px;
	font-weight: 100;
	color: #2b2b2b;
	margin-left: 10px;
}

nav ul li a:hover{
	color: #000;
	font-weight: 300;	
}

nav ul li a {
    font-size: 14px;
    font-weight: 100;
    color: #2b2b2b;
    margin-left: 10px;
    position: relative;
    padding-left: 20px; /* マークの分だけ余白を空ける */
}

nav ul li a::before {
    content: "□"; /* 通常時は空の四角 */
    position: absolute;
    left: 0;
    top: 0;
    font-size: 14px;
    line-height: 1;
    color: #2b2b2b;
}

nav ul li a:hover::before {
    content: "■"; /* ホバー時は塗りつぶしの四角 */
}

nav ul{
	display: flex;
	justify-content: center;
	right: 0;
	margin-bottom: 5px;
	margin-left: -20px; /* ← これで20px分戻す */
}

/* サブメニューを非表示に設定 */
li.dropdown {
    position: relative; /* 必須！ */
}

li.dropdown:hover > .submenu {
    display: block;
}

.submenu {
	display: none;
	position: absolute;
	top: 100%;
	left: 0;
	list-style: none;
	padding: 0;
	margin: 0;
	width: 220px;
	background-color: #fff;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
	z-index: 1000;
	}

.art-menu .submenu {
    width: 150px; 
}

/* ADメニューにホバーした際にサブメニューを表示 */
li.dropdown:hover > .submenu {
	display: block;
}

/* サブメニュー内のリンクスタイル */
.submenu li a {
	display: block;
	color: #2b2b2b;
	text-align: left;
	white-space: nowrap;
}

/* サブメニュー内のリンクにホバーした際のスタイル */
.submenu li a:hover {
	background-color: #fff;
	color: #000;
}



/*============================================
メイン画像
============================================*/
div#mainimage_movie{
	width: 1100px;
	margin: 0 auto;
}

/*============================================
NEWS
============================================*/
h2{
	font-size: 24px;
	text-align: center;
	margin-top: 50px;
	margin-bottom: 10px;
	font-weight: 400;

}

div#news p{
	font-size: 16px;
	font-weight: 200;
	line-height: 1.5;
	margin: 0 0 10px 20px;
	text-indent: -2ch; /* 最初の行のインデントを1文字分 */
}

p::first-line {
	text-indent: 0; /* 最初の行はインデントなし */
}

/*============================================
ABOUT
============================================*/
#Tomoaki_photo {
    display: flex;              /* フレックスボックスで横並びに */
    align-items: flex-start;    /* アイテムを上揃え */
    justify-content: flex-start;/* 左に揃える */
}

#Tomoaki_photo img {
    width: 130px;      /* 幅130pxに設定 */
    height: 160px;     /* 高さ160pxに設定 */
    object-fit: cover; /* 画像を枠に合わせてトリミング */
    margin-right: 20px; /* 画像とテキストの間にスペースを追加 */
}

#Tomoaki_photo div {
    display: flex;
    flex-direction: column; /* pタグとulタグを縦に並べる */
}

#Tomoaki_photo p {
    font-size: 16px;
    font-weight: 200;
    line-height: 1.5;
    margin-bottom: 40px; /* 段落とリストの間に少し余白 */
}

#Tomoaki_photo ul {
    margin-top: 0;      /* リストの上の余白をなくす */
}

#Tomoaki_photo ul li {
    font-size: 16px;
    font-weight: 200;
    line-height: 1.8;
    margin-bottom: 10px; /* リストアイテムの下に少し余白 */
}

/*============================================
ADVERTISEMENT
============================================*/
#advertisement_section {
    width: 1100px;
    margin: 0 auto;
}

ul#ADVERTISEMENT {
    display: flex;
    justify-content: space-between;
    padding: 0;
    margin: 0;
}

/* 各アイテムを整形 */
ul#ADVERTISEMENT li {
    list-style: none;
    text-align: center;
    }

/* 画像サイズとトリミング設定 */
ul#ADVERTISEMENT img {
    width: 300px;
    height: 200px;
    object-fit: cover;
    display: block;
    margin: 0 auto;
}

/* キャプション */
ul#ADVERTISEMENT p {
    font-size: 16px;
    font-weight: 200;
    margin-top: 10px;
}

#advertisement_section img:hover {
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

#art_section img:hover {
    opacity: 0.7;
    transition: opacity 0.3s ease;
}
/*============================================
ART
============================================*/
#art_section {
    width: 1100px;
    margin: 0 auto;
}

ul#ART {
    display: flex;
    justify-content: space-between;
    padding: 0;
    margin: 0;
}

/* 各アイテムを整形 */
ul#ART li {
    list-style: none;
    text-align: center;
}

/* 画像サイズとトリミング設定 */
ul#ART img {
    width: 300px;
    height: 200px;
    object-fit: cover;
    display: block;
    margin: 0 auto;
}

ul#ART p {
	font-size: 16px;
	font-weight: 200;
	margin-top: 10px;
	margin-bottom: 80px;
}

/*============================================
CONTACT
============================================*/

div#contact h2 {
	font-size: 24px;
	text-align: center;
	line-height: 1.2;
	margin-bottom: 10px;
}

div#contact p {
	font-size: 16px;
	font-weight: 200;
	line-height: 1.5;
	text-align: center;
    margin-bottom: 20px;
}

.contact_container{
    display: flex;
    justify-content:flex-start;
    margin-bottom: 60px;
    margin-left: 30px;
}

#contact_button{
	background-color: #2b2b2b;
	width: 120px;
	border: none;
    text-align: center;
    margin: 0 auto;
}

#contact_button a{
    color: #fff;
    text-decoration: none;
}

#contact_button:hover{
    background-color: #999;
}

#contact_button a:hover{
    color: #2b2b2b;
    font-weight: 500;
}

.facebook-icon {
	width: 25px;
	height: 25px;
}

/*============================================
フッター
============================================*/
footer{
	width: 100%;
	height: 50px;
	background-color: #808080;
}

footer p{
	width: 1100px;
	margin: 0 auto;
	font-size: 12px;
	font-weight: 200;
	line-height: 50px;
	color: #fff;
}

/*============================================
メディアクエリ
============================================*/
@media screen and (max-width: 768px) {
    
}

/*============================================
少年寿太郎動画
============================================*/
div#main_movie{
	width: 100%;
	margin: 0 auto;
}

/*============================================
ボタン
============================================*/
div#select button{
	width: 535px;
	height: 50px;
	background-color: #595757;
	color: #fff;
	font-weight: 400;
	font_size: 50px;
	line-height: 50px;
	text-align: center;
	margin: 10px 0 10px 8px;
}

div#select button:hover {
	background-color: #777;
}

/*============================================
説明
============================================*/
div#title h2 {
	font-family: "Zen Maru Gothic", serif;
	font-size: 26px;
	font-weight: 700;
	font-style: normal;
}

div#title h2 span {
    font-size: 16px;
}

div#title p {
    font-size: 16px;
    font-weight: 200;
    line-height: 1.5;
    margin-bottom: 20px; 
}

/*============================================
絵コンテ
============================================*/
div#story_board ul {
	width: 1100px;
	margin: 0 auto;
	display: flex;
	justify-content:flex-start;
}

div#story_board ul li {
	width: 535px;
	border: 1px solid #888;
	margin: 0 5px;
}

div#story_board ul li img{
	width: 100%;
	height: auto;
}

/*============================================
マーク
============================================*/
div#yamaki_logo_mark p {
	font-size: 16px;
	font-weight: 200;
	line-height: 1.5;
	margin-bottom: 20px; 
}

ul#yamaki_mark {
	width: 650px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
}

ul#yamaki_mark li {
	height: 210px;
	display: flex;
}

ul#yamaki_mark img {
	height: 100%;
	width: auto;
}

/*============================================
クロアリさんとシロアリさん メインビジュアル
============================================*/
div#bw_ants img{
	width: 100%;
	margin: 0 auto;
}

div#presentation_board{
	width: 1100px;
	margin: 0 auto;
}

ul#presentation_board_01 {
    display: flex;
    justify-content: space-between;
    padding: 0;
    margin: 0;
}

ul#presentation_board_01 img{
	width: 340px;
	margin: 0 auto;
	border: 1px solid #888;
}

ul#presentation_board_01 p{
	font-size: 16px;
	font-weight: 200;
	margin-top: 10px;
	margin-bottom: 20px;
	text-align: center;
}

ul#presentation_board_02 {
    display: flex;
    justify-content: space-between;
    padding: 0;
    margin: 0;
}

ul#presentation_board_02 img{
	width: 340px;
	margin: 0 auto;
	border: 1px solid #888;
}

ul#presentation_board_02 p{
	font-size: 16px;
	font-weight: 200;
	margin-top: 10px;
	margin-bottom: 20px;
	text-align: center;
}

ul#presentation_board_03 {
    display: flex;
    justify-content: space-between;
    padding: 0;
    margin: 0;
}

ul#presentation_board_03 img{
	width: 340px;
	margin: 0 auto;
	border: 1px solid #888;
}

ul#presentation_board_03 p{
	font-size: 16px;
	font-weight: 200;
	margin-top: 10px;
	margin-bottom: 20px;
	text-align: center;
}

ul#presentation_board_04 {
    display: flex;
    justify-content: space-between;
    padding: 0;
    margin: 0;
}

ul#presentation_board_04 img{
	width: 340px;
	margin: 0 auto;
	border: 1px solid #888;
}

ul#presentation_board_04 p{
	font-size: 16px;
	font-weight: 200;
	margin-top: 10px;
	margin-bottom: 30px;
	text-align: center;
	line-height: 1.8;
}

div#presentation_board2{
	width: 720px;
	margin: 0 auto 0 0;
}

ul#presentation_board_05 {
    display: flex;
    justify-content:space-between;
    padding: 0;
    margin: 0;
}

ul#presentation_board_05 img{
	width: 340px;
	margin: 0 auto;
	border: 1px solid #888;
}

ul#presentation_board_05 p{
	font-size: 16px;
	font-weight: 200;
	margin-top: 10px;
	margin-bottom: 20px;
	text-align: center;
}

/*============================================
loft
============================================*/
div#works{
	width: 1100px;
	margin: 0 auto;
}

#news_paper {
	display: flex;
	justify-content: space-between;
	padding: 0;
	margin: 0;
}

#news_paper li{
	width: 535px;
	text-align: center
}

#news_paper li img{
	width: 100%;
	height: auto;
	border: 1px solid #999;
}

#news_paper li p{
	font-size: 16px;
	font-weight: 200;
	margin-top: 10px;
	margin-bottom: 20px;
	text-align: center;
}


#loft_poster {
	display: flex;
	justify-content: space-between;
	padding: 0;
	margin: 0;
}

#loft_poster li{
	width: 535px;
	text-align: center
}

#loft_poster li img{
	width: 100%;
	height: auto;
	border: 1px solid #999;
}

#loft_poster li p{
	font-size: 16px;
	font-weight: 200;
	margin-top: 10px;
	margin-bottom: 20px;
	text-align: center;
}

/*============================================
Discus
============================================*/
div#works{
	width: 100%;
	margin: 0 auto;
}

div#works ul li p{
	font-size: 15px;
	font-weight: 200;
	margin-bottom: 20px;
}

ul#discus1 {
    display: flex;
    justify-content: space-between;
    padding: 0;
    margin-bottom: 20px;
}

ul#discus1 img{
	width: 210px;
	margin: 0 auto 15px;
    margin-bottom: -7px;
}

ul#discus2 {
    display: flex;
    justify-content: space-between;
    padding: 0;
    margin-bottom: 20px;
}

ul#discus2 img{
	width: 345px;
	margin: 0 auto 5px;
}

ul#discus3 {
    display: flex;
    justify-content: space-between;
    padding: 0;
    margin-bottom: 20px;
}

ul#discus3 img{
	width: 345px;
	margin: 0 auto 5px;
}

ul#discus4 {
    display: flex;
    justify-content: space-between;
    padding: 0;
    margin-bottom: 20px;
}

ul#discus4 img{
	width: 345px;
	margin: 0 auto 5px;
}

ul#discus5 {
    display: flex;
    justify-content: space-between;
    padding: 0;
    margin-bottom: 20px;
}

ul#discus5 img{
	width: 345px;
	margin: 0 auto 5px;
}

/*============================================
カラスなぜ鳴くの
============================================*/
div#crow_works {
	width: 1100px;
	margin: 0 auto;
}

div#crow_works ul li p{
	font-size: 15px;
	font-weight: 200;
	margin-top: 10px;
}

div#crow_works ul li p#fuji_P{
	margin-top: 20px;
}

ul#crow_works_01 {
    display: flex;
    justify-content: space-between;
    padding: 0;
    margin-bottom: 25px;
}

ul#crow_works_01 img {
	width: 345px;
	margin: 0 auto;
}

ul#crow_works_02 {
    display: flex;
    justify-content: space-between;
    padding: 0;
    margin-bottom: 25px;
}

ul#crow_works_02 img{
	width: 345px;
	margin: 0 auto;
}

ul#crow_works_03 {
    display: flex;
    justify-content: space-between;
    padding: 0;
    margin-bottom: 25px;
}

ul#crow_works_03 img{
	width: 345px;
	margin: 0 auto;
}

ul#crow_works_04 {
    display: flex;
    justify-content: space-between;
    padding: 0;
    margin-bottom: 25px;
}

ul#crow_works_04 img{
	width: 345px;
	margin: 0 auto;
}

ul#crow_works_05 {
    display: flex;
    justify-content:space-between;
    padding: 0;
    margin-bottom: 25px;
    }

ul#crow_works_05 img{
	width: 345px;
	margin: 0 auto;
}

ul#crow_works_06 {
    display: flex;
    justify-content:space-between;
    padding: 0;
    margin-bottom: 25px;
}

ul#crow_works_06 img{
	width: 345px;
	margin: 0 auto;
}

ul#crow_works_07 {
    display: flex;
    justify-content:space-between;
    padding: 0;
    margin-bottom: 25px;
}

ul#crow_works_07 img{
	width: 345px;
	margin: 0 auto;
}


/*============================================
OTHER
============================================*/
div#other_works {
	width: 1100px;
	margin: 0 auto;
}

div#other_works ul li p{
	font-size: 15px;
	font-weight: 200;
	margin-top: 10px;
	margin-bottom: 10px;
}

ul#other_works_01 {
    display: flex;
    justify-content: space-between;
    padding: 0;
    margin-bottom: 25px;
}

ul#other_workss_01 img {
	width: 345px;
	margin: 0 auto;
}

ul#other_works_02 {
    display: flex;
    justify-content: space-between;
    padding: 0;
    margin-bottom: 25px;
}

ul#other_works_02 img{
	width: 345px;
	margin: 0 auto;
}

ul#other_works_03 {
    display: flex;
    justify-content: space-between;
    padding: 0;
    margin-bottom: 25px;
}

ul#other_works_03 img{
	width: 345px;
	margin: 0 auto;
}

ul#other_works_04 {
    display: flex;
    justify-content: space-between;
    padding: 0;
    margin-bottom: 25px
}

ul#other_works_04 img{
	width: 345px;
	margin: 0 auto;
}

ul#other_works_05 {
    display: flex;
    justify-content:space-between;
    padding: 0;
    margin-bottom: 25px;
}

ul#other_works_05 img{
	width: 345px;
	margin: 0 auto;
}

ul#other_works_06 {
    display: flex;
    justify-content:space-between;
    padding: 0;
    margin-bottom: 25px;
}

ul#other_works_06 img{
	width: 345px;
	margin: 0 auto;
}

