@charset "utf-8";
body {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
    font-size: calc(16 / var(--vw-base-size) * 100vw);
  margin: 0;
  background: #f4f7dc;
  color: #333;
	overflow-x: hidden;
}

/*背景用スライダー*/

.sliding-background {
  position: fixed;
  top: -50px;
  left: 0;
  width: 100%;
  height: calc(100vh + 50px);
  overflow: hidden;
  z-index: -1;
}

.sliding-background::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('https://lps-prod-content-images-111192300873.s3.ap-northeast-1.amazonaws.com/front-top/coco-color/images/bg-topimg.png');
  background-repeat: repeat-x;
  background-position: 0 0;
  will-change: background-position;
  animation: backgroundScrollLeft 45s linear infinite;
  z-index: -1;
}

@keyframes backgroundScrollLeft {
  from {
    background-position: 0 0;
  }
  to {
    background-position: -1500px 0;
  }
}

.floating-icon {
  position: fixed;
  right: 20px;
  bottom: 120px; 
  z-index: 1000;
  display: inline-block;
  animation: float 3s ease-in-out infinite;
  transition: transform 0.3s;

}

.floating-icon img {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  background-color: white;
  padding: 6px;
}

/* 吹き出しスタイル */
.balloon {
  display: none;
  position: absolute;
  bottom: 220px;
  right: 20px;
  background: #333;
  color: #fff;
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 13px;
  white-space: nowrap;
  box-shadow: 0 2px 5px rgba(0,0,0,0.3);
}

/* 吹き出しの矢印 */
.balloon::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border-width: 6px;
  border-style: solid;
  border-color: #333 transparent transparent transparent;
}
.floating-icon:hover .balloon {
  display: block;
}
/* アニメーション */
@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* スマホ対応 */
@media screen and (max-width: 768px) {
  .floating-icon {
    right: 10px;
    bottom: 120px;
  }

  .floating-icon img {
    width: 100px;
    height: 100px;
  }
	.balloon {
    font-size: 12px;
  }
	 .floating-icon .balloon {
		 right: 5px;
    bottom: 120px;
    white-space: normal;     /* 折り返しOK */
    width: 90px;            /* 適切な幅に調整 */
    text-align: center;
    padding: 8px 10px;
  }

  .floating-icon .balloon::after {
    top: auto;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%) rotate(0deg);
    border-width: 6px;
    border-style: solid;
    border-color: #333 transparent transparent transparent;
  }
}

/*ヘッダーメニュー*/
.m_header{
	position:relative;
	top:0;
	z-index: 3;
	min-height: 50px;
	width: 100%;
	background-color: rgba(95,88,39,0.50);		
}

.m_header_nav__menu {
	display: flex;
    gap: 2.5rem;
    justify-content: center;
}
.m_header_nav__menu a {
	color: white;
	font-size: clamp(0.5rem, calc(0.2vw + 1.1rem), 1.8rem);
}
.m_header_nav__menu a{
    position: relative;
}
.m_header_nav__menu a::after {
    position: absolute;
    bottom: -5px;
    left: 50%;
    content: '';
    width: 0;
    height: 2px;
    background-color: #03a9f4;
    transition: .3s;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}
.m_header_nav__menu a:hover::after {
    width: 100%;
}
.m_header__functional_nav {
    margin: 2rem 4rem 1rem 0rem;
}


	/* ハンバーガーアイコン */
    .hamburger {
  display: none;
}

.hamburger-label {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1001;
  cursor: pointer;
	background:rgba( 255, 255, 255, 0.8 );
	box-shadow: 10px 10px 15px -10px;
}

.hamburger-label .icon {
  width: 32px;
  height: 32px;
  display: block;
}

/* 閉じるアイコンはデフォルトで非表示 */
.hamburger-label .close-icon {
  display: none;
}

/* メニューが開いている時、アイコンを切り替え */
#menu-toggle:checked + .hamburger-label .open-icon {
  display: none;
}

