@charset "UTF-8";

@font-face {
	font-family: "SoDoSans";
	font-style: normal;
	font-weight: 400;
  src: url("/common/fonts/SoDoSans/SoDoSans-Regular.woff") format("woff"),
  url("/common/fonts/SoDoSans/SoDoSans-Regular.woff2") format("woff2");
}

@font-face {
	font-family: "SoDoSans SemiBold";
	font-style: normal;
	font-weight: 400;
	src: url("/common/fonts/SoDoSans/SoDoSans-SemiBold.woff") format("woff"),
  url("/common/fonts/SoDoSans/SoDoSans-SemiBold.woff2") format("woff2");
}

@font-face {
	font-family: "SoDoSans";
	font-style: normal;
	font-weight: 700;
	src: url("/common/fonts/SoDoSans/SoDoSans-Bold.woff2") format("woff2"),
  url("/common/fonts/SoDoSans/SoDoSans-Bold.woff") format("woff");
}

@font-face {
	font-family: "SoDoSans Black";
	font-style: normal;
	font-weight: 700;
	src: url("/common/fonts/SoDoSans/SoDoSans-Black.woff2") format("woff2"),
  url("/common/fonts/SoDoSans/SoDoSans-Black.woff") format("woff");
}


* {
  margin: 0;
	padding: 0;
  box-sizing: content-box;
}
img {
  max-width: none;
}

@media print, screen and (min-width: 910px) {
  * {
    box-sizing: border-box;
  }
}

:root {
	--color-main: #e94753;
  --color-white: #ffffff;
  --color-orange: #ee6a23;
  --color-yellow: #fff286;
  --color-black: #000000;
  --color-black-87: rgba(0, 0, 0, 0.87);
}


.mod-en {
	font-family: "SoDoSans SemiBold";
}


.mainContents {
	overflow-x: hidden;
	overflow-x: clip;
}

