@charset "UTF-8";

/*----------------------------------------
	Base
----------------------------------------*/
html {
  font-size: 14px;
}

@media screen and (min-width: 576px) {
  html {
    font-size: 16px;
  }
}
@media screen and (min-width: 960px) {
  html {
    font-size: 18px;
  }
}

body {
  font-family: 'Noto Sans JP' , sans-serif;
  /* font-weight: 400;  Noto Sans JPのレギュラーウェイトを指定 */ 
}
/* おもな太字タグのフォントウェイト設定 */
h1,h2,h3,h4,h5,h6,th,strong {
  font-weight: 700;
}

/* 標準的なリテキスト色スト色 */

a {
  color: #f30;
}

/* イメージ基本指定 */
img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}
/* 標準ボタン */
.btn {
  display: inline-block;
  width: 300px;
  max-width: 100%;
  padding: 20px 10px;
  background-color: #0a831e;
  border: 2px solid transparent;
  /* box-shadow: 0 3px 6px rgba(0, 0, 0, .16); */
  color: #fff;
  font-size: 1.125rem;
  text-align: center;
  text-decoration: none;
  transition: .25s;
}

.btn:focus,
.btn:hover {
  background-color: #fff;
  border-color: currentColor;
  color: #0a831e;
}




/*----------------------------------------
	ヘッダー
----------------------------------------*/
.header {
  border-bottom: 1px solid #e7e7e7;
}

.header-utilities {
  display: flex;
  justify-content: space-between;
  align-items: center; 
}

@media screen and (min-width: 960px) {
  .header-utilities {
    display: block;
    padding: 10px 0 0 0;
    
  }
}

/*----------------------------------------
	ロゴ
----------------------------------------*/

.header-logo {
  margin-left: 15px;
  font-size: 0px;
}
.header-logo__img {
  width: 250px;
  
}

@media screen and (min-width: 960px) {
 
  .header-logo {
    padding: 0;
  }
  .header-logo__img {
    width: 350px;
  }
}

/* モバイル向けボタン */
.navbtn {
  display: block;
  width: 60px;
  height: 60px;
  background-image: url(../images/nav-mobile-open.svg);
  background-repeat: no-repeat;
  background-position: center center;
}
.navbtn.close {
  background-image: url(../images/nav-mobile-close.svg);
}


@media screen and (min-width: 960px) {
  
  .header__container {
    margin: 0 auto;
    padding: 0 20px;
    max-width: 1040px;
  }
}



/* ヘッダーナビゲーション */
.header-nav {
  display: flex;
  flex-direction: column;
  margin: 0;
  padding: 0;
  list-style: none;
}
.header-nav.collapse {
  display: none;
}
.header-nav__link{
  display: block;
  padding: 20px 30px;
  border-top: 1px solid #d8d8d8;
  background: #efefef;
  color: #0a831e;
  text-decoration: none;
}
.header-nav__link:hover {
  background: #b8e5ea;
}





@media (min-width: 960px) {
  /* pc向けレイアウト */
  .navbtn {
    display: none;
  }
  
   .header-nav {
    display: flex !important;
    flex-direction: row;
    justify-content: flex-end;
  }
   
  .header-nav__link {
    padding: 6px 20px 2px 20px;
    border-top: none;
    border-bottom: 4px solid transparent;
    background: none;
  }
  .header-nav__link:hover {
    
    background: none;
  }

}


/*----------------------------------------
	メインコンテナ
----------------------------------------*/


@media screen and (min-width: 960px) {
  .media-event {
    margin: 0 auto;
      padding: 0 20px 0 20px;
      max-width: 1040px;
  }
}


.media {
  position: relative;
}

