@charset "utf-8";
*, ::before, ::after {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

html {
  scroll-padding-top: 60px;
  scroll-behavior: smooth;
}

html, body {
  overflow-x: hidden;
}

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

video {
  vertical-align: top;
  max-width: 100%;
  height: auto;
  padding: 0;
  margin: 0;	
}
ul {
  list-style-type: none;
}
body {
  color: #000000;
  font-family: "Roboto Condensed", "Noto Sans JP",YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, sans-serif;
      letter-spacing: 0.05rem;
}
a {
  color: #000000;
  text-decoration: none;
}
header {
    display: flex;
    padding: 6px 30px;
    height: 70px;
    justify-content: space-between;
    background-color: #fff;
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    align-items: center;
    z-index: 2;
    border-bottom: 4px solid #000000;
}

.menu {
  display: flex;
  margin-left: 60px;
  text-wrap: nowrap;
}
.menu a {
    padding: 10px 16px;
    font-weight: 500;
    font-style: normal;
    font-size: 20px;
}

.menu a:hover {
    color: #7C7C7C;
  }


.nav-button {
  width: 50px;
  height: 50px;
  position: relative;
  z-index: 1;
  cursor: pointer;
  display: flex;
  align-items: center; /* 垂直中央 */
  justify-content: center; /* 水平中央 */
}

.nav-button span {
  position: absolute;
  width: 30px;
  height: 3px;
  background-color: #000;
  transition: 0.3s ease-in-out;
  left: 50%;
  transform: translateX(-50%);
}

.nav-button span:nth-child(1) {
  top: 14px;
}

.nav-button span:nth-child(2) {
  top: 24px;
}

.nav-button span:nth-child(3) {
  top: 34px;
}

/* メニューが開いた時のアニメーション */
body.menu-open .nav-button span:nth-child(1) {
  top: 24px; /* 中央に移動 */
  transform: translateX(-50%) rotate(45deg);
}

body.menu-open .nav-button span:nth-child(2) {
  opacity: 0; /* 真ん中の線を消す */
}

body.menu-open .nav-button span:nth-child(3) {
  top: 24px; /* 中央に移動 */
  transform: translateX(-50%) rotate(-45deg);
}


.menu-open .nav-button span {
  background-color: #000;
}

/* フルスクリーンのナビメニュー */
.fullscreen-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9); /* 黒背景 */
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 100; /* 最前面 */
}

.fullscreen-nav ul {
  list-style: none;
  padding: 0;
  text-align: center;
}

.fullscreen-nav ul li {
  margin: 30px 0;
}

.fullscreen-nav ul li a {
  color: white;
  font-size: 28px;
  font-weight: bold;
  text-decoration: none;
  transition: color 0.3s;
}

.fullscreen-nav ul li a:hover {
  color: #f0a500; /* ホバー時の色変更 */
}

/* メニューを開いた時 */
body.menu-open .fullscreen-nav {
  opacity: 1;
  visibility: visible;
}

.about {
    width: 100%;
    display: flex;
    border-bottom: #000 solid 4px;
    margin-top: 70px;  /* 上に70pxずらす */
	aspect-ratio: 2 / 1;
    
}


.about video {
    width: 50%;  /* 横幅は50% */
    aspect-ratio: 1 / 1;  /* 縦横比を1:1に固定 */
}

.about_box {
    flex-grow: 1;  /* 残りのスペースをすべて使う */
    border-left: #000 solid 4px;
	display: flex;
  justify-content: center; /* 左右中央 */
  align-items: center; /* 上下中央 */
	text-align: center;
	padding-right: 5%;
	padding-left: 5%;
}

.about_box h1 {
	font-family: "DotGothic16", YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, sans-serif;
}


.beer-can {
    width: 100%;
    padding-top: 20px;
    background-color: #fff;	
}

.slick-dots {
	bottom: -60px;
	margin-bottom: 50px;
}

.slick-slide {
	margin: 0.6%;
}

.container {
    background-color: rgba(217,217,217,0.90);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    border-right: 4px solid #000;
    border-left: 4px solid #000;
    z-index: 1;
    position: relative;
    padding-top: 30px;
	padding-bottom: 80px;
}
main {
  position: relative;
  background-color: #60C4D1;
  z-index: 0;
  margin-bottom: 0; /* 追加 */
  padding-bottom: 0; /* 追加 */
  	
}

.bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;  /* main の高さに合わせる */
  z-index: -1;
  
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.bg img {
  width: 100%;
  height: auto;
  display: block;
}

.beer {
    margin-right: auto;
    margin-left: auto;
	padding-top: 50px; 
	padding-bottom: 50px; 
}


.beer h2 {
  padding-top: 30px;
  text-align: center;
  font-size: 52px;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  text-decoration: underline 5px;
  text-underline-offset: 9px;
  margin-bottom: 20px;
}


.box-area {
  max-width: 600px;
  margin: 0 auto; /* 中央に配置 */
  padding-top: 70px;
  text-align: center;
}



.box-img img {
  vertical-align: bottom;
}
.box-gif {
  vertical-align: bottom;
  padding-bottom: 40px;
  padding-right: 30px;	
}

.box-area h3 {
  font-size: 48px;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  text-decoration: none;
}

.box-area h4 {
	font-family: "DotGothic16", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 36px;
}



.box-area table {
  width: 100%;
  border-top: 3px solid #000;
  border-bottom: 3px solid #000;
  border-spacing: 0px;
  margin: 10px 0;
  height: 50px;
}
.box-area table td tr {
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
}

