@charset "utf-8";
/*
Theme Name: RESENSE 2026
Author: adgraphy
Author URI: https://adgraphy.jp
Version: 1.0
License: Adgraphy all rights reserved.
*/

/*------------------------------------------------
var
--------------------------------------------------*/
:root {
  /* space */
  --space-4: 0.4rem;
  --space-8: 0.8rem;
  --space-16: 1.6rem;
  --space-24: 2.4rem;
  --space-32: 3.2rem;
  --space-40: 4.0rem;
  --space-48: 4.8rem;
  --space-64: 6.4rem;
  --space-80: 8.0rem;
  --space-96: 9.6rem;
  --space-128: 12.8rem;
  --space-256: 25.6rem;

  /* color */
  --color-darkgray: #595757;
  --color-gray: #b5b6b6;
  --color-gray2: #4c4948;
  --color-lightgray: #f7f7f7;
  --color-white: #fff;
  --color-black: #231815;
  --color-pureblack: #121212;
  --color-navy: #24304a;
  --color-beige: #efece8;

  /* header */
  --header-h: 60px;
  --header-dur: 1s;
  --header-ease: cubic-bezier(.16,1,.3,1);
}
@media only screen and (max-width: 540px) {
  :root {
    --header-h: 56px;
  }  
}


/*------------------------------------------------
reset
--------------------------------------------------*/
*,
*::before,
*::after {
  box-sizing: border-box;
}
html, body {
  margin: 0;
  padding: 0;
}
img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
  height: auto;
}
ul, ol {
  margin: 0;
  padding: 0;
  list-style: none;
}
h1,h2,h3,h4,h5,h6,
p, figure, blockquote, dl, dd {
  margin: 0;
}
a {
  color: inherit;
  text-decoration: none;
}
button, input, textarea, select {
  font: inherit;
  border: none;
  background: none;
  color: inherit;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  letter-spacing: inherit;
}
button{
  cursor: pointer;
}
em, address{
  font: inherit;
}

/*------------------------------------------------
base
--------------------------------------------------*/
html{
  font-size: 10px;
  word-break: normal;
  -webkit-text-size-adjust: 100%;
}
body{
  font-size: 1.6rem;
  font-weight: 300;
  font-family: "Noto Serif JP", serif;
  -webkit-text-size-adjust: 100%;
  letter-spacing: 0.02em;
  line-height: 2;
  color: var(--color-black);
  background: #FFF;
}
body.scrollnone{
  overflow:hidden !important;
  height:100% !important;
}
p{
  line-break: strict;
  overflow-wrap: break-word;
  word-break: normal;
}
th, td{
  overflow-wrap: anywhere;
  word-break: normal;
  font-weight: inherit;
}
p > a,
td > a{
  text-decoration: underline;
  color: var(--color-navy);
}
.nolink{
  pointer-events: none;
}
h1,h2,h3,h4,h5,h6,h7{
  font-weight: 400;
  font-size: inherit;
  line-height: 1.4;
}




