@import url('https://fonts.googleapis.com/css2?family=Kiwi+Maru:wght@400&display=swap');

body{
  margin: 0;
  padding: 0;
  font-size: 14px;
  line-height: 18px;
  list-style: none;
  text-decoration:none ;
  text-decoration:none;
  -webkit-text-size-adjust: 100%;
  color: #666;
  background-color: #f2f2f2;
  font-family:"Hiragino Sans";
  font-weight: 300;
}
main{
  background-color: #f2f2f2;
  overflow: hidden;
  position: relative;
}
#all_in{
  width: 80%;
  max-width: 1537px;
  margin: 0 auto;
  background-color: #fff;
}
@media screen and (max-width: 768px){
  /* スクリーンサイズが767px以下の場合に適用 */
  #all_in{
    width: 100%;
  }

}
*, *:before, *:after {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}
::before , ::after {
	box-sizing: inherit;
}
button {
	margin: 0;
	padding: 0;
	border: 0;
	border-radius: 0;
	background: transparent;
	color: inherit;
	vertical-align: middle;
	text-align: inherit;
	font: inherit;
	-webkit-appearance: none;
	appearance: none;
}
html {
	scroll-behavior: smooth;
  scroll-padding-top: 82px; /* 固定ヘッダの高さ分 */
}
img {
	max-width: 100%;
	height: auto;
	vertical-align: bottom;
  padding: 0 0 0 0;
}
ul,a {
	list-style-type: none;
  text-decoration: none;
}
/****************************
      共通文字サイズ
********************************/
.font_lighter {
  font-weight: lighter;
  }
h1{
  font-weight: 200;
  font-size: 1.8em;
  line-height: 1.8em;
  clear: both;
}
h2{
  font-size: 1.6em;
  line-height: 1.6em;
  font-weight: 200;
}
h3{
  font-size: 2em;
  font-weight: 200;
}
h4{
  font-size: 1.5em;
  font-weight: 200;
  color: #d03c13;
  margin-bottom: 0.3em;
}
p{
  font-size: 1.2em;
  line-height: 1.5em;
  font-weight: 200;
}
@media screen and (max-width: 768px){
  /* スクリーンサイズが767px以下の場合に適用 */
  h1{
    font-size: 16px;
  }
  h2{
    font-size: 14px;
  }
  p{
    font-size: 12px;
    line-height: 1.2em;
  }
  h4{
    font-size: 14px;
    font-weight: lighter;
    color: #d03c13;
  }
}
.twitter-timeline{
  margin-top: 60px;
}


/****************************
      ハンバーガー
********************************/
.header {
  position: fixed; /* headerを追従にする */
  top: 10px;
  right: 10px;
  z-index: 10000;
}
.header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 1rem;
}

/* ハンバーガーボタンのデザイン */
.drawer__button {
  position: relative;
  width: 3rem;
  height: 3rem;
  background-color: transparent;
  border: none;
  cursor: pointer;
  z-index: 10000; /* メニューを開いている時もクリックできるよう設定 */
}
/* ハンバーガーボタン内の線 */
.drawer__button > span {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 2rem;
  height: 2px;
  background-color: #d03c13;
  transform: translateX(-50%);
}
.drawer__button > span:first-child {
  transform: translate(-50%, calc(-50% - 0.5rem));
  transition: transform 0.3s ease;
}
.drawer__button > span:nth-child(2) {
  transform: translate(-50%, -50%);
  transition: opacity 0.3s ease;
}
.drawer__button > span:last-child {
  transform: translate(-50%, calc(-50% + 0.5rem));
  transition: transform 0.3s ease;
}
/* 展開時のデザイン */
.drawer__button.active > span:first-child {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.drawer__button.active > span:nth-child(2) {
  opacity: 0;
}
.drawer__button.active > span:last-child {
  transform: translate(-50%, -50%) rotate(45deg);
}
/* メニューのデザイン */
.drawer__nav {
  position: fixed; /* 追従ヘッダーなどでも表示できるよう設定しておく */
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  transition: opacity 0.3s ease;
  opacity: 0;
  visibility: hidden;
}
.drawer__nav.active {
  opacity: 1;
  visibility: visible;
}
.drawer__nav__inner {
  position: relative;
  width: 80%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.6);
  padding: 4rem 1.5rem 1rem;
  margin: 0 0 0 auto;
  overflow: hidden;
  transform: translateX(100%);
  transition: transform 0.3s ease;
}
.drawer__nav.active .drawer__nav__inner {
  transform: translateX(0);
}
.drawer__nav__menu {
  list-style: none;
  padding-left: 0;
}
.drawer__nav__link {
  display: block;
  color: #d03c13;
  text-decoration: none;
  padding: 1rem 1rem;
  border-bottom: solid 1px #d03c13;
}

