/*headline*/


.m-level1Heading {
  font-family: "Noto Serif JP", serif;
  font-size: 2.25rem; /* 36pxをremで設定 */
  position: relative; /* ::beforeを正確に配置するため */
  display: inline-block;
  text-align: center;
  line-height: 1; /* 高さを文字サイズに合わせる */
  margin-top: 2.2rem; /* 上部余白を調整 */

  height: 4rem; /* 全体の高さを固定 */
}

.m-level1Heading::before {
  content: "";
  position: absolute;
  top: -2.2rem; /* 文字の上に余白1rem追加 */
  left: 50%; /* 横幅の中央に配置 */
  transform: translateX(-50%); /* 中央位置の調整 */
  width: 1px; /* 縦線の幅 */
  height: 1.8rem; /* 縦線の高さ */
  background-color: #000; /* 縦線の色を黒に設定 */
}












.m-level2Heading{
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-weight: bold;
  font-style: normal;
  font-size:2.25rem;

  display: flex;
  align-items: center; /* 垂直中心 */

}




.m-level3Heading{
 font-size: 1.5rem;

}

.m-level3Heading::before{
    content: "■";
}

.m-h3{
    margin: 1rem 0;
}


/*layout*/
/*.m-sectionは大枠のレイアウトのみに使用すること*/
.m-section{

  max-width: 1920px;
  padding-top:5rem;/*80px*/
  padding-bottom: 4.375rem;/*70px*/
  padding-top:min(4.8vw,5rem);
  padding-bottom:min(3.4vw,4.375rem);


}

/*一つ目のセクション*/
.m-section--news {
  background-color: #F5F5F5;
  background-image: url('../assets/top/bg-beer.png'); /* 背景画像のパスを指定 */
  background-position: right bottom; /* 右下に配置 */
  background-repeat: no-repeat; /* 繰り返しなし */
  background-size:auto; /* 背景画像を適切にサイズ調整 */
  width: 100%; /* セクションの横幅 */
  height: auto; /* 高さを必要に応じて設定 */
}




.m-section--top-120,
.m-section:first-child{
  padding-top:7.5rem;/*120px*/
  padding-top:min(8.3vw,7.5rem);
}
.m-h2{
  max-width: 1440px;
  margin: 0 auto;
  margin-bottom: 2rem;
}

/*下層用タイトルの余白調整*/
.m-h2Lower{
  max-width: 1440px;
  margin: 0 auto;
  margin-bottom:5rem
}






/*button*/

/*button,aタグ両方に対応*/

.m-formBtn{
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-style: normal;
  display: inline-block;
  line-height: 100%;
  background: #61584B;
  color: #fff;
  border: none;
  text-align: center;
  padding: 1.25rem 5.4rem;
  max-width: 100%;
  transition: .5s;
  text-decoration:none;
  font-size:1rem;

  cursor: pointer;

}
.m-formBtn:hover{
  background:#171C61;
}
.m-formBtn--cv-blue{
  background: #171C61;
}
.m-formBtn--cv-blue:hover{ 
   background:#61584B;;
}

.m-formBtn--cv-green{ 
   background:#aacd06;
}


.m-formBtn--cv-green:hover{ 
   background:#8fa725;
}


/*ページ遷移用ボタン */
.m-button {
  font-size: 1.125rem; /* 18pxをremで指定 */
  background-color: #004471; /* 背景色 */
  color: #fff; /* 文字色を白に */
  padding: 14px 0; /* 文字の上下余白を14pxに設定 */
  width: 270px; /* 横幅を設定 */
  text-align: center; /* テキストを中央揃え */
  border: none; /* ボーダーを削除 */
  border-radius: 20px; /* 角丸を設定 */
  cursor: pointer; /* ホバー時のカーソルを変更 */
  display: inline-block;
  line-height: 1; /* 行間の調整 */
  transition: 0.5s;
}

.m-button:hover {
  background-color: #434447; /* ホバー時に背景色を暗くする */
}




.m-linkBtn{
  display: flex;
  text-decoration:none;
  align-items: center;
  column-gap:0.625rem;
  padding-right: 1rem;/*ホバー時移動分*/
}
.m-linkBtn__text{
  font-size: 1rem;
  color: #000;
  transition: .5s;
}
.m-linkBtn:hover .m-linkBtn__text{
  color: #000;
}
/*丸い円に→*/
.m-circleArrow{
  display: inline-block;
  content: '';
  position: relative;

  width: 30px;
  height: 30px;
  border: 1px solid #000;
  border-radius: 50%;
  transition: 0.5s;
}

.m-linkBtn:hover .m-circleArrow{
  transform: translateX(0.625rem);
}

