 
/* CSS Document */

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500;700&family=Noto+Serif+JP:wght@300;400;500;600;700&display=swap');
@import '_default';
@import '_general';
@import '_animation';

/*------------------
*  共通
*------------------*/

html{
	box-sizing: border-box;
    overflow-y: scroll;
    -webkit-text-size-adjust: 100%;
	font-size: 20px;
	font-family: YakuHanJP,Noto Sans JP,Hiragino Kaku Gothic ProN,"メイリオ",Osaka,"ＭＳ Ｐゴシック",sans-serif;
	color: #000000;
  	scroll-behavior: smooth;
	font-feature-settings: "palt";
    
}

body{
    margin: 0;
	padding: 0;
	background: #fff;
	font-size: 0.7rem;
    line-height: 1.85;
	min-width: 1100px;
	min-width: inherit;	
    word-wrap: break-word;
    -webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}
body.appear {
    background: #fbfbfb;
    background-color: #e8cd74;
}

a{transition: .5s all;}
.wrap{
    width: 100%; 
    margin: 0 auto; 
    padding: 0 0px;
}
a.anchor{
    display: block;
    padding-top: 70px;
    margin-top: -70px;
}

br .pc{
    display: block;
}
br.sp{
	display: none;
	

}

#container{
    overflow: hidden;
    margin: 0 auto;
    /* background-color: #e8cd74; */
}

#main-area{
    /* max-width: 1020px; */
    margin: 0 auto;
}

h2{
    color: revert;
    text-align: center;
    font-weight: bold;
    /* font-family: serif; */
    font-size: 3rem;
}

h3{
    font-size: 1.6rem;
    line-height: normal;
    color: brown;
}

@media screen and (max-width:768px){
    #main-area{
    /* max-width: 360px; */
    margin: 0 auto;
}
    br.pc{
    display: none;
}
br.sp{
	display: block;
	
    display: inline;

}
    h3{
    font-size: 1rem;
    line-height: normal;
    color: brown;
}

}

/*------------------
*  共通終わり
*------------------*/


/*========= ローディング画面のためのCSS ===============*/
/* Loading背景画面設定　*/
#splash {
/*fixedで全面に固定*/
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 999999;
  background:#b7292f;
  text-align:center;
  color:#fff;
}

/* Loading画像中央配置　*/
#splash_logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* Loading アイコンの大きさ設定　*/
#splash_logo img {
  width:460px;
}

/* fadeUpをするアイコンの動き */
.fadeUp{
animation-name: fadeUpAnime;
animation-duration:0.5s;
animation-fill-mode:forwards;
opacity: 0;
}

@media screen and (max-width:768px){

    
#splash_logo img{
  width:260px;
}

    
    }
@keyframes fadeUpAnime{
  from {
    opacity: 0;
  transform: translateY(100px);
  }

  to {
    opacity: 1;
  transform: translateY(0);
  }
}
/*========= ローディング画面のためのCSS 終わり ===============*/


/*　ハンバーガーボタン */


/*========= ナビゲーションのためのCSS ===============*/

/*アクティブになったエリア*/
#g-nav.panelactive{
    /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
    position:fixed;
    z-index: 999;
    top: 0;
    width:100%;
    height: 100vh;
}

/*丸の拡大*/
.circle-bg{
    position: fixed;
    z-index:3;
    /*丸の形*/
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: #a73636;
    /*丸のスタート位置と形状*/
    transform: scale(0);/*scaleをはじめは0に*/
    left:-50px;
    top:-50px;
    transition: all .6s;/*0.6秒かけてアニメーション*/
}

.circle-bg.circleactive{
	transform: scale(50);/*クラスが付与されたらscaleを拡大*/
}

/*ナビゲーションの縦スクロール*/
#g-nav-list{
    display: none;/*はじめは表示なし*/
    /*ナビの数が増えた場合縦スクロール*/
    position: fixed;
    z-index: 999;
    width: 100%;
    height: 100vh;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}

#g-nav.panelactive #g-nav-list{
     display: block; /*クラスが付与されたら出現*/
}

/*ナビゲーション*/
#g-nav ul {
	opacity: 0;/*はじめは透過0*/
    /*ナビゲーション天地中央揃え※レイアウトによって調整してください。不必要なら削除*/
    position: absolute;
    z-index: 999;
    top:50%;
    left:50%;
    transform: translate(-50%,-50%);
}