/*------------------------------------------------
layout
--------------------------------------------------*/
.container{
  padding-left: 5%;
  padding-right: 5%;
  width: 100%;
}
.container.narrow{
  width: calc(1200px + 10vw);
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}
.flexSpace {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.flexStart{
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
}
.flexCenter{
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}
.flexEnd{
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
}
.flexSpace.reverse,
.flexStart.reverse,
.flexEnd.reverse,
.flexCenter.reverse{
	flex-direction: row-reverse;
}
.flexSpace.center,
.flexStart.center,
.flexEnd.center,
.flexCenter.center{
	align-items: center;
}
.flexSpace.bottom,
.flexStart.bottom,
.flexEnd.bottom,
.flexCenter.bottom{
	align-items: flex-end;
}
.gap4{ gap: 0.4rem;}
.gap8{ gap: 0.8rem;}
.gap16{ gap: 1.6rem;}
.gap24{ gap: 2.4rem;}
.gap40{ gap: 4rem;}
.clearfix:after {
	content: "";
	display: block;
	clear: both;
}
.anchor{
	height: 0;
	display: block;
	margin-top: -100px;
	padding-top: 100px;
	position: relative;
	z-index: -99999;
}


/*------------------------------------------------
margin
--------------------------------------------------*/
.mt4{ margin-top:var(--space-4);}
.mt8{ margin-top:var(--space-8);}
.mt16{ margin-top:var(--space-16);}
.mt24{ margin-top:var(--space-24);}
.mt32{ margin-top:var(--space-32);}
.mt40{ margin-top:var(--space-40);}
.mt48{ margin-top:var(--space-48);}
.mt64{ margin-top:var(--space-64);}
.mt80{ margin-top:var(--space-80);}
.mt96{ margin-top:var(--space-96);}
.mt128{ margin-top:var(--space-128);}
.mt256{ margin-top:var(--space-256);}
.mb4{ margin-bottom:var(--space-4);}
.mb8{ margin-bottom:var(--space-8);}
.mb16{ margin-bottom:var(--space-16);}
.mb24{ margin-bottom:var(--space-24);}
.mb32{ margin-bottom:var(--space-32);}
.mb40{ margin-bottom:var(--space-40);}
.mb48{ margin-bottom:var(--space-48);}
.mb64{ margin-bottom:var(--space-64);}
.mb80{ margin-bottom:var(--space-80);}
.mb96{ margin-bottom:var(--space-96);}
.mb128{ margin-bottom:var(--space-128);}
.mb256{ margin-bottom:var(--space-256);}
.pt4{ padding-top:var(--space-4);}
.pt8{ padding-top:var(--space-8);}
.pt16{ padding-top:var(--space-16);}
.pt24{ padding-top:var(--space-24);}
.pt32{ padding-top:var(--space-32);}
.pt40{ padding-top:var(--space-40);}
.pt48{ padding-top:var(--space-48);}
.pt64{ padding-top:var(--space-64);}
.pt80{ padding-top:var(--space-80);}
.pt96{ padding-top:var(--space-96);}
.pt128{ padding-top:var(--space-128);}
.pt256{ padding-top:var(--space-256);}
.pb4{ padding-bottom:var(--space-4);}
.pb8{ padding-bottom:var(--space-8);}
.pb16{ padding-bottom:var(--space-16);}
.pb24{ padding-bottom:var(--space-24);}
.pb32{ padding-bottom:var(--space-32);}
.pb40{ padding-bottom:var(--space-40);}
.pb48{ padding-bottom:var(--space-48);}
.pb64{ padding-bottom:var(--space-64);}
.pb80{ padding-bottom:var(--space-80);}
.pb96{ padding-bottom:var(--space-96);}
.pb128{ padding-bottom:var(--space-128);}
.pb256{ padding-bottom:var(--space-256);}
.mlr_auto{
	margin-left: auto;
	margin-right: auto;
}

/*------------------------------------------------
font
--------------------------------------------------*/
.sans{
  font-family: "Inter", "Noto Sans JP", sans-serif;
  font-weight: 300;
}
.garamond{
  font-family: "Cormorant Garamond", serif;
  font-weight: 400;
}
.fz8{ font-size: 0.8rem;}
.fz10{ font-size: 1rem; }
.fz12{ font-size: 1.2rem; }
.fz14{ font-size: 1.4rem; }
.fz15{ font-size: 1.5rem; }
.fz16{ font-size: 1.6rem;}
.fz17{ font-size: 1.7rem;}
.fz18{ font-size: 1.8rem;}
.fz20{ font-size: 2rem;}
.fz24{ font-size: clamp(1.6rem, 1.4rem + 0.8vw, 2.4rem);}
.fz32{ font-size: clamp(2.8rem, 1.5rem + 1.2vw, 3.2rem);}
.fz40{ font-size: clamp(2rem, 1.6rem + 1.5vw, 4rem); }
.fz48{ font-size: clamp(2.2rem, 1.8rem + 2vw, 4.8rem);}
.fw500{ font-weight: 500;}
.fw600{ font-weight: 600;}
.fw700{ font-weight: 700;}
.ls50{ letter-spacing: 0.05em;}
.ls100{ letter-spacing: 0.1em;}
.ls150{ letter-spacing: 0.15em;}
.ls250{ letter-spacing: 0.25em;}
.ls300{ letter-spacing: 0.3em;}
.ls400{ letter-spacing: 0.4em;}
.ls500{ letter-spacing: 0.5em;}
.taCenter{ text-align: center;}

/*------------------------------------------------
color
--------------------------------------------------*/
.darkgray{ color: var(--color-darkgray);}
.gray{ color: var(--color-gray);}
.lightgray{ color: var(--color-lightgray);}
.navy{ color: var(--color-navy);}
.white{ color: var(--color-white);}
.bg_black{
  background-color: var(--color-black);
  color: var(--color-lightgray);
}
.bg_pureblack{
  background-color: var(--color-pureblack);
  color: var(--color-lightgray);
}
.bg_navy{
  background-color: var(--color-navy);
  color: var(--color-lightgray);
}
.bg_beige{ background-color: var(--color-beige);}
.bg_white{ background-color: var(--color-white);}
.bg_lightgray{ background-color: var(--color-lightgray);}

/*------------------------------------------------
components
--------------------------------------------------*/
.objectfit{
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.title01{
  border-bottom: 2px solid var(--color-black);
  color: var(--color-gray2);
  padding-bottom: 2px;
  padding-left: 24px;
}
.nav01 select{
  display: block;
  width: 240px;
  padding: 10px 20px;
  border: 0.3px solid var(--color-black);
  border-radius: 100px;
  background-image: url("data:image/svg+xml;utf8,\
<svg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6' fill='none'>\
<path fill='%23000' stroke='%23000' stroke-width='0.2' d='M0.519531 1.52441C0.333311 1.2431 0.365028 0.860215 0.612305 0.612305L0.725586 0.519531C0.9666 0.359958 1.28207 0.360188 1.52344 0.519531L1.6377 0.612305L4.87402 3.85059L8.11133 0.613281V0.612305C8.35897 0.364031 8.74198 0.333868 9.02344 0.519531L9.13672 0.612305C9.38483 0.85978 9.41541 1.2419 9.22949 1.52344L9.13672 1.6377L5.38672 5.3877H5.3877C5.10492 5.6712 4.64569 5.67082 4.3623 5.3877L0.612305 1.6377L0.519531 1.52441Z'/>\
</svg>");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 10px 6px;
  padding-right: 32px;
}
.nav01 a{
  display: block;
  width: 240px;
  padding: 8px 20px;
  border: 0.3px solid var(--color-black);
  border-radius: 100px;
  background-image: url("data:image/svg+xml;utf8,\
<svg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6' fill='none'>\
<path fill='%23000' stroke='%23000' stroke-width='0.2' d='M0.519531 1.52441C0.333311 1.2431 0.365028 0.860215 0.612305 0.612305L0.725586 0.519531C0.9666 0.359958 1.28207 0.360188 1.52344 0.519531L1.6377 0.612305L4.87402 3.85059L8.11133 0.613281V0.612305C8.35897 0.364031 8.74198 0.333868 9.02344 0.519531L9.13672 0.612305C9.38483 0.85978 9.41541 1.2419 9.22949 1.52344L9.13672 1.6377L5.38672 5.3877H5.3877C5.10492 5.6712 4.64569 5.67082 4.3623 5.3877L0.612305 1.6377L0.519531 1.52441Z'/>\
</svg>");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 10px 6px;
  padding-right: 48px;
}
.list_col4 > li{
  width: calc((100% - 64px) / 4);
}
.list_col4 > li > a{
  display: block;
}
.list_col4 > li .image{
  aspect-ratio: 3 / 2;
}
.list_col4.as_23 > li .image{
  aspect-ratio: 2 / 3;
}
.list_col4.gap24{
  gap: 4rem 2.4rem;
}
.list_col4.gap24 li{
  width: calc((100% - 7.2rem) / 4);
}
.list_col5 > li{
  width: calc((100% - 80px) / 5);
}
.list_col5 > li > a{
  display: block;
}
.list_col5 > li .image{
  aspect-ratio: 3 / 2;
}
.list_col5.as_23 > li .image{
  aspect-ratio: 2 / 3;
}
.list_col5.gap24{
  gap: 4rem 2.4rem;
}


a.hover_zoom .image{
  overflow: hidden;
}
a.hover_zoom .image img{
  transition: all 0.5s ease;
}
a.hover_zoom:hover .image img{
  transform: scale(1.05);
}
.btn01{
  display: inline-flex;
  justify-content: center;
  padding: 8px 50px;
  border-radius: 64px;
  transition: all 0.5s ease;
  border: 0.3px solid var(--color-black);
  width: 360px;
  max-width: 100%;
  text-align: center;
}
.white .btn01{
  border-color: var(--color-white);
}
.btn01.bg_white:hover{
  color: var(--color-black);
  border: none
}
.btn01.w100p{
  width: 100%;
}
.overlay_text{
  position: relative;
  display: block;
}
.overlay_text .text{
  position: absolute;
  z-index: 99;
  bottom: 0;
  left: 0;
  padding: 16px;
}
.stock_list li{
  width: calc((100% - 64px) / 5);
}
.stock_list li a{
  position: relative;
}
.stock_list li .price{
  text-align: right;
}
.new{
  position: absolute;
  top: 5px;
  left: 5px;
  z-index: 9;
  padding: 4px 8px;
  line-height: 1;
  border-radius: 100px;
  background-color: var(--color-beige);
}
a:has(.new){
  position: relative;
}
.stock_list li .title{
  white-space: nowrap;
  overflow: hidden;
  text-overflow: clip;
}
.swiper-button-prev::after,
.swiper-button-next::after{
  display: none;
}
.pagination ul{
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 4px;
}
.pagination ul li a,
.pagination ul li span{
  display: flex;
  align-items: center;
  justify-content: center;

  width: 4rem;
  height: 4rem;
  max-width: calc((100vw - 10vw - 36px) / 10);
  max-height: calc((100vw - 10vw - 36px) / 10);

  border: 1px solid #ddd;
  background-color: var(--color-lightgray);
  text-align: center;

  line-height: 1;
}
.pagination ul li span.current,
.pagination ul li a:hover{
  background-color: var(--color-black);
  border-color: var(--color-black);
  color: var(--color-white);
}
.pagination ul li a{
  transition: background 0.5s ease, color 0.5s ease, border 0.5s ease;
}
.pagination ul li a.prev,
.pagination ul li a.next{
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3E%3Cpath d='M2 1l3 3-3 3' fill='none' stroke='%23666' stroke-width='1.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 9px 12px;
  font-size: 0;
  overflow: hidden;
}
.pagination ul li a.prev{
  transform: rotate(180deg);
}
.pagination ul li a.prev:hover,
.pagination ul li a.next:hover{
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3E%3Cpath d='M2 1l3 3-3 3' fill='none' stroke='%23fff' stroke-width='1.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

/*------------------------------------------------
header
--------------------------------------------------*/
body{
  padding-top: var(--header-h);
}
#header{
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 999999;
  height: var(--header-h);
  transition: background 0.3s ease;
  background-color: var(--color-white);
}
body.scroll #header{
  background-color: var(--color-beige);
  box-shadow: 0 0 5px rgba(0,0,0,0.1);
}
#header .inner{
  height: 100%;
}
#header h1{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
}
#header h1 a svg{
  color: var(--color-black);
  width: 192px;
}
#header form{
  position: relative;
}
#header form input{
  background-color: var(--color-lightgray);
  height: 40px;
  width: 300px;
  border-radius: 20px;
  padding: 0 24px 0 64px;
}
#header form button{
  position: absolute;
  top: 50%;
  left: 24px;
  transform: translateY(-50%);
}
.header_nav_menu02 li a{
  display: block;
  text-indent: -9999px;
  background: no-repeat center center;
  background-size: 100%;
  width: 26px;
  height: 23px;
}
.header_nav_menu02 li.youtube a{
  background-image: url("assets/images/common/icon_youtube_gray.png");
}
.header_nav_menu02 li.instagram a{
  background-image: url("assets/images/common/icon_instagram_gray.png");
}
.header_nav_menu02 li.facebook a{
  background-image: url("assets/images/common/icon_facebook_gray.png");
}
.header_nav_menu02 li.podcast a{
  background-image: url("assets/images/common/icon_podcast_gray.png");
}
#breadcrumb ol li + li::before{
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  margin: 0 8px 2px;
  background: no-repeat center / contain url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3E%3Cpath d='M2 1l3 3-3 3' fill='none' stroke='%23666' stroke-width='1.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  vertical-align: middle;
}

