














@charset "utf-8";
/* ==========================================================================
Base
========================================================================== */
/*!
 * @acab/reset.css
 */
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box; /* もちろん、より直感的なbox-sizingに設定 */
  margin: 0; /* マージンは0に */
  padding: 0; /* パディングも常に0に */
}

:where([hidden]:not([hidden=until-found])) {
  display: none !important; /* hiddenは非表示を意味します */
}

:where(html) {
  -webkit-text-size-adjust: none; /* iOSのランドスケープでテキストが調整されないようにする */
  color-scheme: dark light; /* ユーザーがダークテーマを好む場合、自動的にダークテーマになる */
}

@supports not (min-block-size: 100dvb) {
  :where(html) {
    block-size: 100%;
  }
}
@media (prefers-reduced-motion: no-preference) {
  :where(html:focus-within) {
    scroll-behavior: smooth; /* 何かにフォーカスがある場合のみスムーズスクロール */
  }
}
:where(body) {
  -webkit-font-smoothing: antialiased; /* テキストのレンダリングを改善 */
  block-size: 100%; /* サファリ以外のブラウザのフォールバック */
  block-size: 100dvb; /* 1dvbは動的ビューポートの長さの1%、100dvbで高さいっぱいに */
  font-family: system-ui, sans-serif; /* timeの代わりにシステムフォントを使用 */
  line-height: 1.5; /* アクセシブルな行の高さ */
}

:where(input, button, textarea, select) {
  color: inherit; /* カラーも継承 */
  font: inherit; /* フォーム コントロールは親フォントを継承 */
}

:where(textarea) {
  resize: vertical; /* テキストエリアの水平リサイズを無効に */
  resize: block;
}

:where(button, label, select, summary, [role=button], [role=option]) {
  cursor: pointer; /* インタラクティブなものにカーソルを合わせる */
}

:where(:disabled) {
  cursor: not-allowed; /* フォームコントロール無効時のカーソルを許可しない */
}

:where(label:has(> input:disabled), label:has(+ input:disabled)) {
  cursor: not-allowed; /* ラベルにもカーソルを許可しない */
}

:where(button) {
  border-style: solid; /* ボタンのボーダーのスタイルを設定しやすくする */
}

:where(a) {
  text-underline-offset: 0.2ex; /* 下線の上にスペースを追加する */
}

:where(ul, ol) {
  list-style: none; /* ビュレットを削除、必要に応じて手動で追加する */
}

:where(img, svg, video, canvas, audio, iframe, embed, object) {
  display: block; /* 置換された要素をより予測可能にする */
}

:where(img, picture, svg) {
  block-size: auto; /* アスペクト比を保持 */
  max-inline-size: 100%; /* images should never overflow past the available space */
}

:where(p, h1, h2, h3, h4, h5, h6) {
  overflow-wrap: break-word; /* 長い単語は改行 */
}

:where(h1, h2, h3) {
  line-height: calc(1em + 0.5rem); /* 見出しの行の高さを減らす */
}
h2{
	margin: 0
}
:where(hr) {
  block-size: 0;
  /* より一貫性のある、スタイリッシュなhr */
  border: none;
  -webkit-border-before: 1px solid;
  border-block-start: 1px solid;
  color: inherit;
  overflow: visible;
}

:where(:focus-visible) {
  /* より一貫性のある、カスタマイズ可能なフォーカスのアウトライン */
  outline: 2px solid var(--focus-color, Highlight);
  outline-offset: 2px;
}

/* .visually-hiddenは後のカスケードレイヤーを上書きするために!importantを使用 */
:where(.visually-hidden:not(:focus, :active, :focus-within, .not-visually-hidden)) {
  border: 0 !important;
  -webkit-clip-path: inset(50%) !important;
  clip-path: inset(50%) !important;
  height: 1px !important;
  overflow: hidden !important;
  position: absolute !important;
  white-space: nowrap !important;
  width: 1px !important;
}

:root {
  --line-height-l: 2;
  --line-height-m: 1.75;
  --line-height-s: 1.5;
  --line-height-xs: 1.3;
  --letter-spacing-l: 0.12em;
  --letter-spacing-m: 0.08em;
  --letter-spacing-s: 0em;
}

