@charset "UTF-8";
:root {
  --main-color: #4169e1;
  --sub-color: #2e8b57;
}
html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  box-sizing: border-box;
  scroll-behavior: smooth;
  font-size: 62.5%;
}
*,
*:before,
*:after {
  box-sizing: inherit;
  min-height: 0vw;
  --min-size: 53;
  --max-size: 146;
  --min-viewport: 375;
  --max-viewport: 1440; 
  --slope:calc((var(--max-size) - var(--min-size)) / (var(--max-viewport) - var(--min-viewport)));
  --intercept: calc(var(--min-size) - var(--slope) * var(--min-viewport));
  --fluid-size:calc(var(--slope) * 100vw + var(--intercept) * .1rem);
  --clamp-size: clamp(var(--min-size) * .1rem, var(--fluid-size), var(--max-size) * .1rem);
}
body {
  line-height: 1.7;
  font-size: 1.4rem;
  font-family: "Noto Sans JP", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  color: #333;
  letter-spacing: 0.05em;
}
@media (width >= 769px) {
  body {
    font-size: 1.6rem;
  }
}
img {
  vertical-align: bottom;
}
figure {
  margin: 0;
}
iframe {
  width: 100%;
}
table {
  border-spacing: 0;
}
button {
  -webkit-appearance: none;
  appearance: none;
  cursor: pointer;
}
a {
  color: inherit;
  text-decoration: none;
}
/* レイアウト */
.w-container {
  max-width: 64rem;
  margin-inline: auto;
}
/* 共通パーツ */
@media (width >= 769px) {  
  .sp-br {
    display: none; 
  }
}
/* footer */
.footer {
  background: #301702;
  color: #fff;
  padding-bottom: 1rem;
  padding-left: 1rem;
  padding-right: 1rem;
    & .copyright {
      text-align: center;
      font-size: 1.2rem;
    }
}
.footer-menu {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  padding-top: 1rem;
  padding-bottom: 1rem;

  @media(width >= 750px) {
    gap: 2rem;
  }

  & li a{
    font-size: 1.2rem;
    text-decoration: underline;
  }
}
/* アンケート */
/*必ず上の方に書く*/
.answer{
  display: none;
}
.Balloon_wrap{
  /* max-width:640px; */
  background: #f0f0eb;
  padding: 20px 12px !important;
  box-sizing:border-box;
}
#sec02,#sec03,#sec04,#sec05,#sec06,#enquete_hide,#Footer{
  display: none;
}
.Balloon{
  display: flex;
  opacity: 0;
  visibility: hidden;
  transform: translateY(30px);
  transition: opacity .5s, visibility .5s, transform .5s;
  margin: 12px auto;
}

.Balloon dt img , .Balloon dt span{
  display: block;
  max-width: 80px;
  width: 80px;
}

.Balloon dd{
  position:relative;
  border-radius: 12px;
  border:3px solid #fff;
  padding: 12px;
  /* margin-right: calc(20% + 20px); */
  box-sizing:border-box;
  background: #fff;
  width: 100%;
  height:100%;
  font-weight: bold;
}
.Balloon dd.ans {
  padding-right: 25px;
  padding-left: 25px; 
  @media(width: 750px) {
    padding-right: 45px;
    padding-left: 45px; 
  }
}
.Balloon.speech dd {
  margin-left: 24px;
  /* margin-right: 10%; */
  margin-bottom: 30px;
  /* @media (width >= 750px) {
  margin-right: calc(20% + 20px);
} */
}	
.Balloon.speech._full dd {
  margin-right: 0;
  /* max-width: 388px; */
} 
/* 色付きの半円 */
.Balloon.speech dd::before{
  content: '';
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  border-radius: 50%;
  transform: rotate(-45deg);
  left: -20px;
  top: -20px;
  border-left: 25px solid #fff;
  border-top: 25px solid transparent;
  border-right: 25px solid transparent;
  border-bottom: 25px solid transparent;
}
/* 白い半円 */
.Balloon.speech dd::after{
  content: '';
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  border-radius: 50%;
  transform: rotate(-45deg);
	left: -28px;
    top: -32px;
  border-left: 25px solid #f0f0eb;
  border-top: 25px solid transparent;
  border-right: 25px solid transparent;
  border-bottom: 25px solid transparent;
}