.mainContents img {
	width: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
li,
dt,
dd,
th,
td,
pre,
caption,
address {
	margin: 0;
}


p {
	margin: 0;
	letter-spacing: 0;
}

a {
	opacity: 1;
	transition: all 0.3s ease;
	-webkit-font-smoothing: antialiased;
}

a:hover {
	opacity: 0.8;
	transition: all 0.3s ease;
}




@media print, screen and (min-width: 910px) {
	.is-pc {
		display: block;
	}

	.is-sp {
		display: none;
	}
}

@media screen and (max-width: 911px) {
	.is-pc {
		display: none;
	}

	.is-sp {
		display: block;
	}
}


/* ----------------------------------------------------------
bg
---------------------------------------------------------- */
@media print, screen and (max-width: 911px) {
  .pc-left_bg {
    display: none;
  }

  .pc-right_bg {
    position: fixed;
    bottom: 16px;
    right: 0;
    left: 0;
    z-index: 100;
    pointer-events: none;
    height: 0;
  }


}
@media print, screen and (min-width: 910px) {
  /* .ContentsBoxWrap {
    overflow: hidden;
  } */
  .section_inner {
    padding: 0 52px;
  }

  .mainContentsWrap {
    display: flex;
  }
  .ContentsBoxBg {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    height: 100vh;
    z-index: -1;
    background: #ffeee9;
  }


	.mainContents .mainContentsIn .is-fixed.is-bottom {
		top: auto;
		bottom: 0;
		position: absolute;
	}
  .pc-left_bg,
	.pc-right_bg {
		position: sticky;
		display: block;
    top: 0;
    left: 0;
    /* width: calc(50vw - 229.33px); */
    height: 0;
		z-index: 0;
    visibility: visible;
    opacity: 1;
	}
  .pc-right_bg {
    width: calc(50vw - 97px);
    z-index: 2;
  }
  .pc-left_bg {
    width: calc(50vw - 97px);
  }

  .pc-left_bgIn {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    width: calc(50vw - 198px);
    height: 81vh;
    display: flex;
    justify-content: center;
    align-items: center;
  }



  .pc-left_bgIn img {
    width: 188.5px;
    display: block;
  }

  .ContentsBoxWrap {
    flex-shrink: 0;
  }
	.ContentsBox {
    position: relative;
		max-width: 430px;
		width: 100%;
		margin: 0 auto;
    /* box-shadow: 0px 8px 16px 0px #0000007A; */
    /* box-shadow: 0px 6px 6px 0px #a2896e; */
    /* box-shadow: 0px 3px 6px 0px #a2896e; */
    z-index: 1;
	}
  .ContentsBox::before {
    content: "";
    background: url(../images/shadow_left.webp) no-repeat center center / cover;
    position: absolute;
    left: -30px;
    top: 0;
    width: 30px;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    display: block;
  }
  .ContentsBox::after {
    content: "";
    background: url(../images/shadow_right.webp) no-repeat center center / cover;
    position: absolute;
    right: -30px;
    top: 0;
    width: 30px;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    display: block;
  }


  
  

  .mainContents .block-banner,
  .mainContents .block-line,
  .mainContents .block-survey,
  footer, footer.footerWrap {
    position: relative;
    z-index: 1;
  }
  
  .pc-left_bg.is-fade,
  .pc-right_bg.is-fade {
    height: auto;
    top: auto;
    bottom: 150px;
    transition-duration: 0.2s;
    /* visibility: hidden;
    opacity: 0;
    transition-duration: 0.2s; */
  }
  .pc-left_bg.is-fade .pc-left_bgIn {
    top: auto;
    bottom: 150px;
    transition-duration: 0.2s;
  }
 

}


._bg {
	width: 100%;
	background-size: cover;
	background-position: center top;
	background-repeat: no-repeat;
  margin-top: calc(-1/1440*100vw);
}

._bg {
  margin-top: calc(-1/750*100vw);
}

.bg_01 {
  height: calc(1350/750*100vw);
  background-image: url(../images/sp/bg_01.webp);
}

.bg_02 {
  height: calc(3560/750*100vw);
  background-image: url(../images/sp/bg_02.webp);
}

.bg_03 {
  height: calc(1162/750*100vw);
  background-image: url(../images/sp/bg_03.webp);
}

.bg_04 {
  height: calc(1860 / 750 * 100vw);
  background-image: url(../images/sp/bg_04.webp);
}

.bg_05 {
  height: calc(1770 / 750 * 100vw);
  background-image: url(../images/sp/bg_05.webp);
}

/* .bg_05_02 {
  height: calc(1629 / 750 * 100vw);
  background-image: url(../images/sp/bg_05_02.webp);
} */

.bg_06 {
  height: calc(492/750*100vw);
  background-image: url(../images/sp/bg_06.webp);
}

.bg_07 {
  height: calc(1856/750*100vw);
  background-image: url(../images/sp/bg_07.webp);
}

.bg_08 {
  height: calc(3907/750*100vw);
  background-image: url(../images/sp/bg_08.webp);
}

.bg_09 {
  height: calc(1391/750*100vw);
  background-image: url(../images/sp/bg_09.webp);
}



@media print, screen and (min-width: 910px) {
  ._bg {
    margin-top: 0;
  }
	.bg_01 {
		height: 796px;
		background-image: url(../images/bg_01.webp);
	}

	.bg_02 {
		height: 2040px;
		background-image: url(../images/bg_02.webp);
	}

	.bg_03 {
		height: 666px;
		background-image: url(../images/bg_03.webp);
	}

	.bg_04 {
		height: 1067px;
		background-image: url(../images/bg_04.webp);
	}

	.bg_05 {
		height: 1015px;
		background-image: url(../images/bg_05.webp);
	}


	.bg_06 {
		height: 282px;
		background-image: url(../images/bg_06.webp);
	}

	.bg_07 {
		height: 1064px;
		background-image: url(../images/bg_07.webp);
	}

	.bg_08 {
		height: 2235px;
		background-image: url(../images/bg_08.webp);
	}

	.bg_09 {
		height: 795.5px;
		background-image: url(../images/bg_09.webp);
	}

}

/* ----------------------------------------------------------
common
---------------------------------------------------------- */
.block-wrap {
  position: relative;
  color: var(--color-main);
  z-index: 2;
}
/* タイトル  */
.block-ttl {
  font-family: "SoDoSans Black";
  font-weight: 700;
  font-style: normal;
  color: var(--color-main);
  font-size: calc(120/740*100vw);
  line-height: calc(46.67/120);
  text-align: center;
}
  /* 商品情報はこちら ボタン */
.btn {
  background-color: var(--color-main);
  border-radius: calc(40/750*100vw);
  height: calc(76/750*100vw);
}
.btn a {
  display: block;
  height: 100%;
  color: var(--color-white);
  font-size: calc(28/750*100vw);
  line-height: calc(70/750*100vw);
  text-align: center;
  font-weight: 500;
}
.btn._s {
  width: calc(400/750*100vw);
}
.btn._brown {
  width: calc(363/750*100vw);
  height: calc(80/750*100vw);
  background-color: var(--color-main);
}
.btn._brown a {
  color: #fff;
  font-size: calc(30/750*100vw);
  line-height: calc(80/750*100vw);
}
.btn._l {
  width: calc(560/750*100vw);
  height: calc(104/750*100vw);
  font-size: calc(32/750*100vw);
}
.btn._s._better {
  width: calc(480/750*100vw);
  height: calc(104/750*100vw);
  border-radius: calc(52 / 750 * 100vw);
}
.btn._s._tea a {
  font-size: calc(32 / 750 * 100vw);
  line-height: calc(88 / 750 * 100vw);
}


/* 〇〇一覧はこちら ボタン */
.list-btn {
  position: relative;
  left: calc(5/750*100vw);
  width: calc(477.83/750*100vw);
  height: calc(76.02/750*100vw);
  border: calc(2 / 750 * 100vw) solid var(--color-main);
  border-radius: calc(37.96/750*100vw);
}
.list-btn a {
  display: block;
  color: var(--color-main);
  font-size: calc(28/750*100vw);
  line-height: calc(76.02/750*100vw);
  text-align: center;
  font-weight: 500;
}

.list-btn._l {
  height: auto;
  padding: calc(10/750*100vw) 0;
  border-radius: calc(38/750*100vw);
}
.list-btn._l a {
  font-size: calc(28/750*100vw);
  line-height: calc(48/28);
}

/* アレルゲン・栄養成分・原料原産地情報 */
.info-link {
  width: fit-content;
}
.info-link a {
  display: block;
  font-size: calc(28/750*100vw);
  font-weight: 500;
  padding-bottom: calc(12/750*100vw);
  border-bottom: calc(2/750*100vw) solid var(--color-main);
}

/* 商品パーツ共通 */
.bev-ttl a {
  display: block;
  font-feature-settings: "palt";
  font-size: calc(36/750*100vw);
  line-height: calc(48/36);
  font-weight: bold;
  text-align: left;
  color: #726664;
}
.bev-price {
  font-family: "SoDoSans SemiBold";
	font-style: normal;
	font-weight: 400;
  font-size: calc(36/750*100vw);
  line-height: calc(48/36);
  text-align: left;
  color: #726664;
  padding-top: calc(11/750*100vw);
}
.bev-text {
  font-size: calc(26/750*100vw);
  line-height: calc(40/26);
  color: var(--color-main);
  font-weight: 500;
  text-align: left;
}
.bev-note {
  font-size: calc(22/750*100vw);
  line-height: calc(32/22);
  color: var(--color-main);
  font-weight: 500;
}

.bev-lead {
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: 900;
  font-style: normal;
  font-size: calc(36 / 750 * 100vw);
  line-height: calc(56 / 36);
  text-align: center;
}
@media print, screen and (min-width: 910px) {
  /* タイトル  */
.block-ttl {
  font-size: 69px;
  line-height: calc(27 / 69);
}

/* 商品情報はこちら ボタン */
.btn {
  border-radius: 29px;
  height: 38px;
}
.btn a {
  font-size: 12px;
  line-height: calc(70/1440*100vw);
}
.btn._s {
  width: 200px;
}
.btn._l {
  width: 280px;
}
.btn._s._tea {
  width: 300px;
  height: 47px;
  border: 2px solid var(--color-yellow);
}
.btn._s._tea a {
  line-height: 44px;
}
.btn._s._better {
  width:275.05px;
  height: 59.59px;
  border-radius: 32px;
}
.btn._s._tea a {
  font-size: 18.335px;
  line-height: 59.59px;
}
.btn._brown {
  width: 208px;
  height: 45.84px;
}
.btn._brown a {
  font-size: 17.19px;
  line-height: 45.84px;
}


/* 〇〇一覧はこちら ボタン */
.list-btn {
  width: 272.75px;
  height: 45px;
  border: 2px solid var(--color-main);
  border-radius: 21px;
}
.list-btn a {
  font-size: 16.615px;
  line-height: 42px;
}

.list-btn._l {
  padding: 5px 0;
  border-radius: 20px;
}
.list-btn._l a {
  font-size: 19px;
  line-height: 19px;
}

/* アレルゲン・栄養成分・原料原産地情報 */
.info-link a {
  font-size: 16.045px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--color-main);
}

/* 商品パーツ共通 */
.bev-ttl a {
  font-size: 20.5px;
  line-height: 1.33325;
}
.bev-price {
  font-size: 20.865px;
  line-height: 28px;
}
.bev-text {
  font-size: 14.9px;
  line-height: 1.5;
}
.bev-note {
  font-size: 12.605px;
  line-height: 20px;
}

.bev-lead {
  font-size: 18px;
  line-height: 28px;
  text-align: center;
}
}



