@charset "UTF-8";
/* 変数 */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'neue-haas-grotesk-display', 'source-han-sans-japanese',
    sans-serif;
}

ul {
  list-style: none;
}

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

a {
  text-decoration: none;
}

/* pc */
@media (min-width: 960px) {
  a[href^='tel:'] {
    pointer-events: none;
  }
}

.btn {
  height: 70px;
  width: 295px;
  color: #fff;
  background: #000;
  display: inline-block;
  text-align: center;
  line-height: 70px;
  font-size: 17px;
  font-weight: bold;
  display: block;
  margin: 0 auto;
  position: relative;
  transition: all 0.3s ease;
}
.btn:hover {
  background: #36dddd;
}
.btn::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 24px;
  transform: translateY(-50%) rotate(45deg);
  width: 10px;
  height: 10px;
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
}

.back-btn {
  height: 70px;
  width: 295px;
  color: #fff;
  background: #000;
  display: inline-block;
  text-align: center;
  line-height: 70px;
  font-size: 17px;
  font-weight: bold;
  display: block;
  margin: 0 auto 40px auto;
  position: relative;
  transition: all 0.3s ease;
}
.back-btn:hover {
  background: #36dddd;
}
.back-btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 35.5px;
  transform: translateY(-50%) rotate(-135deg);
  width: 10px;
  height: 10px;
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
}

/* 各セクション */
#loading {
  -webkit-backdrop-filter: blur(15px);
  backdrop-filter: blur(15px);
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(250, 250, 250, 0.5);
  transition: all 0.3s ease;
}
#loading .loading-logo {
  width: 100vw;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
#loading .loading-logo img {
  width: 180px;
}

.loaded {
  opacity: 0;
  visibility: hidden;
}

.header {
  background-color: #000;
  position: fixed;
  width: 100%;
  z-index: 2;
}
.header .header__inner {
  height: 60px;
  max-width: 1280px;
  margin: auto;
  display: flex;
  align-items: center;
}
.header .header__inner .header__logo {
  width: 100px;
  margin-right: auto;
  margin-left: 25px;
  padding: 0 0.6em;
}
.header .header__inner .header__nav--sp {
  margin-right: 25px;
}
.header .header__inner .header__nav--sp ul {
  display: flex;
  align-items: center;
}
.header .header__inner .header__nav--sp ul li {
  margin-right: 35px;
  position: relative;
}
.header .header__inner .header__nav--sp ul li a .header__nav--sp-svg {
  width: 24px;
  height: 24px;
  transition: all 0.3s ease;
  fill: #fff;
}
.header .header__inner .header__nav--sp ul li a .header__nav--sp-svg:hover {
  fill: #36dddd;
}
.header .header__inner .header__nav {
  display: none;
}

/* ハンバーガーメニュー */
.switch {
  height: 20px;
  position: fixed;
  right: 25px;
  top: 20px;
  width: 30px;
  z-index: 99;
}
.switch .switch__line {
  background: #fff;
  display: block;
  height: 2px;
  position: absolute;
  transition: transform 0.3s;
  width: 100%;
  box-shadow: 1px 1px 1px 0 rgba(0, 0, 0, 0.2);
}
.switch .switch__line--center {
  top: 9px;
}
.switch .switch__line--bottom {
  bottom: 0;
}
.switch .switch__line--top.active {
  top: 8px;
  transform: rotate(45deg);
}
.switch .switch__line--center.active {
  transform: scaleX(0);
}
.switch .switch__line--bottom.active {
  bottom: 10px;
  transform: rotate(135deg);
}

/* カレントページ */
/* pc */
@media (min-width: 960px) {
  .header {
    background-color: #000;
    position: fixed;
    width: 100%;
    z-index: 2;
  }
  .header .header__inner {
    height: 100px;
    max-width: 1280px;
    margin: auto;
    display: flex;
    align-items: center;
  }
  .header .header__inner .header__logo {
    min-width: 180px;
    margin-right: auto;
    padding: 0 1.6em
  }
  .header .header__inner .header__nav {
    display: block;
  }
  .header .header__inner .header__nav ul {
    display: flex;
    align-items: center;
  }
  .header .header__inner .header__nav ul li {
    margin-left: 55px;
  }
  .header .header__inner .header__nav ul li a {
    color: #fff;
    transition: all 0.3s ease;
  }
  .header .header__inner .header__nav ul li a:hover {
    color: #36dddd;
  }
  .header .header__inner .header__nav ul li a .header__nav-svg {
    width: 24px;
    height: 24px;
    transition: all 0.3s ease;
    fill: #fff;
  }
  .header .header__inner .header__nav ul li a .header__nav-svg:hover {
    fill: #36dddd;
  }
  .header .header__inner .header__nav ul li .current {
    color: #36dddd;
  }
  .header .header__inner .header__nav .search_container {
    position: relative;
    background-color: #fff;
    display: block;
    height: 45px;
    width: 270px;
  }
  .header .header__inner .header__nav .search_container input {
    font-size: 12px;
  }
  .header .header__inner .header__nav .search_container input[type='text'] {
    border: none;
    position: relative;
    height: 45px;
    width: 80%;
  }
  .header
    .header__inner
    .header__nav
    .search_container
    input[type='text']:focus {
    outline: 0;
  }
  .header
    .header__inner
    .header__nav
    .search_container
    input[type='text']::placeholder {
    color: #d3d2d2;
  }
  .header .header__inner .header__nav .search_container button[type='submit'] {
    cursor: pointer;
    position: relative;
    border: none;
    outline: none;
    background-color: transparent;
    width: 20px;
    height: 20px;
    margin: 0 14px;
  }
  .header .header__inner .header__nav--sp {
    display: none;
  }
}

