






@charset "utf-8";
/* ==========================================================================
Base
========================================================================== */

*,
*::before,
*::after {
  box-sizing: border-box; /* もちろん、より直感的なbox-sizingに設定 */
  margin: 0; /* マージンは0に */
  padding: 0; /* パディングも常に0に */
	visibility:visible;
}

:where([hidden]:not([hidden="until-found"])) {
  display: none !important; /* hiddenは非表示を意味します */
}

:where(html) {
  text-size-adjust: none; /* iOSのランドスケープでテキストが調整されないようにする */
  color-scheme: dark light; /* ユーザーがダークテーマを好む場合、自動的にダークテーマになる */
}

@supports not (min-block-size: 100dvb) {
  :where(html) {
    block-size: 100%;
  }
}

:where(body) {
  font-family: system-ui, sans-serif; /* timeの代わりにシステムフォントを使用 */
  line-height: 1.5; /* アクセシブルな行の高さ */
  block-size: 100%; /* サファリ以外のブラウザのフォールバック */
  block-size: 100dvb; /* 1dvbは動的ビューポートの長さの1%、100dvbで高さいっぱいに */
  -webkit-font-smoothing: antialiased; /* テキストのレンダリングを改善 */
}

: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) {
  max-inline-size: 100%; /* images should never overflow past the available space */
  block-size: auto; /* アスペクト比を保持 */
  width: 100%;
}

:where(p, h1, h2, h3, h4, h5, h6) {
  overflow-wrap: break-word; /* 長い単語は改行 */
}
p {
	margin:0
}
:where(h1, h2, h3) {
  line-height: calc(1em + 0.5rem); /* 見出しの行の高さを減らす */
}

:where(hr) {
  overflow: visible;

  /* より一貫性のある、スタイリッシュなhr */
  border: none;
  color: inherit;
  border-block-start: 1px solid;
  block-size: 0;
}

: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)) {
  position: absolute !important;
  overflow: hidden !important;
  width: 1px !important;
  height: 1px !important;
  border: 0 !important;
  white-space: nowrap !important;
  clip-path: inset(50%) !important;
}

.visually-hidden {
  position: absolute;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
  white-space: nowrap;
}


html {
  height: -webkit-fill-available;
  font-size: 62.5%;
  scroll-padding-top: 110px;
}

html:has(dialog:not(.c-calendar-filter__dialog)[open]) {
  overflow: hidden;
}

@media print, screen and (width < 768px) {
  html {
    scroll-padding-top: 138px;
  }
}

body {
  margin: 0;
  font-size: 1.6rem;

}
a {
  color: inherit;
  text-decoration: none;
}
a:focus-visible {
  outline-offset: 4px;
  border-radius: 4px;
}

inut,
select,
textarea,
legend,
label,
form,
button {
  display: block;
  background-color: transparent;
  border: none;
  color: inherit;
  font-size: inherit;
  line-height: inherit;
  appearance: none;
}
button:focus-visible {
  outline-offset: 4px;
  border-radius: 4px;
}
::placeholder {
  color: #333;
}
/* visually-hidden */
.visually-hidden {
  position: absolute;
  overflow: hidden;
  clip: rect(0 0 0 0);
  width: 1px;
  height: 1px;
  white-space: nowrap;
  clip-path: inset(50%);
}

@media print, screen and (width <=767px) {
  .-pc-only {
    display: none !important;
  }
}

