@charset "UTF-8";
/* ■■■■■■■■■■共通■■■■■■■■■■ */
/* -----------------ページ見出し----------------- */
h1.fs-c-heading {
  line-height: var(--lh-m);
  font-family: "mfw-pkizakinryoustdn-bold", serif;
  font-weight: 700;
  text-align: center;
  width: var(--inner-w);
  max-width: var(--pc-maw);
  color: var(--txt-c-base);
  margin-inline: auto;
  padding: 0;
  border: none;
}

@media screen and (min-width: 768px) {
  h1.fs-c-heading {
    font-size: var(--fz-38);
    margin-block: var(--spc-40);
  }
}
@media screen and (max-width: 767px) {
  h1.fs-c-heading {
    font-size: 24px;
    margin-bottom: 20px;
  }
}
/* g-heading */
h1.g-heading {
  padding: var(--sec-spc-half) 0;
}

/* s-txt */
.s-txt {
  display: grid;
}

.s-txt mark {
  background: linear-gradient(transparent 70%, #fff799 30%);
}

.s-txt__list > li {
  position: relative;
  margin-left: 10px;
}

.s-txt__list > li::before {
  content: "";
  display: inline-block;
  background: var(--c-black);
  aspect-ratio: 1/1;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.s-txt__note li {
  position: relative;
  color: var(--txt-c-addon);
}

.s-txt__note li::before {
  content: "※";
  position: absolute;
  top: 0;
  left: 0;
}

.s-txt__order {
  counter-reset: original-counter;
}

.s-txt__order > li::before {
  content: counter(original-counter) ".";
  counter-increment: original-counter;
}

@media screen and (min-width: 768px) {
  .s-txt * {
    font-size: 16px;
    line-height: 2;
  }
  .s-txt p:has(mark) {
    line-height: 2.5;
  }
  .s-txt > p:not(:first-child) {
    margin-top: var(--spc-20);
  }
  .s-txt > * + .s-txt__list {
    margin-top: var(--spc-20);
  }
  .s-txt mark {
    padding: 2px 5px 3px;
  }
  .s-txt__list > li {
    padding-left: 13px;
  }
  .s-txt__list > li::before {
    width: 4px;
    top: 17px;
  }
  .s-txt__note li {
    font-size: var(--fz-12);
    padding-left: 15px;
  }
}
@media screen and (max-width: 767px) {
  .s-txt * {
    font-size: var(--fz-14);
    line-height: 1.8;
  }
  .s-txt p:has(mark) {
    line-height: 2.5;
  }
  .s-txt > p:not(:first-child) {
    margin-top: var(--spc-20);
  }
  .s-txt > * + .s-txt__list {
    margin-top: var(--spc-20);
  }
  .s-txt mark {
    padding: 2px 5px 3px;
  }
  .s-txt__list > li {
    padding-left: 12px;
  }
  .s-txt__list > li::before {
    width: 3px;
    top: 12px;
  }
  .s-txt__note li {
    font-size: var(--fz-12);
    padding-left: 15px;
  }
}
/* s-descWithImg */
.s-descWithImg {
  display: grid;
  gap: var(--sec-spc);
}

.s-descWithImg__desc {
  display: grid;
}

@media screen and (min-width: 768px) {
  .s-descWithImg li {
    display: flex;
    gap: var(--spc-40);
    align-items: flex-start;
  }
  .s-descWithImg--crossList li:nth-child(even) {
    flex-direction: row-reverse;
  }
  .s-descWithImg li > * {
    flex: 1;
  }
  .s-descWithImg__desc {
    gap: var(--spc-30);
  }
}
@media screen and (max-width: 767px) {
  .s-descWithImg li {
    display: grid;
    gap: var(--spc-20);
  }
  .s-descWithImg__desc {
    gap: var(--spc-30);
  }
}
/* ■■■■■■■■■■よくある質問■■■■■■■■■■ */
.s-faq dd:not(:last-child) {
  border-bottom: 1px solid var(--bd-c-gray);
}

.s-faq dt,
.s-faq dd {
  position: relative;
}

.s-faq:last-child dd {
  padding-bottom: 0;
}

.s-faq dt::before,
.s-faq dd::before {
  font-family: var(--ff-en);
  position: absolute;
}

.s-faq dt::before {
  content: "Q";
  color: var(--fs-btn-bg-c-primary);
}

.s-faq dd::before {
  content: "A";
  color: var(--fs-btn-bg-c-primary);
}

@media screen and (min-width: 768px) {
  .s-faq {
    margin-top: 20px;
  }
  .s-faq dd:not(:last-child) {
    padding-bottom: 30px;
    margin-bottom: 30px;
  }
  .s-faq dt {
    font-size: var(--fz-20);
    padding: 2px 50px 20px 35px;
  }
  .s-faq dd {
    padding: 10px 40px 40px 40px;
  }
  .s-faq dt::before,
  .s-faq dd::before {
    font-size: 17px;
  }
  .s-faq dt::before {
    left: 10px;
    top: -4px;
  }
  .s-faq dd::before {
    left: 12px;
    top: 8px;
  }
}
@media screen and (max-width: 767px) {
  .s-faq {
    margin-top: 20px;
  }
  .s-faq dd:not(:last-child) {
    padding-bottom: 20px;
    margin-bottom: 20px;
  }
  .s-faq dt {
    font-size: var(--fz-14);
    padding: 0 10px 10px 35px;
  }
  .s-faq dd {
    padding: 8px 30px 30px 35px;
  }
  .s-faq dt::before,
  .s-faq dd::before {
    font-size: 16px;
  }
  .s-faq dt::before {
    left: 15px;
    top: -5px;
  }
  .s-faq dd::before {
    left: 16px;
    top: 5px;
  }
  .s-faq dd .s-txt {
    line-height: 1.7;
  }
}
/* アコーディオン プラスマイナス */
/* .s-faq--acc dt{
	position: relative;
}
.s-faq--acc dt span{
	display: inline-block;
	position: relative;
	aspect-ratio: 1/1;
	position: absolute;
	border: 1px solid var(--bd-c-gray);
	border-radius: 50%;

}
.s-faq--acc dt span::before,
.s-faq--acc dt span::after{
	content: "";
	display: inline-block;
	background: var(--bg-c-gray);
	width: 60%;
	height: 1px;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
.s-faq--acc dt span::after{
	transition: .3s;
	transform: translate(-50%, -50%) rotate(90deg);
}
.s-faq--acc dt.active span::after{
	transform: translate(-50%, -50%) rotate(180deg);
}
.s-faq--acc dd{
	display: none;
}
@media (hover: hover){
	.s-faq--acc dt:hover{
		cursor: pointer;
	}
}
@media screen and (min-width: 768px){
	.s-faq--acc dt:not(:first-child){
		margin-top: 20px;
	}
	.s-faq--acc dt span{
		width: 15px;
		right: 30px;
		top: 7px;
	}
}
@media screen and (max-width: 767px){
	.s-faq dt{
		padding-right: 30px;
	}
	.s-faq--acc dt:not(:first-child){
		margin-top: 10px;
	}
	.s-faq--acc dt span{
		width: 13px;
		right: 7px;
		top: 4px;
	}
} */
/* アコーディオン 矢印 */
.s-faq--acc dt {
  position: relative;
}

.s-faq--acc dt span {
  display: inline-block;
  position: relative;
  aspect-ratio: 1/1;
  position: absolute;
}

.s-faq--acc dt span::before {
  content: "";
  display: inline-block;
  --this-mask: var(--data-icon-btn-arrow) no-repeat center center / 100%;
  mask: var(--this-mask);
  -webkit-mask: var(--this-mask);
  background-color: var(--txt-c-base);
  aspect-ratio: 1;
  width: 12px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(90deg);
  transition: 0.3s;
}

.s-faq--acc dt.active span::before {
  transform: translate(-50%, -50%) rotate(270deg);
}

.s-faq--acc dd {
  display: none;
}

@media (hover: hover) {
  .s-faq--acc dt:hover {
    cursor: pointer;
  }
}
@media screen and (min-width: 768px) {
  .s-faq--acc dt:not(:first-child) {
    margin-top: 20px;
  }
  .s-faq--acc dt span {
    width: 30px;
    right: 10px;
    top: 10px;
  }
  .s-faq--acc dt span::before {
    width: 12px;
  }
}
@media screen and (max-width: 767px) {
  .s-faq dt {
    padding-right: 30px;
  }
  .s-faq--acc dt:not(:first-child) {
    margin-top: 10px;
  }
  .s-faq--acc dt span {
    width: 20px;
    right: 5px;
    top: 0px;
  }
  .s-faq--acc dt span::before {
    width: 10px;
  }
}
/* ■■■■■■■■■■お買い物ガイド■■■■■■■■■■ */
.s-guideContents {
  --h2-bgcolor: #f5f5f5;
  --h3-bdcolor: #b4b4b4;
  margin-top: 3px;
  display: grid;
  gap: var(--sec-spc);
}

.s-guideColumn__heading {
  font-weight: 700;
  background-color: var(--h2-bgcolor);
}

.s-guideColumn__ttl {
  font-weight: 500;
  border-bottom: 1px solid var(--h3-bdcolor);
}

.s-guideColumn__subttl {
  font-weight: 500;
  border-left: 2px solid var(--txt-c-base);
}

.s-guideColumn__minittl {
  position: relative;
  display: flex;
  align-items: center;
  padding-left: 1.3em;
}

.s-guideColumn__minittl::before {
  content: "";
  width: 10px;
  height: 1.5px;
  background-color: var(--txt-c-base);
  position: absolute;
  left: 0;
}

.s-guideCredit {
  display: flex;
  margin: var(--spc-20) 0;
}

.s-guideCredit .g-payment {
  margin-top: 0;
}

.s-guidePaymentLogo {
  margin: var(--spc-30) 0 var(--spc-20);
}

.s-guideTable {
  width: 100%;
  max-width: 800px;
  border-collapse: collapse;
}

.s-guideTable--bank {
  max-width: 300px;
}

.s-guideTable th,
.s-guideTable td {
  border: 1px solid var(--bd-c-gray);
}

.s-guideTable th {
  font-weight: normal;
}

.s-guideTable th {
  background-color: var(--bg-c-gray);
  padding: 5px 0;
  font-size: var(--fz-12);
}

.s-guideTable tbody th,
.s-guideTable tbody td {
  text-align: center;
}

.s-guideNav__item li.is-current a {
  color: var(--txt-c-emphasis);
}

.s-guideContents .bgcolor--gray {
  padding: var(--spc-20);
}

.s-guideContents .bgcolor--gray.is-widthFitContent {
  width: -moz-fit-content;
  width: fit-content;
}

@media screen and (min-width: 901px) {
  .s-guideContainer {
    display: grid;
    grid-template-columns: 230px 1fr;
    align-items: flex-start;
    gap: clamp(80px, 8.5vw, 100px);
  }
  .s-guideNav {
    position: sticky;
    top: 105px;
    left: 0;
  }
  .s-guideNav__item {
    display: grid;
    gap: 15px;
  }
  .s-guideNav__item li a {
    font-size: var(--fz-16);
    display: block;
    padding-bottom: 7px;
    position: relative;
  }
  .s-guideNav__item li a::after {
    content: "";
    display: inline-block;
    background-color: var(--txt-c-emphasis);
    width: 100%;
    height: 1px;
    position: absolute;
    bottom: -3px;
    left: 0;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s;
  }
  .s-guideNav__item li.is-current a::after {
    transform: scaleX(1);
    transform-origin: left;
  }
}
@media screen and (max-width: 900px) {
  .s-guideNav {
    --guide-nav-sp-box: 300px;
    --guide-nav-sp-box-trigger: 40px;
    position: fixed;
    right: calc(0px - var(--guide-nav-sp-box) + var(--guide-nav-sp-box-trigger));
    top: 150px;
    display: flex;
    width: var(--guide-nav-sp-box);
    transition: 0.5s;
    z-index: 99;
    opacity: 0;
  }
  body.scroll .s-guideNav {
    opacity: 0;
    animation: var(--anime-fade-in);
  }
  body.scroll.returnTop .s-guideNav {
    opacity: 1;
    animation: var(--anime-fade-out);
  }
  .s-guideNav.active {
    right: 0;
  }
  .s-guideNav__spTrigger {
    width: var(--guide-nav-sp-box-trigger);
    height: 200px;
    background-color: rgba(225, 225, 225, 0.533);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px 0 0 5px;
    border: 1px solid var(--bd-c-gray);
    border-right: none;
    transition: 0.3s;
  }
  .s-guideNav.active .s-guideNav__spTrigger {
    background-color: var(--c-white);
  }
  .s-guideNav__spTrigger::after {
    content: "目次";
    writing-mode: vertical-rl;
  }
  .s-guideNav.active .s-guideNav__spTrigger::after {
    content: "閉じる";
  }
  .s-guideNav__item {
    flex: 1;
    background-color: var(--c-white);
    border: 1px solid var(--bd-c-gray);
  }
  .s-guideNav__item li:not(:last-child) {
    border-bottom: 1px solid var(--bd-c-gray);
  }
  .s-guideNav__item li a {
    display: block;
    padding: 8px 15px;
    font-size: 13px;
  }
}
@media screen and (min-width: 768px) {
  .s-guideColumn__heading {
    font-size: var(--fz-20);
    padding: 10px 15px;
    margin-bottom: var(--spc-50);
  }
  .s-guideColumn__ttl {
    font-size: var(--fz-18);
    padding: 0 0 10px 10px;
    margin: var(--spc-50) 0 var(--spc-20);
  }
  .s-guideColumn__heading + .s-guideColumn__ttl {
    margin-top: var(--spc-50);
  }
  .s-guideCredit {
    max-width: 350px;
  }
  .s-guidePaymentLogo--AmazonPay {
    width: 180px;
  }
  .s-guidePaymentLogo--PayPay {
    width: 130px;
  }
  .s-guidePaymentLogo--rakutenPay {
    width: 150px;
  }
  .s-guideTable {
    margin-top: var(--spc-20);
  }
  .s-guideTable tbody th,
  .s-guideTable tbody td {
    padding: 7px 20px;
    font-size: var(--fz-12);
  }
  .s-guideColumn__subttl {
    font-size: var(--fz-16);
    margin-block: var(--spc-40) var(--spc-20);
    padding-left: 10px;
  }
  .s-guideColumn__minittl {
    font-size: var(--fz-16);
    margin-block: var(--spc-30) var(--spc-10);
  }
  .s-guideColumn__minittl::before {
    top: 13px;
  }
}
@media screen and (max-width: 767px) {
  .s-guideColumn__heading {
    font-size: 16px;
    padding: 10px;
    margin-bottom: 30px;
  }
  .s-guideColumn__ttl {
    font-size: 15px;
    padding: 7px 10px;
    margin-block: 30px 10px;
  }
  .s-guidePaymentLogo--AmazonPay {
    width: 150px;
  }
  .s-guidePaymentLogo--PayPay {
    width: 120px;
  }
  .s-guidePaymentLogo--rakutenPay {
    width: 120px;
  }
  .s-guideTable {
    margin-top: var(--spc-20);
  }
  .s-guideTable tbody th,
  .s-guideTable tbody td {
    padding: 5px 15px;
    font-size: var(--fz-12);
  }
  .s-guideColumn__subttl {
    font-size: 15px;
    margin-block: 25px 10px;
    padding-left: 10px;
  }
  .s-guideColumn__minittl {
    font-size: 14px;
    margin-block: 20px 8px;
  }
  .s-guideColumn__minittl::before {
    top: 10px;
  }
}
/* タイムテーブル */
.s-timeTable {
  width: 95%;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(70px, 1fr));
  gap: 7px;
}

.s-timeTable__dial {
  --size: 100%;
  --bg: #e3e3e3;
  --accent: var(--theme-c-main);
  --ring: 0px;
  --start-time: 9;
  --end-time: 12.5;
  --wrap: 0;
  --start-deg: calc(var(--start-time) * 30deg);
  --span-deg: calc(((var(--end-time) - var(--start-time)) + (var(--wrap) * 12)) * 30deg);
  --this-mask: radial-gradient(circle, transparent max(0px, var(--ring) - 1px), #000 max(0px, var(--ring)));
  inline-size: var(--size);
  mask: var(--this-mask);
  -webkit-mask: var(--this-mask);
  aspect-ratio: 1;
  border-radius: 50%;
  background-color: var(--bg);
  background-image: conic-gradient(
    from calc(var(--start-deg) - 0deg),
    var(--accent) 0 var(--span-deg),
    transparent var(--span-deg) 1turn
  );
  display: grid;
  place-items: center;
  position: relative;
}

.s-timeTable__chip {
  display: inline-block;
  padding: 0.1em 0.2em;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.9);
  color: #1a1a1a;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.06);
  white-space: nowrap;
  font-size: 10px;
  letter-spacing: 0.03em;
}

/* ----------------------ギフト箱---------------------- */
.giftbox {
  background-color: #efedea;
  padding-block: var(--spc-80);
  padding-inline: 20px;
}
.giftbox .columns {
  display: grid;
  grid-template-columns: minmax(48.3334%, 340px) 1fr;
  align-items: center;
  gap: var(--spc-60);
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .giftbox .columns {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
.giftbox .column--left img {
  display: block;
  width: 100%;
  aspect-ratio: 660/420;
  -o-object-fit: cover;
  object-fit: cover;
  background-color: #8c8c8c;
}
@media screen and (max-width: 767px) {
  .giftbox .column--left img {
    max-width: 480px;
  }
}
.giftbox .head {
  line-height: var(--lh-m);
  font-family: "mfw-pkizakinryoustdn-bold", serif;
  font-weight: bold;
  font-size: var(--fz-26);
}
.giftbox .head .remarks {
  display: block;
  line-height: var(--lh-m);
  font-family: initial;
  font-weight: 400;
  font-size: 14px;
  margin-block-start: 1em;
}
.giftbox .desc {
  margin-block-start: var(--spc-20);
  line-height: var(--lh-xl);
  font-size: var(--fz-16);
  color: #404040;
}
.giftbox .desc b {
  font-weight: 700;
}
.giftbox .g-btnContainer {
  margin-block-start: var(--spc-30);
}

/* ------------------ 3Step Search -------------------- */
.stw {
  width: 100%;
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
}
.stw-path {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  letter-spacing: 0.02em;
  margin-bottom: 20px;
}
.stw-path.is-empty {
  visibility: hidden;
}
.stw-path__item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.stw-path__item:not(:first-child)::before {
  content: ">";
  margin-right: 2px;
  color: var(--txt-c-addon);
}
.stw-path__step {
  display: inline-flex;
  align-items: center;
  line-height: var(--lh-s);
  font-size: 11px;
  font-weight: 400;
  color: var(--c-white);
  background: #95a636;
  border-radius: 10px;
  padding: 0.2em 8px;
}
.stw-path__label {
  line-height: var(--lh-s);
}
.stw-tabs {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-block-end: 32px;
  padding-inline: 20px;
}
@media (max-width: 640px) {
  .stw-tabs {
    gap: 8px;
  }
}
.stw-tab {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  line-height: var(--lh-s);
  border: 1px solid #cccccc;
  border-radius: 999px;
  background: #ffffff;
  font-family: inherit;
  font-size: 13px;
  color: #c2c2c2;
  padding: 0.4em 16px;
  cursor: pointer;
  transition:
    border-color 0.15s,
    color 0.15s;
}
.stw-tab__step {
  font-weight: 700;
  letter-spacing: 0.05em;
}
.stw-tab.is-active {
  border: 1px solid #1a1a1a;
  color: #1a1a1a;
}
.stw-tab:disabled {
  cursor: default;
}
.stw-tab:not(.is-active):not(:disabled):hover {
  border-color: #888888;
  color: #888888;
}
@media (max-width: 640px) {
  .stw-tab {
    padding: 10px 14px;
  }
  .stw-tab.is-active {
    padding: 9px 13px;
  }
}
.stw-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  width: calc(100% - 40px);
  margin-block-end: 40px;
  margin-inline: auto;
}
@media (max-width: 640px) {
  .stw-cards {
    grid-template-columns: 1fr;
    gap: 24px;
    max-width: 480px;
  }
}
.stw-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: none;
  border: none;
  font-family: inherit;
  cursor: pointer;
  padding: 0;
}
.stw-card__thumb {
  display: block;
  width: 100%;
  aspect-ratio: 3/2;
  background-color: #d9d9d9;
  background-size: cover;
  background-position: center;
  border-radius: 14px;
  border: 2px solid transparent;
  transition:
    border-color 0.15s,
    transform 0.15s;
}
.stw-card:hover .stw-card__thumb {
  transform: translateY(-3px);
}
.stw-card.is-selected .stw-card__thumb {
  border-color: #1a1a1a;
}
.stw-card__label {
  line-height: var(--lh-s);
  font-weight: 700;
}
.stw-nav {
  display: grid;
  gap: 20px;
  width: 100%;
  max-width: 600px;
  margin-inline: auto;
  margin-bottom: 32px;
}
.stw-nav--row {
  display: flex;
  gap: 20px;
}
.stw-nav--row .g-btn {
  flex: 1;
}
@media (max-width: 640px) {
  .stw-search {
    min-width: 100%;
  }
}

/* ------------------  -------------------- */
/* ------------------  -------------------- */
/* ------------------  -------------------- */
/* ------------------  -------------------- */
/* ■■■■■■■■■■　■■■■■■■■■■ */
/* ------------------  -------------------- */
/* ------------------  -------------------- */
/* ------------------  -------------------- */
/* ------------------  -------------------- */
/* ------------------  -------------------- */
/* ------------------  -------------------- */
/* ■■■■■■■■■■　■■■■■■■■■■ */
/* ------------------  -------------------- */
/* ------------------  -------------------- */
/* ------------------  -------------------- */
/* ------------------  -------------------- */
/* ------------------  -------------------- */
/* ------------------  -------------------- */
/* ■■■■■■■■■■　■■■■■■■■■■ */
/* ------------------  -------------------- */
/* ------------------  -------------------- */
/* ------------------  -------------------- */
/* ------------------  -------------------- */
/* ------------------  -------------------- */
/* ------------------  -------------------- */
/* ■■■■■■■■■■　■■■■■■■■■■ */
/* ------------------  -------------------- */
/* ------------------  -------------------- */
/* ------------------  -------------------- */
/* ------------------  -------------------- */
/* ------------------  -------------------- */
/* ------------------  -------------------- */
/* ■■■■■■■■■■　■■■■■■■■■■ */
/* ------------------  -------------------- */
/* ------------------  -------------------- */
/* ------------------  -------------------- */
/* ------------------  -------------------- */
/* ------------------  -------------------- */
/* ------------------  -------------------- */
/* ■■■■■■■■■■閲覧履歴ページ（.history 配下のみ）■■■■■■■■■■ */
@media screen and (min-width: 768px) {
  .history > section {
    margin-bottom: var(--spc-100);
  }
}
@media screen and (max-width: 767px) {
  .history > section {
    margin-bottom: 50px;
  }
}
.history .s-rankingSection.g-section.g-section--mg {
  margin-block-start: 0;
}
.history .g-embed.g-history,
.history #ranking .g-embed.g-productRanking {
  overflow: visible;
  padding-inline: 20px;
}
.history .g-embed.g-history .fr3-productListStatic,
.history #ranking .g-embed.g-productRanking .fr3-productListStatic {
  display: grid;
  gap: 20px;
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding: 0;
}
@media screen and (min-width: 768px) {
  .history .g-embed.g-history .fr3-productListStatic,
  .history #ranking .g-embed.g-productRanking .fr3-productListStatic {
    grid-template-columns: repeat(5, 1fr);
  }
}
@media screen and (max-width: 767px) {
  .history .g-embed.g-history .fr3-productListStatic,
  .history #ranking .g-embed.g-productRanking .fr3-productListStatic {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-flow: row;
    grid-auto-columns: auto;
    max-width: 1200px;
  }
}
.history .g-embed.g-history .fr3-item,
.history #ranking .g-embed.g-productRanking .fr3-item {
  min-width: 0;
}
.history .t-pickup__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  -moz-column-gap: 20px;
  column-gap: 20px;
  width: calc(100% - 40px);
  max-width: 1200px;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .history .t-pickup__list {
    grid-template-columns: 1fr;
    max-width: 480px;
  }
}
@media screen and (max-width: 767px) {
  .history .t-pickup__item:not(:last-of-type) {
    margin-bottom: 30px;
  }
}
.history .t-pickup__item .thumb img {
  display: block;
  width: 100%;
  height: auto;
}
.history .t-pickup__item .txt {
  margin-block-start: 14px;
}
.history .t-pickup__item .head {
  line-height: var(--lh-m);
  font-weight: 500;
  font-size: 20px;
  margin-block-start: 14px;
}
@media screen and (max-width: 767px) {
  .history .t-pickup__item .head {
    font-size: 18px;
  }
}
.history .t-pickup__item .ctg {
  display: flex;
  align-items: center;
  flex-flow: row wrap;
  gap: 10px;
}
.history .t-pickup__item .ctg > li {
  display: flex;
  align-items: center;
  min-height: 30px;
  line-height: var(--lh-s);
  border-radius: 15px;
  background-color: #efedea;
  color: #231815;
  font-size: 14px;
  padding-block: 0.4em;
  padding-inline: 1em;
}
@media screen and (max-width: 767px) {
  .history .t-pickup__item .ctg > li {
    font-size: 12px;
  }
}
.history .t-pickup__item .desc {
  line-height: var(--lh-l);
  font-size: 14px;
  margin-block-start: 14px;
}

