@charset "UTF-8";
/*このcssはscssにより書き出されています*/
*,
*:before,
*:after {
  -webkit-appearance: none;
}

html {
  height: 100%;
  line-height: 1.8;
}

body {
  font-family: "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
  overflow-x: hidden;
  text-align: center;
  background: url(../images/bg_ichimatsu.png) repeat;
  background-size: 144px;
  font-size: clamp(14px, 1.3vw, 16px);
}

a,
button {
  cursor: pointer;
  -webkit-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
  will-change: transform;
  border: none;
  text-decoration: none;
  display: block;
  color: #d80c18;
  text-decoration: underline;
}
a:hover,
button:hover {
  opacity: 0.8;
}

img, svg {
  vertical-align: top;
  max-width: 100%;
  height: auto;
  margin: auto;
}

.u-inner {
  width: 96%;
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

@media only screen and (max-width: 1188px) {
  .u-pc {
    display: none;
  }
}

.u-sp {
  display: none;
}
@media only screen and (max-width: 1188px) {
  .u-sp {
    display: block;
  }
}

.u-linkSpot1 {
  margin-top: -80px;
  padding-top: 80px;
}
@media only screen and (max-width: 750px) {
  .u-linkSpot1 {
    margin-top: -30px;
    padding-top: 30px;
  }
}

.u-linkSpot2 {
  margin-top: -30px;
  padding-top: 30px;
}
@media only screen and (max-width: 750px) {
  .u-linkSpot2 {
    margin-top: 0;
    padding-top: 0;
  }
}

.js-effect {
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
  -webkit-transform: translate(0, 10px) scale(0.9);
          transform: translate(0, 10px) scale(0.9);
  opacity: 0;
  will-change: transform;
}
.js-effect.is-show {
  -webkit-transform: translate(0, 0) scale(1);
          transform: translate(0, 0) scale(1);
  opacity: 1;
}

.wrapper {
  overflow-x: hidden;
  position: relative;
}

.pcWrap {
  position: fixed;
  width: min(96%, 1600px);
  height: 100%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.p-cautionList {
  margin-top: 1em;
}
.p-cautionList li {
  text-indent: -1em;
  margin-left: 1em;
  margin-bottom: 0.3em;
  line-height: 1.5;
  font-size: clamp(12px, 1.3vw, 14px);
  color: #666666;
}

/*--- header ---*/
header {
  background-color: white;
  position: fixed;
  width: 100%;
  z-index: 100;
}
header .header__inner {
  width: min(96%, 1600px);
  height: 80px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}
@media only screen and (max-width: 750px) {
  header .header__inner {
    height: 50px;
    width: 100%;
  }
}
header .logo {
  position: absolute;
  top: 50%;
  left: 4%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media only screen and (max-width: 750px) {
  header .logo {
    width: min(35%, 148px);
    height: -webkit-fill-available;
  }
}
header .logo img {
  vertical-align: middle;
}

/*--- nav ---*/
nav ul {
  text-align: left;
  width: 100%;
}
nav ul li {
  width: 100%;
}
nav ul img {
  width: auto;
}
@media only screen and (max-width: 750px) {
  nav .toggle {
    position: absolute;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    top: 0;
    right: 0;
    height: 50px;
    width: 50px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    cursor: pointer;
    background: transparent;
    -webkit-transition: 0.2s ease-in-out;
    transition: 0.2s ease-in-out;
    z-index: 2;
  }
  nav .toggle i {
    display: block;
    width: 18px;
    height: 2px;
    background: #7f4f21;
    position: relative;
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
  }
  nav .toggle i::before, nav .toggle i::after {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background: #7f4f21;
    position: absolute;
    top: -7px;
    left: 0;
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
  }
  nav .toggle i::after {
    top: 7px;
  }
  nav .toggle.open i {
    background: transparent;
  }
  nav .toggle.open i::before {
    top: 0;
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
  }
  nav .toggle.open i::after {
    top: 0;
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
  }
  nav .inner {
    background: #cdad43;
    position: fixed;
    top: 0;
    right: -100vw;
    width: 70%;
    height: 100%;
    z-index: 1;
    -webkit-transition: 0.35s ease-in-out;
    transition: 0.35s ease-in-out;
    padding-top: 100px;
    padding-left: 6%;
  }
  nav .inner ul {
    text-align: left;
    width: 100%;
  }
  nav .inner ul li {
    width: 100%;
    margin-bottom: 10px;
  }
  nav .inner ul img {
    max-height: 36px;
  }
  nav .inner .inner-logo {
    position: absolute;
    top: 13px;
    left: 6%;
    width: 148px;
  }
  nav .open .inner {
    right: 0;
  }
}
@media screen and (min-width: 751px) {
  nav {
    position: absolute;
    right: 4%;
    top: 18vh;
  }
  nav ul li {
    margin-bottom: 20px;
  }
  nav ul img {
    height: 4vw;
    max-height: 50px;
  }
  nav .toggle, nav .inner-logo {
    display: none;
  }
}

/*--- floating bnr ---*/
.floating_bnr {
  position: absolute;
  width: min(24%, 290px);
  left: 0;
  top: 16vh;
  animation: floating-y 1.4s ease-in-out infinite alternate-reverse;
}
@media only screen and (max-width: 750px) {
  .floating_bnr {
    display: none;
  }
}
@-webkit-keyframes floating-y {
  0% {
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
  }
  100% {
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
  }
}
@keyframes floating-y {
  0% {
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
  }
  100% {
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
  }
}

/*--- floating cloud ---*/
.cloud_01,
.cloud_02,
.cloud_03,
.cloud_04,
.cloud_05,
.cloud_06 {
  width: min(40%, 437px);
  z-index: -1;
}
@media only screen and (max-width: 750px) {
  .cloud_01,
  .cloud_02,
  .cloud_03,
  .cloud_04,
  .cloud_05,
  .cloud_06 {
    display: none;
  }
}
@keyframes floating-y {
  0% {
    -webkit-transform: translateY(-5px);
            transform: translateY(-5px);
  }
  100% {
    -webkit-transform: translateY(5px);
            transform: translateY(5px);
  }
}

.cloud_01 {
  position: absolute;
  left: 10%;
  top: 10vh;
  animation: floating-y 1s ease-in-out infinite alternate-reverse;
}

.cloud_02 {
  position: absolute;
  left: -5%;
  top: 42vh;
  animation: floating-y 1.2s ease-in-out infinite alternate-reverse;
}

.cloud_03 {
  position: absolute;
  left: 6%;
  top: 68vh;
  animation: floating-y 1.1s ease-in-out infinite alternate-reverse;
}

.cloud_04 {
  position: absolute;
  right: 4%;
  top: 14vh;
  animation: floating-y 1.1s ease-in-out infinite alternate-reverse;
}

.cloud_05 {
  position: absolute;
  right: -8%;
  top: 43vh;
  animation: floating-y 1s ease-in-out infinite alternate-reverse;
}

.cloud_06 {
  position: absolute;
  right: 7%;
  top: 73vh;
  animation: floating-y 1.2s ease-in-out infinite alternate-reverse;
}

/*--- main ---*/
.c-main {
  margin: 50px auto 0;
  position: relative;
  background: url(../images/bg_contents.png) repeat;
  padding-top: 2%;
}
@media only screen and (max-width: 750px) {
  .c-main {
    padding-top: 5%;
  }
}
@media screen and (min-width: 751px) {
  .c-main {
    max-width: min(45%, 750px);
  }
}
.c-main::before, .c-main::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 175px;
  z-index: -2;
}
.c-main::before {
  left: -175px;
  background: -webkit-gradient(linear, right top, left top, from(rgba(170, 116, 51, 0.3)), to(rgba(170, 116, 51, 0)));
  background: linear-gradient(to left, rgba(170, 116, 51, 0.3), rgba(170, 116, 51, 0));
}
.c-main::after {
  right: -175px;
  background: -webkit-gradient(linear, right top, left top, from(rgba(170, 116, 51, 0)), to(rgba(170, 116, 51, 0.3)));
  background: linear-gradient(to left, rgba(170, 116, 51, 0), rgba(170, 116, 51, 0.3));
}
@media screen and (min-width: 751px) {
  .c-main {
    margin: 80px auto 0;
  }
}

.mainVisual_bg::before {
  content: "";
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: top center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
}
.webp .mainVisual_bg::before {
  background-image: url(../images/bg_mainVisual.webp);
}

.no-webp .mainVisual_bg::before {
  background-image: url(/../images/bg_mainVisual.png);
}

.section-mainVisual {
  padding-bottom: 11%;
}
.section-mainVisual .mainVisual__img {
  margin: 0 auto 5% auto;
  width: 82%;
}
.section-mainVisual .mainVisual__read {
  margin-bottom: 7%;
}

.section-happyBag .happyBag-ttl {
  margin: 0 auto 2% auto;
  width: 75%;
}
.section-happyBag .happyBag-all {
  margin: 3% auto 2% auto;
  width: 90%;
}
.section-happyBag .happyBag-ticket {
  margin-bottom: 0.5%;
}
.section-happyBag .happyBag-plus {
  margin: 0 auto;
  width: 13%;
}
.section-happyBag .happyBag-goods {
  margin-bottom: 2%;
}
.section-happyBag .happyBag-pickup {
  margin-bottom: 5%;
}
.section-happyBag .happyBag-note {
  width: 96%;
  margin: 0 auto 8% auto;
  color: #dabd43;
}
.section-happyBag .happyBag-note .happyBag-note_ttl {
  font-weight: bold;
  font-size: clamp(16px, 1.3vw, 20px);
  margin-bottom: 2%;
}
.section-happyBag .happyBag-note ul {
  text-align: left;
}
.section-happyBag .happyBag-note ul li {
  text-indent: -1em;
  padding-left: 1em;
}

/*--- data ---*/
.section-data {
  background-color: #ffffff;
  padding: 10% 0;
  text-align: left;
}
.section-data .data_ttl {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  background-color: #cdad43;
  color: #ffffff;
  border-radius: 9999px;
  padding: 1% 6%;
  margin-bottom: 1%;
  font-size: clamp(20px, 1.3vw, 24px);
}
.section-data .data_detail {
  width: 96%;
  margin: 0 auto;
}
.section-data .data_detail dl {
  border-bottom: 1px solid #cdad43;
  padding: 32px 0;
}
.section-data .data_detail dl:last-child {
  border-bottom: none;
  padding: 32px 0 0 0;
}
.section-data .data_detail dl dt {
  color: #7f4f21;
  font-weight: bold;
  padding-bottom: 2%;
}
.section-data .data_detail dl dd a {
  display: inline-block;
}
@media only screen and (max-width: 750px) {
  .section-data .data_detail dl {
    padding: 24px 0;
  }
}

/*--- footer ---*/
.c-footer {
  margin: 0 auto;
  position: relative;
  background-color: #cdad43;
  padding: 5rem 0 2rem 0;
}
@media only screen and (max-width: 750px) {
  .c-footer {
    padding: 3rem 0 1.6rem 0;
  }
}
@media screen and (min-width: 751px) {
  .c-footer {
    max-width: min(45%, 750px);
  }
}
.c-footer::before, .c-footer::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 175px;
  z-index: -2;
}
.c-footer::before {
  left: -175px;
  background: -webkit-gradient(linear, right top, left top, from(rgba(170, 116, 51, 0.3)), to(rgba(170, 116, 51, 0)));
  background: linear-gradient(to left, rgba(170, 116, 51, 0.3), rgba(170, 116, 51, 0));
}
.c-footer::after {
  right: -175px;
  background: -webkit-gradient(linear, right top, left top, from(rgba(170, 116, 51, 0)), to(rgba(170, 116, 51, 0.3)));
  background: linear-gradient(to left, rgba(170, 116, 51, 0), rgba(170, 116, 51, 0.3));
}
.c-footer .p-share .share_cont {
  width: 90%;
  max-width: 440px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}
.c-footer .p-share a {
  background-color: #ffffff;
  display: block;
  border-radius: 10px;
  color: #7f4f21;
  text-decoration: none;
  font-weight: bold;
  display: grid;
  grid-template-columns: 1fr 35px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 20px 30px 20px 40px;
  -webkit-box-shadow: 0 0 15px rgba(0, 0, 0, 0.15);
          box-shadow: 0 0 15px rgba(0, 0, 0, 0.15);
  text-align: left;
}
@media screen and (min-width: 751px) {
  .c-footer .p-share a {
    grid-template-columns: 1fr 44px;
    border-radius: 20px;
    padding-block: 30px;
  }
}
@media (hover: hover) {
  .c-footer .p-share a:hover {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
}
.c-footer .footer_logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5%;
  margin: 8% 0 3% 0;
}
.c-footer .footer_logo .cocoichi {
  width: 35%;
  max-width: 200px;
}
.c-footer .footer_logo .cocoichi img {
  width: 100%;
}
.c-footer .footer_logo .pastadecoco {
  width: 35%;
  max-width: 200px;
}
.c-footer .footer_logo .pastadecoco img {
  width: 100%;
}
.c-footer .footer_copyright {
  color: #7f4f21;
  text-align: center;
  font-size: clamp(10px, 1.3vw, 12px);
}