@charset "utf-8";
/* CSS Document */
@layer base, components, utilities;
@layer base {
/* Site tone */
:root {
  /* primary */
  --color-primary: #4b69ff;
  --color-primary-hover: #6680ff;
  --color-primary-active: #3d5bef;

  /* secondary */
  --color-secondary: #111;
  --color-secondary-hover: #363636;
  --color-secondary-active: #060606;

  /* background */
  --color-bg: #ffffff;
  --color-bg-alt: /*#f6f6f6*/ #f5f6fa;

  /* text */
  --color-text: #222;
  --color-text-light: #666;
  --color-text-inverse: #fff;

  /* success, error , warning */
  --color-success: #28a745;
  --color-success-hover: #218838;
  --color-error: #dc3545;
  --color-error-hover: #c82333;
  --color-warning: #ffc107;
  --color-warning-hover: #e0a800;

  /* border */
  --color-border: #dddddd;

  /* -shadow */
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.1);
  --shadow-md: 0 4px 6px rgba(0,0,0,0.1);
  --shadow-lg: 0 10px 15px rgba(0,0,0,0.15);

  /* border-radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-round: 50%;

  /* font */
  --font-base: "utile-display", "acme-gothic-wide", "dnp-shuei-gothic-gin-std", "Helvetica Neue", "Helvetica", "Hiragino Sans", "Arial", "Yu Gothic", "Meiryo", sans-serif;
  --font-heading: "utile-display", "acme-gothic-wide","dnp-shuei-gothic-gin-std", "Helvetica Neue", "Helvetica", "Hiragino Sans", "Arial", "Yu Gothic", "Meiryo", sans-serif;
  --font-num: "acme-gothic", "utile-display", "dnp-shuei-gothic-gin-std", "Helvetica Neue", "Helvetica", "Hiragino Sans", "Arial", "Yu Gothic", "Meiryo", sans-serif;
  --font-wide: "acme-gothic-wide", "utile-display", "dnp-shuei-gothic-gin-std", "Helvetica Neue", "Helvetica", "Hiragino Sans", "Arial", "Yu Gothic", "Meiryo", sans-serif;
  --font-size-xs: 0.75rem;
  --font-size-sm: 0.875rem;
  --font-size-md: 1rem;
  --font-size-lg: 1.25rem;
  --font-size-xl: 1.5rem;
  --font-size-xxl: 1.75rem;
  --font-size-xxxl: 2rem;
  --line-height-sm: 1.2;
  --line-height-md: 1.5;
  --line-height-lg: 1.8;

  /* space */
  --space-xxxs: 4px;
  --space-xxs: 8px;
  --space-xs: 12px;
  --space-sm: 16px;
  --space-md: 20px;
  --space-lg: 24px;
  --space-xl: 32px;
  --space-xxl: 40px;
  --space-xxxl: 64px;
  --space-xxxxl: 80px;

  /* layout */
  --container-width: 1200px;
  --breakpoint-sm: 576px;
  --breakpoint-md: 768px;
  --breakpoint-lg: 992px;
  --breakpoint-xl: 1200px;

  /* transition */
  --transition-fast: 0.1s ease-in-out;
  --transition-medium: 0.2s ease-in-out;
  --transition-slow: 0.4s ease-in-out;

  --scroll-y: 0;
}
:where(body) {
  margin: 0;
}
:where(fieldset) {
  border: none;
  padding: 0;
  margin: 0;
}
body {
  font-family: var(--font-base);
  font-weight: 300;
  font-size: 16px;
  color: var(--color-text);
  background: var(--color-bg);
  line-height: var(--line-height-md);
  word-wrap: break-word;
  overflow-wrap: break-word;
  letter-spacing: .025em;
}
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  letter-spacing: .025em;
  font-weight: 500;
}
a {
  transition: var(--transition-medium);
  text-decoration: none;
  color: var(--color-secondary);
}
a:hover {
	color: var(--color-secondary-hover);
}
p {
  letter-spacing: .025em;
}
img {
  vertical-align: bottom;
  border-style: none;
}
ul {
  padding-left: 0;
}
ul li {
  list-style:none;
}
.text-medium {
  margin: /*var(--space-xxs)*/ 0;
  white-space: pre-wrap;
  font-weight: 300;
}
.wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100dvh;
}
.content-wrapper {
  flex: 1;
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
  margin-top: var(--space-md);
  align-content: flex-start;
      padding: 0 0 var(--space-xxxl);
}
.site-main, .site-main-half {
 width: 100%;
}
.site-sidebar, .site-sidebar-half {
  width: 100%;
  padding: 0 var(--space-md);
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}
/*.site-sidebar-half {
  padding: 0;
}*/
.site-main-half, .site-sidebar-half,
.site-main-half form {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
}
.site-main-half {
  justify-content: center;
}
.site-main-half form {
 align-items: stretch;
    padding: 0 var(--space-md) var(--space-xxl);
    width: 100%;
}
.sidebar-section {
  width: 100%;
  position: relative; 
}
.container {
  width: 100%;
  margin: 0 auto;
  padding: 0 var(--space-md);
}
.section, .section-alt {
  padding: var(--space-xxl) 0;
}
.content-wrapper-full .section.my-section {
padding: var(--space-lg) 0;
}
.content-wrapper-full .section:has(.container-narrow):last-child {
  padding: var(--space-lg) 0 var(--space-xxxl);
  display: block;
}
.content-wrapper-full:has(.container-narrow) {
padding-bottom: 0;
}
/*.section:nth-of-type(even) {
  background: var(--color-bg-alt);
}
.section-alt {
  background: var(--color-bg-alt);
}*/
.site-main-full:has(.mv) .section-alt {
  background: var(--color-bg);
}
.content-wrapper:has(.site-sidebar) .section:nth-of-type(even) {
  background-color: transparent;
}

/* ヘッダー */
.img-logo {
  height: 32px;
  padding: 2px;
}
.site-header .container {
  padding: var(--space-xs) var(--space-sm);
}
.site-header {
  background-color: rgba(255,255,255,0);
  box-shadow: 0 5px 10px -6px rgba(0,0,0,0);
  height: 57px;
}	
.header-logo {
  line-height: 1.1;
	padding: 0;
  font-family: var(--font-base);
  font-weight: 700;
  letter-spacing: .05em;
}
.header-logo .text-small {
	font-weight: 500;
	font-size: .75em;
}
.menu-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: -50px;
}
.menu-item {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  width: 48%;
  margin-bottom: 50px;
	position: relative;
}
.menu-img {
  width: 60px;
  height: auto;
  margin-right: 20px;
}
.menu-body {
  flex: 1;
}
.menu-name {
  margin-bottom: 10px;
}
.menu-text {
  font-size: 14px;
  line-height: 1.8;
	color: #333;
}
.cart-mark {
	background: var(--color-primary);
	border-radius: 1000px;
	position: absolute;
		padding: 4px;
	color:var(--color-text-inverse);
	font-weight: 700;
	letter-spacing: .05rem;
	font-size: .7rem;
  line-height: 1;
	right: -11px;
    top: -8px;
    z-index: 1;
    min-width: 1.4rem;
    text-align: center;
}
/* ドロワーメニュー */
.menu-checkbox {
  display: none;
}

/* フッター */
.site-footer {
  width: 100%;
   padding: 32px 20px; 
    background: var(--color-bg-alt);
    position: relative;
    z-index: 1;
}
	.site-footer-link {
    	display: flex;
		    justify-content: left;
    flex-wrap: wrap;
    	margin-bottom: var(--space-xl);
	}
	.site-footer-link a {
  	font-size: .85rem;
		padding: 12px 0;
  	color: #a2a6b0;
	}
.copyright {
  font-size: 11px; height: 11px;
  text-align: center;
  color: #a2a6b0;
  letter-spacing: .125em;
}
/* ページトップ */
.page-top {
  font-weight: bold;
  padding: var(--space-xxxs);
  cursor: pointer;
  text-align: center;
  background-color: #fff;
	    position: fixed;
  bottom: 60px;
        left: auto;
    right: calc(50vw - 600px + 20px);
    box-shadow: 0 8px 16px rgba(0,0,0,.075);
}

.page-top .material-symbols-outlined {
  vertical-align: bottom;
  color: /*var(--color-secondary)*/#878c99;
}
.site-main-full {
  width: 100%;
}

/* link */
.box-link {
    padding: var(--space-xs) var(--space-xs) var(--space-xs) var(--space-sm);
    display: block;
    margin: 1rem auto 1rem 0;
    position: relative;
    text-decoration: underline;
    background: var(--color-bg-alt);

    width: 100%;
}
.box-link.pp-link {
margin-top: 0;
}
.achievement-btn_arrow {
    position: absolute;
    top: 50%;
    right: 24px;
    display: block;
    padding: 0 0 0 16px;
    color: #000;
    text-decoration: none;
    font-size: 15px;
	transform: rotate(45deg);
	transition: all .2s;
}
.box-link:hover .achievement-btn_arrow {
    right: 16px;	
}
.achievement-btn_arrow::before, .achievement-btn_arrow::after {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    content: "";
    vertical-align: middle;
}
.achievement-btn_arrow::after {
    content: "";
    left: 2px;
    width: 13px;
    height: 13px;
    border-top: 1px solid #000;
    border-right: 1px solid #000;
}
.achievement-btn_arrow::before {
    content: "";
    width: 18px;
    height: 1px;
    background: #000;
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
}


@media screen and (min-width: 576px) {

}
@media screen and (min-width: 768px) {
.site-footer-link {
    justify-content: center;
    gap: var(--space-xxl);
    	margin-bottom: var(--space-xxxl);
}
.section:first-child {
  padding-top: /*var(--space-sm)*/ 0;
}
}
@media screen and (min-width: 992px) {
  .wrapper {
    padding-top: var(--space-xxxl);
  }
  .content-wrapper {
    width: 100%;
max-width: 1200px;
    margin: 0 auto;
    padding: 0;
    position: relative;
    gap: var(--space-md);
  }
  .content-wrapper.content-wrapper-full {
max-width:100%;
  }
    .content-wrapper:has(.site-main-half, .site-sidebar-half) {
    width: 100%;
max-width: 960px;
justify-content: center;
    }
  .site-main {
    width: calc(100% - 300px - var(--space-md));
  margin: 0 auto;
}

.site-sidebar {
  width: 300px;
  padding: var(--space-md) 0 var(--space-md) var(--space-xxl);
  height: fit-content;
  position: sticky;
  top: var(--space-xxxl);
  /*margin-top: var(--space-xs);*/
}

.site-main-half, .site-sidebar-half {
  width: calc(480px - (var(--space-md) / 2));
}
.site-sidebar-half {
  margin-bottom: var(--space-xxxl);
}
.site-main-half form {
    padding: 0 0 var(--space-xxxl) 0;
}
  .container { padding: 0 var(--space-xxl) }
  .section {
  padding: var(--space-xxxl) 0;
}
.site-footer {
	padding: var(--space-xxl);
  padding-top: var(--space-xxl);
}
.site-footer-link a {
	font-size: .85rem;
	padding: var(--space-xxxs) var(--space-sm);
}

}
@media screen and (min-width: 1200px) {
.container {
  max-width: 1200px;
}
}
@media screen and (max-width: 767px) {
.gnav-item a:after {
    display: none;
  }
.site-footer-link a {
  	font-size: .85rem;
		width: 50%;
}

.display-none {
	display: none;
}
.spacing-none {
	letter-spacing: 0;
}
}
@media screen and (max-width: 992px) {
/* ドロワーメニュー */
/* メニューボタンの装飾 */
.menu-button {
  display: block;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 200;
  height: 20px;
  width: 40px;
  cursor: pointer;
}
.menu-button::before,
.menu-button::after {
  content: '';
  transition: .3s;
}
	.menu-button span,
	.header-logo a#header-color {
  transition: .3s;		
	}
	.header-logo a#header-color.color-change {
		color: #333;
	}