/* ■■■■■■■■■■ピックアップ特集：t-pickup__list（3カラム・freepage共通）■■■■■■■■■■ */
.t-pickup__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  -moz-column-gap: 20px;
  column-gap: 20px;
  width: calc(100% - 40px);
  max-width: 1200px;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .t-pickup__list {
    grid-template-columns: 1fr;
    max-width: 480px;
  }
}

@media screen and (max-width: 767px) {
  .t-pickup__item:not(:last-of-type) {
    margin-bottom: 30px;
  }
}
.t-pickup__item .thumb img {
  display: block;
  width: 100%;
  height: auto;
}
.t-pickup__item .txt {
  margin-block-start: 14px;
}
.t-pickup__item .head {
  line-height: var(--lh-m);
  font-weight: 500;
  font-size: 20px;
  margin-block-start: 14px;
}
@media screen and (max-width: 767px) {
  .t-pickup__item .head {
    font-size: 18px;
  }
}
.t-pickup__item .ctg {
  display: flex;
  align-items: center;
  flex-flow: row wrap;
  gap: 10px;
}
.t-pickup__item .ctg > li {
  display: flex;
  align-items: center;
  min-height: 30px;
  line-height: var(--lh-s);
  border-radius: 15px;
  background-color: #efedea;
  color: #231815;
  font-size: 14px;
  padding-block: 0.4em;
  padding-inline: 1em;
}
@media screen and (max-width: 767px) {
  .t-pickup__item .ctg > li {
    font-size: 12px;
  }
}
.t-pickup__item .desc {
  line-height: var(--lh-l);
  font-size: 14px;
  margin-block-start: 14px;
}

