@charset "UTF-8";
/* 商品グループページ用CSS */
.fs-l-main {
  padding: 0;
}

.fs-c-productList {
  display: none;
}

@media screen and (min-width: 751px) {
  .ctm_group_upper {
    margin-left: auto;
    margin-right: auto;
    max-width: none;
  }
}

a:hover {
  opacity: 1;
}

.page_contents {
  display: grid;
  gap: 100px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 991px) {
  .page_contents {
    gap: 50px;
    padding: 0 10px;
    width: 100%;
  }
}
@media screen and (min-width: 751px) {
  .page_contents section {
    margin-left: auto;
    margin-right: auto;
    max-width: 1160px;
  }
}
@media screen and (min-width: 751px) {
  .page_contents section.card__hero {
    max-width: none;
  }
}

.page_ttl {
  font-size: 4rem;
  text-align: left;
}
@media screen and (max-width: 991px) {
  .page_ttl {
    font-size: 3rem;
  }
}

/* ===========================

STORY

============================= */
.story_column {
  display: grid;
  gap: 20px;
  text-align: center;
}
.story_column .ttl {
  font-weight: bold;
}
.story_column .text.em {
  font-style: italic;
}

/* ===========================

COLLABORATION

============================= */
.collaboration-gaku_column {
  display: grid;
  gap: 20px;
}
.collaboration-gaku_column .page_ttl {
  margin-bottom: 50px;
}
@media screen and (max-width: 991px) {
  .collaboration-gaku_column .page_ttl {
    margin-bottom: 20px;
  }
}
.collaboration-gaku_column .mgb50 {
  margin-bottom: 50px;
}
@media screen and (max-width: 991px) {
  .collaboration-gaku_column .mgb50 {
    margin-bottom: 20px;
  }
}
.collaboration-gaku_column .ttl {
  font-weight: bold;
  font-size: 18px;
}
.collaboration-gaku_column .tac {
  text-align: center;
}

/* ===========================

BLOG

============================= */
.blog_contents {
  padding: 0 10px;
}
@media screen and (min-width: 751px) {
  .blog_contents {
    margin-left: auto;
    margin-right: auto;
    max-width: 1160px;
    padding: 0;
  }
}

.blog_list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
@media screen and (max-width: 991px) {
  .blog_list {
    grid-template-columns: 1fr;
  }
}

.blog_item:nth-child(3n+1) {
  grid-column: 1/-1;
}
.blog_item a {
  display: block;
}
.blog_item a:hover .image img {
  transform: scale(1.08);
}
.blog_item .image {
  overflow: hidden;
  overflow: hidden;
  aspect-ratio: 2/1;
}
@media screen and (max-width: 991px) {
  .blog_item .image {
    aspect-ratio: 345/220;
  }
}
.blog_item .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  transform-origin: center center;
  transform: scale(1);
  display: block;
  transition: opacity 0.4s ease, transform 0.6s ease;
}
.blog_item .txBlock {
  background-color: var(--ctm-bg1);
  text-align: center;
  padding: 30px;
  display: grid;
  gap: 20px;
}
@media screen and (max-width: 991px) {
  .blog_item .txBlock {
    padding: 20px;
    gap: 10px;
    text-align: left;
  }
}
.blog_item .txBlock .name {
  font-size: 3rem;
}
@media screen and (max-width: 991px) {
  .blog_item .txBlock .name {
    font-size: 2rem;
  }
}
.blog_item .txBlock .date {
  font-size: 1.2rem;
}/*# sourceMappingURL=page.css.map */