.menu-button::before,
.menu-button::after {
  display: block;
  position: absolute;
  left: 0;
  height: 2px;
  width: 100%;
  margin-top: -1px;
  background-color: #333;
}
	.menu-button span {
		background: transparent;
	}
.menu-button.color-change::before,
.menu-button.color-change::after,
	.menu-button.color-change span {
  background-color: #333;		
	}
.menu-button::before {
  top: 4px;
}
.menu-button::after {
  bottom: 4px;
}
.menu-button span {
  top: 50%;
}
/* メニューボタンのアニメーション */
.menu-checkbox:checked ~ .menu-button::before {
  top: 50%;
  transform: rotate(30deg);
	background: #fff;
}
.menu-checkbox:checked ~ .menu-button::after {
  top: 50%;
  transform: rotate(-30deg);
		background: #fff;
}
.menu-checkbox:checked ~ .menu-button span {
  display: none;
}
/* ドロワーメニューの装飾 */
.drawer-menu {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 200;
  height: 100%;
  width: 67.5vw;
  transform: translateX(-100%);
  transition: .5s;
  background-color: white;
}
.drawer-menu ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
  display: flex;
	flex-wrap: wrap;
justify-content: flex-start;
}
.drawer-menu a {
  padding: var(--space-md);
  color: #111;
  text-decoration: none;
  display: block;
  position: relative;
}
	.drawer-menu .gnav-small a {
	  padding: 12px 12px 12px 30px;	
	}
	.gnav-item .text-small {
		margin-right: .75rem;
		margin-left: .75rem;
	}
	.drawer-menu .gnav-large a {
		padding-bottom: 10px;
	}
.gnav-item:not(:last-child) {
 	margin-right: 0;
		width: 100%;
}
	.gnav-item:has(.icon-item) {
		width: calc(50% - .5rem);
		justify-content: center;
        display: flex;
	}
	.gnav {
		margin-top: .5rem;
    padding-top: 56px;
	}
	.gnav-item a {
		font-size: 1.1rem;
	}
	.gnav-item.gnav-small a {
		font-size: .9rem;
	}
	.gnav-item {
		position: relative;
	}
	.gnav-item label {
		height: 100%; width: 100%;
		position: absolute;
    display: block;
    top: 0;
	}
.drawer-menu .gnav-item.gnav-lock a {
	color: var(--color-primary);
	}
/* ドロワーメニューの開閉 */
.menu-checkbox:checked ~ .drawer-menu {
  transform: translateX(0);
}
/* ドロワーメニューの背景 */
.menu-background {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 111;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, .5);
  cursor: pointer;
}
.menu-checkbox:checked ~ .menu-background {
  display: block;
}
}
}

@layer components {
/* top */
.mv {
    /*display: flex;
    align-items: flex-end;
    justify-content: left;*/
    padding-left: 0;
    height: 75vh;
    text-align: left;
    max-height: 480px;
    overflow: hidden;
        /*background: url(../img/bg01_pc.jpg);
    background-size: 115%;
      background-position: 90% center;
      background-repeat: no-repeat;*/
}
.mv .swiper {
  height: 100%;
}
.swiper-slide-mv-inner {
  position: relative;
  height: 100%;
}
.swiper-mv-images {
  object-fit: cover;
  height: 100%;
  width: 100%;
}
.mv-container {
  position: absolute;
      padding: 10rem 20px 5rem;
	margin-left: calc(50vw - 540px);
  bottom: 0;
  text-align: left;
  z-index: 1;
}
.mv-title {
  font-weight: 500;
  line-height: 1.3;
	 color: #878c99;
	font-family: /*"linotype-didot-headline", 'Noto Serif Japanese', serif*/var(--font-heading);
	font-size: 42px;
  letter-spacing: .12em;
	text-align: left;
  margin: var(--space-xs) 0 0/*var(--space-lg)*/;
}
.swiper-slide-mv-inner:has(.mv-images02) .mv-title,
.swiper-slide-mv-inner:has(.mv-images02) .mv-subtitle {
  color: var(--color-primary);
}

.mv-title .small {
font-size: .75em;
}
.mv-subtitle {
    font-size: 19px;
    font-weight: 300;
    line-height: 1;
    margin-top: 0;
    margin-bottom: 0;
  letter-spacing: .275em;
    color: /*#b9ad70*/#a2a6b0 ;
}
.br1200 {
  display: none;
}
@media screen and (max-width: 1200px) {
.br1200 {
  display: inline-block;
}
.line2 {
  margin-left: 3.25rem;
}
.mv-title {
  margin: var(--space-sm) 0 0 1rem
}
.mv-subtitle {
  /*margin-left: 4.5rem;*/
  font-size: 17px;
}
}

@media screen and (max-width: 992px) {
  .mv {
    height: 75vh;
    text-align: left;
    max-height: 520px;
        /*background: url(../img/bg01_pc.jpg);
    background-size: auto 107.5%;
      background-position: 97.5% center;
            background-repeat: no-repeat;*/
}
.mv-title {
	font-size: 34px;
  letter-spacing: .125em;
}
.mv-subtitle {
    letter-spacing: .125em;
    
}
    .content-wrapper-full:has(.mv) {
      margin-top: -57px !important;
    }

}
@media screen and (min-width: 1340px) {
    .mv {
      /*background-size: cover;
      background-position: 100% center;
            background-repeat: no-repeat;*/
}
.mv-container {
    padding: 10rem 20px 5rem 0;
}
}
@media screen and (max-width: 768px) {
    .mv {
        height: 75vh;
        min-height: 750px;
        /*align-items: flex-end;
        justify-content: flex-start;*/
        padding-left: 0;
        /*background: url(../img/bg01_sp.jpg);
         background-size: 102.5%;
        background-position: center top;
              background-repeat: no-repeat;*/
    }
  .mv-container {
        margin-left: 30px;
        padding: 0 0 15%;
    }
   .mv-title {
    line-height: 1.25;
      margin: 0 0 var(--space-md) 1rem;
        letter-spacing: .125em;
        font-size: 32px;
   } 
  .mv-subtitle {
        font-size: .95rem;
        margin-bottom: 8px;
        margin-top: 8px;
        font-weight: 300;
        line-height: 1.5;
        text-align: left;
        letter-spacing: .075em;
    }
        .line2 {
        margin-left: 2rem;
        }
            /*.mv-subtitle {
        margin-left: 2.5rem;
            }*/
}

@media screen and (min-width: 768px) and (max-width: 1200px) {
.mv-container {
	margin-left: 40px;
	}
  }
@media screen and (min-width: 992px) and (max-width: 1200px) {
  .mv {
    /*background-size: 135%;
  background-position: 90% center;*/
    }
  }
@media screen and (min-width: 768px) { 
  .content-wrapper {
    margin-block: 0;
    margin-top: var(--space-md);
  }
}
@media screen and (min-width: 768px) and (max-width: 992px) {
  .mv-container {
    padding: 0 20px 5rem 20px;
  }}
  @media screen and (max-width: 600px) {
    .mv {
        height: 75vh;
        min-height: 75vh;
    }
    .mv-container {
        margin-left: 20px;
    }
    }

.banner-container {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	padding : 0 20px;
	position: relative;
}

.banner-container .swiper-slide {
	border-radius: 4px;
object-fit: cover;
	width: calc(33.33% - 1.5rem);
	box-sizing: border-box;
	position: relative;
	overflow: hidden;
}
.banner-container .swiper-slide::before {
  content: "";
  display: block;
  padding-top: 56.25%;
}
.banner-container .swiper-slide span {
	width: 100%;
	height: 100%;
	display: block;
}
.banner-container .swiper-slide img {
  position: absolute;
 top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
	border-radius: 4px;
		aspect-ratio: 16 / 9;
	object-fit: cover;
}
.swiper-button-prev, .swiper-button-next {
    position: absolute;
    top: 50%;
    width: 2.5rem;
    height: 2.5rem;
    transform: translateY(calc(-50% - 16px));
    z-index: 10;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}
.swiper-button-prev:after, .swiper-button-next:after {
    position: absolute;
    content: "";
    top: 50%;
    left: 50%;
    width: 50%;
    height: 50%;
    transform: translate(-50%, -50%) rotate(-45deg);
    border: solid 3px transparent;
    border-top: 3px solid #333;
    border-left: 3px solid #333;
    background: transparent;
    box-shadow: none;
}
@media screen and (min-width: 768px) {
.banner-container {
	padding : 0 20px;
}
}
.section:has(.instagram-container) {
background: #f5f6fa;
}
@media screen and (min-width: 880px) {
/*.instagram-container iframe {
 width:783px; height:261px;
}*/
}
@media screen and (max-width: 879px) {
	.instagram-container {
		width: 100%;
		height: fit-content;
		margin: 0 auto;
	}
	/*.instagram-container iframe {
	height: auto;
		aspect-ratio: 3 / 1;
	}*/
}
.ranking-icon {
    top: -.25rem;
    left: -.125rem;
    width: 2rem;
    height: 2rem;
    position: absolute;
    z-index: 1;
    background: #a2a6b0;
}
.ranking-icon > .ranking-image {
display: none;
}
.cards__image-wrapper img.ranking-image {
    aspect-ratio: 1 / 1;
}
.ranking-icon .ranking-chara {
  font-family: var(--font-wide);
    font-size: 1.125rem;
    font-weight: 300;
    color: #fff;
    position: absolute;
    top: 47.5%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.cards-wide .cards__item:first-of-type .ranking-icon {
background: #b59d26;
}
.brand-container {
  gap: var(--space-sm);
  flex-wrap: wrap;
       flex-direction: column-reverse;
}
.brand-read {
  margin-top: 0;
    font-size: 1rem;
    line-height: 2;
    width: 100%;
    text-align: left;
}
.brand-story-image {
    width: 1000%;
    display: block;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    object-position: center 90%;
}
@media screen and (min-width: 768px) {
  .brand-container {
       flex-direction: row;
         justify-content: space-between;
  }
  .brand-text {
    width: calc(40% - var(--space-xxs));
}
.brand-story-image {
    width: calc(60% - var(--space-xxs));
}
}

.button-icon {
	height: 2rem;
	width: 2rem;
	margin-right: .5rem;
	margin-bottom: -.35rem;
}
.button-line-black {
	border-color: #111;
	color: #111;
}
.contact .button-fit {
	margin: 0 auto 4rem;
}
.contact .button-letter {
	border-radius: 0;
	padding: 1rem 3.5rem;
	font-size: 1.125rem;
  display: flex;
      margin: 0 auto 4rem;
    width: fit-content;
    align-items: center;
}
.contact .button-letter .button-icon {
    margin-bottom: 0;
}
.contact-item {
    display: flex;
    color: var(--color-primary);
    justify-content: center;
    align-items: center;
    gap: 2rem;
    font-size: 0;
}
.contact-item.top-contact svg {
	width: 1.75rem; height: 1.75rem;
	margin: .5rem;
}
.contact-item.top-contact .top-sns-icon-image {
	width: 2.75rem; height: 2.75rem;	
}
.top-contact.contact-item:first-child {
    margin-right: 0;
}
.contact-text {
  margin-top: 10px;
}
.share {
	font-size: .85rem;
	margin: 1rem 0;
	text-align: right;
}


/* 商品詳細 */
.product-info,
.product-images {
width: 100%;
}
.product-info {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xxs);
}
.container:has(.product-images) {
margin-top: var(--space-xxl);
}
.product-price {
  font-family: var(--font-wide);
  font-weight: 300;
  font-size: 1.5rem;
  width: 100%;
}
.product-price .text-small {
  margin-left: .5rem;
}
.product-info .share,
.product-info form,
.product-shipping {
width: 100%;
}
.product-info .share {
  margin-bottom: var(--space-md);
  margin-top: 0;
}
.product-info .share .sns-icon {
    height: 1.5rem;
    width: 1.5rem;
    display: inline-block;
    margin-left: .25rem;
    vertical-align: text-bottom;
}
.product-info + .text-medium {
  margin-top: .5rem;
}
.product-shipping {
margin: var(--space-xxxs) 0;
}
.product-shipping a {
  text-decoration: underline;
  font-size: .9rem;
}

.product-info .general-price-title {
  font-size: .65em;
  margin-right: .25rem;
}
.product-info:has(.price-down) .product-price {
  font-size: 1.2rem;
  line-height: 1.25;
}
.product-info:has(.price-down) .product-price .text-small {
    margin-left: .35rem;
}

.product-info .price-down {
padding-bottom: var(--space-md);
}
.product-info .discount-rate {
  background: #ff555b;
  color: white;
  font-size: 1.05rem;
  letter-spacing: .025em;
  padding: 0 .5rem .125rem;
      line-height: 1.2;
    display: inline-block;
    vertical-align: .125rem;
}
.product-info .discount-rate-unit {
  font-size: var(--font-size-sm);
  margin: 0 .075rem;
}
.product-info .price-down-price {
  font-size: 1.25rem;
}
.product-info .price-down {
  font-family: var(--font-wide);
  font-weight: 300;
padding: var(--space-sm) var(--space-xxs);
    border-bottom: solid 1px #ff555b;
    border-top: solid 1px #ff555b;
    width: 100%;
    display: inline-block;
}
.product-info .price-down > * {
margin-left: .75rem; 
}
.product-info .price-down-price > * {
margin-left: .125rem; 
}
.product-info .price-down > *:first-child,
.product-info .price-down-price > *:first-child {
margin-left: 0;
}
.product-info .price-down-price > .text-small {
 margin-left: .25rem;  
}
.product-info .price-down-price {
color: #ff555b;
}
.product-info .price-down-symbol {
font-size: 1.25rem;
}
.product-info .number-button-container .button-block {
  margin: /*1rem .75rem 1rem 0 お気に入り*/ 1rem auto;
    width: calc(100% - 4rem - .75rem);
    max-width: calc(100% - (var(--space-xxxs) * 2));
}
.product-info .number-button-container #label-number-of-unit,
.product-info .number-button-container .specification-select-title {
font-size: .85rem;
padding-bottom: .25rem;
}
/*product-info .number-button-container #label-number-of-unit {
  position: absolute;
    top: -1.25rem;
    right: 128px;
    transform: translateX(100%);
}*/
.product-info .number-button-container #label-number-of-unit {
      margin-left: 4px;
    margin-bottom: 4px;
    display: block;
}
.product-info .number-button-container .number-of-unit-container {
padding-bottom: 4px;
}
.product-info .number-button-container .specification-select-container {
    margin-right: 1rem;
    width: calc(100% - 124px - 8px - 1rem);
}
.specification-select-container .specification-select {
  width: 100%;
  cursor: pointer;
}
.input-group-append:last-child button.btn-number {
margin-right: 0;
}
.info-account .link-right {
    padding: 0;
    position: absolute;
    top: 1rem;
    width: 100%;
    font-size: 1.05rem;
    width: fit-content;
    top: 20px;
    right: 30px;
    background: var(--color-secondary);
    color: #fff;
}