/* ■■■■■■■■■■STEP検索（3-step-search）■■■■■■■■■■ */
:root {
  --stw-band: #cdd4a8; /* 背景のセージ帯 */
  --stw-accent: #808f3b; /* オリーブ（選択・進捗・強調） */
  --stw-accent-soft: #eef2e0; /* オリーブの薄色 */
  --stw-primary: #5c6a2a; /* 深緑（検索ボタン） */
  --stw-line: #ddd9cf; /* 罫線・枠 */
  --stw-font-mincho: var(--ff-base); /* サイト大元のフォントを使用 */
  --stw-font-gothic: var(--ff-base); /* サイト大元のフォントを使用 */
}

/* ── 背景の帯 ── */
.stw-section {
  width: 100vw;
  display: flex;
  justify-content: center;
  background: var(--stw-band);
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: clamp(20px, 4vw, 56px) clamp(14px, 4vw, 40px) clamp(40px, 6vw, 72px);
}

/* ── 白いカード本体 ── */
.stw {
  width: 100%;
  max-width: 980px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 12px 44px rgba(70, 80, 40, 0.12);
  padding: clamp(28px, 5vw, 60px) clamp(20px, 5vw, 56px) clamp(32px, 5vw, 56px);
  font-family: var(--stw-font-gothic);
  color: var(--txt-c-base);
  -webkit-font-smoothing: antialiased;
}

