@charset "utf-8";
/*reset*/
html, body,
h1, h2, h3, h4, h5, h6,
a, p, span,
em, small, strong,
sub, sup,
mark, del, ins, strike,
abbr, dfn,
blockquote, q, cite,
code, pre,
ol, ul, li, dl, dt, dd,
div, section, article,
main, aside, nav,
header, hgroup, footer,
img, figure, figcaption,
address, time,
audio, video,
canvas, iframe,
details, summary,
fieldset, form, label, legend,
table, caption,
tbody, tfoot, thead,
tr, th, td {
  border: 0;
  margin: 0;
  padding: 0;
}
body {
  font-size: 1.6rem;
  line-height: 1.5;
}
* {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}
a {
  color: inherit;
  text-decoration: none;
}
a:hover {
  opacity: 0.7;
}
a img:hover {
  opacity: 0.7;
}
article,
aside,
footer,
header,
nav,
section,
main {
  display: block;
}
* {
  box-sizing: border-box;
}
*:before,
*:after {
  box-sizing: inherit;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
ol,
ul {
  list-style: none;
}
img,
video {
  border-style: none;
  display: block;
}
blockquote,
q {
  quotes: none;
}
blockquote:after,
blockquote:before,
q:after,
q:before {
  content: "";
}
[hidden] {
  display: none !important;
}
[disabled] {
  cursor: not-allowed;
}
:focus:not(:focus-visible) {
  outline: none;
}

/*setting*/
:root {
  --color-bl: #222222;
  --color-wt: #FFF;
  --color-gr: #5FC100;
  --color-or: #F74000;
  --color-link: #F74000;
  --font-defalt: "ヒラギノ角ゴ W3 JIS2004", "Hiragino Kaku Gothic W3 JIS2004", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "Hiragino Sans", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", Meiryo, sans-serif;
}
html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-family: var(--font-defalt);
  font-size: 62.5%;
  font-weight: 500;
}
body {
  color: var(--color-bl);
  font-family: var(--font-defalt);
  font-size: 1.4rem;
  line-height: 1.5;
  margin: 0 auto;
  text-align: center;
  overflow-wrap: anywhere; /* 収まらない場合に折り返す */
  word-break: normal; /* 単語の分割はデフォルトに依存 */
}
a {
  color: var(--color-link);
  text-decoration: underline;
  transition: all 0.3s ease;
}
img {
  max-width: 100%;
}
/* AOSの移動距離調整 */
[data-aos="zoom-in-up"] {
  transform: translate3d(0, 40px, 0) scale(.9) !important;
  transition: transform 0.05s ease-in-out, opacity 0.05s ease; /* ここを追加 */
  opacity: 0.7; /* 初期状態で薄くしておくと自然 */
}

[data-aos="zoom-in-up"].aos-animate {
  transform: translateZ(0) scale(1) !important;
  opacity: 1; /* アニメーション後は完全表示 */
}
[data-aos="fade-up"] {
  transform: translateY(20px) !important;
}
[data-aos="fade-up"].aos-animate {
  transform: translateY(0) !important;
}

/*utility*/
.bold{
  font-weight: bold;
}
.small{
  font-size: 1.2rem;
}
.center{
  text-align: center;
}
.zmb{
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
}
.pc{
  display: block;
}
@media screen and (max-width:550px) {
  .pc{
    display: none;
  }
}

/*base design - area & text
-------------------------*/
section{
  padding: 1.8rem;
}
p{
  text-align: left;
  padding-bottom: 1.6rem;
}
h2, h3, h4{
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  font-size: 1.6rem;
  padding-bottom: 1.6rem;
  color: var(--color-or);
}
.buttonLarge{
  display: block;
  color: var(--color-wt);
  font-size: 1.6rem;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
  padding: 1.6rem;
  margin-bottom: 1.6rem;
  background: var(--color-or);
  border-radius: 100rem;
  box-shadow: 0 4px 0 0 rgba(0, 0, 0, 0.15);
}
.buttonSmall{
  display: block;
  color: var(--color-wt);
  font-size: 1.4rem;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
  padding: 0.8rem;
  margin-bottom: 1.6rem;
  background: var(--color-gr);
  border-radius: 100rem;
  box-shadow: 0 4px 0 0 rgba(0, 0, 0, 0.15);
}
.btnset{
  margin-top: 2.4rem;
}
.btnset .zmb{
  padding-bottom: 1rem;
  }