.number-button-container {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xxs);
  align-items: center;
  justify-content: /*flex-end*/ flex-start;
position: relative;
}
.number-button-container .button-block {
width: 100%;
  margin: var(--space-sm) auto;
}
.number-button-container .button-black input {
background: transparent;
color: #fff;
border: none;
}



/* 商品詳細のswiper */
.swiper-main {
  width: 100%;
  aspect-ratio: 1 / 1;
  background: #e4e6eb;
}
.swiper-main img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.swiper-thumbs {
  margin-top: .75rem;
  height: autp;
}
.swiper-thumbs .swiper-slide {
  aspect-ratio: 1 / 1;
  width: auto;
}
.swiper-thumbs img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: pointer;
  opacity: 0.35;
  transition: opacity 0.3s;
}
.swiper-thumbs .swiper-slide-thumb-active img {
  opacity: 1;
  border: 1px solid var(--color-primary);/
}
.swiper-thumbs {
  margin-top: 1rem;
  height: auto; 
}
.product-spec {
  margin: var(--space-md) 0;
}

.product-spec th {
  background: var(--color-bg-alt);
}
.container:has(.product-info) text-medium {
width: 100%;
}
.related-products h2 {
  margin-block: auto;
}
.related-products .cards {
  margin-block-start: auto;
}


/* ボタン */
.button, .button-black, .button-transparent {
  display: inline-block;
  padding: var(--space-xxs);
  background: var(--color-primary);
  color: var(--color-text-inverse);
  text-decoration: none;
  box-shadow: var(--shadow-sm);
  transition: background-color var(--transition-fast);
     /* font-size: 1.1rem*/
      line-height: 2.25rem;
    border-radius: 1000px;
    border: none;
  box-shadow: none;
  cursor: pointer;
}
.button-black {
    background: var(--color-secondary);
}
.button-fit {
    width: fit-content;
    padding: .75rem 3rem;
    line-height: 1;
}
.button-transparent {
    background: #fff;
    color: var(--color-text);
    border: solid 1px var(--color-text);
}
.button:hover {
  background: var(--color-primary-hover);
}
.button-black:hover {
  background: var(--color-secondary-hover);
}
.button-transparent:hover {
  background: var(--color-bg-alt);
}
.button-block {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    max-width: 320px;
    text-align: center;
}
.button-short {
	font-size: var(--font-size-md);
    margin: 0 auto;
    padding: 0.35rem 1rem;
	width: fit-content;
}

.acd-content .button-short {
	font-weight: 500;
	display: inline;
	margin-left: 1rem;
}
.button-line-black {
    font-size: 1.125rem;
    font-weight: 500;
    border: solid 1px #111;
    padding: 1rem 3rem;
    color: #111;
    line-height: 1;
    display: inline-block;
    margin-top: 1.75rem;
    cursor: pointer;
    border-radius: 0;
}

.section-alt .button-line-black:hover {
background: var(--color-bg-alt);
}
.button-block-left {
  margin: 0 auto var(--space-md);
}
.page-title .tune-button {
    display: flex;
    align-items: center;
    gap: .35rem;
        padding: 0 1rem;
    line-height: 1;
}
.page-title:has(.tune-button) {
  display: flex;
  justify-content: space-between;
}
.button-favorite {
  display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    width: 3.5rem;
    gap: 0;
}
.button-favorite-text {
    font-size: .67rem;
    letter-spacing: 0;
}
.list-button-favorite {
      display: block;
    position: absolute;
    background: rgba(255,255,255,.65);
    box-shadow: 0 3px 6px rgba(0,0,0,.1);
    bottom: .5rem;
    right: .5rem;
    width: fit-content;
    height: fit-content;
    padding: .5rem .5rem .4rem;
    border-radius: 10000px;
    font-size: 0;
}


/* カード */
.cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-sm);
  padding-left: 0;
}
.cards li {
  list-style: none;
}
.cards__item {
  margin-bottom: var(--space-md);
  color: #111;
  position: relative;
}
.cards__price {
  font-family: var(--font-wide);
  font-weight: 500;
}
.cards__price .text-small {
    margin-left: .25rem;
}
.cards__image-wrapper {
	background: /*#ddd*/#fff;
		border-radius: 4px;
	position: relative;
	z-index: 0;
}
.cards__image {
	border-radius: 4px;
	aspect-ratio: 3 / 2;
	object-fit: cover;
	object-position: center center;
	position: relative;
	z-index: 0;
  display: block;
  text-decoration: none;
	object-fit: cover;	
}
.cards__title {
  font-size: var(--font-size-sm);
  font-weight: 500;
  margin: var(--space-xxs) 0 var(--space-xxxs);
	line-height: var(--line-height-sm);
}
.cards__specification {
    font-size: .875rem;
    padding: .125rem .35rem .0625rem;;
  margin: 0 0 var(--space-xxs);
    background: var(--color-bg-alt);
    color: #444;
}
.cards__price {
  font-size: var(--font-size-sm);
  margin: 0;
}

.site-main-full .cards {
margin-block: auto;
}
  
.content-wrapper:has(.site-sidebar) .container:not(:has(h2)) .cards {
  padding-top: var(--space-md);
}


/* カート */
.price-container .button-block {
 margin: var(--space-md) auto var(--space-lg) ;
}
.container-number-of-unit .button-short {
    padding: .125rem 1rem;
}
.price-container:has(#AmazonPayButton) .caution.center:last-child {
margin-top: var(--space-xl);
}
.cards.cards--wide {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-sm);
}
.cards--wide .cards__item {
  display: flex;
  align-items: flex-start;
  gap: 0;
  flex-wrap: wrap;
  width: 100%;
  overflow: hidden;
  background: transparent;
  margin-bottom: 0;
  padding: var(--space-sm);
  border: solid 1px #bbb;
}
.cards__item-inner,
.cards__item-inner a {
  display: flex;
  gap: var(--space-sm);
  width: 100%;
}
.cards--wide .cards__image-wrapper {
  aspect-ratio: 1 / 1;
  height: fit-content;
  width: 80px;
}
.cards--wide .cards__image {
  object-fit: cover;
  aspect-ratio: 1 / 1;
  width: 100%;
}
.cards--wide .cards__title-wrapper {
    background: transparent;
    display: flex;
    flex-wrap: wrap;
    height: fit-content;
    width: calc(100% - var(--space-sm) - 80px);
}
.cards--wide .cards__title {
  /*font-size: var(--font-size-md);*/
  font-size: 1.125rem;
  margin: 0 0 var(--space-xxxs);
}
.cards--wide .cards__price {
  font-size: 1.2rem;
  margin: 0;
  width: 100%;
}
.cards--wide .cards__item form {
  padding-bottom: 0;
  padding-left: 0; padding-right: 0;
  margin: 1rem 0 0 auto;
  width: fit-content;
}
.cards--wide .price-down {
color: #ff555b;
}
.cards--wide .discount-rate {
  border: solid 1px #ff555b;
  letter-spacing: .025em;
  padding: .0625rem .35rem 0;
      font-size: 1.125rem;
      margin-left: .35rem;
      margin-right: .35rem;
}
.cards--wide .discount-rate-unit {
margin: 0 .0625rem;
font-size: .9em;
}
.price-container .cards.cards--wide {
gap: var(--space-xxs);
}
.price-container .cards--wide .cards__item {
padding: var(--space-xs);
}
.price-container .cards--wide .cards__item-inner {
gap: var(--space-xs);
}
.price-container .cards--wide .cards__image-wrapper {
width: 64px;
}
.price-container .cards--wide .cards__title-wrapper {
 width: calc(100% - var(--space-xs) - 64px);
 }