/* ----------------------------------------------------------
block-kv
---------------------------------------------------------- */
.block-kv {
  position: relative;
}
.block-kv-ttl {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  display: inline-block;
}
.block-kv-text {
  position: absolute;
}
.block-kv-text a {
  display: block;
  height: 100%;
  font-size: calc(26/750*100vw);
  line-height: calc(36/26);
  font-weight: 500;
  color: #fff;
}

.block-kv-link_01 {
  position: absolute;
  top: calc(266 / 750 * 100vw);
  left: calc(151 / 750 * 100vw);
  display: inline-block;
  width: calc(384 / 750 * 100vw);
  height: calc(635 / 750 * 100vw);
  z-index: 1;
}

.block-kv-text a span {
  display: block;
  position: relative;
  font-weight: 500;
}

.block-kv-text._01 {
  top: calc(739 / 750 * 100vw);
  left: 0;
  width: calc(245 / 750 * 100vw);
  height: calc(459 / 750 * 100vw);
}
.block-kv-text._01 a span {
  left: calc(55 / 750 * 100vw);
}

.block-kv-text._02 {
  top: calc(652 / 750 * 100vw);
  left: calc(238 / 750 * 100vw);
  width: calc(285 / 750 * 100vw);
  height: calc(549 / 750 * 100vw);
}
.block-kv-text._02 a span {
  top: calc(-123 / 750 * 100vw);
  left: calc(-40 / 750 * 100vw);
}

.block-kv-text._03 {
  top: calc(737 / 750 * 100vw);
  right: 0;
  width: calc(245 / 750 * 100vw);
  height: calc(459 / 750 * 100vw);
}
.block-kv-text._03 a span {
  right: calc(-38 / 750 * 100vw);
}





.block-kv-note {
  position: absolute;
  width: fit-content;
  top: calc(731 / 750 * 100vw);
  left: calc(505 / 750 * 100vw);
  right: 0;
  font-size: calc(16 / 750 * 100vw);
  line-height: calc(24 / 16);
  font-weight: 400;
  color: #540a00;
  margin: auto;
  text-indent: -1em;
}

@media print, screen and (min-width: 910px) {
  .block-kv-text a {
    font-size: 14.9px;
    line-height: calc(32 / 24);
  }
  
  .block-kv-link_01 {
    top: 152px;
    width: 220px;
    height: 364px;
  }
  
  
  .block-kv-text._01 {
    top: 445px;
    width: 141px;
    height: 265px;
  }
  .block-kv-text._01 a span {
    left: 30px;
  }

  .block-kv-text._02 {
    top: 325px;
    left: 132px;
    width: 171px;
    height: 385px;
  }
  .block-kv-text._02 a span {
    top: 0;
    left: -18px;
  }
  
  .block-kv-text._03 {
    top: 445px;
    width: 141px;
    height: 265px;
  }
  .block-kv-text._03 a span {
    right: -22px;
  }

  

  
  .block-kv-note {
    width: fit-content;
    top: 418px;
    left: 288.5px;
    right: 0;
    font-size: 9.17px;
    line-height: 14px;
    margin: auto;
  }
}