.m-circleArrow::after{
  content: '';
  position: absolute;
  top: 50%;
  left: 4px;

  width: 20px;
  height: 1px;
  border-top: 1px solid #000;
}
.m-circleArrow::before{
  content: '';
  position: absolute;
  top: calc(50% - 1px);
  left: 25px;

  width: 10px;
  height: 1px;
  border-top: 1px solid #000;
  transform-origin: left;
  transform:rotate(-135deg)
}



/*card*/
.m-card{
  display: inline-block;
  text-decoration: none;
  padding-bottom: 0.25rem;
  width: 100%;
}


/*singlepageのみ別CSSを使用 記述：style.css*/
.m-card__imgWrapper{
  margin-bottom: 25px;
  width: 100%; /* Adjust to desired width */
  aspect-ratio: 16 / 9; /* Maintains the 16:9 aspect ratio */
  overflow: hidden;
  position: relative;
  transition: .5s;
  border: solid 1px #ddd;
 
}

.m-card__imgWrapper img{
  width: 100%;
  height: 100%;
  object-fit: cover; /* Ensures the image covers the container while maintaining its aspect ratio */
  object-position: center;
 

}
.m-card__img{
  height: auto;
  aspect-ratio: 16 / 9;
  

}

.m-card:hover .m-card__imgWrapper{
  transform:translateY(-5px);
}
.m-card__time{
  display: inline-block;
  font-size:0.75rem;
  text-decoration: none;
  margin-bottom: 25px;
  color: #000;
}
.m-card__title{
  font-size:1rem;
  color: #000;
  line-height: 140%;
}




/*archive.html*/

.archiveContainer .m-card__imgWrapper{
  margin-bottom:.75rem;
}

.archiveContainer .m-card__time{
   margin-bottom:.75rem;
}









/*m-leadtext*/

.m-leadtext{
  max-width: 1440px;
  margin-right:  auto;
  margin-left: auto;
  align-items: center;
  justify-content: center;

  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  width: 100%;
  font-size:1.5rem;
  margin-bottom: 2.25rem;
 line-height: 140%;
}


/*ブルワリーこだわり*/

.m-catchcopy{
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 1300px;
  margin-right:  auto;
  margin-left: auto;
}


.m-catchcopy__head{
  max-width: 540px;
  position: relative;
}

.m-catchcopy__imgWrapper{
  display: inline-block;


}
.m-catchcopy__img{
  width: 100%;

}
.m-catchcopy__imgWrapper--dent{
  margin-left: 1.125rem;
  transform: translateY(3rem);
}

.m-catchcopy__title{
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  width: 100%;
  font-size:2.25rem;
  margin-bottom: 1.5625rem;
 line-height: 140%;
 transform: translateX(-1rem);/*「」の位置を左に揃えるため*/
}


.m-catchcopy__body{
  padding-left: 4.5vw;
  width: calc(100% - 450px);

}

/*frontpageコラムからテキスト以外非表示*/
.m-catchcopy__body--column img,
.m-catchcopy__body--column ul,
.m-catchcopy__body--column ol{
  display: none;

}
.m-catchcopy p,
.m-catchcopy__text{
  font-size:1rem;
  line-height: 160%;
  max-width: 650px;
  margin-bottom: 74px;
}
.m-catchcopy__img{
  padding-left: 4rem;
}


/*media*/
.m-media{

  max-width: 1920px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  margin-bottom: 5rem;
}

.m-media--small{
  max-width: 1440px;
  display: flex;
  align-items:center;
  justify-content:left;
  margin: 0 auto;
  margin-bottom: 2rem;
}



.m-media__imgWrapper{
 
  margin-right: 4.6875rem;
}
.m-media__img{
  max-width: 100%;
}

/*.m-media__img*/
.m-media--small .m-media__img{
  max-width: 300px;
  width: 100%;
  height: auto;
}


.m-media__body{

  flex:0 1 35vw;
  margin-right: 0;

  
}

/*逆向き*/
.m-media--reverse{
flex-direction: row-reverse;
}
.m-media--reverse .m-media__imgWrapper{
  margin-right: 0rem;
  margin-left: 2rem;
}

.m-media--reverse .m-media__body{
  margin-right: 2.6875rem;
  margin-left: 0;
}
.m-media--reverse .m-media__imgWrapper{

  margin-left: 2rem;
}



.m-media__num{
  display: inline-block;
  font-size:1rem;
  margin-bottom:0.625rem;
  line-height: 160%;
}
.m-media__title{
  font-size:1.5rem;
  font-weight: bold;
  margin-bottom:1.25rem;
}
.m-media__text{
  font-size:1rem;
  line-height:200%;
}