.Balloon.reverse{
  flex-direction: row-reverse;
}

.Balloon.reverse.speech_right dd{
  margin-right: 20px;
  margin-left: 0;
  background: #fff;
  border-color: #fff;
  /* @media(width >= 750px) {
    margin-left: calc(20% + 20px);
  } */
}
.Balloon.reverse dd::before{
	border-left: 20px solid #fff;
  border-top: 20px solid transparent;
  border-right: 20px solid transparent;
  border-bottom: 20px solid transparent;
	transform: rotate(-135deg);
  left:auto;
	top: -15px;
  right: -20px;
}
.Balloon.reverse dd::after{
  border-left: 20px solid #f0f0eb;
  border-top: 20px solid transparent;
  border-right: 20px solid transparent;
  border-bottom: 20px solid transparent;
	transform: rotate(-135deg);
  left:auto;
	top: -25px;
  right: -23px;
}

@media screen and (max-width:720px){
  .Balloon dt img , .Balloon dt span{
    max-width: 40px;
    }
  .Balloon dd{
    max-width: 100%;
    width: 100%;
    margin-right:0;
  }
  .Balloon.reverse dd{
    margin-left: 0;
  }
  
}
.que input {
  display: none;
}
.enq_btn{
  display: block;
  width: 98%;
  padding: 15px 0;
  font-weight:bold;
  font-size: 18px;
  border-radius: 8px;
  text-align: center;
  cursor: pointer;
  color: #2f2f2f;
  margin: 13px 1%;
  background-color: #fff45c;
  border-bottom: 5px solid #b3a813;
  -webkit-box-shadow: 0 3px 5px rgba(0, 0, 0, .3);
  box-shadow: 0 3px 5px rgba(0, 0, 0, .3);
  box-sizing: border-box;
}
.enq_btn:hover{
    color: #fff;
    background: #f29c9f;
    border-bottom: 5px solid #b25356;
}
input:checked + .enq_btn{
    color: #fff;
    background: #f29c9f;
    border-bottom: 5px solid  #b25356;
}
.secNum{
	display: block;
	text-align: center;
	font-weight: bold;
}
	
.is-fadein{
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/*loading*/
.loader {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: #c3c3c3;
  box-shadow: 32px 0 #c3c3c3, -32px 0 #c3c3c3;
  position: absolute;
  left: 40%;
  animation: flash 0.5s ease-out infinite alternate;
}

@keyframes flash {
  0% {
    background-color: #FFF2;
    box-shadow: 32px 0 #FFF2, -32px 0 #c3c3c3;
  }
  50% {
    background-color: #c3c3c3;
    box-shadow: 32px 0 #FFF2, -32px 0 #FFF2;
  }
  100% {
    background-color: #FFF2;
    box-shadow: 32px 0 #c3c3c3, -32px 0 #FFF2;
  }
}
	
p.date_label {
	margin: 0 auto;
	text-align: center;	
	/*animetion用*/
	  opacity: 0;
	  visibility: hidden;
	  transform: translateY(10px);
	  transition: opacity .3s, visibility .3s, transform .3s;
}
p.date_label > span{
	display: inline;
	padding: 0 1rem;
	color: #fff;
	color: #fff;
	font-size: 80%;
	text-align: center;
	background: #e8acbe;
	border-radius: 999px;
}
p.date_label.is-fadein {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
#enquete_loading_wrap {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0,0.70);
	align-items: center;
  justify-content: center;
}
#enquete_thanks {
	display: none;
  position: relative;
}
	