/* ----------------------------------------------------------
block-lead
---------------------------------------------------------- */
.block-lead {
  position: relative;
}
.block-lead-text {
  position: absolute;
  width: 100%;
  top: calc(81 / 750 * 100vw);
  left: 0;
  right: 0;
  margin: auto;
  text-align: center;
  font-size: calc(32/750*100vw);
  color: #e94753;
  line-height: calc(86/32);
  font-weight: 500;
}

.block-lead-text-disc {
  color: #e94753;
  position: absolute;
}
.block-lead-text-disc._01 {
  top: calc(1729 / 750 * 100vw);
  left: calc(260 / 750 * 100vw);
}
.block-lead-text-disc._02 {
  top: calc(2750 / 750 * 100vw);
  left: calc(91 / 750 * 100vw);
}

.block-lead-text-disc-title {
  font-size: calc(32/750*100vw);
  line-height: calc(44/32);
  font-weight: bold;
  letter-spacing: 0.02em;
  margin-bottom: calc(10/750*100vw);
}
.block-lead-text-disc-text {
  font-size: calc(30/750*100vw);
  line-height: calc(50/30);
  font-weight: 400;
}


@media print, screen and (min-width: 910px) {
  .block-lead-text {
    top: 48px;
    font-size: 18px;
  }

  .block-lead-text-disc._01 {
    top: 991px;
    left: 150px;
  }
  .block-lead-text-disc._02 {
    top: 1575px;
    left: 51px;
  }

  .block-lead-text-disc-title {
    font-size: 18px;
    margin-bottom: 9px;
  }
  .block-lead-text-disc-text {
    font-size: 16px;
    line-height: calc(51 / 30);
    letter-spacing: 0.06em;
  }
}


/* ----------------------------------------------------------
block-beverage
---------------------------------------------------------- */
.block-beverage {
  position: relative;
}
.block-beverage-text .bev-ttl a {
  font-size: calc(36 / 750 * 100vw);
  line-height: calc(48 / 36);
  color: var(--color-main);
  letter-spacing: 0.07em;
}
.block-beverage-text .bev-price {
  font-family: "SoDoSans SemiBold";
  font-style: normal;
  font-weight: 400;
  font-size: calc(36 / 750 * 100vw);
  line-height: calc(48 / 36);
  padding-top: calc(-6 / 750 * 100vw);
  color: var(--color-main);

}
.block-beverage-text .bev-price span {
  font-size: calc(35.98/750*100vw);
  line-height: calc(56/35.98);
  letter-spacing: 0.03em;
}
.block-beverage-text .bev-note {
  font-weight: 500;
    margin-top: 0;
}
.block-beverage-text .btn._s {
  width: calc(480 / 750 * 100vw);
  height: calc(104 / 750 * 100vw);
  border-radius: calc(52 / 750 * 100vw);
  margin-top: calc(39 / 750 * 100vw);
}
.block-beverage-text .btn._s a {
  font-size: calc(32/750*100vw);
  line-height: calc(100/32);
  font-weight: bold;
}

.block-beverage-image01 {
  position: absolute;
  top: calc(21 / 750 * 100vw);
  left: 0;
  right: 0;
  width: calc(351 / 750 * 100vw);
  height: auto;
  margin: auto;
}
.block-beverage-image01 a {
  display: block;
  
}
.block-beverage-text._01 {
  width: fit-content;
  position: absolute;
  top: calc(711 / 750 * 100vw);
  left: calc(135 / 750 * 100vw);
}
.block-beverage-text._01 .bev-price .sub {
  position: relative;
  top: calc(-4 / 750 * 100vw);
  border: calc(2 / 750 * 100vw) solid var(--color-main);
  border-radius: calc(8 / 750 * 100vw);
  padding: calc(4 / 750 * 100vw) calc(9 / 750 * 100vw);
  font-size: calc(21 / 750 * 100vw);
  font-weight: 500;
  margin-left: calc(20 / 750 * 100vw);
}



@media print, screen and (min-width: 910px) {
  .block-beverage-text .bev-ttl a {
    font-size: 20px;
    line-height: 28px;
  }
  .block-beverage-text .bev-price {
    font-size: 20.63px;
    line-height: 28px;
    padding-top: 8px;
  }
  .block-beverage-text .bev-price span {
    font-size: 17.99px;
    line-height: 28px;
    letter-spacing: 0.03em;
  }
  .block-beverage-text .bev-note {
    font-weight: 500;
    margin-top: 0;
  }
  .block-beverage-text .btn._s {
    width: 275.04px;
    height: 59.59px;
    border-radius: 29.5px;
    margin-top: 18px;
  }
  .block-beverage-text .btn._s a {
    font-size: 18.335px;
    line-height: calc(100/32);
  }
  
  .block-beverage-image01 {
    top: 12.5px;
    left: 5px;
    width: 201px;
    height: 375px;
  }
  .block-beverage-text._01 {
    top: 409.5px;
    left: 78px;
  }
  .block-beverage-text._01 .bev-price .sub {
    top: -4px;
    border: 1px solid var(--color-main);
    border-radius: 2px;
    padding: 3px 7px;
    font-size: 11px;
    line-height: 1;
    margin-left: 18.5px;
  }
  
}