/*背景が出現後にナビゲーションを表示*/
#g-nav.panelactive ul {
    opacity:1;
}

/* 背景が出現後にナビゲーション li を表示※レイアウトによって調整してください。不必要なら削除*/
#g-nav.panelactive ul li{
animation-name:gnaviAnime;
animation-duration:1s;
animation-delay:.2s;/*0.2 秒遅らせて出現*/
animation-fill-mode:forwards;
opacity:0;
}
@keyframes gnaviAnime{
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}


/*リストのレイアウト設定*/
#g-nav li{
	text-align: center; 
	list-style: none;
}

#g-nav li a{
	color: #fff;
	text-decoration: none;
	padding:10px;
	display: block;
	/* text-transform: uppercase; */
	letter-spacing: 0.1em;
	font-weight: bold;
	font-size: 1rem;
}
#g-nav li a:hover{
	opacity: 0.4;
    transform: 0.2s;
	
}

/*========= ボタンのためのCSS ===============*/
.openbtn{
	position:fixed;
	z-index: 9999;/*ボタンを最前面に*/
	top:20px;
	left: 27px;
	cursor: pointer;
	width: 80px;
	height:80px;
	background-image: url("../imges/アセット 16.png");
	background-size: contain;
	background-repeat: no-repeat;
}
.openbtn:hover{
    background-image: url("../imges/アセット 18.png");
    background-size: contain;
	background-repeat: no-repeat;
    transition: 0.3s;
}
/*×に変化*/	
.openbtn span{
    display: inline-block;
    transition: all .4s;/*アニメーションの設定*/
    position: absolute;
    left: 13px;
    height: 3px;
    border-radius: 2px;
    background: #fff;
    width: 45%;
  }
.openbtn:hover span{
    display: inline-block;
    transition: 0.3s;/*アニメーションの設定*/
    position: absolute;
    left: 13px;
    height: 3px;
    border-radius: 2px;
    background: #000;
    width: 45%;
  }
.openbtn span:nth-of-type(1) {
	top: 39px;
}

.openbtn span:nth-of-type(2) {
	top: 49px;
}

.openbtn span:nth-of-type(3) {
	top: 59px;
}

/*activeクラスが付与されると線が回転して×に*/

.openbtn.active span:nth-of-type(1) {
    top: 43px;
    left: 14px;
    transform: translateY(6px) rotate(-45deg);
    width: 40%;
}

.openbtn.active span:nth-of-type(2) {
	opacity: 0;/*真ん中の線は透過*/
}

.openbtn.active span:nth-of-type(3){
    top: 55px;
    left: 14px;
    transform: translateY(-6px) rotate(45deg);
    width: 40%;
}

@media screen and (max-width:768px){
    .openbtn{
	position:fixed;
	z-index: 9999;/*ボタンを最前面に*/
	top: 10px;
	right: 0px;
	left: 10px;
	cursor: pointer;
	width: 55px;
	height:80px;
}
    .openbtn span{
    display: inline-block;
    transition: all .4s;/*アニメーションの設定*/
    position: absolute;
    left: 15px;
    height: 3px;
    border-radius: 2px;
    background: #fff;
    width: 45%;
  }
.openbtn:hover span{
    display: inline-block;
    transition: 0.3s;/*アニメーションの設定*/
    position: absolute;
    left: 15px;
    height: 3px;
    border-radius: 2px;
    background: #000;
    width: 45%;
  }
.openbtn span:nth-of-type(1) {
	top: 33px;
}

.openbtn span:nth-of-type(2) {
	top: 44px;
}

.openbtn span:nth-of-type(3) {
	top: 55px;
}
.openbtn.active span:nth-of-type(1) {
    top: 37px;
    left: 16px;
    transform: translateY(6px) rotate(-45deg);
    width: 40%;
}

.openbtn.active span:nth-of-type(2) {
	opacity: 0;/*真ん中の線は透過*/
}

.openbtn.active span:nth-of-type(3){
    top: 49px;
    left: 16px;
    transform: translateY(-6px) rotate(45deg);
    width: 40%;
}

}

/*------------------
*  ハンバーガー終わり
*------------------*/