/* ── ヘッダー ── */
.stw__head {
  text-align: center;
  margin-bottom: clamp(30px, 5vw, 46px);
}

.stw__eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.34em;
  color: #94a24f;
  padding-left: 0.34em;
}

.stw__title {
  margin: 14px 0 0;
  font-size: clamp(22px, 5.4vw, 31px);
  letter-spacing: 0.14em;
  padding-left: 0.14em;
}

.stw__rule {
  width: 42px;
  height: 1px;
  background: #bcc792;
  margin: 20px auto 0;
}

.stw__lead {
  margin-inline: auto;
  max-width: 520px;
  line-height: var(--lh-xl);
  letter-spacing: 0.04em;
  color: var(--txt-c-base);
}
@media screen and (min-width: 768px) {
  .stw__lead {
    font-size: 16px;
    margin-block-end: 40px;
  }
}
@media screen and (max-width: 767px) {
  .stw__lead {
    font-size: 14px;
    margin-block-end: 20px;
  }
}

/* ── ステップインジケーター ── */
.stw-steps {
  position: relative;
  max-width: 560px;
  margin: 0 auto;
}

.stw-steps__line,
.stw-steps__progress {
  position: absolute;
  top: 21px;
  height: 2px;
}

.stw-steps__line {
  left: 16.67%;
  right: 16.67%;
  background: #e6e3d8;
}

