body{
    /**background: url("../images/SOLDOUT/haikei0002.jpg") no-repeat center center / cover fixed;**/
    background: url("../images/all/site-bg.jpg") fixed;
}
html {
  scroll-behavior: smooth;
}




.news-top {
  width: 100%;
  max-width:1000px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap:2rem;
    padding-inline:5%;
}
.news-top ul {
  background-color:white;
    padding:20px 20px;
    border:5px solid black;
}
.news-top li + li {
  border-top: 1px dashed #000;
  margin-top: 10px;
  padding-top: 10px;
}
.news-top a {
  color: black;
  text-decoration: none;
  transition: color 160ms ease, transform 280ms ease;
}
.news-top a:hover {
  color: gray;
  transform: translateX(2px);
}
.news-top .more {
  display: block;
  width: fit-content; /* または固定幅 */
  margin: 0 auto;
  text-align: center;
  color: white;
  background:black;
  border: 1px solid #000;
  border-radius: 999px;
  padding: 6px 12px;
  text-decoration: none;
  transition: 0.3s;
  cursor: pointer;
  box-shadow: 0 8px 16px rgba(0,0,0,0.4);
}
.news-top .more:hover {
  color: black;
  background:white;
}



.news-top-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.news-top-item .news-header {
}

.news-top-item .title-link {
  font-weight: bold;
  color: black;
  text-decoration: none;
}

.news-top-item .title-link:hover {
  text-decoration: underline;
}










.news-list {
  width: 100%;
  max-width: 980px;        /* 横幅を制限して読みやすく */
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.news-item {
  padding: 2rem;
  background-color: white;
  border: 5px solid black;
  display: flex;
  flex-direction: column;
  gap:10px;
}

.news-item h3 {
  font-size: 1.5rem;
  font-weight:bold;
  color: black;
}

.news-item p {
  color: black;
  font-size: 1rem;
}

/* インラインCSSを移動 */
.news-header {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.news-header .day {
  color: gray;
}


@media (max-width: 768px) {
.news-list {
    padding-inline:5%;
}
.news-item h3 {
  font-size: 1.1rem;
}
.news-item p {
  font-size: 0.85rem;
}
}





.kv {
  position: relative;
  overflow: hidden;
    background-color:black;
}
.splide  .splide__slide {
  width: auto;
  height: 80vh;
}
.splide  .splide__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.splide .splide__pagination {
    gap:5px;
}
.splide .splide__pagination__page {
    width:25px;
    height:3px;
    border-radius: 0;
    background:gray;
}
.splide .splide__pagination__page.is-active {
    background:white;
    opacity:1;
}
.splide__slide {
  position: relative;
}

.splide__slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.8); /* 黒い半透明膜 */
  opacity: 0;
  transition: opacity 0.5s ease;
}

.splide__slide:not(.is-active)::after {
  opacity: 1; /* 非アクティブは黒膜あり */
}

.splide__slide.is-active::after {
  opacity: 0; /* アクティブは膜なし */
}

.splide__track,
.splide__list {
  background-color: black; /* 隙間に見える色 */
}
@media (max-width: 768px) {
.splide  .splide__slide {
  height: 100%;
}
}


/**banner**/
.banner {
  max-width:1000px;
  margin:2.5% auto 0 auto;
  transition:0.3s;
}
.banner:hover{
  opacity:0.6;
}
.banner img {
  width: 100%;
  box-shadow: 0 8px 16px rgba(0,0,0,0.4);
}
@media (max-width: 768px) {
.banner {
  margin:5% auto 0 auto;
  padding-inline:2.5%;
}
}
/**banner**/








/**work**/
.work-sec{
  background-color:black;
}
.work-sec .area{
  padding: 2.5%;
  display: flex;
  flex-direction: column;
  gap:2rem;
}
.work-sec .area .box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.work-sec .area .box .image {
  flex: 1.25;
}
.work-sec .area .box .image img {
  width: 100%;
  height: auto;
}
.work-sec .area .box p {
  flex: 1;
  font-size: 1rem;
  line-height: 2;
  color:white;
}
.work-sec .area .box02 {
  display: flex;
  flex-wrap:wrap; 
  justify-content: center;
  width:100%;
  color:white;
  gap:2rem;
}
.work-sec .area .box02 > div {
  flex: 1 1 calc(25% - 2rem);
  max-width:calc(25% - 2rem);
  text-align: center;
}
.work-sec .area .box02 img {
  width: 100%;
  height: auto;
}
.work-sec .area .box02 p{
  font-size:1rem;
}
@media (max-width: 768px) {
.work-sec .area{
  padding: 5%;
}
.work-sec .area .box {
  flex-direction: column;
  gap: 1rem;
}
.work-sec .area .box02 {
  gap:1rem;
}
.work-sec .area .box02 > div {
  flex: 1 1 calc(50% - 1rem);
  max-width:calc(50% - 0rem);
}
.work-sec .area .box02 p{
  font-size:0.8rem;
}
}
/**work**/


