@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=LINE+Seed+JP:wght@400;700;800&display=swap');

/*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-Ye: #FFDB4E;
  --color-subYe: #FFC336;
  --color-Or: #EA8125;
  --color-fontBk: #333333;
}
html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-family: "LINE Seed JP", sans-serif;
  font-size: 62.5%;
  font-weight: 400;
}
body {
  font-size: 1.4rem;
  line-height: 1.5;
  color: var(--color-fontBk);
  background: var(--color-Ye);
  margin: 0 auto;
  text-align: center;
  overflow-wrap: anywhere; /* 収まらない場合に折り返す */
  word-break: normal; /* 単語の分割はデフォルトに依存 */
}
a {
  color: var(--color-Or);
  text-decoration: underline;
  transition: all 0.3s ease;
}
img {
  max-width: 100%;
  margin-bottom: 1.6rem;
}
/* AOSの移動距離調整 */
[data-aos="zoom-in-up"] {
  transform: translate3d(0, 4rem, 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(1.5rem) !important;
}
[data-aos="fade-up"].aos-animate {
  transform: translateY(0) !important;
}
/* タイトル用バウンドアニメーション */
[data-aos="zoom-bounce"] {
  transform: translate3d(0, 2rem, 0) scale(.9);
  opacity: 0.7;
}
[data-aos="zoom-bounce"].aos-animate {
  animation: bounceTitle 0.5s ease-in-out forwards;
  animation-fill-mode: both;
  opacity: 1;
}
@keyframes bounceTitle {
  0% { transform: translate3d(0, 2rem, 0) scale(0.9); }
  70% { transform: translate3d(0, 0, 0) scale(1.08); }
  100% { transform: translate3d(0, 0, 0) scale(1); }
}

/*utility*/
.small{
  font-size: 1.2rem;
  font-weight: 400;
}
.bold{
  font-weight: 700;
}
.center{
  text-align: center !important;
}
.left{
  text-align: left !important;
}
.pc{
  display: block;
}
.mb8{
  margin-bottom: 0.8rem !important;
}
.mb16{
  margin-bottom: 1.6rem !important;
}
.mb24{
  margin-bottom: 2.4rem !important;
}
.mb32{
  margin-bottom: 3.2rem !important
}
.mb40{
  margin-bottom: 4rem !important;
}
.mb48{
  margin-bottom: 4.8rem !important;
}
.mb64{
  margin-bottom: 6.4rem !important;
}
@media screen and (max-width:550px) {
  .pc{
    display: none;
  }
}

/* Text
-------------------------*/
p{
  text-align: justify;
  padding: 0 0 1.6rem;
}
.title--underbar{
  display: inline-block;
  font-family: "LINE Seed JP";
  font-size: 3rem;
  font-weight: 800;
  border-bottom: 0.3rem solid var(--color-fontBk);
  margin-bottom: 2.4rem;
}
.title--step{
  background-color: #fff;
  border-radius: 0.6rem;
  padding: 0.4rem;
  margin-bottom: 1.6rem;
  color: var(--color-Or);
  font-weight: 700;
  font-style: normal;
  font-size: 2rem;
}
.title--step__num{
  font-size: 2rem;
}
.title--planeL{
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  padding: 0.8rem 1.6rem 1.6rem;
}
.title--planeS{
  font-size: 1.6rem;
  font-weight: 900;
  text-align: justify;
  padding-bottom: 0.8rem;
}
.title--block{
  border-radius: 100rem;
  color: #FFF;
  font-size: 1.8rem;
  font-weight: 900;
  text-align: center;
  padding: 0.2rem 1.6rem 0.4rem;
  margin-bottom: 1.6rem;
}
p + .title--block, ul + .title--block, ol + .title--block{
  margin-top: 1.6rem;
}
.title--image{
  margin: 3.2rem auto 1.6rem;
  text-align: center;
}
.title--sideline {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.6rem; /* 線と文字の間隔 */
  font-size: 2.8rem;
  font-weight: 900;
  margin: 3.2rem 0 3.2rem;
}
.areaWrap .title--sideline {
  color: #fff;
}
.wrap--subYe{
  background: var(--color-subYe);
  border-radius: 4rem 4rem 0 0;
  padding: 5.6rem 1.6rem 8.6rem !important;
}
.list--SmallReference, .list--Dot{
  font-size: 1.2rem;
  text-align: justify;
  padding-bottom: 1.2rem;
}
.list--Dot{
  font-size: 1.4rem;
}
.list--SmallReference > li, .list--Dot > li{
  padding-bottom: 0.4rem;
  padding-left: 1.2em;
  position: relative;
}
.list--Dot > li{
  padding-left: 1.6rem;
}
.list--SmallReference > li::before{
  content: "※";
  font-size: 1.2rem;
  position: absolute;
  left: 0;
}
.list--Dot > li::before{
  content: "・";
  color: var(--color-Or);
  font-size: 1.5rem;
  font-weight: 800;
  position: absolute;
  left: -0.4rem;
}
.list--num{
  text-align: justify;
  padding: 0 0 1rem;
  counter-reset: num;
}
.list--num > li{
  padding-bottom: 0.6rem;
  padding-left: 1.4em;
  counter-increment: num;
  position: relative;
}
.list--num > li::before {
  content: counter(num) ".";
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--color-Or);
  width: 1em;
  text-align: center;
  position: absolute;
  left: 0;
}
ul li > ul, ol li > ul{
  padding-top: 0.8rem;
  padding-bottom: 0 !important;
}
.buttonLarge{
  display: block;
  color: #fff;
  font-size: 1.8rem;
  font-weight: 800;
  text-align: center;
  text-decoration: none;
  padding: 1.6rem 1rem;
  margin: 2.4rem 0;
  background: #00B900;
  border: 0.3rem solid #000;
  border-radius: 1rem;
  box-shadow: 0 0.6rem 0 0 #000;
  position: relative;
}
.buttonLarge::after{
  content: "";
  display: block;
  width: 1.2rem; height: 2.4rem;
  background: url(../images/arrow.svg) no-repeat center center;
  background-size: contain;
  position: absolute;
  top: 50%; right: 0.8rem;
  transform: translate(0, -50%);
}