/*========= 上部固定させるためのCSS ===============*/
#header{
	display: none;
	height: 40px;/*高さ指定*/
	width:100%;/*横幅指定*/
	/*以下はレイアウトのためのCSS*/
	display: flex;
	justify-content: space-between;
	align-items: center;
	color:#fff;
	text-align: center;
	padding: 30px 0;
	position: fixed;
	z-index: 999;
}

/*JSを使いfixedクラスが付与された際の設定*/
#header.fixed{
  position: fixed;/*fixedを設定して固定*/
  z-index: 800;/*最前面へ*/
  top:0;/*位置指定*/
  left:0;/*位置指定*/
}


h1 img{
    padding-top: 10px;
    width: 25%;
}
.shop{
    position: fixed;
    z-index: 9999;
    top: 20px;
    left: 20px;
    cursor: pointer;
}
.shop img{
    width: 65px;
}

@media screen and (max-width:768px){
    #header{
	height: 0;/*高さ指定*/
	width:100%;/*横幅指定*/
	/*以下はレイアウトのためのCSS*/
	display: flex;
	justify-content: space-between;
	align-items: center;
	/* background:#fbfbfb; */
	color:#fff;
	text-align: center;
	padding: 0;
}
    h1 img{
        padding-top: 10px;
        width: 195px;
    }
    
 
}
/*========= 上部固定させるためのCSS 終わり===============*/

/*========= main画像のためのCSS===============*/
.top{
    width: 100%;
    display: inline-flex;
}
.mainimg{
    width: 600px;
    margin: 0px 0 0 50px;
    padding-right: 50px;
    display: grid;
    place-items: center;
}
.mainimg img{width: 100%;}
@media only screen and (max-width: 765px) {
.top{
    width: 100%;
    display: block;
    margin: -50px auto 0;
}
.mainimg{
    position: relative;
    width: 100%;
    display: block;
    top: 50px;
    margin: 0 auto;
    padding-right: 0;
    float: none;
    text-align: center;
    z-index: 2;
}
.mainimg img{width: 100%;margin: 0 auto;}
    
}

.jisya {
    padding: 50px 0 0;
    text-align: center;
    margin: 0 auto;
}
.jisya img{
    width: 300px;
}
/*==================================================
スライダーのためのcss
===================================*/

#slider {
    right: 0;
    width: 100%;
    height: 100vh;/*スライダー全体の縦幅を画面の高さいっぱい（100vh）にする*/
    z-index: auto;
}
@media only screen and (max-width: 765px) {
    #slider {
    right: 0;
    width: 100%;
    height: 100vh;/*スライダー全体の縦幅を画面の高さいっぱい（100vh）にする*/
    z-index: auto;
}
}
/*========= main画像のためのCSS　終わり===============*/

/*==================================================
機能編　9-1-2 丸が動いてスクロールを促す
===================================*/

/*スクロールダウン全体の場所*/
.scrolldown2{
    /*描画位置※位置は適宜調整してください*/
	position:fixed;
	bottom:10px;
	left:50%;
    z-index: 2;
}

/*Scrollテキストの描写*/
.scrolldown2 span{
    /*描画位置*/
	position: absolute;
	left:10px;
	bottom:10px;
    /*テキストの形状*/
	color: #eee;
	font-size: 0.7rem;
	letter-spacing: 0.05em;
	/*縦書き設定*/
	-ms-writing-mode: tb-rl;
    -webkit-writing-mode: vertical-rl;
    writing-mode: vertical-rl;
}

/* 丸の描写 */
.scrolldown2:before {
    content: "";
    /*描画位置*/
    position: absolute;
    bottom:0;
    left:-4px;
    /*丸の形状*/
	width:10px;
	height:10px;
	border-radius: 50%;
	background:#eee;
    /*丸の動き1.6秒かけて透過し、永遠にループ*/
	animation:
		circlemove 1.6s ease-in-out infinite,
		cirlemovehide 1.6s ease-out infinite;
}

/*下からの距離が変化して丸の全体が上から下に動く*/
@keyframes circlemove{
      0%{bottom:45px;}
     100%{bottom:-5px;}
 }

/*上から下にかけて丸が透過→不透明→透過する*/
@keyframes cirlemovehide{
      0%{opacity:0}
     50%{opacity:1;}
    80%{opacity:0.9;}
	100%{opacity:0;}
 }

