@charset "UTF-8";
/*
 * wine.css — 特定LP固有のCSS
 *
 * 役割: このLPだけで必要なテーマ配色・
 *       CSS変数オーバーライド・LP固有のスタイル調整
 * スコープ: このLPのみ（他LPには影響しない）
 */


/* =============================================
   秋テーマ変数
============================================= */

:root {

	--color-primary: #b23f6e;
	--color-secondary: #ce729c;
	--color-accent: #a99059;
	--color-base: #ffe7c5;
	--color-tastekyushu: #c69c6d;

	--corner-radius: 1.6rem;
}




/* =============================================
   秋テーマ全体
============================================= */

.htb-pagetop {
	opacity: 1;
	visibility: visible;
}

figure.kari:before {
	content: "仮";
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 1;
	font-size: 2rem;
	line-height: 1;
	background: #fff;
	color: red;
	padding: 2rem;
	border: 1px solid;
}



#wine {
	background: #fff;
	color: #000;
}

#wine h3,
#wine h4,
#wine h5,
#wine h6 {
	letter-spacing: 0;
}

#wine main {
	font-family: var(--font-family-Zen-Go);
	font-weight: 500;
}
#wine .c-nav{
	background-color: transparent;
	padding: 0;
	border: 0;
}
#wine .c-nav__menu-toggle{
	background-color:var(--color-primary);
	padding: 10px;
	  width: 90px;
}
#wine .js-dialog-menu {
	width: 90%;
	max-width:480px;
	background-color:var(--color-primary);
}
#wine .text-wrap {
	text-wrap: pretty;
	word-break: auto-phrase;
}
.dialog-menu-btn span {
  width: 28px;
  height: 2px;
}


.dispPc.flex {
	display: flex !important;
}
.dispSp.flex{
	display: none !important;
}


@media screen and (max-width: 768px) {
	#wine .c-nav__menu-toggle{
		padding: 10px;
		  width: 60px;
	}
	.dialog-menu-btn span {
	  height: 1px;
	}
	.dispPc.flex {
		display: none !important;
	}
	.dispSp.flex {
		display: flex !important;
	}


}

/* =============================================
   ヘッダーCTA位置調整
============================================= */

@media screen and (max-width: 768px) {
	.h-header__cta.sp-side {
		transition: all 0.4s;
	}

	body.scroll .h-header__cta.sp-side {
		bottom: 40%;
		transition: all 0.4s;
	}

	body.upfixed .h-header__cta.sp-side {
		bottom: 35%;
	}

}

@media screen and (max-width: 1024px) {
	body.scroll .h-header__cta.sp-side {
		right: 0;
		background: transparent;
		padding: 0;
		width: 4rem;
		transform: scale(0.8);
		transform-origin: right;
		top: calc(var(--current-header-h, 80px) + 100px);
		top: 30%;
	}

	body.scroll .h-header__cta.sp-side a:before {
		margin: 0 auto;
		width: 100%;
		height: 20px;
	}

	body.scroll .h-header__cta.sp-side a.cta__ticket span,
	body.scroll .h-header__cta.sp-side a.cta__hotel span {
		width: auto;
		writing-mode: vertical-rl;
		letter-spacing: 3px;
	}
}



/* =============================================
   　#fv
============================================= */

#fv picture{
  width: 100%;
    aspect-ratio: 4 / 3.5;
}
#fv picture img{
  height: 100%;
}
section.page__kv {
  background: url(../img/index/bg.png);
}
section.page__kv figure {
  justify-content: center;
}

@media screen and (min-width: 1024px) {

	#fv picture{
		max-height: 750px;
		max-width: 1440px;
	}
	#fv picture img {
	  object-position: bottom;
	}
}
/* =============================================
   　#term
============================================= */

#term {
	background:url(../img/index/bg.png);
	background-size: 50%;
	color:var(--color-primary);
	font-weight: 500;
}
#term  .section {
  padding-top:0;
}

#term .page__body__inner--full {
  gap: 3.6rem;
  max-width: 1320px;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}

#term .term-txt{
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 0;
	gap: 2rem;
	width: 100%;
	margin: 0 auto;
}

#term  h1.logo {
  width: 60%;
  margin: 0 auto;
  margin-top: -50px;
}

#term  h1.logo  figure {
  justify-content: center;
}


#term .term-txt h2 {
	font-weight: 300;
	line-height: 140%;
}
#term .term-txt p{
	font-weight: 500;
	line-height: 160%;
	font-size: calc(var(--font-size-base) * 1.1);
}