/* Area
-------------------------*/
.wrapper{
  background: var(--color-Ye);
}
.areaWrap{
  padding: 0 1.6rem 5.6rem;
  position: relative;
}
.areaWrap--attention{
  background: #FFF;
  padding: 3.2rem 1.6rem 2.4rem;
  border-radius: 4rem;
  margin-top: -3.2rem;
  position: relative;
}
.areaWrap--attention ul{
  padding-bottom: 2.4rem;
}
.areaWrap--attention p{
  font-size: 1.2rem;
  text-align: center;
}
footer{
  padding: 3.2rem 1.6rem 2.4rem;
  margin-top: -1px;
  position: relative;
  z-index: 2;
}
footer .title--planeL{
  font-size: 1.6rem;
}
.panel--lead{
  display: block;
  background: #fff;
  font-weight: 700;
  border-radius: 1.6rem;
  margin: 0 auto 2rem;
  padding: 1.6rem 1.6rem 0.8rem;
}
.panel--step{
  border: 0.3rem solid #fff;
  border-radius: 1.6rem;
  margin: 0 auto;
  padding: 1.6rem 1.6rem 0.8rem;
}
.panel--pop{
  border-radius: 1.6rem;
  border: 3px solid #000;
  background: #FFF;
}
.panel--prize__block{
  display: block;
  margin: 0 auto 1.6rem;
  padding: 1.6rem 1.6rem 0;
  border-bottom: 0.3rem solid #000;
}
.panel--prize__block:last-child{
  border-bottom: none;
}
.panel--prize__block__list{
  width: 100%;
  padding-bottom: 2.4rem;
}
.panel--prize__block__list li{
  display: flex;
  width: 100%;
  background: #f0f0f0;
  margin-bottom: 0.3rem;
}
.panel--prize__block__list h4{
  background: var(--color-Ye);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.7rem;
  font-weight: 800;
  width: 7.5em;
  padding: 0.8rem 1.6rem;
}
.panel--prize__block__list p{
  display: block;
  padding: 0.8rem;
}
.panel--prize__block__list p span{
  display: block;
  font-size: 1.6rem;
  font-weight: 700;
}
.title--prize{
  font-size: 1.6rem;
  text-align: center;
  font-weight: 400;
  line-height: 140%;
  padding-bottom: 1.6rem;
}
.title--prize > span{
  color: var(--color-Or);
  font-weight: 700;
}
.title--prize > span .num{
  font-size: 2rem;
}
.prizeItem{
  width: 80%;
  margin: 1.6rem auto 0;
}
.prizeItem--couponWrap{
  display: block;
  width: 100%;
  padding: 0.8rem 1rem;
  margin-bottom: 1.6rem;
  position: relative;
}
.prizeItem--coupon__accent{
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10rem;
  background: var(--color-Or);
  width: 7em; height: 7em;
  font-size: 1.4rem;
  position: absolute;
  top: 50%; left: 0.3em;
  transform: translate(0, -50%);
  z-index: 1;
}
.prizeItem--coupon__accent p{
  color: #FFF;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 130%;
  text-align: center;
  white-space: nowrap;
  margin: 0; padding: 0;
}
.prizeItem--couponWrap .prizeItem{
  width: calc(100% - 6em);
  margin: 0 0 0 6em;
  padding: 0;
  position: relative;
  z-index: 2;
}
.panel--pop p{
  margin: 0 1.6rem;
}
.panel--pop p.bold{
  margin: 0; padding: 0 0 0.8rem;
}
.panel--pop img{
  padding: 0 1.6rem 1.6rem;
}
.panel--pop--lead{
  font-weight: 700;
  text-align: center;
  padding: 1.6rem 1.6rem 0.8rem;
}
.panel--pop--date{
  text-align: center;
  font-weight: 700;
}
.panel--pop--date .dateNum{
  font-size: 1.8rem;
}
.panel--pop > .list--Dot, .panel--pop > .list--num, .panel--pop > .list--SmallReference {
  margin-left: 1.6rem; margin-right: 1.6rem;
}
.title--panelbar{
  background: #000;
  padding: 0.6rem 1.6rem;
  color: #FFF;
  font-size: 1.6rem;
  margin: 0.8rem 0 1.6rem;
}
.title--subTitle{
  background: var(--color-Ye);
  border-radius: 10rem;
  width: max-content;
  padding: 0.6rem 2.4rem;
  margin: 1.6rem auto;
}