#menu-toggle:checked + .hamburger-label .close-icon {
  display: block;
}

    /* メニュー本体 */
    .nav {
      position: fixed;
      top: 0;
      right: -100%;
      width: 50%;
      height: 100%;
      background: #f9f9f9;
      transition: 0.3s;
      padding-top: 60px;
      z-index: 1000;
    }

    .nav ul {
      list-style: none;
      padding: 0;
    }

    .nav li {
		padding: 30px 20px;
      border-bottom: 1px solid #ccc;
		font-size: clamp(1.2rem, calc(0.2vw + 1.2rem), 1.8rem);
    }
    .nav a {
      padding: 30px 10px;
		text-decoration: none;
		color: #222;
}
	.nav li:first-child a {
	  font-weight: bold;
	  color: #6096cc;
	}

    /* オーバーレイ */
    .overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.5);
      opacity: 0;
      pointer-events: none;
      transition: 0.3s;
      z-index: 999;
    }

    /* メニューON時のスタイル */
    #menu-toggle:checked ~ .nav {
      right: 0;
    }
    #menu-toggle:checked ~ .nav ul {
      width: 100%;
    }
    #menu-toggle:checked ~ .overlay {
      opacity: 1;
      pointer-events: auto;
    }

    /* ハンバーガー開閉アニメーション（任意） */
    #menu-toggle:checked + .hamburger-label span:nth-child(1) {
      transform: rotate(45deg) translate(5px, 5px);
    }
    #menu-toggle:checked + .hamburger-label span:nth-child(2) {
      opacity: 0;
    }
    #menu-toggle:checked + .hamburger-label span:nth-child(3) {
      transform: rotate(-45deg) translate(6px, -6px);
    }

.warapper {
	width: 100%;
	max-width: 700px;
	margin: 50px auto 100px;
	background-image: url(https://lps-prod-content-images-111192300873.s3.ap-northeast-1.amazonaws.com/front-top/coco-color/images/wrap-bg.jpg);
	background-position: top;
	background-repeat: no-repeat;
	background-color: #9fd2e2;
	border-radius: 30px;
	position: relative
	z-index: 1;

}
.mobile-box {
	width: 100%;
	max-width: 700px;
	margin: 30px auto 100px;
	background-color: #fff;
	border-radius: 2.5rem;
	position: relative
	z-index: 1;
}
.kkp_dev {
	background-color: transparent;
	height: 300px;
}
.m_point_number_login_form__header {
	width: 300px;
}
.m_point_number_login_form__point_number input[type=text] {
	width: 7rem;
}
.coco-logo {
	text-align: center;
	margin-bottom: 400px;
}
.container {
	padding: 0;
	margin-top: 400px;
}

/*コンテンツ*/
.cnts__top_box {
	display: flex;
	justify-content: flex-end;
	flex-wrap: wrap;
	margin-bottom: 50px;
}
.cnts__top_box h3 {
	width: 100%;
	font-weight: bold;
	font-size: 3rem;
  position: relative;
  padding: 1em 1.5em;
  text-align: center;
	margin: 30px;
}

.cnts__top_box h3:before,
.cnts__top_box h3:after {
  position: absolute;
  content: '';
}

.cnts__top_box h3:after {
  top: 0;
  left: 0;
  width: 50px;
  height: 50px;
  border-top: 2px solid #000;
  border-left: 2px solid #000;
}

.cnts__top_box h3:before {
  right: 0;
  bottom: 0;
  width: 50px;
  height: 50px;
  border-right: 2px solid #000;
  border-bottom: 2px solid #000;
}

.cnts__top_box p {
	margin: 0 30px 20px;
	font-size: 2rem;
	text-align: left;
	line-height: 1.6;
	font-feature-settings: "palt";
}

	/* コンテンツ用ボタン */
.cntns_btn {
  display: inline-flex;
	margin-right: 30px;
  align-items: center;
  padding: 15px 20px;
  background-color: #000;
  color: white;
  text-decoration: none;
  border-radius: 30px; 
  font-size: 16px;
  transition: background-color 0.3s ease;
}

.cntns_btn:hover {
  background-color: #175283;
	    color: #9fd2e2;
}

.cntns_btn .arrow {
  margin-left: 8px;
  font-size: 18px;
  transition: transform 0.3s ease;
}

.cntns_btn:hover .arrow {
  transform: translateX(4px);
}

#event {
	margin: 30px;
	padding: 30px 0;
	background-color: white;
	border-radius:30px; 
}
#event h2 {
	text-align: center;
	padding: 2px;
	border: #222 solid 1px;
	margin: 0 50px;
	font-size: 1.2rem;
	font-weight: bold;
}
/*footer*/
.c_debug {
	opacity:0;
	display: none;
	
}
.fixed-footer {
  position: fixed;
  bottom: -100px; /* 最初は隠しておく用 */
	  left: 0;
  padding: 1em;
	position: fixed;
	width: 100%;
	background-color: rgba(95,88,39,0.50);
  z-index: 999;
	  transition: bottom 0.5s ease;

}