/* 線の描写 */
.scrolldown2:after{
	content:"";
    /*描画位置*/
	position: absolute;
	bottom:0;
	left:0;
    /*線の形状*/
	width:2px;
	height: 50px;
	background:#eee;
}
/*==================================================
機能編　9-1-2 丸が動いてスクロールを促す 終わり
===================================*/
/*==================================================
ふわっ
===================================*/


/* fadeUp */

.fadeUp {
    animation-name: fadeUpAnime;
    animation-duration:2s;
    animation-fill-mode:forwards;
    opacity: 0;
}

@keyframes fadeUpAnime{
  from {
    opacity: 0;
  transform: translateY(100px);
  }

  to {
    opacity: 1;
  transform: translateY(0);
  }
}


/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
 
.fadeUpTrigger{
    opacity: 0;
}


/*==================================================
じわっ
===================================*/

/* ぼかしから出現 */
.blur{
  animation-name:blurAnime;
  animation-duration:1.5s;
  animation-fill-mode:forwards;
}

@keyframes blurAnime{
  from {
  filter: blur(10px);
  transform: scale(1.02);
  opacity: 0;
  }

  to {
  filter: blur(0);
  transform: scale(1);
  opacity: 1;
  }
}

/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
 
.blurTrigger{
    opacity: 0;
}



/*========= 流れるテキスト ===============*/

/*全共通*/

.slide-in {
	overflow: hidden;
    display: inline-block;
}

.slide-in_inner {
	display: inline-block;

}

/*左右のアニメーション*/
.leftAnime{
    opacity: 0;/*事前に透過0にして消しておく*/
}

.slideAnimeLeftRight {
	animation-name:slideTextX100;
	animation-duration:0.8s;
	animation-fill-mode:forwards;
    opacity: 0;
}

@keyframes slideTextX100 {
  from {
	transform: translateX(-100%); /*要素を左の枠外に移動*/
        opacity: 0;
  }

  to {
	transform: translateX(0);/*要素を元の位置に移動*/
    opacity: 1;
  }
}

.slideAnimeRightLeft {
	animation-name:slideTextX-100;
	animation-duration:0.8s;
	animation-fill-mode:forwards;
    opacity: 0;
}


@keyframes slideTextX-100 {
  from {
	transform: translateX(100%);/*要素を右の枠外に移動*/
    opacity: 0;
  }

  to {
	transform: translateX(0);/*要素を元の位置に移動*/
    opacity: 1;
  }
}



/*==================================================




　　　　　　　　　　共通　終了






===================================*/


/*--------------------------------
SAKE fes　とは
---------------------------------*/

.backcolor {
    width: 100%;
    margin: 0;
    padding: 150px 0;
    position: relative;
    top: 200px;
}

.backcolor::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: brown;
    transform: skewY(-7deg);
    /* z-index: -1; */
}

.mainimg2{
    position: relative;
    width: 80%;
    margin: 100px auto 0;
}
.mainimg2 img{
    width: 100%;
    border-radius: 15px;
    box-shadow: 6px 6px 10px 0px rgba(0, 0, 0, 0.4);
}
#area-5{
    position: relative;
    margin: 0 auto;
    text-align: center;
    padding: 10px 50px 50px;
    color: #fff;
    max-width: 1000px;
}
#area-5 h2{
    padding: 40px 0;
    line-height: 2.5rem;
}
#area-5 h2 img{
    width: 80%;
}
#area-5 .america{
    font-size: 1.7rem;
}
#area-5 .sandiego{
    display: block;
    font-size: 1.5rem;
}
#area-5 .dayt{
    font-size: 1.5rem;
    font-weight: 900;
    padding: 0 5px 0;
}
.americapr {
    text-align: center;
    padding: 30px 0 20px;
    z-index: auto;
    color: brown;
    background-color: #e8cd74;
}
.americapr img{
    width: 23%;
}
.prchans{
    font-size: 1.8rem;
    font-weight: bold;
    line-height: 2rem;
}
.prchans span{
    color: #000;
    font-size: 50px;
    font-weight: bold;
    margin: 0px 0 6px;
    border-bottom: solid 20px brown;
}
.sandiego_map {
    padding-top: 50px;
    display: inline-flex;
    text-align: left;
    font-size: 17px;
    letter-spacing: 1px;
    line-height: 2;
    justify-content: space-between;
    font-weight: 500;
}
.sandiego_map img{
    width: 314px;
}
.sandiego_map p{
    padding: 0  20px 0 0;
    text-align: justify;
}
.sekefesimg1{
    justify-content: space-between;
    display: flex;
    padding-top: 20px;
}
.sekefesimg1 img{
    width: 49%;
    border-radius: 15px;
    box-shadow: 6px 6px 10px 0px rgba(0, 0, 0, 0.4);
}