.stw-steps__progress {
  left: 16.67%;
  width: var(--stw-progress, 0%);
  background: var(--stw-accent);
  transition: width 0.3s ease;
}

.stw-steps__nodes {
  position: relative;
  display: flex;
  justify-content: space-between;
}

.stw-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 9px;
  background: none;
  border: none;
  padding: 0;
  font-family: inherit;
  cursor: pointer;
}

.stw-step[disabled] {
  cursor: default;
  opacity: 0.5;
}

.stw-step__circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--stw-font-mincho);
  font-size: 15px;
  font-weight: 600;
  background: #fff;
  border: 2px solid #e6e3d8;
  color: #c2bdb1;
  transition: 0.18s;
}

.stw-step.is-active .stw-step__circle {
  border-color: var(--stw-accent);
  color: var(--stw-accent);
  box-shadow: 0 0 0 5px var(--stw-accent-soft);
}

.stw-step.is-done .stw-step__circle {
  background: var(--stw-accent);
  border-color: var(--stw-accent);
  color: #fff;
}

.stw-step__label {
  font-size: 11px;
  letter-spacing: 0.1em;
  font-weight: 700;
  color: #a8a392;
}

.stw-step.is-active .stw-step__label,
.stw-step.is-done .stw-step__label {
  color: var(--stw-accent);
}