/*------------------------------------------------
footer
--------------------------------------------------*/
#footer_shoplist h2{
  text-indent: -9999px;
  background: url("assets/images/common/symbolmark_black.png") no-repeat center top;
  background-size: 84px;
  height: 95px;
}
.shoplist{
  flex-wrap: nowrap;
}
.shoplist_item{
  padding: 0 40px;
  border-left: 0.3px solid var(--color-gray2);
  display: flex;
  flex-direction: column;
}
.shoplist_item:last-of-type{
  border-right: 0.3px solid var(--color-gray2);
}
.shoplist_item h3{
  text-indent: -9999px;
  width: 100%;
  height: 40px;
  background: no-repeat center center;
  background-size: 150px;
}
.shoplist_item.shoplist_01 h3{
  background-image: url("assets/images/common/shoplist_logo01.png");
}
.shoplist_item.shoplist_02 h3{
  background-image: url("assets/images/common/shoplist_logo02.png");
}
.shoplist_item.shoplist_03 h3{
  background-image: url("assets/images/common/shoplist_logo03.png");
}
.shoplist_item.shoplist_04 h3{
  background-image: url("assets/images/common/shoplist_logo04.png");
}
.shoplist_item.shoplist_05 h3{
  background-image: url("assets/images/common/shoplist_logo05.png");
}
.shoplist_item.shoplist_06 h3{
  background-image: url("assets/images/common/shoplist_logo06.png");
}
.shoplist_item .catchcopy{
  flex-grow: 1;
}
.shoplist_item .links li{
  width: calc((100% - 16px) / 3);
}
.shoplist_item .links li a{
  display: block;
  border: 0.3px solid var(--color-black);
  text-align: center;
  border-radius: 100px;
  padding: 4px 0;
}
@media only screen and (max-width: 1616px) {
  .shoplist{
    flex-wrap: wrap;
    row-gap: 64px;
  }
  .shoplist_item{
    width: calc(100% / 3);
  }
  .shoplist_item:nth-of-type(3){
    border-right: 0.3px solid var(--color-gray2);
  }
}

