/* 自由に編集してみてください */

* {
  box-sizing: border-box;
}

body {
  margin: 0;
}

.container {
  width: calc(100% - 32px);
  margin: 0 auto;
  max-width: 1024px;
}

a {
  text-decoration: none;
}

ul {
  list-style: none;
}

h1 {
  font-size: 0;
}

@media screen and (min-width: 768px) {
  h1 {
    text-align: center;
  }
}

.no-sp {
  display: none;
}

@media screen and (min-width: 768px) {
  .no-sp {
    display: block;
  }

  .no-pc {
    display: none;
  }
}

h2 {
  font-size: 36px;
  text-align: center;
  margin: 0 0 32px 0;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

/* ヘッダー */
.header .container {
  display: flex;
  justify-content: space-between;
}

@media screen and (min-width: 768px) {
  .header .container {
    justify-content: center;
  }
}

.header .hamburger {
  position: relative;
  width: 40px;
  height: 2px;
}

@media screen and (min-width: 768px) {
  .header .hamburger {
    display: none;
  }
}

.header span {
  position: absolute;
  width: 100%;
  height: 100%;
  background: #ccc;
}

.header span:first-child {
  top: 16px;
}

.header span:nth-child(2) {
  top: 24px;
}
.header span:nth-child(3) {
  top: 32px;
}

/* メインビジュアル */
@media screen and (min-width: 768px) {
  .mainvisual img {
    max-width: auto;
    width: 100%;
  }
}

/* 商品紹介 */
.product .container {
  padding: 16px 0;
}

.product ul {
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .product ul {
    flex-direction: row;
    max-width: 728px;
    margin: 0 auto;
  }
}

/* 地図 */
.access .container {
  text-align: center;
}

/* フッター */
.footer {
  padding: 12px 0;
  text-align: center;
}

.footer small {
  font-size: 12px;
}