.link-to-kankikumeijo {
  display: inline-block;
  padding: 10px 24px;
  background-color: rgb(55 156 185);
  color: white;
  text-decoration: none;
  font-family: serif;
  font-size: 16px;
  border-radius: 5px;
  letter-spacing: 1px;
  transition: background-color 0.3s ease;
}

.link-to-kankikumeijo:hover {
  background-color: rgb(52 152 219);
}

.link-to-kankikumeijo:after {
  content: '>';
  font-weight: bold;
  margin-left: 1em;
}

.sp-menu {
  background: #000;
  display: none;
  height: 100%;
  position: fixed;
  z-index: 98;
  width: 100%;
  margin-top: 60px;
}
.sp-menu .sp-menu__inner {
  padding-top: 70px;
}
.sp-menu .sp-menu__inner .sp-menu__link {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.sp-menu .sp-menu__inner .sp-menu__link a {
  color: #fff;
  transition: all 0.3s ease;
}
.sp-menu .sp-menu__inner .sp-menu__link a:nth-of-type(n + 1) {
  margin-bottom: 55px;
}
.sp-menu .sp-menu__inner .sp-menu__link a:nth-of-type(n + 1):hover {
  color: #36dddd;
}
.sp-menu .sp-menu__inner .sp-menu__search {
  width: 270px;
  margin: auto;
}
.sp-menu .sp-menu__inner .sp-menu__search .search_container {
  position: relative;
  background-color: #fff;
  display: block;
  height: 45px;
  width: 270px;
}
.sp-menu .sp-menu__inner .sp-menu__search .search_container input {
  font-size: 16px;
}
.sp-menu .sp-menu__inner .sp-menu__search .search_container input[type='text'] {
  border: none;
  position: relative;
  height: 45px;
  width: 80%;
}
.sp-menu
  .sp-menu__inner
  .sp-menu__search
  .search_container
  input[type='text']:focus {
  outline: 0;
}
.sp-menu
  .sp-menu__inner
  .sp-menu__search
  .search_container
  input[type='text']::placeholder {
  color: #d3d2d2;
}
.sp-menu
  .sp-menu__inner
  .sp-menu__search
  .search_container
  button[type='submit'] {
  cursor: pointer;
  position: relative;
  border: none;
  outline: none;
  background-color: transparent;
  width: 20px;
  height: 20px;
  margin: 0 14px;
}
.sp-menu .sp-menu__inner .sp-menu__sns {
  margin-top: 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #fff;
}
.sp-menu .sp-menu__inner .sp-menu__sns .sns-group {
  margin-top: 27px;
}
.sp-menu .sp-menu__inner .sp-menu__sns .sns-group a:nth-of-type(-n + 2) {
  margin-right: 43px;
}
.sp-menu .sp-menu__inner .sp-menu__sns .sns-group-svg2 {
  transition: all 0.3s ease;
  fill: #fff;
  width: 22.76px;
  height: 22.76px;
}
.sp-menu .sp-menu__inner .sp-menu__sns .sns-group-svg2:hover {
  fill: #36dddd;
}

/* pc */
@media (min-width: 960px) {
  .switch,
  .sp-menu {
    display: none;
  }
}

.showcase {
  width: 100%;
  height: 100vh;
  background: url(../img/showcase-sp.png) no-repeat center center;
  background-size: cover;
}

/* tablet pc */
@media (min-width: 426px) {
  .showcase {
    width: 100%;
    height: 90vh;
    background: url(../img/showcase.png) no-repeat center center;
    background-size: cover;
  }
}

/* レスポンス時の並び調整 */
/* column*/
.concept-container,
.about-container,
.taproom-container {
  display: flex;
  flex-direction: column;
}

/* column-reverse */
.product-container,
.history-container,
.info-news-container {
  display: flex;
  flex-direction: column-reverse;
}

/* ーーーーーーーーーーーーーーーー */
/* sun */
.sun img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* common */
.adjust-box {
  position: relative;
  width: 100%;
  height: auto;
  overflow: hidden;
}

.box-1x1:before {
  content: '';
  display: block;
  padding-top: 100%;
}

.adjust-box-inner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.adjust-box-inner:before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #d9ff01;
  transition: 1s cubic-bezier(0.15, 0.65, 0.85, 0.65);
  z-index: 1;
}

.concept-fill-color:before {
  background-color: #2dddfd;
}

.product-fill-color:before {
  background-color: #ff4e00;
}

.about-fill-color:before {
  background-color: #fcd500;
}

.history-fill-color:before {
  background-color: #2ba4fd;
}

.taproom-fill-color:before {
  background-color: #bdee51;
}

.isPlay:before {
  transform: translate3d(100%, 0, 0);
}

