:root {
    --theme-color: #60aee0;
	--black:#333;
	--gray:#b0b3b4;
}
html{
	scroll-behavior:smooth;
}
body {
    font-family: 'Noto Sans', sans-serif;
    margin: 0;
    background-color: #fff;
    color: var(--black);
    letter-spacing: 1.5px;
}

h1,h2,h3,h4,h5,h6,p,ul{
    margin: 0;
}
h1{
	font-size:26px;
}
h2 {
	font-size:24px;
    text-align: center;
    position: relative;
    padding: 0.25em 1em;
    border-top: solid 2px black;
    border-bottom: solid 2px black;
    margin-bottom: 20px;
}
h3{
	font-size:22px;
}
h4{
	font-size:30px;
  letter-spacing: 2px;
}
h5{
	font-size:18px;
	margin-bottom:24px;
}

ul {
    padding: 0;
}

li {
    list-style: none;
}
img {
    display: block;
    max-width: 100%;
    max-height: 100%;
	object-fit:cover;
}
a {
    text-decoration: none;
}
.sp{
	display:none;
}
@media screen and (max-width:480px){
	.sp{
		display:block;
	}
}
main {
    width:100%;
    margin:0 auto;
}
@media screen and (max-width:480px){
	main{
		width:100%;
	}
}

header {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    padding: 16px;
    box-sizing: border-box;
    background-color: rgba(255,255,255,0.8);
	z-index:999;
	position:sticky;
	top:0;
	left:0;
	width:100%;
}
header a{
	color:var(--black);
}
header a:hover{
	opacity:0.7;
}

footer {
    width: 100%;
    padding: 16px;
    box-sizing: border-box;
    border-top: solid 1px var(--gray);
    background-color: var(--black);
	color:#fff;
    text-align: center;
    align-items: center;
}

#logo {
    height: 40px;
}

table {
    border-collapse: collapse;
}
th,td{
	padding: 36px;
}
tr:not(:last-of-type) > th,
tr:not(:last-of-type) > td{
	border-bottom: solid 1px var(--gray);
}
th{
  letter-spacing: 2px;
}

@media screen and (max-width:480px){
	th{
		max-width:90px;
	}
	th,td {
		padding: 16px;
	}
}
.fv{
	position:relative;
}
.fv video{
  width:100%;
  height:100%;
  object-fit:cover;
	vertical-align:bottom;
}

.fv p {
  color: #f5f6f4;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
  font-size: 3em;
  position: absolute;
  letter-spacing: 3px;
  font-family: "Noto Serif JP", serif;
}

.fv p:nth-of-type(1) {
  left: 10%;
  top: 15%;
}

.fv p:nth-of-type(2) {
  left: 10%;
  top: 25%;
}

.menu {
    display: flex;
    justify-content: space-between;
    list-style: none;
    gap: 20px;
}

.main-wrapper{
	background-color:var(--black);
	color:#fff;
}
.main-wrapper:nth-of-type(odd) {
/*   background-color: #f7f7f7; */
/* 	background-color:#c0c0c0; */
	background-color:#d3d3d3;
}

.inner {
	padding-bottom:40px;
  width:90%;
  margin:0 auto;
}

.main-container{
	padding:40px 0;
}
.main-container > div > div:last-of-type{
	margin-top:24px;
}

.char {
  opacity: 0;
  display: inline-block;
  animation: fadeInUp 0.7s ease forwards;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.title {
    text-align: center;
    color: #eefbff;
    margin-bottom: 12px;
/*     color: #343434; */
    padding: 1em 0;
}
.main-wrapper:nth-child(odd) .title{
	color:var(--black);
}

.sub-title {
  font-size: 16px;
}

.info-content {
    display: flex;
    justify-content: space-between;
    gap:12px;
    align-items: center;
	max-width:1000px;
	margin:0 auto;
}

.info-content img {
    width: 50%;
}
@media screen and (max-width:767px){
	.info-content img{
		margin: 0 auto 40px;
	}
}

.fadein-animation {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1.5s ease-in-out, transform 1.5s ease-in-out;
}

.fadein-animation.active {
  opacity: 1;
  transform: translateY(0);
}


.info-text {
    margin: 0px 10px 10px 10px;
}

.info-text p {
    line-height: 25px;
    padding-bottom: 24px;
}

.info-list table{
	width:80%;
	margin:0 auto;
}
@media screen and (max-width:480px){
	.info-list table{
		width:100%;
	}
}

.product-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 35px;
	max-width:800px;
	margin:0 auto;
}

