@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Noto+Serif:ital,wght@0,100..900;1,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
.cstm_cm_font_m3 {
  font-family: "Noto Serif JP", serif;
  font-weight: 800;
}

.d_no,
.d_bl_pc,
.d_in_pc,
.d_bl_tb,
.d_in_tb,
.d_bl_sp,
.d_in_sp {
  display: none;
}

@media screen and (max-width: 1200px) {
  .d_no_pc {
    display: none;
  }
  .d_bl_pc {
    display: block;
  }
  .d_in_pc {
    display: inline;
  }
}
@media screen and (max-width: 1023px) {
  .d_no_tb {
    display: none;
  }
  .d_bl_tb {
    display: block;
  }
  .d_in_tb {
    display: inline;
  }
}
@media screen and (max-width: 767px) {
  .d_no_sp {
    display: none;
  }
  .d_bl_sp {
    display: block;
  }
  .d_in_sp {
    display: inline;
  }
}
.gl_externalEmbedded {
  height: 0;
  overflow: hidden;
  padding-bottom: 56.25%;
  position: relative;
}
@media screen and (max-width: 767px) {
  .gl_externalEmbedded {
    padding-bottom: 100%;
  }
}

.gl_externalEmbedded iframe {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
}

.stopScroll {
  overflow: hidden;
}

@media screen and (max-width: 767px) {
  .gl_show_pc {
    display: none;
  }
}

@media screen and (min-width: 767px) {
  .gl_show_sp {
    display: none;
  }
}

.gl_tac {
  text-align: center;
}

.gl_img img {
  display: block;
  margin-right: auto;
  margin-left: auto;
}

.gl_tx p + p {
  margin-top: 1em;
}

.gl_tx p {
  text-align: justify;
  text-justify: inter-ideograph;
}

.gl_group01 + .gl_group01,
.gl_group02 + .gl_group01,
.gl_group03 + .gl_group01 {
  margin-top: 50px;
}

.gl_group01 + .gl_group02,
.gl_group02 + .gl_group02,
.gl_group03 + .gl_group02 {
  margin-top: 80px;
}

.gl_group01 + .gl_group03,
.gl_group02 + .gl_group03,
.gl_group03 + .gl_group03 {
  margin-top: 120px;
}
@media screen and (max-width: 767px) {
  .gl_group01 + .gl_group03,
  .gl_group02 + .gl_group03,
  .gl_group03 + .gl_group03 {
    margin-top: 60px;
  }
}

ul.gl_ul {
  padding: 0;
  padding-left: 15px;
}
@media screen and (max-width: 767px) {
  ul.gl_ul {
    padding-left: 7px;
  }
}
ul.gl_ul li {
  position: relative;
  font-size: 1.4rem;
}
@media screen and (max-width: 767px) {
  ul.gl_ul li {
    font-size: 1.4rem;
  }
}
ul.gl_ul li::after {
  display: block;
  content: "";
  position: absolute;
  top: 0.7em;
  left: -15px;
  width: 0.3em;
  height: 0.3em;
  background-color: #aaa;
  border-radius: 100%;
}
@media screen and (max-width: 767px) {
  ul.gl_ul li::after {
    left: -7px;
  }
}

.gl_externalEmbedded {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}

.gl_externalEmbedded iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}

video {
  width: 100%;
}

.gl_heightRatio {
  width: 177vh;
  height: 100vh;
  max-width: 100vw;
}

@media (min-width: 768px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}
a {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

/* ================================
   要素出現アニメ（CSS側）
   クラス名はアンダースコア、PCファースト、//コメント方針
   ================================ */
/* // 共通：data-anim を使う要素（プリセット適用） */
.is_anim_enabled [data-anim] {
  opacity: 0;
  transition-property: opacity, transform, filter;
  transition-duration: var(--anim_dur, 0.6s);
  transition-timing-function: var(--anim_ease, ease);
  transition-delay: var(--anim_delay, 0s);
  will-change: opacity, transform, filter;
}

.is_anim_enabled [data-anim].is_shown {
  opacity: 1;
  transform: none;
  filter: none;
}

/* // プリセット：初期オフセット */
.is_anim_enabled [data-anim=fade_up] {
  transform: translateY(16px);
}

.is_anim_enabled [data-anim=fade_down] {
  transform: translateY(-16px);
}

.is_anim_enabled [data-anim=fade_left] {
  transform: translateX(16px);
}

.is_anim_enabled [data-anim=fade_right] {
  transform: translateX(-16px);
}

.is_anim_enabled [data-anim=zoom_in] {
  transform: scale(0.96);
}

.is_anim_enabled [data-anim=blur_up] {
  transform: translateY(16px);
  filter: blur(6px);
}

/* // 発火のみ（anim:'none'）を使う要素の例：任意で個別定義 */
.product_card {
  opacity: 0;
  transform: translateY(12px);
  transition: 0.6s var(--anim_ease, ease);
}

.product_card.is_shown {
  opacity: 1;
  transform: none;
}

/* // モーション低減 */
@media (prefers-reduced-motion: reduce) {
  .is_anim_enabled [data-anim],
  .product_card {
    transition: none !important;
    transform: none !important;
    filter: none !important;
    opacity: 1 !important;
  }
}
.testbody {
  max-width: 720px;
  margin-right: auto;
  margin-left: auto;
}

.cstm_com {
  max-width: 760px;
}
.cstm_com div,
.cstm_com ul,
.cstm_com li {
  box-sizing: border-box;
}
.cstm_com img {
  width: 100%;
}

:root {
  --header-offset: 60px;
}

.cstm_header_bottom {
  padding-top: var(--header-offset);
}

@media screen and (min-width: 1024px) {
  :root {
    --header-offset: 115px;
  }
}
body {
  transition: all 0.7s cubic-bezier(0.39, 0.575, 0.565, 1);
}

.contents_flex .contents,
.contents {
  width: 100%;
  max-width: 1100px;
  margin-right: auto;
  margin-left: auto;
  padding-top: 0;
}

.container {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
}

.main {
  width: 100%;
}

.contents_flex {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 30px;
  max-width: 1300px;
  margin: 0 auto;
}

.contents_flex .side {
  flex: 0 0 210px;
  display: block;
}

.contents_flex > .contents {
  min-width: 0;
  box-sizing: border-box;
  width: auto; /* 中央寄せ解除 */
  max-width: 720px;
  margin: 0;
  padding-left: 0px;
  padding-right: 0px;
}

@media screen and (max-width: 1100px) {
  .side {
    display: none;
  }
  .contents_flex > .side_cstmWrap {
    display: none;
  }
  .contents_flex > .contents {
    width: 100%;
    margin: 0;
    max-width: none;
    padding-left: 20px;
    padding-right: 20px;
  }
  .container {
    display: block;
  }
}
.contents [id] {
  scroll-margin-top: var(--header-offset);
}

.breadcrumb {
  margin-top: 2em;
}

@media screen and (max-width: 1023px) {
  header {
    transition: transform 0.2s ease;
    will-change: transform;
  }
  header.header--hidden {
    transform: translateY(-100%);
  }
}
.cstm_page_riyou .contents-section {
  padding-left: 10px;
  padding-right: 10px;
  max-width: 800px;
}
.cstm_page_riyou img {
  max-width: 100%;
}
.cstm_page_riyou p {
  line-height: 1.7;
  text-align: justify;
  text-justify: inter-ideograph;
}
.cstm_page_riyou h2.guide-section-title {
  font-weight: 600;
  margin: 1em 0;
  padding-bottom: 6px;
  border-bottom: 1px solid #ccc;
}
.cstm_page_riyou h3 {
  background-color: #eee;
  padding: 5px 15px;
  margin-top: 1em;
  margin-bottom: 1em;
  font-weight: bold;
}
.cstm_page_riyou h4.ttl_sa02 {
  position: relative;
  padding-left: 1em;
  margin-bottom: 1em;
}
.cstm_page_riyou h4.ttl_sa02::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0em;
  bottom: 0em;
  width: 4px;
  background: #c9b874;
  border-radius: 1px;
}
.cstm_page_riyou p + h4.ttl_sa02 {
  margin-top: 2em;
}
.cstm_page_riyou .guide-link-area {
  display: flex;
  justify-content: center;
  padding: 20px 0px;
}
@media screen and (max-width: 767px) {
  .cstm_page_riyou .guide-link-area {
    display: block;
  }
}
.cstm_page_riyou .guide-link-area li {
  margin: 0 5px;
}
.cstm_page_riyou .guide-link-area li a {
  display: block;
  background: #eee;
  padding: 14px;
  color: black;
  text-align: center;
  margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
  .cstm_page_riyou .guide-link-area li a {
    padding: 7px 10px;
  }
}
.cstm_page_riyou .lc_red {
  color: #ed6053;
}
.cstm_page_riyou .lc_img_top {
  max-width: 500px;
  margin-right: auto;
  margin-left: auto;
}

.add-list-cart,
.add-cart .add-cart-btn,
.cart-button-wrap .cart-button a {
  background: #e8888a !important;
}

footer {
  width: 100%;
}

footer .footer_bg {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  background-color: #eee;
}

.footer_inner {
  width: 100%;
  position: relative;
  margin-right: auto;
  margin-left: auto;
  padding: 20px 50px;
}
@media screen and (max-width: 767px) {
  .footer_inner {
    padding: 20px 10px;
  }
}

footer .footer_A,
footer .footer_B {
  box-sizing: border-box;
  width: 50%;
}
footer .footer_A a,
footer .footer_B a {
  font-size: 0.8rem;
  color: #777;
}

@media screen and (max-width: 767px) {
  footer .footer_A,
  footer .footer_B {
    width: 100%;
    padding: 12px 16px;
  }
}
footer .footer_bottom {
  width: 100%;
  background: #666;
  color: #ddd;
  text-align: center;
  padding: 20px 10px;
  font-size: 10px;
}

.footer_inori {
  max-width: 100px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 20px;
}
.footer_inori img {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .footer_inori {
    max-width: 100px;
    right: 20px;
    bottom: 15px;
    transform: none;
  }
}

header {
  line-height: 1;
}