/*unique design
-------------------------*/
.kvArea, .kvBg, .kvArea-content, .kvArea-title, .kvArea-title img{
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1.4;
}
.kvArea{
  aspect-ratio: 400 / 767;
  background: url(../images/kv_bg-sp.webp) no-repeat center center;
  background-size: contain;
  position: relative;
}
.kvBg, .kvArea-content, .kvArea-title{
  position: absolute;
  top: 0; left: 0;
}
.kvBg{ z-index: 2; }
.kvArea-content{ z-index: 3;}
.kvArea-title{ z-index: 4;}
.about{
  width: 100%;
  padding: 0 1.6rem 1.6rem;
  margin-top: -50%;
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 701px) {
  .kvArea{
    display: none;
  }
  .about{ 
    margin-top: 0;
    padding: 2.4rem;
  }
}
footer p{
  text-align: center;
  font-size: 1.4rem;
}
.numberList{
  margin-bottom: 3.2rem;
}
.numberList p{
  margin: 2rem 1.6rem 0.3rem;
  padding: 0;
}
.inquiry{
  display: flex;
  width: auto;
  flex-direction: column;
  flex-basis: auto;
  gap: 5px;
  list-style: none;
  margin: 0 auto; padding: 0;
}
.inquiry li{
  width: calc(4rem + 13em);
  margin: auto;
  background: #FFF;
  border-radius: 5px;
  font-size: 1.8rem;
  font-weight: bold;
}
.inquiry li a{
  display: block;
  color: var(--color-fontBk);
  text-decoration: none;
  text-align: left;
  padding: 1rem 2rem 1rem 5rem;
  box-sizing: border-box;
  position: relative;
}
.inquiry .tel a::before{
  content: "";
  display: block;
  width: 22px; height: 22px;
  background: url(../images/icon-tel.svg) no-repeat center center;
  background-size: contain;
  position: absolute;
  left: 1.5rem; top: 50%; transform: translateY(-50%);
}
.inquiry .mail a::before{
  content: "";
  display: block;
  width: 22px; height: 22px;
  background: url(../images/icon-mail.svg) no-repeat center center;
  background-size: contain;
  position: absolute;
  left: 1.5rem; top: 50%; transform: translateY(-50%);
}
@media screen and (min-width: 600px) {
  .inquiry .tel{
    pointer-events: none;
  }
}
.sns-buttons{
  display: flex;
  justify-content: center;
  gap: 1.6rem;
  width: 100%;
  margin-bottom: 2.4rem;
}


/*PC design
-------------------------*/
.wrapper{
  display: block;
  width: 100%; max-width: 500px;
  margin: 0 5% 0 calc(95% - 50rem);
  box-shadow: 0 0.4rem 1rem 0 rgba(255, 132, 0, 0.25);
  position: relative;
  z-index: 1;
}
.pcBody{
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100vw; height: 100vh;
  background: url(../images/kv_pcbg.webp) no-repeat center center;
  background-size: cover;
  position: fixed;
  top: 0; left: 0;
  z-index: -1;
}
.pcBody__contentLeft, .pcBody__contentRight{
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}
.pcBody__contentLeft{
  width: calc( 95% - 50rem);
  height: 100%;
  background: url(../images/kv_pcbg.webp) no-repeat center center;
  background-size: cover;
}
.pcBody__contentRight{
  width: 5%;
}
.pcBody__contentLeft__titleWrap{
  width: 100%; height: 100vh;
  position:relative;
}
.pcBody__contentLeft__titleWrap img{
  width: 90%;
  height: 90%;
  object-fit: contain;
  position: absolute;
  top: 5%;
  left: 5%;
  margin-bottom: 0;
}
@media screen and (max-width: 700px) {
  .wrapper{
    margin: 0 auto;
  }
  .pcBodt{
    display: none;
  }
  .pcBody__contentLeft, .pcBody__contentRight{
    width: calc(50% - 25rem);
    background: none;
  }
  .pcBody__contentLeft__titleWrap img{
    display: none;
  }
}