.nihonsyu{
    display: block;
    text-align: center;
    margin: -30px 0;
}
.shimekirimain{
    text-align: center;
    font-size: 2rem;
    padding: 30px 0;
    font-weight: bold;
    line-height: normal;
}
.mail{
    margin: 50px auto 0;
}

.mail p{
    color: brown;
    font-size: 1.5rem;
    font-weight: bold;
    background-color: #e8cd74;
    margin: 25px auto;
}


.btn,
a.btn,
button.btn {
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.5;
  position: relative;
  display: inline-block;
  padding: 0.5rem 3rem;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  letter-spacing: 0.1em;
  color: #212529;
  border-radius: 0.5rem;
}
.btn--orange,
a.btn--orange {
  color: #fff;
  box-shadow: 6px 6px 10px 0px rgba(0, 0, 0, 0.4);
  background-color: #003366;
}
.btn--orange:hover,
a.btn--orange:hover {
  color: #fff;
  opacity: 0.7;
}

a.btn--radius {
   border-radius: 100vh;
}

.leadfes{
    font-size: 0.8rem;
    text-align: center;
    display: block;
    padding: 15px 0 0 0;
}

@media only screen and (max-width: 765px) {
    
    
    .backcolor {
    width: 100%;
    margin: 0;
    padding: 50px 0;
    position: relative;
    top: 200px;
}

.backcolor::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: brown;
    transform: skewY(-7deg);
    /* z-index: -1; */
}

.mainimg2{
    position: relative;
    width: 80%;
    margin: 100px auto 0;
}
.mainimg2 img{
    width: 100%;
    border-radius: 15px;
    box-shadow: 6px 6px 10px 0px rgba(0, 0, 0, 0.4);
}
#area-5{
    position: relative;
    margin: 0 auto;
    text-align: center;
    padding: 10px 50px 50px;
    color: #fff;
    max-width: 1000px;
}
#area-5 h2{
    padding: 40px 0;
    line-height: 50px;
}
#area-5 h2 img{
    width: 100%;
}
#area-5 .america{
    font-size: 1.5rem;
}
#area-5 .sandiego{
    display: block;
    font-size: 1.6rem;
}
#area-5 .dayt{
    font-size: 1.5rem;
    font-weight: 900;
    padding: 0 5px 0;
}
.americapr {
    text-align: center;
    display: block;
    padding-top: 50px;
}
.americapr img{
    position: relative;
    top: 0;
    left: 30px;
    margin: 0 0 0 auto;
    width: 40%;
}
.prchans{
    font-size: 1.3rem;
    font-weight: bold;
    line-height: 1.8rem;
}
.prchans span{
    font-size: 33px;
    font-weight: bold;
    margin: 0px 0 6px;
    border-bottom: solid 20px brown;
}
.sandiego_map {
    padding-top: 50px;
    display: block;
    text-align: left;
    font-size: 17px;
    letter-spacing: 1px;
    line-height: 2;
    justify-content: space-between;
    font-weight: 500;
}
.sandiego_map img{
    width: 100%;
}
.sandiego_map p{
    padding: 0  0px 20px 0;
    text-align: justify;
}
.sekefesimg1{
    justify-content: space-between;
    display: block;
}
.sekefesimg1 img{
    width: 100%;
    border-radius: 15px;
    box-shadow: 6px 6px 10px 0px rgba(0, 0, 0, 0.4);
}

.shimekirimain{
    text-align: center;
    font-size: 1.5rem;
    padding: 30px 0;
    font-weight: bold;
    line-height: normal;
}
.mail{
    margin: 50px auto 0;
}

.mail p{
    color: brown;
    font-size: 1.5rem;
    font-weight: bold;
    background-color: #e8cd74;
    margin: 25px auto;
}