header {
  z-index: 1100;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  font-size: 14px;
}
header a:hover {
  text-decoration: none;
}
header .header_bg {
  z-index: 999;
  margin: 0;
  background: #fff;
  padding: 20px 0 16px;
  border-bottom: 1px solid #ddd;
}
@media screen and (max-width: 1023px) {
  header .header_bg {
    padding: 10px 0;
  }
}
@media screen and (min-width: 1024px) {
  header .header_bg {
    padding: 0 0 16px;
  }
}
header .header-inner {
  padding: 0 40px;
  display: flex;
  align-items: center;
  position: relative;
}
@media screen and (min-width: 1024px) {
  header .header-inner {
    padding-top: 20px;
  }
}
header .shop_logo {
  float: left;
  margin: 5px 40px 0 0;
}
@media screen and (max-width: 1023px) {
  header .shop_logo {
    float: none;
    margin: 0;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
  }
}
header .shop_logo img {
  max-height: 30px;
}
@media screen and (max-width: 1023px) {
  header .nav_1 {
    display: none;
  }
}
header .nav {
  float: left;
  display: flex;
  align-items: center;
  margin-top: 0;
}
header .nav li a {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
}
header .nav_2 {
  display: flex;
  margin: 0;
  margin-left: auto;
}
header .nav_2 li span {
  padding: 8px 14px;
}
header .nav_2 img {
  display: block;
  margin: 0 auto 6px;
}
header .cart-link {
  position: relative;
  padding-top: 10px;
  padding-right: 15px;
}
header span.cart-badge {
  background: #eb503c;
  color: #fff;
  padding: 5px 7px !important;
  font-size: 10px;
  font-family: "Noto Sans JP", sans-serif;
  border-radius: 10px;
  position: absolute;
  top: 1px;
  right: 0px;
}

.wrapper {
  height: 100%;
  overflow-x: hidden;
  position: relative;
  display: block;
}

.header_nav_sp {
  display: block;
}

.overlay {
  content: "";
  display: block;
  width: 0;
  height: 0;
  background-color: rgba(0, 0, 0, 0.5) !important;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.overlay.open {
  width: 100%;
  height: 100%;
  opacity: 1;
  pointer-events: auto;
}

.menu-trigger {
  display: none;
}
@media screen and (max-width: 1023px) {
  .menu-trigger {
    display: inline-block;
    width: 28px;
    height: 28px;
    vertical-align: middle;
    cursor: pointer;
    position: fixed;
    top: 13px;
    left: 16px;
    z-index: 100;
  }
}

.menu-trigger span {
  display: inline-block;
  box-sizing: border-box;
  position: absolute;
  left: 0;
  width: 80%;
  height: 4px;
  background-color: #6e6e6e;
  transition: all 0.5s;
}

.menu-trigger.active span {
  background-color: #6e6e6e;
}

.menu-trigger span:nth-of-type(1) {
  top: 4px;
}

.menu-trigger.active span:nth-of-type(1) {
  transform: translateY(12px) rotate(-45deg);
}

.menu-trigger span:nth-of-type(2) {
  top: 12px;
}

.menu-trigger.active span:nth-of-type(2) {
  opacity: 0;
}

.menu-trigger span:nth-of-type(3) {
  bottom: 4px;
}

.menu-trigger.active span:nth-of-type(3) {
  transform: translateY(-4px) rotate(45deg);
}

.header_nav_sp nav.header_nav_sp_wrap {
  width: 85vw;
  max-width: 350px;
  height: 100vh;
  height: 100dvh;
  box-sizing: border-box;
  padding-top: 20px;
  background: #fff !important;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1001;
  transform: translate(-350px);
  transition: all 0.5s;
}
@media screen and (max-width: 1023px) {
  .header_nav_sp nav.header_nav_sp_wrap .cstm_nav_sp_etc {
    margin-top: 2em;
    margin-bottom: 20px;
  }
  .header_nav_sp nav.header_nav_sp_wrap .cstm_nav_sp_etc ul {
    list-style: none;
    margin: 0;
    padding: 0;
  }
  .header_nav_sp nav.header_nav_sp_wrap .cstm_nav_sp_etc li {
    color: #6e6e6e;
    text-align: left;
    padding: 0px 0px;
  }
  .header_nav_sp nav.header_nav_sp_wrap .cstm_nav_sp_etc li a {
    display: block;
    padding: 14px 10px;
    color: #555;
    text-decoration: none;
    border-bottom: 1px solid #eee;
    line-height: 1.4;
    font-size: 14px;
  }
  .header_nav_sp nav.header_nav_sp_wrap .cstm_nav_sp_etc li a:hover,
  .header_nav_sp nav.header_nav_sp_wrap .cstm_nav_sp_etc li a:active {
    background: #f7f7f7;
  }
  .header_nav_sp nav.header_nav_sp_wrap .cstm_nav_sp_etc a:focus-visible {
    outline: 2px solid #c9b874;
    outline-offset: 2px;
  }
  .header_nav_sp nav.header_nav_sp_wrap .search-link-sp a {
    border: none;
  }
  .header_nav_sp nav.header_nav_sp_wrap .search1 {
    display: flex;
    gap: 8px;
    align-items: center;
    padding: 12px 0px;
  }
  .header_nav_sp nav.header_nav_sp_wrap .search1 dt {
    flex: 1;
    margin-right: 20px;
  }
  .header_nav_sp nav.header_nav_sp_wrap .search1 dd {
    margin: 0;
  }
  .header_nav_sp nav.header_nav_sp_wrap .search1 input {
    width: 100%;
    height: 36px;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 0 12px;
    font-size: 14px;
    background: #fff;
  }
  .header_nav_sp nav.header_nav_sp_wrap .search1 button {
    width: 36px;
    height: 36px;
    border: 1px solid #ddd;
    background: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
}
.header_nav_sp nav.header_nav_sp_wrap .lc_shop_logo {
  width: 40px;
  margin-right: auto;
  margin-left: auto;
  margin-bottom: 20px;
}
.header_nav_sp nav.header_nav_sp_wrap .lc_shop_logo a {
  border: none;
  display: block;
}
.header_nav_sp nav.header_nav_sp_wrap .lc_shop_logo img {
  width: 100%;
}

.header_nav_sp nav.open {
  transform: translate(0, 0);
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  padding-bottom: calc(16px + env(safe-area-inset-bottom));
}

body.nav-open {
  overflow: hidden;
}

@media screen and (min-width: 1024px) {
  header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    transform: translateY(0) !important;
    transition: none !important;
    will-change: auto;
  }
  header.header--hidden {
    transform: none !important;
  }
}
.cstm_home div {
  box-sizing: border-box;
}
.cstm_home img {
  width: 100%;
}

.pageclass_home .cstm_header_bottom {
  display: none;
}

.carouselWrap {
  width: 100%;
  padding: 0;
  position: relative;
  left: 50%;
  right: 50%;
  /* 親の左右余白を打ち消してビューポート幅へブレイクアウト */
  margin-left: -50vw;
  margin-right: -50vw;
  width: 100vw;
  max-width: 100vw;
  overflow: hidden;
  margin-bottom: 20px;
  z-index: 5;
}

.carouselWrap_inner {
  overflow: hidden;
  position: relative;
  padding: 0;
  margin: 0;
}

.top_slider {
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.top_slider .slide_box {
  position: relative;
  overflow: hidden;
  height: 60vh;
  max-height: 70vh;
}
@media (max-width: 1100px) {
  .top_slider .slide_box {
    height: 60vh;
    max-height: none;
  }
}

.top_slider .slide_box::before {
  content: "";
  position: absolute;
  inset: 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

/* デフォは動かさない */
.top_slider .slide_01::before {
  background-image: url("https://media.docco.co.jp/asset/shop/home/home_slide_01_pc.jpg?v_1007");
}

.top_slider .slide_02::before {
  background-image: url("https://media.docco.co.jp/asset/shop/home/home_slide_03_pc.jpg?v_1007");
}

.top_slider .slide_03::before {
  background-image: url("https://media.docco.co.jp/asset/shop/home/home_slide_02_pc.jpg?v_1007");
}

.top_slider .slide_04::before {
  background-image: url("https://media.docco.co.jp/asset/shop/home/home_slide_04_pc.jpg?v_1007");
}

@media screen and (max-width: 767px) {
  .top_slider .slide_01::before {
    background-image: url("https://media.docco.co.jp/asset/shop/home/home_slide_01_sp.jpg?v_1007");
  }
  .top_slider .slide_02::before {
    background-image: url("https://media.docco.co.jp/asset/shop/home/home_slide_03_sp.jpg?v_1007");
  }
  .top_slider .slide_03::before {
    background-image: url("https://media.docco.co.jp/asset/shop/home/home_slide_02_sp.jpg?v_1007");
  }
  .top_slider .slide_04::before {
    background-image: url("https://media.docco.co.jp/asset/shop/home/home_slide_04_sp.jpg?v_1007");
  }
}
@media (max-width: 1100px) {
  .top_slider .slide_box {
    overflow: hidden;
  }
  .top_slider .slide_box::before {
    transform: scale(1);
    transform-origin: center center;
    will-change: transform;
    animation-fill-mode: both;
  }
  .top_slider .animation::before {
    animation-name: spZoom;
    animation-duration: 6s;
    animation-timing-function: ease-out;
  }
  @keyframes spZoom {
    0% {
      transform: scale(1);
    }
    100% {
      transform: scale(1.07);
    }
  }
}
.main-section.border:after {
  border: none;
  margin: 0;
  margin-bottom: 20px;
}

.cstm_ttl03 {
  font-weight: 100;
  font-size: 1.2rem;
  margin: 0;
  margin-bottom: 5px;
  color: #777;
}

.home_intro {
  margin: 20px 0;
}
.home_intro p {
  color: #777;
  font-size: 0.9em;
}

.home_contA {
  display: flex;
  justify-content: center;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .home_contA {
    position: relative;
    z-index: 2;
    width: 100vw;
    margin-left: calc(50% - 50vw);
  }
}
.home_contA .lc_boxA {
  width: 50%;
  background-color: #e7ecef;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .home_contA .lc_boxA {
    width: 50%;
  }
}
.home_contA .lc_boxB {
  width: 50%;
  background-color: #efeeea;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .home_contA .lc_boxB {
    width: 50%;
  }
}
.home_contA .lc_img {
  text-align: center;
}
.home_contA .lc_img img {
  width: 80%;
  margin-top: -30px;
}
@media screen and (max-width: 767px) {
  .home_contA .lc_img img {
    width: 100%;
    margin-top: -10%;
  }
}
.home_contA .lc_tx {
  padding: 10px 30px 40px;
  color: #999;
  margin-top: -70px;
}
@media screen and (max-width: 767px) {
  .home_contA .lc_tx {
    padding: 10px 15px 30px;
    margin-top: -50px;
  }
}
.home_contA .lc_name {
  text-align: center;
  font-size: 2.8rem;
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-weight: 100;
  line-height: 0.9;
  margin-bottom: 20px;
  white-space: nowrap;
  margin-right: -20px;
  margin-left: -20px;
}
@media screen and (max-width: 767px) {
  .home_contA .lc_name {
    margin-top: auto;
    font-size: 10vw;
  }
}
.home_contA .lc_ttl {
  text-align: center;
  margin: 0;
  margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
  .home_contA .lc_ttl {
    margin-bottom: 5px;
  }
}
.home_contA .lc_text {
  font-size: 0.8rem;
  text-align: center;
  margin: 0;
}
@media screen and (max-width: 767px) {
  .home_contA .lc_text {
    font-size: 0.7rem;
  }
}
@media screen and (min-width: 299px) {
  .home_contA .lc_text span {
    display: inline-block;
  }
}
.home_contA a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

@media screen and (max-width: 767px) {
  .home_handmade {
    position: relative;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    z-index: 1;
  }
}
.home_handmade .lc_img {
  position: relative;
  overflow: hidden;
  margin-bottom: -10px;
}
.home_handmade .lc_textWrap {
  background-color: #f6f6f4;
  padding: 30px 70px;
}
@media screen and (max-width: 767px) {
  .home_handmade .lc_textWrap {
    padding: 30px 20px;
  }
}
.home_handmade .lc_textWrap h3 {
  font-size: 1rem;
}
.home_handmade .lc_textWrap p {
  margin: 0;
  font-size: 0.8rem;
  color: #777;
  text-align: justify;
  text-justify: inter-ideograph;
}
.home_handmade .lc_textWrap img {
  width: 100%;
}
.home_handmade .lc_img::after {
  content: "WOOL";
  position: absolute;
  bottom: -20px;
  left: -1%;
  width: 120%;
  text-align: left;
  font-family: "Montserrat", sans-serif;
  font-weight: 100;
  letter-spacing: 0.06em;
  line-height: 1;
  white-space: nowrap;
  font-size: clamp(48px, 12vw, 220px);
  color: rgba(255, 255, 255, 0.9);
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .home_handmade .lc_img::after {
    bottom: 0;
  }
}

.home_catelinkimg {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
}
@media screen and (max-width: 767px) {
  .home_catelinkimg {
    position: relative;
    z-index: 2;
    width: 100vw;
    margin-left: calc(50% - 50vw);
  }
}

.home_catelinkimg .lc_card {
  position: relative;
  display: block;
  overflow: hidden;
  color: #fff;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
  aspect-ratio: 3/2;
}
@media screen and (max-width: 767px) {
  .home_catelinkimg .lc_card {
    aspect-ratio: 2/2;
  }
}
.home_catelinkimg .lc_card img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transform-origin: center;
  filter: brightness(0.74);
  transition: transform 0.5s ease, filter 0.3s ease;
  animation: lc_pulseOnce 8s ease-in-out infinite;
}
.home_catelinkimg .lc_card:hover img, .home_catelinkimg .lc_card:focus img {
  filter: brightness(0.95);
  transform: scale(1.05);
  animation-play-state: paused;
}
.home_catelinkimg .lc_card .home_catelinkimg__label {
  position: absolute;
  left: 12px;
  bottom: 10px;
  font-family: "Montserrat", sans-serif;
  font-size: 0.9rem;
  color: #fff;
  opacity: 0.78;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  pointer-events: none;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
@media screen and (max-width: 767px) {
  .home_catelinkimg .lc_card .home_catelinkimg__label {
    font-size: 1.3rem;
    opacity: 0.6;
  }
}

@media (hover: hover) and (pointer: fine) {
  .home_catelinkimg .lc_card:hover .home_catelinkimg__label,
  .home_catelinkimg .lc_card:focus .home_catelinkimg__label {
    opacity: 1;
    transform: scale(1.06);
  }
}
.home_catelinkimg .lc_card:nth-child(1) img {
  animation-delay: 4s;
}
.home_catelinkimg .lc_card:nth-child(2) img {
  animation-delay: 4.2s;
}
.home_catelinkimg .lc_card:nth-child(3) img {
  animation-delay: 4.4s;
}
.home_catelinkimg .lc_card:nth-child(4) img {
  animation-delay: 4.6s;
}

@keyframes lc_pulseOnce {
  0% {
    transform: scale(1);
  }
  7% {
    transform: scale(1.03);
  }
  30% {
    transform: scale(1);
  }
  100% {
    transform: scale(1);
  }
}
@media (prefers-reduced-motion: reduce) {
  .home_catelinkimg .lc_card img {
    animation: none;
  }
}
.home_contB {
  position: relative;
  margin: 40px 0;
}
@media screen and (max-width: 767px) {
  .home_contB .lc_img {
    position: relative;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    z-index: 1;
  }
}
.home_contB .lc_img img {
  display: block;
  height: auto;
}
.home_contB .lc_textWrap {
  position: relative;
  width: 80%;
  max-width: 600px;
  margin: -42px auto 0;
  padding: 30px 50px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 8px;
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.03);
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .home_contB .lc_textWrap {
    width: 90%;
    padding: 30px 30px;
  }
}
.home_contB .lc_textWrap h3 {
  margin: 0 0 8px;
  text-align: center;
  font-size: 1.2rem;
}
.home_contB .lc_textWrap p {
  margin: 0;
  font-size: 0.9rem;
  text-align: justify;
  text-justify: inter-ideograph;
}