/*table horizontal*/

.m-horizontal-table{
  width:  100%;
}

/*横スクロールを出すfoodのみ使用*/
.food .m-horizontal-table{
  max-width:calc(100vw - 4rem);/*画面幅から左右余白を引く*/
}
.m-verical-table__headerRow{
    border-bottom: solid 1px #000;
}
.m-horizontal-table__headerTitle{
  padding: 1rem;
  font-size:0.875rem;
  text-align: left;
}
.m-horizontal-table__headerTitle:nth-child(2){
  text-align: center;
}


.m-horizontal-table__inner{
  width: 100%;
}
.m-horizontal-table__row{
  border-bottom: solid 1px #000;

}
.m-horizontal-table__header{
  width:25%;
  padding: 1rem;
  vertical-align: middle;
}
.m-horizontal-table__text{
  line-height: 200%;
  padding: 1rem;
  vertical-align: middle;
}


/*table horizontal --food*/
.m-horizontal-table__imgThumbnail{
  width: 10%;
  padding: 1rem 1rem 1rem 0;
  vertical-align: middle;

}
.m-horizontal-table__imgThumbnail img{
  width: 100%;
  min-width: 65px;
  max-height: 100px;
}
.m-horizontal-table__information{

  padding: 1rem;
  vertical-align: middle;
  font-size:1.25rem;
  line-height: 160%;
}
.m-horizontal-table__informationOption{
  line-height: 160%;
  font-size:0.75rem;
  display: block;
}
.m-horizontal-table__price{
  width:20%;
  padding: 1rem;
  font-size:1.5rem;
  vertical-align: middle;
  text-align: right;
}
.m-horizontal-table__priceOption{
  font-size:0.875rem;
  margin-left: 1rem;
}

/*サービス用料金表*/








/*table-price*/
.only-md{
  display: none;
}
.m-price-table__inner{
  width: 100%;
  table-layout:fixed;
}
.m-price-table__header{
  padding:1rem;

  border: solid 1px #CACACA;;
  text-align: center;
}

.m-price-table__header::last-child{
  border-right-width:0;
}
.m-price-table__headerTitle{
  font-size:1rem;
}

.m-price-table__body tr:nth-child(odd) {
  background-color: #eeeeee;
}





.m-price-table__price{
  font-size:1.875rem;
}

.m-price-table__priceUnit{
  font-size:1rem;
}


.m-price-table__bodyTitle{
  padding: 1rem;
  border-top: solid 1px #CACACA;;
  border-left: solid 1px#CACACA;;

  text-align: left;
  vertical-align: middle;
}

.m-price-table__bodyText{
  padding: 1rem;
  border-top: solid 1px #CACACA;;
  border-left: solid 1px #CACACA;;
  line-height: 140%;
  text-align:left;
  vertical-align: middle;
}

.m-price-table__bodyText:last-child{
  border-right: solid 1px #CACACA;;

}

.m-price-table__bodyRow:last-child
.m-price-table__bodyTitle,
.m-price-table__bodyRow:last-child
.m-price-table__bodyText{
  border-bottom: solid 1px #CACACA;;
}


/*lineList*/
.m-lineList{}
.m-lineList__item{
  padding: 2rem;
  border: solid 10px #CACACA;
  margin-bottom: 2rem;
  line-height: 130%;
  font-size: 1.5rem;
}
.m-lineList__item--check{
  line-height: 30px; /* 行の高さを画像の高さと一致させる */
  background-image: url(../assets/cmn/CheckSquare.svg);
  background-size: 60px;
  background-repeat: no-repeat;
  background-position:left center;
  font-size:1.2rem;
  margin-bottom: 2rem;
  padding-left:70px;

}



.m-checkList{}
.m-checkList__item{
  line-height: 30px; /* 行の高さを画像の高さと一致させる */
  background-image: url(../assets/cmn/CheckSquare.svg);
  background-size: 30px;
  background-repeat: no-repeat;
  background-position:left top;
  font-size:1.2rem;
  margin-bottom: 2rem;
  padding-left:40px;
}




/*order-list*/
.m-order-list{counter-reset: order-list;
}


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

.m-order-list__item{
  line-height: 140%;
  position: relative;
  padding-left: 1rem;
  padding-bottom: 1rem;
  margin-bottom: 1rem;


}
.m-order-list__item:before{
  content: counter(order-list)
  '.';
  position: absolute;
  top:0;
  left: 0;
  color: #000;
  font-weight: bold;
  counter-increment: order-list;
}