/* loader アニメーション*/
.enquete_loading {
	font-size: 90%;
	text-align: center;
	color: #fff;
}
.enquete_loading_anime {
    display: block;
    margin: 50% auto 50%;
    font-size: 100%;
    width: 1em;
    height: 1em;
  border-radius: 50%;
  position: relative;
  text-indent: -9999em;
  -webkit-animation: load5 1.1s infinite ease;
  animation: load5 1.1s infinite ease;
  -webkit-transform: translateZ(0);
  -ms-transform: translateZ(0);
  transform: translateZ(0);
}
@-webkit-keyframes load5 {
  0%,
  100% {
    box-shadow: 0em -2.6em 0em 0em #ffffff, 1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2), 2.5em 0em 0 0em rgba(255, 255, 255, 0.2), 1.75em 1.75em 0 0em rgba(255, 255, 255, 0.2), 0em 2.5em 0 0em rgba(255, 255, 255, 0.2), -1.8em 1.8em 0 0em rgba(255, 255, 255, 0.2), -2.6em 0em 0 0em rgba(255, 255, 255, 0.5), -1.8em -1.8em 0 0em rgba(255, 255, 255, 0.7);
  }
  12.5% {
    box-shadow: 0em -2.6em 0em 0em rgba(255, 255, 255, 0.7), 1.8em -1.8em 0 0em #ffffff, 2.5em 0em 0 0em rgba(255, 255, 255, 0.2), 1.75em 1.75em 0 0em rgba(255, 255, 255, 0.2), 0em 2.5em 0 0em rgba(255, 255, 255, 0.2), -1.8em 1.8em 0 0em rgba(255, 255, 255, 0.2), -2.6em 0em 0 0em rgba(255, 255, 255, 0.2), -1.8em -1.8em 0 0em rgba(255, 255, 255, 0.5);
  }
  25% {
    box-shadow: 0em -2.6em 0em 0em rgba(255, 255, 255, 0.5), 1.8em -1.8em 0 0em rgba(255, 255, 255, 0.7), 2.5em 0em 0 0em #ffffff, 1.75em 1.75em 0 0em rgba(255, 255, 255, 0.2), 0em 2.5em 0 0em rgba(255, 255, 255, 0.2), -1.8em 1.8em 0 0em rgba(255, 255, 255, 0.2), -2.6em 0em 0 0em rgba(255, 255, 255, 0.2), -1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2);
  }
  37.5% {
    box-shadow: 0em -2.6em 0em 0em rgba(255, 255, 255, 0.2), 1.8em -1.8em 0 0em rgba(255, 255, 255, 0.5), 2.5em 0em 0 0em rgba(255, 255, 255, 0.7), 1.75em 1.75em 0 0em #ffffff, 0em 2.5em 0 0em rgba(255, 255, 255, 0.2), -1.8em 1.8em 0 0em rgba(255, 255, 255, 0.2), -2.6em 0em 0 0em rgba(255, 255, 255, 0.2), -1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2);
  }
  50% {
    box-shadow: 0em -2.6em 0em 0em rgba(255, 255, 255, 0.2), 1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2), 2.5em 0em 0 0em rgba(255, 255, 255, 0.5), 1.75em 1.75em 0 0em rgba(255, 255, 255, 0.7), 0em 2.5em 0 0em #ffffff, -1.8em 1.8em 0 0em rgba(255, 255, 255, 0.2), -2.6em 0em 0 0em rgba(255, 255, 255, 0.2), -1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2);
  }
  62.5% {
    box-shadow: 0em -2.6em 0em 0em rgba(255, 255, 255, 0.2), 1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2), 2.5em 0em 0 0em rgba(255, 255, 255, 0.2), 1.75em 1.75em 0 0em rgba(255, 255, 255, 0.5), 0em 2.5em 0 0em rgba(255, 255, 255, 0.7), -1.8em 1.8em 0 0em #ffffff, -2.6em 0em 0 0em rgba(255, 255, 255, 0.2), -1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2);
  }
  75% {
    box-shadow: 0em -2.6em 0em 0em rgba(255, 255, 255, 0.2), 1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2), 2.5em 0em 0 0em rgba(255, 255, 255, 0.2), 1.75em 1.75em 0 0em rgba(255, 255, 255, 0.2), 0em 2.5em 0 0em rgba(255, 255, 255, 0.5), -1.8em 1.8em 0 0em rgba(255, 255, 255, 0.7), -2.6em 0em 0 0em #ffffff, -1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2);
  }
  87.5% {
    box-shadow: 0em -2.6em 0em 0em rgba(255, 255, 255, 0.2), 1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2), 2.5em 0em 0 0em rgba(255, 255, 255, 0.2), 1.75em 1.75em 0 0em rgba(255, 255, 255, 0.2), 0em 2.5em 0 0em rgba(255, 255, 255, 0.2), -1.8em 1.8em 0 0em rgba(255, 255, 255, 0.5), -2.6em 0em 0 0em rgba(255, 255, 255, 0.7), -1.8em -1.8em 0 0em #ffffff;
  }
}
@keyframes load5 {
  0%,
  100% {
    box-shadow: 0em -2.6em 0em 0em #ffffff, 1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2), 2.5em 0em 0 0em rgba(255, 255, 255, 0.2), 1.75em 1.75em 0 0em rgba(255, 255, 255, 0.2), 0em 2.5em 0 0em rgba(255, 255, 255, 0.2), -1.8em 1.8em 0 0em rgba(255, 255, 255, 0.2), -2.6em 0em 0 0em rgba(255, 255, 255, 0.5), -1.8em -1.8em 0 0em rgba(255, 255, 255, 0.7);
  }
  12.5% {
    box-shadow: 0em -2.6em 0em 0em rgba(255, 255, 255, 0.7), 1.8em -1.8em 0 0em #ffffff, 2.5em 0em 0 0em rgba(255, 255, 255, 0.2), 1.75em 1.75em 0 0em rgba(255, 255, 255, 0.2), 0em 2.5em 0 0em rgba(255, 255, 255, 0.2), -1.8em 1.8em 0 0em rgba(255, 255, 255, 0.2), -2.6em 0em 0 0em rgba(255, 255, 255, 0.2), -1.8em -1.8em 0 0em rgba(255, 255, 255, 0.5);
  }
  25% {
    box-shadow: 0em -2.6em 0em 0em rgba(255, 255, 255, 0.5), 1.8em -1.8em 0 0em rgba(255, 255, 255, 0.7), 2.5em 0em 0 0em #ffffff, 1.75em 1.75em 0 0em rgba(255, 255, 255, 0.2), 0em 2.5em 0 0em rgba(255, 255, 255, 0.2), -1.8em 1.8em 0 0em rgba(255, 255, 255, 0.2), -2.6em 0em 0 0em rgba(255, 255, 255, 0.2), -1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2);
  }
  37.5% {
    box-shadow: 0em -2.6em 0em 0em rgba(255, 255, 255, 0.2), 1.8em -1.8em 0 0em rgba(255, 255, 255, 0.5), 2.5em 0em 0 0em rgba(255, 255, 255, 0.7), 1.75em 1.75em 0 0em #ffffff, 0em 2.5em 0 0em rgba(255, 255, 255, 0.2), -1.8em 1.8em 0 0em rgba(255, 255, 255, 0.2), -2.6em 0em 0 0em rgba(255, 255, 255, 0.2), -1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2);
  }
  50% {
    box-shadow: 0em -2.6em 0em 0em rgba(255, 255, 255, 0.2), 1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2), 2.5em 0em 0 0em rgba(255, 255, 255, 0.5), 1.75em 1.75em 0 0em rgba(255, 255, 255, 0.7), 0em 2.5em 0 0em #ffffff, -1.8em 1.8em 0 0em rgba(255, 255, 255, 0.2), -2.6em 0em 0 0em rgba(255, 255, 255, 0.2), -1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2);
  }
  62.5% {
    box-shadow: 0em -2.6em 0em 0em rgba(255, 255, 255, 0.2), 1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2), 2.5em 0em 0 0em rgba(255, 255, 255, 0.2), 1.75em 1.75em 0 0em rgba(255, 255, 255, 0.5), 0em 2.5em 0 0em rgba(255, 255, 255, 0.7), -1.8em 1.8em 0 0em #ffffff, -2.6em 0em 0 0em rgba(255, 255, 255, 0.2), -1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2);
  }
  75% {
    box-shadow: 0em -2.6em 0em 0em rgba(255, 255, 255, 0.2), 1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2), 2.5em 0em 0 0em rgba(255, 255, 255, 0.2), 1.75em 1.75em 0 0em rgba(255, 255, 255, 0.2), 0em 2.5em 0 0em rgba(255, 255, 255, 0.5), -1.8em 1.8em 0 0em rgba(255, 255, 255, 0.7), -2.6em 0em 0 0em #ffffff, -1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2);
  }
  87.5% {
    box-shadow: 0em -2.6em 0em 0em rgba(255, 255, 255, 0.2), 1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2), 2.5em 0em 0 0em rgba(255, 255, 255, 0.2), 1.75em 1.75em 0 0em rgba(255, 255, 255, 0.2), 0em 2.5em 0 0em rgba(255, 255, 255, 0.2), -1.8em 1.8em 0 0em rgba(255, 255, 255, 0.5), -2.6em 0em 0 0em rgba(255, 255, 255, 0.7), -1.8em -1.8em 0 0em #ffffff;
  }
}
	.header_fixed {
    position: fixed;
    max-width: 640px;
    top: 0;
    right: auto;
    width: 100%;
    left: auto;
}
span.rest {
  display: block;
  text-align: center;
}
.annotation {
  display: block;
  font-size: 1.2rem;
  color: #6b6665;
  @media(width >= 750px) {
    font-size: 1.4rem;
  }
}
.thanks-message {
  text-align: center;
  font-size: 2rem;
  @media(width >= 750px) {
    font-size: 2.4rem;
  }
}
.timer-background {
  width: 100%;
  height: 5rem; 
  background-image: url(../img/countdown.jpg); 
  background-size: cover;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  color: white; 
  font-size: 2rem;
  font-weight: bold;
  text-align: right;
  line-height: 5rem;
  padding-right: 3rem;
  text-shadow: .2rem .2rem .4rem rgba(0, 0, 0, 0.2); 
  margin-top: -3rem;
  position: absolute;
  @media (width >= 500px) {
    font-size: 2.4rem;
    background-size: cover;
  }
}
/* submitボタンのアニメーション */
.btn_invalid {
  text-align: center;
  position: absolute;
  bottom: 10%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  width: 100%;
  padding-left: 20px;
  padding-right: 20px;
}
.btn_invalid img {
  animation-name: heartbeat;
  animation-delay: 0s;
  animation-duration: 1.7s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  @media(width >= 750px) {
    max-width: 55rem;
  }
}
.btn_invalid a:hover img {
  opacity: .7;
}
@keyframes heartbeat {
  0% {
    transform: scale(1) translateX(0);
  }
  25% {
    transform: scale(1.1) translateX(-3px); /* 少し大きくなって左に動く */
  }
  50% {
    transform: scale(1) translateX(0);
  }
  75% {
    transform: scale(1.1) translateX(3px); /* 少し大きくなって右に動く */
  }
  100% {
    transform: scale(1) translateX(0);
  }
}
/* クーポンのアニメーション */
.coupon-wrapper {
  position: absolute;
  top: 12.5%;
  text-align: center;
}
.coupon-wrapper img {
  max-width: 85%;
}
.coupon-wrapper {
  opacity: 0; 
  transform: translateY(100px); 
  transition: opacity 0.5s ease-out, transform 0.4s ease-out;
}
/* スクロールで表示されたときに適用するクラス */
.coupon-wrapper.show {
  opacity: 1;
  transform: translateY(0);
}
.intro {
  background: #f0f0eb;
}
.offer {
  position: absolute;
  bottom: 20%;
  padding: 25px;
  width: 100%;
  text-align: center;
  opacity: 0; /* 初期状態で非表示 */
  transform: translateY(50px); /* 下に50pxずらす */
  transition: opacity 1s ease-out, transform 1s ease-out; /* なめらかな動き */
  @media (width >= 750px) {
    bottom: 21%;
  }
}
.offer img {
  width: 100%;
  max-width: 55rem;
  display: block; 
  margin: 0 auto; 
}
.offer.show {
  opacity: 1;
  transform: translateY(0);
}