.home_halfWrap {
  display: flex;
  justify-content: space-between;
  margin-bottom: 30px;
}
.home_halfWrap.lc_gap {
  gap: 16px;
}
@media screen and (max-width: 767px) {
  .home_halfWrap {
    flex-direction: column;
  }
}
.home_halfWrap .home_halfWrap_cont {
  width: 50%;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .home_halfWrap .home_halfWrap_cont {
    width: 100%;
  }
}

.side {
  width: 250px;
  padding-right: 70px;
  flex-shrink: 0;
}
.side .search {
  background: #eee;
  padding: 16px;
}

.cstm_cateNavi_bnWrap {
  margin-bottom: 20px;
}
.cstm_cateNavi_bnWrap img {
  width: 100%;
}

.side .side-section {
  margin-top: 0;
  margin-bottom: 2em;
}

.cstm_cateNavi {
  --heading-color: #222;
  --text-color: #333;
  --bg: #fff;
  --line-strong: #b3b3b3;
  --line-thin: #e4e7ec;
  background: var(--bg);
  overflow: hidden;
  line-height: 1.6;
  color: var(--text-color);
}
@media screen and (max-width: 1023px) {
  .cstm_cateNavi {
    padding-left: 10px;
    padding-right: 10px;
  }
}
.cstm_cateNavi ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.cstm_cateNavi__group {
  border-top: 1px solid var(--line-strong);
}
.cstm_cateNavi__group > .cstm_cateNavi__heading {
  display: block;
  margin: 0;
  font-size: inherit;
  font-weight: 700;
  color: var(--heading-color);
}
.cstm_cateNavi__group > .cstm_cateNavi__heading > a {
  display: block;
  padding: 12px 5px 10px;
  width: 100%;
  box-sizing: border-box;
  color: inherit;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
}
.cstm_cateNavi__group > .cstm_cateNavi__heading > a:hover, .cstm_cateNavi__group > .cstm_cateNavi__heading > a:focus {
  background: #f6f7f9;
  outline: none;
}
.cstm_cateNavi__group > .cstm_cateNavi__heading > a:focus-visible {
  outline: 2px solid #a9c7ff;
  outline-offset: -2px;
}
.cstm_cateNavi__group > .cstm_cateNavi__heading:hover, .cstm_cateNavi__group > .cstm_cateNavi__heading:focus {
  background: #f6f7f9;
  outline: none;
}
.cstm_cateNavi__group > .cstm_cateNavi__heading:focus-visible {
  outline: 2px solid #a9c7ff;
  outline-offset: -2px;
}
.cstm_cateNavi__item {
  border-top: 1px solid var(--line-thin);
}
.cstm_cateNavi__group:last-child .cstm_cateNavi__item:last-child {
  border-bottom: 1px solid var(--line-thin);
}
.cstm_cateNavi__link {
  display: block;
  width: 100%;
  padding: 10px 5px;
  box-sizing: border-box;
  text-decoration: none;
  color: var(--text-color);
  transition: background-color 0.15s ease, color 0.15s ease;
  -webkit-tap-highlight-color: transparent;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}
@media screen and (max-width: 767px) {
  .cstm_cateNavi__link {
    padding: 8px 8px;
  }
}
.cstm_cateNavi__link:hover, .cstm_cateNavi__link:focus {
  background: #f6f7f9;
  outline: none;
}
.cstm_cateNavi__link:focus-visible {
  outline: 2px solid #a9c7ff;
  outline-offset: -2px;
}
.cstm_cateNavi__link.is-active {
  font-weight: 700;
  position: relative;
}
.cstm_cateNavi__link.is-active::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  background: var(--line-strong);
}
.cstm_cateNavi__item.is-active > .cstm_cateNavi__link {
  font-weight: 700;
  position: relative;
}
.cstm_cateNavi__item.is-active > .cstm_cateNavi__link::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  background: var(--line-strong);
}
.cstm_cateNavi .lc_cateicon {
  display: inline-block;
  inline-size: 3rem;
  block-size: 3rem;
  border-radius: 0.375rem;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  flex-shrink: 0;
}

.cstm_cateNavi__list .lc_shippo-urn .lc_cateicon {
  background-image: url("https://media.docco.co.jp/asset/shop/common/cate_icon_01.png");
}
.cstm_cateNavi__list .lc_okotsu-mamori .lc_cateicon {
  background-image: url("https://media.docco.co.jp/asset/shop/common/cate_icon_02.png");
}

.cstm_cateNavi_sp_bnWrap {
  padding-left: 10px;
  padding-right: 10px;
  margin-bottom: 10px;
}