/* ハンバーガーメニュー展開時、背景を固定 */
body.active {
  height: 100%;
  overflow: hidden;
}

/****************************
      firstview
********************************/
#firstview{
	width: 100%;
  background-color: #000;
	overflow: hidden;
	vertical-align: bottom;ß
  margin: 0 auto;
  position: relative;
  z-index: -99;
}
#firstview h1{
  position: absolute;
  top: 0;
  left: 0;
  z-index: -100;
}
/** PC→SP表示切替**/
.pc { display: block !important; margin: 0 auto; text-align: center;}
.sp { display: none !important; }
@media only screen and (max-width: 750px) {
    .pc { display: none !important; }
    .sp { display: block !important; }
}

/*******************************
    ナビゲーション 常設ボタン
*******************************/
#nav_btn{
  width: 100%;
  height: 75px;
  border-bottom: 1px solid #d03c13;
  border-top: 1px solid #d03c13;
}
#nav_btn ul{
  display: flex;
  justify-content: center;
}
.nav_btn-menu{
  display: inline;
  height: 75px;
  padding: 0 3%;
  line-height: 82px;
}
.nav_btn-menu a{
  color: #d03c13;
  font-size: 1.5em;
}
#nav_btn li+ li{
  border-left: 1px dotted #d03c13;
}
@media screen and (max-width: 768px){
  /* スクリーンサイズが767px以下の場合に適用 */
  #nav_btn{
    width: 100%;
    height: 60px;
    border-bottom: 1px solid #d03c13;
    border-top: 1px solid #d03c13;
  }
  .nav_btn-menu{
    display: inline;
    height: 60px;
    padding: 0 3%;
    line-height: 60px;
  }
  .nav_btn-menu a{
    color: #d03c13;
    font-size: 1em;
  }

}

/*******************************
    コンテンツ 共通
*******************************/
.com_BOX{
  width:80%;
  margin: 5% auto 10% auto;
}
.com_BOX h2{/***** ページタイトル *****/
  text-align: left;
  width: 100%;
  margin: 0 auto 3% auto;
  color: #d03c13;
  border-bottom: #d03c13 1px solid;
  font-weight: normal;
}
#gallery_Box{
	display: flex;
	flex-wrap: wrap;
	width: 100%;
	justify-content: space-evenly;
}
#gallery_Box li{
	text-align: center;
	width: 30%;
	font-size: 1em;
	line-height: 1.5em;
	align-self: stretch;
	margin-bottom: 5px;
}
.clear{
  clear: both;
}

#gallery_Box li p{
  text-align: left;
}

@media screen and (max-width: 768px){
  /* スクリーンサイズが767px以下の場合に適用 */
  .com_BOX{
    width: 90%;
  }
  .com_BOX h2{
    font-size: 1.2em;
  }
}

/*******************************
    はじめに
*******************************/
.opening{
  width: 80%;
  margin: 0 auto;
  padding: 5% 0;
  text-align: center;
}
.border_T{
  display: block;
  border-bottom: #d03c13 1px solid;
  width: 30%;
  margin: 2% auto 4% auto;
}
.border_B{
  display: block;
  border-bottom: #d03c13 1px solid;
  width: 30%;
  margin: 4% auto 2% auto;
}
.opening p{
  font-weight: 200;
  font-size: 1.2em;
  line-height: 2em;
}
@media screen and (max-width: 768px){
  /* スクリーンサイズが767px以下の場合に適用 */
  .opening{
    width: 90%;
  }
  .opening p{
    font-size: 12px;
  }
}