.stw-step__chosen {
  font-family: var(--stw-font-mincho);
  font-size: 12px;
  line-height: 1.5;
  color: #3a392f;
  max-width: 120px;
}

.stw-step__chosen:empty {
  display: none;
}

/* ── 現在の質問 ── */
.stw__qtext {
  line-height: var(--lh-m);
  font-family: "mfw-pkizakinryoustdn-bold", serif;
  letter-spacing: 0.06em;
}
@media screen and (min-width: 768px) {
  .stw__qtext {
    font-size: 24px;
    margin-block: 30px;
  }
}
@media screen and (max-width: 767px) {
  .stw__qtext {
    font-size: 21px;
    margin-block: 20px;
  }
}

/* ── 選択肢：PC＝カード（既定） ── */
.stw-choices {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 210px), 1fr));
  gap: clamp(14px, 2.5vw, 22px);
}

.stw-choice {
  position: relative;
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--stw-line);
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  font-family: inherit;
  text-align: center;
  transition:
    border-color 0.18s,
    box-shadow 0.18s,
    transform 0.18s;
  color: var(--txt-c-base);
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.stw-choice:hover {
  border-color: var(--stw-accent);
  transform: translateY(-4px);
  box-shadow: 0 12px 26px rgba(60, 70, 30, 0.14);
}