/*background セクション区切り*/
.m-jumbotron{
  background-position: center center;
  background-size: cover;
  content: "";
  height: 27vw;/*400px / 1440px *100 画像の高さ / 開発時の横幅サイズ*/

}



/*journal更新エリアのスタイル*/
.journal{
  max-width: 100%;
  padding: 1rem;
  line-height: 150%;

}
.journal h1{
  font-size:1.5rem;
  border-bottom: solid 2px #000;
  padding: 0.625rem;
  padding-left: 0;
  margin-bottom: 1rem;
}
.journal h2{
  font-size:1.5rem;
  margin-bottom: 1rem;
}
.journal h3{
  font-size: 1.25rem;
  margin-bottom: 1rem;
}
.journal h4{
  display: inline-block;
  font-size: 1rem;
  border: solid 1px #000;
  padding:0.625rem;
  margin-bottom: 1rem;
  line-height:120%;
}
.journal h5{
  font-size: 1rem;
  margin-bottom: 1rem;
}
.journal h5::before{
  content:"■";
  margin-right: .3rem;
}

.journal h6{
  font-size: 1rem;
  margin-bottom: .3rem;
}
.journal h6::before{
  content: "【";

}
.journal h6::after{
  content: "】";

}

.journal p{
  line-height: 180%!important;
  font-size: 1rem;
  margin-bottom: 1.5rem;

}
.journal img{
  max-width: 100%;
  margin-top: 1rem;
  margin-bottom: 1rem;
  height: 100%;
}

.journal ul,.journal ol{
  line-height: 180%!important;
  margin-bottom: 1.5rem;

}

/*aside*/
.asideList{
  width: 100%;
}

.asideList__title{
  font-size:1.2rem;
  font-weight: bold;
  margin-bottom: 1rem;
  line-height: 100%;
}

.asideList li{
  border-bottom: solid 1px #000;


}
.asideList li a{
  display: inline-block;
  width: 100%;
  font-size:1rem;
  text-decoration: none;
  color: #000;
  padding: 1rem .5rem;
  transition: .5s;
}

.asideList li a:hover{
  background:#171C61;
  color: #fff;
}

/*FAQ*/
.faq > *:last-child{
  margin-bottom: 0;
}
.faq__row{
  position: relative;
  display: flex;
  align-items: flex-start;
  box-sizing: content-box;
  min-height: 2.8125rem;
  padding-left: 3.75rem;
  line-height: 140%;

}
.faq__row--question{
  margin-bottom: 1.5rem;
}

.faq--question{
  margin: 1rem;
  font-size:1.125rem;
  font-weight: bold;
}

.faq__questionText{
  padding-top:0rem;
}

.faq__icon{
  position: absolute;
  top: 0;
  left: 0;
  width: 2.8125rem;
  height: 2.8125rem;
  font-weight: normal;
  line-height: 2.8125rem;
  text-align: center;
}


.faq__icon--question{
  background:#61584B;
  color: #fff;
}

.faq__icon--answer{
  background: #fff;
  border: solid 1px #000;
  color: #000;
}
.faq__answerBody{
  padding-top:0rem;
}

.faq__answerBody > *:last-child{
  margin-bottom: 0;
}
.faq__answerText{
  margin-bottom:  1.25rem
}


.faq__row--answer{
  padding-bottom: 1rem;
  margin-bottom:2rem;
  border-bottom: solid 1px #000;
}






















/*Noto Sans-serif JP*/
.noto-sans-serif{
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}
@media screen and (max-width: 1440px) {

/*headline*/
.m-level2Heading{
  margin-left: 1rem;/*左からの余白*/

}



/*m-leadtext*/

.m-leadtext{
  font-size:1rem;
  padding:0 1rem;
}





/*catchcopy*/
.m-catchcopy{
  padding:1rem;
}



/*media*/
.m-media{
  padding-left: 1rem;
  padding-right: 1rem;
}

}



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

/*headline*/
.m-level2Heading{
  line-height: 130%;
  font-size:2rem;

}




/*layout*/
.m-section{
  max-width: 100%;
  padding-top:3.5rem;/*56px*/
  padding-bottom: 3.125rem;/*50px*/
  padding-top:3.5rem;/*56px*/
  padding-bottom:min(3.4vw,3.125rem);
}



/*一つ目のセクション*/
.m-section--top-120,
.m-section:first-child{
  padding-top:3.5rem;/*56px*/

}

.m-section--top-120
















/*table horizontal --food*/
.m-horizontal-table__imgThumbnail{
  width: 10%;
  padding: 1rem .3rem 1rem 0;
  vertical-align: middle;

}

