@charset "utf-8";

/* リセットCSS */
*,
::before,
::after {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

ul,
ol {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
}

/* 共通設定 */
body {
  font-family: sans-serif;
  font-size: 16px;
  color: #fff;
  line-height: 1;
  background-color: #444;
}

img {
  max-width: 100%;
  /* 親要素より大きくならない設定 */
}








/* ここから自分用 */


/* header */ 

.header-site-menu ul{
    display: flex;
    justify-content: space-between;
}
  
  .header-site-menu li{
  font-weight: bold;
  display: inline-block;
  padding: 5px 30px 2px 27px;
  font-size: 24px;
  background: #000;
  line-height: 1.2;
  width: 100%;
  
  }
  
  .header-img img{
    position: relative;
    width: 100%
  }
  .header-text{
    position: absolute;
    top: 350px;
    left: 15%;
    width: 80%;
    z-index: 1;
  }
  
  /* footer */
  footer{
      background: #000;
  }
  
  .footer-inner{
      display: flex;
      justify-content: center;
      justify-content: space-between;
      padding: 30px 30px 0;
  }
  
  
  .footer-site-menu{
      font-weight: bold;
      display: inline-block;
      padding: 5px 30px 2px 27px;
      font-size: 24px;
      background: #000;
      line-height: 1.2;
      letter-spacing: 0;
      width: 250px;
  }
  
  .sns-logo{
      display: flex;
      width: 300px;
      justify-content: space-between;
      align-items: center;
  }
  .company-logo{
      display: flex;
      align-items: center;
  }
  
  .copyright{
      display: flex;
      justify-content: center;
  }



/* main */

/* ===============================
   セクション共通
================================ */
section {
  background-color: #1e1e1e;
  margin: 3em auto;
  padding: 2em 3em;
  border-radius: 10px;
  width: 80%;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

h2 {
  text-align: center;
  font-size: 2em;
  margin-bottom: 1em;
  color: #f5c94c;
  letter-spacing: 2px;
}

/* ===============================
   料金システム
================================ */
.section-box {
  background-color: #2b2b2b;
  margin: 1.5em 0;
  padding: 1.5em 2em;
  border-left: 4px solid #f5c94c;
  border-radius: 5px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.section-box h3 {
  color: #ffea9e;
  margin-bottom: 0.5em;
}

.section-box p {
  color: #ccc;
  line-height: 1.6;
}

/* ===============================
   ドリンクメニュー
================================ */
.menu-note {
  text-align: center;
  color: #ccc;
  font-size: 1.1em;
  margin-bottom: 2em;
  line-height: 2;
}

.drink-categories {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2em;
  height: 100px;
}

.drink-categories2 {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2em;
}

.drink-box {
  background-color: #3b3b3b;
  width: 250px;
  padding: 1.5em;
  border-radius: 8px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}



.drink-box h3 {
  color: #f5c94c;
  margin-bottom: 1em;
  border-bottom: 1px solid #555;
  padding-bottom: 0.5em;
  text-align: center;
}

.drink-box ul {
  list-style: none;
  padding: 0;
}

.drink-box li {
  color: #ddd;
  line-height: 1.8;
  text-align: center;
}

.drink-categories-box{
  display: flex;
}

.drink-img-box img{
  width: 550px;
  border-radius: 50px;
  margin-bottom: 100px;
  transform: rotate(deg);
}

@media screen and (max-width:1464px) {
  .drink-img-box img{
    display: none;
  }
}