.price-container.show-below-lg .cards--wide .cards__title-wrapper {
 gap: var(--space-xxxs);
 }
.price-container .cards--wide .cards__title {
    font-size: 1rem;
}
.price-container .cards--wide .cards__specification {
font-size: .85rem;
}
.price-container .cards--wide .cards__price {
    font-size: 1.05rem;
}
.price-container .item-quantity .item-quantity__value {
    font-size: 1.05rem;
    line-height: 2.075rem;
}
.site-sidebar-half .price-container .acd-check:checked + .acd-label + .acd-content {
padding-top: 0;
}
.item-quantity {
  margin: -.25rem 0;
   width:100%;
}
.item-quantity .item-quantity__value {
    font-size: 1.125rem;
    line-height: 2.25rem;
}

input.form-control[type="number"]::-webkit-outer-spin-button,
input.form-control[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  appearance: none;
  margin: 0;
}
input.form-control[type="number"] {
  -webkit-appearance: none;
  appearance: none;
  text-align: center;
  height: 30px;
	margin: 0 .25rem;
	    letter-spacing: .075rem;
    border: solid 1px var(--color-secondary);
    border-radius: 2px;
        width: 2.75rem;
}
button.btn-number {
  width: 30px;
    height: 30px;
    background: #e4e6eb;
    color: #111;
    font-size: 2rem;
    font-weight: 500;
    border-radius: 3px;
    margin: 0 0.25rem;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
}
.input-group.flex {
	margin: .5rem auto .5rem .5rem;
	align-items: center;
}

.container-number-of-unit .button-transparent {
	font-size: .85rem !important;
	margin-left: 0;
	margin-right: 0;
	font-weight: 500;
  line-height: 1.7;
      border: solid 1px rgba(17, 17, 17, .9);
}
.container-number-of-unit .button-transparent input {
background: transparent;
    border: none;
    padding: 0;
    line-height: 1;
    vertical-align: middle;
    cursor: pointer;
}
.container-number-of-unit .button-group {
    flex-wrap: wrap;
    width: 5rem;
    justify-content: flex-start;
    gap: 1rem;
    position: relative;
}
.number-of-unit-title {
	margin-right: .5rem;
  line-height: 32px;
  vertical-align: middle;
  font-size: .85rem;
}
.input-group.flex {
	margin: 0 ;	
}




/* パンくず */
.bread {
	font-size: .85rem;
	font-weight: 300;
	padding: 0;
	line-height: 1.65;
	    max-width: 1200px; 
	margin: 0 auto;
	width: 100%;
  color: #878c99;
}
.bread ol {
  margin-bottom: 0;
  margin-top: var(--space-xxs);
  padding-left: var(--space-md);
}
.bread ol li {
	display: inline-block;
}
.bread ol li:first-of-type {
	padding-left: 0;
}
.bread a {
	text-decoration: underline;
  color: #878c99;
}
.breadcrumb-list ul li span {
	margin: .75rem;
} 
.breadcrumb-list ol li:last-of-type span {
	display: none;
}
.bread ol li:before {
    content: ">";
    margin: 0 var(--space-xxxs);
}
.bread ol li:first-child:before {
    content: none;
}

/* ページング */
.paging {
  margin: var(--space-sm) auto 0;
  display: flex;
  justify-content: center;
}
.paging a, .paging span {
	padding-left: .75rem;
  padding-right: .75rem;
  padding-bottom: .125rem;
		margin: 0 .5rem;
	transition: all .2s ease-out;
			text-align: center;
      font-size: var(--font-size-sm);
}
.paging a {
	border: solid 1px #111;	
}
.paging .paging-now {
		color: #fff;
	background: var(--color-secondary);
}
.paging a:hover {
	background: var(--color-secondary-hover);
	color: #fff;
	border-color: #fff;
}

/* */
.tocart-link {
  border: solid 1px #333;
    width: calc(100% - .5rem);
    display: block;
    padding: .75rem .5rem;
    font-size: .875rem;
    margin: .25rem .25rem 0;
    text-align: center;
    transition: var(--transition-medium) ;
}
.tocart-link:hover {
  background: var(--color-bg-alt);
}