/* Base
----------------------------------------------------------------- */
html {
  font-size: 62.5%;
  height: -webkit-fill-available;
  scroll-behavior: smooth;
}
body {
  -webkit-font-smoothing: antialiased;
  font-family: "Noto Sans JP", sans-serif;
  -webkit-font-feature-settings: "palt" 1;
  font-feature-settings: "palt" 1;
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 400;
  line-height: var(--line-height-l);
}


:where(a) {
  color: inherit;
  text-decoration: none;
}
:where(a):hover {
  text-decoration: none;
}
:where(ol),
:where(ul),
:where(dl) {
  list-style: none;
}

:where(em),
:where(i) {
  font-style: normal;
}

:where(h1),
:where(h2),
:where(h3),
:where(h4),
:where(h5),
:where(h6) {
  font-size: 1.6rem;
  font-weight: 700;
:where(p) {
}

  font-size: 14px;
  font-weight: 700;
  line-height: var(--line-height-m);
  margin-top: 15px;
}
@media print, screen and (min-width:768px) {
  :where(p) {
    font-size: 15px;
    margin-top: 0;
  }
}
:where(p).-center {
  text-align: center;
}

:where(em) {
  font-style: normal;
  font-weight: 500;
}

:where(img) {
  display: block;
  height: auto;
  width: 100%;
}

@media print, screen and (min-width:768px) {
  .sp-only {
    display: none;
  }
}
@media print, screen and (max-width:767px) {
  .sp-only {
    display: block;
  }
}
/* ==========================================================================
Layout
========================================================================== */
/* ==========================================================================
Component
========================================================================== */
#gohoubipalet-top{
  color: #333;
  position: relative;
  background: #F7E0CC;
  background: linear-gradient(180deg, rgba(247, 224, 204, 0.27) 0%, rgb(248 245 220 / 71%) 0%, rgb(248 247 220) 0%, rgba(247, 224, 204, 1) 0%);
  display: flex;
  justify-content:center;
  overflow: hidden;
}
#gohoubipalet-top .item-box{
  opacity:0
}
#gohoubipalet-top .item-box.displayed{
  animation: fadeUp 1s forwards;
}
@keyframes fadeUp{
  0%{opacity:0; transform: translateY(20px);}
100%{opacity:1; transform: translateY(0);}
}
#gohoubipalet-top section.right-section,#gohoubipalet-top section.left-section{
  height: 100vh;
  position: fixed;
  width: calc((100% - 800px) / 2);
  /* max-width: calc((100% - 800px) / 2); */
  left: 0;
  display:flex;
  justify-content:center;
  align-items:center;
  flex-direction: column;
  overflow: hidden;
}
#gohoubipalet-top section.main-section{
  padding: 0;
  max-width: 800px;
  width: 57%;
  box-shadow: 0 0 23px #00000054;
  overflow: hidden;
  z-index: 10;
}
@media screen and (min-width:1401px){
	#gohoubipalet-top section.left-section .ank-wrap,#gohoubipalet-top section.left-section h3{
		display:none
	}
}
@media screen and (max-width:1400px){
#gohoubipalet-top section.left-section{
  width: calc(100% - 57%);
}
	#gohoubipalet-top section.right-section{
		display:none;
		width: 1px;
		height: 1px;
		overflow: hidden;
		opacity: 0;
		position: absolute;
	}
	#gohoubipalet-top section.left-section .ank-wrap{
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		margin: 18px auto 0;
		gap: 10px;
		padding: 0 10px;
		width: 100%;
	}
	#gohoubipalet-top section.left-section p{
		font-size: 15px!important;
	}
	#gohoubipalet-top section.left-section h3{
		margin: 30px 0 0;
		aspect-ratio: 355/52;
		width: 60%;
		height: 4.5vh;
	}
	#gohoubipalet-top section.left-section h1 img,#gohoubipalet-top section.left-section h3 img{
		height:100%;
		object-fit: contain;
	}
	#gohoubipalet-top section.left-section .ank-wrap li{
		height: 10vh;
	}
	#gohoubipalet-top{
	display: block;
	}