.adjust-box-inner__text {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 80px 0;
}

.adjust-box-inner__text2 {
  max-width: 85%;
  position: relative;
}
.adjust-box-inner__text2 .shift {
  position: relative;
  left: -20px;
}
.adjust-box-inner__text2 .btn {
  margin-top: 25px;
}

.img-block {
  width: 100%;
  height: 100%;
}

.section-heading {
  padding: 0 0 0 15px;
  font-size: 25px;
  border-left: solid 7px #000;
  line-height: 1.13;
  margin-bottom: 56px;
}

/* brewery&shop用調整css */
.cancel-1 {
  position: relative;
  width: 100%;
  height: auto;
  overflow: hidden;
}

.cancel-2:before {
  content: '';
  display: block;
  padding-top: 100%;
}

.cancel-3 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../img/5.png) no-repeat center center/cover;
}

/* text周り */
/* concept */
.section-copy {
  font-size: 37px;
  font-weight: bold;
  margin-bottom: 33px;
}

.section-text {
  font-size: 14px;
  font-weight: bold;
  line-height: 2.5;
}

/* about */
.about__list li:not(:last-child) {
  margin-bottom: 30px;
}

.about__list__inner {
  position: relative;
}
.about__list__inner h3 {
  position: relative;
  left: -20px;
  font-size: 18px;
}
.about__list__inner h3 span {
  font-size: 28px;
  font-weight: bold;
}

/* history */
.history__list li:not(:last-child) {
  margin-bottom: 24px;
}

.history__list__inner {
  display: flex;
  align-items: center;
}

.history__list__inner .stuffing {
  width: 165px;
  display: block;
}

.history__list .history__year {
  font-size: 24px;
  font-weight: bold;
}

.history__list img {
  width: 50px;
  margin: 0 20px;
}

.history__list .history__text {
  font-weight: bold;
}
.history__list .history__text span {
  font-size: 13px;
  font-weight: normal;
  color: black;
  display: block;
  padding-bottom: 1rem;
}

.history__list .orange {
  color: #ff4e00;
}

.history__list .history__text.orange {
  font-size: 20px;
}

.history__list .arrow {
  width: 180px;
  margin: auto;
}
.history__list .arrow p {
  font-size: 15px;
  font-weight: bold;
}
.history__list .arrow img {
  width: 6.4px;
  margin-right: 45px;
}

.info-news{
  border-bottom: solid 3px #000;
}

/* taproom */
.taproom-link {
  display: inline-block;
  background-color: rgb(0, 0, 0);
  color: rgb(194, 194, 194);
  text-decoration: none;
  padding: 10px 40px;
  font-weight: bold;
  margin-top: 2em;
}

.taproom-link-arrow {
  margin-right: 10px;
}

.taproom-link-img {
  display: block;
  margin: 2em 0 0 auto;
  width: 200px;
}

/* info */
.info__inner {
  font-size: 14px;
}
.info__inner p:nth-child(1) {
  /* margin-bottom: 40px; */
  margin-top: -31px;
}
.info__inner__tel {
  color: #000;
  /* padding: 11px 0 22px 0; */
  display: block;
}
.info__inner span {
  display: inline-block;
  margin-left: 6px;
}
.info__inner span a {
  color: #fff;
  text-decoration: underline;
}
.info__inner .info__inner__businesday {
  font-weight: bold;
}

.info__shop-name {
  font-weight: bold;
}

/* news */
.news__list__inner {
  border-bottom: 3px solid black;
}
.news__list__inner p {
  padding: 12px 0;
  font-size: 13px;
}
.news__list__inner time {
  font-size: 14px;
}
.news__list__inner a {
  text-decoration: underline;
  color: #707070;
}
.news__list__inner:not(:last-child) {
  margin-bottom: 23px;
}