/*******************************
    展示予定作品
*******************************/
#exhibit {
  text-align: center;
}
#exhibit h1{
  color: #d03c13;
  font-weight: normal;
}

/*******************************
    作家プロフィール
*******************************/
h3.P_name{
  width: 100%;
  margin: 0 auto;
  line-height: 3em;
  text-align: center;
}
h3.P_name span{
  color: #d03c13;
  font-size: 14px;
  margin-left: 3%;
}
.profile{
  width: 100%;
  display: flex;
  align-items: flex-start;
}
.profImg{
  display: inline-block;
  width: 40%;
  padding-right: 5%;
}
.SNS_Box{
  padding: 5%;
}
.P_snsIcon{
  width: 10%;
  float: right;
  margin-left: 5%;
}
/*** Twitter ***/
#twitter {
	width: 100%;
	margin: 0 auto;
}
.twitter-timeline{
  text-align: center;
  margin: 0 auto;
  padding: 5% 0;
}
@media screen and (max-width: 768px){
  /* スクリーンサイズが767px以下の場合に適用 */
  h3.P_name{
    font-size: 1.6em;
  }
  .profImg{
    display: inline-block;
    width: 50%;
    padding-right: 3%;
  }
  #twitter {
    width: 90%;
    margin: 0 auto;
    padding-bottom: 5%;
  }
  .profile p{
    font-size: 14px;
    line-height: 20px;
  }
  .P_snsIcon{
    width: 20%;
    float: right;
    margin-left: 5%;
  }
}



/*******************************
    グッズ紹介
*******************************/
.goodsText{
	margin:3% 0 5% 0;
	font-size: 16px;
	line-height: 20px;
}
.goods_minitext{
  font-size: 14px;
  line-height: 20px;
  padding: 10% 0;
  text-align: center;
}

@media screen and (max-width: 768px){
  /* スクリーンサイズが767px以下の場合に適用 */
  .goodsText{
    font-size: 0.6em;
    line-height: 1.5em;
  }
  .goods_minitext{
    font-size: 0.6em;
    line-height: 1.5em;
  }
}





/*******************************
    footer
*******************************/
footer{
	text-align: center;
	overflow: hidden;
}
.info{
	width: 80%;
	margin: 0 auto;
	color: #727171;
	padding: 3%;
}
.info_title{
	line-height: 2em;
	letter-spacing: 1.5em;
	margin-bottom: 1%;
}
.info_text{
	font-size: 1em;
	line-height: 1.5em;
	margin-bottom: 2%;
}
.info img{
	width: 30px;
	display: inline-block;
  margin-right: 1%;
}
@media screen and (max-width: 768px){
  /* スクリーンサイズが767px以下の場合に適用 */
	.info_title{
		letter-spacing: normal;
    font-size: 12px;
	}
	.info img{
		margin-right: 3%;
	}
}

/*******************************
    TOPへ戻る
*******************************/
.gotop{
    display: block;
    width: 60px;
    height: 60px;
    box-sizing: border-box;
    padding-top: 30px;
    text-align: center;
    letter-spacing: -1px;
    font-size: 85%;
    text-decoration: none;
    color: #d03c13;
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 10000;
}
.gotop::before{
    content: "";
    display: block;
    border-top: 2px solid #d03c13;
    border-right: 2px solid #d03c13;
    width: 25%;
    height: 25%;
    top: 25%;
    left: 0;
    right: 0;
    margin: auto;
    position: absolute;
    transform: rotate(-45deg);
}
.gotop:hover{
    opacity: 1;
}