/**ttl**/
.section-title-block {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-inline:5%;
}
.section-title-block .icon img {
  width: 75px;
}
.section-title-block .title-en {
  font-size: 3rem;
  color: black;
  font-family: 'Anton', sans-serif;
  font-weight: normal;
}
.section-title-block .title-ja {
  font-size: 1rem;
  color: black;
  margin: 0;
}
/**ttl**/






.grid.top{
  display: flex;
  gap: 2rem 2rem;
  max-width: 80%;
  margin: 0 auto;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-end;
}
.grid.top .card {
  background: black;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding:0.5rem;
  max-width:300px;
  min-width:20%;
  box-shadow: 0 8px 16px rgba(0,0,0,0.4);
}
.grid.top .card .image {
  position:relative;
}
.grid.top .card .image img {
  width: 100%;
  height: auto;
  display: block;
}
.grid.top .card .copy {
  padding: 1rem;
    display: flex;
    flex-direction: column;
    gap:0.5rem;
}
.grid.top .card h4 {
  font-size: 1rem;
  color: white;
  display: -webkit-box;
  -webkit-line-clamp: 1;   /* 最大1行まで表示 */
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.grid.top .card p {
  font-size: 0.75rem;
  color: white;
  display: -webkit-box;
  -webkit-line-clamp: 2;   /* 最大2行まで表示 */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.grid.top .card .btn {
  text-align: center;
  color: black;
}
.grid.top .card .btn a {
  width:100%;
  display: inline-block;
  padding: 1rem 0;
  background:white;
  text-decoration: none;
  transition: 0.3s ease-in-out;
}
.grid.top .card .btn a:hover{
  color: white;
  background:#333;
}
@media (max-width: 768px) {
.grid.top{
  max-width: 90%;
}
.grid.top .card {
  max-width:100%;
}
}













.grid.two {
  display: flex;
  gap: 2rem 2rem;
  margin: 0 auto;
  flex-wrap: wrap;
  justify-content: center;
  align-items: start;
  max-width:1280px;
}
.grid.two .card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding:2rem;
  background-color:black;
  gap:0.5rem;
  width:100%;
  box-shadow: 0 8px 16px rgba(0,0,0,0.4);
}
.grid.two .card .image {
  display: flex;
  gap: 2rem;
  justify-content: center; /* 1枚なら中央 */
  overflow: hidden;
  flex-wrap: nowrap;
}
.grid.two .card .image div{
    width:50%;
}
.grid.two .card .copy {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap:0.5rem;
  align-items: center;
}
.grid.two .card h4 {
  font-size: 1.5rem;
  color: white;
}
.grid.two .card p {
  font-size: 1rem;
  color: white;
  text-overflow: ellipsis;
}
.grid.two .card .btn {
  font-size:1rem;
  text-align: center;
  color: white;
  padding: 1rem 0;
  border:1px white solid;
  display: block;
}
.sold {
  position: relative;
}
.sold::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70%;
  height: 100%;
  background: url("../images/all/SOLDOUT.png") no-repeat center center;
  background-size: contain;
  pointer-events: none;
}
@media (max-width: 768px) {
.grid.two {
    max-width:90%;
}
.grid.two .card {
  padding:0.5rem;
}
.grid.two .card .image {
  gap: 0.5rem;
}
.grid.two .card .image div{
    width:100%;
}
.grid.two .card h4 {
  font-size: 1rem;
}
.grid.two .card p {
  font-size: 0.8rem;
}
}




.grid.four {
  display: flex;
  gap: 2rem 2rem;
  margin: 0 auto;
  flex-wrap: wrap;
  justify-content: center;
  align-items: start;
  max-width:1280px;
}
.grid.four .card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding:2rem;
  background-color:black;
  gap:0.5rem;
  width:100%;
  box-shadow: 0 8px 16px rgba(0,0,0,0.4);
}
.grid.four .card .image {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* 横に2枚 */
  grid-template-rows: repeat(2, auto);   /* 縦に2段 */
  gap: 1rem;
}
.grid.four .card .image div{
    width:100%;
}
.grid.four .card .copy {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap:0.5rem;
  align-items: center;
}
.grid.four .card h4 {
  font-size: 1.5rem;
  color: white;
}
.grid.four .card p {
  font-size: 1rem;
  color: white;
  text-overflow: ellipsis;
}
.grid.four .card .btn {
  font-size:1.5rem;
  text-align: center;
  color: white;
  padding: 1rem 0;
  border:1px white solid;
  display: block;
}
@media (max-width: 768px) {
.grid.four {
    max-width:90%;
}
.grid.four .card {
  padding:0.5rem;
}
.grid.four .card .image {
  gap: 0.5rem;
}
.grid.four .card .image div{
    width:100%;
}
.grid.four .card h4 {
  font-size: 1rem;
}
.grid.four .card p {
  font-size: 0.8rem;
}
.grid.four .card .btn {
  font-size:1rem;
}
}






