@charset "UTF-8";
@-ms-viewport{width:device-width}

body{
    margin:0;
    font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
}

/*ヘッダー*/
.header{
    background-color: white;
    padding: 20px 20px 5px 20px;
}
.header h1{
    margin: 0;
    font-size: 20px;
    line-height: 1;
}
.header h1 a{
    color: #0066ff;
    text-decoration-line: none;
}
.header .logo{
    margin: 0 5px 0 0;
    vertical-align: bottom;
}
.header .title{
    display: inline-block;
    vertical-align: middle;
}
/*イメージ画像*/
.image{
    max-width: 100%;
    vertical-align: bottom;
    margin-left: auto;
    margin-right: auto;
}

/*会場リンク*/
.group{
    background-color: 	#E6F0FF;
    padding: 5px 20px 20px 20px;
    line-height: 2;
}

/*会場へのアクセス*/
.title > h1{
    font-size: 32px;
    font-weight: normal;
    text-align: center;
    margin: 10px 0 10px 0;
    background: linear-gradient(360deg, white,#E6F0FF 60% );
}
.title > p{
    color: red;
    font-weight: bold;
    margin-top: 0;
}
.venue{
    background-color: white;
    text-align: center;
    margin: 0 0 20px 0 ;
}
/* それぞれの会場へのリンク */
.links{
    width: 100%;
    height: 100%;
    color: black;
    text-decoration-line: none;
}
.links > h1{
    font-size: 22px;
    font-weight: normal;
    margin: 0;
    color: gray;
}
.links > p{
    font-size: 18px;
    font-weight: bold;
    margin: 0 0 0 0;
}
.links > img{
    display: block;
    margin-left: auto;
    margin-right: auto;
    padding-bottom: 15px;
}

.next{
    margin: 10px 0 0 0;
}
.venue1{
    background:linear-gradient(360deg, blue,white 5%);
}
.venue2{
    background: linear-gradient(360deg, orange,white 5%);
}
.venue3{
    background: linear-gradient(360deg, purple,white 5%);
}
/*お知らせ*/
.news h1{
    color: #000;
    font-size: 25px;
    font-weight: normal;
    margin: 10px 0;
    background: linear-gradient(360deg, white,#E6F0FF 60%);
}
.news img{
    margin:5px 0 0 0;
}
iframe{
    width:100%;
    height:200px;
    background-color: white;
}

/*フッター*/
.footer{
    color: white;
    background-color: #0066ff;
    padding: 20px;
}
.footer p{
    font-size: 18px;
    font-weight: bold;
    padding: 0;
    margin: 0 0 0 0;
}
.adress p{
    font-size:14px;
    font-weight: normal;
}

.footer a{
    color: white;
    font-size: 14px;
    font-weight: bold; 
}

ul {
    list-style: none;
    padding-left: 0;
    margin-top: 0;
}

li{
    display: inline-block;
    padding-right: 10px;
}

/*コピーライト*/
.copyright{
    text-align: center;
}
.copyright p{
    margin: 10px 0 3px 0;
    font-size: 12px;
    line-height: 1;
}

/*小さいスマホでは文字を小さめに表示する*/
@media (max-width:300px) {
    .header h1{
        margin: 0;
        font-size: 15px;
        line-height: 1;
    }
    .title h1{
        font-size: 24px;
    }
    .links > h1{
        font-size: 20px;
        font-weight: normal;
        margin: 0;
    }
    .links > p{
        font-size: 15px;
        font-weight: bold;
        margin: 0 0 0 0;
    }
}

/*タブレットやデスクトップ表示時にスペースに余裕を持たせる、お知らせ枠の高さを高くする*/
@media(min-width:768px){
    .title > p{
        color: red;
        font-size: 18px;
        font-weight: bold;
        margin-top: 0;
        padding: 20px 0 20px 0;
    }
    iframe{
        width:100%;
        height:300px;
        background-color: white;
    }
}

/*デスクトップ表示時に横幅を制限する、３段レイアウトにする*/
@media(min-width:1025px){
    body{
        background-color: 	#E6F0FF;
    }
    .contentFrame{
        width: 900px;
        margin-left: auto;
        margin-right: auto;
    }
    .venue{
        padding-top: 10px;
    }
    .venues .venue{
        float: left;
        width: 31%;
        height: 300px;
        margin-left: 3.5%;
    }
    .venues .venue:first-child{
        margin-left: 0;
    }
    .venues:after{
        content: "";
        display: block;
        clear: both;
    }
    .venue1{
        background:none;
        padding-top: 80px;
    }
    .venue2{
        background: none;
    }
    .venue3{
        background: none;
        padding-top: 40px;
    }
    .venue:first-child{
        background: linear-gradient(360deg, blue,white 10%);
    }
    .venue:nth-child(2){
        background: linear-gradient(360deg, orange,white 10%);
    }
    .venue:last-child{
        background: linear-gradient(360deg, purple,white 10%);
    }
}