.term-nav{
  display: flex;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  align-items: flex-start;
  justify-content: center;
  padding: 0 1.6rem;
  flex-wrap: wrap;
}
.term-nav a{
	text-align: center;
	text-decoration: none;
	font-weight: 700;
	font-size: calc(var(--font-size-sm) * 0.85);
	color:#000;
	line-height: 125%;
	width: calc(100% / 2.3 - 0.5rem);
}
.term-nav a:nth-child(n+3){
	width: calc(100% / 2.3 - 0.5rem);
}


.location{
  position: relative;
}
.location:before{
  content: "";
  background: var(--color-primary);
  width: 100%;
  height: 150px;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.location figure{
	width: 80%;
	margin: 0 0 0 auto;
}
.location figure:nth-child(even) {
	width: 80%;
	margin: 0 auto 0 0;
}

.date {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: center;
}
.date dl {
  display: grid;
  justify-content: flex-start;
  align-items: stretch;
  position: relative;
  gap: 10px;
  grid-template-columns: auto 1fr;
  width: auto;
  font-size: calc(var(--font-size-base) * 1.1);
  padding: 1.6rem 0;
}
.date dl dt {
  display: flex;
  justify-content: center;
  align-items: center;
  background:var(--color-primary);
  color:#fff;
  border-radius: 5px;
  padding: 3px 10px;
  line-height: 1.2;
  text-align: center;
  max-width: 100px;
  font-size: 85%;
  min-height: 24px;
}
.date dl dd {
	text-align: left;
	color:var(--color-primary);
	line-height: 130%;
}
.date dl dd small{
	font-size:85%;
}


@media screen and (min-width: 1024px) {

	#term .term-txt h2 {
	 font-size: calc(var(--font-size-xl) * 1.5);
	}
	#term .term-txt p {
	 font-size: calc(var(--font-size-base) * 1.2);
	}
	#term {
	  background-size: auto;
	}

	.location {
	  position: relative;
	  display: flex;
	    gap: 3rem;
	    margin-top:2rem;
	}
	.location:before {
	  content: "";
	  background: var(--color-primary);
	  width: 400%;
	  height: 150px;
	  position: absolute;
	  bottom: 0;
	  left: 0;
	  transform: translate(-50%, -50%);
	}
	.location figure {
		width: 100%;
		margin: 0 0 0 auto;
		transform: rotate(-3deg);
		border: 4px #fff solid;
		box-shadow: 1px 1px 10px #000;
	}
	.location figure:nth-child(even) {
	  width: 100%;
	  margin: 6rem auto 0 0;
	  transform: rotate(3deg);
	}
}

/* =============================================
   RTB共通
============================================= */



.rtb .section {
	border-radius: calc(var(--corner-radius) * 0) 0 0 0;
}

.rtb .c-card {
	border-radius: 0;
	width: 100%;
	max-width: 1440px;
}
.rtb .c-card__catch {
	border: 0;
}

.rtb .c-card__catch:after {
	display: none;
}

.rtb .c-card__img {
	width: 100%;
}

.rtb .s-card__label {
	position: relative;
	top: auto;
}

.rtb .s-card .s-card__txt {
	gap: calc(var(--scard-gap) * 1.2);
	padding: calc(var(--scard-padding) * 1) calc(var(--scard-padding) * 0);
}


.link {
  gap: 1rem;
}

a.btn.btn-textlink,
button.btn.btn-textlink {
  background-color: transparent !important;
  border: 0 !important;
  border-bottom: 2px solid !important;
  border-radius: 0 !important;
  padding: 0.3rem;
  color: #000 !important;
  border-color:var(--color-primary) !important;
  font-size: calc(var(--font-size-md) * 0.8);
}

