@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: #5D0000;
  --color-wt: #FFF;
  --color-bg1: #FFECB7;
  --color-bg2: #FFF7DE;
  --color-ac: #EFB70C;
  --color-link: #E40000;
  --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;
  background: linear-gradient(270.36deg, #FFD700 -1.33%, #F5A32D 23.85%, #F8B022 74.2%, #FFD700 99.37%);
  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;
}
.center{
  text-align: center;
}
.pc{
  display: block;
}
@media screen and (max-width:550px) {
  .pc{
    display: none;
  }
}

/*base design - area & text
-------------------------*/

.pc_bg{
  display: block;
  width: 100%; height: 100vh;
  background: url("../images/bg-pc.webp") no-repeat;
  background-size: cover;
  position: fixed;
  top: 0; left: 0;
  z-index: 0;
}
.pc_left, .pc_right{
  display: block;
  width: calc(50% - 250px); min-width: 200px;
  height: 100%;
  background: url("../images/bg-pc-bottom.webp") no-repeat bottom center;
  background-size: contain;
  position: absolute;
  top: 0;
}
.pc_left{
  left: 0;
}
.pc_right{
  right: 0;
}
.wrapper{
  display: block;
  width: 100%; max-width: 500px;
  margin: 0 auto;
  background: var(--color-wt);
  box-shadow: 0 0 15px 0 rgba(93, 0, 0, 0.50);
  position: relative;
  z-index: 1;
}
@media screen and (max-width:500px) {
  .pc_bg{
    display: none;
  }
}

p{
  text-align: left;
  padding-bottom: 1.6rem;
}
.small{
  font-size: 1.2rem;
}
h2, h3, h4{
  font-size: 1.6rem;
  padding-bottom: 1.6rem;
}
.bg1{ background: var(--color-bg1); }
.bg2{ background: var(--color-bg2); }