.cstm_cateNavi_sp_bnWrap .cateNavi_bn_color {
  display: grid;
  place-items: center;
  grid-template-areas: "stack";
  text-decoration: none;
  color: inherit;
  width: 100%;
  min-height: 80px;
  border-radius: 10px;
  overflow: clip;
  background: #ccc;
}
.cstm_cateNavi_sp_bnWrap .cateNavi_bn_color:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.9);
  outline-offset: 3px;
}
.cstm_cateNavi_sp_bnWrap .cateNavi_bn_color .lc_bg {
  grid-area: stack;
  inline-size: 100%;
  block-size: 100%;
  background-image: url("https://media.docco.co.jp/asset/shop/bn/catenav_bn_color.jpg");
  background-size: cover;
  background-position: center center;
  will-change: transform;
  transform: scale(1.01);
  transition: all 0.5s ease;
}
.cstm_cateNavi_sp_bnWrap .cateNavi_bn_color .lc_overlay {
  grid-area: stack;
  inline-size: 100%;
  block-size: 100%;
  background-color: rgba(0, 0, 0, 0.1);
  mix-blend-mode: multiply;
  position: relative;
  pointer-events: none;
  transition: all 0.5s ease;
}
.cstm_cateNavi_sp_bnWrap .cateNavi_bn_color .lc_overlay::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(140, 105, 53, 0.4);
  mix-blend-mode: multiply;
  animation: hero_tint_cycle 14s ease-in-out infinite alternate;
}
.cstm_cateNavi_sp_bnWrap .cateNavi_bn_color .lc_content {
  grid-area: stack;
  color: #fff;
  text-align: left;
  padding: 15px;
  z-index: 2;
  width: 100%;
  overflow: hidden;
}
.cstm_cateNavi_sp_bnWrap .cateNavi_bn_color .lc_title {
  font-weight: 300;
  line-height: 1.2;
  font-size: 1.1rem;
  text-align: center;
}
.cstm_cateNavi_sp_bnWrap .cateNavi_bn_color .lc_title span {
  font-size: 0.8em;
}
.cstm_cateNavi_sp_bnWrap .cateNavi_bn_color .lc_typo {
  font-family: "Montserrat", sans-serif;
  font-weight: 100;
  font-size: 14px;
  letter-spacing: 0.2em;
  line-height: 1;
  margin: 0;
  margin-bottom: 5px;
  text-align: center;
  white-space: nowrap;
}

.cstm_cateNavi_bnWrap .cateNavi_bn_color {
  display: grid;
  place-items: center;
  grid-template-areas: "stack";
  text-decoration: none;
  color: inherit;
  width: 100%;
  min-height: clamp(220px, 45vw, 200px);
  border-radius: 10px;
  overflow: clip;
  background: #ccc;
}
.cstm_cateNavi_bnWrap .cateNavi_bn_color:hover {
  opacity: 1;
}
.cstm_cateNavi_bnWrap .cateNavi_bn_color:hover .lc_bg {
  transform: scale(1.1);
}
.cstm_cateNavi_bnWrap .cateNavi_bn_color:hover .lc_overlay {
  background-color: rgba(0, 0, 0, 0.35);
}
.cstm_cateNavi_bnWrap .cateNavi_bn_color:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.9);
  outline-offset: 3px;
}
.cstm_cateNavi_bnWrap .cateNavi_bn_color .lc_bg {
  grid-area: stack;
  inline-size: 100%;
  block-size: 100%;
  background-image: url("https://media.docco.co.jp/asset/shop/bn/catenav_bn_color.jpg");
  background-size: cover;
  background-position: center center;
  will-change: transform;
  transform: scale(1.01);
  transition: all 0.5s ease;
}
.cstm_cateNavi_bnWrap .cateNavi_bn_color .lc_overlay {
  grid-area: stack;
  inline-size: 100%;
  block-size: 100%;
  background-color: rgba(0, 0, 0, 0.1);
  mix-blend-mode: multiply;
  position: relative;
  pointer-events: none;
  transition: all 0.5s ease;
}
.cstm_cateNavi_bnWrap .cateNavi_bn_color .lc_overlay::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(140, 105, 53, 0.4);
  mix-blend-mode: multiply;
}
@media screen and (min-width: 299px) {
  .cstm_cateNavi_bnWrap .cateNavi_bn_color p span {
    display: inline-block;
  }
}
.cstm_cateNavi_bnWrap .cateNavi_bn_color .lc_content {
  grid-area: stack;
  color: #fff;
  text-align: left;
  padding: 20px;
  z-index: 2;
  width: 100%;
  overflow: hidden;
}
.cstm_cateNavi_bnWrap .cateNavi_bn_color .lc_title {
  font-weight: 200;
  line-height: 1.4;
  font-size: clamp(1.3rem, 1.2rem + 1.2vw, 1.1rem);
  margin: 0 0 0.5rem;
  text-align: center;
}
.cstm_cateNavi_bnWrap .cateNavi_bn_color .lc_typo {
  font-family: "Montserrat", sans-serif;
  font-weight: 100;
  font-size: 80px;
  line-height: 1;
  margin: 0;
  margin-bottom: 10px;
  text-align: center;
  white-space: nowrap;
  display: block;
  width: 120%; /* 見切り量：120% → 各辺10% */
  position: relative;
  left: 50%;
  transform: translateX(-50%); /* 幅が変わっても中央に保つ */
  opacity: 0.3;
}

@keyframes hero_tint_cycle {
  0% {
    background-color: rgba(164, 86, 15, 0.45);
  }
  30% {
    background-color: rgba(230, 188, 79, 0.35);
  }
  60% {
    background-color: rgba(100, 80, 79, 0.45);
  }
  100% {
    background-color: rgba(242, 228, 200, 0.25);
  }
}
.cstm_cateNavi_sp_bnWrap .cateNavi_bn_size {
  display: grid;
  place-items: center;
  grid-template-areas: "stack";
  text-decoration: none;
  color: inherit;
  width: 100%;
  min-height: 80px;
  border-radius: 10px;
  overflow: clip;
  background: #ccc;
  margin-bottom: 20px;
}
.cstm_cateNavi_sp_bnWrap .cateNavi_bn_size:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.9);
  outline-offset: 3px;
}
.cstm_cateNavi_sp_bnWrap .cateNavi_bn_size .lc_bg {
  grid-area: stack;
  inline-size: 100%;
  block-size: 100%;
  background-image: url("https://media.docco.co.jp/asset/shop/bn/catenav_bn_size.jpg");
  background-size: cover;
  background-position: center center;
  will-change: transform;
  transform: scale(1.01);
  transition: all 0.5s ease;
  filter: blur(2px);
}
.cstm_cateNavi_sp_bnWrap .cateNavi_bn_size .lc_overlay {
  grid-area: stack;
  inline-size: 100%;
  block-size: 100%;
  background-color: rgba(100, 100, 100, 0.8);
  mix-blend-mode: multiply;
  position: relative;
  pointer-events: none;
  transition: all 0.5s ease;
}
.cstm_cateNavi_sp_bnWrap .cateNavi_bn_size .lc_overlay::after {
  content: "";
  position: absolute;
  inset: 0;
  mix-blend-mode: overlay;
}
.cstm_cateNavi_sp_bnWrap .cateNavi_bn_size .lc_content {
  grid-area: stack;
  color: #fff;
  text-align: left;
  padding: 15px;
  z-index: 2;
  width: 100%;
  overflow: hidden;
}
.cstm_cateNavi_sp_bnWrap .cateNavi_bn_size .lc_title {
  font-weight: 200;
  line-height: 1.2;
  font-size: 1.1rem;
  text-align: center;
}
.cstm_cateNavi_sp_bnWrap .cateNavi_bn_size .lc_title span {
  font-size: 0.8em;
}
.cstm_cateNavi_sp_bnWrap .cateNavi_bn_size .lc_typo {
  font-family: "Montserrat", sans-serif;
  font-weight: 100;
  font-size: 14px;
  letter-spacing: 0.2em;
  line-height: 1;
  margin: 0;
  margin-bottom: 5px;
  text-align: center;
  white-space: nowrap;
}