.fixed-footer.visible {
  bottom: 0; /* 下からスライドイン */
}
.f_inq {
	line-height: 1.75;
	padding: 0;
}

/*PC表示用*/
@media screen and (min-width:1200px){
}
/*タブレット表示用*/
@media screen and (min-width:960px){
}

/*コンテンツ用スライドショー*/

.scroll-banner {
  width: 100%;
  height: 300px;
  overflow: hidden;
 margin: 100px 0;
  position: relative;
}

.scroll-track {
  display: flex;
  width: max-content;
  animation: scroll-left 40s linear infinite;
}

.scroll-track img {
  height: 100%;
  width: auto;
  object-fit: cover;
  margin-right: 20px; /* 間隔調整 */
}

@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* トップへボタン */
.page-top-btn {
  position: absolute;
  right: 1em;
  bottom: 1em;
  font-size: 2rem;
  color: #fff;
  opacity: 0;
  transform: translateY(10px);
  animation: float-up 2s ease-in-out infinite alternate;
  transition: opacity 0.6s ease, transform 0.6s ease;
  text-decoration: none;
}

.fixed-footer.visible .page-top-btn {
  opacity: 1;
  transform: translateY(0);
}

/* トップへボタン軽く上下する動き */
@keyframes float-up {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-5px);
  }
}

/* イメージフェードインアニメ */
.fade-in {
  opacity: 0;
  transform: scale(0.85);
  transition: opacity 1.2s cubic-bezier(0.23, 1, 0.32, 1), 
              transform 1.2s cubic-bezier(0.23, 1, 0.32, 1);
  will-change: opacity, transform;
}

.fade-in.visible {
  opacity: 1;
  transform: scale(1);
}
.slide-in {
  opacity: 0;
  transform: translateX(-30px);
  filter: blur(4px); /* 初期状態：ぼかし */
  transition: opacity 0.8s ease-out,
              transform 0.8s ease-out,
              filter 0.8s ease-out;
  will-change: opacity, transform, filter;
}

.slide-in.visible {
  opacity: 1;
  transform: translateX(0);
  filter: blur(0); /* 表示時：くっきり */
}

@media (min-width: 480px) {
a[href*="tel:"] {
pointer-events: none;
cursor: default;
text-decoration: none;
}
}
/*.m_header {
    font-family: 'IBM Plex Sans JP', sans-serif!important;
    font-feature-settings: 'pkna'!important;
}
header.m_header.m_header--bt3 {
    position: sticky;
    z-index: 999;
    width: 100%;
    background: #ffffff;
    top: 0;
    font-family: 'IBM Plex Sans JP', sans-serif!important;
    font-feature-settings: 'pkna'!important;
}
.m_header__site_logo img {
    max-height: 73px!important;
}
.m_header--bt3 .m_header__main {
    margin-bottom: 1rem;
    padding-top: 2rem!important;
}
.m_header__main {
    margin-bottom: 1rem;
    padding: 0 16px 0 20px;
    padding-top: 2rem!important;
}

.m_header_nav__categories {
    margin-right: 10px!important;
}
.m_header--bt3 .m_header__search {
    margin: 0 10px 0 0!important;
}
.m_header__search {
    border: 2px solid #333!important;
    margin: 0 10px 0 0!important;
}
.m_header__functional_nav__items {
    border: 2px solid;
    border-right-style: none;
    background-color: white;
}
.m_header__search__submit button[type=submit] {
    padding: 1.4rem 2rem 1rem!important;
}
.m_header__functional_nav__items__group.links {
    border: none!important;
}
.m_header__site_logo, .m_header__functional_nav {
    margin: 1rem 1.3rem !important;
}
.m_header__member_info {
    background-color: white!important;
    border: dashed 2px #DB6010;
    border-radius: 0!important;
}
.m_header__member_info__item {
    margin: 0;
}
.m_header_nav__menu {
    line-height: 2.0;
    gap: 1rem 2rem!important;
    margin: 0!important;
    float: right;
    width: 30%;
    flex-wrap: wrap;
    justify-content: center!important;
}

*/