a.btn.btn-textlink span:after,
button.btn.btn-textlink span:after {
	content: "";
	mask-repeat: no-repeat;
	mask-position: center;
	mask-size: contain;
	background-color: currentColor;
	background-repeat: no-repeat;
	background-position: center;
	mask-image: url(data:image/svg+xml;charset=utf8,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%3F%3E%3Csvg%20id%3D%22_%E3%83%AC%E3%82%A4%E3%83%A4%E3%83%BC_2%22%20data-name%3D%22%E3%83%AC%E3%82%A4%E3%83%A4%E3%83%BC%202%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%20123.93%20123.93%22%3E%20%3Cg%20id%3D%22_%E3%83%AC%E3%82%A4%E3%83%A4%E3%83%BC_1-2%22%20data-name%3D%22%E3%83%AC%E3%82%A4%E3%83%A4%E3%83%BC%201%22%3E%20%3Cpath%20d%3D%22M61.97%2C0C27.74%2C0%2C0%2C27.74%2C0%2C61.97s27.74%2C61.97%2C61.97%2C61.97%2C61.97-27.74%2C61.97-61.97S96.19%2C0%2C61.97%2C0ZM81.11%2C65.62l-23.24%2C23.24c-1.01%2C1.01-2.33%2C1.51-3.65%2C1.51s-2.64-.5-3.65-1.51c-2.02-2.02-2.02-5.29%2C0-7.3l19.59-19.59-19.59-19.59c-2.02-2.02-2.02-5.29%2C0-7.3s5.29-2.02%2C7.3%2C0l23.24%2C23.24c2.02%2C2.02%2C2.02%2C5.29%2C0%2C7.3Z%22%2F%3E%20%3C%2Fg%3E%3C%2Fsvg%3E);
	width: 15px;
	height: 15px;
	display: block;
	color: var(--color-primary);
}

/* =============================================
#course
============================================= */

#course {
  background: url(../img/index/bg.png);
  background-size: 50%;
  color: var(--color-primary);
}


#course .c-card__logo{
  width: 100%;
  padding: 0;
  text-align: left;
  position: relative;
  z-index: 2;
    justify-content: flex-start;
}
#course .c-card__logo h2{
  padding: 0;
  background: var(--color-primary);
  color: #fff;
  line-height: 130%;
  padding: 1.6rem 2rem 1.6rem 1rem;
  border-radius: 0 999px 999px 0;
  text-align: center;
  font-size: calc(var(--font-size-xl) * 0.85);
}
#course .c-card__img {
  width: 100%;
  margin-top: -4rem;
}