.cateNavi_inori a {
  display: block;
  max-width: 100%;
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 10px 20px;
  text-align: center;
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.cateNavi_inori a:hover {
  border: 1px solid #aaa;
  transform: translate(0px, -3px);
}
.cateNavi_inori img {
  width: 100%;
  max-width: 120px;
}
@media screen and (max-width: 767px) {
  .cateNavi_inori {
    padding: 5px 10px;
  }
  .cateNavi_inori img {
    max-width: 100px;
  }
}

@media screen and (min-width: 767px) {
  .add-cart .add-cart-btn {
    width: 300px;
  }
}

.breadcrumb_wrap {
  margin-top: 30px;
}

.breadcrumb {
  margin-bottom: 5px;
  padding-top: 0;
}
@media screen and (max-width: 767px) {
  .breadcrumb {
    font-size: 0.7em;
  }
}

.favorite {
  display: none;
}

.item-desc-block {
  margin: 40px auto;
}

.item-desc-block .item-contact {
  text-align: center;
  margin-bottom: 16px;
}

.item-desc-block .item-description {
  margin-top: 24px;
}
.item-desc-block .item-description dt {
  display: none;
}

.item-desc-block .item-info-list {
  margin-top: 24px;
}

.item-desc-block .item-share {
  display: flex;
  gap: 12px;
  justify-content: center;
  padding-top: 16px;
}

.item-info-list {
  display: none;
}

@media screen and (min-width: 767px) {
  .detail {
    width: 100%;
  }
  .detail .item-flex {
    display: flex;
    flex-wrap: nowrap;
    align-items: flex-start;
    gap: 40px;
  }
  .detail .item-flex .item-image {
    float: none;
    flex: 0 1 50%;
  }
  .detail .item-flex .item-detail {
    float: none;
    flex: 1 1 50%;
    max-width: 380px;
    min-width: 350px;
    padding-left: 0;
    padding-right: 20px;
  }
  .detail .main-image {
    width: 100% !important;
  }
  .detail .main-image img {
    width: 100% !important;
    height: auto;
  }
}
.detail .item-image > .choice-btn {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  list-style: none;
  padding: 0;
  margin: 6px 0 40px;
}

.detail .item-image > .choice-btn.slick-initialized {
  display: grid !important;
}

.detail .item-image > .choice-btn .slick-list,
.detail .item-image > .choice-btn .slick-track {
  display: contents !important;
  width: auto !important;
}

.detail .item-image > .choice-btn .slick-slide {
  float: none !important;
  width: auto !important;
}

.detail .item-image > .choice-btn li {
  width: auto !important;
  aspect-ratio: 1/1;
  overflow: hidden;
  background: none;
}

.detail .item-image > .choice-btn li img {
  width: 100% !important;
  height: 100% !important;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  opacity: 0.4;
  transition: opacity 0.2s ease;
}

@media screen and (min-width: 1024px) {
  .detail .item-image > .choice-btn li {
    background: #fff;
  }
  .detail .item-image > .choice-btn li img {
    -o-object-fit: contain;
       object-fit: contain;
  }
}
.detail .item-image > .choice-btn li.is-current img,
.detail .item-image > .choice-btn li:hover img {
  opacity: 1;
}

.makeshop-option-select {
  font-size: 16px;
}

.nameprint-text input {
  font-size: 20px;
  padding: 10px 20px;
}

.item-description {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}
.item-description img {
  max-width: 100%;
}

.item-description2 {
  margin-top: 2em;
  margin-bottom: 2em;
  max-width: 600px;
  margin-right: auto;
  margin-left: auto;
  text-align: justify;
  text-justify: inter-ideograph;
  color: #777;
  font-size: 0.9em;
}
@media screen and (max-width: 767px) {
  .item-description2 {
    font-size: 0.8em;
  }
}

@media screen and (max-width: 1023px) {
  .item-desc-block .item-description {
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    width: 100vw;
    max-width: none;
  }
}
.item-description .lc_m1 {
  margin-bottom: 2em;
}
.item-description .lc_m2 {
  margin-bottom: 4em;
}
.item-description .lc_omamori_text {
  max-width: 550px;
  padding-left: 20px;
  padding-right: 20px;
  margin-right: auto;
  margin-left: auto;
  margin-top: 2em;
  margin-bottom: 2em;
  color: #555;
}
.item-description .lc_omamori_text h3 {
  font-size: 1.2em;
  text-align: center;
  margin-bottom: 20px;
}
.item-description .lc_omamori_text p {
  font-size: 0.9em;
  text-align: justify;
  text-justify: inter-ideograph;
}

.cstm_item_cm_gallery {
  width: 100%;
}
.cstm_item_cm_gallery img {
  width: 100%;
}
.cstm_item_cm_gallery .lc_ttl {
  display: flex;
  align-items: center;
  gap: 2em;
  margin: 3em 0px;
  text-align: center;
  margin-bottom: 30px;
  color: #999;
}
.cstm_item_cm_gallery .lc_ttl::before,
.cstm_item_cm_gallery .lc_ttl::after {
  content: "";
  flex: 1 1 auto;
  height: 1px;
  background: #e4e7ec;
}

.item-list li {
  margin-bottom: 10px;
}

.item-list-cart {
  display: none;
}

.item-list .item-icon {
  top: auto;
  bottom: 0px;
  right: 0;
}
.item-list .item-icon .item-soldout {
  background-color: #e8888a;
}

@media screen and (max-width: 767px) {
  .pager-wrap {
    display: block;
  }
}

.total-count {
  white-space: nowrap;
  margin-bottom: 10px;
}

.pager-wrap {
  margin-bottom: 3em;
}

.pager {
  flex-wrap: wrap;
  gap: 10px;
}
.pager li {
  margin: 0;
}
.pager li a {
  opacity: 1;
}
.pager li span {
  display: block;
  background-color: #e1e1e1;
  padding: 5px 15px;
  white-space: nowrap;
  transition: all 0.2s cubic-bezier(0.39, 0.575, 0.565, 1);
}
.pager li span:hover {
  background-color: #777;
  color: #fff;
}
.pager li span.current {
  background-color: #f6f6f6;
}

.category-child-item {
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  row-gap: 10px;
  -moz-column-gap: 10px;
       column-gap: 10px;
}
@media screen and (max-width: 767px) {
  .category-child-item {
    justify-content: space-between;
  }
}
.category-child-item li {
  background-color: #f1f1f1;
  border-radius: 5px;
  margin: 0;
}
@media screen and (max-width: 767px) {
  .category-child-item li {
    box-sizing: border-box;
    display: block;
    margin: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
.category-child-item li a {
  box-sizing: border-box;
  display: block;
  width: 100%;
  height: 100%;
  padding: 5px 15px;
  transition: all 0.5s cubic-bezier(0.39, 0.575, 0.565, 1);
}
@media screen and (max-width: 767px) {
  .category-child-item li a {
    padding: 5px 10px;
  }
}
.category-child-item li a:hover {
  background-color: #ddd;
}

.cstm_category_desc_photo {
  position: relative;
}
@media screen and (max-width: 1023px) {
  .cstm_category_desc_photo {
    position: relative;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    z-index: 1;
  }
}
.cstm_category_desc_photo .lc_img img {
  display: block;
  width: 100%;
  height: auto;
}

.cstm_category_desc_photo .lc_english {
  position: absolute;
  left: 0;
  right: 0; /* 横幅いっぱい */
  bottom: 0; /* 下揃え */
  color: #fff;
  margin: 0; /* 念のため */
  /* 読みやすさ向上のための下部グラデーション（任意） */
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.2) 100%);
}
.cstm_category_desc_photo .lc_english p {
  margin: 0;
  line-height: 1;
  padding-top: 50px;
  padding-left: 12px;
  margin-bottom: -5px;
  font-family: "Montserrat", sans-serif;
  font-weight: 100;
  font-size: 2rem;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .cstm_category_desc_photo .lc_english p {
    font-size: 1.5rem;
  }
}

.cstm_category_desc {
  margin-top: 2em;
  margin-bottom: 3em;
}
.cstm_category_desc .lc_title h2 {
  margin: 0;
  margin-bottom: 10px;
  font-size: 1.6rem;
  font-weight: 200;
  color: #555;
}
@media screen and (max-width: 767px) {
  .cstm_category_desc .lc_title h2 {
    font-size: 1.2rem;
  }
}
.cstm_category_desc .lc_cate_exlist {
  margin-top: 2em;
}
.cstm_category_desc .lc_cate_exlist ul {
  list-style: none;
  margin: 0.2rem 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.2rem 0.6rem;
  font-size: 0.8rem;
  line-height: 1.4;
  color: #888;
}
.cstm_category_desc .lc_cate_exlist ul li {
  display: inline;
}
.cstm_category_desc .lc_cate_exlist ul li::before {
  content: "｜"; /* ← 区切りはCSSで表示、HTMLは種名のみ */
  margin: 0 0.25rem 0 0;
  color: #888;
}
@media (max-width: 560px) {
  .cstm_category_desc .lc_cate_exlist .list-flat {
    font-size: 0.86rem;
  }
}

.cstm_category_searchLink {
  margin-bottom: 2em;
  display: flex;
  gap: 10px;
}
@media screen and (max-width: 767px) {
  .cstm_category_searchLink {
    justify-content: space-between;
  }
}
.cstm_category_searchLink form {
  display: block;
}
@media screen and (max-width: 767px) {
  .cstm_category_searchLink form {
    width: 50%;
  }
}
.cstm_category_searchLink form a {
  display: inline-block;
  box-sizing: border-box;
  border: 1px solid #ccc;
  border-radius: 5px;
  padding: 10px 30px;
  font-size: 1rem;
  text-align: center;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}
@media screen and (max-width: 767px) {
  .cstm_category_searchLink form a {
    width: 100%;
    padding: 10px 20px;
    font-size: 0.8em;
  }
}
.cstm_category_searchLink form a:hover {
  border: 1px solid #888;
}
.cstm_category_searchLink form.lc_body_w a::before,
.cstm_category_searchLink form.lc_body_g a::before {
  content: "●";
  display: inline-block;
  font-size: 1em;
  line-height: 1;
  margin-right: 0.4em;
  color: currentColor;
}
.cstm_category_searchLink form.lc_body_w a::before {
  color: #eee;
}
.cstm_category_searchLink form.lc_body_g a::before {
  color: #999;
}

.cstm_miniFAQ {
  border-top: 1px dotted #ddd;
  padding-top: 0.8em;
  margin-top: 1.2em;
}

.cstm_miniFAQ h3 {
  font-size: 1.05rem;
  margin: 0.8em 0 0.4em;
}

.cstm_miniFAQ .qa {
  margin: 0.8em 0;
}

.cstm_miniFAQ .qa h4 {
  font-size: 0.98rem;
  margin: 0 0 0.25em;
  font-weight: 500;
}

.cstm_miniFAQ .qa p {
  margin: 0.2em 0;
  font-weight: 200;
}

.cstm_cateNavi_footer {
  margin-top: 3em;
  border-top: 1px solid #eee;
}
.cstm_cateNavi_footer .cstm_footer_link_ttl {
  margin-top: 10px;
  margin-bottom: 30px;
  text-align: center;
}
.cstm_cateNavi_footer ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 6px 12px;
  list-style: none;
  padding: 0;
  margin: 0;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .cstm_cateNavi_footer ul {
    justify-content: center;
  }
}
.cstm_cateNavi_footer li {
  flex: 0 1 auto;
  margin-bottom: 5px;
}
@media screen and (max-width: 767px) {
  .cstm_cateNavi_footer .lc_ttl {
    width: 100%;
    text-align: center;
  }
}
.cstm_cateNavi_footer li a {
  padding: 10px 30px;
  border: 1px solid #efefef;
  border-radius: 999px;
}
.cstm_cateNavi_footer li h2 {
  padding: 10px 30px;
  margin: 0;
  font-size: 1em;
  font-weight: 200;
}