/* ポップアップ・モーダル */
.dialog__close-button {
  width: var(--space-xxl);
  height: var(--space-xxl);
  position: sticky;
  top: 0;
  cursor: pointer;
  z-index: 13;
  background: transparent;
  border: none;
  display: block;
  margin: -2.25rem -.5rem -.5rem auto;
}
.dialog__close-button span,
.dialog__close-button span::before {
  display: block;
  height: 2px;
  width: 32px;
  background: #888;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}
.dialog__close-button span {
  transform: rotate(45deg);
}
.dialog__close-button span::before {
  content: "";
  transform: rotate(-90deg);
  display: block;
}
.dialog {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 0.2s ease-out;
  opacity: 1;
  visibility: visible;
  z-index: 12;
}
.dialog.__hidden {
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s ease-out;
}
.dialog__bglayer {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, .5);
  z-index: -1;
}
.dialog__container {
  background-color: var(--color-bg);
  width: calc(100% - (var(--space-md) * 2));
  max-width: 600px;
  max-height: 75dvh;
  padding: var(--space-md);
  overflow-y: scroll;
  position: relative;
}
.dialog__title {
  font-size: var(--font-size-lg);
  font-weight: 600;
}
.dialog__description {
  margin-top: 1rem;
  font-size: 1rem;
}
.dialog__action {
  padding: var(--space-md);
}
.dialog__container .dialog__action:last-of-type {
  padding-top: var(--space-xs);
}
/*[data-open-trigger]:focus,
[data-close-trigger]:focus {
  outline: 2px solid var(--color-primary-hover);
}*/
.fixed {
  position: fixed;
  top: var(--scroll-y);
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.user-select-none {
  -webkit-user-select: none;
  user-select: none;
}


/* title */
.title {
font-size: 26px;
margin-bottom: 32px;
    font-weight: 300;
    font-family: /*"linotype-didot", serif*/var(--font-wide);
    line-height: 1;
        text-align: left;
    letter-spacing: .0125em;
    color: var(--color-secondary);
width: 100%;
    position: relative;
}
.title .more {
    width: fit-content;
    display: inline-block;
    margin: 0 .5rem 0 0;
    padding: .25rem;
    position: absolute;
    right: 0;
    bottom: 0;
    letter-spacing: .025em;
    font-weight: 500;
    border: none;
    font-size: 1.2rem;
    text-decoration: underline;
    background: /* #e4e6eb*/#ebedf2;
    border-radius: 0;
    color: #878c99;
}
.section-alt .title .more {
 /*background: var(--color-bg);*/
}

@media screen and (min-width: 768px) {
.title {
    font-size: 40px;
    margin-bottom: 44px;
  margin-top: 4px;
}
}
.page-title {
  width: calc(100% - (var(--space-md) * 2));
  padding: 0 /*var(--space-md)*/;
}
.container-narrow .page-title {
  width: 100%;
}
.title-center {
  text-align: center;
}
.aside-title {
  font-size: var(--font-size-md);
  margin-bottom: var(--space-xxs);
  margin-top: var(--space-xxs);
  font-weight: 500;
}
.search-title {
  font-size: var(--font-size-lg);
}

/* section */
.sort-section , .category-section {
  width: calc(50% - var(--space-md));
}

/* search box */
input[type="search"] {
	 -webkit-appearance: none;
     appearance: none;
}
input[type="search"]:focus {
  outline-style: none;
}
input[type="search"]::-webkit-search-decoration {
  display: none;
}
.aside-search-button {
	z-index: 2;
    position: absolute;
    height: 2.25rem;
	color: #fff;
	background: var(--color-secondary);
  transition: var(--transition-fast);
	right: 0;
	border-radius: 0 4px 4px 0;
	padding-left: .5rem;
	padding-right: .5rem;
	letter-spacing: .025rem;
	font-weight: 500;
  cursor: pointer;
  border: none;
}
.aside-search-button {
	background: var(--color-secondary-hover);
}
.aside-search-box {
	-webkit-appearance: textfield;
    appearance: textfield;
	padding: .4rem calc(74px + .75rem) .4rem .5rem;
	height: 2.25rem;
	border: 1px solid #bbb;
	border-radius: 4px;
	background: #fff;
	width: 100%;
}

/* ラジオボタン */
/* check */
.label-container,
.label-container label {
	cursor: pointer;
}
input[type="radio"] ,
input[type="checkbox"] {
  filter: alpha(opacity=0);
  -moz-opacity:0;
  opacity:0;
  -webkit-appearance: none;
  appearance: none;
  position: absolute;
}
input[type="radio"]:focus + .radio-icon,
input[type="checkbox"]:focus + .check-icon {
  box-shadow: 0 0 0 4px #d4e4f9;
}
input[type="radio"] + .radio-icon {
    position: relative;
    vertical-align: middle;
    display: inline-block;
    box-sizing: border-box;
    width: 1rem;
    height: 1rem;
    margin-top: -.25rem;
    margin-right: .3rem;
    margin-left: .125rem;
    border-radius: 50%;
    border: 1px solid #ccc;
    background: #fff;
    box-shadow: none;
    transition: all 0.2s ease-out;
    cursor: pointer;
  }
input[type="radio"]:acitive + .radio-icon,
input[type="radio"]:focus + .radio-icon {
      border: 2px solid #3e3eff;
      background: #3e3eff;
      box-shadow: 0 0 0 4px #d4e4f9;
    }
input[type="radio"]:checked + .radio-icon {
      background: #3e3eff;
      border: 4px solid #fff;
	 position: relative;
}
input[type="radio"]:checked + .radio-icon::before {
	 content: "";
    border-radius: 1000px;
    position: absolute;
    top: -4px;
    left: -4px;
    width: calc(100% + 8px);
    height: calc(100% + 8px);
    background: transparent;
    border: 1px solid #3e3eff; 
}
label:hover .radio-icon {
  border: 1px solid #3e3eff;
  background: #3e3eff;
}
 input[type="checkbox"] + .check-icon {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    box-sizing: border-box;
    width: .85rem;
    height: .85rem;
    margin-top: -.35rem;
    margin-right: .5rem;
    transition: all 0.2s ease-out;
}
input[type="checkbox"] + .check-icon:after{
      position: absolute;
      top: 0;
      left: 0;
      content: "";
      display: inline-block;
      box-sizing: border-box;
      width: 1.15rem;
      height: 1.15rem;
      border: 1px solid #bbb;
      background: #fff;
      box-shadow: none;
      transition: all 0.2s ease-out;
	 margin-top: -.125rem;
  }
input[type="checkbox"]:checked + .check-icon:after {
        position: absolute;
        content: "";
        top: /*-.2rem*/0;
        left: .25rem;
        width: 62%;
        height: 84%;
        transform: rotate(45deg);
        border : solid 2px transparent;
        border-bottom: 2px solid #3e3eff;
        border-right: 2px solid #3e3eff;     
        background: transparent;
        box-shadow: none;
  }
input[type="checkbox"]:focus + .check-icon {
      box-shadow: 0 0 0 4px #d4e4f9;
}
input[type="checkbox"]:focus + .check-icon::after {
        box-shadow: none;
    }
input[type="checkbox"]:not(:cheked) + .check-icon::after {
        border-color: #3e3eff;
  }
  label:hover input[type="checkbox"]:not(:checked) + .check-icon::after {
        border-color: #3e3eff;
}

/* label */
.sort-section label {
    font-size: var(--font-size-sm);
    line-height: 2;
  display: block;
}
.sort-list {
  padding-left: 0;
  margin: 0;
}
.sort-list li {
  font-size: var(--font-size-sm);
  list-style: none;
  line-height: 2;
}
.sort-section label, .sort-list li label {
  cursor: pointer;
}
.sidebar-section fieldset {
  line-height: 1.75;
}

/* 購入手続き */
.info-account .no-edit-normal, .info-address .no-edit-normal, .info-pay .no-edit-normal {
width: 100%;	
}
.text-auxiliary {
	margin: 0 .5rem;
}
.no-edit-normal {
	width: 100%;
    padding: 0.75rem;
    box-sizing: border-box;
    border-radius: 4px;
    background: var(--color-bg-alt);
	margin: 0 auto;
}
.confirmation-list {
	padding: 20px 20px 36px;
    background: #fff;
    margin: 20px -20px;
	border-radius: 4px;
}
.info-account, .info-address, .info-pay {
	padding: 0 var(--space-md) var(--space-lg);
    background: var(--color-bg-alt);
    margin: 0;
	position: relative;
  width: 100%;
}
.info-account:not(.acd-container), .info-address:not(.acd-container), .info-pay:not(.acd-container) {
	padding-bottom: var(--space-xl);
}
.info-account:not(.acd-container) .form-group .subhead,
.info-address:not(.acd-container) .form-group .subhead {
margin-top: var(--space-lg);
}

.info-pp:has(.no-edit-normal), .info-account:has(.no-edit-normal), .info-address:has(.no-edit-normal), .info-pay:has(.no-edit-normal) {
padding: 0 0 var(--space-lg);
width: 100%;
}

.info-memo, info-send {
  width: 100%;
}
.info-send {
  display: flex;
  flex-wrap: wrap;
  justify-items: center;
  align-items: center;
      gap: var(--space-xl);
      width: 100%;
      padding: var(--space-lg) var(--space-md) var(--space-md);
}

.search-form + .info-send {
margin-top: var(--space-xl);
}
.info-memo .input-normal {
width :100%;
}
.info-account:has(.no-edit-normal), .info-address:has(.no-edit-normal), .info-pay:has(.no-edit-normal) {
	background: #fff;
}
.info-account h2, .info-address h2/*, .info-pay h2*/ {
	margin: 1.25rem 0 -.5rem 0;
}
.info-account.acd-container h2, .info-address.acd-container h2, .info-pay.acd-container h2 {
	margin: 1.25rem 0 0 0;
	display: inline-block;
font-weight: 600;
font-size: var(--font-size-lg);
}
.info-account h2, .info-address h2, .info-pay h2 {
  font-weight: 600;
  font-size: var(--font-size-lg);
}
.text-tentative {
    display: inline-block;
    margin: 0 0 0 1rem;
    width: 55%;
}
.subhead {
  margin: var(--space-xl) 0 var(--space-xxs);
  font-size: 1rem;
  font-weight: 500;
}
/*.site-main-half form section:first-child .subhead {
margin-top: 0;
}*/
.dialog__container .text-medium + .form-group:first-of-type .subhead {
  margin-top: 0;
}
.site-main-half form section:first-child {
padding-top: 0;
}


/* form */
.input-normal {
    width: 100%;
    padding: .75rem;
    box-sizing: border-box;
    border-radius: 2px;
    border: solid 1px #222;
    letter-spacing: .05rem;
}
.register-select {
    display: inline-block;
}
.form-group, .info-group {
width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}
.form-group:has(.register-select, .text-auxiliar, .credit-card-cord), .info-group:has(.register-select, .text-auxiliary) {
    justify-content: flex-start; 
}
.info-group {
  flex-wrap: wrap;
}
.info-group .subhead {
  width: 100%;
}
.form-group .subhead,
.info-group .subhead {
  margin: var(--space-sm) 0 var(--space-xxs);
  width: 100%;
}
.form-group .button-short,
.info-group .button-short {
    line-height: 1.5;
    margin: 0 auto 0 1rem;
}
.input-normal.input-short {
  width: calc(40% - 1.5rem);
}
.input-normal.input-half {
 width: calc(50% - .25rem);
}
.member-card .text-right .text-link + .text-link {
  padding: 0 0 0 var(--space-md);
}
.email-split {
  display: flex;
  align-items: center;
  width: 100%;
}
.mail-domain {
        width: calc(45% - .75rem);
    }
.mail-user {
        width: calc(55% - .65rem);
        margin-left: 0;
    }
  .atmark {
    margin: 0 .275rem;
  }
  .line-dash-container {
		margin: 0 auto;
    padding-top: .75rem;
    width: 100%;
	}
  .line-dash {
    flex: 1;
    display: inline-block;
  min-width: 30px;
    margin: .5rem;
  }
.select-search {
      -webkit-appearance: none;
    appearance: none;
    background: #fff;
    color: var(--color-secondary);
  cursor: pointer;
}
.item-4field {
    width: 5.5rem;
    margin: 0 1rem 0 0;
}
.annotation, .error-message {
  line-height: var(--line-height-md);
  font-size: var(--font-size-sm);
  margin-block: 0;
  margin-top: var(--space-xxs);
}
.error-message {
color: var(--color-error);
}
.form-group .error-message,
.info-group .error-message {
  width: 100%;
}
label.button input  {
      background: transparent;
    border: none;
    color: var(--color-text-inverse);
}


/* クレカimages */
.credit-card-cord img {
	width: 40px;
	margin-right: .5rem;
	}
.credit-card-logo {
  display: flex;
  width: fit-content;
	align-items: center;
}
.credit-card-logo img {
	width: 30px;
	margin-right: .5rem;
}

/* 分割払いアナウンス */
.attention-area {
  padding: 1rem 1.25rem 1.25rem;
  background: var(--color-bg-alt);
}
.attention-area.attention-area-confirm {
  margin-top: -1rem;
  margin-bottom: -.75rem;
    width: calc(100% + 2.5rem);
    background: transparent;
    padding: .5rem 0;
}
.attention-area-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: solid #cbced6 1px;
  padding-bottom: .75rem;
  font-size: .975rem;
  letter-spacing: .05em;
  font-weight: 700;
  color: #878c99;
}
.attention-area-icon-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: .75rem;
}
.attention-area-icon-container .card-icon {
  height: 1rem;
  width: auto;
}
.attention-area-h2-container {
  display: flex;
  gap: .75rem;
  align-items: center;
  margin: .5rem 0 1.125rem;
}
.attention-area-confirm .attention-area-h2-container {
  gap: .5rem;
  margin-bottom: .75rem;
}
.attention-area-h2-container .attention-area-h2-textwrap {
width: calc(100% - 4rem);
}
.attention-area-confirm .attention-area-h2-container .attention-area-h2-textwrap {
  width: calc(100% - 3.5rem);
}
.attention-area-h2-textwrap p {
font-size: .85rem;
margin: 0;
}
.attention-area-h2-container .attention-area-h2-icon {
    width: 3rem;
    height: 3rem;
    background: #fff;
    border-radius: 1000px;
    padding: .75rem;
}
.attention-area-confirm .attention-area-h2-container .attention-area-h2-icon {
      background: var(--color-bg-alt);
}
.attention-area-h2 {
  font-size: 1.05rem;
  line-height: 1.2;
  margin: .75rem 0 .5rem;
  font-weight: 700;
}
.attention-area-h3 {
  margin: .5rem 0 ;
  font-size: .95rem;
  letter-spacing: .075em;
  font-weight: 500;
}
.attention-list {
  margin: 0;
}
.attention-list li {
  font-size: .8rem;
  padding-left: 1rem;
  position: relative;
  line-height: 1.2;
  margin-bottom: .5rem;
}
.attention-area-p {
  font-size: .8rem;
  line-height: 1.4;
  margin: 0;
}
.attention-list li::before {
  content: "";
  height: 2px;
  width: 2px;
  background: #222;
  position: absolute;
  top: .45rem;
  left: .25rem;
  border-radius: 100px;
}
.attention-area-confirm .attention-area-h2-container,
.attention-area-confirm .attention-area-h2 {
margin-top: 0;
}
.attention-area-confirm .attention-area-h2 {
margin-bottom: 0;
line-height: 1.4;
font-size: 1.05rem;
}

.info-pay h2:has(.info-pay_h2-attention) {
display: flex;
justify-content: space-between;
}
.info-pay_h2-attention {
    font-size: .8rem;
    font-weight: 300;
    display: flex;
    align-items: center;
    line-height: 1.2;
    gap: .35rem;
    margin-right: -.5rem;
    color: var(--color-primary-active);
    font-weight: 600;
    letter-spacing: .025em;
}
.info-pay_h2-icon {
width: 2.25rem;
height: 2.25rem;
padding: .5rem;
background: #fff;
border-radius: 1000px;
}
.info-pay_h2-attention .attention-br-sp {
display: inline-block;
}
.info-pay_h2-attention .attention-br-pc {
display: none;
}