/* ーーーーーーーーーーーーーーーー */
/* pc */
@media (min-width: 960px) {
  .main-container {
    display: flex;
    flex-direction: row;
  }
  .adjust-box,
  .adjust-box__text {
    position: relative;
    width: 50%;
    height: auto;
  }
  .adjust-box-inner__text {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow-y: scroll;
    overflow-x: hidden;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
  .adjust-box-inner__text::-webkit-scrollbar {
    display: none;
  }
  .box-1x1__text:before {
    content: '';
    display: block;
    padding-top: 100%;
  }
  .section-heading {
    padding: 0 0 0 15px;
    font-size: 36px;
    border-left: solid 7px #000;
    line-height: 1.13;
    margin-bottom: 56px;
  }
  /* text周り */
  /* history */
  .history__list .history__year {
    font-size: 40px;
    font-weight: bold;
  }

  .history__list__inner .stuffing {
    width: 195px;
    display: block;
  }
}

.top__instagram {
  margin-inline: auto;
  width: 80%;
  margin-top: 6em;
}

.top__instagram-heading {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  letter-spacing:0.1em;
  margin-bottom: 1.5em;
}

.instagram-heading-h2 {
  padding: 0 0 0 15px;
  font-size: 25px;
  border-left: solid 7px #000;
  line-height: 1.13;
}

.instagram-heading-span {
  display: block;
font-size: clamp(1em, 1.2em, 24px );
font-weight: bold;
}

@media screen and (min-width: 960px) {
  .instagram-heading-h2 {
font-size: 36px;
  }
}

@media screen and (max-width: 599px) {
  .top__instagram-heading {
flex-direction: column;
align-items: flex-start;
gap: 0.5em;
  }
  .top__instagram {
    margin-top: 80px;
  }
}

.footer .footer__inner {
  margin-top: 70px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.footer .footer__inner .footer__info__name {
  font-size: 18px;
}
.footer .footer__inner .footer__info__address {
  margin-top: 17px;
  font-size: 14px;
}
.footer .footer__inner .footer__info__address a {
  color: #707070;
  text-decoration: underline;
}
.footer .footer__inner .footer__info__tel {
  margin-top: 17px;
  color: #000;
  display: block;
  font-weight: bold;
}
.footer .footer__inner .footer__info__tel,
.footer .footer__inner .footer__info__contact {
  font-size: 20px;
}
.footer .footer__inner .footer__info__contact {
  color: #000;
  font-weight: bold;
  position: relative;
}
.footer .footer__inner .footer__info__contact::after {
  content: '';
  position: absolute;
  top: 50%;
  right: -15px;
  transform: translateY(-50%) rotate(45deg);
  width: 10px;
  height: 10px;
  border-top: solid 2px #000;
  border-right: solid 2px #000;
}
.footer .footer__inner .footer__sns {
  margin-top: 73px;
}
.footer .footer__inner .footer__sns__inner {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 36px;
}
.footer .footer__inner .footer__sns__inner p {
  margin-bottom: 19px;
}
.footer .footer__inner .footer__sns__inner .sns-group a:nth-of-type(n + 2) {
  margin-left: 40px;
}
.footer .footer__inner .footer__sns__inner .sns-group-svg {
  transition: all 0.3s ease;
  fill: #000;
  width: 24px;
  height: 24px;
}
.footer .footer__inner .footer__sns__inner .sns-group-svg:hover {
  fill: #36dddd;
}
.footer .footer__inner .footer__sns a:nth-child(2) {
  margin-bottom: 16px;
}
.footer .copyright {
  font-size: 12px;
  text-align: center;
  margin: 62px 0 20px 0;
}

/* pc */
@media (min-width: 960px) {

  .footer .footer__inner {
    margin: 150px auto 0 auto;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 756px;
  }
  .footer .footer__inner .footer__sns {
    margin-top: 0;
  }
  .footer .footer__inner .footer__sns p {
    margin-bottom: 0;
  }
  .footer .footer__inner .footer__sns__inner {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin-bottom: 36px;
  }
  .footer .footer__inner .footer__sns__inner .sns-group a:nth-of-type(n + 2) {
    margin-left: 40px;
  }
}

.bottom-nav {
  background-color: #000;
}
.bottom-nav__inner {
  display: flex;
  justify-content: center;
  margin: auto;
}
.bottom-nav__inner ul {
  padding: 16px 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  width: 100%;
}
.bottom-nav__inner ul li a {
  color: #fff;
  font-size: 11px;
  transition: all 0.3s ease;
}
.bottom-nav__inner ul li a:hover {
  color: #36dddd;
}
.bottom-nav__inner ul li .current {
  color: #36dddd;
}

/* pc */
@media (min-width: 960px) {
  .bottom-nav {
    background-color: #000;
  }
  .bottom-nav__inner {
    display: flex;
    justify-content: center;
    margin: auto;
  }
  .bottom-nav__inner ul {
    padding: 16px 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    width: 662px;
  }
  .bottom-nav__inner ul li a {
    color: #fff;
    font-size: 11px;
    transition: all 0.3s ease;
  }
  .bottom-nav__inner ul li a:hover {
    color: #36dddd;
  }
}

/* 他ページ */
.inquiry {
  padding: 160px 0 80px 0;
  border-bottom: solid 3px #000;
}
.inquiry table {
  margin-top: 30px;
}
.inquiry__inner {
  width: 90%;
  margin: auto;
}
.inquiry__inner h3 {
  color: #36dddd;
  font-size: 20px;
  font-weight: normal;
  margin-bottom: 30px;
  text-align: center;
}
.inquiry__inner .inquiry__info {
  color: #3e3a39;
  font-size: 14px;
  max-width: 620px;
  width: 90%;
  margin: 60px auto;
}
.inquiry__inner .inquiry__info a {
  color: #0000ee;
  text-decoration: underline;
}
.inquiry .inquiry__item,
.inquiry .inquiry__data {
  display: block;
  padding: 10px 14px 14px 0px;
}
.inquiry .inquiry__item {
  white-space: nowrap;
  text-align: left;
  color: #000;
  font-weight: bold;
}
.inquiry em {
  color: #e60012;
  font-size: 13px;
  vertical-align: top;
}
.inquiry .inquiry__data p,
.inquiry .inquiry__data span {
  font-size: 14px;
  color: #3e3a39;
}
.inquiry .inquiry__data input[type='text'].pos {
  width: 90px;
}
.inquiry .inquiry__data input[type='text'],
.inquiry .inquiry__data input[type='mail'],
.inquiry .inquiry__data input[type='tel'],
.inquiry .inquiry__data input[type='url'],
.inquiry .inquiry__data textarea {
  border-style: solid;
  border-color: #cccccc;
  border-width: 0px 0px 1px 0px;
  border-radius: 3px;
  padding: 4px;
  background-color: transparent;
  width: 100%;
  margin-bottom: 6px;
}
.inquiry .inquiry__data textarea {
  border-width: 1px;
}
.inquiry .inquiry__data select {
  background-image: url(../img/allow_down.svg);
  background-size: auto 10px;
  background-position: right 8px center;
  background-repeat: no-repeat;
  border: solid 1px #3fae2a;
  border-radius: 4px;
  height: 30px;
  padding-left: 10px;
  width: 100px;
  margin-top: 6px;
}
.inquiry .inquiry__data .inquiry__warning {
  color: #e60012;
  padding: 16px 0;
}
.inquiry .inquiry__data .inquiry__warning span {
  color: #e60012;
  font-size: 18px;
}

/* ラジオボタン・チェックボックス */
.inquiry__radio + span,
.inquiry__check + span {
  cursor: pointer;
  color: #3e3a39;
  display: inline-block;
  font-size: 14px;
  padding: 0 0 0 30px;
  position: relative;
}

.inquiry__radio + span::before,
.inquiry__check + span::before {
  -webkit-transform: translateY(-50%);
  background: #fff;
  border: 1px solid #707070;
  content: '';
  display: block;
  height: 20px;
  left: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
}

.inquiry__radio + span::after,
.inquiry__check + span::after {
  -webkit-transform: rotate(45deg);
  border-style: solid;
  border-color: transparent #e60012 #e60012 transparent;
  border-width: 18px 4px 4px 10px;
  content: '';
  height: 0px;
  left: 6px;
  opacity: 0;
  padding: 2px;
  position: absolute;
  top: -16px;
  bottom: 0px;
  margin: auto;
  transform: rotate(45deg);
  transition: all 0.3s ease 0s;
  width: 0px;
}

.inquiry__radio:checked + span::after,
.inquiry__check:checked + span::after {
  opacity: 1;
}

/* 切り替えタブ */
.inquiry__tab {
  padding-bottom: 30px;
  position: relative;
}
.inquiry__tab:before {
  content: '';
  display: block;
  width: 100%;
  height: 0.5px;
  background-color: #000;
  position: absolute;
  top: 50px;
}
.inquiry__tab .tab__item {
  width: calc(100% / 3);
  height: 50px;
  border-style: solid;
  border-color: #000;
  border-width: 1px 1px 0 1px;
  background-color: #fff;
  line-height: 50px;
  font-size: 16px;
  text-align: center;
  color: #000;
  display: block;
  float: left;
  text-align: center;
  font-weight: bold;
  transition: all 0.2s ease;
}
.inquiry__tab input[name='tab__item'] {
  display: none;
}
.inquiry__tab .tab__content {
  display: none;
  clear: both;
  overflow: hidden;
}

#consumer:checked ~ #consumer__content,
#retail:checked ~ #retail__content {
  display: block;
}

.inquiry__tab input:checked + .tab__item {
  background-color: #000;
  color: #fff;
}

/* pc */
@media (min-width: 960px) {
  .inquiry__inner {
    width: 700px;
  }
  .inquiry .inquiry__item,
  .inquiry .inquiry__data {
    display: table-cell;
    vertical-align: top;
    padding: 10px 14px 14px 0px;
  }
}

/* inquiry reset css */
input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}