.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-link);
  border-radius: 1rem;
  box-shadow: 0 0.3rem 0.3rem 0 rgba(93, 0, 0, 0.35);
}
.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-bl);
  border-radius: 1rem;
}
#intro, #present, #howto, .btnArea, #detail{
  padding: 3.2rem 1.8rem 1.6rem;
}
#intro{ padding-top: 4.8rem; }
#present, #howto{ padding-top: 1.6rem; }
#detail{ padding-top: 2.4rem; }
section > p:last-child{
  padding-bottom: 0;
}
.title--image{
  width: 100%;
  padding: 2.4rem 0;
}
.title--image img{
  margin: 0 auto;
}
.title-underline{
  display: inline-block;
  width: auto;
  padding: 2.4rem 0 0.5rem;
  border-bottom: 0.2rem solid var(--color-ac);
  margin-bottom: 2.4rem;
}
h2.title-underline{
  font-size: 2rem;
}
.title-ricemark{
  display: block;
  width: 100%;
  font-size: 1.4rem;
  text-align: left;
  padding-left: 1.4rem;
  padding-bottom: 0.6rem;
  position: relative;
}
.title-ricemark::before{
  content: "";
  display: block;
  background: url("../images/h_mark.svg") no-repeat center center;
  background-size: contain;
  width: 0.9rem; height: 1.45rem;
  position: absolute;
  top: 0.3rem; left: 0;
}
.content-images{
  padding: 0.8rem calc(16% - 2.4rem) 1.6rem;
}
.panel .content-images, .panelAlpha .content-images{
  padding: 0.8rem calc(16% - 3.2rem) 2.4rem;
}
.present-block{
  padding-bottom: 2.4rem;
}
.present-block p{
  text-align: center;
  padding-bottom: 0;
}
.panel{
  display: block;
  width: 100%;
  background: var(--color-wt);
  border-radius: 1.2rem;
  padding: 0 1.8rem 0.8rem;
  box-shadow: 0 0 1rem 0 rgba(203, 147, 87, 0.30);
  margin-top: 2.4rem;
  position: relative;
}
.panel::before{
  content: "";
  display: block;
  background: url("../images/h_momiji-l.svg") no-repeat center center;
  background-size: contain;
  width: 4.8rem; height: 5.7rem;
  position: absolute;
  top: -1.5rem; left: 1rem;
}
.panel::after{
  content: "";
  display: block;
  background: url("../images/h_momiji-r.svg") no-repeat center center;
  background-size: contain;
  width: 2.5rem; height: 3rem;
  position: absolute;
  top: 3rem; right: 1.5rem;
}
img + .panel{
  margin-top: 3.2rem;
}
.panelAlpha{
  display: block;
  width: 100%;
  background: rgba(255, 255, 255, 0.30);
  border: 2px solid #FFF;
  border-radius: 1.2rem;
  padding: 0 1.8rem 0.8rem;
  box-shadow: 0 0 1rem 0 rgba(203, 147, 87, 0.30);
  margin-top: 2.4rem;
}
.panelAlpha:last-of-type{
  margin-bottom: 2.4rem;
}
.panelAlpha__title{
  background: var(--color-wt);
  color: var(--color-bl);
  font-size: 1.4rem;
  padding: 0.5rem 0.4rem 0.4rem;
  margin: 1.8rem 0 2.4rem;
  border-radius: 100rem;
  position: relative;
}
.panelAlpha__title.num01::before{
  content: "";
  display: block;
  background: url("../images/h_num-01.svg") no-repeat center left;
  background-size: contain;
  width: 4rem; height: 2.8rem;
  position: absolute;
  top: -0.5rem; left: 1.5rem;
}
.panelAlpha__title.num02::before{
  content: "";
  display: block;
  background: url("../images/h_num-02.svg") no-repeat center left;
  background-size: contain;
  width: 4rem; height: 2.8rem;
  position: absolute;
  top: -0.5rem; left: 1.5rem;
}
.panelAlpha__table{
  padding-bottom: 0.8rem;
}
.panelAlpha__table li{
  display: flex;
  padding-bottom: 1.6rem;
}
.panelAlpha__table li div{
  font-size: 1.4rem;
  width: 6em;
  background: rgba(239, 107, 12, 0.20);
  display: flex;
  justify-content: center;
  align-items: center;
}
.panelAlpha__table li h4{
  font-size: 1.4rem;
  color: var(--color-bl);
  padding-bottom: 0;
}
.panelAlpha__table li p{
  width: calc(100% - 6em);
  padding: 0 0 0 1.6rem;
}
.list-dot, .list-num{
  text-align: left;
  padding-bottom: 2.4rem;
}
.list-dot li, .list-num li{
  padding-bottom: 0.2rem;
}
.list-dot li{
  padding-left: 0.8em;
  position: relative;
}
.list-dot li::before{
  content: "●";
  font-size: 0.5rem;
  padding-top: 0.45rem;
  position: absolute;
  left: 0;
}
.list-num{
  list-style: decimal outside !important;
  padding-left: 1.5em;
}
.list-num li::marker {
  font-weight: bold;
}
.panelAttention{
  display: block;
  width: 100%;
  border-radius: 1.6rem;
  background: #EEE;
  padding: 2.4rem 1.8rem 0.8rem;
  margin-top: 2.4rem;
  margin-bottom: 3.2rem;
}
.devider{
  display: block;
  width: 100%;
  aspect-ratio: 375 / 74;
  background: url("../images/divider01.jpg") no-repeat center center;
  background-size: cover;
}
.devider.second{
  transform: scaleY(-1);
}
.devider.second + section{
  margin-top: -1px;
}
.devider + .btnArea{
  padding-top: 2.4rem;
}


/*unique design
-------------------------*/
.kv{
  width: 100%;
  aspect-ratio: 1 / 1.187;
  background: linear-gradient(270.36deg, #FFD700 -1.33%, #F5A32D 23.85%, #FFD700 49.02%, #F8B022 74.2%, #FFD700 99.37%);
  position: relative;
  z-index: 2;
}
.kv:before{
  content: "";
  display: block;
  width: 100%;
  aspect-ratio: 100 / 145;
  background: url("../images/kv-bg.webp") no-repeat center top;
  background-size: contain;
  position: absolute;
  bottom: 0; left: 0;
  z-index: 4;
}
.kv:after{
  content: "";
  display: block;
  width: 100%;
  aspect-ratio: 1 / 0.2;
  background: linear-gradient(360deg, #FFD700 0%, rgba(255, 215, 0, 0) 100%);
  position: absolute;
  bottom: 0; left: 0;
  z-index: 3;
}
.kv_content{
  margin: 0;
  position: relative;
  z-index: 5;
}
#intro{
  background: linear-gradient(180deg, #FFBA5E 0.02%, #FFEDB7 15.73%);
  position: relative;
}
#intro::before{
  content: "";
  display: block;
  mix-blend-mode: multiply;
  width: 100%;
  aspect-ratio: 37.5 / 7.8;
  background: url("../images/bg_01intro.webp") no-repeat center bottom;
  background-size: cover;
  position: absolute;
  top: 0; left: 0;
}
footer{
  font-size: 1.4rem;
  font-weight: bold;
  background: var(--color-bg2);
  padding: 3.2rem 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;
}

footer p.copyright {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  
}

footer a{
  text-decoration: none;
  color:#5D0000;
}