/*******************************
    開催会場
*******************************/
#kaijou p{
  text-align: center;
}
#kaijou h4{
  text-align: center;
  font-weight: normal;
  padding-top: 3%;
}
.kaijouHP{
  color: #fff;
  float: right;
  margin-right: 10%;
}
table.kaijou_title{
  width: 100%;
  margin: 0 auto;
}
table.kaijou_title th{
  padding: 2% 0;
  background-color: #d03c13;
  color: #fff;
  font-size: 18px;
  font-weight: 300;
}
table.kaijou_title a{
  font-size: 12px;
}
table.kaijou_title td{
  padding: 2% 0;
  text-align: center;
  /**border-left: #d03c13 1px solid;
  border-right: #d03c13 1px solid;**/
  border-bottom: #d03c13 1px solid;
}

/***終了しました***/
h4.thankyou{
  text-align: center;
  font-weight: 300;
  margin: 5% 0 0 0;
}
table.tnk_box{
  width: 80%;
  margin: 1% auto;
  font-weight: 200;
}
table.tnk_box th{
  padding: 1% 0;
  background-color: #727171;
  color: #fff;
  font-weight: 100;
}
table.tnk_box td{
  padding: 1% 3%;
  color: #727171;
  border-bottom: #727171 1px solid;
}
td.tnk_in_L{
  width: 20%;
  text-align: center;
}

@media screen and (max-width: 768px){
  /* スクリーンサイズが767px以下の場合に適用 */
  table.tnk_box{
    width: 100%;
    font-size: 10px;
    font-weight: 300;
  }
  td.tnk_in_L{
    width: 18%;
    text-align: center;
  }

}
/*******************************
    アコーディオン
*******************************/
.accordion {
  margin: 0 auto;
  width: 80%;
  padding: 5% 0 3% 0;
  }
  .toggle {
  display: none;
  }
  .option {
  position: relative;
  }
  .title,
  .content {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transform: translateZ(0);
  transition: all 0.3s;
  }
  .title {
  text-align: center;
  font-size: 1.3em;
  padding: 1em 0;
  display: block;
  /**border-right: #d03c13 1px solid;
  border-left: #d03c13 1px solid;**/
  color: #d03c13;
  }
  .title::after,
  .title::before {
  content: "";
  position: absolute;
  right: 1.5em;
  top: 1.2em;
  width: 2px;
  height: 0.75em;
  background-color: #d03c13;
  transition: all 0.3s;
  }
  .title::after {
  transform: rotate(90deg);
  }
  .content {
  max-height: 0;
  overflow: scroll;
  /**border-right: #d03c13 1px solid;
  border-left: #d03c13 1px solid;**/
  border-bottom:  #d03c13 1px solid;
  }
  .content p {
  margin: 0;
  padding: 0.5em 1em 1em;
  font-size: 0.9em;
  line-height: 1.5;
  }
  .toggle:checked + .title + .content {
  max-height: 450px;
  transition: all 1.5s;
  }
  .toggle:checked + .title::before {
  transform: rotate(90deg) !important;
  }

  @media screen and (max-width: 768px){
    /* スクリーンサイズが767px以下の場合に適用 */
    .accordion {
      margin: 0 auto;
      width: 100%;
      }
  }
  /*** アコーディオン end ***/
  /*** アコーディオン の中 ***/
  table.info_01{
    width: 90%;
    margin: 1% auto 3% auto;
    border-collapse:collapse;
    table-layout: fixed;
  }
  table.info_01 td{
    padding: 2% 0;
    border: #d03c13 1px solid;
    text-align: center;
  }
  table.info_01 th{
    padding: 2% 0;
    border: #d03c13 1px solid;
    background-color: rgba(208, 60, 19, 0.1)
  }
  table.info_02{
    width: 90%;
    margin: 1% auto 3% auto;
    border-collapse:collapse;
    table-layout: fixed;
  }
  table.info_02 td{
    padding: 2% 0;
    border: #d03c13 1px solid;
    text-align: center;
  }
  table.info_02 th{
    padding: 2% 3%;
    border: #d03c13 1px solid;
    background-color: rgba(208, 60, 19, 0.1)
  }
  .left-align{
    text-align:left;
  }
   table.table_text{
    text-align: start;
    margin-right: auto;
    font-size: 12px;
  }

  /*** background-color: rgba(208, 60, 19, 0.1);**/