/* ============================================
   FV
============================================ */
.top-page_fv {
  display: flex;
  min-height: 600px;
  max-height: 680px;
  height: 100vh;
  overflow: hidden;
}

.top-page_fv__text-col {
  width: 36%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 24px;
}

.top-page_fv__content {
  text-align: left;
}

.top-page_fv__media-col {
  width: 64%;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}

.top-page_fv__media-col video,
.top-page_fv__media-col img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.top-page_fv__title {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.4;
  writing-mode: vertical-rl;
  margin: 0 auto;
}

.top-page_fv__text {
  font-size: 16px;
  line-height: 1.8;
  color: #555;
  margin-top: 24px;
}

@media screen and (max-width: 1024px) {
  .top-page_fv {
    flex-direction: column-reverse;
    height: auto;
    min-height: unset;
    max-height: unset;
  }
  .top-page_fv__media-col {
    width: 100%;
    order: -1;
  }
  .top-page_fv__text-col {
    width: 100%;
    padding: 120px 32px 64px 32px;
	  display:block;
  }
  .top-page_fv__title {
    font-size: 36px;
  }
}

@media screen and (max-width: 768px) {
  .top-page_fv {
    height: auto;
    min-height: unset;
    max-height: unset;
  }
  .top-page_fv__media-col {
    width: 100%;
    height: 56vw;
    min-height: 240px;
  }
  .top-page_fv__text-col {
    width: 100%;
        padding: 100px 32px 20px 32px;
  }
  .top-page_fv__title {
    font-size: 24px;
  }
}

/* ============================================
   お知らせ
============================================ */
.top-page_news {
  background: #000;
}
.top-page_news .c-section-head {
  margin: 0;
}
.top-page_news .c-section-head__title,
.top-page_news .c-section-head__sub{
  color: #fff;
}
.top-page_news .l-inner{
  display: flex;
  align-items: center;
  gap: 100px;
  padding: 40px 20px;
}
@media screen and (max-width: 1024px) {
  .top-page_news .l-inner {
    flex-direction: column;
    gap: 16px;
	  padding: 16px;
  }
}
.top-page_news__list {
  list-style: none;
  padding: 0;
  flex: 1;
}
@media screen and (max-width: 768px) {
.top-page_news__list {
	flex:unset;
	width:100%:
	}
}

.top-page_news__item {
}

.top-page_news__link {
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 20px;
  text-decoration: none;
  color: #fff;
  transition: opacity 0.2s;
}

.top-page_news__link:hover {
  opacity: 0.6;
}

.top-page_news__date {
  font-size: 16px;
  color: #fff;
  white-space: nowrap;
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
	.top-page_news__date {
		font-size: 12px;
	}
}
.top-page_news__cat {
  font-size: 16px;
  padding: 3px 12px;
  white-space: nowrap;
  flex-shrink: 0;
}

.top-page_news__title {
  font-size: 16px;
  line-height: 1.5;
  color: #fff;
}

/* ============================================
   コンセプト・メッセージ
============================================ */
.top-page_concept {
  display: flex;
  align-items: stretch;
  min-height: 600px;
}


.top-page_concept__image {
  width: 65%;
  flex-shrink: 0;
  overflow: hidden;
}

.top-page_concept__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.top-page_concept__body {
flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 40px;
    padding: 64px 24px 0 24px;
}

.top-page_concept__small-img {
  width: 230px;
}
@media screen and (max-width: 768px) {
  .top-page_concept__small-img {
    display: none;
  }
}

.top-page_concept__small-img img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.top-page_concept__lead {
  font-size: 24px;
  font-weight: 700;
  writing-mode: vertical-rl;
  text-orientation: upright;
  line-height: 2.5;
  margin: 0;
  text-shadow: 2px 2px 3px rgba(255, 255, 255, 0.6);
}

@media screen and (max-width: 768px) {
  .top-page_concept {
    flex-direction: column;
    min-height: unset;
  }
  .top-page_concept__image {
    width: 100%;
    height: 64vw;
  }
  .top-page_concept__body {
    padding: 60px 20px 0 20px;
  }
  .top-page_concept__lead {
    font-size: 16px;
    line-height: 2;
  }
}

/* ============================================
   店舗紹介
============================================ */
.top-page_shop {
  padding: 120px 0 0 0;
}
.top-page_shop .l-inner{
}
.top-page_shop__list {
  display: flex;
  flex-direction: row;
  gap: 40px;
}
@media screen and (max-width: 1024px) {
  .top-page_shop__list {
    flex-wrap: wrap;
    gap: 32px 20px;
    justify-content: center;
  }
}

.top-page_shop__item {
  flex: 1;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
	position:relative;
	border-radius:20px;
}
@media screen and (max-width: 1024px) {
  .top-page_shop__item {
    width: calc(50% - 20px);
    flex: unset;
  }
}

.top-page_shop__image {
  width: 100%;
	
}

.top-page_shop__image img,
.top-page_shop__image--empty {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
  background: #ddd;
	object-position: top;
}


.top-page_shop__name {
    font-size: 22px;
    font-weight: 700;
    margin-top: 12px;
    color: #fff;
    margin: 0;
    background: #000;
    text-align: center;
    padding: 16px 0;
}
.top-page_shop__item .c-btn{
    width: 210px;
    height: auto;
    padding: 15px;
    border: solid 1px #000;
    border-radius: 40px;
    z-index: 3;
    font-size: 12px;
    background: unset;
    color: #000;
    margin: 20px auto 0 auto;
    text-align: center;
}
.top-page_shop__item .c-btn:hover{
	background:unset;
}
/* ============================================
   会社概要
============================================ */
.top-page_company {
  padding: 100px 0;
  background: #f9f9f6;
}

.top-page_company__table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 16px;
}

.top-page_company__table th,
.top-page_company__table td {
  padding: 20px 24px;
  text-align: left;
  font-size: 15px;
  border-bottom: 1px solid #e0e0e0;
}

.top-page_company__table th {
  width: 180px;
  color: #888;
  font-weight: 400;
}

.top-page_company__table tbody tr:first-child th,
.top-page_company__table tbody tr:first-child td {
  border-top: 1px solid #e0e0e0;
}

.top-page_company__table td a {
  color: #333;
  text-decoration: none;
}


@media screen and (max-width: 1250px) {
	.top-page_shop .l-inner{
		width: calc(100% - 40px);
	}
}
@media screen and (max-width: 768px) {
	.top-page_shop {
		padding: 60px 0 0 0;
	}
	.top-page_shop .l-inner {
		padding: 40px 0 0 0;
	}
	.top-page_shop__list {
	}
	.top-page_shop__item {
    width: calc(50% - 10px);
	}
	.top-page_shop__image img, .top-page_shop__image--empty {
		height: 110px;
	}
	.top-page_shop__name {
		font-size: 14px;
	}
	.top-page_shop__item .c-btn {
		width: 100%;
		font-size: 12px;
    margin-top: 8px;
	}
	.top-page_news {
	}
	.top-page_news__link {
		padding: 0;
		flex-direction: column;
		gap: 12px;
		align-items: flex-start;
	}
}