textarea {
  resize: vertical;
}

input[type='checkbox'],
input[type='radio'] {
  display: none;
}

input[type='submit'],
input[type='button'],
label,
button,
select {
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

/* bottom nav menu */
.bottom-nav-menu {
  padding: 160px 0 80px 0;
}
.bottom-nav-menu__inner {
  width: 90%;
  margin: auto;
}
.bottom-nav-menu .bottom-nav-menu__item,
.bottom-nav-menu .bottom-nav-menu__data {
  display: block;
  padding: 10px 14px 0px 0px;
}
.bottom-nav-menu .bottom-nav-menu__item {
  white-space: nowrap;
  text-align: left;
  color: #000;
  font-weight: bold;
}
.bottom-nav-menu .bottom-nav-menu__data {
  font-size: 14px;
}
.bottom-nav-menu .bottom-nav-menu__block {
  font-size: 14px;
}
.bottom-nav-menu .bottom-nav-menu__block h3 {
  padding: 10px 0 10px 10px;
  background-color: #e5e5e5;
  margin-bottom: 16px;
  border-radius: 3px;
}
.bottom-nav-menu .bottom-nav-menu__block p {
  line-height: 2;
}
.bottom-nav-menu .bottom-nav-menu__block__inner:not(:last-child) {
  margin-bottom: 24px;
}
.bottom-nav-menu .bottom-nav-menu__block__inner .registration p:nth-child(odd) {
  color: #e60012;
}
.bottom-nav-menu .bottom-nav-menu__block.block-adjustment {
  padding-top: 60px;
  margin-top: -60px;
}
.bottom-nav-menu .bottom-nav-menu__block:not(:last-child) {
  margin-bottom: 56px;
}
.bottom-nav-menu .bottom-nav-menu__block__container {
  border: 1px solid #e7e7e7;
  border-radius: 3px;
  padding: 16px;
  background-color: #fcfcfc;
}
.bottom-nav-menu .guide-nav ul {
  padding: 16px 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  width: 100%;
}
.bottom-nav-menu .guide-nav ul li a {
  color: #000;
  font-size: 12px;
  transition: all 0.3s ease;
}
.bottom-nav-menu .guide-nav ul li a:hover {
  text-decoration: underline;
}
.bottom-nav-menu .guide-nav ul li:not(:first-child) {
  padding-left: 5px;
}
.bottom-nav-menu .guide-nav ul li + li {
  border-left: 1px solid #333;
}

/* pc */
@media (min-width: 960px) {
  .bottom-nav-menu__inner {
    width: 700px;
  }
  .bottom-nav-menu .bottom-nav-menu__item,
  .bottom-nav-menu .bottom-nav-menu__data {
    display: table-cell;
    vertical-align: top;
    padding: 10px 50px 14px 0px;
  }
  .bottom-nav-menu .bottom-nav-menu__block.block-adjustment {
    padding-top: 100px;
    margin-top: -100px;
  }
}

/* taproom99 */
@font-face {
  font-family: "a1";
  src: url("../fonts/AvenirNext.ttf") format("truetype");
}
@font-face {
  font-family: "a2";
  src: url("../fonts/Avenir.ttf") format("truetype");
}
.add-margin-b1 {
  margin-bottom: 1em;
}

.add-margin-b2 {
  margin-bottom: 2em;
}

.add-margin-b3 {
  margin-bottom: 3em;
}

.add-margin-b4 {
  margin-bottom: 4em;
}

.add-margin-t1 {
  margin-top: 1em;
}

.add-margin-t2 {
  margin-top: 2em;
}

.add-margin-t3 {
  margin-top: 3em;
}

.add-margin-t4 {
  margin-top: 4em;
}

.tr__99 {
  container-type: inline-size;
}

.hero-img {
    background-color: rgb(57, 56, 54);
  -o-object-fit: cover;
     object-fit: cover;
}
@container (0px <= width <= 425px ) {
  .hero-img {
    aspect-ratio: 1/1;
  }
}
@container (426px <= width <= 768px ) {
  .hero-img {
    aspect-ratio: 4/3;
  }
}
.hero-img img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}