/* メディアロゴ */
.media__logo {
  width: 350px; 
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

@media screen and (min-width: 576px) {
  .media__logo {
    width: 500px; 
  }
}
@media screen and (min-width: 768px) {
  .media__logo {
    width: 600px; 
  }
}


@media screen and (min-width: 960px) {
  .media__logo {
    width: 800px; 
  }
}



/* コンセプト */
.concept-container {
  padding: 40px 4% 0 4%;
}

.concept-title {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.6;
  color: #410b0b;
}

.concept-text {
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 60px;
  color: #410b0b;
}




@media screen and (min-width: 960px) {
  .concept-container {
    margin: 0 auto;
      padding: 40px 20px 0 20px;
      max-width: 1040px;
  }
}

/* イベントエリア */


.event-container {
  padding: 40px 4% 0 4%;
}

.event-inner {
  padding: 0 0 20px 0;
}
@media screen and (min-width: 960px) {
  .event-container {
    margin: 0 auto;
      padding: 40px 20px 0 20px;
      max-width: 1040px;
  }
}



.event-title {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.6;
  color: #410b0b;
}

.title-text {
  line-height: 1.8;
  text-align: left;
  color: #410b0b;
}


.event-brochure {
  text-align: center;
  padding: 30px 0;
}

.btn--large {
  min-width: 90%;
  padding-top: 25px;
  padding-bottom: 25px;
  border-radius: 100px;
  font-size: 1.275rem;
  /* letter-spacing: 0.6em; */
  margin-bottom: 10px;
}


@media screen and (min-width: 960px) {
  .btn--large {
    min-width: 85%;
    /* letter-spacing: 0.6em; */
  }
}



@media screen and (min-width: 670px) {
  .btn--large {
    
    letter-spacing: 0.6em;
  }
}



.shop-list {
  margin: 20px 0 60px 0;
  display: grid;
  grid-template-columns: 1fr;
  grid-auto-rows: minmax(100px, auto);
  column-gap: 10px;
  row-gap: 10px;
}


.shop-text {
  padding: 10px 20px 0;
  
}

.shop-item {
  border: 1px solid transparent;
  
  font-size: 16px;
  line-height: 1.5;
  color: #410b0b;
}

.number { 
  text-align: center;
  color: #fff;
  background: #410b0b;
}
.shop-name {
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center;
}

.shop-name6{
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center;
  
}

/* ショップHP・ECサイト用ボタン */
.btn-contact {
  text-align: center;
  margin-top: 20px;
  letter-spacing: 0.6em;
}

.btn--hp {
  padding: 5px 5px;
  min-width: 80%;
  border-radius: 50px;
  border: 2px solid transparent;
}

.btn--hp:focus,
.btn--hp:hover {
  background-color: #0a831e;
  border-color: #0a831e;
  color: #fff;
} 

.btn--ec {
  padding: 5px 5px;
  min-width: 80%;
  background-color: #c2ce00;
  color: #410b0b;
  border-radius: 50px;
  border: 2px solid transparent;
}

.btn--ec:focus,
.btn--ec:hover {
  background-color: #c2ce00;
  border-color: #c2ce00;
  color: #410b0b;
} 


@media screen and (min-width: 768px) {
  .shop-list {
    grid-template-columns: 1fr 1fr;
    column-gap: 20px;
    row-gap: 20px;
  }
  .shop-item {
    font-size: 16px;
  }
}
@media screen and (min-width: 960px) {
  .shop-list {
    grid-template-columns: 1fr 1fr 1fr;
    column-gap: 20px;
    row-gap: 20px;
  }
  .shop-item {
    font-size: 16px;
  }
  .shop-name6{
   font-size: 1.2rem;
    font-weight: 700;
    text-align: center;
    letter-spacing: 0.9;
  }
}

/* 豆情報 */
.product-map {
  margin: 0 15px;
}

.map__img-wrapper {
   max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

.beans-info {
  padding: 20px 0 20px 0;
 
}

.beans-title {
  font-size: 1.5rem;
  line-height: 1.5;
  letter-spacing: .2em;
  font-weight: 700;
  color: #410b0b;
}

.beans-name {
  font-size: 1.65rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: .2em;
  color: #410b0b;
}

.beans-text {
  font-size: 1.3rem;
  line-height: 1.2;
  color: #410b0b;
}

@media screen and (min-width: 768px) {
  .beans {
    display: flex;
    align-items: center;
    
  }
  .product-map {
    flex: 1 1 45%;
    margin-right: 3.33333%;
  }
  .beans-info {
    flex: 1 1 48.33333%;
  }

}

.event-period {
  font-size: 1.25rem;
  line-height: 1.6;
  font-weight: 700;
  color: #410b0b;
  margin: 5px;
}

.period-text {
  color: #410b0b;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.6;
  margin-bottom: 10px;
}

.event-text {
  color: #410b0b;
  margin-left: 4em;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.6;  
}

.btn--map {
 background-color: #c2ce00;
 color: #410b0b;  
}

btn--map:focus,
.btn--map:hover {
  background-color: #fff;
  border-color: currentColor;
  color: #410b0b;
}

.suppot {
  max-width: 630px;
  padding: 0 15px 20px;
  margin-right: auto;
  margin-left: auto;
}


.horizontal-table {
  border: 1px solid #410b0b;
}

.horizontal-table__inner {
  width: 100%;
}

.horizontal-table__header  {
  width: 20%;
  padding: 15px ;
  background-color: #fff;
  border-bottom: 1px solid #410b0b;
  border-right: 1px solid #410b0b;
  font-weight: bold;
  font-size: 1.5rem;
  color: #410b0b;
  vertical-align: middle;
}

.horizontal-table__text {
  padding: 15px ;
  border-bottom: 1px solid #410b0b;
  font-size: 1.5rem;
  color: #410b0b;
}


/* ページ下部コンテナ */
 
.bottom-container {
  padding: 60px 4% 0 4%;
}



 @media screen and (min-width: 768px) {
  .bottom-container {
    margin: 0 auto;
    padding: 40px 20px 0 20px;
    max-width: 1040px;
    
  }
} 



 .contact {
  text-align: center;
  margin-bottom: 20px;
 }

.btn--semicircle {
 
  border-radius: 100px;
  font-size: 1.375rem;
  letter-spacing: 0.2em;
}

.organizer {
  margin: 20px 0;
}

.organizer-title {
  font-size: 1.25rem;
  line-height: 1.6;
  font-weight: 700;
  color: #410b0b;
  text-align: center;
}

.organizer-name {
  font-size: 1.75rem;
  line-height: 1.6;
  font-weight: 700;
  color: #410b0b;
  text-align: center;
}


.sns {
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
}
.sns-item {
  margin: 0 10px;
}
.sns-link {
  display: block;
  width: 70px;
  height: 70px;
  background: #0a831e;
  border-radius: 50%;
  font-size: 30px;
  line-height: 70px;
  text-align: center;
  color: #ffffff;
}
.sns-link:hover {
  opacity: .8;
}


@media ( min-width: 768px) {
  .banner {
    flex-direction: row;
  }
  .banner div {
    margin: 0 10px;
  }
}
/* ページトップへ戻るボタン */

.gotop {
  text-align: center;
}
.gotop a {
  display: inline-block;
  padding: 1rem 4rem;
  background: #410b0b;
  border-radius: 20px 20px 0 0;
  font-size: 1.25rem;
  text-align: center;
  color: #ffffff;
  
}
.gotop a:hover {
  background: #410b0b;
  opacity: .6;
  
}




/**
 * ***************************************
 * フッター
 * ***************************************
 * 
 * フッターコンテナ
 */

.page-footer {
  background: #410b0b;
}
.footer-container {
  padding: 60px 4%;
}
@media (min-width: 768px) {
  .footer-container {
    margin: 0 auto;
    padding: 60px 20px;
    /* max-width: 1040px; */
  }
}

/**
 * ---------------------------------------
 * フッターモジュール
 */
/* ロゴ */
.footer-logo {
  margin-bottom: 30px;
  text-align: center;
}

.footer-logo__item {
  color: #fff;
  text-decoration: none;
}
/* フッターのナビゲーション➀ */
.footer-nav1 {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 0 30px 0;
  padding: 0;
  list-style: none;
}
.footer-nav1 li {
  margin: 0 0 2rem 0;
  font-size: .875rem;
}
.footer-nav1 li a {
  color: #d8d8d8;
  text-decoration: none;
}
.footer-nav1 li a:hover {
  color: #fff;
  text-decoration: underline;
}
@media (min-width: 768px) {
  .footer-nav1 {
    flex-direction: row;
    justify-content: center;
  }
  .footer-nav1 li {
    margin: 0 1rem;
  }
}
/* ナビゲーション⓶　その他リンク */
  .footer-nav2 {
    display: flex;
    justify-content: center;
    margin: 0 0 20px 0;
    padding: 0;
    list-style: none;
  }
  .footer-nav2 li {
    margin: 0 .75rem 3px .75rem;
    font-size: .75rem;
  }
  .footer-nav2 li a {
    color: #d8d8d8;
    text-decoration: none;
  }
  .footer-nav2 li a:hover {
    color: #fff;
    text-decoration: underline;
  }

/* コピーライト */
.copyright {
  font-size: .75rem;
  color: #d8d8d8;
  text-align: center;
}

/* プライバシーポリシー */

.privacy-container {
  padding: 120px 4% 0 4%;
}

.site-title {
  font-size: 1.45rem;
  font-weight: 700;
  line-height: 1.6;
  text-align: center;
  color: #410b0b;
  margin-bottom: 120px;
}

.site-title__link {
  text-decoration: none;
  color: #410b0b;
}

.lead-text {
  color: #410b0b;
  line-height: 1.5;
  margin: 20px 0 60px 0;
}

.section-container {
  margin-bottom: 60px;
}

.section-title {
  font-size: 1.125rem;
  color: #410b0b;
  line-height: 1.6;
  
  margin-bottom: 20px;
}

.section-text {
  color: #410b0b;
  line-height: 1.6;
  margin-bottom: 20px;
}

.section-list > *:last-child {
  margin-bottom: 0;
}

.section-list__item {
  position: relative;
  padding-left: 1em;
  line-height: 1.6;
  margin-bottom: 10px;
}

.section-list__item::before {
  content: '';
  position: absolute;
  top: .5em;
  left: 0;
  display: block;
  width: .7em;
  height: .7em;
  background-color: #410b0b;
  border-radius: 50%;
}

.contact-text {
  color: #410b0b;
  line-height: 1.6;
  
}

@media screen and (min-width: 960px) {
  .privacy-container {
    margin: 0 auto;
      padding: 60px 020px 60px 20px;
      max-width: 1040px;
  }
}

.privacy-container {
  padding: 120px 4% 0 4%;
}

.site-title {
  font-size: 1.45rem;
  font-weight: 700;
  line-height: 1.6;
  text-align: center;
  color: #410b0b;
  margin-bottom: 120px;
}

.site-title__link {
  text-decoration: none;
  color: #410b0b;
}

.lead-text {
  color: #410b0b;
  line-height: 1.5;
  margin: 20px 0 60px 0;
}

.section-container {
  margin-bottom: 60px;
}

.section-title {
  font-size: 1.125rem;
  color: #410b0b;
  line-height: 1.6;
  
  margin-bottom: 20px;
}

.section-text {
  color: #410b0b;
  line-height: 1.6;
  margin-bottom: 20px;
}

.section-list > *:last-child {
  margin-bottom: 0;
}

.section-list__item {
  position: relative;
  padding-left: 1em;
  line-height: 1.6;
  margin-bottom: 10px;
}

.section-list__item::before {
  content: '';
  position: absolute;
  top: .5em;
  left: 0;
  display: block;
  width: .7em;
  height: .7em;
  background-color: #410b0b;
  border-radius: 50%;
}

.contact-text {
  color: #410b0b;
  line-height: 1.6;
  
}




@media screen and (min-width: 960px) {
  .privacy-container {
    margin: 0 auto;
      padding: 60px 020px 60px 20px;
      max-width: 1040px;
  }
}