.stw-choice.is-selected {
  outline: 2px solid var(--stw-accent);
  outline-offset: -1px;
}

.stw-choice__thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 16/11;
}

.stw-choice__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  display: none;
}

.stw-choice__thumb.has-img .stw-choice__img {
  display: block;
}

.stw-choice__thumb.has-img .stw-choice__ph {
  display: none;
}

.stw-choice__ph {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 6px;
  background: repeating-linear-gradient(45deg, #eef1e2, #eef1e2 9px, #e7ebd6 9px, #e7ebd6 18px);
  font-family: "SFMono-Regular", Menlo, monospace;
  font-size: 10.5px;
  letter-spacing: 0.04em;
  color: #9aa07a;
}

.stw-choice__index {
  position: absolute;
  top: 10px;
  left: 10px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.94);
  color: var(--stw-accent);
  font-family: var(--stw-font-mincho);
  font-size: 12.5px;
  font-weight: 600;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.12);
}

.stw-choice__label {
  padding: 16px 16px 20px;
  font-weight: 500;
  font-size: clamp(13px, 1.6vw, 15px);
  line-height: 1.65;
  white-space: pre-line;
}

.stw-choice__chev {
  display: none;
}

.stw-choice__check {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  background: var(--stw-accent);
  color: #fff;
  font-size: 13px;
  display: none;
}

.stw-choice.is-selected .stw-choice__check {
  display: flex;
}

/* ── 選択肢：スマホ＝リスト ── */
@media (max-width: 640px) {
  .stw-choices {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 620px;
    margin: 0 auto;
  }
  .stw-choice {
    flex-direction: row;
    align-items: center;
    gap: 14px;
    text-align: left;
    padding: 11px;
    overflow: visible;
  }
  .stw-choice:hover {
    transform: none;
    box-shadow: 0 6px 18px rgba(60, 70, 30, 0.1);
  }
  .stw-choice__thumb {
    width: 74px;
    height: 74px;
    aspect-ratio: auto;
    border-radius: 9px;
    overflow: hidden;
    flex: none;
  }
  .stw-choice__index {
    position: static;
    background: var(--stw-accent-soft);
    box-shadow: none;
    width: 26px;
    height: 26px;
    font-size: 12px;
    flex: none;
  }
  .stw-choice__label {
    padding: 0;
    flex: 1;
    min-width: 0;
    font-size: 13px;
    line-height: 1.5;
  }
  .stw-choice__chev {
    display: block;
    color: var(--stw-accent);
    font-size: 20px;
    line-height: 1;
    flex: none;
  }
  .stw-choice.is-selected .stw-choice__chev {
    display: none;
  }
  .stw-choice__check {
    position: static;
    display: none;
    flex: none;
  }
  .stw-choice.is-selected .stw-choice__check {
    display: flex;
  }
}
/* ── ナビゲーション ── */
.stw-nav {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 560px;
  margin-block: 30px 0;
  margin-inline: auto;
}

.stw-nav__row {
  display: flex;
  gap: 14px;
}

.stw-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border-radius: 999px;
  font-family: var(--stw-font-gothic);
  cursor: pointer;
  transition: 0.15s;
}

.stw-btn--ghost {
  flex: 1;
  padding: 14px 18px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  border: 1px solid #c8c2b4;
  background: #fff;
  color: #5a564c;
}

.stw-btn--ghost:disabled {
  border-color: #e7e3d9;
  background: #faf9f5;
  color: #c8c3b7;
  cursor: default;
}

.stw-btn--primary {
  width: 100%;
  padding: 17px 28px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.08em;
  border: none;
  background: var(--stw-primary);
  color: #fff;
  box-shadow: 0 6px 18px rgba(92, 106, 42, 0.3);
}

.stw-btn--primary:disabled {
  background: #d8d4c6;
  box-shadow: none;
  cursor: default;
}

.stw-reset {
  align-self: center;
  margin-top: 2px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: 13px;
  letter-spacing: 0.06em;
  color: #a09a8c;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.stw-reset[hidden] {
  display: none;
}

@media screen and (max-width: 767px) {
  .stw-step__chosen {
    display: none;
  }
  .stw-choice__check {
    width: 20px;
    height: 20px;
  }
}
.fs-body-custom#fs_CustomPage main h2.stw__title {
  font-family: "mfw-pkizakinryoustdn-bold", serif;
}
.fs-body-custom#fs_CustomPage main h3.stw__qtext {
  font-family: "mfw-pkizakinryoustdn-bold", serif;
}