/* 蛇腹 */
.acd-container {
	overflow: hidden;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.acd-check {
  display: none;
}
.acd-label {
  display: inline;
	cursor: pointer;
	position: relative;
  width: calc(100% - 84px);
}
.price-container.show-below-lg .acd-label:not(.acd-label--close-button) {
  display: block;
width: 100%;
}
.price-container .acd-label > ul {
	width: calc(100% - 2.5rem);
}
.acd-content {
  height: 0;
  opacity: 0;
  padding: 0;
  transition: .25s;
  visibility: hidden;
}
.acd-check:checked + .acd-label + .acd-content {
  height: fit-content;
  opacity: 1;
  padding: 0 0 12px;
  visibility: visible;
  width: 100%;
}
.acd-content {
  transition: .25s;	
}
.acd-check:checked + .acd-label .text-tentative {
  visibility: hidden;
  opacity: 0;	
}
.acd-label:after {
      font-family: 'Material Symbols Outlined';
    content: "\e313";
    font-size: 2.5rem;
    display: block;
    position: absolute;
    top: 50%;
    right: -.75rem;
    font-variation-settings: 'FILL' 0, 'wght' 300, 'GRAD' 1, 'opsz' 48;
    transform: translateY(calc(-50% + 12px));
}
.price-container .acd-label:after {
	transform: translateY(-50%);
	right: -.75rem;
}
.site-sidebar-half .price-container .acd-label:after {
  right: -1.5rem;
    width: 1.25rem;
    height: 1.25rem;
    transform: translateY(calc(-50% - .125rem));
}

.price-container .acd-check:checked + .acd-label + .acd-content {
	padding: /*12px 0 0*/ 0;
}
.acd-check:checked + .acd-label:after {
       font-family: 'Material Symbols Outlined';
    content: "\e316";
}

.text-tentative {
	display: inline-block;
	margin: 0 0 0 1rem;
	width: calc(100% - 48px);
}
.info-account .text-tentative,
.info-address .text-tentative {
	transform: translateY(.75rem);
}
.acd-content .container .subhead:first-child {
	        margin: 24px auto .75rem;
}
.acd-check:checked + .acd-label + .acd-content .container .subhead:first-child {
	        margin: 34px auto .75rem;
}

.faq, .contact-form {
  margin-top: var(--space-sm);
}
.faq .acd-container {
  padding: var(--space-xxs) ;
border-top: solid 1px #111;
}
.faq .acd-container:last-of-type {
  border-bottom: solid 1px #111;
}
.faq .acd-check:checked + .acd-label + .acd-content {
  padding: 0; 
}
.faq .acd-content p,
.faq .acd-label {
  text-indent: -1.85rem;
    padding-left: 2.25rem;
        line-height: 1.4;
}
.faq .acd-content p {
  margin: var(--space-xxs) 0 var(--space-sm);
}
.faq .acd-label {
  margin: var(--space-xxs) 0; 
  width: calc(100% - 2rem);
  
}
.faq .question, .faq .answer {
  font-size: 1.5rem;
  margin-right: .5rem;
  color: var(--color-primary);
}
.faq .answer {
  color:#ff555b /*  #888888*/;
}
.faq .acd-label::after {
    right: -2.25rem;
    top: 50%;
    transform: translateY(-50%);
}
.form-frame {
 width: 100%;
    padding: var(--space-xxs) var(--space-md) var(--space-xl);
    border: solid 1px #bbb;
        margin-top: var(--space-sm);
}
.form-frame .form-group .subhead {
   font-size: .875rem;
}
.form-frame > .subhead:first-of-type {
margin-top: var(--space-xxs);
}
.note-list {
  margin-block-end: auto;
  font-size: .875rem;
  margin-bottom: var(--space-lg);
}
.note-list__item {
  padding-left: 1.125rem;
  margin-bottom: .25rem;
  position: relative;
  line-height: 1.4;
}
.note-list__item:last-of-type {
  margin-bottom: 0;
}
.note-list__item::before {
  content: "※";
  position: absolute;
  left: 0;
}

.news-article__header {
  width: 100%;
  display: flex;
  flex-wrap: wrap; 
  justify-content: space-between;
      margin-top: var(--space-lg);
      gap: var(--space-xxxs);
}
.news-article__date {
  font-size: 1.125rem;
}
.news-article__title {
  width: 100%;
}
.news-article__title.page-title {
padding-top: 0;
}
.news-article {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.news-article__content a:not(.button, .button-black, .buttom-transparent) {
  text-decoration: underline;
  color: var(--color-primary);
}
.news-article__content a:not(.button, .button-black, .buttom-transparent):hover {
  color: var(--color-primary-hover); 
}
.news-article__content a:not(.button, .button-black, .buttom-transparent):active {
  color: var(--color-primary-active); 
}
.news-article__content .button,
.news-article__content .button-black,
.news-article__content .buttom-transparent {
  margin-top: var(--space-lg);
  margin-bottom: var(--space-lg);
}

.news-article__content h2,
.news-article__content h3 {
margin-top: var(--space-xl);
}


.stack .search-form,
.stack .search-title {
  width: 100%;
}
.search-form {
  position: relative;
}

.container-number-of-unit .delete,
.container-number-of-unit .to-wishlist {
	margin: 0 auto;
  font-size: .85rem;
      margin-bottom: -.25rem;
    text-decoration: underline;
}
.container-number-of-unit .delete {
    position: absolute;
    bottom: 0;
    right: calc(100% + .35rem);
    white-space: nowrap;
}
.delete.delete-upperright {
    border-radius: 1000px;
    background: rgba(255, 255, 255, .35);
    position: absolute;
    top: .25rem;
    right: .25rem;
    height: 1.7rem;
    width: 1.7rem;
      aspect-ratio: 1 / 1;
    vertical-align: middle;
    color: #444;
}
.price-container {
	border: solid #111 1px;
	background: #fff;
	padding: 0 1.25rem;
  width: calc(100% - 40px);
    margin: 0 auto;
}
.price-container.price-confirm,
.price-container.cart-price-container {
  width: 100%;
}
section + .price-container.price-confirm {
  margin-top: var(--space-md);
}
.site-sidebar-half .price-container {
  height: fit-content;
  position: sticky;
  top: var(--space-xxxxl);
}
.site-sidebar-half:has(.attention-area) .price-container {
  position: relative;
  top: auto;
}
.price-container ul:not(.cards--wide) li {
	display: flex;
	justify-content: space-between;
	align-items: center;
  list-style-type: none;
	font-size: 1.5rem;
	line-height: 1.85;
		font-weight: 500;
    font-family: var(--font-wide);
}
.price-container ul li.small {
	font-size: 1.2rem;	
}
.price-container ul li span {
	font-size: .85em;
	font-weight: 500;
}
.price-container .caution.center {
  width: 100%;
  text-align: center;
  display: block;
  font-size: var(--font-size-sm);
  margin-bottom: var(--space-sm);
  text-decoration: underline;
}

.button-section-vertical {
display: flex;
flex-wrap: wrap;
justify-items: center;
align-items: center;
gap :var(--space-xl);
width: 100%;
padding-top: var(--space-xxl);
}

/* マイアカウント */
.member-card, .orders-card {
	padding: var(--space-xs) var(--space-xs) var(--space-md);
	border: solid 1px #333;
}
.member-card {
  margin-top: 0;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  position: relative;
}

.member-card .info-group h3 {
margin-top: var(--space-xxs);
}
.member-card li.text-right {
  display: block;
}
.member-card li.text-right .edit-button {
    border: none;
    background: transparent;
    padding: 0;
    cursor: pointer;
}
.orders-card {
		padding: var(--space-xs) var(--space-md) var(--space-xs) var(--space-xs);
		font-size: 1rem;
	    display: flex;
    align-items: flex-start;
    width: 100%;
}
.orders-card img {
	width: calc(25% - 1.25rem);
	margin-right: 1.25rem;
}
.orders-card ul {
	width: 100%;
  margin-block: 0;
  margin-bottom: var(--space-xxxs);
}
.member-card li {
	list-style: none;
	/*text-align: center;*/
  display: flex;
  align-items: flex-end;
        padding-left: var(--space-xxs);
    padding-right: var(--space-xxs);
    width: 100%;
}
 .member-card li.user-name,
.member-card li.user-point {
      padding-left: var(--space-md);
    padding-right: var(--space-md);
}
.member-card li.member-card-highlight {
  position: absolute;
  top: calc(var(--space-xs) * -1);
  left: calc(var(--space-sm) * -1);
}
.member-card li.member-card-highlight h2 {
margin: 0;
line-height: 1;
font-size: .875rem;
padding: .25rem .5rem;
border: solid 1px white;
background: #666;
color: white;
}
.member-card:nth-of-type(n+2) li.member-card-highlight h2 {
border: solid 1px #111;
background: white;
color: #111;
}
.orders-card li {
	list-style: none;
	line-height: 2;
}
.orders-card .item-name {
	    display: inline-block;
    font-size: 1.25rem;
    margin: 10px 0;
    letter-spacing: .05em;
	line-height: 1.5;
}
.orders-card .item-name h3 {
margin-block: 0;
font-weight: 600;
font-size: var(--font-size-lg);
}
.orders-card .price-list {
	display: flex;
	justify-content: space-between;
}
.tile-container {
    display: flex;
    flex-wrap: wrap;
    max-width: 768px;
    margin: 20px auto;
	gap: 1rem;
}
.tile {
    font-weight: 400;
    line-height: 1.3;
    padding: 1.75rem .25rem;
    background: #fff;
    letter-spacing: 0;
	width: calc(50% - .5rem);
	text-align: center;
	    /*box-shadow: 0 3px 5px -2px rgba(0, 0, 0, .05);*/
	color: #333;
    border: solid 1px #e4e6eb;
}
.tile:hover {
	box-shadow: none;
}
.user-name {
	font-size: var(--font-size-lg);
	padding: var(--space-xs) 0 var(--space-sm);
}
.user-name h3 {
	display: inline-block;
	font-size: 1.5rem;
	margin: 0 var(--space-xs) 0 0;
	letter-spacing: .05em;
}
.logout {
	text-decoration: underline;
    display: block;
    margin: 8px 0 4px auto;
    font-size: .85rem;
    color: #333;
}
.link-right {
	text-align: right;
	font-size: .85rem;
	text-decoration: underline;
	display: block;
}
.user-point {
	font-size: .85rem;
}
.point-num {
	font-size: var(--font-size-lg);
	font-weight: 700;
	margin: 0 4px;
  line-height: 1.2;
}
.filter-form {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.filter-form .container:has(.button-block) {
  margin: var(--space-sm) auto;
}
.sidebar-actions {
  width: 100%;
  }

  /* news */
  .news-list {
    margin-top: 0;
  }
  .news-list__item {
    border-top: solid 1px #111;
  }
  .news-list__item:last-of-type {
    border-bottom: solid 1px #111;
  }
  .news-list__link {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
      padding: var(--space-md) var(--space-xxs);
  }
  .news-list__link:hover {
background: var(--color-bg-alt) ;
  }
  .news-list__content {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    position: relative;
  }
  .news-list__date {
   margin: 0 auto 0 0;
   font-size: 1.125rem;
  }
  .news-list__category,
  .news-article__category {
   margin: 0 0 0 auto;
      font-size: .875rem;
      background: #e4e6eb;
      padding: .125rem .5rem;
  }
  .news-list__title {
    width: 100%;
    margin: var(--space-xxs) 0;
  }
  .news-list__excerpt {
    font-size: .875rem;
      margin: var(--space-xxs) 0;
      color: #666;
  }
  .news-list__thumb {
    width: 100%;
    height: auto;
    aspect-ratio: 3 / 1;
    border-radius: 4px;
    overflow: hidden;
    position: relative;
  }
  .news-list__thumb img {
    object-fit: cover;
        aspect-ratio: 1 / 1;
    width: 100%;
  }

  

@media screen and (min-width: 576px) {
    .cards__title {
  margin: var(--space-xs) 0 var(--space-xxxs);
  }
  .cards--wide .cards__image-wrapper {
  width: 100px;
}
.cards--wide .cards__title-wrapper {
    width: calc(100% - var(--space-sm) - 100px);
}
.info-pay_h2-attention {
width:auto;
margin-right: 0;
}
}
@media screen and (min-width: 768px) {
  .brand-read {
    padding-left: 20px;
  }
.brand-container .button-line-black {
    margin-left: 20px;
}

  .button-block {      
  margin-left: calc(50% - 160px);
    margin-right: calc(50% - 160px);
}
.site-main-half .button-section-vertical .button-block  {
  margin-left: auto;
    margin-right: auto
} 
.button-block-left {
  margin: 0 calc(100% - 320px) var(--space-md) 0;
}

.info-send {
      gap: var(--space-xxl);
}
.tocart-link {
    margin: .5rem .25rem 0;
}

.acd-label {
  width: calc(100% - 100px);
}


  /* カード */
  .cards {
  grid-template-columns: repeat(3, 1fr);
  }
  .cards__item {
  margin-bottom: var(--space-xl);
  }
.cards__item > a:first-child {
/*  position: absolute; */
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}
.site-main-full:has(.mv) .cards__title,
.site-main-full:has(.mv) .cards__price {
font-size: var(--font-size-md);
  }
  .member-card li {
        padding-left: var(--space-xs);
    padding-right: var(--space-xs);
}
  .member-card li.user-name,
.member-card li.user-point {
      padding-left: var(--space-xl);
    padding-right: var(--space-xl);
}
  .cards-wide {
gap:var(--space-md);
  }



.attention-area-icon-container .card-icon {
  height: 1.25rem;
}
.attention-area-h2-container {
  gap: 1rem;
}
.attention-area-h2 {
  font-size: 1.15rem;
}
.attention-area-h2-container .attention-area-h2-textwrap {
width: calc(100% - 4.5rem);
}
.attention-area-h2-container .attention-area-h2-icon {
width: 3.5rem;
height: 3.5rem;
padding: .75rem;
}
.attention-area-confirm .attention-area-h2-container .attention-area-h2-textwrap {
width: calc(100% - 3.5rem);
}
.attention-area-confirm .attention-area-h2-container .attention-area-h2-icon {
        width: 3rem;
        height: 3rem;
        padding: .6rem;
    }
.info-pay_h2-attention {
    gap: .5rem;
}
.info-pay_h2-attention .attention-br-sp {
display: none;
}
.info-pay_h2-attention .attention-br-pc {
display: inline-block;
}


  /* title */
  .aside-title {
  font-size: var(--font-size-lg);
  }
  .search-title {
  font-size: var(--font-size-xl);
}
.info-account.acd-container h2, .info-address.acd-container h2, .info-pay.acd-container h2,
.info-account h2, .info-address h2, .info-pay h2 {
font-size: var(--font-size-xl);
}

/* label */


/* section */
.site-main-full .container-narrow,
.content-wrapper-full .title-narrow {
  max-width: 576px;
  margin: 0 auto;
  position: relative;
}

.content-wrapper-full:has(.site-main-full .container) .page-title {
  max-width: 1200px;
  padding-left: var(--space-xxl);
   padding-right: var(--space-xxl);
}

.orders-card .item-name h3 {
font-size: var(--font-size-lg);
}
.row .member-card {
width: calc(50% - (var(--space-md) / 2));
/*margin-bottom: 0;*/
}

.form-frame {
    padding: var(--space-xxs) var(--space-lg) var(--space-xl);
}

.product-info,
.product-images {
width: calc(50% - (var(--space-md) / 2));
}
.product-info {
  padding-left: .5rem;
}
.product-info .share {
    margin-bottom: var(--space-xl);
   margin-top: var(--space-xxxs);
}
.product-title {
  font-size: 1.65rem;
}
.product-info + .text-medium {
  margin-top: var(--space-md);
}

/* pop */
.dialog__container {
  padding: var(--space-xl) var(--space-xxl) var(--space-xxl);
}
.dialog__container .filter-form .container:has(.button-block) {
  display: flex;
  justify-content: center;
  margin: var(--space-xxxs) auto;
}

.paging a, .paging span {
	width: 3rem;
}

.news-list__content {
    width: calc(100% - 74px - var(--space-sm));
}
 .news-list__content {
    width: calc(100% - 100px - var(--space-sm));
 }
  .news-list__thumb {
    width: 100px;
    height: 100px;
  }


}
@media screen and (min-width: 992px) {
  .sidebar-section .button-block {
margin: var(--space-sm);
        width: calc(100% - (var(--space-sm) * 2));
line-height: normal;
}
/* ヘッダー */
.site-header {
  position: fixed;
  top: 0;
  z-index: 11;
  width: 100%;
  background-color: #fff;
  box-shadow: 0 5px 10px -6px rgba(0,0,0,.1);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-xs) var(--space-xxl);
}
.header-logo {
  line-height: 1.1;
}
.drawer-menu {
  margin: 0 0 0 auto;
}
.gnav-list {
  display: flex;
  justify-content: space-between;
  list-style: none;
  margin-block: 0;
}
.gnav-item:not(:last-child) {
  margin-right: 20px;
	display: flex;
	align-items: center;
}
.gnav-item a {
  position: relative;
  font-size: 13px;
  line-height: 1;
  font-weight: 400;
  display: inline-block;
  padding: 5px 0;
  transition: .3s;
  letter-spacing: .05em;
}
.gnav-item a:after {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  content: "";
  transition: .3s;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  background-color: var(--color-secondary);
}
.gnav-item a.icon-item:hover:after {
	width: 0;
}
.gnav-item a:hover:after {
  width: 100%;
}

  /* パンくず */
.bread ol {
  margin: var(--space-lg) 0 0;
  padding-left: var(--space-xxl);
}

/* cards */
.cards {
  grid-template-columns: repeat(3, 1fr);
}
.content-wrapper-full .site-main-full:not(:has(.mv)) .cards {
  grid-template-columns: repeat(4, 1fr);
}
.site-main-full:has(.mv) .cards__title {
  margin: var(--space-sm) 0 var(--space-xxxs);
}
.container-number-of-unit .button-group {
  gap: .75rem;
}


.page-title {
  width: 100%;
  padding: 0;
  padding-top: /*var(--space-lg)*/var(--space-md);
}
.price-container {
  width: 100%;
}
.sort-section , .category-section {
  width: 100%;
}
}
@media screen and (min-width: 1200px) { 
.list-button-favorite {
    bottom: .75rem;
    right: .75rem;
}
}
@media screen and (max-width: 992px) {
  .section:has(.cards--wide) {
padding: 0 var(--space-md) var(--space-sm);
}
.header-logo {
position: fixed;
z-index: 101;
  margin-left: .3rem;
}
.gnav-item.header-logo.show-below-lg {
  top: 0;
  margin-left: 0;
}
}

@media screen and (max-width: 768px) {
.cards.cards--wide {
    gap: var(--space-xs);
}
.cards--wide .cards__item form {
 margin: 1rem 0 0 auto; 
 padding: 0;
}
.container-number-of-unit .button-group {
  width: 4rem;
  margin-left: .5rem;
}
.button-line-black {
  margin-left: auto;
  margin-right: auto;
    padding: 1rem 2rem;
    display: block;
    text-align: center;
}
.contact .button-letter {
      padding: 1rem 2rem;
}
.menu-list {
    display: block;
    margin-bottom: 0;
  }
  .menu-item {
    width: 100%;
    margin-bottom: 35px;
  }
  .menu-item:last-child {
    margin-bottom: 0;
  }
  .menu-name {
    margin-bottom: 5px;
  }
  .menu-text {
    font-size: 13px;
    line-height: 1.7;
  }
.gnav-item:has(.icon-item) {
	width: calc(50% - .5rem);
}
	.icon-cart img {
		width: 42px;
		height: auto;	
	}
	.gnav-item:has(.icon-item) a,
	.gnav-item:has(.icon-item) a .icon-cart{
		width: 100%;
		padding-left: 0;
		padding-right: 0;
		justify-content: center;
        display: flex;
		flex-wrap: wrap;
	}
	.icon-text {
		font-size: .9rem;
		width: 100%;
		text-align: center;
	}
	.cart-mark {
        right: 20%;
    top: 0;
}

  /* カード大 */
.cards__item--large {
  width: 100%;
}
.container-narrow, .title-narrow {
  max-width: 480px;
  margin: 0 auto;
}

.container:has(.product-images) {
    margin-top: 0;
}
.product-images {
  width: calc(100% + (var(--space-md) * 2));
  margin-left: calc(var(--space-md) * -1);
}
.number-button-container .button-block {
margin:var(--space-sm) 0 var(--space-sm) auto;
}
.product-info .number-button-container .button-block {
margin:var(--space-sm) .5rem var(--space-sm) 0;
    width: calc(100% - 4rem - 1rem);
}

}
@media screen and (max-width: 992px) {
.site-main-half form section:first-child:has(.no-edit-normal) {
padding: var(--space-lg) 0;
}
}
@media screen and (max-width: 576px) {
.container-narrow, .title-narrow,
.site-main-full .container-narrow {
width: 100%;
padding: 0 var(--space-md);
}
/*.product-info .number-button-container .button-block {
margin:var(--space-sm) auto;
}*/
.delete.delete-upperright {
    height: 1.65rem;
    width: 1.65rem;
}
}
@media screen and (min-width: 768px) and (max-width: 992px) {
.content-wrapper-full:has(.site-main-full .container) .page-title {
  padding-left: 0;
  padding-right: 0;
}
    .brand-container .button-line-black {
        width: calc(100% - 40px);
        text-align: center;
        padding-left: 0;
        padding-right: 0;
    }
}
@media screen and (min-width: 576px) and (max-width: 992px) {
.cards--wide .cards__item form {
    margin: 0 0 0 auto;
}
  .info-pay_h2-attention .attention-br-sp {
display: none;
}
  .info-pay_h2-attention .attention-br-tab {
display: none;
}
.info-pay_h2-attention .attention-br-pc {
display: none;
}
}
@media screen and (min-width: 992px) and (max-width: 1200px) {
.product-info .number-button-container .specification-select-container {
    margin-right: .5rem;
    width: calc(100% - 124px - 8px - .5rem);
}
}
}

@layer utilities {
.text-center { text-align: center; }
.text-red { color: var(--color-error); }
.text-small { font-size: .8em; }
.cards__price .text-small { font-size: .7em; }
.cards--wide .cards__price .text-small { font-size: .65em; }
.product-price .text-small,
.product-info .price-down-price .text-small {
font-size: .6em;
}
.unit-text-small {
	font-size: .9em;
	margin: 0 2px;
}
.text-center {	text-align: center; }
.text-right { text-align: right; }
.text-link { text-decoration: underline; }
.required {
	font-size: var(--font-size-xs);
	color: #fff;
	background: var(--color-primary);
	padding: 3px 6px 1px;
	vertical-align: middle;
	margin-left: .35rem;
	border-radius: 1px;
	white-space: nowrap;
  font-weight: 300;
}
.flex {
  display: flex;
  align-items: center;
  justify-content: center;
}
.container-number-of-unit.flex {
  justify-content: flex-start;
  align-items: flex-start;
}
.flex.item-quantity {
      justify-content: flex-start;
    align-items: flex-end;
}
.visually-hidden { 
  position: absolute;
  width: 1px; 
  height: 1px; 
  margin: -1px; 
  padding: 0; 
  overflow: hidden;
  clip: rect(0, 0, 0, 0); 
  border: 0;
}
.display-none {
	display: none;
}
.spacing-none {
	letter-spacing: 0;
}
.content-wrapper-full{
/*gap: 0;*/
margin-block: 0;
margin-top: var(--space-md);
}
.content-wrapper-full:has(.mv) {
margin-top: 0;
}
.section:first-child {
  padding-top: 0 ;
}
.stack {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
}
.stack .text-medium,
.stack .label-container,
.stack .box-link,
.stack .text-right {
  width: 100%;
}
.stack .form-group + .label-container {
margin: var(--space-xl) 0 var(--space-sm);
}
/* ラジオボタンの蛇腹 */
.accordionbox > label {
	display: block;
	padding: var(--space-xl) 0 var(--space-xxs);
	position: relative;
	z-index: 1;
  cursor: pointer;
}
.accordionbox > label:first-of-type {
  margin-top: calc(var(--space-xl) * -1);
}
.accordionbox > label > .pay-select {
	display: none;
}
.accordionbox input:checked + .radio-icon + .pay-select {
	display: block;
	margin-top: 1.5rem;
}
.accordionbox .pay-select {
   display: block;
}
.accordionbox > label > input {
   display: none;
}
#AmazonPayButton {
	display: block;
	  margin: 0 auto;
    width: calc(100% - (var(--space-xl) * 2)) !important;
    max-width: 320px;
	min-width: 174px;
}
@media screen and (min-width: 768px) {
#AmazonPayButton {
	       margin: 0 auto;
}
}
.accordionbox > label::before {
	content: "";
	background: #e4e6eb;
	height: 2rem;
	width: calc(100% + 40px);
  margin-left: -20px;
	position: absolute;	
	top: 28px;
	z-index: -1;
      border-left: 2px solid var(--color-primary);
}
@media screen and (max-width: 480px) {
#AmazonPayButton {
	margin: 0 auto;
  width: 100% !important;
}
}