/* ==============================
  parts
============================== */
.tr99__belt {
  margin-top: 100px;
}
@container (0px <= width <= 959px ) {
  .tr99__belt {
    margin-top: 60px;
  }
}
.tr99__belt h1 {
  width: -moz-fit-content;
  width: fit-content;
  text-transform: uppercase;
  margin-inline: auto;
  font-family: "a1", serif;
  padding: 1em 0;
  font-size: clamp(1.5rem, 3vw, 3rem);
}

.tr99__about {
  background-color: rgb(57, 56, 54);
}
@media screen and (max-width: 767px) {
  .tr99__about {
    padding-bottom: 2em;
  }
}

.tr99__about-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  container-type: inline-size;
}
@media screen and (max-width: 767px) {
  .tr99__about-item {
    grid-template-columns: 1fr;
  }
}

.tr99__about-container {
  aspect-ratio: 19/16;
}
@container (0px <= width <= 1100px ) {
  .tr99__about-container {
    aspect-ratio: unset;
    height: auto;
    padding: 2em 0;
  }
}

.tr99__about-container.about-logo {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding-right: 10%;
}
.tr99__about-container.about-logo img {
  width: clamp(250px, 100%, 50%);
}
@media screen and (max-width: 767px) {
  .tr99__about-container.about-logo img {
    width: 40%;
  }
}
@container (2200px <= width <= 3000px ) {
  .tr99__about-container.about-logo img {
    width: 600px;
  }
}
@media screen and (max-width: 767px) {
  .tr99__about-container.about-logo {
    justify-content: center;
    align-items: center;
    padding-right: 0;
    padding-bottom: 0;
  }
}

.tr99__about-container.about-text {
  display: flex;
  justify-content: flex-start;
}
@media screen and (max-width: 767px) {
  .tr99__about-container.about-text {
    justify-content: center;
  }
}

.tr99__about-text {
  display: grid;
  place-content: center start;
  height: 100%;
  padding: 0 6%;
  width: clamp(300px, 100%, 80%);
  color: rgb(202, 202, 202);
}
@media screen and (max-width: 767px) {
  .tr99__about-text {
    padding: 0 4%;
    place-content: center center;
  }
}
.tr99__about-text p {
  line-height: 1.8;
  font-size: clamp(1rem, 1vw, 3rem);
}
@media screen and (max-width: 767px) {
  .tr99__about-text p {
    line-height: 1.8;
    font-size: clamp(1rem, 1vw, 1.5rem);
  }
}

p.tr99__about-text-label {
  background-color: rgb(183, 171, 20);
  color: rgb(57, 56, 54);
  letter-spacing: 4px;
  font-family: "a1", sans-serif;
  font-weight: bold;
  text-align: center;
  padding: 0.4em 1em;
  font-size: clamp(1rem, 1.7vw, 3rem);
  margin-top: 2em;
}