@media print, screen and (width < 768px) {
  .-sp-only {
    display: none !important;
  }
}
.feature{
	margin:0;
	padding:0
}
div#gohoubi-top {
    background: #FBE1E2;
    background: linear-gradient(125deg, rgba(251, 225, 226, 1) 0%, rgba(255, 251, 245, 1) 50%, rgba(255, 245, 218, 1) 100%);
    font-family: "zen-kaku-gothic-new", sans-serif;
    font-weight: 900;
    font-style: normal;
    padding: 0 0 200px;
    color: #000;
    overflow: hidden;
}
header#mv {
    height: 100vh;
    display: grid;
    justify-content: space-between;
    align-items: center;
    position: relative;
    grid-template-columns: 1fr 43%;
    gap: 10%;
}
@media print, screen and (width < 768px) {
	header#mv{
		 padding: 5vh 0;
		 gap:0;
		 display: block;
		 margin-bottom: 17vh;
	}
}
.mv-visual h1{
	display: flex;
	justify-content: center;
	align-items: center;
}
@media print, screen and (width < 768px){
	.mv-visual h1{
		height: 43vh;
		margin-bottom:2vh
	}
}
.mv-visual h1 figure{
	width: 36vw;
	transform: translate(9%,-10%);
}
@media print, screen and (width < 768px){
	.mv-visual h1 figure{
		width: 70vw;
		height:100%;
		transform: none;
	}
	.mv-visual h1 figure img{
		height:100%;
		object-fit:contain
	}
}
.mv-visual > figure {
    position: absolute;
    width: 20vw;
    z-index: 10;
}
.mv-visual > figure:nth-of-type(1){
	top: 2%;
	left: 2%;
	transform: rotate(12deg);
	width: 9vw;
	aspect-ratio: 155/176;
}
.mv-visual > figure:nth-of-type(2){
	bottom: 2%;
	left: 1%;
	width: 21vw;
	aspect-ratio: 61/47;
}
.mv-visual > figure:nth-of-type(3){
	top: 5%;
	right: 1%;
	width: 18vw;
	transform: rotate(-5deg);
	aspect-ratio: 155/69;
}
.mv-visual > figure:nth-of-type(4){
	bottom: 15%;
	left: 40%;
	width: 18vw;
	transform: rotate(5deg);
	aspect-ratio: 338/141;
}
.mv-visual > figure:nth-of-type(5){
	bottom: 5%;
	right: 3%;
	width: 15vw;
	transform: rotate(15deg);
	aspect-ratio: 134/119;
}
.mv-visual > figure:nth-of-type(6){
	top: 2%;
	right: 42%;
	width: 13vw;
	transform: rotate(5deg);
	aspect-ratio: 239/308;
}
.lead-text{
	margin: 0 0 100px auto;
	padding: 5vh 3px 5vh 6vw;
	background: #fff;
	border:2px solid;
	border-top-left-radius: 8vw;
	border-bottom-left-radius: 8vw;
	line-height: 1.9;
	font-size: clamp(16px,2.2vw,25px);
	position: relative;
	border-right:none;
	width: 100%;
}
@media print, screen and (width < 768px){
	.lead-text{
		width: 89%;
		padding: 5vh 3px 5vh 13vw;
	}
	.mv-visual > figure:nth-of-type(1){
	top: 2%;
	left: 8%;
	width: 13vw;
}
.mv-visual > figure:nth-of-type(2){
	bottom: -9%;
	left: 3%;
	width: 34vw;
}
.mv-visual > figure:nth-of-type(3){
	top: 7%;
	right: 7%;
	width: 32vw;
}
.mv-visual > figure:nth-of-type(4){
	bottom: 54%;
	left: 2%;
	width: 31vw;
}
.mv-visual > figure:nth-of-type(5){
	bottom: -10%;
	right: 3%;
	width: 18vw;
}
.mv-visual > figure:nth-of-type(6){
	top: 38%;
	right: 4%;
	width: 21vw;
	transform: rotate(5deg);
	aspect-ratio: 239/308;
}
}
.lead-text::before{
	content:"TOKYU DEPERTMENT STORE SUMMER GIFT";
	position:absolute;
	transform: translateY(-50%);
	top:50%;
	left: 0;
	font-size:11px;
	border-right: 4px dotted;
	padding:0 10px;
	writing-mode: vertical-lr;
	white-space: nowrap;
}
.lead-text span{
	font-size: clamp(20px,2.5vw,28px);
}
@media print, screen and (width < 768px){
	.lead-text::before{
		padding:0 5px;
	}
}