/* ----------------------------------------------------------
block-chillax
---------------------------------------------------------- */
.block-chillax {
  position: relative;
}

.block-chillax-inner {
  width: calc(650/750*100vw);
  padding-top: calc(199/750*100vw);
  margin: 0 auto;
}

.block-chillax-lead {
  position: relative;
  left: 5px;
  width: fit-content;
  margin: 0 auto;
  color: var(--color-white);
  font-size: calc(28/750*100vw);
  line-height: calc(44/28);
  font-weight: 500;
  text-align: center;
}

.block-chillax-image01 {
  position: absolute;
  top: calc(654 / 750 * 100vw);
  left: calc(10 / 750 * 100vw);
  right: 0;
  width: calc(361 / 750 * 100vw);
  height: auto;
  margin: auto;
}


.block-chillax-bev {
  position: absolute;
  top: calc(1336 / 750 * 100vw);
  left: calc(130 / 750 * 100vw);
}
.block-chillax-bev a {
  display: block;
  font-size: calc(36/750*100vw);
  line-height: calc(48/36);
  font-weight: bold;
  color: var(--color-orange);
}
.block-chillax-price {
  position: absolute;
  top: calc(1384 / 750 * 100vw);
  left: calc(135 / 750 * 100vw);
	font-family: "SoDoSans SemiBold";
	font-style: normal;
	font-weight: 400;
  font-size: calc(36/750*100vw);
  line-height: calc(48/36);
  color: var(--color-orange);
}
.block-chillax-price span {
  font-size: calc(35.98/750*100vw);
  line-height: calc(56/35.98);
  letter-spacing: 0.03em;
}
.block-chillax-price span.sub {
  position: relative;
  top: calc(-4 / 750 * 100vw);
  border: calc(2 / 750 * 100vw) solid var(--color-orange);
  border-radius: calc(4 / 750 * 100vw);
  padding: calc(2 / 750 * 100vw) calc(10 / 750 * 100vw);
  font-size: calc(20 / 750 * 100vw);
  line-height: calc(32 / 20);
  font-weight: 500;
  margin-left: calc(17 / 750 * 100vw);
}
.block-chillax-note {
  position: absolute;
  top: calc(1440 / 750 * 100vw);
  left: calc(137 / 750 * 100vw);
  color: var(--color-orange);
  text-indent: -1em;
  padding-left: 1em;
}
.block-chillax-note li {
  font-size: calc(20 / 750 * 100vw);
  line-height: calc(28 / 20);
  font-weight: 400;
}
.block-chillax .btn {
  position: absolute;
  top: calc(1575 / 750 * 100vw);
  left: calc(136 / 750 * 100vw);
  width: calc(480 / 750 * 100vw);
  height: calc(104 / 750 * 100vw);
  background-color: var(--color-white);
  border-radius: calc(52 / 750 * 100vw);
}
.block-chillax .btn a {
  font-size: calc(32 / 750 * 100vw);
  line-height: calc(104 / 750 * 100vw);
  font-weight: bold;
  color: var(--color-orange);
}

@media print, screen and (min-width: 910px) {
  .block-chillax-inner {
    width: 372.45px;
    padding-top: 113px;
  }

  .block-chillax-lead {
    left: 5px;
    font-size: 15px;
    line-height: 25px;
    letter-spacing: 0.07em;
    margin: 0 auto;
  }

  .block-chillax-image01 {
    width: 206px;
    top: 375px;
    left: 5px;
  }

  .block-chillax-bev {
    top: 765px;
    left: 74px;
  }
  .block-chillax-bev a {
    font-size: 20.63px;
    line-height: calc(56/40);
  }
  .block-chillax-price {
    top: 790px;
    left: 79px;
    font-size: 19.99px;
    line-height: calc(71/39.97);
  }
  .block-chillax-price span {
    font-size: 17.99px;
    line-height: calc(56/35.98);
    letter-spacing: 0.03em;
    margin-right: 2px;
  }
  .block-chillax-price span.sub {
    top: -2px;
    border: 1px solid var(--color-orange);
    border-radius: 2px;
    padding: 2px 11px;
    font-size: 10px;
    line-height: 16px;
    margin-left: 13.5px;
  }
  .block-chillax-note {
    top: 824px;
    left: 79px;
  }
  .block-chillax-note li {
    font-size: 11.5px;
    line-height: calc(16 / 11.5);
  }
  .block-chillax .btn {
    top: 900.5px;
    left: 79px;
    width: 273px;
    height: 60px;
    border-radius: 29px;
  }
  .block-chillax .btn a {
    font-size: 18.335px;
    line-height: 59.59px;
  }
}

/* ----------------------------------------------------------
block-tea
---------------------------------------------------------- */
.block-tea {
  position: relative;
}

.block-tea-inner {
  width: calc(650/750*100vw);
  padding-top: calc(428/750*100vw);
  margin: 0 auto;
}

.block-tea-lead {
  position: relative;
  left: 5px;
  width: fit-content;
  margin: 0 auto;
  color: var(--color-white);
  font-size: calc(28/750*100vw);
  line-height: calc(44/28);
  font-weight: 500;
  text-align: center;
}

.block-tea-image01 {
  position: absolute;
  top: calc(712 / 750 * 100vw);
  left: calc(6 / 750 * 100vw);
  right: 0;
  width: calc(359 / 750 * 100vw);
  height: auto;
  margin: auto;
}