.title--simple{
  font-size: 2rem;
  text-shadow: 0 0 0.4rem #FFF;
}
.title--underline{
  display: block; width: 100%;
  padding-bottom: 1.6rem;
  margin-bottom: 2rem;
  text-shadow: 0 0 0.4rem #FFF;
  background-image: linear-gradient(to right, var(--color-or) 0.3rem, transparent 0.3rem);
  background-size: 0.5rem 0.2rem;
  background-repeat: repeat-x;
  background-position: left bottom;
}
.title--underline--s{
  display: inline-block;
  width: auto;
  font-size: 1.6rem;
  padding-bottom: 0.6rem;
  margin-bottom: 1.6rem;
}
.title--underline--blue{
  color: #00B1F7;
  background-image: linear-gradient(to right, #00B1F7 0.3rem, transparent 0.3rem);
}
.title--contentTitle{
  display: block; width: 100%;
  font-size: 2.4rem;
  line-height: 100%;
  padding-top: 0.8rem;
  padding-bottom: 0.9rem;
  margin-bottom: 2.4rem;
  text-shadow: 0 0 0.4rem #FFF;
  background-image: linear-gradient(to right, var(--color-or) 0.3rem, transparent 0.3rem);
  background-size: 0.5rem 0.2rem;
  background-repeat: repeat-x;
  background-position: left bottom;
  position: relative;
}
.title--contentTitle::before{
  content: "";
  display: block;
  width: 100%; height: 0.2rem;
  background-image: linear-gradient(to right, var(--color-or) 0.3rem, transparent 0.3rem);
  background-size: 0.5rem 0.2rem;
  background-repeat: repeat-x;
  background-position: left bottom;
  position: absolute;
  top: 0; left: 0;
}
.title-detail{
  font-family: var(--font-defalt);
  color: var(--color-bl);
  font-size: 1.4rem;
  padding-bottom: 0.8rem;
}
.list-dot, .list-num{
  text-align: left;
  padding-bottom: 1rem;
}
.list-dot li, .list-num li{
  padding-bottom: 0.6rem;
  line-height: 140%;
}
.list-dot li{
  padding-left: 0.8em;
  position: relative;
}
.list-dot li::before{
  content: "●";
  font-size: 0.6rem;
  line-height: 140%;
  color: var(--color-or);
  padding-top: 0.5rem;
  position: absolute;
  left: 0;
}
.list-num{
  counter-reset: item;
  padding-left: 1.5em;
}
.list-num li{
  position: relative;
}
.list-num li::before {
  counter-increment: item;
  content: counter(item)'.';
  color: var(--color-or);
  font-weight: bold;
  position: absolute;
  top: 0; left: -1.5em;
}
.panel{
  display: block;
  width: 100%;
  background: var(--color-wt);
  border-radius: 1.2rem;
  padding: 2rem 2rem 0.6rem;
  margin-top: 1.6rem;
  position: relative;
}
img + .panel{
  margin-top: 3.2rem;
}


/*unique design
-------------------------*/

.wrapper{
  display: block;
  width: 100%; max-width: 500px;
  margin: 0 auto 0 0;
  background: url("../images/bg_wrapper.webp") repeat-y;
  background-size: contain;
  box-shadow: 0 0 25px 0 rgba(95, 193, 0, 0.50);
  position: relative;
  z-index: 1;
}
.pc_bg{
  display: block;
  width: 100%; height: 100vh;
  position: relative;
}
.pc_bg::before{
  content: "";
  display: block;
  width: 100%; height: 100vh;
  background: url("../images/bg_pc.webp") no-repeat;
  background-size: cover;
  position: fixed;
  top: 0; left: 0;
}
.pc_right{
  display: block;
  width: 50%;
  height: 100%;
  margin: 0 0 0 auto;
  position: relative;
  z-index: 1;
}
.pc_left{
  width: 50%;
  height: 100%;
  padding: 2%;
  position: fixed;
  top: 0; left: 0;
}
.pc_left > img{
  width: 9rem;
  max-width: 8vh;
  position: absolute;
  top: 16px; left: 16px;
}
.pc_left .kv_content{
  display: block;
  width: 100%; height: 100%;
  max-width: 800px;
  max-height: 95vh;
  margin: 0;
  padding: 2.5vh;
}
.pc_left .kv_content h1{
  width: 100%;
  aspect-ratio: 1916 / 2582;
  max-width: 800px;
  max-height: 95vh;
  margin: 0;
  padding: 0;
  background: url("../images/pckv-cup.webp") no-repeat top center;
  background-size: contain;
  position: relative;
  top: 50%; left: 50%;
  transform: translate( -50%,-50%);
  z-index: 5;
}
.pc_left .kv_content h1 img{
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  margin: 0 auto;
}
.pc_left .kv_content h1::after{
  content: "";
  display: block;
  width: 95%; height: 95%;
  aspect-ratio: 825 / 1304;
  background: url("../images/pckv-content_bg.webp") no-repeat top center;
  background-size: contain;
  position: absolute;
  top: 0; left: 0;
}
.kv .kv_content{
  display: none;
}
@media screen and (min-width:801px) {
  .wrapper{
    padding-top: 2.4rem;
  }
}
@media screen and (max-width:800px) {
  .wrapper{
    margin: 0 auto 0;
  }
  .pc_left{
    display: none;
  }
  .pc_right{
    width: 100%;
    margin: 0 auto 0;
  }
  .kv{
    width: 100%;
    background: url("../images/kv-bg.webp") no-repeat top center;
    background-size: contain;
    position: relative;
  }
  .kv::after{
    content: "";
    display: block;
    width: 100%;
    aspect-ratio: 825 / 1304;
    background: url("../images/kv-cup.webp") no-repeat top center;
    background-size: contain;
    position: absolute;
    top: 0; left: 0;
  }
  .kv .kv_content{
    display: block;
    margin: 0;
    background: url("../images/kv-content-sub.webp") no-repeat top center;
    background-size: contain;
    position: relative;
    z-index: 5;
  }
}
#intro{
  margin-top: -2rem;
}
.present-block > p{
  padding-bottom: 0;
}
.present-block .panel{
  padding: 0;
}
.present-block .panel .panel--inner{
  padding: 2rem 2rem 0.6rem;
}
.present-block .panel img{
  width: 100%;
  border-radius: 1.2rem 1.2rem 0 0;
}
.present-block h3{
  color: var(--color-bl);
}
.present-block h4{
  display: inline-block;
  font-family: var(--font-defalt);
  color: #222;
  font-size: 1.2rem;
  font-style: normal;
  font-weight: 300;
  background: #F3F9D2;
  border-radius: 100rem;
  padding: 0.2rem 1rem;
  margin-bottom: 1.2rem;
}
.item{
  display: flex;
  align-items: center;
  max-width: 40rem;
  min-height: 16rem;
  margin: 0 auto;
}
.item.item--peach{
  padding-top: 3.6rem;
}
.item.item--flesh{
  flex-direction: row-reverse;
  padding: 1rem 0 0.6rem;
}
.item .item__text{
  flex: 1;
  text-align: left;
  padding-left: 1.4rem;
}
.item.item--flesh .item__text{
  padding-left: 0;
  padding-right: 1.4rem;
}
.item .item__img{
  display: flex;
  align-items: center;
  width: 12rem; height: 12rem;
  position: relative;
}
.item .item__img img{
  position: relative;
  z-index: 2;
}
.item__img::before{
  content: "";
  display: block;
  position: absolute;
  z-index: 1;
}
.item--peach .item__img::before{
  width: 8.4rem; height: 4.8rem;
  background: url("../images/image02-2.webp") no-repeat top center;
  background-size: contain;
  top: -3.4rem; right: 0;
}
.item--flesh .item__img::before{
  width: 8.4rem; height: 5.2rem;
  background: url("../images/image03-2.webp") no-repeat top center;
  background-size: contain;
  top: -3rem; left: -0.5rem;
}
.item--honey .item__img::before{
  width: 6.6rem; height: 6.3rem;
  background: url("../images/image04-2.webp") no-repeat top center;
  background-size: contain;
  top: -4rem; right: -0.8rem;
}
#howto{
  background: #fff;
  border-radius: 3rem;
  margin-top: 1.6rem;
  margin-bottom: 2.4rem;
  padding-top: 3.2rem;
}
#howto .panel{
  background: #F3F9D2;
  text-align: left;
  position: relative;
}
#howto .panel.ice{
  margin-block: 1.6rem;
}
#howto .panel h3{
  margin-top: 0.4rem;
  margin-bottom: 2rem;
}
#howto .panel img{
  position: absolute;
}
#howto .panel.hot img{
  top: -1.7rem; right: 1.3rem;
}
#howto .panel.ice img{
  top: 50%; right: 2.4rem;
  transform: translateY(-50%);
}
#howto .panel.ice p{
  width: calc(100% - 9.3rem);
}
#detail .detailBlock{
  text-align: left;
}
#detail .title--simple{
  font-family: var(--font-defalt);
}
.panelAttention{
  display: block;
  width: 100%;
  border-radius: 1rem;
  background: #fff;
  padding: 2.4rem 2.4rem 0.8rem;
  margin-top: 2.4rem;
  margin-bottom: 3.2rem;
}
#detail .title--simple{
  color: var(--color-bl);
  font-size: 1.6rem;
}
footer{
  font-size: 1.4rem;
  font-weight: bold;
  background: var(--color-bg2);
  padding: 0 1.6rem 1.6rem;
}
footer p{
  text-align: center;
}
.sns-buttons{
  display: flex;
  justify-content: center;
  gap: 1.6rem;
  width: 100%;
  margin-bottom: 2.4rem;
}
