@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: #000;
  --color-wt: #FFF;
  --color-bg: #FFD700;
  --color-ac: #EE8E00;
  --color-link: #FF0000;
  --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%;
}
body {
  color: var(--color-bl);
  font-family: var(--font-defalt);
  font-size: 1.6rem;
  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*/
.center{
  text-align: center;
}
.black{
  color: var(--color-bl);
  text-decoration: none;
}
.orange{
  color: var(--color-ac);
}
.pc{
  display: block;
}
@media screen and (max-width:550px) {
  .pc{
    display: none;
  }
}

/*base design - area & text
-------------------------*/

.pc_bg{
  display: block;
  width: 100%; height: 100vh;
  position: fixed;
  top: 0; left: 0;
  z-index: 0;
}
.pc_left, .pc_right{
  display: block;
  width: calc(50% - 250px); min-width: 200px;
  height: 100%;
  position: absolute;
  top: 0;
}
.pc_left{
  background: url("../images/bg-left.webp") no-repeat top right;
  background-size: contain;
  left: 0;
}
.pc_right{
  background: url("../images/bg-right.webp") no-repeat top left;
  background-size: contain;
  right: 0;
}
.pc_left_qrblock{
  display: inline-block;
  text-align: center;
  font-size: 1.2rem;
  font-weight: bold;
  position: absolute;
  right: 18px; bottom: 18px;
}
.pc_left_qrblock img{
  display: inline-block;
  margin-top: 0.5rem;
}
.wrapper{
  display: block;
  width: 100%; max-width: 500px;
  margin: 0 auto;
  background: var(--color-bg);
  position: relative;
  z-index: 1;
}
@media screen and (max-width:600px) {
  .pc_bg{
    display: none;
  }
}

p, .lead{
  padding: 0 1.6rem 2rem;
}

p + p{
  margin-top: -0.6rem;
}
p{
  text-align: left;
}
.lead{
  font-weight: bold;
}
.marker{
  font-weight: bold;
  background: linear-gradient(transparent 60%, var(--color-bg) 0%);
  display: inline;
  padding: 0 1px 0px;
}
.small{
  font-size: 1.2rem;
}
h2, h3, h4{
  font-size: 1.7rem;
}
.titleBlack{
  font-weight: bold;
  line-height: 1.4;
  color: var(--color-wt);
  background: var(--color-bl);
  text-align: center;
  padding: 1rem;
  margin-bottom: 2rem;
}
.titleUnderbar{
  display: inline-block;
  font-weight: bold;
  text-align: center;
  line-height: 1.4;
  margin: 0 1.6rem 2rem;
  padding-bottom: 0.6rem;
  border-bottom: 0.2rem solid var(--color-ac);
}
.titleUnderbar_small{
  font-size: 1.4rem;
}
.titleBalloon{
  display: inline-block;
  font-weight: bold;
  line-height: 1.4;
  color: var(--color-wt);
  background: var(--color-bl);
  border-radius: 100rem;
  text-align: center;
  padding: 1rem 1.6rem;
  margin-bottom: 3.2rem;
	position: relative;
}
.titleBalloon:before{
	content: "";
	width: 1.3rem;
	height: 1.4rem;
	border-bottom: 1.4rem solid transparent; /* 左辺の長さを調整 */
	border-left: 1.3rem solid var(--color-bl); /* 底辺の長さを調整 */
	position: absolute; bottom: -1.4rem; left: calc(50% - 0.6rem);
}
.titleSimple{
  padding: 1.6rem;
}
.buttonLarge{
  display: block;
  color: var(--color-wt);
  font-size: 1.5rem;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
  padding: 1.4rem 2.4rem;
  margin: 0 1.6rem 2rem;
  background: var(--color-link);
  border: 4px solid var(--color-bl);
  box-shadow: 0.3rem 0.4rem 0 var(--color-bl);
  border-radius: 100rem;
  position: relative;
}
.buttonLarge::after{
  content: "";
  display: block;
  background: url("../images/arrow.svg") no-repeat center center;
  background-size: contain;
  width: 1.2rem; height: 2.4rem;
  position: absolute;
  top: 50%; right: 1.6rem;
  transform: translateY(-50%);
}
.whitePanel{
  display: block;
  background: #fff;
  border-radius: 1.6rem;
  padding: 2rem 0 1rem;
  margin: 0 1.6rem 2rem;
}
.whitePanelFull{
  display: block;
  background: #fff;
  border-radius: 2rem;
  padding: 1.6rem 0;
  margin: 0 0 2rem;
}
.panelMargin{
  margin-bottom: 3.6rem;
}
.column{
  padding: 0 1rem;
}
.imgBox{
  display: block;
  width: 100%;
  padding: 0 1.6rem 1.6rem;
}
.imgBox img{
  display: inline-block;
}


/*unique design - kv
-------------------------*/
.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: 1 / 1.187;
  background: url("../images/kv-bg.png") 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{
  margin: 2.8rem 1.6rem 3rem;
}
.title01{
  display: block;
  width: 100%;
  margin: -3.8rem auto 1rem;
}
.title01 img{
  width: 100%; max-width: 275px;
  display: inline-block;
}
.title02{
  display: block;
  width: 100%; max-width: 325px;
  margin: 0 auto;
}
#detail section{
  margin-bottom: 1rem;
}
.prize{
  text-align: center;
}
.prize img{
  width: 100%; max-width: 42rem;
  display: inline-block;
}
.schedule{
  display: flex;
  flex-flow: row wrap;
  gap: 1rem;
  margin: 0 1.6rem 2rem;
  text-align: left;
}
.schedule dt{
  width: 10rem;
  font-size: 1.2rem;
  font-weight: bold;
  color: var(--color-ac);
  padding-top: 0.2rem;
}
.schedule dd{
  width: calc(100% - 11rem);
}
.stepList{
  display: block;
  width: 100%;
  text-align: left;
  padding: 0 1.6rem 1.6rem;
  counter-reset: number 0;
}
.stepList li{
  display: block;
  width: 100%;
  padding-left: 2rem;
  box-sizing: border-box;
  position: relative;
}
.stepList li::before{
  counter-increment: number 1;
  content: counter(number) ".";
  font-size: 1.2rem;
  font-weight: bold;
  color: var(--color-ac);
  position: absolute;
  top: 0.1rem; left: 0;
}
.numberList p{
  margin: 2rem 1.6rem 0.3rem;
  padding: 0;
}
.callBox{
  display: block;
  width: 22rem; height: 4.8rem;
  background: var(--color-wt);
  border-radius: 100rem;
  margin: 0 auto;
}
.callBox a{
  display: flex;
  justify-content: left;
  align-items: center;
  width: 100%; height: 100%;
  padding: 0.4rem;
  margin: 0 auto;
  font-size: 1.8rem;
  font-weight: bold;
  text-decoration: none;
  color: var(--color-bl);
  position: relative;
}
.callBox a span{
  display: block;
  text-align: center;
  width: calc(100% - 4rem);
}
.callBox a::before{
  content: "";
  display: block;
  background: url(../images/icon-call.svg) no-repeat center center;
  background-size: contain;
  width: 4rem; height: 4rem;
}
.callBox.sp a::before{
  background: url(../images/icon-sp.svg) no-repeat center center;
  background-size: contain;
}
.sns-buttons{
  display: flex;
  justify-content: center;
  gap: 1.6rem;
  width: 100%;
  margin-top: 3.2rem;
}
footer{
  font-size: 1.4rem;
  font-weight: bold;
  padding: 3.2rem 1.6rem;
}