@media screen and (max-width: 768px) {
	#AmazonPayButton {
  /*margin: 0 var(--space-xl);*/
	}
	.accordionbox > label {
    display: block;
    /*padding: 40px 0 0;*/
	}
	.accordionbox > label::before {
	content: "";
	position: absolute;	
	}
	.info-pay:not(:has(.no-edit-normal)) {
        padding: 0 var(--space-md) var(--space-xxl);
  }
	
}
.dialog__container .stack .form-group + .label-container {
margin: var(--space-sm) 0 var(--space-sm); 
}
.dialog__container .stack .form-group + .label-container:last-of-type {
margin: var(--space-sm) 0 var(--space-md); 
}
.dialog__container .stack .label-container + .label-container {
margin: 0; 
}
.dialog__container .stack .label-container + .label-container:last-of-type {
margin: 0 0 var(--space-md); 
}
.row {
  display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
  align-items: flex-start;   
}
/*.row:has(.member-card) {
margin-bottom: var(--space-sm);
}*/
.padTsm {
  padding-top: var(--space-sm);
}
.padYsm {
  padding-top: var(--space-sm);
  padding-bottom: var(--space-sm);
}
.padT0 {
  padding-top: 0;
}
.padB0 {
  padding-bottom: 0;
}


/* ブレークポイント */
.show-below-sm { display: inline-block; }
.show-below-md { display: inline-block; }
.show-below-lg { display: inline-block; }
.show-below-xl { display: inline-block; }

