@charset "UTF-8";
.ly_header {
  display: flex;
  height: 138px;
  flex-direction: column;
  align-items: flex-start;
  flex-shrink: 0;
  background: #fff;
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  justify-content: center;
  z-index: 1000;
  font-family: "Zen Kaku Gothic New", "メイリオ", Meiryo, "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "Hiragino Kaku Gothic Pro", sans-serif;
}
@media only screen and (max-width: 767px) {
  .ly_header {
    height: 72.5px;
  }
}

.cp_head {
  display: flex;
  height: 40px;
  justify-content: space-between;
  align-items: center;
  flex-shrink: 0;
  align-self: stretch;
  width: 1280px;
  padding: 48px;
  margin: 0 auto;
}
@media only screen and (max-width: 1280px) {
  .cp_head {
    width: 100%;
    padding: 48px 24px;
  }
}
@media only screen and (max-width: 767px) {
  .cp_head {
    width: 100%;
    justify-content: center;
    height: inherit;
    padding: 0;
  }
}

.cp_headLogo {
  display: flex;
  align-items: center;
  gap: 23.55px;
}
@media only screen and (max-width: 767px) {
  .cp_headLogo {
	padding-right: 40px;
    gap: 17px;
  }
}
.cp_headLogo__10th {
  width: 36.551px;
  height: auto;
  aspect-ratio: 37/34;
}
@media only screen and (max-width: 767px) {
  .cp_headLogo__10th {
    width: 26px;
  }
}
.cp_headLogo__brand {
  width: 103.899px;
  height: auto;
  aspect-ratio: 52/17;
}
@media only screen and (max-width: 767px) {
  .cp_headLogo__brand {
    width: 75px;
  }
}

/* menu on off */
.cp_headNav .view_pc {
	display: block;
}
@media only screen and (max-width: 767px) {
	.cp_headNav .view_pc {
	display: none;
}
}