.m-horizontal-table__imgThumbnail{
  width: 10%;
  padding: 1rem 0rem 1rem 0;
  vertical-align: middle;

}
.m-horizontal-table__imgThumbnail img{
  width: 100%;
  min-width: 70px;
}
.m-horizontal-table__information{

  padding: 1rem;
  vertical-align: middle;
  font-size:1rem;
  line-height: 160%;
}
.m-horizontal-table__informationOption{
  line-height: 160%;
  font-size:0.625rem;
  display: block;
}





/*ページ遷移用ボタン */




.m-linkBtn{
  column-gap:0.5rem;
}
.m-linkBtn__text{
  font-size: 0.875rem;
}

/*丸い円に→*/
.m-circleArrow{
  width: 25px;
  height: 25px;
}

.m-linkBtn:hover .m-circleArrow{
  transform:none;
}

.m-circleArrow::after{
  top: 50%;
  left: 4px;
  width: 15px;
  height: 1px;
}
.m-circleArrow::before{
  top: calc(50% - 1px);
  left: 20px;

  width: 5px;
  height: 1px;

}











/*catchcopy*/

.m-catchcopy{
  padding-bottom: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 100%;
}
.m-catchcopy__body{

  padding-left:0;
  width: 100%;
}
.m-catchcopy__imgWrapper{
  display: inline-block;
  width: 100%;

}

.m-catchcopy__img{
 width: 100%;
padding-left: 0;

}

.m-catchcopy__title{

  font-style: normal;

  font-size:1.625rem;
  margin-bottom: 2.25rem;
  transform: translateX(0);/*「」の位置を左に揃えるため*/
}


.m-catchcopy__title{


}
/*写真用modifire*/
.m-catchcopy__title--top{

}
/*コラムでしよう*/
.m-catchcopy__title--column{
  background-image:url(../assets/top/catchcopy-img2.png);
}


.m-catchcopy__head{
  display: none;
}
.m-catchcopy__body{
  padding-left: 0;
  width: 100%;

}
.m-catchcopy__text{
  font-size:1rem;
  line-height: 160%;

}




/*media*/
.m-media{

  max-width: 100%;
  display: flex;
  flex-direction: column-reverse;
  margin-bottom: 2rem;
  margin-top: 2rem;
}
.m-media__body{
  margin-left: 0;
  margin-right: 0;
  width: 100%;
  flex:auto;
}

/*逆向き*/
.m-media--reverse{
flex-direction: column-reverse;
}
.m-media--reverse .m-media__imgWrapper{
  margin-left: 0;
  margin-right: 0;
  width: 100%;
}

.m-media--reverse .m-media__body{
  margin-left: 0;
  margin-right: 0;
  width: 100%;
  padding-left: 0;
}


.m-media__imgWrapper{
  flex:0 1 100%;
  margin-left: 0;
  margin-right: 0;
  width: 100%;
}
.m-media__img{
  max-width: 100%;
}



.m-media__num{
  display: inline-block;
  font-size:1rem;
  margin-bottom:0.625rem;
  line-height: 160%;
}
.m-media__title{
  font-size:1.5rem;
  margin-bottom:1.25rem;
}
.m-media__text{
  font-size:1rem;
  line-height:200%;
  margin-bottom:1.25rem;
}






/*button*/

/*button,aタグ両方に対応*/

.m-formBtn{

 line-height: 130%;


}






.m-horizontal-table__information{


  font-size:1rem;

}


.m-horizontal-table--mdScroll{
  overflow-x: auto;
}

.m-horizontal-table--mdScroll .m-horizontal-table__header, .m-horizontal-table__text,.m-horizontal-table__information,.m-horizontal-table__price{
  white-space: nowrap;
}

/*table-price*/
.only-md{
  display: block;
}

.m-price-table{
  overflow-x: auto;
}

.m-price-table__inner{
  width: auto;
  white-space: nowrap;
}


.m-price-table__bodyTitle{
  position: -webkit-sticky;
  position: sticky;
  left: 0;
  background: #fff;
  box-shadow: 1px 0 #ddd;
  font-size:.875rem;
}





/*card*/
.m-card{

  width: 100%;
  padding:0;
}
.m-card img{
  width: 100%;
}

.m-card:hover .m-card__imgWrapper{
  transform:none;
}


/*archive.html*/

.archiveContainer .m-card__imgWrapper{
  margin-bottom:.5rem;
}


.archiveContainer .m-card__time{
   margin-bottom:.5rem;
}





}

/*SE対応*/
@media screen and (max-width: 330px) {
/*btn*/
.m-formBtn{
  padding: 1.25rem 4rem;
}

}