.btn,
a.btn,
button.btn {
  font-size: 0.8rem;
  font-weight: 700;
  line-height: 1.5;
  position: relative;
  display: inline-block;
  padding: 0.5rem 3rem;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  letter-spacing: 0.1em;
  color: #212529;
  border-radius: 0.5rem;
}
.btn--orange,
a.btn--orange {
  color: #fff;
  box-shadow: 6px 6px 10px 0px rgba(0, 0, 0, 0.4);
  background-color: #003366;
}
.btn--orange:hover,
a.btn--orange:hover {
  color: #fff;
  opacity: 0.7;
}

a.btn--radius {
   border-radius: 100vh;
}

    
}
/*--------------------------------



主催者について



---------------------------------*/

.midashi{
     margin: 50px auto 0;  
}
.midashi p{
    color: #e8cd74;
    font-size: 1.5rem;
    font-weight: bold;
    background-color: brown;
    margin: 25px auto;
}
#area-1{
    margin: 250px auto 0;
    text-align: center;
    padding: 10px 50px 50px;
    color: #585757;
    max-width: 1000px;
}

.sakeclub{
    display: inline-flex;
    justify-content: space-between;
    margin: 20px 0;
}
.sakeclub p{
    width: 500px;
    text-align: justify;
    color: #000;
    font-size: 15px;
    padding: 10px;
}
.sakeclub img{
    width: 49%;
    height: fit-content;
}

a.btn_03 {
	display: block;
	text-align: center;
	vertical-align: middle;
	text-decoration: none;
	width: 120px;
	margin: 20px  0 0 auto;
	padding: 0.1rem 3rem;
	font-weight: bold;
	border: 2px solid brown;
	color: brown;
	border-radius: 100vh;
	transition: 0.5s;
}
a.btn_03:hover {
	color: #fff;
	background: brown;
}

.mainimg3{
    position: relative;
    width: 100%;
    margin: 30px auto;
}
.mainimg3 img{
    width: 100%;
    border-radius: 15px;
    box-shadow: 6px 6px 10px 0px rgba(0, 0, 0, 0.4);
}

.img3list{
    display: flex;
    justify-content: center;
    margin: 30px auto;
}

.img3list li{
    list-style: none;
}
.img3list img{
    height: fit-content;
    width: 90%;
    border-radius: 15px;
    box-shadow: 6px 6px 10px 0px rgba(0, 0, 0, 0.4);
}
li:nth-child(2) {
    margin: 0 10px;
  }


/* 横並び */

.flex {
  display: flex; /*横並び*/
  margin: 50px;
  align-items: center;
}
.flex img {
  width: 50%; /*画像サイズ指定*/
  margin: 0;
  border-radius: 15px;
  box-shadow: 6px 6px 10px 0px rgba(0, 0, 0, 0.4);
}
.flex p{
  margin: 0 20px 0 20px;
  text-align: justify;
  color: #000;
  font-size: 0.8rem;
  font-weight: bold;
}

@media only screen and (max-width: 765px) {
    .midashi{
     margin: 50px auto 0;  
}
.midashi p{
    color: #e8cd74;
    font-size: 1.5rem;
    font-weight: bold;
    background-color: brown;
    margin: 25px auto;
}
#area-1{
    margin: 250px auto 0;
    text-align: center;
    padding: 10px 50px 50px;
    color: #585757;
    max-width: 1000px;
}

.sakeclub{
    display: block;
    justify-content: space-between;
    margin: 55px 0;
}
.sakeclub p{
    width: 100%;
    text-align: justify;
    color: #000;
    font-size: 15px;
    padding: 0;
}
.sakeclub img{
    width: 80%;
    height: auto;
}

a.btn_03 {
	display: block;
	text-align: center;
	vertical-align: middle;
	text-decoration: none;
	width: 120px;
	margin: 20px auto;
	padding: 0.1rem 3rem;
	font-weight: bold;
	border: 2px solid brown;
	color: brown;
	border-radius: 100vh;
	transition: 0.5s;
}
a.btn_03:hover {
	color: #fff;
	background: brown;
}

.mainimg3{
    position: relative;
    width: 100%;
    margin: 30px auto;
}
.mainimg3 img{
    width: 100%;
    border-radius: 15px;
    box-shadow: 6px 6px 10px 0px rgba(0, 0, 0, 0.4);
}

.img3list{
    display: flex;
    justify-content: center;
    margin: 30px auto;
}