nav#ank {
    background: #ffffffa3;
    width: 90%;
    margin: 0 auto;
    padding: 10%;
    box-shadow: 0 0 10px #fff;
}
.ank-link ul{
	display:grid;
	gap:80px;
	align-items:center
}
@media print, screen and (width < 768px){
	nav#ank {
		 padding: 90px 3% 50px;
	}
	.ank-link ul{
	gap:130px;
  }
}
.ank-link ul li.normal{
	position: relative;
	display: flex;
	justify-content: flex-end;
}
.ank-link ul li.normal button{
	height:100%;
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: flex-end;
}
.ank-link ul li.normal button > a{
	display: flex;
	width:100%;
	height:100%;
	position: relative;
	align-items: center;
}
@media screen and (max-width:768px){
	.ank-link ul li.normal button > a{
	}
}
@media print, screen and (width > 768px){
	.ank-link ul li.normal .viewmore:hover{
	transform: scale(1.1) translateX(-45%) translateY(-50%);
}
}
.ank-link ul li .viewmore{
	border-radius: 50%;
	aspect-ratio:1/1;
	border: 2px solid;
	box-shadow:0 0 5px #000;
	width: 21%;
	display: flex;
	justify-content: center;
	align-items: center;
	text-align:center;
	background: #fff;
	font-weight:600;
	z-index: 10;
	font-size: clamp(12px,2.0vw,15px);
	line-height: 1.2;
	min-width: 60px;
	max-width: 120px;
	transform: translateX(-50%) translateY(-50%);
}
.ank-link ul li .viewmore a{
	display:flex;
	justify-content:center;
	align-items:center
}
@media print, screen and (width < 768px){
	.ank-link ul li .viewmore{
	transform: translateY(0);
	}
}
.ank-link ul li.normal.cool .viewmore{
	box-shadow:0 0 5px #4dc4e7;
	color:#4dc4e7;
}
.ank-link ul li.normal.cool h2{
	color:#4dc4e7;
}
.ank-link ul li.normal.kawaii .viewmore{
	box-shadow:0 0 5px #78c25e;
	color:#78c25e;
}
.ank-link ul li.normal.kawaii h2{
	color:#78c25e;
}
.ank-link ul li.normal.yakigashi .viewmore{
	box-shadow:0 0 5px #6d5b33;
	color:#6d5b33;
}
.ank-link ul li.normal.yakigashi h2{
	color:#6d5b33;
}
.ank-link ul li.normal.gochisou .viewmore{
	box-shadow:0 0 5px #d8a03e;
	color:#d8a03e;
}
.ank-link ul li.normal.gochisou h2{
	color:#d8a03e;
}
.ank-link ul li.normal.zeitaku .viewmore{
	box-shadow:0 0 5px #1b2d54;
	color:#1b2d54;
}
.ank-link ul li.normal.zeitaku h2{
	color:#1b2d54;
}
.ank-link ul li.normal.lunch h2{
	color:#424242;
}
.ank-link ul li.normal.gotouchi h2{
	color:#dfb20c;
}
.ank-link ul li.normal.lunch .viewmore,.ank-link ul li.normal.gotouchi .viewmore{
	border:none;
	box-shadow:none;
	background:none;
	transform: translateX(-50%) translateY(-50%);
}
@media screen and (max-width:768px){
	.ank-link ul li.normal.lunch .viewmore,.ank-link ul li.normal.gotouchi .viewmore{
	transform: translateY(-41%);
  }
}
.ank-link ul li.normal.lunch .viewmore a,.ank-link ul li.normal.gotouchi .viewmore a{
	display:block;
	height:100%;
	width: 100%;
	font-size: 0;
	position: relative;
	z-index: 100;
}
.ank-link ul li.normal.lunch .viewmore::before,.ank-link ul li.normal.gotouchi .viewmore::before{
	content:"";
	display:block;
	width:100%;
	height:100%;
	background:url(https://www.tokyu-dept.co.jp/gohobipallete/ochugen2026/top/link06-img-viewmore.webp) no-repeat center/contain;
	position:absolute;
	top:0;
	left:0;
}
.ank-link ul li.normal .viewmore:hover::before{
	transform:scale(1.2)
}
.ank-link ul li.normal.gotouchi .viewmore::before{
background:url(https://www.tokyu-dept.co.jp/gohobipallete/ochugen2026/top/link07-img-viewmore.webp) no-repeat center/contain;	
}
.ank-link ul li.normal a  > figure{
	position:relative;
	z-index:10;
	max-width: 600px;
	width: 74%;
}
.ank-link ul li.normal a  > figure img{
	height:100%;
	object-fit:cover;
}
.ank-link ul li.normal .text-area{
	display:flex;
	flex-direction: row-reverse;
	position: relative;
	gap: 25px;
}
@media print, screen and (width < 768px){
  .ank-link ul li.normal .text-area{
	gap: 10px;
	width: 25%;
	}	
}
.ank-link ul li.normal h2{
	text-align:right;
	min-width: 30px;
}
.ank-link ul li.normal h2 .main-title{
writing-mode: vertical-rl;
    -webkit-writing-mode: vertical-rl;

    text-orientation: mixed;
    -webkit-text-orientation: mixed;

    font-feature-settings: "vert";
	font-size: clamp(22px, 2.8vw, 32px);
	display: block;
}
@supports (-webkit-touch-callout: none) {
  .ank-link ul li.normal h2 .main-title,.ank-link ul li.normal .text-area p {
    font-family: YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, "sans-serif"
  }
}
.ank-link ul li.normal h2 .sub-title{
	display:block;
	font-size: clamp(8px,0.8vw,11px);
	text-align:center;
	position: absolute;
	top: 0;
	right: 50%;
	transform: translate(50%, -100%);
	width: auto;
	white-space: nowrap;
} 
.ank-link ul li.normal h2 .sub-title span{
	display:block;
	font-size: clamp(57px, 3.8vw, 65px);
	margin: 0 0 11px;
	font-family: "oskar", sans-serif;
	font-weight: 600;
	font-style: normal;
}
@media print, screen and (width < 768px){
	.ank-link ul li.normal h2 .sub-title span{
		margin-bottom:3px
	}
}

.ank-link ul li.normal .text-area p{
  writing-mode: vertical-rl;
  -webkit-writing-mode: vertical-rl;

  text-orientation: mixed;
  -webkit-text-orientation: mixed;

  font-feature-settings: "vert";
	text-align: left;
	margin-top: 8px;
	font-size: clamp(14px, 1.8vw, 20px);
}
.bolujuku{
	background: #a3d82e;
}
.bolujuku button{
	display:block;
	width:100%
}
.ank-link ul li.bolujuku button a{
	display:grid;
	grid-template-columns: auto 500px;
	gap: 9%;
	align-items: center;
	justify-content: center;
	text-align:left;
	font-weight:600;
	line-height:2.2;
	font-size:clamp(18px,2.6vw,25px);
	padding: 8vh 5%;
	position: relative;
	border: 1px solid;
}
@media screen and (max-width:1450px) and (min-width:1120px){
	.ank-link ul li.bolujuku button a{
	grid-template-columns: auto auto;
	}
	.ank-link ul li.bolujuku button a div:last-of-type .view-more{
		width:80px
	}
}
@media screen and (max-width:1120px) and (min-width:768px){
	.ank-link ul li.bolujuku button a{
	grid-template-columns:1fr
	}
}
.ank-link ul li.bolujuku button a div:last-of-type {
	display:flex;
	align-items:center;
	gap:20px
}
@media screen and (max-width:1120px) and (min-width:768px){
	.ank-link ul li.bolujuku button a div:last-of-type{
	justify-content:center
	}
}
.ank-link ul li.bolujuku button a div:last-of-type p{
	white-space:nowrap
}
@media print, screen and (width > 768px){
	.ank-link ul li.cool{
justify-content: center;
}
.ank-link ul li.kawaii{
justify-content: flex-start;
margin-top: -5%;
}
.ank-link ul li.yakigashi{margin-top: -10%;}
.ank-link ul li.normal.zeitaku{
justify-content: flex-start;
}
.ank-link ul li.normal.gotouchi{
justify-content: flex-start;
margin-top: -10%;
}
}
@media print, screen and (width < 768px){
	.bolujuku{
		width: calc((100% + 20%));
		transform: translateX(-8%);
	}
	.ank-link ul li.bolujuku button a{
	display: block;
	padding: 50px 20px 50px;
	}
}
.ank-link ul li.bolujuku .viewmore{
	background: #eccd00;
	transform: none;
	width: 31%;
}
@media print, screen and (width < 768px){
	.ank-link ul li.bolujuku .viewmore{
	width: 21%;
 }

}
.ank-link ul li.bolujuku .viewmore:hover{
	transform:scale(1.3)
}
.bolujuku .bolujukulp-visual {
    display: grid;
    gap: 10% 20%;
    grid-template-columns: repeat(3,1fr);
    justify-content: center;
    position: relative;
    grid-template-rows: 28% 1fr 28%;
    max-width: 619px;
    height: 42vh;
}
@media print, screen and (width < 768px){
	.bolujuku .bolujukulp-visual{
	margin-bottom:30px;
	width: 80%;
	margin: 0 auto 53px;
	}
	.bolujuku .bolujukulp-visual + div{
		margin:0 auto;
		justify-content: center;
		width: 100%;
	}
	.ank-link ul li.normal.bolujuku .viewmore{
		bottom: 14%;
		right: 3%;
	}
}
@media screen and (max-width:1120px) and (min-width:768px){
	.bolujuku .bolujukulp-visual{
		max-width:80%;
		margin:0 auto
	}
}
.bolujuku .bolujukulp-visual h2 {
	grid-column: 1/4;
	display: flex;
	justify-content: center;
}
.bolujuku .bolujukulp-visual h2 figure{
	position:relative;
	
}
.bolujuku .bolujukulp-visual > figure {
	height: 100%;
}
.bolujuku .bolujukulp-visual > figure img {
	height: 100%;
	object-fit: contain;
}
.bolujuku .bolujukulp-visual > figure.main-img{
	height: 26vh;
	width: 22vw;
	position: absolute;
	right: 0;
	top: 0;
	transform: translateX(31%);
}
.bolujuku a p span.hukidashi{
	font-size:clamp(13px,2.0vw,18px);
	display:inline-block;
	padding: 2px 10px 6px;
	background: #eccd00;
	border: 1px solid #000;
	position: relative;
}
.bolujuku a p span.hukidashi::after{
	content:"";
	display:block;
	position:absolute;
	border-right: 1px solid #000;
	border-bottom: 1px solid;
	height: 15px;
	width: 15px;
	z-index: 10000;
	background: #eccd00;
	right: 47%;
	transform: rotate(45deg)translateY(50%);
	bottom: -2px;
}
.bolujuku a p span.main{
	font-size: clamp(19px,4vw,35px);
	line-height: 1.7;
}


.buy-bt {
  width: 80%;
  margin: 70px auto 0;
  text-align: center;
  border-radius: 100vh;
  overflow: hidden;
  box-shadow: 0 5px 0 #392f26;
  letter-spacing: 0.15em;
  font-size: 13px;
  transition: 0.05s;
  position:relative;
  max-width: 459px;
  z-index: 100;
}
.buy-bt.top-bt{
	display:none
}
@media screen and (max-width: 1400px) and (min-width: 900px){
  #gohoubipalet-top .buy-bt.top-bt{
	  display:block;
	  box-shadow: 0 5px 0 #392f26;
	 }
}
.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: 25px 23px 24px 18px;
    text-align:center;
    font-weight:600;
    width: 100%;
    height: 100%;
    display: block;
    background: #3EBCDF;
    background: linear-gradient(125deg, rgba(62, 188, 223, 1) 0%, rgba(49, 181, 164, 1) 100%);
    color: #fff;
    font-size: clamp(18px,3.0vw,28px);
    font-family: "fot-chiaro-std", sans-serif;
}
.buy-bt a:hover{
	text-decoration:none
}