.tags {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap:1rem;
}

.tags button {
  background-color: #000;   /* 黒ベース */
  color: #fff;              /* 白文字 */
  border: none;
  padding: 7.5px 12.5px;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
    border-radius: 50px;
  transition: background-color 0.3s, color 0.3s;
  box-shadow: 0 8px 16px rgba(0,0,0,0.4);
}

.tags button:hover {
  background-color: white;   /* ホバー時 */
  color:black;
}

/* アクティブ状態を表すクラス */
.tags button.active[data-tag="kakegawa"] {
  background-color: #00A0E9; /* 青色 */
  color: black;
  text-shadow: -1px -1px 0 #fff, 1px -1px 0 #fff, -1px 1px 0 #fff, 1px 1px 0 #fff;
}

.tags button.active[data-tag="yokohama"] {
  background-color: #E60012; /* 赤色 */
  color: black;
  text-shadow: -1px -1px 0 #fff, 1px -1px 0 #fff, -1px 1px 0 #fff, 1px 1px 0 #fff;
}

.tags button.active[data-tag="all"] {
  background-color: white;    /* すべて用の色（任意） */
  color: black;
  text-shadow: -1px -1px 0 #fff, 1px -1px 0 #fff, -1px 1px 0 #fff, 1px 1px 0 #fff;
}

.tag {
    display: inline-block;
    padding: 4px 8px;
    font-size: 0.75rem;
    font-weight: bold;
    color: #000;
    text-shadow: -1px -1px 0 #fff, 1px -1px 0 #fff, -1px 1px 0 #fff, 1px 1px 0 #fff;
}
.tag.kakegawa {
    background-color: #00A0E9; /* 青色 */
}
.tag.yokohama {
    background-color: #E60012; /* 赤色 */
}





@media (max-width: 768px) {.tags {
    gap:0.5rem;
}
.tags button {
  font-size: 0.8rem;
}
}






.shop-sec {
  display: flex;
  justify-content: center;
}

.shop-sec .kakegawa {
  width: 100%;
  max-width: 1280px;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
    padding:2rem;
    background-color:white;
    border:5px solid black;
}

.shop-sec .kakegawa .box {
  width:100%;
  display: flex;
  gap: 2rem;
  align-items: center;
}

.shop-sec .kakegawa .box img {
  width: 100%;
  height: auto;
  max-width:50%;
}
.shop-sec .kakegawa .box .text{
    color:black;
    display: flex;
    flex-direction: column;
    gap:1rem;
    justify-content: center;
    margin:0 auto;
}
.shop-sec .kakegawa .box .text h2{
    font-size:1.5rem;
    font-weight:bold;
}
.shop-sec .kakegawa .box .text p {
    font-size:1rem;
  line-height: 1.8;
}

.shop-sec .kakegawa .map {
  width: 100%;
}

.shop-sec .kakegawa .map iframe {
  width: 100%;
  height: 400px;
}
@media (max-width: 768px) {
.shop-sec {
  padding-inline:5%;
}
.shop-sec .kakegawa {
  padding:0;
}
  .shop-sec .kakegawa .box {
  flex-direction: column;
  align-items: center;
  }
  .shop-sec .kakegawa .box img {
  max-width: 100%;
  }
}







.top-inst .inst-pic{
    display:flex;
    justify-content: center;
    gap:10px;
    width:100%;
    max-width:1280px;
    margin:0 auto;flex-wrap: wrap;
}
.top-inst .inst-pic .image{
    width:24%;
}
.top-inst .inst-pic .image img{
    width:100%;
  height: auto;   /* ←これで自然な比率を保つ */
  display: block; /* 余計な隙間をなくす */
}

@media (max-width: 768px) {
    .top-inst .inst-pic{
        padding-inline:5%;
    }
    .top-inst .inst-pic .image{
        width:48%;
}
    
}

.top-inst .btn{
    display: block;
    width: fit-content; /* または固定幅 */
    margin: 0 auto;
    text-align: center;
    color: white;
    background:black;
    border: 1px solid #000;
    border-radius: 999px;
    padding: 6px 12px;
    text-decoration: none;
    transition: 0.3s;
    cursor: pointer;
  box-shadow: 0 8px 16px rgba(0,0,0,0.4);
}
.top-inst .btn:hover{
    color: black;
    background:white;
}








.sp-break {
  display: none; /* PCでは非表示 */
}
@media (max-width: 768px) {
  .sp-break {
    display: block; /* スマホ幅でだけ改行 */
  }
}





section {
  display: flex;
  flex-direction: column;
  gap: 5vh;
  padding: 5% 0 0;
}

section:last-of-type {
  padding-bottom: 5%;
}

@media (max-width: 768px) {
  section {
    padding: 15% 0 0;
  }

  section:last-of-type {
    padding-bottom: 15%;
  }
}