.select-menu{
  width: 100%;
  background: #fff;
  padding: 1rem;
  border-radius: 1.6rem;
  font-weight: 500;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
.select-menu .headding{
	font-weight: 700;
	font-size: calc(var(--font-size-base) * 1.2);
	line-height: 125%;
	color: var(--color-primary);
	position: relative;
}
.select-choice {
  display: flex;
  gap: 0.5rem;
}
.select-choice .choice {
  display: flex;
  flex: 1;
  flex-direction: column;
}
.select-choice .choice > div{
	background: var(--color-primary);
	color: #fff;
	padding: 1rem;
	border-radius: 0.8rem;
	display: grid;
	grid-template-columns: 30px auto;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	height: 70px;
}
.select-choice .choice > div:before{
  content: "";
  background-image: url(../img/index/course/wine.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  display: block;
  height: 100%;
}
.select-choice .choice > div.non-alcoholic:before{
  background-image: url(../img/index/course/non-alcoholic.svg);
}
.select-choice .choice > div.softdrink:before{
  background-image: url(../img/index/course/softdrink.svg);
}
.select-choice .choice > div.beer:before{
  background-image: url(../img/index/course/beer.svg);
}
.select-choice .choice > div .name{
	background: var(--color-primary);
	color: #fff;
	font-size: calc(var(--font-size-base) * 0.7);
	line-height: 120%;
	display: flex;
	flex-direction: column;
	gap: 1rem;
	white-space: nowrap;
}
.select-choice .choice > div.wine .name,
.select-choice .choice > div.beer .name{
	font-size: calc(var(--font-size-base) * 1.1);
}
.select-choice .choice > div .name span{
	display: block;
	line-height: 100%;
	font-size: calc(var(--font-size-base) * 0.7);
}
.select-choice .choice > div .name span em{
	font-weight: 700;
	font-size:280%;
}
.select-choice .choice .remarks{
	display: block;
	line-height: 120%;
	font-size: calc(var(--font-size-base) * 0.6);
	padding-top:0.5rem;
}

.select-menu .price{
  font-size: calc(var(--font-size-base) * 1.5);
  line-height: 100%;
  width: 100%;
  display: flex;
  align-items: baseline;
  align-content: center;
  flex-wrap: wrap;
  justify-content: center;
}
.select-menu .price.border{
	border-bottom: 1px dotted;
	padding: 0 0 2rem;
}
.select-menu .price em{
	font-weight: 700;
	font-size:180%;
}

.select-menu .price.plus:before{
  content: "";
  background-image: url(../img/index/course/plus.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  width: 20px;
  display: block;
  height:20px;
  margin-right:0.5rem;
}
.select-menu .select-choice.plus{
  position: relative;
  padding-top: 1rem;
  gap: 1.4rem;
}

.select-menu .select-choice.plus:before{
  content: "";
  background-image: url(../img/index/course/plus.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  width: 20px;
  display: block;
  height: 20px;
  margin: 0 auto;
  position: absolute;
  top: -20px;
  left: 0;
  right: 0;
}

.select-group {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.select-group .select-menu{
  width:auto;
}

.select-menu .headding.new:before {
	content: "NEW";
	font-size: 13px;
	padding: 0.8rem;
	mask-repeat: no-repeat;
	mask-position: center;
	mask-size: contain;
	color: #fff;
	background-color: var(--color-accent);
	background-repeat: no-repeat;
	background-position: center;
	mask-image: url(../img/index/course/medal.svg);
	position: absolute;
	left: -45px;
	top: -15px;
}


#non-alcoholic{
}
#non-alcoholic .read {
  font-weight: 500;
  color:#000;
}
#course .link-body {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  flex-direction: column;
}

@media screen and (min-width: 1024px) {
	#course {
	  background-size: auto;
	}
	#course .c-card__logo {
		width: 100%;
		max-width: 480px;
		padding: 0;
		text-align: left;
		position: relative;
		z-index: 2;
		top: auto;
		left: auto;
		justify-content: center;
	}
	#course .c-card__logo h2 {
		width: auto;
		font-size: calc(var(--font-size-xl) * 1);
		border-radius: 9999px;
		padding: 1.6rem 2.4rem 1.6rem 2.4rem;
	}
  #course .c-card-group>.c-card>.c-card__txt {
    width: 70%;
    padding: var(--card-padding);
    align-content: center
  }

	  #course .c-card:nth-child(odd) .c-card__txt {
		padding-right: 0;
		padding-top: 0;
	  }
	  #course .c-card:nth-child(even) .c-card__txt {
	    padding-left: 0;
	    padding-top: 0;
	  }


	#course .c-card__img {
	  min-height: 100%;
	  margin-top:0;
	}
	#course .c-card__img img {
	  height: 100%;
	  aspect-ratio: 4 / 3.5 !important;
	}

	.select-choice .choice > div {
		height: 90px;
		grid-template-columns: 35px auto;
		gap: 1rem;
	}
	.select-menu .headding {
	  font-size: calc(var(--font-size-base) * 1.4);
	}
	.select-choice .choice > div .name {
	  font-size: calc(var(--font-size-base) * 0.9);
	}
	.select-choice .choice > div.wine .name, .select-choice .choice > div.beer .name {
	  font-size: calc(var(--font-size-base) * 1.4);
	}
	.select-choice .choice > div .name span {
	  font-size: calc(var(--font-size-base) * 0.9);
	}
	.select-choice .choice .remarks {
	  font-size: calc(var(--font-size-base) * 0.7);
	}
	.select-menu .price {
	  font-size: calc(var(--font-size-base) * 1.7);
	}
	.select-menu {
	  padding: 1.6rem;
	  gap: 1.6rem;
	}
	.rtb .c-card {
        align-items: flex-start;
	}
	.link {
	  flex-direction: row;
	}

	.select-menu .select-choice.plus:before{
	  width: 30px;
	  height: 30px;
	  top: -30px;
	}
/*
	 #course .c-card:nth-child(odd) .c-card__body {
		flex-wrap: nowrap;
		align-items: flex-start;
		  flex-direction: row;
	  }
	#course .c-card:nth-child(odd) .select-group:nth-child(2) {
	  flex-direction: column;
	}

	#course .link-body {
	  margin-top: -4rem;
	}
*/
}


/* =============================================
#recommendwine
============================================= */

#recommendwine{}

#recommendwine h2 {
	position: relative;
	line-height: 1.4;
	padding: 0.35em 2.5em;
	display: table;
	margin: 0 auto 3rem;
	color:var(--color-accent);
}

#recommendwine h2:before, #recommendwine h2:after { 
  content:'';
  width: 45px;
  height: 20px;
  position: absolute;
  display: inline-block;
}

#recommendwine h2:before,
#recommendwine h2:after {
  border-left: solid 2px var(--color-accent);
  border-top: solid 2px var(--color-accent);
  top:50%;
  left: 0;
}
#recommendwine h2:after {
transform: scale(-1, 1);
  top:50%;
  right: 0;
  left: auto;
}