#gohoubipalet-top section.main-section{
	box-shadow: none;
	margin: 0 0 0 auto;
}
}
#gohoubipalet-top section.left-section .lead-wrap{
	max-width:500px
}
#gohoubipalet-top h1{
	max-width: 550px;
	margin: 0 auto;
	width: 95%;
	height: 38vh;
}
#gohoubipalet-top h1 span, h3 span{
  width: 1px;
  height: 1px;
  overflow: hidden;
  display: block;
}
#gohoubipalet-top section.left-section p,section.main-section > .lead-wrap.sp-only p{
	width: 83%;
	margin: 21px auto 0;
	text-align: center;
	line-height: 2.5;
	font-size: 17px;
	/* font-family: YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif"; */
	font-weight: 600;
	letter-spacing: 0.2em;
}
@media print, screen and (max-width:768px){
	#gohoubipalet-top section.left-section{
		display:none
	}
	#gohoubipalet-top h1{
		width:90%;
		max-width:600px;
		height: auto;
	}
	section.main-section > .lead-wrap.sp-only{padding: 20px 0 50px;}
	section.main-section > .lead-wrap.sp-only p{
		font-size:14px;
		margin: 16px auto 0;
	}
		#gohoubipalet-top h3{
		margin: 30px auto 0;
		aspect-ratio: 355/52;
		width: 60%;
		height: 4.5vh;
	}
	#gohoubipalet-top h3 img{
		height:100%;
		object-fit: contain;
	}
	section.main-section > .lead-wrap.sp-only .ank-wrap{
		margin:20px auto 0;
		gap: 10px;
		max-width:300px;
		padding: 0;
		display: grid;
		grid-template-columns: repeat(2, 1fr);
	}
} 
@media print, screen and (min-width:530px) and (max-width:768px){
	section.main-section > .lead-wrap.sp-only .ank-wrap{
		grid-template-columns:repeat(4,1fr);
		max-width: 95%;
	}
} 
#gohoubipalet-top section.right-section{
  left:auto;
  right:0;
  background: #F7E0CC;
  background: linear-gradient(90deg, rgba(247, 224, 204, 1) 0%, rgb(255 230 216) 100%);
  background: url(/scsq/foodshow_edge/gohoubipalet2025/kirakira-bg.webp) repeat center / 200px #F7E0CC;
}
#gohoubipalet-top section.right-section h3{
	width:90%
}
#gohoubipalet-top section.right-section .buy-bt{
  font-size:20px
}
@media print, screen and (max-width:768px){
    #gohoubipalet-top{
  display:block
  }
  #gohoubipalet-top section.right-section{
  display:none;
  height: 0px;
  width: 0px;
  overflow: hidden;
  }