#footer h2 a svg{
  width: 240px;
  color: var(--color-gray);
}
.footer_box nav{
  gap: 80px;
}
.footer_box nav div div + div{
  margin-top: 8px;
}
.footer_box nav div a{
  color: var(--color-gray);
}
.copyright{
  align-self: flex-end;
}

/*------------------------------------------------
menu
--------------------------------------------------*/
body.menu_open{
  overflow: hidden;
}
#menu{
  z-index: 99999;
  position: fixed;
  width: 100vw;
  height: 100dvh;
  top: 0;
  left: 0;
  background-color: rgba(0,0,0,0.8);
  transition: opacity 0.3s ease, visibility 0s linear 0.3s;
  opacity: 0;
  visibility: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
body.menu_open #menu{
  visibility: visible;
  opacity: 1;
  transition: opacity 0.3s ease, visibility 0s linear 0s;
}
#menu .inner{
  position: absolute;
  top: 0;
  right: 0;
  background-color: #FFF;
  width: auto;
  height: 100%;
  padding: var(--header-h) 4rem 4rem;
  line-height: 2.5;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
#menu .inner > div{
  margin-top: 2rem;
}


/*------------------------------------------------
tab
--------------------------------------------------*/
.tab_block,
.tab_flex,
.tab_inline{
  display: none !important;
}
@media only screen and (max-width: 1080px) {
  .tab_block{ display: block !important;}
  .tab_flex{ display: flex !important;}
  .tab_inline{ display: inline !important;}
  .tab_none{ display: none !important;}
  #header h1{
    position: relative;
    inset: auto;
    transform: translate(0,0);
  }
  #footer_shoplist h2{
    background-size: 50px;
    height: 57px;
  }
  .footer_box{
    justify-content: center;
    gap: 64px;
  }
  .footer_box_left{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    align-items: center;
  }
  #footer h2 a svg{
    width: 192px;
  }
  .shoplist_item{
    padding-left: 5vw;
    padding-right: 5vw;
  }
  .nav01 select,
  .nav01 a{
    width: calc((90vw - 3.2rem) / 3)
  }
  .post_list.gap24 li{
    width: calc((100% - 4.8rem) / 3);
  }
  .stock_list li a .new{
    font-size: 0.6rem;
    padding: 1px 6px;
  }
  .stock_list li {
    width: calc((100% - 48px) / 4);
  }
}