.show-above-sm { display: none; }
.show-above-md { display: none; }
.show-above-lg { display: none; }
.show-above-xl { display: none; }

@media screen and (min-width: 576px) {
.show-below-sm { display: none; }
.show-above-sm { display: inline-block; }
}
@media screen and (min-width: 768px) {
.show-below-md { display: none; }
.show-above-md { display: inline-block; }
}
@media screen and (min-width: 992px) {
.show-below-lg { display: none; }
.show-above-lg { display: inline-block; }
}
@media screen and (min-width: 1200px) {
.show-below-xl { display: none; }
.show-above-xl { display: inline-block; }
}

@media screen and (min-width: 992px) {
      .content-wrapper, .content-wrapper-full {
        margin-top: 0;
      }
    }

}

/* 上書き */
.header-logo {
  font-size: 15px;
  padding: 0;
  margin-block: auto;
}
.acd-content .button-short {
	font-size: var(--font-size-sm);
  line-height: 1.5;
}
.page-title {
  font-size: var(--font-size-xxl);
  margin-block: 0;
  margin: var(--space-sm) auto var(--space-xxs);
}
.cards.cards--wide {
  grid-template-columns: 1fr;
  margin-block: auto;
  margin: 0;
}
.price-container .cards.cards--wide {
  margin-bottom: var(--space-sm);
}
button.btn-number {
  border: none;
  font-family: "Montserrat","Helvetica Neue",Arial,"Hiragino Kaku Gothic ProN","Hiragino Sans",Meiryo,sans-serif;
  font-size: 2rem;
}
.form-group .button-short,
.info-group .button-short {
    font-size: .875rem;
}
.form-frame .form-group .button-short,
.form-frame .info-group .button-short {
    font-size: .825rem;
}

.page-title .tune-button {
    font-size: .875rem;
}
.product-title {
  font-size: 1.5rem;
  margin-block: auto;
  line-height: 1.35;
}
.product-price, .price-down {
    margin-block: auto;
}
.product-info .price-down {
    margin: 8px 0 8px;
 }
 .product-info:has(.price-down) .product-price {
  margin-top: var(--space-xxs);
 }
 .product-spec th, .product-spec td {
    border-right: solid 1px transparent;
    border-left: solid 1px transparent;
    padding: .5rem 1rem;
}
.specification-select-container,
.register-select:has(.select-container) {
  position: relative;
}
.accordionbox .select-container:not(:has(.no-edit-normal)) {
padding-right: 1.25rem;
}
.specification-select-container::after,
.register-select:has(.select-container):not(:has(.no-edit-normal))::after {
    content: "";
    position: absolute;
    top: calc(50% + .4rem);
    right: .75rem;
    width: .5rem;
    height: .5rem;
    border-right: 1px solid #111;
    border-bottom: 1px solid #111;
    transform: rotate(45deg) translateY(-50%);
}
.register-select:has(.select-container):not(:has(.no-edit-normal))::after {
    top: calc(50% - .2rem);
}
.specification-select-container .specification-select {
-webkit-appearance: none;
appearance: none;
background: #fff;
border: solid var(--color-secondary) 1px;
color: var(--color-secondary);
font-size: .9rem;
    padding: .5rem;
    border-radius: 2px;
}

.swiper-mv-images.mv-images01 {
object-position: right bottom;
  height: 115%;
  width: 115%;
  max-block-size: 115%;
    max-inline-size: 115%;
        transform: translateX(-10%);
}
.swiper-pagination_mv {
bottom: 1rem !important;
    position: absolute;
    width: 100%;
    z-index: 8;
    display: flex;
    justify-content: center;
}

.swiper-pagination_mv .swiper-pagination-bullet {
  background: #fff;
}
.swiper-pagination_mv .swiper-pagination-bullet.swiper-pagination-bullet-active {
background: #111;
}

.product-images {
  position: relative;
}
#zoom-lens {
  position: absolute;
  border: 2px solid #aaa;
  width: 120px;
  height: 120px;
  background: rgba(255,255,255,0.3);
  display: none;
  pointer-events: none;
  z-index: 10;
}
#zoom-result {
  position: absolute;
  left: calc(100% + 20px + .5rem);
  /*top: 5rem;*/ top: calc((100% - 82.5px) / 2);
  transform: translateY(-50%);
  width: 300px;
  height: 300px;
  background-repeat: no-repeat;
  display: none;
  z-index: 11;
}

@media screen and (min-width: 1340px) { 
    .swiper-mv-images.mv-images01 {
object-position: right center;
  height: 100%;
  width: 100%;
  max-block-size: 100%;
    max-inline-size: 100%;
        transform: none;
}
}
@media screen and (min-width:768px) {
.product-title {
  margin-top: .25rem;
}
}
@media screen and (min-width:992px) {
.header-logo {
  font-size: 20px;
}
.button-transparent.show-above-lg {
 display: block;
}
.page-title {
  font-size: var(--font-size-xxl);
}
.news-article__title.page-title {
font-size: var(--font-size-xl);
}
.site-header {
  height: 67px;
}
.img-logo {
  height: 34px;
}
.site-main-half .page-title.show-above-lg.title-adjust {
    margin-top: 0;
    margin-bottom: 0;
    padding-top: 0;
    font-size: 1.35rem;
}
.text-medium-adjust {
  font-size: .9rem;
}
}
@media screen and (min-width:768px) and (max-width:991px) {
.price-container.acd-container + .show-below-lg {
width: 100%;
}
}
@media screen and (max-width:768px) {
.product-images .swiper-thumbs {
  padding-left: var(--space-md);
  padding-right: var(--space-md);
}
  #zoom-lens, #zoom-result {
    display: none !important;
  }
}
/* icon font */
.material-symbols-outlined {
  font-family: 'Material Symbols Outlined';
  font-size: var(--font-size-xxxl);
   font-variation-settings:
    'FILL' 0,
    'wght' 300,
    'GRAD' 0,
    'opsz' 48;
}
    .gnav-item a:hover .material-symbols-outlined {
color: var(--color-secondary-hover);
    }
.aside-search-button .material-symbols-outlined {
  color: var(--color-text-inverse);
  font-size: var(--font-size-xl);
  margin: auto;
    display: block;
}
.error-message .material-symbols-outlined {
  font-size: var(--font-size-lg);
  vertical-align: text-bottom;
}
.page-title .tune-button .material-symbols-outlined {
    font-size: larger;
}
.button-favorite,
.button-favorite .material-symbols-outlined {
  transition: var(--transition-fast);
}
.button-favorite .material-symbols-outlined {
  font-size: 28px;
}
.button-favorite:not(.favorite-on):hover {
box-shadow: none;
}
.button-favorite:not(.favorite-on):hover .material-symbols-outlined {
  color: #ff555b;
}
.button-favorite.list-button-favorite .material-symbols-outlined {
    font-size: 20px;
}
.favorite-on .material-symbols-outlined {
  color: /*#ff555b*/var(--color-secondary);
 font-variation-settings:
    'FILL' 1,
    'wght' 300,
    'GRAD' 1,
    'opsz' 48;
}
.site-sidebar-half .price-container .acd-label,
.price-container .acd-label.acd-label--close-button,
.price-container.price-confirm .acd-label {
    width: fit-content;
    display: block;
    font-size: var(--font-size-sm);
    text-align: center;
    margin: calc(var(--space-xxs) * -1) auto var(--space-xs) auto;
    text-decoration: underline;
            transform: translateX(-.5rem);
}
.price-container .acd-label.acd-label--close-button {
    margin: 0 auto var(--space-xs) auto;
}
.site-sidebar-half .price-container .acd-check:checked + .acd-label,
.price-container.price-confirm .acd-check:checked + .acd-label {
display: none;
}
.site-sidebar-half .price-container .acd-label:after,
.site-sidebar-half .price-container .acd-check:checked + .acd-label:after,
.price-container .acd-label.acd-label--close-button:after,
.price-container .acd-check:checked + .acd-label.acd-label--close-button:after,
.price-container.price-confirm .acd-label:after {
     font-family: 'Material Symbols Outlined';
  content: "\e313";
  font-size: 20px;
  display: inline-block;
  right: -1.25rem;
      transform: translateY(-85%);
  vertical-align: middle;
   font-variation-settings:
    'FILL' 0,
    'wght' 300,
    'GRAD' 1,
    'opsz' 48; 
}
.price-container.price-confirm .acd-label:after {
transform: translateY(-50%);
}
.site-sidebar-half .price-container .acd-check:checked + .acd-label:after {
   font-family: 'Material Symbols Outlined';
  content: "\e316";
   font-variation-settings:
    'FILL' 0,
    'wght' 300,
    'GRAD' 1,
    'opsz' 48; 
}
.price-container.show-below-lg .acd-label.acd-label--close-button:after {
      transform: translateY(-55%);
}
.price-container .acd-label.acd-label--close-button:after {
   content: "\e316"; 
}
.price-container .acd-check:checked + .acd-label.acd-label--close-button:after {
  content: "\e313";
}
.delete.delete-upperright .material-symbols-outlined {
    font-size: var(--font-size-lg);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
@media screen and (max-width: 991px) {
.swiper-mv-images.mv-images01 {
object-position: right bottom;
  height: 107.5%;
  width: 107.5%;
  max-block-size: 107.5%;
    max-inline-size: 107.5%;
    transform: translateX(-5%);
}
}

@media screen and (max-width: 768px) {
.button-favorite .material-symbols-outlined {
  font-size: 32px; 
}
.swiper-mv-images.mv-images01 {
  object-position: center top;
    height: 102.5%;
  width: 102.5%;
  max-block-size: 102.5%;
    max-inline-size: 102.5%;
    transform:none;
}
}
@media screen and (max-width: 576px) {
.button-favorite.list-button-favorite .material-symbols-outlined {
    font-size: 16px;
}
.delete.delete-upperright .material-symbols-outlined {
    font-size: var(--font-size-md);
  }
}