#recommendwine .c-card {
  flex-direction: row;
  flex-wrap: nowrap;
}
#recommendwine .c-card:nth-child(even) {
  flex-direction: row-reverse;
}

#recommendwine .c-card__img{
  width: 27%;
}
#recommendwine .c-card__txt{
	width: 73%;
	padding-left: 1.6rem;
	padding-right: 1.6rem;
}

#recommendwine .c-card__title {
  font-size: calc(var(--card-font-size) * 1.2);
  text-wrap: unset;
  word-break: normal;
}
#recommendwine  .c-card__catch {
  font-size: calc(var(--card-font-size) * 1);
  font-weight: 600;
  line-height: 130%;
}
#recommendwine  .text {
  font-size: calc(var(--card-font-size) * 0.8);
}

@media screen and (min-width: 1024px) {
	#recommendwine .c-card-group {
	  display: grid;
	  grid-template-columns: 1fr 1fr 1fr;
	}
	#recommendwine .c-card:nth-child(even) {
	  flex-direction: row;
	}
	#recommendwine h2 {
	  font-size: calc(var(--font-size-2xl) * 1);
	}

}


/* =============================================
   ワインフェス　#winefes
============================================= */

#winefes {
}

#winefes .winefes{
	display: grid;
	gap: 3rem;
	text-align: center;
	margin: 0 2.4rem;
	width: auto;
	max-width: 1200px;
	  border: 6px #b23f6e double;
}

#winefes .c-card-group {
	background: #fff;
	padding: 0 0 var(--space-x);
}

#winefes .c-card {
	color: #000;
	overflow: visible;
}

#winefes .c-card__label {
	background-color: #b23f6e;
	position: absolute;
	top: -2rem;
	left: 50%;
	transform: translateX(-50%);
	margin: 0 auto;
}

#winefes .c-card__txt{
	padding: calc(var(--card-padding) * 1.5) calc(var(--card-padding) * 1.5);
}

#winefes .c-card .c-card__header {
	color: #b23f6e;
}

#winefes dl dt {
	background-color: #fff;
	color: #b23f6e;
	border: 1px solid;
}

@media screen and (min-width: 1024px) {
	#winefes .c-card__label {
		top: -2.4rem;
	}
}


/* =============================================
   テイストオブ九州　#tastekyushu
============================================= */

#tastekyushu {
	color: #fff;
}
#tastekyushu .section {
  padding-bottom:0;
}
#tastekyushu h2{
	display: flex;
	justify-content: center;
	align-items: flex-end;
	gap: 10px;
	padding: 0;
	color: var(--color-tastekyushu);
	font-size: var(--font-size-lg);
	font-weight: 700;
	text-align: center;
	line-height: 140%;
	margin: 0 auto 2rem;

  &::before {
    content: "";
    width: 20px;
    height: 2px;
    box-sizing: border-box;
    background-color:var(--color-tastekyushu);
    rotate: 50deg;
    
    transform-origin:right;
  }

  &::after {
    content: "";
    width: 20px;
    height: 2px;
    box-sizing: border-box;
    background-color:var(--color-tastekyushu);
    rotate: -50deg;
    
    transform-origin: left;
  }
}
#tastekyushu h2 span{
	display: flex;
	justify-content: center;
	align-items: flex-end;
	  position: relative;

  &::before {
	content: "";
	width: 30px;
	height: 2px;
	box-sizing: border-box;
	background-color: var(--color-tastekyushu);
	rotate: 60deg;
	transform-origin: right;
	position: absolute;
	left: -30px;
  }

  &::after {
    content: "";
    width: 30px;
    height: 2px;
    box-sizing: border-box;
    background-color:var(--color-tastekyushu);
    rotate: -60deg;
    transform-origin: left;
	position: absolute;
	right: -30px;
  }
}


#tastekyushu .section .page__body {
	background-color: var(--color-tastekyushu);
}

#tastekyushu dl dt {
	background-color: #fff;
	color: #936939;
	border: 1px solid;
}

#tastekyushu  .btn{
	background-color: #fff;
	color: var(--color-tastekyushu);
}

@media screen and (min-width: 1024px) {

	#tastekyushu h2 {
	  font-size: calc(var(--font-size-2xl) * 1);
	}
	#tastekyushu .page__body__inner--full {
    padding: 4rem;
  }
	#tastekyushu h2 span {
	  &::before {
	    bottom: 5px;
	  }
	&::after {
	    bottom: 5px;
	  }
	}
}

