@charset "UTF-8";
@import url("grid.css");

:root { /* 色変更される場合は、#以降のカラーコードを変更してください IE非対応 */
    --base-color: #1cA89E;
    --link-color: #F37021;
    --linkhover-color: #F37021;
    --back-color: #f7f7f7;
    --border-color: #1cA89E;
    --white-color: #fff;
}

img {
	max-width:100%;
	height: auto;/*高さ自動*/
}
a {
    display:block;
    color: var(--link-color);
    text-decoration-line: none;
}
a:hover { 
    color: var(--linkhover-color);
}


/*ヘッダー
-------------------------------------*/
.header {
	display: flex;
    flex-direction: row;
    padding: 2rem 0 0 0;
}
.header-box {
	margin-left: auto;
	margin-top: 8px;
}

menu  {
	background-color: #1cA89E;
}

nav ul {
	display: flex;
    flex-direction: row;
    justify-content: space-around;
    list-style: none;
	margin: 1rem 0 0 0;

}
nav li {
	flex: 1 0 auto;
    background-color: #1cA89E; /* 背景色を指定します */

}
nav li a {
    text-decoration: none;
    text-align: center;
	font-weight: bold;
	text-shadow:1px 1px 0 #FFF, -1px -1px 0 #FFF,
              -1px 1px 0 #FFF, 1px -1px 0 #FFF,
              0px 1px 0 #FFF,  0-1px 0 #FFF,
              -1px 0 0 #FFF, 1px 0 0 #FFF;
    width: 100%;
}
nav a:hover {
    opacity: 0.8; /* hover時の不透明度を調整します */
}
nav a {
    padding: 0.5rem;
}

@media screen and (min-width: 768px){
/* PC時はMENUボタンを非表示 */
#open,#close {
    display: none !important;
}

#navi {
    display: block !important;
    max-width: 1000px; margin: auto;	
}
}
@media screen and (max-width: 768px){
.header {
	flex-direction: column;
    margin-bottom: 10px;
}
.header #open,#close  {
    position: absolute;
    top: 20px;
    right: 12px;
}
nav ul {
	flex-direction: column;
}
.header li {
	padding-top: 0;
}
/* スマホ時はMENUボタンを表示 */
#open {
    display: block;
    background: url(../img/button.png);
    background-repeat: no-repeat;
    background-size: contain;
    width: 50px;
    height: 50px;
    border: none;
    position: absolute;
    top: 20px;
    right: 12px;
}
#close  {
    display: block;
    background: url(../img/button2.png);
    background-repeat: no-repeat;
    background-size: contain;
    width: 50px;
    height: 50px;
    border: none;
    position: absolute;
    top: 20px;
    right: 12px;
}
/* スマホ時はメニューを非表示 */
#navi {
    display: none;
}
}

/*ロゴ
-------------------------------------*/
.site-id img{max-width:250px}

    
/*メイン画像
-------------------------------------*/
.mainimg img {
    width: 100vw;
}


/* パソコンで見たときは"pc"のclassがついた画像が表示される */
.pc { display: block !important; }
.sp { display: none !important; }
 
/* スマートフォンで見たときは"sp"のclassがついた画像が表示される */
@media only screen and (max-width: 768px) {
    .pc { display: none !important; }
    .sp { display: block !important; }
}

/*メインコンテンツ
-------------------------------------*/
main {
    margin: 5rem 0 0 0;
}
section {
	margin: 5rem 0;
	padding: 3rem 0;
}
.gray-back {
	background-color: var(--back-color);
}

.container{
  width: 100%;
  max-width: 1000px;
  margin-right: auto;
  margin-left: auto;
}

img {
  max-width: 100%; 
}

/*キャッチコピー
-------------------------------------*/
.catch {
    text-align: center;
	margin-right:2rem;
	margin-left:2rem;
}
.catch h2 {
    padding-bottom: 1rem;
}
.under {
    border-bottom: 0.4rem solid var(--base-color);
    padding:0 1rem 1rem 1rem;
}
.center {
	text-align: center;
	margin-bottom: 4rem;
}

/*新着情報
-------------------------------------*/

.news h2 {
    text-align: center;
    padding-bottom: 1rem;
}
.news li {
    list-style-type: none;
	border-bottom: 1px solid var(--border-color);
	padding: 0.5rem 0;
}

.newstopic {
	border-bottom: 1px solid var(--border-color);
	padding: 0.5rem 0;
}

.newstopic dl {
}

.newstopic dt {
    display: flex;
    justify-content: space-between;
    clear: both;
    width: 100px;
    float: left;
}

.newstopic dd {
    padding-left: 100px; 
}


/*開催概要
-------------------------------------*/

.about h2 {
    text-align: center;
    padding-bottom: 1rem;
}
.about li {
    list-style-type: none;
	padding: 0.5rem 0;
}
.aboutmap{ text-align: right; } 
.aboutmap img { max-width: 800px;
}

.event {
}
.event dl {
}
.event dt {
    display: flex;
    justify-content: space-between;
    clear: both;
    width: 100px;
    float: left;
}

.event dt::after {
      content: ":　"; 
}

.event dd {
    padding-left: 100px; 
}


/*出店者情報
-------------------------------------*/
.program{
        position: relative;
      }
img {
  width: 100%;
  }

.program p{
        position: absolute;
        padding: 5px;
        margin:0;
      }
.programname { text-align: left;/* ←左寄せ */
            font-weight: bold;
            color:#444444;
	　　　　　margin-top: 0;
            margin-bottom: 0rem;
 }

.programdate { text-align: left;/* ←左寄せ */
            font-size: 1.4rem;
            color:#444444;
            margin-top: 0;
 }

.programplace { text-align: left;  /* ←左寄せ */
            font-size: 1.4rem;
            font-weight: 500;
 }  

.programtext { text-align: left;  /* ←左寄せ */
            font-size: 1.4rem;
 }  
.programsns-icon { text-align: right; }  /* ←右寄せ */
.programsns-icon img {
width: 20px;
}

@media only screen and (max-width: 768px) {
.programdate { text-align: left;/* ←左寄せ */
            font-size: 1.4rem;
            color:#444444
 }
.programplace { text-align: left;  /* ←左寄せ */
          font-size: 1.4rem;
}  
.programtext { text-align: left;  /* ←左寄せ */
          font-size: 1.4rem;
}  
} 

/*カラム
-------------------------------------*/
.programlist {
  margin-top: 2em;
}

.program-col {
    margin-left:2%;
  width: 48%;
}

@media (min-width: 768px) {
  .program-col {
    margin-left:2%;
    width: calc(94% / 3);
  }
}


/*フッター
-------------------------------------*/
footer {
    background-color: var(--back-color); 
    padding: 2rem 0;
}
footer h4 {
    border-bottom: 3px solid var(--border-color);
}

.sns-icon { text-align: center; }  /* ←中央寄せ */
.sns-icon img{
width: 30px;
}


/*コピーライト
-------------------------------------*/
.copyright {
    text-align: center;
    padding: 1rem 0;
    background-color: var(--base-color);
}
.copyright a {
    color: var(--white-color);
    text-decoration: none;
	display: inline;
}

/*ページトップへ戻るボタン
-------------------------------------*/
#pagetop {
    position: fixed;
    bottom: 15px;
    right: 15px;
}
#pagetop a {
    display: block;
    background-color: var(--base-color);
    color: var(--white-color);
    width: 50px;
    padding: 10px 5px;
    text-align: center;
}
#pagetop a:hover {
    background-color: var(--link-color);
}

/* 幅768px以下の表示
-------------------------------------*/
@media screen and (max-width: 768px){

}