.block-tea-bev {
  position: absolute;
  top: calc(1307 / 750 * 100vw);
  left: calc(133 / 750 * 100vw);
}
.block-tea-bev a {
  display: block;
  font-size: calc(36/750*100vw);
  line-height: calc(48/36);
  font-weight: bold;
  color: var(--color-white);
}
.block-tea-price {
  position: absolute;
  top: calc(1403 / 750 * 100vw);
  left: calc(133 / 750 * 100vw);
	font-family: "SoDoSans SemiBold";
	font-style: normal;
	font-weight: 400;
  font-size: calc(36/750*100vw);
  line-height: calc(48/36);
  color: var(--color-white);
}
.block-tea-price span {
  font-size: calc(35.98/750*100vw);
  line-height: calc(56/35.98);
  letter-spacing: 0.03em;
}

.block-tea .btn {
  position: absolute;
  top: calc(1497 / 750 * 100vw);
  left: calc(135 / 750 * 100vw);
  width: calc(480 / 750 * 100vw);
  height: calc(104 / 750 * 100vw);
  background-color: var(--color-white);
  border-radius: calc(52 / 750 * 100vw);
}
.block-tea .btn a {
  font-size: calc(32 / 750 * 100vw);
  line-height: calc(104 / 750 * 100vw);
  font-weight: bold;
  color: #ad0008;
}

@media print, screen and (min-width: 910px) {
  .block-tea-inner {
    width: 372.45px;
    padding-top: 244px;
  }

  .block-tea-lead {
    left: 5px;
    font-size: 15px;
    line-height: 25px;
    letter-spacing: 0.07em;
    margin: 0 auto;
  }

  .block-tea-image01 {
    width: 206px;
    top: 391px;
    left: 5px;
  }

  .block-tea-bev {
    top: 747px;
    left: 74px;
  }
  .block-tea-bev a {
    font-size: 20.63px;
    line-height: calc(56/40);
  }
  .block-tea-price {
    top: 802px;
    left: 79px;
    font-size: 19.99px;
    line-height: calc(71/39.97);
  }
  .block-tea-price span {
    font-size: 17.99px;
    line-height: calc(56/35.98);
    letter-spacing: 0.03em;
    margin-right: 2px;
  }

  .block-tea .btn {
    top: 857.5px;
    left: 79px;
    width: 273px;
    height: 60px;
    border-radius: 29px;
  }
  .block-tea .btn a {
    font-size: 18.335px;
    line-height: 59.59px;
  }
}

/* ----------------------------------------------------------
block-bev-archive
---------------------------------------------------------- */
.block-bev-archive-inner {
  padding-top: calc(60/750*100vw);
}
.block-bev-archive-inner .list-btn {
  margin: calc(30/750*100vw) auto 0;
}
.block-bev-archive-inner .info-link {
  margin: calc(56/750*100vw) auto 0;
}

@media print, screen and (min-width: 910px) {
  .block-bev-archive-inner {
    padding-top: 35px;
  }
  .block-bev-archive-inner .list-btn {
    left: 0;
    margin: 15px auto 0;
  }
  .block-bev-archive-inner .info-link {
    margin: 33px auto 0;
  }
}

/* ----------------------------------------------------------
block-food
---------------------------------------------------------- */
.block-food-inner {
  width: calc(560/750*100vw);
  padding: calc(237/750*100vw) 0 calc(160/750*100vw);
  margin: 0 auto;
}

/* _02 _03 */
.block-food-flex {
  position: relative;
  left: calc(47/750*100vw);
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  margin-top: calc(196/750*100vw);
  gap: 0;
}
.block-food-flex .block-food-item {
  display: flex;
  flex-direction: column;
  text-align: center;
}
.block-food-flex .bev-ttl {
  padding-top: calc(36/750*100vw);
}
.block-food-flex .bev-text {
  position: relative;
  padding-top: calc(20/750*100vw);
  padding-bottom: calc(33/750*100vw);
}
.block-food-flex .btn._s {
  margin: 0 auto;
}


.block-food-item._01 .block-food-item-img {
  width: calc(545/750*100vw);
  margin: 0 auto;
  flex: 1;
}
.block-food-flex .block-food-item._01 .block-food-item-text {
  position: relative;
  top: calc(5 / 750 * 100vw);
  left: calc(-10 / 750 * 100vw);
}
.block-food-item-img a {
  display: block;
}
.block-food-item._01 .bev-text {
  word-break: keep-all;
}
.block-food-item._01 .btn._brown {
  position: relative;
  left: calc(64 / 750 * 100vw);
}


.block-food .bev-note {
  position: relative;
  left: calc(8 / 750 * 100vw);
  width: fit-content;
  margin: calc(95 / 750 * 100vw) auto 0;
}


/* フード一覧はこちら */
.block-food .list-btn {
  left: 0;
  height: calc(76 / 750 * 100vw);
  margin: calc(161/750*100vw) auto 0;
}
.block-food .info-link {
  margin: calc(59/750*100vw) auto 0;
}