p.tr99__about-text-instagram {
  margin-top: 1em;
  text-align: center;
  letter-spacing: 0.1em;
  color: rgb(183, 171, 20);
  font-size: clamp(0.8rem, 1vw, 1.5rem);
}
p.tr99__about-text-instagram a {
  color: rgb(57, 56, 54);
  font-weight: bold;
  display: block;
  background-color: rgb(183, 171, 20);
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  border-radius: 50px;
  padding: 0.2em 1em;
  margin-top: 1em;
}

.tr99__description-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  container-type: inline-size;
}
@media screen and (max-width: 767px) {
  .tr99__description-item {
    grid-template-columns: 1fr;
  }
}

.tr99__description-container {
  aspect-ratio: 19/16;
}
.tr99__description-container img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@container (768px <= width <= 950px ) {
  .tr99__description-container {
    aspect-ratio: 1/1.3;
  }
}
@media screen and (max-width: 767px) {
  .tr99__description-container:has(.tr99__description-text) {
    aspect-ratio: unset;
  }
}
@container (500px <= width <= 767px ) {
  .tr99__description-container:has(.tr99__description-text) {
    aspect-ratio: 1/1;
  }
}

.bg-gray {
  background-color: rgb(228, 228, 228);
}

@media screen and (max-width: 767px) {
  .foodbox1 {
    order: 2;
  }
  .foodbox2 {
    order: 1;
  }
}
.tr99__description-text {
  display: grid;
  place-content: center;
  height: 100%;
  padding: 0 16%;
  width: 100%;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .tr99__description-text {
    padding: 4em 8%;
  }
}
.tr99__description-text h2 {
  text-align: center;
  font-family: "a1", sans-serif;
  font-weight: 500;
  font-style: normal;
  text-transform: uppercase;
  font-size: clamp(1.5rem, 3vw, 4rem);
  margin-bottom: 0.7em;
}
.tr99__description-text p {
  line-height: 1.8;
  font-size: clamp(1rem, 1.2vw, 3rem);
}
@media screen and (max-width: 767px) {
  .tr99__description-text p {
    font-size: clamp(1rem, 1vw, 1.5rem);
  }
}
.tr99__description-text p:not(:last-of-type) {
  margin-bottom: 0.5em;
}

.tr99__description-text-container {
  background-color: blue;
}

p.tr99__description-text-access {
  font-size: clamp(1.2rem, 1.5vw, 2.4rem);
  margin-bottom: 1.2em;
}

.break-point {
  display: inline-block;
}

p.tr99__description-text-access-note {
  font-size: clamp(0.7rem, 1vw, 1rem);
}

.tr99__description-container.map-container {
  position: relative;
}
.tr99__description-container.map-container iframe {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.tr99__description-container.map-container::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  pointer-events: none;
}

.tr99__information {
  background-color: rgb(57, 56, 54);
  color: rgb(202, 202, 202);
  padding: 10em 0;
  container-type: inline-size;
}
@container (2200px <= width <= 3000px ) {
  .tr99__information {
    padding: 20em 0;
  }
}
@media screen and (max-width: 767px) {
  .tr99__information {
    padding: 3em 0;
  }
}
.tr99__information h3 {
  font-family: "a1", sans-serif;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  font-size: clamp(1.5rem, 3vw, 4rem);
  text-transform: uppercase;
  padding-bottom: 1.6em;
}
@media screen and (max-width: 767px) {
  .tr99__information h3 {
    padding-bottom: 1em;
  }
}

.tr99__information-list {
  margin-inline: auto;
  width: -moz-fit-content;
  width: fit-content;
  display: grid;
  align-items: center;
  grid-template-columns: fit-content(300px) 1fr;
  letter-spacing: 0.1em;
}
@container (2200px <= width <= 3000px ) {
  .tr99__information-list {
    max-width: 1200px;
  }
}
@media screen and (max-width: 767px) {
  .tr99__information-list {
    grid-template-columns: 1fr;
  }
}
.tr99__information-list ul {
  border-left: 1px solid rgb(202, 202, 202);
  padding-left: 2em;
}
@media screen and (max-width: 767px) {
  .tr99__information-list ul {
    border: none;
    border-left: none;
    padding-top: 1.5em;
  }
}
.tr99__information-list p {
  font-family: "a1", sans-serif;
  text-transform: uppercase;
  font-size: clamp(1rem, 1.5vw, 3rem);
  padding-right: 1em;
}
@media screen and (max-width: 767px) {
  .tr99__information-list p {
    text-align: center;
    padding: 1em 0;
    border-top: 1px solid rgb(228, 228, 228);
    border-bottom: 1px solid rgb(228, 228, 228);
    margin: 0 1em;
  }
}
.tr99__information-list dl {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px 20px;
}
.tr99__information-list dt {
  grid-column: 1;
  font-weight: bold;
  text-transform: uppercase;
}
.tr99__information-list dd {
  grid-column: 2;
  margin: 0;
}
@media screen and (max-width: 767px) {
  .tr99__information-list dd {
    grid-column: 1;
  }
}
.tr99__information-list dt, .tr99__information-list dd {
  font-size: clamp(1rem, 1vw, 3rem);
}
.tr99__information-list dt:nth-of-type(1),
.tr99__information-list dt:nth-of-type(2) {
  margin-bottom: 1.5em;
}
@media screen and (max-width: 767px) {
  .tr99__information-list dt:nth-of-type(1),
  .tr99__information-list dt:nth-of-type(2) {
    margin-bottom: 0;
  }
}