.about-page {
  width: calc(100% - 40px);
  max-width: 1200px;
  margin-inline: auto;
}
.about-page h3.about-head2 {
  margin-bottom: 10px;
}
.about-page .fs-c-documentArticle {
  padding-inline: 0;
}
.about-page .kodawari-img {
  display: block;
  width: 100%;
  height: auto;
}
.about-page .kodawari-imgWrap {
  z-index: 1;
  position: relative;
}
.about-page .kodawari-imgTextColumns {
  z-index: 2;
  position: absolute;
  top: clamp(1.5rem, -0.75rem + 4.69vw, 3rem);
  right: clamp(1.5rem, -0.75rem + 4.69vw, 3rem);
  display: flex;
  flex-direction: row-reverse;
  align-items: flex-start;
  gap: clamp(0.75rem, -0.375rem + 2.34vw, 1.5rem);
  color: #333;
}
.about-page .kodawari-imgTextColumn {
  display: flex;
  flex-direction: row-reverse;
  align-items: flex-start;
  margin: 0;
}
.about-page .kodawari-imgTextColumn span {
  writing-mode: vertical-rl;
  display: block;
}
.about-page .kodawari-imgTextColumn.-main {
  font-family: "mfw-pkizakinryoustdn-bold", serif;
  letter-spacing: 0.16em;
}
@media screen and (min-width: 768px) {
  .about-page .kodawari-imgTextColumn.-main {
    font-size: 34px;
  }
}
@media screen and (max-width: 767px) {
  .about-page .kodawari-imgTextColumn.-main {
    font-size: 24px;
  }
}
.about-page .kodawari-imgTextColumn.-sub {
  font-family: "mfw-pkizakinryoustdn-bold", serif;
}
@media screen and (min-width: 768px) {
  .about-page .kodawari-imgTextColumn.-sub {
    font-size: 18px;
  }
}
@media screen and (max-width: 767px) {
  .about-page .kodawari-imgTextColumn.-sub {
    font-size: 14px;
  }
}
.about-page .imgWrap2-txt,
.about-page .imgWrap4-txt {
  width: calc(70% - 32px);
}
.about-page img {
  -o-object-fit: cover;
  object-fit: cover;
}

.fs-body-notfound .g-searchSection {
  padding-block: 0;
  padding-inline: 20px;
}
.fs-body-notfound .g-searchSection::after {
  content: none;
}
.fs-body-notfound .g-search__content {
  padding: 0;
}

@media screen and (min-width: 768px) {
  .history .g-embed.g-history .fr3-item:nth-of-type(n + 6) {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .history .g-embed.g-history .fr3-item:nth-of-type(n + 7) {
    display: none;
  }
}

.s-docArticle__heading {
  background-color: #6d6d6d;
  color: var(--c-white);
  font-family: "mfw-pkizakinryoustdn-bold", serif;
  letter-spacing: 0.08em;
  line-height: var(--lh-m);
}
.s-docArticle__ttl {
  font-family: "mfw-pkizakinryoustdn-bold", serif;
  border-bottom: 1px dashed #666666;
  line-height: var(--lh-m);
}
.s-docArticle__lead {
  line-height: var(--lh-l);
}
.s-flowGuide__img img {
  width: 100%;
  border: 1px solid var(--bd-c-gray);
}
.s-flowGuide__notes {
  display: grid;
  align-content: start;
  position: sticky;
  align-self: start;
  top: 82px;
}
.s-flowGuide__notes li {
  display: flex;
  align-items: center;
  line-height: 1.5;
  color: var(--txt-c-base);
}
.s-flowGuide__num {
  flex: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: #b90813;
  color: var(--c-white);
  font-weight: 400;
  letter-spacing: normal;
  line-height: 1;
}

.s-flowGuide {
  display: grid;
  grid-template-columns: minmax(54%, 180px) 1fr;
  gap: clamp(10px, 2.5vw, 26px);
  align-items: start;
}
@media screen and (min-width: 768px) {
  .s-docArticle__heading {
    font-size: var(--fz-20);
    padding: 6px 12px;
    margin-bottom: 20px;
  }
  .s-docArticle__ttl {
    font-size: var(--fz-20);
    padding-bottom: 6px;
    margin-block-end: var(--spc-30);
  }
  .s-flowGuide + .s-docArticle__ttl {
    margin-block-start: var(--sec-spc);
  }
  .s-docArticle__lead {
    font-size: var(--fz-18);
    margin-bottom: var(--spc-50);
  }
  .s-flowGuide__notes {
    gap: var(--spc-30);
  }
  .s-flowGuide__notes li {
    font-size: var(--fz-16);
    gap: 12px;
  }
  .s-flowGuide__num {
    width: 26px;
    height: 26px;
    font-size: 14px;
  }
}
@media screen and (max-width: 767px) {
  .s-docArticle__heading {
    font-size: 16px;
    padding: 6px 12px;
    margin-bottom: 30px;
  }
  .s-docArticle__ttl {
    font-size: 16px;
    padding-bottom: 6px;
    margin-block-end: 20px;
  }
  .s-flowGuide + .s-docArticle__ttl {
    margin-block-start: var(--sec-spc);
  }
  .s-docArticle__lead {
    font-size: 14px;
    margin-bottom: 30px;
  }
  .s-flowGuide__notes {
    gap: 10px;
  }
  .s-flowGuide__notes li {
    font-size: 12px;
    gap: 4px;
  }
  .s-flowGuide__num {
    width: 20px;
    height: 20px;
    font-size: 12px;
  }
}
