@charset "UTF-8";

/* 共有部分 */
html {
 font-size: 100%;
}
body {
  font-family: "Yu Gothic Medium", "游ゴシック　Medium", YuGothic,
  "游ゴシック体", "ヒラギノ角ゴ　Pro W3", sans-serif;
  line-height: 1.5; /* 行の高さの設定　*/
  color: #432;  /* 色の指定*/
  background-color: #F3ECD8;
}
a {
  text-decoration: none;  /* <a>タグの傍線の指定　*/
}
img {
  max-width: 100%;  /* 画像の大きさの設定　 */
}

/* HEADER */
.logo {
  width: 10rem; /* ロゴの横幅　*/
  margin-top:20px;  /* マージンの指定　*/
}
.main-nav {
  display: flex;  /* 横並び設定　*/
  font-color: #fffafa;
  font-size: 0.8rem;
  margin-top: 25px;
}
.main-nav li {
  margin-left: 15px;
}
.main-nav a {
  color: #fffafa;
}
li { /* 箇条書きの記号を非表示　*/
 list-style: none;
}
.main-nav a:hover { /* カーソルを合わせた時に色を変える指定*/
  color: red; /* カーソルを合わせた時の色指定*/
}
.page-header {
  display: flex;
  justify-content: space-between;
}

.wrapper {
  max-width:70%;/* 横幅の指定　*/
  margin:0 auto;/* 中央に配置する指定　*/
}

/* home */
.home-content {
  text-align: center;/*　画面中央の指定　*/
  margin-top: 30%;/*　余白の指定　*/
}

/*　見出し　*/
h3 {
  color: #fff;
  font-family: 'Philosopher', serif;
  text-transform: uppercase;  /* 大文字か小文字か　*/
  font-weight: bold;  /*　太さ　*/
}

/* メイン背景画像　*/
.big-bg {
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  }
#home {
  background-image: url(../images/main6.gif); 
  min-height: 150vh;
} /* 背景画像と画面の高さの設定　*/
#home .page-title {
  text-transform: none;
}

/* フッター　*/
footer {  /* フッターの指定　*/
    background: #432;
    text-align: center;
    padding: 26px 0;
}

/*　フッターの文章の指定　*/
footer p {
    color: #fff;
    font-size: 1.200rem;
}

/* 記事部分　*/
.container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  margin:10px 10px;
}
.container p {
  font-size: 1.00rem;
  margin: 20px 30px;
  line-height: 1.8em;
}
h5 {
	text-align: right;
}

strong {
	font-size: 0.95rem;
}

/* About Us */
.about_1 {
	flex-basis: 69%;
	line-height:1.7;
	font-size: 1.0rem;
	text-align: justify; 
}  
.about_2 {
	flex-basis: 30%;
}
.about_2 img {
	margin: 50px;
}
.career {
	line-height: 1.7;
	margin: 50 auto 50 30;
	text-align: left;
	border: double 2px;
}
/* Gallery */
table {
	width: 80%;
	margin: 10% 10%;
}
td {
	border: solid 1px #000;
}
.case {
	font-size: 0.9rem;
}

.item-info {
	font-size: 1.0rem;
	line-height: 1.5;
	text-allign: justify;
	margin-bottom: 50px; 
}

/* 表具師奈良屋西順伝背景画像 */
.seijun-bg {
 	background-image: url(../images/curtain_1.png);
 	min-height: 100vh;
 	background-size: cover;
 	background-position: center top;
 	background-repeat: no-repeat;
}

/* 表具師奈良屋西順伝 */
.seijun-bg dl {
	display: flex;
	align-items: center;
	justify-content: center;
	height:900px;
	font-size: 1.0rem;
	line-height:2.0em;
}
.seijun-bg dt{
	background-color: #F3ECD8;
	width: 600px;
	padding-top: solid;
	box-sizing: border-box;
	border: 3.5px solid gold;
}
.seijun-bg img {
	padding: 25px;
	margin-left: 50px;
}
.resizeimage audio {
	width: 20rem;
	margin-bottom: 30px;
}
/* Contact */
.contact-bg {
	margin: 30px auto 30px 30%;
}
.resizeimage iframe {
	width: 100%;
	padding: 10px auto 50px 20%;
}	

/* モバイル版
------------------------------- */
@media (max-width: 600px) {
    .page-title {
        font-size: 2.0rem;
    }
    .page-header {
        flex-direction: column;
        align-items: center;
    }
    
    /* HEADER */
    .main-nav {
        font-size: 1.0rem;
        margin-top: 10px;
    }
    .main-nav li {
        margin: 0 20px;
    }

    /* HOME */
    .home-content {
        margin-top: 20%;
    }

    .item-info {
    	font-size: 0.5rem;
    }
	/* About Us */
	.about_1 {
		font-size: 0.5rem;
	}
}  