.cp_headNav .view_sp {
	display: none;
}
@media only screen and (max-width: 767px) {
	.cp_headNav .view_sp {
	display: block;
}
}
/* menu */
@media only screen and (max-width: 767px) {
  .cp_headNav {
    position: absolute;
	  padding-bottom: 20%;
    top: 72.5px;
    left: 0;
    width: 100%;
    background: #fff;
    overflow-y: auto;
    max-height: 100vh; /* 適宜調整 */
    transition: all 0.3s ease-in-out;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }
  .is_mobileMenuOpen .cp_headNav {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
}
.cp_headNav__grp {
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  gap: 28px;
}
@media only screen and (max-width: 1280px) {
  .cp_headNav__grp {
    gap: calc(5px + 1.2vw);
  }
}
@media only screen and (max-width: 1100px) {
  .cp_headNav__grp {
    gap: calc(5px + 0.6vw);
  }
}
@media only screen and (max-width: 1000px) {
  .cp_headNav__grp {
    gap: calc(5px + 0.2vw);
  }
}
@media only screen and (max-width: 767px) {
  .cp_headNav__grp {
    flex-direction: column;
    gap: 0;
    padding: 0 46.5px;
  }
}
.cp_headNav__item {
  display: block;
  list-style: none;
}
@media only screen and (max-width: 767px) {
  .cp_headNav__item {
    width: 100%;
  }
}
.cp_headNav__link {
  color: var(--imini-green, #385323);
  text-align: center;
  font-size: 13px;
  font-weight: 500;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  cursor: pointer;
  padding: 0 10px;
  position: relative;
}
@media only screen and (max-width: 1000px) {
  .cp_headNav__link {
    padding: 0 5px;
  }
}
@media only screen and (max-width: 767px) {
  .cp_headNav__link {
    width: 100%;
    padding: 17px 0 17px;
    display: block;
    border-top: 1px solid rgba(56, 83, 35, 0.2);
    font-size: 16px;
    font-weight: 700;
    text-align: left;
    height: auto;
  }
  .cp_headNav__item:first-of-type .cp_headNav__link {
    border-top: none;
  }
}
.cp_headNav__link:link, .cp_headNav__link:visited {
  color: var(--imini-green, #385323);
}
.cp_headNav__link:hover::after {
  opacity: 1;
}
@media only screen and (max-width: 767px) {
  .cp_headNav__link--hasChild::before {
    content: "";
    display: block;
    position: absolute;
    top: 56.5%;
    left: -11px;
    transform: translateY(calc(-50% - 4px));
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--imini-green, #385323);
  }
  .cp_headNav__link--hasChild::after {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%) rotate(180deg);
    width: 11px;
    height: 11px;
    background-size: contain;
    background-image: url("/component/common/_img/icon_triangle.png");
    background-repeat: no-repeat;
    transition: transform 0.3s ease-in-out;
  }
  .cp_headNav__link--hasChild.is_active_mobile::after {
    transform: translateY(-50%) rotate(0deg); /* 180度回転させる */
  }
}
.cp_headNav__link--login {
  padding-top: 28px;
}
.cp_headNav__link--login img {
  aspect-ratio: 1/1;
}
@media only screen and (max-width: 767px) {
  .cp_headNav__link--login {
    display: none;
  }
}
.cp_headNav__link--cart {
  padding-top: 17px;
}
.cp_headNav__link--cart img {
  aspect-ratio: 1/1;
}
@media only screen and (max-width: 767px) {
  .cp_headNav__link--cart {
    display: none;
  }
}
/* 文字有り 位置調整 */
.cp_headNav__item a.cp_headNav__link.cp_headNav__link--login {
    padding-top: 0;
}
/* 文字有り 位置調整  */
.cp_headNav__item a.cp_headNav__link.cp_headNav__link--cart {
    padding-top: 0;
}
/* メニュー　見出し　gray  */
span.cp_headNav__caption {
	width: 100vw;
    padding: 10px 34.5px 10px;
    display: block;
    border-top: 1px solid rgba(56, 83, 35, 0.2);
    font-size: 16px;
    font-weight: 700;
    text-align: left;
    height: auto;
    color: var(--imini-green, #385323);
    background: #38532312;
    margin: 0 calc(50% - 50vw);
}
/* cp_headNav__label  */
.cp_headNav__label {
  transition: opacity 0.3s ease-in-out;
  display: block;
  position: relative;
}
.cp_headNav__link:hover .cp_headNav__label {
  opacity: 0.7;
}
.cp_headNav__link:hover .cp_headNav__label::after {
  opacity: 1;
}
.cp_headNav__label::after {
  display: block;
  content: "";
  width: 100%;
  height: 1px;
  background: var(--imini-green, #385323);
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}
@media only screen and (max-width: 767px) {
  .cp_headNav__label::after {
    display: none;
  }
}
@media only screen and (max-width: 767px) {
  .cp_headNav__externalIcon {
    display: inline-flex;
    width: 11px;
    height: 11px;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
  }
  .cp_headNav__externalIcon::after {
    content: "";
    width: 11px;
    height: 11px;
    display: block;
    background-size: contain;
    background-image: url("/component/common/_img/icon_external.png");
    background-repeat: no-repeat;
  }
}

@media only screen and (max-width: 767px) {
  .cp_headNav__menu_arrowIcon {
    display: inline-flex;
    width: 11px;
    height: 11px;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
  }
  .cp_headNav__menu_arrowIcon::after {
    content: "";
    width: 11px;
    height: 11px;
    display: block;
    background-size: contain;
    background-image: url("/component/common/_img/icon_menu_arrow.webp");
    background-repeat: no-repeat;
  }
}

.cp_headNav__icon--login {
  width: 26.91px;
  height: 26.91px;
}
.cp_headNav__icon--cart {
  width: 26.269px;
  height: 26.91px;
}
.cp_headNav__loginLabel {
  font-size: 10px;
  letter-spacing: 0.2px;
	color: #40220F;
}

.cp_mobileHeadItem {
  display: none;
}
@media only screen and (max-width: 767px) {
  .cp_mobileHeadItem {
    display: flex;
    align-items: start;
    gap: 0px;
    position: absolute;
    right: 12px;
    top: 21px;
  }
  .cp_mobileHeadItem__link {
    height: 44px;
    display: flex;
    align-items: center;
    flex-direction: column;
    cursor: pointer;
	  padding: 0 6px;
    position: relative;
  }
  .cp_mobileHeadItem__icon--login {
    width: 22.5px;
    height: 22.5px;
  }
  .cp_mobileHeadItem__icon--cart {
    width: 21.9645px;
    height: 22.5px;
  }
  .cp_mobileHeadItem__icon img {
    width: 100%;
    height: auto;
    display: block;
  }
  .cp_mobileHeadItem__loginLabel {
	  margin-top: 4px;
	  font-size: 12px;
	  letter-spacing: -1.3px;
  }
	.cp_humbergerMenu span.cp_mobileHeadItem__loginLabel {
    margin-top: 2px;
	}
}

.cp_humbergerMenu {
  width: 64px;
  height: 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 7px;
  cursor: pointer;
  margin-left: 10px;
}
@media only screen and (max-width: 767px) {
  .cp_humbergerMenu {
    display: none;
	  height: 42px;
  }
}
.cp_humbergerMenu--mobile {
  display: none;
}
@media only screen and (max-width: 767px) {
  .cp_humbergerMenu--mobile {
    display: flex;
    position: absolute;
    top: 20px;
    left: 3px;
  }
}
.cp_humbergerMenu__bar {
  display: block;
  width: 33px;
  height: 1px;
  background: var(--imini-green, #385323);
  transition: all 0.3s ease-in-out;
}
.cp_humbergerMenu.is_active .cp_humbergerMenu__bar {
  width: 49px;
}
/*.cp_humbergerMenu__bar:nth-child(1) {
  margin-left: auto;
}*/
.is_humbergerMenuOpen .cp_humbergerMenu__bar:nth-child(1) {
  opacity: 0;
}
.is_humbergerMenuOpen .cp_humbergerMenu__bar:nth-child(2) {
	    width: 32px;
  transform: rotate(45deg);
}
/*.cp_humbergerMenu__bar:nth-child(3) {
  margin-left: -16px;
}*/
.is_humbergerMenuOpen .cp_humbergerMenu__bar:nth-child(3) {
	width: 32px;
  margin-top: -7px;
  margin-left: 0;
	margin-bottom: 7px;
  transform: rotate(-45deg);
}
.cp_humbergerMenu--mobile.is_active .cp_humbergerMenu__bar {
  width: 49px;
}
/*.cp_humbergerMenu--mobile .cp_humbergerMenu__bar:nth-child(1) {
  margin-left: auto;
}*/
.is_mobileMenuOpen .cp_humbergerMenu--mobile .cp_humbergerMenu__bar:nth-child(1) {
  opacity: 0;
}
.is_mobileMenuOpen .cp_humbergerMenu--mobile .cp_humbergerMenu__bar:nth-child(2) {
	width: 29px;
  transform: rotate(45deg);
}
/*.cp_humbergerMenu--mobile .cp_humbergerMenu__bar:nth-child(3) {
  margin-left: -16px;
}*/
.is_mobileMenuOpen .cp_humbergerMenu--mobile .cp_humbergerMenu__bar:nth-child(3) {
	width: 29px;
  margin-top: -7px;
  margin-left: 0;
	margin-bottom: 7px;
  transform: rotate(-45deg);
}

.cp_humbergerMenuContents {
  position: absolute;
  top: 100%;
  right: calc(100vw - 1280px - (100vw - 1280px) / 2);
  background: #fff;
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: 48px 48px 28px 48px;
  width: 306px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
}
@media only screen and (max-width: 767px) {
  .cp_humbergerMenuContents {
    opacity: 1;
    visibility: visible;
    background: transparent;
    position: relative;
    top: auto;
    right: auto;
    width: 100%;
    padding: 0 46.5px;
    gap: 0;
  }
}
.is_humbergerMenuOpen .cp_humbergerMenuContents {
  opacity: 1;
  visibility: visible;
}
.cp_humbergerMenuContents__item {
  display: block;
  list-style: none;
}
.cp_humbergerMenuContents__link {
  color: var(--imini-green, #385323);
  font-size: 13px;
  font-weight: 500;
  position: relative;
}
.cp_humbergerMenuContents__link:visited, .cp_humbergerMenuContents__link:link {
  color: var(--imini-green, #385323);
}
.cp_humbergerMenuContents__link:hover {
  opacity: 0.7;
}
@media only screen and (max-width: 767px) {
  .cp_humbergerMenuContents__link {
    padding: 17px 0 17px;
    display: block;
    border-top: 1px solid rgba(56, 83, 35, 0.2);
    font-size: 16px;
    font-weight: 700;
  }
}

.cp_dropdownMenu {
  position: absolute;
  top: 117px;
  left: 0;
  width: 100vw;
  background: #fff;
  padding-bottom: 48px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
  box-shadow: 0px 25px 18px 0px rgba(0, 0, 0, 0.08);
}
.cp_dropdownMenu.is_active {
  opacity: 1;
  visibility: visible;
}
@media only screen and (max-width: 767px) {
  .cp_dropdownMenu.is_active {
    opacity: 0;
    visibility: hidden;
  }
}
@media only screen and (max-width: 767px) {
  .cp_dropdownMenu {
    position: relative;
    top: auto;
    left: auto;
    width: auto;
    padding: 0;
    max-height: 0;
    background: transparent;
    box-shadow: none;
  }
  .cp_dropdownMenu.is_active_mobile {
    max-height: 1000px;
    opacity: 1;
    visibility: visible;
  }
}
.cp_dropdownMenu__inner {
  max-width: 982px;
  margin: 0 auto;
}
@media only screen and (max-width: 767px) {
  .cp_dropdownMenu__inner {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }
}
.cp_dropdownMenu__inner--campaign {
  max-width: 994px;
}

.cp_campaignList {
  display: flex;
  gap: 40px;
}
@media only screen and (max-width: 767px) {
  .cp_campaignList {
    flex-direction: column;
    gap: 8px;
  }
}
.cp_campaignList__child {
  width: 273px;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .cp_campaignList__child {
    width: 100%;
  }
}
.cp_campaignList__child:nth-child(2) {
  width: calc(100% - 273px - 40px);
}
@media only screen and (max-width: 767px) {
  .cp_campaignList__child:nth-child(2) {
    width: 100%;
  }
}
.cp_campaignList__child:nth-child(2)::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 100%;
  background-color: var(--imini-green, #385323);
  opacity: 0.2;
}
@media only screen and (max-width: 767px) {
  .cp_campaignList__child:nth-child(2)::before {
    display: none;
  }
}
.cp_campaignList__sub {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 40px;
  padding: 0 0 0 39px;
}
@media only screen and (max-width: 767px) {
  .cp_campaignList__sub {
    padding: 0 0 0 0px;
    gap: 8px;
  }
}
.cp_campaignList__subItem {
  display: block;
  list-style: none;
}

.cp_contentsList {
  margin-bottom: 48px;
}
@media only screen and (max-width: 767px) {
  .cp_contentsList {
    margin-bottom: 0;
  }
}
.cp_contentsList:last-child {
  margin-bottom: 0;
}
.cp_contentsList__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  margin-bottom: 24px;
}
@media only screen and (max-width: 767px) {
  .cp_contentsList__head {
    margin-bottom: 12px;
  }
}
.cp_contentsList__head::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: var(--imini-green, #385323);
  position: absolute;
  top: 50%;
  left: 0;
  z-index: 0;
}
@media only screen and (max-width: 767px) {
  .cp_contentsList__head::after {
    position: relative;
    top: auto;
    left: auto;
    flex-grow: 1;
    width: auto;
  }
}
.cp_contentsList__title {
  color: var(--imini-green, #385323);
  font-size: 14px;
  letter-spacing: 0.56px;
  background: #fff;
  position: relative;
  z-index: 1;
  padding-right: 16px;
}
@media only screen and (max-width: 767px) {
  .cp_contentsList__title {
    background: transparent;
    font-size: 12px;
    padding-right: 10px;
  }
}

.cp_cardList {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}
@media only screen and (max-width: 767px) {
  .cp_cardList {
    gap: 8px;
  }
}
.cp_cardList__item {
  display: block;
  list-style: none;
}

.cp_productCategoryBtn {
  display: flex;
  gap: 8px 24px;
  flex-wrap: wrap;
}
@media only screen and (max-width: 767px) {
  .cp_productCategoryBtn {
    gap: 9px;
    flex-wrap: wrap;
  }
}
.cp_productCategoryBtn__item {
  display: block;
  list-style: none;
}
.cp_productCategoryBtn__link {
  border-radius: 16px;
  background: var(--imini-green, #385323);
  color: #fff;
  font-size: 12px;
  letter-spacing: 0.24px;
  display: inline-flex;
  height: 24px;
  padding: 0px 16px;
  justify-content: center;
  align-items: center;
}
.cp_productCategoryBtn__link:visited, .cp_productCategoryBtn__link:link {
  color: #fff;
}

.cp_cardMini {
  display: block;
  width: 300px;
}
@media only screen and (max-width: 767px) {
  .cp_cardMini {
    width: 100%;
  }
}
.cp_cardMini--lg {
  width: 273px;
}
@media only screen and (max-width: 767px) {
  .cp_cardMini--lg {
    width: 100%;
  }
}
.cp_cardMini__img {
	border: 1px solid rgba(56, 83, 35, 0.2);
  overflow: hidden;
  border-radius: 4px;
}
.cp_cardMini--lg .cp_cardMini__img {
  width: 100%;
  aspect-ratio: 300/85;
}
.cp_cardMini--lg .cp_cardMini__img {
  aspect-ratio: 270/108;/*aspect-ratio: 273/127;*/
}
.cp_cardMini__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  display: block;
}
.cp_cardMini__text {
  color: var(--imini-green, #385323);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.48px;
  padding: 20px 0;
}
@media only screen and (max-width: 767px) {
  .cp_cardMini__text {
    font-weight: 700;
    padding: 6px 0 18px;
  }
}

.cp_overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 120vh;
  background: rgba(255, 255, 255, 0.5);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.is_mobileMenuOpen .cp_overlay {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

@media only screen and (max-width: 767px) {
  .is_mobileMenuOpen .ly_content {
    filter: blur(5px);
    pointer-events: none;
  }
}

@media only screen and (max-width: 767px) {
  .is_mobileMenuOpen .cp_sns {
    filter: blur(5px);
    pointer-events: none;
  }
}