.orgPage_urn_guide {
  width: 100%;
  margin: 0 auto;
  /* section line */
  /* lead */
  /* ---- TOC ---- */
  /* ---- notes 注意書き ---- */
  /* ---- FAQ ---- */
  /* ---- glossary ---- */
}
.orgPage_urn_guide h1,
.orgPage_urn_guide h2,
.orgPage_urn_guide h3 {
  line-height: 1.35;
  margin: 0 0 0.75rem;
}
.orgPage_urn_guide h1 {
  font-size: clamp(1.4rem, 1.2rem + 1.2vw, 1.6rem);
}
.orgPage_urn_guide h2 {
  font-size: clamp(1.25rem, 1.05rem + 0.8vw, 1.4rem);
  margin-top: 2rem;
}
.orgPage_urn_guide h3 {
  font-size: clamp(1.05rem, 0.95rem + 0.5vw, 1.25rem);
  margin-top: 1.25rem;
}
.orgPage_urn_guide p {
  margin: 0 0 1rem;
}
.orgPage_urn_guide ul,
.orgPage_urn_guide ol {
  margin: 0 0 1rem 1.2rem;
  padding: 0;
}
.orgPage_urn_guide li {
  margin: 0.2rem 0;
}
.orgPage_urn_guide .urn_section {
  padding-block: 1rem;
  border-top: 1px solid #e5e7eb;
}
.orgPage_urn_guide .urn_section:first-of-type {
  border-top: 0;
}
.orgPage_urn_guide .urn_lead {
  color: #6b7280;
  max-width: 70ch;
}
.orgPage_urn_guide .urn_toc {
  border: 1px solid #e5e7eb;
  border-radius: 0.5rem;
  padding: 0.75rem 0.75rem 0.5rem;
  margin: 1.25rem 0 1.5rem;
}
.orgPage_urn_guide .urn_toc ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.orgPage_urn_guide .urn_toc li {
  margin: 0.25rem 0;
  -moz-column-break-inside: avoid;
       break-inside: avoid;
}
.orgPage_urn_guide .urn_toc a {
  color: #0ea5e9;
  text-decoration: none;
  border-bottom: 1px dotted rgba(14, 165, 233, 0.5);
}
.orgPage_urn_guide .urn_toc a:hover {
  border-bottom-color: #0ea5e9;
}
@media screen and (max-width: 1023px) {
  .orgPage_urn_guide .urn_toc {
    -moz-columns: 2;
         columns: 2;
  }
}
@media screen and (max-width: 767px) {
  .orgPage_urn_guide .urn_toc {
    -moz-columns: 1;
         columns: 1;
  }
}
.orgPage_urn_guide .urn_summary {
  box-sizing: border-box;
}
.orgPage_urn_guide .urn_summary .urn_size_cards {
  list-style: none;
  margin: 0.75rem 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}
.orgPage_urn_guide .urn_summary .urn_size_card {
  flex: 1 1 calc(50% - 0.6rem);
  min-width: 12rem;
  border: 1px solid #e5e7eb;
  border-radius: 0.6rem;
  background: #fff;
  overflow: clip;
  box-sizing: border-box;
}
.orgPage_urn_guide .urn_summary .urn_size_link {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  padding: 0.95rem 0.9rem;
  text-decoration: none;
  transition: background 0.2s ease, border-color 0.2s ease;
}
.orgPage_urn_guide .urn_summary .urn_size_link:hover {
  background: #f8fafc;
  border-color: rgb(205.9391304348, 209.7130434783, 217.2608695652);
}
.orgPage_urn_guide .urn_summary .urn_size_link:focus-visible {
  outline: 2px solid #0ea5e9;
  outline-offset: 2px;
  border-radius: 0.6rem;
}
.orgPage_urn_guide .urn_summary .urn_size_label {
  font-weight: 800;
  font-size: 1.08rem;
  color: #1a1a1a;
  line-height: 1.25;
}
.orgPage_urn_guide .urn_summary .urn_size_cc {
  color: #6b7280;
  font-size: 0.95rem;
  margin-top: 0.1rem;
}
.orgPage_urn_guide .urn_summary .urn_size_desc {
  margin-top: 0.35rem;
  font-size: 0.9rem;
  color: #6b7280;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .orgPage_urn_guide .urn_summary .urn_size_card {
    flex: 1 1 100%;
    min-width: 0;
  }
  .orgPage_urn_guide .urn_summary .urn_size_link {
    padding: 1rem 0.95rem;
    align-items: flex-start;
  }
  .orgPage_urn_guide .urn_summary .urn_size_desc {
    text-align: left;
  }
}
.orgPage_urn_guide .note {
  border-radius: 0.5rem;
  padding: 0.6rem 0.8rem;
  color: #6b7280;
  margin-top: 0.5rem;
  background-color: #eaf5f9;
}
.orgPage_urn_guide .urn_table_wrap {
  width: 100%;
  max-width: 100%;
  position: relative;
}
@media screen and (max-width: 767px) {
  .orgPage_urn_guide .urn_table_wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
    touch-action: pan-x;
  }
  .orgPage_urn_guide .urn_table_wrap .urn_table tbody td,
  .orgPage_urn_guide .urn_table_wrap .urn_table tbody th[scope=row] {
    padding: 0.8rem 0.9rem;
  }
  .orgPage_urn_guide .urn_table_wrap .urn_table .urn_mark {
    width: 1.8rem;
    height: 1.8rem;
  }
}
.orgPage_urn_guide .urn_table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin: 1rem 0;
  background: #fff;
  border: 1px solid #e5e7eb;
  overflow: hidden;
}
.orgPage_urn_guide .urn_table caption {
  text-align: left;
  font-weight: 800;
  color: #1a1a1a;
  padding: 0.6rem 0.75rem 0.5rem;
}
.orgPage_urn_guide .urn_table thead {
  background: #e6e8ea;
}
.orgPage_urn_guide .urn_table thead th {
  white-space: nowrap;
  text-align: left;
  color: #1a1a1a;
  padding: 0.75rem 0.9rem;
  border-bottom: 1px solid #e5e7eb;
  font-size: 0.95rem;
}
.orgPage_urn_guide .urn_table thead th a {
  color: #1a1a1a;
  text-decoration: none;
  border-bottom: 1px dotted rgba(26, 26, 26, 0.35);
}
.orgPage_urn_guide .urn_table thead th a:hover {
  border-bottom-color: #1a1a1a;
}
.orgPage_urn_guide .urn_table thead th a:focus-visible {
  outline: 2px solid #8baebd;
  outline-offset: 2px;
  border-radius: 0.25rem;
}
.orgPage_urn_guide .urn_table tbody tr {
  box-sizing: border-box;
}
.orgPage_urn_guide .urn_table tbody th[scope=row],
.orgPage_urn_guide .urn_table tbody td {
  padding: 0.7rem 0.9rem;
  vertical-align: top;
  border-bottom: 1px solid #e5e7eb;
  color: #1a1a1a;
  box-sizing: border-box;
}
.orgPage_urn_guide .urn_table tbody th[scope=row] {
  white-space: nowrap;
  width: 20ch;
  text-align: left;
  font-weight: normal;
}
.orgPage_urn_guide .urn_table tbody tr:last-child th[scope=row],
.orgPage_urn_guide .urn_table tbody tr:last-child td {
  border-bottom: 0;
}
.orgPage_urn_guide .urn_table tbody tr:nth-child(2n) th[scope=row],
.orgPage_urn_guide .urn_table tbody tr:nth-child(2n) td {
  background: #f5f6f8;
}
.orgPage_urn_guide .urn_table .urn_mark {
  font-size: 0;
  line-height: 0;
  color: transparent;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.4rem;
  height: 1.4rem;
  border-radius: 50%;
  background: #8baebd;
  text-decoration: none;
}
.orgPage_urn_guide .urn_table .urn_mark:hover {
  background: rgb(116.2461538462, 158.1115384615, 176.0538461538);
}
.orgPage_urn_guide .urn_table .urn_mark:focus-visible {
  outline: 2px solid #8baebd;
  outline-offset: 2px;
  box-shadow: 0 0 0 3px rgba(139, 174, 189, 0.25);
  border-radius: 50%;
}
.orgPage_urn_guide .urn_table .sr_only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 1px, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}
@media screen and (max-width: 767px) {
  .orgPage_urn_guide .urn_table {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    min-width: 720px;
  }
  .orgPage_urn_guide .urn_table thead {
    display: table-header-group;
  }
  .orgPage_urn_guide .urn_table tbody td,
  .orgPage_urn_guide .urn_table tbody th[scope=row] {
    padding: 0.8rem 0.9rem;
    white-space: nowrap;
  }
  .orgPage_urn_guide .urn_table .urn_mark {
    width: 1.8rem;
    height: 1.8rem;
  }
}
.orgPage_urn_guide .faq_item {
  border: 1px solid #e5e7eb;
  border-radius: 0.5rem;
  margin: 0.5rem 0;
  padding: 0.25rem 0.5rem;
  background: #fff;
}
.orgPage_urn_guide .faq_item summary {
  cursor: pointer;
  padding: 0.6rem 0.25rem;
  font-weight: 700;
  list-style: none;
}
.orgPage_urn_guide .faq_item summary::-webkit-details-marker {
  display: none;
}
.orgPage_urn_guide .faq_item .faq_a {
  color: #6b7280;
  padding: 0 0.25rem 0.6rem;
}
.orgPage_urn_guide .urn_glossary {
  margin-left: 0;
}
.orgPage_urn_guide .urn_glossary dt {
  font-weight: 800;
}
.orgPage_urn_guide .urn_glossary dd {
  color: #6b7280;
  margin: 0.2rem 0 0.8rem;
}

.freep_lead {
  color: #777;
  text-align: justify;
  text-justify: inter-ideograph;
}

.freep_read_img img {
  width: 100%;
}

body.scroll_active {
  background-color: #f3f4f5;
}