.img3list li{
    list-style: none;
}
.img3list img{
    height: fit-content;
    width: 90%;
    border-radius: 15px;
    box-shadow: 6px 6px 10px 0px rgba(0, 0, 0, 0.4);
}
li:nth-child(2) {
    margin: 0 10px;
  }


/* 横並び */

.flex {
  display: block; /*横並び*/
  margin: 0;
  align-items: center;
}
.flex img {
  width: 100%; /*画像サイズ指定*/
  margin: 20px 0;
  border-radius: 15px;
  box-shadow: 6px 6px 10px 0px rgba(0, 0, 0, 0.4);
}
.flex p{
  margin: 0;
  text-align: justify;
  color: #000;
  font-size: 0.8rem;
}

}
/*--------------------------------



開催概要



---------------------------------*/
.midashi2{
     margin: 60px auto;
}
.midashi2 p{
    color: brown;
    font-size: 1.5rem;
    font-weight: bold;
    background-color: #e8cd74;
    margin: 25px auto;
    line-height: 45px;
    padding: 5px;
}
#area-2{
    position: relative;
    margin: 0px auto 0;
    text-align: center;
    padding: 90px 50px 50px;
    color: #585757;
    max-width: 1000px;
}
#area-2 dl{
    width: 80%;
    margin: 0 auto;
}

dl{
    display: -webkit-flex;
    display: -moz-flex;
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    width: 100%;
    border: 1px solid #ccc;
    border-bottom: none;
    color: #fff;
    /* background-color: #fff; */
}
dl dt{
	font-size: 1rem;
	font-weight: bold;
	text-align: center;
	/* background: #f5f5f5; */
	/* padding: 5px; */
	width: 300px;
	border-right: 1px solid #ccc;
	border-bottom: 1px solid #ccc;
}
dl dd{
	text-align: justify;
	/* background: #fff; */
	padding: 5px;
	width: calc(127% - 150px);
	border-bottom: 1px solid #ccc;
	font-size: 0.8rem;
}
@media only screen and (max-width: 765px) {
    #area-2 dl{
    width: 100%;
    margin: 0 auto;
}
	dl dt{ 
		width: 100%;
		border-right: none;
	}
	dl dd{
		width: 100%;
		/* text-align: center; */
	}
    
    
    
.midashi2{
     margin: 60px auto;
}
.midashi2 p{
    color: brown;
    font-size: 1.5rem;
    font-weight: bold;
    background-color: #e8cd74;
    margin: 25px auto;
    line-height: 45px;
    padding: 5px;
}
#area-2{
    position: relative;
    margin: 0px auto 0;
    text-align: center;
    padding: 90px 50px 50px;
    color: #585757;
    max-width: 1000px;
}


}
/*--------------------------------



出展要項



---------------------------------*/
.midashi3{
     margin: 60px auto;
}
.midashi3 p{
    color: #e8cd74;
    font-size: 1.5rem;
    font-weight: bold;
    background-color: brown;
    margin: 25px auto;
    line-height: 45px;
    padding: 5px;
}



.youkou{
    display: flex;
}

#area-3{
    margin: 250px auto 0;
    text-align: center;
    padding: 90px 50px 50px;
    color: #585757;
    max-width: 1000px;
}
#area-3 dl{
 
     width: 80%;
     margin: 0 auto;
     display: -webkit-flex;
     display: -moz-flex;
     display: flex;
     flex-wrap: wrap;
     align-items: stretch;
     border-bottom: none;
     color: #000;
     /* background-color: #fff; */
}
#area-3 dl dt{
	font-size: 1rem;
	text-align: center;
	/* background: #f5f5f5; */
	/* padding: 5px; */
	width: 380px;
	border-right: 1px solid gray;
	border-bottom: 1px solid gray;
}
#area-3 dl dd{
	text-align: justify;
	/* background: #fff; */
	padding: 5px;
	width: calc(127% - 150px);
	border-bottom: 1px solid gray;
	font-size: 0.8rem;
}

.price{
    display: block;
    margin: 20px auto;
}
.price p{
    width: 490px;
    margin: 0 auto 20px;
    font-size: 1rem;
    font-weight: bold;
    background-color: brown;
    color: #e8cd74;
}
.price span{
    width: 490px;
    color: crimson;
    text-align: justify;
    font-weight: bold;
}
.shimekiri{
    margin: 0 auto;
    width: 100%;
}