/*------------------------------------------------
tab_narrow
--------------------------------------------------*/
@media only screen and (max-width: 768px) {
  .shoplist_item{
    width: 50%;
  }
  .shoplist_item:nth-of-type(3){
    border-right: none;
  }
  .shoplist_item:nth-of-type(2n){
    border-right: 0.3px solid var(--color-gray2);
  }
  .list_col4 li{
    width: calc((100% - 1.6rem) / 2)
  }
  .post_list.gap24 li{
    width: calc((100% - 2.4rem) / 2);
  }

}

/*------------------------------------------------
sp
--------------------------------------------------*/
.sp_block,
.sp_fex,
.sp_inline{
  display: none !important;
}
@media only screen and (max-width: 540px) {
  .sp_block{ display: block !important;}
  .sp_flex{ display: flex !important;}
  .sp_inline{ display: inline !important;}
  .sp_none{ display: none !important;}
  html{
    font-size: 9px;
  }
  #header h1 a svg{
    width: 144px;
  }
  .shoplist{
    overflow: hidden;
  }
  .shoplist{
    padding-right: 5vw;
  }
  #footer_shoplist > .container{
    padding-right: 0;
  }
  .shoplist .swiper-slide{
    width: 75%;
  }
  .stock_list li{
    width: calc((100% - 16px) / 2);
  }
  .shoplist_item:nth-of-type(2n){
    border-right: none;
  }
  .shoplist_item:last-of-type{
    border-right: 0.3px solid var(--color-gray2);
  }
  .list_col4 > li,
  .list_col5 > li{
    width: 100%;
  }
  .list_col4 > li a,
  .list_col5 > li a{
    display: flex;
    justify-content: space-between;
  }
  .list_col4 > li a .image,
  .list_col5 > li a .image{
    width: 40%;
  }
  .list_col4 > li a .text,
  .list_col5 > li a .text{
    width: calc(60% - 1.6rem);
  }
  .post_list.gap24 li{
    width: 100%;
  }

}