.product-list img {
    margin-bottom: 10px;
    vertical-align: top;
    border: solid 1px #b0b3b4;
	/* 追加 */
    border-radius:4px;
}

.product-list p {
    font-size: 0.8em;
    text-align: center;
}

.wrap {
    margin: 12px;
}

@media screen and (max-width: 768px) {
    .info-content{
        display: initial;
    }

    .info-content img {
        width: 90%;
    }

    .fv p {
      font-size: 1.5em;
    }
    
    .fv p:nth-of-type(1) {
      left: 7%;
      top: 15%;
    }
    
    .fv p:nth-of-type(2) {
      left: 7%;
      top: 30%;
    }

    .product-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

}

@media (max-width: 768px) {
/* ハンバーガーアイコン */
.hamburger {
    cursor: pointer;
    width: 30px;
    height: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    z-index: 1001;
  }
  .hamburger span {
    height: 3px;
    background: #333;
    border-radius: 3px;
    transition: 0.3s;
  }
	.hamburger.active{
		transform:translateX(-130px);
	}
  
  /* 開閉アニメーション */
  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(0px, 15px);
  }
  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }
  .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(0px, -15px);
  }
  
/* メニューのスタイル（モバイル表示用） */
#mobile-menu {
    display: none;
    position: absolute;
    top: 0;
    right: 0;
    width: 150px;
    background: rgba(51, 51, 51, 0.9);
    z-index: 1000;
    padding: 20px 0;
    box-sizing: border-box;
    text-align: right; 
    height: 1000px;
  }
  
  #mobile-menu.active {
    display: block;
  }
  
  /* 縦並びにするためのスタイル */
  #mobile-menu .menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-end; /* リストアイテムを右揃え */
    gap: 10px;
  }
  
  #mobile-menu .menu li {
    width: 100%; /* 横幅いっぱいに */
  }

  #mobile-menu .menu li a {
    display: block;
    text-align: left; /* テキストは左寄せ */
    color: #fff;
    font-size: 16px;
    padding-left: 20px;
    border-radius: 4px;
    transition: background-color 0.3s ease;
  }
}
  
/* 追加 */
#notfound p{
	margin-top:40px;
	text-align:center;
}
#notfound+footer{
	position:fixed;
	bottom:0;
	left:0;
	width:100%;
	
}
@media screen and (min-width:768px){
	.swiper {
		max-height: 300px;
		max-width:1000px;
	}
}
@media screen and (min-width:768px){
	.swiper-slide{
		padding:0 16px;
		
	}
	.swiper-wrapper{
		margin:0 -16px;
	}
	.swiper-slide-prev,
	.swiper-slide-next{
		opacity:0.3;
	}
}
.swiper-slide{
	box-sizing:border-box;
}
.swiper-slide > img{
	margin:0 auto;
}
.swiper-container{
	position:relative;
}
.swiper-pagination{
	bottom:-40px !important;
}
.swiper-pagination-bullets {
  width: 100px;
	
}

.swiper-pagination-bullet {
  width: 12px !important;
  height: 12px !important;
  margin: 0 0 0 10px !important;
  background: #555;
}

.swiper-pagination-bullet:first-child {
  margin: 0 !important;
}
.contact{
	text-align:center;
	margin-top:5em;
}
.contact a{
	background-color:var(--black);
	color:#fff;
	padding:.75em 4em;
	text-align:center;
}