/*TOP検索バー強制変化*/
.m_header_nav {
    background: none!important;
}
.m_header__functional_nav__items__group.links {
	background-color: rgba(255, 255, 255, 0.5);
}
.m_header__site_logo {
    align-self: center;
}
.m_header__site_logo a:hover {
	opacity: 0.7;
}
.m_header__functional_nav__items {
    justify-content: center;
}
.m_header_nav__categories{
    margin: 5px;
	background: #2e9abc;
	border-radius: 2rem;
}
.m_header__search {
    background: #3ba28b;
	border-radius: 2rem;
    
}
.m_header__search__submit button[type=submit] {
    background: #3ba28b;
	height: 100%;
}
.m_change_item_search_condition_button {
    background-color: #9f000f;
}
.c_pagination .page-item.active .page-link {
    background-color: #FFF8CD;
    border-color: #CDC552;
    color: #DB6010;
}

/*検索商品表示用*/
.m_items__item__title{
	font-size: 1.3rem;
}
.m_items__item__exchange_point {
	font-size: 1.5rem;
}

.m_items__item__favorite {
    color: #db6010;
}
.m_items__item__favorite:hover {
    background-color: #ffa300;
}
.m_items__item__image {
    box-shadow: 0 5px 5px 0 rgba(0, 0, 0, .5);
    border-radius: 10px;
}
.m_items__item__image img {
        border-radius: 10px;
	    padding: 5px;
    background-color: #FFF;
}
.m_item_search__submit {
    background-color: #3ba28b;
}
.m_item_search__close_button .button {
    background-color: #3ba28b;
}
.m_items__item__favorite.is_favorite {
    color: #9f000f;
}
.m_item_detail__main__spec {
	font-size: 	1.5rem;
}
.m_item_detail__specs, .m_item_detail__specs td, .m_item_detail__specs th {
    border-color: #3ba28b;  
	font-size: 1.3rem;
}
.m_item_detail__detail {
    border-color: #3ba28b;   
}
.m_item_detail__main__order {
    border: 3px solid #3ba28b;
}
.m_item_detail__main__order .favorite {
    background-color: #93d7df;
    border-color: #009688;
	font-size: 1.7rem;
}
.m_item_detail__main__order .favorite .icon {
    color: #FFF;
}
.m_header__functional_nav__item a　{
	color: #FFF;
}
.m_item_detail__specs table {
	width: 100%;
}
.m_item_search__category {
	font-size: 1.3rem;
}
@media screen and (min-width: 768px){
		.m_item_detail__main__spec {
		border-color: #ffa300;
		}
	.m_footer__functional_nav {
		display: none;
	}
}

@media screen and (max-width: 578px){
	.m_header--bt3 .m_header_nav__menu {
		display: none !important;
	}
	.m_header_nav__menu {
		display: none !important;
	}
	.m_header__member_info__row {
	  display: grid !important;
	}
	.m_header__member_info__attention {
	  font-size: 1.4rem !important;
	  text-align: left !important;
	}
	.m_footer__functional_nav {
	  background-color: #f8f9fd;
	}
	.m_footer_nav__menu {
	  line-height: 2.0;
	  align-items: center;
	  display: flex;
	  gap: 1.5rem;
	  justify-content: space-evenly;
	  flex-wrap: wrap;
	  padding: 0 2rem 3rem;
	}
	.m_footer_nav__menu a {
	  color: #a5adb3;
	  text-decoration: none;
	}
	.m_items__item {
        padding-bottom: 5%;
        width: 47.5%;
    }
}
.m_footer {
    background-color: inherit;
}