#gohoubipalet-top section.main-section{
	max-width:100%;
	width:100%;
}
}
/**********アンカーリンクボタン**********/
.ank-wrap{
  margin: 17px auto 0;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 500px;
  position: sticky !important;
  z-index: 3 !important;
  top: 0 !important;
  height: auto;
  gap:20px;
  flex-wrap: wrap;
}
.store-ank::before{
  display:none
}
.store-ank{
  text-align: center;
  position: relative;
  font-size: 18px;
  font-weight: 600;
  transition: 0.3s;
  box-sizing: border-box;
  background: #ffea95;
  border-radius: 20px;
  box-shadow: 0 4px 5px #33333342;
}
.store-ank:nth-of-type(2){
  background: #fffcef;
}
.store-ank:nth-of-type(3){
  background: #f1b87c;
}
.store-ank:nth-of-type(4){
	  background: #ffffff;
}
/*.store-ank::before{
	content: "";
	display: block;
	position: absolute;
	width: 4px;
	height: 4px;
	border-top: 2px solid #000000;
	border-right: 2px solid #000000;
	bottom: 19px;
	right: 50%;
	transform: rotate(135deg) translateY(-50%);
	z-index: 20;
	transition: all 0.3s ease 0s;
}
.store-ank::after{
	content: "";
	display: block;
	position: absolute;
	width: 25px;
	height: 25px;
	border: 1px solid #000000;
	bottom: 6px;
	right: 50%;
	visibility: visible;
	border-radius: 50%;
	transform: translateX(50%);
}*/
.store-ank:hover{
  transform: translateY(3px);
	box-shadow:none
}
.store-ank a{
  padding: 15px 5px 14px;
  color: #000000;
  box-sizing: border-box;
  display: flex;
  position: relative;
  align-items: center;
  height: 100%;
  object-fit: contain;
}
.store-ank figure{
  margin: 3px 0 0;
  max-height: 91px;
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: center;
}
.store-ank figure img{
  max-height: 100%;
  object-fit: contain;
}
@media screen and (min-width: 1001px){
  .store-ank .storename{
    margin-top: 0;
    font-size: 28px;
  }
  .store-ank .storename span{
    font-size: 14px;
  }
}
@media print, screen and (max-width:530px){
		section.main-section > .lead-wrap.sp-only .ank-wrap .store-ank{
		aspect-ratio:auto;
		transition:0.1s;
	}
	section.main-section > .lead-wrap.sp-only .ank-wrap .store-ank a{
		height:100%;
		aspect-ratio:auto;
		padding: 20px 5px;
	}
	section.main-section > .lead-wrap.sp-only .ank-wrap .store-ank a figure{
		height: 56px;
		margin:0 auto;
	}
	.store-ank::after,.store-ank::before{
		display:none
	}
	section.main-section > .lead-wrap.sp-only .ank-wrap .store-ank:hover{
    transform: translateY(4px);
		box-shadow: none;
  }
} 
.store-ank .storename span::before {
    position: absolute;
    top: 12px;
    left: 0;
    display: block;
    width: 20px;
    height: 20px;
    background-image: url(https://www.tokyu-dept.co.jp/images/sp_common/sprite_icon.png);
    background-position: -346px 0;
    background-size: 500px auto;
    vertical-align: middle;
    content: " ";
    transform: translateY(-50%);
}


.buy-bt {
  width: 300px;
  margin: 20px auto 0;
  text-align: center;
  border-radius: 100vh;
  overflow: hidden;
  box-shadow: 0 5px 0 #0f202e;
  letter-spacing: 0.15em;
  font-size: 13px;
  transition: 0.05s;
  position:relative;
  max-width: 400px;
  z-index: 100;
}
.buy-bt::after{
  content:"";
  display:block;
  width: 0;
  height: 0;
  border-style: solid;
  border-top: 3px solid transparent;
  border-bottom: 3px solid transparent;
  border-left: 20px solid #ffffff;
  border-right: 0;
  position:absolute;
  top:50%;
  right: 14px;
  transform:translateY(-50%)
}
.buy-bt:hover{
    transform:translateY(3px);
    box-shadow: none;  
}
.buy-bt a{
    padding: 11px 23px 12px 14px;
    text-align:center;
    font-weight:600;
    width: 100%;
    height: 100%;
    display: block;
    background: #283e53;
    color: #fff;
    font-size: 16px;
    font-family: "fot-chiaro-std", sans-serif;
}
.buy-bt a span{
	margin:0 6px 0 0;
	font-size:12px;
	padding: 2px 7px 2px 8px;
	border:1px solid;
	background: #fff;
	color: #b7612f;
	letter-spacing: 0;
	border-radius: 100vh;
}
section.myself-sweets .buy-bt a span{
	color: #856a53;
}
section.gohoubi a{
	text-decoration: none;
	color: #fff
}
section.myself-sweets a{
	color: #ffffff;
	text-decoration: none;
}
section.myself-sweets .buy-bt{
	box-shadow: 0 5px 3px #564030;
}
section.myself-sweets .buy-bt:hover{
	box-shadow:none
}
section.myself-sweets .buy-bt a{
	/* color: #574230; */
	background: #856a53;
}
section.myself-sweets .package-img {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 22px;
}
section img{
	width: 100%
}
section.gohoubi.kawaii-sweets{
	padding: 0 0 60px;
	border-left: 30px solid #df7539;
	border-right: 30px solid #df7539;
	background: #fff;
	position: relative;
}
section.gohoubi.kawaii-sweets h2{
	width: 94%;
	aspect-ratio: 277/90;
	background: url(https://www.tokyu-dept.co.jp/oseibo/gohoubi/image/section01-title.webp) no-repeat center/contain;
	margin: 0 auto;
	max-width: 800px;
}
section.gohoubi.kawaii-sweets .lead-wrap {
	text-align: center;
	padding: 50px 0;
	max-width: 500px;
	margin: 0 auto;
}
section.gohoubi .lead-wrap p{
	line-height: 2.3;
	font-weight: 600;
	font-size: 15px;
	width: 95%;
	margin: 20px auto 0;
}
section.gohoubi .item-wrap{
	max-width: 1500px;
	margin: 0 auto;
	padding: 0;
	box-sizing: border-box;
	width: 100%;
}
section.gohoubi .item-wrap .item-box{
	width: 100%;
	/* max-width: 468px; */
	position:relative;
	margin: 100px 0;
}
section.gohoubi .item-wrap .item-box:last-of-type{
	margin:0
}
section.gohoubi .item-wrap .item-box:nth-of-type(2),section.gohoubi .item-wrap .item-box:nth-of-type(5){
	width: 64%;
}
section.gohoubi .item-wrap .item-box:nth-of-type(2){
	width: 64%;
	margin: 100px 0 100px 30px;
}
section.gohoubi .item-wrap .item-box:nth-of-type(3){
	    width: 83%;
	    margin: 0 30px 0 auto;
}
section.gohoubi .item-wrap .item-box:nth-of-type(6){
    width: 76%;
    margin: 0 0 0 auto;
}

section.gohoubi .item-wrap .item-box:nth-of-type(4){
	background:#fff;
	padding: 30px;
}
section.gohoubi .item-wrap .item-box:nth-of-type(1){
	margin: 0px;
}

section.gohoubi .item-wrap .item-box figure{
	z-index: -1;
	aspect-ratio:32/19;
	width: 100%;
}
section.gohoubi .item-wrap .item-box:nth-of-type(2) figure{
	margin: 0 0 0 auto;
	aspect-ratio:336/263;
	width: 111%;
}
section.gohoubi .item-wrap .item-box:nth-of-type(3) figure{
	aspect-ratio: 729/512;
	transform: translateX(1%);
	width: 115%;
}
section.gohoubi .item-wrap .item-box:nth-of-type(5) figure{
	aspect-ratio: 301/272;
	transform: translateX(5%);
	width: 100%;
}
section.gohoubi .item-wrap .item-box:nth-of-type(5) figure img{
	object-position: left;
}
section.gohoubi .item-wrap .item-box:nth-of-type(6) figure{
	transform: translateX(-10%);
	aspect-ratio: 242/161;
	width: 119%;
}
section.gohoubi .item-wrap .item-box figure a{
	display: block;
	height: 100%
}
section.gohoubi .item-wrap .item-box.huffu:nth-of-type(1) figure{
	width: 100%;
	z-index: 1000;
	position: relative;
	transform: translateX(-6%);
	aspect-ratio: 832/494;
}
section.gohoubi .item-wrap .item-box.huffu figure{
	width: calc((100% + 60px));
	transform: translateX(-30px);
}
section.gohoubi .item-wrap .item-box.huffu figure img{
	object-fit:cover
}
section.gohoubi .item-wrap figure img{
	height: 100%;
	object-fit: contain;
	object-position: center;
}
section.gohoubi .item-wrap .item-box .item-info{
	width: 80%;
	max-width: 395px;
	position: relative;
	margin: 20px auto 0;
}
section.gohoubi .item-wrap .item-box:nth-of-type(3) .item-info{
	margin: 0 20px 0 auto;
}
section.gohoubi .item-wrap .item-box.huffu .item-info{
	margin: 30px auto;
}
section.gohoubi .item-wrap .buy-bt{
	font-weight: 600;
	text-align: center;
	box-shadow: 0 5px 0 #894722;
}
section.gohoubi .item-wrap .buy-bt:hover{
	box-shadow:none
}
section.gohoubi .item-wrap .buy-bt a{
	display: block;
	height: 100%;
	padding-right: 35px;
	background: #df7539;
}
@media print, screen and (max-width:1015px){
	section.gohoubi .item-wrap .item-box:last-of-type{
	margin:0
}
section.gohoubi .item-wrap .item-box:nth-of-type(2),section.gohoubi .item-wrap .item-box:nth-of-type(5){
	width: 78%;
}
	section.gohoubi .item-wrap .item-box:nth-of-type(5){
		margin:100px auto 100px 50px 
	}
section.gohoubi .item-wrap .item-box:nth-of-type(3){
	    width: 80%;
	    margin: 0 0 0 auto;
}
section.gohoubi .item-wrap .item-box:nth-of-type(6){
    width: 73%;
    margin: 0 0 0 auto;
}
section.gohoubi .item-wrap .item-box figure{
	width: 100%;
}
section.gohoubi .item-wrap .item-box:nth-of-type(3) figure{
	width: 106%;
}
section.gohoubi .item-wrap .item-box:nth-of-type(5) figure{
	transform: translateX(-10%);
}
section.gohoubi .item-wrap .item-box:nth-of-type(6) figure{
	width: 125%;
}
section.gohoubi .item-wrap .item-box.huffu:nth-of-type(1) figure{
	width: 100%;
}
}


.item-info{
	margin: 20px auto 0;
}
.item-info .item-brand{
	margin: 0 0 11px;
	padding: 0 0 6px 0px;
	line-height: 1.0;
	font-weight: 600;
	font-size: 18px;
	border-bottom: 2px dotted;
	white-space: nowrap;
}
.item-info .item-name{
	margin-bottom: 0;
	line-height: 1.3;
	font-size: 18px;
}
.item-info .item-name span {
	margin-top: 6px;
	font-size: 13px;
}
.item-info .item-price{
	margin: 10px 0 0;
	font-size: 23px;
	font-weight: 600;
	line-height: 1.2;
	text-align: right;
	display: flex;
	justify-content: flex-end;
	align-items: flex-end;
	position: relative;
}
/*.item-info .item-price::after{
	content:"円";
	font-size:13px;
	margin-left:3px;
}*/
.item-info .item-price:nth-of-type(2){
	margin: 5px 0 0;
}
.item-info .item-price a{
	color: #000;
}
.item-info .item-price span{
	margin-left: 3px;
	font-size: 16px;
}
.item-info .item-price span.num{
	margin-right: 13px;
	font-size: 14px;
}
.item-info .item-price span.tax{
	font-size: 10px;
  font-weight: 500;
  display: block;
}



/*とっておきの自分時間*/
section.myself-sweets {
    background: #fff6d5;
    padding: 0 0 60px;
}
section.myself-sweets .lead-wrap{
    width: 100%;
    aspect-ratio: 388/241;
    background: url(https://www.tokyu-dept.co.jp/oseibo/gohoubi/image/section02-title-bg-02.webp) no-repeat center/contain;
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* padding: 0 0 43px; */
}
@media screen and (max-width:1100px) and (min-width:768px){
  section.myself-sweets .lead-wrap{
	aspect-ratio: 775/722;
	background: url(https://www.tokyu-dept.co.jp/oseibo/gohoubi/image/section02-title-bg.webp) no-repeat center/contain;
	}
}
@media screen and (max-width:600px){
  section.myself-sweets .lead-wrap{
	aspect-ratio: 775/722;
	background: url(https://www.tokyu-dept.co.jp/oseibo/gohoubi/image/section02-title-bg.webp) no-repeat center/contain;
	}
}
section.myself-sweets .lead-wrap h2{
	width: 85%;
	aspect-ratio: 760/259;
	background: url(https://www.tokyu-dept.co.jp/oseibo/gohoubi/image/section02-title.webp) no-repeat center/contain;
	margin: 0 auto;
	max-width: 717px;
}
.item-box.mv {
    position: relative;
}
.item-box.mv .item-info {
    width:80%;
    margin: 29px auto 0;
    max-width: 100%;
}
section.myself-sweets h2 span{
	width:1px;
	height: 1px;
	display: block;
	overflow: hidden;
}
section.myself-sweets .lead-wrap p{
	text-align:center;
	max-width: 90%;
	letter-spacing: 0.2em;
	padding: 10px 0 0;
	margin: 10px auto 0;
	border-top: 1px solid;
	color: #333;
}
section.myself-sweets .item-wrap .item-box{
	margin:80px auto;
	max-width: 600px;
}
section.myself-sweets .item-wrap .item-box:nth-of-type(1){
	margin: 42px auto;
	padding: 0 30px 0 0;
}
section.myself-sweets .item-wrap .item-box:nth-of-type(4) {
	padding: 0 30px 0 0px;
}

section.myself-sweets .item-info {
	font-size: 14px;
	max-width: 450px;
}

section.myself-sweets .item-info .item-price{
	font-size: 19px;
}
section.myself-sweets .item-info .item-price span:nth-of-type(1){
	margin: 0 5px 0 0;
	font-size: 13px;
}
section.myself-sweets .item-info .item-brand{
	font-size: 17px;
}
.item-info section.gochisou-section .item-wrap {
    padding: 50px 20px;
    display: flex;
    flex-direction: column;
    gap: 80px;
}
section.gochisou-section .item-wrap {
    padding: 50px 20px;
    display: flex;
    flex-direction: column;
    gap: 80px;
}
details{
	margin: 10px 0 0;
	padding: 3px 10px 8px;
	border:1px solid
}
.item-info summary {
    padding: 0;
    font-weight: 600;
    font-size: 13px;
}




section.gochisou-section {
    background: #fff;
    color: #6a3906;
}
section.gochisou-section .buy-bt{
    box-shadow: 0 5px 0 #ad8a4a;
}
section.gochisou-section .buy-bt:hover{
	box-shadow:none
}
section.gochisou-section .buy-bt a{
    background: #ecb758;
}
section.gochisou-section .lead-wrap {
	padding: 9px 0 40px;
	text-align: center;
	background: url(https://www.tokyu-dept.co.jp/oseibo/gohoubi/image/section03-title-bg.webp) no-repeat center top/100%;
	aspect-ratio: 267/272;
	display: flex;
	flex-direction: column;
	justify-content: center;
}
@media screen and (min-width:1200px){
section.gochisou-section .lead-wrap{
	background: url(https://www.tokyu-dept.co.jp/oseibo/gohoubi/image/section03-title-bg-02.webp) no-repeat center top/100%;
	aspect-ratio: 267/208;
}
}
section.gochisou-section .lead-wrap h2{
	width: 80%;
	aspect-ratio: 725/421;
	background: url(https://www.tokyu-dept.co.jp/oseibo/gohoubi/image/section03-title.webp) no-repeat center/contain;
	margin: 0 auto;
	max-width: 500px;
}
section.gochisou-section h2 span{
	width:1px;
	height: 1px;
	display: block;
	overflow: hidden;
}
section.gochisou-section .lead-wrap p{
	margin: 30px auto 0;
	line-height: 2.3;
	font-weight: 600;
	font-size: 17px;
	max-width: 80%;
	color: #6a3906;
}
@media screen and (max-width:400px){
	section.gochisou-section .lead-wrap p{
	margin: 15px auto 0;
	max-width: 95%;
	font-size: 15px;
	}
}
section.gochisou-section .item-wrap {
    padding: 50px 0 80px;
    display: flex;
    flex-direction: column;
    gap: 80px;
}
section.gochisou-section .item-box{
	max-width:660px;
	margin:0 auto;
	width: 83%;
}
section.gochisou-section .item-box:nth-of-type(1), section.gochisou-section .item-box:nth-of-type(4),section.gochisou-section .item-box:nth-of-type(7) {
	max-width:100%;
	width: 100%;
}
section.gochisou-section .item-box .item-info{
	max-width:500px
}
p.item-explanation {
    margin: 0 0 38px;
    background-color: #fff;
    background-image: linear-gradient(90deg, transparent 0%, transparent 50%, #fff 50%, #fff 100%), linear-gradient(180deg, #653c27 1px, transparent 1px);
    background-size: 8px 100%, 100% 2.0em;
    border-bottom: 1px dashed #6a3906d6;
    line-height: 2.0em;
    font-size: 18px;
    letter-spacing: 0.1em;
}
section.myself-sweets p.item-explanation{
    background-color: #fff6d5;
    background-image: linear-gradient(90deg, transparent 0%, transparent 50%, #fff6d5 50%, #fff6d5 100%), linear-gradient(180deg, #000000 1px, transparent 1px);
    border-bottom: 1px dashed #7777776e;
}

section.dining-section{
	background: #fff
}
section.dining-section .lead-wrap {
	padding: 30px 0 40px;
	text-align: center;
}
section.dining-section .lead-wrap h2{
	width: 80%;
	aspect-ratio: 940/386;
	background: url(https://www.tokyu-dept.co.jp/oseibo/gohoubi/image/section04-title.webp) no-repeat center/contain;
	margin: 0 auto;
	max-width: 800px;
}
section.dining-section h2 span,section.gohoubi.kawaii-sweets h2 span{
	width:1px;
	height: 1px;
	display: block;
	overflow: hidden;
}
section.dining-section .lead-wrap p{
	margin: 30px auto 0;
	line-height: 2.3;
	font-weight: 600;
	font-size: 17px;
	max-width: 80%;
}
section.dining-section .item-wrap {
    padding: 50px 20px;
    display: flex;
    flex-direction: column;
    gap: 80px;
    max-width: 680px;
    margin: 0 auto;
}
section.dining-section .item-info{
	margin: 20px auto 0;
	max-width: 80%;
}