.box-text table th {
  width: 55%;
  text-align: center;
  font-size: 24px;
  border-right: 3px solid #000;
  border-spacing: 0px;
  font-weight: 500;
}
.box-text table td {
  text-align: center;
  font-size: 20px;
  font-weight: 500;
}
.box-text p {
  width: 100%;
  margin-block-start: 0;
  margin-block-end: 0;
  text-align:justify;
}

.os_button {
  display: flex;
  padding-top: 20px;
}
.os_button a  {
  background-color: #000;
  color: #fff;
  margin-left: auto;
  margin-right: auto;
  width: 250px;
  padding: 6px;
  border-radius: 25px;
  text-align: center;
  font-weight: 500;
  font-size: 24px;
}

.company {
	width: 100%;
    display: flex;
    border-top: #000 solid 4px;
	aspect-ratio: 2 / 1;
    
}
.map iframe {
	display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
	
}

.map {
	aspect-ratio: 1/ 1;
	width: 50%;  /* 横幅は50% */
	
}

.company-box {
    flex-grow: 1;  /* 残りのスペースをすべて使う */
    border-left: #000 solid 4px;
	text-align: center;
	display: flex;
  justify-content: center; /* 左右中央 */
  align-items: center; /* 上下中央 */
line-height: 2;
}

.company-box-icon {
	display: flex;
	justify-content: center; 
}
.company-box-icon img {
	padding: 10px;
}



footer {
  	
  background-color: #000;
  color: #fff;
  text-align: center;
  padding: 3rem;
  border-top: #000 solid 3px;	
  position: relative;
  z-index: 1;	
}

footer p {
	font-size: 12px;
	padding: 20px;
	
}


.c-text {
  /* width: 100vw; ← ここを削除または変更 */
  width: 100%;  /* 100%にすることで、スクロールバー分を考慮 */
  margin-inline: 0; /* calc(50% - 50vw)が不要なら削除 */
  /* もしくは、calc()での調整を見直す */
  overflow-x: hidden; /* 必要に応じて横スクロールを隠す */
  padding: 1rem 0;
  display: flex;
  background-color: #000;
  white-space: nowrap;
}

.c-text__wrapper {
  display: flex;
  min-width: 200%;
  animation: marquee 10s linear infinite;
}

.c-text__item {
  color: #00FF15;
  padding: 2px 0;
  flex-shrink: 0;
  font-size: 25px;
  font-family: "DotGothic16", YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, sans-serif;
  letter-spacing: 0.1rem;
  white-space: nowrap;
  margin-right: 2rem; /* テキスト間のスペース */
}


@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media (max-width:1000px){
	.about_box {
	padding-right: 3%;
	padding-left: 3%;
}
	
}

@media (max-width:900px){
  nav {
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background-color: #000c36;
  padding-top: 100px;
  display: none;
}
nav .menu {
  display: block;
  height: 100%;
  padding-bottom: 50px;
  overflow: auto;
}
nav .menu a {
  padding: 30px 0;
  font-size: 30px;
}

.nav-button {
    width: 50px;
    height: 50px;
    position: relative;
    z-index: 1;
    right: 0px;
}
.nav-button span {
  width: 30px;
  height: 3px;
  background-color: #000000;
  position: absolute;
  left: 20px;
}
.nav-button span:nth-child(1) {
  top: 12px;
}
.nav-button span:nth-child(2) {
  top: 24px;
}
.nav-button span:nth-child(3) {
  top: 36px;
}
	
nav {
  position: fixed;
  top: 0px;
  left: 100%;
  background-color: #000;
  width: 100%;
  height: 100%;
  transition: 0.5s;
}
nav ul {
  display: block;
  margin-top: 150px;
}
nav li {
  margin-left: 0px;
}
nav a {
  font-size: 30px;
  color: #fff;
  display: block;
  padding: 20px 0;
  text-align: center;
}
.menu-open nav {
  left: 0px;
}
.menu-open .nav-button span {
  background-color: #fff;	
	}

	.box-area {
  padding-left: 5%;
  padding-right: 5%;
 
}
	.container {
    border-right: none;
    border-left: none;
    
}
.about {
	width: 100%;
	height: auto;
	display: block;	
	border-bottom: #000 solid 4px;
}
.about video  {
	width: 100%;
	height: auto;
	aspect-ratio: 1 / 1;
}

.about_box {
	width: 100%;
	height: auto;
	padding: 8%;
	border-top: #000 solid 4px;
    border-left: none;
}
	
}

@media (max-width:650px){
	
	.company {
	width: 100%;
    display: block;
    border-top: #000 solid 4px;
/*
	aspect-ratio: 2 / 1;
*/
    
}
.map iframe {
	display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
	
}

.map {
	aspect-ratio: 1/ 1;
	width: 100%;  /* 横幅は50% */
	
}
.company-box {
    flex-grow: 1;  /* 残りのスペースをすべて使う */
    border-top: #000 solid 4px;
	border-left: none;

	text-align: center;
	display: flex;
  justify-content: center; /* 左右中央 */
  align-items: center; /* 上下中央 */
line-height: 2;
	aspect-ratio: 1/ 1;
}

.company-box-icon {
	display: flex;
	justify-content: center; 
}
.company-box-icon img {
	width: 70px;
	padding: 10px;
}
}

@media (max-width:500px){
	.box-gif {
  vertical-align: bottom;
  padding-bottom: 20px;
  padding-right: 0px;	
}
	 .box-img img {
   padding-right: 10%;	
   padding-left: 10%;	
}

}