.freep_color_chips {
  margin: 24px 0 32px;
}
@media screen and (max-width: 767px) {
  .freep_color_chips {
    margin: 20px 0 24px;
  }
}
.freep_color_chips .chips_title {
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0 0 12px;
}
@media screen and (max-width: 767px) {
  .freep_color_chips .chips_title {
    font-size: 1rem;
    margin-bottom: 10px;
  }
}
.freep_color_chips .chips_grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
@media screen and (max-width: 767px) {
  .freep_color_chips .chips_grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
}
.freep_color_chips .chip {
  display: block;
  text-decoration: none;
  border: 1px solid #eee;
  border-radius: 12px;
  padding: 12px 12px 10px;
  background: #fff;
  transition: transform 0.12s ease, box-shadow 0.12s ease;
}
.freep_color_chips .chip:hover, .freep_color_chips .chip:focus {
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.06);
  outline: none;
}
@media screen and (max-width: 767px) {
  .freep_color_chips .chip {
    padding: 10px;
    border-radius: 10px;
  }
}
.freep_color_chips .chip_fig {
  width: 100%;
  margin: 0 0 8px;
  display: grid;
  place-items: center;
}
@media screen and (max-width: 767px) {
  .freep_color_chips .chip_fig {
    margin-bottom: 6px;
  }
}
.freep_color_chips .chip_fig img {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
@media screen and (max-width: 767px) {
  .freep_color_chips .chip_fig img {
    width: 88px;
    height: 88px;
  }
}
.freep_color_chips .chip_caption {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1.35;
  text-align: center;
}
.freep_color_chips .chip_series {
  font-size: 0.78rem;
  color: #777;
  margin-bottom: 2px;
}
@media screen and (max-width: 767px) {
  .freep_color_chips .chip_series {
    font-size: 0.76rem;
    margin-bottom: 1px;
  }
}
.freep_color_chips .chip_name {
  font-size: 0.98rem;
  font-weight: 600;
  color: #222;
}
@media screen and (max-width: 767px) {
  .freep_color_chips .chip_name {
    font-size: 0.94rem;
  }
}

.freep_color_detail_wrap h2 {
  margin-top: 3em;
  text-align: center;
}

.freep_color_detail_item {
  max-width: 760px;
  margin-right: auto;
  margin-left: auto;
  display: grid;
  grid-template-columns: 200px 1fr;
  grid-template-areas: "header header" "image  body";
  -moz-column-gap: 24px;
       column-gap: 24px;
  row-gap: 16px;
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  margin-bottom: 2em;
}
@media screen and (max-width: 767px) {
  .freep_color_detail_item {
    grid-template-columns: 1fr;
    grid-template-areas: "header" "image" "body";
    row-gap: 14px;
    padding: 16px;
    box-shadow: none;
  }
}
.freep_color_detail_item .lc_header {
  grid-area: header;
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
}
@media screen and (max-width: 767px) {
  .freep_color_detail_item .lc_header {
    display: block;
  }
}
.freep_color_detail_item .lc_header .lc_series {
  margin: 0 0 2px;
  font-size: clamp(12px, 1vw + 12px, 18px);
  line-height: 1.35;
  font-weight: 600;
  letter-spacing: 0.02em;
  opacity: 0.95;
  color: #999;
  margin-right: 10px;
}
@media screen and (max-width: 767px) {
  .freep_color_detail_item .lc_header .lc_series {
    margin-right: 0;
    font-size: 16px;
  }
}
.freep_color_detail_item .lc_header .lc_variant {
  margin: 0;
  font-weight: 300;
  line-height: 1.3;
  font-size: clamp(18px, 1.2vw + 14px, 28px);
  letter-spacing: 0.01em;
}
@media screen and (max-width: 767px) {
  .freep_color_detail_item .lc_header .lc_variant {
    font-size: 20px;
  }
}
.freep_color_detail_item .lc_image {
  grid-area: image;
  position: relative;
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: 16px;
  overflow: hidden;
  background: #f6f6f6;
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  .freep_color_detail_item .lc_image {
    width: 60%;
    max-width: 300px;
    margin-right: auto;
    margin-left: auto;
    margin-top: 0;
  }
}
.freep_color_detail_item .lc_image.is_circle {
  border-radius: 50%;
}
.freep_color_detail_item .lc_image img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}
.freep_color_detail_item .lc_body {
  grid-area: body;
  display: grid;
  gap: 5px;
}
.freep_color_detail_item .lc_body .lc_english {
  font-size: 14px;
  opacity: 0.7;
}
.freep_color_detail_item .lc_body .lc_definition {
  font-size: 15px;
  line-height: 1.9;
}
@media screen and (max-width: 767px) {
  .freep_color_detail_item .lc_body .lc_definition {
    font-size: 14px;
  }
}
.freep_color_detail_item .lc_body .lc_sectionTitle {
  margin: 5px 0 0px;
  font-weight: 700;
  font-size: 15px;
  line-height: 1.5;
  letter-spacing: 0.01em;
}
@media screen and (max-width: 767px) {
  .freep_color_detail_item .lc_body .lc_sectionTitle {
    font-size: 14px;
  }
}
.freep_color_detail_item .lc_body .lc_related,
.freep_color_detail_item .lc_body .lc_usage,
.freep_color_detail_item .lc_body .lc_popularBreeds {
  font-size: 14px;
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  .freep_color_detail_item .lc_body .lc_related,
  .freep_color_detail_item .lc_body .lc_usage,
  .freep_color_detail_item .lc_body .lc_popularBreeds {
    font-size: 13px;
  }
}
.freep_color_detail_item .lc_body .lc_popularList--slash {
  margin: 0;
  margin-top: 10px;
  font-size: 14px;
  line-height: 1.9;
  background: #f8f9fa;
  border: 1px solid #edf0f2;
  border-radius: 8px;
  padding: 10px 12px;
}
@media screen and (max-width: 767px) {
  .freep_color_detail_item .lc_body .lc_popularList--slash {
    font-size: 13px;
    line-height: 1.8;
    padding: 8px 10px;
  }
}
.freep_color_detail_item .lc_body .lc_links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.freep_color_detail_item .lc_body .lc_links .lc_link {
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  text-decoration: none;
  border: 1px solid #ddd;
  font-size: 13px;
  white-space: nowrap;
}
.freep_color_detail_item .lc_body .lc_links .lc_link:hover {
  border-color: #999;
}
.freep_color_detail_item .lc_body .lc_links .lc_link--near {
  position: relative;
  display: inline-block;
  margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
  .freep_color_detail_item .lc_body .lc_links {
    gap: 8px;
  }
  .freep_color_detail_item .lc_body .lc_links .lc_link {
    font-size: 13px;
    padding: 6px 10px;
  }
  .freep_color_detail_item .lc_body .lc_links .lc_search_link {
    font-size: 14px;
  }
}
.freep_color_detail_item .lc_body .lc_search_link {
  display: block;
  width: 100%;
}
.freep_color_detail_item .lc_body .lc_search_link a {
  display: block;
  box-sizing: border-box;
  border: 1px solid #ddd;
  border-radius: 12px;
  padding: 15px 20px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .freep_color_detail_item .lc_body .lc_search_link a {
    font-size: 0.8em;
  }
}

.freep_color_notice {
  margin-top: 20px;
  padding: 12px 14px;
  background: #f8f9fa;
  border: 1px solid #edf0f2;
  border-radius: 8px;
  font-size: 13px;
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  .freep_color_notice {
    font-size: 12px;
  }
}

.testbody {
  width: 100%;
  max-width: 100%;
}
.testbody .cstm_com {
  width: 100%;
  max-width: 100%;
}

.test .chips_grid {
  display: grid;
  grid-template-columns: repeat(9, 1fr);
  gap: 18px;
}
@media screen and (max-width: 767px) {
  .test .chips_grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
}

.cstm_cateNavi_bnWrap .cateNavi_bn_color {
  display: grid;
  place-items: center;
  grid-template-areas: "stack";
  text-decoration: none;
  color: inherit;
  width: 100%;
  min-height: clamp(220px, 45vw, 200px);
  border-radius: 10px;
  overflow: clip;
  background: #ccc;
}
.cstm_cateNavi_bnWrap .cateNavi_bn_color:hover {
  opacity: 1;
}
.cstm_cateNavi_bnWrap .cateNavi_bn_color:hover .lc_bg {
  transform: scale(1.1);
}
.cstm_cateNavi_bnWrap .cateNavi_bn_color:hover .lc_overlay {
  background-color: rgba(0, 0, 0, 0.35);
}
.cstm_cateNavi_bnWrap .cateNavi_bn_color:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.9);
  outline-offset: 3px;
}
.cstm_cateNavi_bnWrap .cateNavi_bn_color .lc_bg {
  grid-area: stack;
  inline-size: 100%;
  block-size: 100%;
  background-image: url("https://media.docco.co.jp/asset/shop/bn/catenav_bn_color.jpg");
  background-size: cover;
  background-position: center center;
  will-change: transform;
  transform: scale(1.01);
  transition: all 0.5s ease;
}
.cstm_cateNavi_bnWrap .cateNavi_bn_color .lc_overlay {
  grid-area: stack;
  inline-size: 100%;
  block-size: 100%;
  background-color: rgba(0, 0, 0, 0.1);
  mix-blend-mode: multiply;
  position: relative;
  pointer-events: none;
  transition: all 0.5s ease;
}
.cstm_cateNavi_bnWrap .cateNavi_bn_color .lc_overlay::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(140, 105, 53, 0.4);
  mix-blend-mode: multiply;
}
@media screen and (min-width: 299px) {
  .cstm_cateNavi_bnWrap .cateNavi_bn_color p span {
    display: inline-block;
  }
}
.cstm_cateNavi_bnWrap .cateNavi_bn_color .lc_content {
  grid-area: stack;
  color: #fff;
  text-align: left;
  padding: 20px;
  z-index: 2;
  width: 100%;
  overflow: hidden;
}
.cstm_cateNavi_bnWrap .cateNavi_bn_color .lc_title {
  font-weight: 200;
  line-height: 1.4;
  font-size: clamp(1.3rem, 1.2rem + 1.2vw, 1.1rem);
  margin: 0 0 0.5rem;
  text-align: center;
}
.cstm_cateNavi_bnWrap .cateNavi_bn_color .lc_typo {
  font-family: "Montserrat", sans-serif;
  font-weight: 100;
  font-size: 80px;
  line-height: 1;
  margin: 0;
  margin-bottom: 10px;
  text-align: center;
  white-space: nowrap;
  display: block;
  width: 120%; /* 見切り量：120% → 各辺10% */
  position: relative;
  left: 50%;
  transform: translateX(-50%); /* 幅が変わっても中央に保つ */
  opacity: 0.3;
}

.cstm_cateNavi_sp_bnWrap {
  padding-left: 10px;
  padding-right: 10px;
  margin-bottom: 10px;
}