@media screen and (max-width: 578px){
	.m_item_detail__main__order {
		margin: 5px 20px;
	}
	.m_item_detail__specs th {
		width: 25%;
	}
	.m_item_detail__specs table {
		margin: 5px 20px;
		width: auto;
}
	.m_item_detail__detail .contents {
		margin: 5px 20px;
	}
	.m_header--bt3 {
	}
	.m_header__main {
		padding-top: 8rem!important;
	}
	.m_header_nav__categories {
		margin: 0!important;
		border-bottom: 7px double white!important;
	}
	.m_header--bt3 .m_header__search {
		margin: 0!important;
	}
}

@media screen and (max-width: 578px){
	.m_header__search__keyword {
	  width: 70%;
	}
	.m_header__search__submit {
	  width: auto;
	  }
	.m_header__search {
	  margin: 0!important;
	}}

	@media screen and (max-width: 599px){
	.m_header__logout {
		position: fixed;
		left: 1rem;
		width: 110px;
	}
		.m_main__contents{
			padding: 10px 0;
		}
}

@media screen and (max-width: 768px){
.m_header--bt3 .m_header_nav__menu {
    display: none !important;
}
.m_header_nav__menu {
    display: none !important;
}
.m_header__functional_nav {
    margin: 1rem 2rem;
    display: none;
}
	.m_header__site_logo img {
    max-height: 60px;
}
.m_header__member_info__row {
  display: grid !important;
}
.m_header__member_info__attention {
  font-size: 1.4rem !important;
  text-align: left !important;
}
.m_footer__functional_nav {
  background-color: #FFF;
  margin: 0 calc(50% - 50vw);
  width: 100vw;

}
.m_footer_nav__menu {
  line-height: 2.0;
  align-items: center;
  display: flex;
  gap: 1.5rem;
  justify-content: space-evenly;
  flex-wrap: wrap;
  padding: 2rem 3rem;
}
.m_footer_nav__menu a {
  color: #a5adb3;
  text-decoration: none;
}}

@media screen and (max-width: 768px){
.m_header--bt3 {
}
.m_header__main {
}
	
.m_header_nav__categories {
    margin: 5px!important;
    border-bottom: 7px double white!important;
}
.m_header--bt3 .m_header__search {
    margin: 5px !important;
}}

@media screen and (max-width: 768px){
.m_header__search__keyword {
  width: 70%;
}
.m_header__search__submit {
  width: auto;
  }
.m_header__search {
  margin: 0!important;
}}

@media (min-width: 768px) and (max-width: 1779.98px) {
.m_header_nav__menu {
    gap: 1rem 2rem!important;
    flex-wrap: wrap;
    justify-content: center!important;
    width: 100%;
    }
}

@media screen and (max-width: 980px){
.terms_and_conditions, .privacy_policy {
	display: none;
}
}
@media screen and (max-width: 599px) {
.m_header__site_logo {
    margin: 1rem 2rem 1rem 3rem;
}
	}

.story-container {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding: 12px 10px;
scroll-snap-type: x mandatory;
margin: 5px 20px;
}
/* Chrome系のスクロールバーをちょっと細くするだけ */
.story-container::-webkit-scrollbar {
  height: 6px;
}
.story-container::-webkit-scrollbar-thumb {
  background-color: #ccc;
  border-radius: 3px;
}

.story {
  flex: 0 0 auto;
  text-align: center;
  text-decoration: none;
  color: #333;
	scroll-snap-align: start;
}

.story img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 3px solid transparent;
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  padding: 3px;
  background-clip: padding-box;
  transition: transform 0.1s ease;
}


.story:active img {
  transform: scale(0.95);
}
.story.read img {
  background: none;
  border: 3px solid #ccc;
}
.story span {
  display: block;
  margin-top: 6px;
  font-size: 12px;
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 100px;
}