@media print, screen and (min-width: 910px) {
  .block-food-inner {
    width: 290px;
    padding: 133px 0 80px;
  }

  .block-food-flex {
    position: relative;
    left: 12px;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    margin-top: 109px;
    gap: 131px;
  }
  .block-food-flex .block-food-item {
    display: flex;
    flex-direction: column;
    text-align: center;
  }
  .block-food-flex .bev-ttl {
    padding-top: 22px;
  }
  .block-food-flex .bev-price {
    padding-top: 7px;
  }
  .block-food-flex .bev-text {
    left: 0;
    padding-top: 10px;
    padding-bottom: 17px;
  }

  .block-food-flex .block-food-item._01 .block-food-item-text {
    width: fit-content;
    top: -1px;
    left: -9px;
  }
  
  .block-food-item._01 .block-food-item-img {
    width: 312px;
    padding-top: 7.5px;
  }

  .block-food-item._01 .bev-text {
    word-break: keep-all;
  }
  .block-food-item._01 .btn._brown {
    left: 35px;
  }
  
  .block-food-item._02 {
    position: relative;
    left: -3.5px;
    width: 100%;
    flex-shrink: 0;
  }
  .block-food-item._02 .block-food-item-img {
    width: 414.5px;
    left: -58px;
    margin: -109px auto 0;
  }
  .block-food-flex .block-food-item._02 .block-food-item-text {
    top: -50px;
    left: 0;
  }
  .block-food-item._02 .bev-ttl {
    padding-top: 17.5px;
  }
  .block-food-item._02 .bev-text {
    width: 284px;
    padding-bottom: 20px;
  }
  .block-food-item._02 .btn._brown {
    left: 36px;
  }

  .block-food-item._03 {
    top: -127px;
    left: 5px;
    width: 100%;
    flex-shrink: 0;
  }
  .block-food-item._03 .block-food-item-img {
    width: 386px;
    margin: 0 auto 0;
    left: -37px;
  }
  .block-food-flex .block-food-item._03 .block-food-item-text {
    top: -48px;
    left: -10px;
    width: 284px;
  }
  .block-food-item._03 .bev-text {
    padding-top: 12px;
    padding-bottom: 19px;
  }
  .block-food-item._03 .bev-ttl {
    padding-top: 17.5px;
  }
  .block-food-item._03 .btn._brown {
    left: 39px;
  }
  
  .block-food .bev-note {
    left: 5px;
    width: fit-content;
    margin: -99px auto 0;
  }
  
  /* フード一覧はこちら */
  .block-food .list-btn {
    left: 0;
    height: 46px;
    margin: 91px auto 0;
    border-radius: 22px;
  }
  .block-food .info-link {
    margin: 33.5px auto 0;
  }
}


/* ----------------------------------------------------------
block-goods
---------------------------------------------------------- */
.block-goods-inner {
  width: calc(626/750*100vw);
  padding: calc(235/750*100vw) 0 calc(160/750*100vw);
  margin: 0 auto;
}
.block-goods-item .bev-ttl a {
  font-feature-settings: normal;
}

/* _01 */
.block-goods-item._01 {
  margin-top: calc(194/750*100vw);
}
.block-goods-item._01 .block-goods-item-img {
  width: calc(510/750*100vw);
  margin: 0 auto;
}
.block-goods-item._01 .block-card-item-text {
  width: calc(546 / 750 * 100vw);
  margin: calc(52 / 750 * 100vw) auto 0;
}
.block-goods-item._01 .bev-text,
.block-goods-item._02 .bev-text {
  font-feature-settings: "palt";
  letter-spacing: 0.074em;
}
.block-goods-item._01 .bev-text {
  padding-top: calc(34/750*100vw);
}
.block-goods-item._01 .btn._brown {
  margin: calc(33 / 750 * 100vw) auto 0;
}


.block-goods-item._02 {
  margin-top: calc(253/750*100vw);
}
.block-goods-item._02 .block-goods-item-img {
  width: calc(413/750*100vw);
  margin: 0 auto;
}
.block-goods-item._02 .block-card-item-text {
  width: calc(560 / 750 * 100vw);
  margin: calc(53 / 750 * 100vw) auto 0 calc(38 / 750 * 100vw);
}
.block-goods-item._02 .bev-text {
  padding-top: calc(32/750*100vw);
}
.block-goods-item._02 .btn._brown {
  margin: calc(43 / 750 * 100vw) auto 0;
}


.block-goods-item._03 {
  margin-top: calc(220/750*100vw);
}
.block-goods-item._03 .block-goods-item-img {
  width: calc(564/750*100vw);
  margin: 0 auto;
}
.block-goods-item._03 .block-card-item-text {
  width: calc(560 / 750 * 100vw);
  margin: calc(53 / 750 * 100vw) auto 0 calc(38 / 750 * 100vw);
}
.block-goods-item._03 .bev-price {
  padding-top: calc(22/750*100vw);
}
.block-goods-item._03 .bev-text {
  padding-top: calc(27/750*100vw);
}
.block-goods-item._03 .btn._brown {
  margin: calc(43 / 750 * 100vw) auto 0;
}

/* シーズナルグッズ特集はこちら */
.block-goods .list-btn {
  width: calc(476 / 750 * 100vw);
  height: calc(74 / 750 * 100vw);
  border: calc(2 / 750 * 100vw) solid var(--color-main);
  border-radius: calc(37 / 750 * 100vw);
  margin: calc(299/1440*100vw) auto 0 calc(69 / 750 * 100vw);
}

