@charset "utf-8";

/* フォント設定 */
@font-face {
  font-family: "segoesc";
  src: url("../font/segoesc/segoesc.ttf");
}

html {
  font-size: 62.5%;
  font-family: "游ゴシック", "segoesc";
  background-color: rgba(139, 181, 199, 0.5);
  -webkit-text-size-adjust: none;
  overflow-x: hidden;
  width: 100%;
}

/* パンくずリスト（Breadcrumb） */
.Breadcrumb {
  margin: 0 20px;
}

.Breadcrumb ol {
  display: flex;
}

.Breadcrumb li {
  font-size: 1rem;
  font-weight: bold;
  margin-right: 10px;
}

/* トップイメージ */
.mission {
  position: relative;
  margin-bottom: 20px;
}

.mission img {
  width: 100vw;
  height: 500px;
  object-fit: cover;
}

.text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-size: 4.3rem;
  font-weight: bold;
  text-align: center;
}

@media screen and (max-width: 960px) {
  .text {
    font-size: 3rem;
  }
}

/* 見出し・本文 */
h1 {
  font-size: 3.2rem;
  font-weight: bold;
  text-align: center;
  color: #222;
  margin-bottom: 10px;
}

p {
  font-size: 1.4rem;
  color: #333;
}

/* 税率に関する警告ボックス */
.Warning {
  width: 50vw;
  background-color: #fff;
  text-align: center;
  padding: 10px;
  border-radius: 5px;
  margin: 0 auto 20px;
}

.Warning p {
  font-size: 1.4rem;
}

.Red {
  color: red;
}

@media screen and (max-width: 960px) {
  .Warning {
    width: 95vw;
  }
}

/* メニュー一覧表示（Drink / Sweets / Foods / Beer） */
.Menu-wrap {
  background-color: #fff;
  width: 90vw;
  padding: 10px;
  border-radius: 5px;
  margin: 0 auto 40px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 30px;
}

.Menu-wrap div p {
  font-weight: 500;
}

.Menu-wrap div:hover img {
  transform: scale(1.05);
  transition: 0.3s ease;
}

.Menu-wrap img {
  aspect-ratio: 1 / 1;
}

@media screen and (max-width: 960px) {
  .Menu-wrap {
    grid-template-columns: repeat(3, 1fr);
  }

  .Menu-name {
    margin-bottom: 10px;
  }
}

/* アクセス情報 */
.Access-center {
  display: flex;
  justify-content: center;
}

.Access {
  display: flex;
  background-color: #fff;
  justify-content: space-around;
  width: 90vw;
  padding: 20px;
  border-radius: 10px;
  margin-bottom: 20px;
}

.Access h1 {
  margin: 0;
}

.Map-wrap {
  width: 60%;
}

.Map {
  height: 80%;
  border: solid 2px #999;
}

.Map iframe {
  width: 100%;
  height: 100%;
}

.Access-table {
  width: 30vw;
  font-size: 1.6rem;
}

.Access-table th,
.Access-table td {
  border: solid 2px #999;
  vertical-align: middle;
  padding: 10px;
  color: #222;
}

.Access-table th {
  text-align: center;
}

.Access-table td {
  text-align: left;
}

.Access-table td a {
  color: #57a2c7;
}

.Access-table td a:hover {
  color: rgba(139, 181, 199);
}

/* 電話リンク無効（PC向け） */
@media screen and (min-width: 381px) {
  .Access-table td a[href*="tel:"] {
    color: #000;
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
}

@media screen and (max-width: 960px) {
  .Access {
    display: block;
  }

  .Map-wrap {
    width: 100%;
  }

  .Map {
    margin-bottom: 10px;
  }

  .Access-table {
    width: 100%;
    font-size: 1.8rem;
  }

  .Access-table td {
    font-size: 1.3rem;
  }
}

/* Instagramボタン（SNSリンク） */
.sns-link {
  width: 90vw;
  margin: 0 auto 20px;
  display: flex;
  justify-content: center;
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  padding: 10px 15px;
  border-radius: 8px;
  color: #fff;
  font-size: 2rem;
  transition: 0.3s;
}

.sns-link i {
  margin-left: 10px;
  font-size: 2rem;
}

.sns-link:hover {
  filter: brightness(85%);
}