.insta-box a {
	padding: 20px;
	display: block;
	width: 100%;
	font-size: 2rem;
	text-decoration: none;
	
}
.insta-box p {
	color: #333;
	padding: 5px 0;
}
.insta-box i {
	font-size:2rem;
	
}
.insta-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 12px;
  border-bottom: 1px solid #ddd;
  background-color: #fff;
}

.item-icon {
  display: flex;
  align-items: center;
  gap: 10px;
}

.item-icon img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid #ccc;
}

.catename {
  font-weight: bold;
  font-size: 1.2rem;
  color: #262626;
}

.menu {
  font-size: 2rem;
  cursor: pointer;
  color: #262626;
  user-select: none;
}
.comment-placeholder {
  font-size: 1.5rem;
  color: #999;
  padding: 4px 0;
}

.underline {
  border-bottom: 1px solid #ddd;
  margin-top: 8px;
}
/*ホームアイテムグリット用*/
.h-item-sel {
	background-color: #9fd2e2;
	padding: 20px;
}

.h-item__lists {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    margin-bottom: 5.5rem;
    position: relative;
}

.h-item__list {
    background-color: #fff;
    border-radius: 2rem;
    box-shadow: .5rem .5rem 0 rgba(132,169,183,.2588235294);
    position: relative
}

.h-item__list {
    background-color: #fff;
    border-radius: 2rem;
    box-shadow: .5rem .5rem 0 rgba(132,169,183,.2588235294);
    position: relative
}

.h-item__list-img {
    display: block;
    width: 100%;
    overflow: hidden;
    margin-bottom: 2.3rem
}

.h-item__list-img img {
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
    aspect-ratio: 290/290;
    scale: 1;
    transition: scale .54s cubic-bezier(0.25, 1, 0.5, 1) 0s
}

.h-item__list-cat {
    position: absolute;
    top: 3.7rem;
    left: 3.7rem;
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
}

.h-item__list-cat .itemList {
    border-radius: 5rem;
    border: solid 1px #010d15;
    background-color: #fff;
    padding: .6rem 1.1rem;
	font-weight: 700;
}
.h-item__list-ttl {
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1.61;
    letter-spacing: .03em;
    margin-bottom: 3.2rem;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4
}

.h-item__list-ttl span::before,.h-item__list-ttl span::after {
    content: "";
    display: block;
    height: .1px
}

.h-item__list-ttl span::before {
    margin-block-start:calc((.9em - 1lh)/2)}

.h-item__list-ttl span::after {
    margin-block-end:calc((.9em - 1lh)/2)}

.h-item__list-date {
    color: #1593eb;
    font-size: 1.8rem;
    font-weight: 400;
    font-family: "Darumadrop One",sans-serif
}
.t_hl {
    margin-block-start:calc((.9em - 1lh)/2);margin-block-end:calc((.9em - 1lh)/2)}

.p-top-section {
    padding-bottom: 24rem;
    margin-top: 0
}
@media(hover: hover) {
    .h-item__list:hover .h-item__list-img img {
        scale:1.1
    }
}
.h-item__link {
    color: #010d15;
    text-decoration: none;
    display: grid;
    align-content: space-between;
    height: 100%;
    border-radius: 2rem;
    border: solid .4rem #010d15;
    box-sizing: border-box;
    padding: 2.7rem
}
.c-link {
    display: grid;
    justify-items: flex-start;
    text-decoration: none;
    width: -moz-fit-content;
    width: fit-content;
    position: relative;
    padding: .6rem 4.3rem .9rem 1.6rem;
    margin-right: auto;
	  font-size: 1.2rem;
	font-weight: bold;
}
.h-item-sel .c-link {
    padding: 1.1rem 1.6rem;
    margin: 0 auto;
	color: #fff;
	background-color: #222;
	border: solid .4rem #010d15;
    box-sizing: border-box;
	border-radius: 2rem;
}

@media screen and (max-width: 578px){
	.h-item__lists {
    	    grid-template-columns: 1fr;
        	gap: 2rem;
        	z-index: 1;
        	margin-bottom: 3.2rem
    }
}