.tr99__information-link {
  display: flex;
  gap: 4em;
  margin-inline: auto;
  width: 80%;
  max-width: 800px;
  justify-content: center;
  margin-top: 5em;
}
@media screen and (max-width: 767px) {
  .tr99__information-link {
    flex-direction: column;
    gap: 2em;
    margin-top: 2em;
    align-items: center;
  }
}
@container (2000px <= width <= 3000px ) {
  .tr99__information-link {
    max-width: 1200px;
  }
}

.tr99__information-link-item {
  font-family: "a1", sans-serif;
  text-transform: uppercase;
  text-align: center;
  display: inline-block;
  width: clamp(250px, 50%, 350px);
  border: solid 1px rgb(202, 202, 202);
  padding: 1em 1.5em;
  color: rgb(202, 202, 202);
  text-decoration: none;
  font-size: clamp(1rem, 1.5vw, 1.8rem);
  transition: all 0.3s ease;
  letter-spacing: 0.2em;
  position: relative;
  overflow: hidden;
}
@container (2200px <= width <= 3000px ) {
  .tr99__information-link-item {
    width: 400px;
  }
}
.tr99__information-link-item:hover {
  background-color: rgb(202, 202, 202);
  color: rgb(57, 56, 54);
}
.tr99__information-link-item .arrow {
  margin-left: 1em;
  display: inline-block;
  transition: transform 0.3s ease;
}
.tr99__information-link-item:hover .arrow {
  transform: translateX(5px);
}

.contact-link {
  display: inline-block;
  padding: 10px 20px;
  border: 2px solid #999;
  color: #999;
  text-decoration: none;
  font-size: 24px;
  font-weight: bold;
  letter-spacing: 2px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.contact-link:hover {
  background-color: #999;
  color: #333;
}

.arrow {
  margin-left: 10px;
  display: inline-block;
  transition: transform 0.3s ease;
}

.contact-link:hover .arrow {
  transform: translateX(5px);
}

/* オプション：ホバー時に背景色が広がるアニメーション */
.contact-link::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background-color: #999;
  transition: all 0.3s ease;
  z-index: -1;
}

.contact-link:hover::before {
  left: 0;
}

.tr99__information-list-mail {
  text-decoration: none;
  pointer-events: none;
}

.tr99__sns {
  background-color: rgb(228, 228, 228);
  color: rgb(0, 0, 0);
  padding: 4em 0;
}
@container (2200px <= width <= 3000px ) {
  .tr99__sns {
    padding: 10em 0;
  }
}
.tr99__sns h3 {
  font-family: "a1", sans-serif;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  font-size: clamp(1.5rem, 3vw, 4rem);
  text-transform: uppercase;
  padding: 0 0 1em 0;
}
.tr99__sns p {
  inline-size: -moz-fit-content;
  inline-size: fit-content;
  margin-inline: auto;
  padding: 0 1em;
  color: rgb(26, 26, 26);
  font-size: clamp(0.8rem, 1vw, 3rem);
}

.tr99__sns-instagram {
  width: 80%;
  margin-inline: auto;
  margin-top: 4em;
}

p.tr99__sns-instagram-text {
  inline-size: auto;
  padding: 0;
  font-family: "a1", sans-serif;
  letter-spacing: 0.2em;
  margin-bottom: 1em;
  font-size: clamp(0.8rem, 2vw, 2rem);
  color: rgb(102, 102, 102);
}

.instagram-container {
  width: clamp(240px, 100%, 100%);
  margin: 0 auto;
}

.instagram-container a {
  text-decoration: none;
}

.instagram-container ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.1em;
  padding: 0;
  margin: 0;
}

.instagram-container ul li {
  list-style: none;
  aspect-ratio: 1/1;
  position: relative;
  background-color: rgb(102, 102, 102);
}

.instagram-container ul li .captionTxt {
  display: block;
  width: 100%;
  height: 100%;
  padding: 16px;
  font-size: 14px;
  line-height: 1.8;
  text-align: left;
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.75);
  color: #fff;
  opacity: 0;
  transition: opacity 0.5s;
}

.instagram-container ul li .like_count {
  font-size: 12px;
  line-height: 2;
  display: block;
  text-align: center;
  position: relative;
}

.instagram-container ul li .like_count::before {
  content: "♥";
  color: #d4245f;
  font-size: 14px;
  vertical-align: middle;
  padding-right: 0.25em;
}

.instagram-container ul li:hover .captionTxt {
  opacity: 1;
}

.instagram-container ul li img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}

@media screen and (min-width: 600px) {
  .instagram-container ul {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (min-width: 1025px) {
  .instagram-container ul {
    grid-template-columns: repeat(6, 1fr);
  }
}
.tr99__sns-link-icon {
  display: flex;
  gap: 2.5em;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  margin-top: 4em;
}
.tr99__sns-link-icon img {
  width: clamp(30px, 2vw, 100px);
}