.shimekiri p{
    font-size: 1.5rem;
    font-weight: bold;
    background-color: #003366;
    color: #fff;
    line-height: 1.8;
}

.mail2{
    margin: 50px auto 0;
}

.mail2 p{
    color: #e8cd74;
    font-size: 1.5rem;
    font-weight: bold;
    background-color: brown;
    margin: 25px auto;
}

@media only screen and (max-width: 765px) {
.midashi3{
     margin: 60px auto;
}
.midashi3 p{
    color: #e8cd74;
    font-size: 1.5rem;
    font-weight: bold;
    background-color: brown;
    margin: 25px auto;
    line-height: 45px;
    padding: 5px;
}

.youkou{
    display: flex;
}

#area-3{
    margin: 250px auto 0;
    text-align: center;
    padding: 90px 50px 50px;
    color: #585757;
    max-width: 1000px;
}
    #area-3 dl{
    width: 100%;
    margin: 0 auto;
}
	#area-3 dl dt{ 
		width: 100%;
		border-right: none;
	}
	#area-3 dl dd{
		width: 100%; 
	}
    
    
.price{
    margin: 20px auto;
}
.price p{
    width: 100%;
    margin: 20px 0;
    font-size: 1rem;
    font-weight: bold;
    background-color: brown;
    color: #e8cd74;
}
.price span{
    width: 490px;
    color: crimson;
    text-align: justify;
}
.shimekiri{
    margin: 0 auto;
    width: 100%;
}

.shimekiri p{
    font-size: 1.2rem;
    font-weight: bold;
    background-color: #003366;
    color: #fff;
}

.mail2{
    margin: 50px auto 0;
}

.mail2 p{
    color: #e8cd74;
    font-size: 1.5rem;
    font-weight: bold;
    background-color: brown;
    margin: 25px auto;
}

}















@media screen and (max-width:768px){
    #area-1{
    padding: 10px 50px 50px;
    color: #585757;
    text-align: center;
}
    #area-2{
    padding-top: 0px;
    color: #585757;
    text-align: center;
    
}
    #area-3{
    padding-top: 70px;
    color: #585757;
    text-align: center;
    
}
h2{
    /* letter-spacing: 6px; */
    font-size: 50px;
}

.lead1{
    letter-spacing: 3px;
    padding: 25px 0 20px 0;
    line-height: 25px;
    text-align: justify;
    font-size: small;
}
.leaden{
    font-family: sans-serif;
    font-size: smaller;
    letter-spacing: 1px;
    line-height: 20px;
    font-weight: bold;
}
.area1 img{
    width: 450px;
    margin: 0 -30px;
    padding: 30px 0;
    
}
}
   


/*--------------------------------
footer
---------------------------------*/

.sp{
    display: none;
}
#footer{background-color: brown;text-align: center;color: #ffffff;padding: 30px 0 90px;}

.footer-link a{
    color: #ffffff;
    text-decoration: none;
    
}
.footer-r img{
    margin: 0 auto;
    width: 220px;
    padding: 20px 0 20px;
}
.footer-l a{
    color: #ffffff;
    text-decoration: none;
}


#footer ul{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    font-weight: inherit;
    padding-bottom: 25px;
    font-size: 12px;
    line-height: 30px;
}

#footer li{
    width: 25%;
    text-align: center;
}
.footer-r{
    width: 400px;
margin: 35px auto 0;
}
.gf {
    text-align: left;
    font-family: sans-serif;
    letter-spacing: 0.1em;
    
}
dl.access dt {
    
    width: 30%;
    padding-right: 0.5em;
    font-weight: bold;
    letter-spacing: 0;
    white-space: nowrap;
}

@media screen and (max-width: 767px){
    .footer-r{
    width: inherit;
margin: 35px auto 0;
}

    .pc{
        display: none;
    }
    .sp{
        display: block;
    }
    
    .map-block{
        margin: 0 -30px;
    }
    
dl.access dt {
    text-decoration: none;
    width: 30%;
    padding-right: 0.5em;
    font-weight: bold;
    letter-spacing: 0;
    white-space: nowrap;
}
.gf {
    text-align: left;
    font-family: sans-serif;
    letter-spacing: 0.1em;
    
}
}