.cstm_cateNavi_sp_bnWrap .cateNavi_bn_color {
  display: grid;
  place-items: center;
  grid-template-areas: "stack";
  text-decoration: none;
  color: inherit;
  width: 100%;
  min-height: 80px;
  border-radius: 10px;
  overflow: clip;
  background: #ccc;
}
.cstm_cateNavi_sp_bnWrap .cateNavi_bn_color:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.9);
  outline-offset: 3px;
}
.cstm_cateNavi_sp_bnWrap .cateNavi_bn_color .lc_bg {
  grid-area: stack;
  inline-size: 100%;
  block-size: 100%;
  background-image: url("https://media.docco.co.jp/asset/shop/bn/catenav_bn_color.jpg");
  background-size: cover;
  background-position: center center;
  will-change: transform;
  transform: scale(1.01);
  transition: all 0.5s ease;
}
.cstm_cateNavi_sp_bnWrap .cateNavi_bn_color .lc_overlay {
  grid-area: stack;
  inline-size: 100%;
  block-size: 100%;
  background-color: rgba(0, 0, 0, 0.1);
  mix-blend-mode: multiply;
  position: relative;
  pointer-events: none;
  transition: all 0.5s ease;
}
.cstm_cateNavi_sp_bnWrap .cateNavi_bn_color .lc_overlay::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(140, 105, 53, 0.4);
  mix-blend-mode: multiply;
  animation: ani_home_bn_color 14s ease-in-out infinite alternate;
}
.cstm_cateNavi_sp_bnWrap .cateNavi_bn_color .lc_content {
  grid-area: stack;
  color: #fff;
  text-align: left;
  padding: 15px;
  z-index: 2;
  width: 100%;
  overflow: hidden;
}
.cstm_cateNavi_sp_bnWrap .cateNavi_bn_color .lc_title {
  font-weight: 300;
  line-height: 1.2;
  font-size: 1.1rem;
  text-align: center;
}
.cstm_cateNavi_sp_bnWrap .cateNavi_bn_color .lc_title span {
  font-size: 0.8em;
}
.cstm_cateNavi_sp_bnWrap .cateNavi_bn_color .lc_typo {
  font-family: "Montserrat", sans-serif;
  font-weight: 100;
  font-size: 14px;
  letter-spacing: 0.2em;
  line-height: 1;
  margin: 0;
  margin-bottom: 5px;
  text-align: center;
  white-space: nowrap;
}

.cstm_cateNavi_sp_bnWrap .cateNavi_bn_size {
  display: grid;
  place-items: center;
  grid-template-areas: "stack";
  text-decoration: none;
  color: inherit;
  width: 100%;
  min-height: 80px;
  border-radius: 10px;
  overflow: clip;
  background: #ccc;
  margin-bottom: 20px;
}
.cstm_cateNavi_sp_bnWrap .cateNavi_bn_size:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.9);
  outline-offset: 3px;
}
.cstm_cateNavi_sp_bnWrap .cateNavi_bn_size .lc_bg {
  grid-area: stack;
  inline-size: 100%;
  block-size: 100%;
  background-image: url("https://media.docco.co.jp/asset/shop/bn/catenav_bn_size.jpg");
  background-size: cover;
  background-position: center center;
  will-change: transform;
  transform: scale(1.01);
  transition: all 0.5s ease;
  filter: blur(2px);
}
.cstm_cateNavi_sp_bnWrap .cateNavi_bn_size .lc_overlay {
  grid-area: stack;
  inline-size: 100%;
  block-size: 100%;
  background-color: rgba(100, 100, 100, 0.8);
  mix-blend-mode: multiply;
  position: relative;
  pointer-events: none;
  transition: all 0.5s ease;
}
.cstm_cateNavi_sp_bnWrap .cateNavi_bn_size .lc_overlay::after {
  content: "";
  position: absolute;
  inset: 0;
  mix-blend-mode: overlay;
}
.cstm_cateNavi_sp_bnWrap .cateNavi_bn_size .lc_content {
  grid-area: stack;
  color: #fff;
  text-align: left;
  padding: 15px;
  z-index: 2;
  width: 100%;
  overflow: hidden;
}
.cstm_cateNavi_sp_bnWrap .cateNavi_bn_size .lc_title {
  font-weight: 200;
  line-height: 1.2;
  font-size: 1.1rem;
  text-align: center;
}
.cstm_cateNavi_sp_bnWrap .cateNavi_bn_size .lc_title span {
  font-size: 0.8em;
}
.cstm_cateNavi_sp_bnWrap .cateNavi_bn_size .lc_typo {
  font-family: "Montserrat", sans-serif;
  font-weight: 100;
  font-size: 14px;
  letter-spacing: 0.2em;
  line-height: 1;
  margin: 0;
  margin-bottom: 5px;
  text-align: center;
  white-space: nowrap;
}

.home_bn_bgimage {
  display: grid;
  place-items: center;
  grid-template-areas: "stack";
  text-decoration: none;
  color: inherit;
  width: 100%;
  min-height: clamp(230px, 45vw, 250px);
  border-radius: 16px;
  overflow: clip;
  background: #ccc;
}
.home_bn_bgimage:hover {
  opacity: 1;
}
.home_bn_bgimage:hover .lc_bg {
  transform: scale(1.06);
}
.home_bn_bgimage:hover .lc_overlay {
  background-color: rgba(0, 0, 0, 0.4);
}
.home_bn_bgimage:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.9);
  outline-offset: 3px;
}
.home_bn_bgimage .lc_bg {
  grid-area: stack;
  inline-size: 100%;
  block-size: 100%;
  background-image: url("https://media.docco.co.jp/asset/shop/bn/catenav_bn_color.jpg");
  background-size: cover;
  background-position: center center;
  will-change: transform;
  transform: scale(1.01);
  transition: all 0.8s ease;
}
.home_bn_bgimage .lc_overlay {
  grid-area: stack;
  inline-size: 100%;
  block-size: 100%;
  background-color: rgba(176, 55, 55, 0.15);
  mix-blend-mode: multiply;
  position: relative;
  pointer-events: none;
  transition: all 0.5s ease;
}
.home_bn_bgimage .lc_overlay::after {
  content: "";
  position: absolute;
  inset: 0;
}
@media screen and (min-width: 299px) {
  .home_bn_bgimage p span {
    display: inline-block;
  }
}
.home_bn_bgimage .lc_content {
  grid-area: stack;
  color: #fff;
  text-align: left;
  padding: 20px;
  z-index: 2;
  max-width: 400px;
}
.home_bn_bgimage .lc_eyebrow {
  font-weight: 600;
  font-size: clamp(0.4rem, 0.5rem + 0.5vw, 0.5rem);
  margin: 0 0 0.35rem;
  letter-spacing: 0.2em;
  background-color: rgba(255, 255, 255, 0.7);
  color: #999;
  display: inline-block;
  padding: 3px 20px;
}
.home_bn_bgimage .lc_title {
  font-weight: 300;
  line-height: 1.25;
  font-size: clamp(1.6rem, 1.2rem + 1.2vw, 1.8rem);
  margin: 0 0 0.5rem;
}
.home_bn_bgimage .lc_lead {
  font-size: clamp(0.8rem, 0.95rem + 0.5vw, 0.9rem);
  line-height: 1.5;
  margin: 0 0 1.25rem;
  opacity: 0.95;
}
.home_bn_bgimage .lc_btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  text-decoration: none;
  color: #111;
  background: #fff;
  border-radius: 999px;
  padding: 0.7em 1.05em;
  font-weight: 600;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.18);
  transition: transform 0.18s ease, box-shadow 0.18s ease, background-color 0.2s ease;
  display: none;
}
.home_bn_color:hover .home_bn_bgimage .lc_btn {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.24);
}
.home_bn_color:active .home_bn_bgimage .lc_btn {
  transform: translateY(0);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.18);
}

.home_bn_color .lc_bg {
  background-image: url("https://media.docco.co.jp/asset/shop/bn/catenav_bn_color.jpg");
}
.home_bn_color .lc_overlay {
  background-color: rgba(0, 0, 0, 0.15);
  mix-blend-mode: multiply;
}
.home_bn_color .lc_overlay::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(102, 71, 39, 0.45);
  mix-blend-mode: multiply;
  animation: ani_home_bn_color 12s ease-in-out infinite alternate;
}
.home_bn_color .lc_title {
  font-weight: 300;
  line-height: 1.25;
  font-size: clamp(1.6rem, 1.2rem + 1.2vw, 1.8rem);
  margin: 0 0 0.5rem;
}
@keyframes ani_home_bn_color {
  0% {
    background-color: rgba(164, 86, 15, 0.45);
  }
  30% {
    background-color: rgba(230, 188, 79, 0.35);
  }
  60% {
    background-color: rgba(100, 80, 79, 0.45);
  }
  100% {
    background-color: rgba(242, 228, 200, 0.25);
  }
}
.home_bn_size .lc_bg {
  background-image: url("https://media.docco.co.jp/asset/shop/bn/catenav_bn_size.jpg");
  filter: blur(2px);
  animation: ani_home_bn_size 8s ease-in-out infinite alternate;
}
.home_bn_size .lc_overlay {
  background-color: rgba(0, 0, 0, 0.3);
  mix-blend-mode: multiply;
}
.home_bn_size .lc_title {
  font-weight: 300;
  line-height: 1.25;
  font-size: clamp(1.6rem, 1.2rem + 1.2vw, 1.8rem);
  margin: 0 0 0.8rem;
}
@keyframes ani_home_bn_size {
  0% {
    transform: scale(1.01);
    filter: blur(1px);
  }
  100% {
    transform: scale(1.2);
    filter: blur(3px);
  }
}
.cstm_header_bottom {
  margin-bottom: 30px;
}

.cstm_allPageNotice {
  display: block;
  width: 100%;
  max-width: 1070px;
  margin-right: auto;
  margin-left: auto;
}
.cstm_allPageNotice .lc_textbn {
  background-color: #e8888a;
  width: 100%;
  display: block;
  padding: 20px 30px;
  box-sizing: border-box;
}
.cstm_allPageNotice .lc_textbn p {
  text-align: center;
  color: #fff;
}
.cstm_allPageNotice .lc_contentBn {
  text-align: center;
  background-color: #eee;
  display: none;
}
.cstm_allPageNotice .lc_contentBn img {
  width: 100%;
  max-width: 750px;
}

.cstm_allPageNotice_home {
  margin-top: 20px;
}

.cstm_allPageNotice,
.cstm_allPageNotice_home {
  display: none;
}