@media print, screen and (min-width: 910px) {
  .block-goods-inner {
    width: 313px;
    padding: 134px 0 80px;
  }

  .block-goods-item .bev-price {
    padding-top: 7px;
  }
  .block-goods-item .bev-text {
    padding-top: 11px;
  }
  .block-goods-item._01 .btn._brown,
  .block-goods-item._02 .btn._brown {
    margin: 21.5px auto 0;
  }
  
  /* _01 */
  .block-goods-item._01 {
    margin-top: 106px;
  }
  .block-goods-item._01 .block-goods-item-img {
    width: 292px;
  }
  .block-goods-item._01 .block-card-item-text {
    width: 314px;
    margin: 33px auto 0;
  }

  .block-goods-item._01 .bev-text,
  .block-goods-item._02 .bev-text {
    padding-top: 17px;
    font-size: 15px;
  }

  .block-goods-item._01 .btn._l {
    width: 240px;
    height: 38px;
    font-size: 14px;
    margin: 16.5px auto 0;
  }
 
  
  .block-goods-item._02 {
    margin-top: 144px;
  }
  .block-goods-item._02 .block-goods-item-img {
    width: 236.5px;
    margin: 0 auto;
  }
  .block-goods-item._02 .block-card-item-text {
    width: 321px;
    margin: 33.5px auto 0;
  }
  .block-goods-item._02 .bev-text {
    padding-top: 17px;
    font-size: 15px;
  }
  .block-goods-item._02 .btn._brown {
    margin: 24.5px auto 0;
  }

  .block-goods-item._03 {
    margin-top: 126px;
  }
  .block-goods-item._03 .block-goods-item-img {
    width: 323.5px;
    margin: 0 auto;
  }
  .block-goods-item._03 .block-card-item-text {
    width: 311.5px;
    margin: 33.5px 0 0;
  }
  .block-goods-item._03 .bev-price {
    padding-top: 8px;
  }
  .block-goods-item._03 .bev-text {
    padding-top: 17px;
    font-size: 15px;
    font-feature-settings: "palt";
    letter-spacing: 0.07em;
  }
  .block-goods-item._03 .btn._brown {
    margin: 24.5px auto 0;
  }
  
  /* シーズナルグッズ特集はこちら */
  .block-goods .list-btn {
    margin: 91px auto 0 11px;
    width: 272.75px;
    height: 46.4px;
    border: 2px solid var(--color-main);
  }
}


/* ----------------------------------------------------------
block-daytrip
---------------------------------------------------------- */
.block-daytrip-inner {
  width: calc(626 / 750 * 100vw);
  padding: calc(194 / 750 * 100vw) 0 calc(160 / 750 * 100vw);
  margin: 0 auto;
}
.block-daytrip-text {
  font-size: calc(26 / 750 * 100vw);
  line-height: calc(40 / 26);
  font-weight: 500;
  text-align: center;
  margin-top: calc(73 / 750 * 100vw);
  margin-left: calc(16 / 750 * 100vw);
}
.block-daytrip .list-btn {
  width: calc(476 / 750 * 100vw);
    height: calc(74 / 750 * 100vw);
    border: calc(2 / 750 * 100vw) solid var(--color-main);
    border-radius: calc(37 / 750 * 100vw);
    margin: calc(1179 / 1440 * 100vw) auto 0 calc(69 / 750 * 100vw);
}
.block-daytrip .list-btn a {
  font-size: calc(29 / 750 * 100vw);
}
@media print, screen and (min-width: 910px) {
  .block-daytrip-inner {
    width: 372.45px;
    padding-top: 74px;
  }
  .block-daytrip-text {
    font-size: 15px;
    line-height: 23px;
    margin-top: 78px;
    margin-left: 8px;
  }
  .block-daytrip .list-btn {
    margin: 353px auto 0 40px;
    width: 272.75px;
    height: 46.4px;
    border: 2px solid var(--color-main);
}
.block-daytrip .list-btn a {
  font-size: 17px;
}
}

/* ----------------------------------------------------------
section_30years
---------------------------------------------------------- */
.section_30years {
  position: relative;
  content: "";
  background: url(/cafe/peach2026/images/30years/bg.webp) no-repeat center top / cover;
  background-color: var(--color-white);
  height: calc(466/375*100vw);
  top: 0;
  left: 0;
  box-sizing: border-box;
  z-index: 1;
}

.section_30years .other_inner {
  padding: 0 24px;
}

.section_border > img {
  display: block;
}

.section_30years_title {
  width: calc(240/375*100vw);
  padding-top: calc(32/375*100vw);
  margin: 0 auto calc(48/375*100vw);
}

.section_30years_text {
  color: var(--color-black);
  text-align: center;
  font-weight: 700;
  font-size: calc(14 / 375 * 100vw);
  line-height: calc(25 / 14);
  letter-spacing: 7%;
  margin-bottom: calc(24 / 375 * 100vw);
}

.section_30years_btn {
  position: relative;
  left: 0;
  background-color: #006241;
  width: calc(327 / 375 * 100vw);
  height: calc(56 / 375 * 100vw);
  border-radius: calc(60 / 375 * 100vw);
}
.section_30years_btn a {
  display: block;
  text-align: center;
  color: #d5bd69;
  font-size: calc(16 / 375 * 100vw);
  line-height: calc(56 / 375 * 100vw);
  font-weight: 500;
}


.section_30years_btn a:hover {
  opacity: 1;
}

@media print, screen and (min-width: 910px) {
  .section_30years {
    height: 532px;
    background-position: center top;
  }
  .section_30years_title {
    width: 276px;
    padding-top: 36px;
    margin-bottom: 71px;
  }
  .section_30years_text {
    font-size: 16.045px;
    margin-bottom: 43px;
  }
  .section_30years_btn {
    left: 4px;
    width: 375px;
    height: 61px;
    border-radius: 30px;
  }
  .section_30years_btn a {
    font-size: 18.5px;
    line-height: 61px;
  }
}
