@charset "UTF-8";
@media screen and (max-width: 767px) {
  .only-pc {
    display: none;
  }
}
@media print, screen and (min-width: 768px) {
  .only-sp {
    display: none;
  }
}
/*共通*/
.newyear2026 {
  overflow: hidden;
  position: relative;
}

body {
  padding: 0;
  margin: 0;
  font-family: "Noto Sans JP", serif;
  font-weight: 500;
  color: #000;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

* {
  box-sizing: border-box;
}

a {
  text-decoration: none;
  transition: 0.3s;
  color: #000;
}

img {
  max-width: 100%;
}

p {
  line-height: 1.4;
}

/* -------------------------------------
        FV
------------------------------------- */
.header .top_logo {
  position: absolute;
  z-index: 2;
  width: 80px;
  left: 10px;
  top: 10px;
  padding: 5px;
  background: #fff;
}
@media screen and (max-width: 767px) {
  .header .top_logo {
    width: 50px;
    top: 10px;
    left: 10px;
  }
}

.fv {
  text-align: center;
}
.fv__wrap {
  padding: 40px 0;
  background: url(../img/fv-bg.png) no-repeat;
  background-size: cover;
}
.fv__ttl {
  position: relative;
  width: 90%;
  margin: 0 auto;
  max-width: 600px;
}
.fv__ttldec {
  position: absolute;
  width: 20%;
}
.fv__ttldec--redshadow {
  top: 16%;
  left: -1%;
  animation: spin-rotate 8s linear infinite;
}
.fv__ttldec--red {
  top: 15%;
  left: -2%;
  animation: spin-rotate 8s linear infinite;
}
.fv__ttldec--whiteshadow {
  bottom: 11%;
  right: 7%;
  animation: spin-rotate 6s linear infinite;
}
@media screen and (max-width: 767px) {
  .fv__ttldec--whiteshadow {
    width: 12%;
  }
}
.fv__ttldec--white {
  bottom: 12%;
  right: 8%;
  animation: spin-rotate 6s linear infinite;
}
@media screen and (max-width: 767px) {
  .fv__ttldec--white {
    width: 12%;
  }
}
.fv__about {
  position: relative;
  padding: 40px 0 60px;
  background: #EBD576;
  border-top: 5px solid #E50012;
  border-bottom: 5px solid #E50012;
}
.fv__about::before, .fv__about::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 4px;
  border-top: 2px solid #E50012;
  border-bottom: 2px solid #E50012;
  left: 0;
}
.fv__about::before {
  top: 4px;
}
.fv__about::after {
  bottom: 4px;
}
.fv__subttl {
  width: 60%;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .fv__subttl {
    margin-bottom: 8px;
  }
}
.fv__event {
  width: 95%;
  margin: 0 auto;
  max-width: 1200px;
  margin-top: 20px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
  .fv__event {
    margin-top: 0;
  }
}
.fv__item {
  position: relative;
  width: 46%;
  margin: 1em;
  min-width: 440px;
}
@media screen and (max-width: 767px) {
  .fv__item {
    width: 100%;
    min-width: auto;
    margin: 0.5em 0;
  }
}
.fv__itemdec {
  position: absolute;
}
.fv__itemdec--redshadow {
  width: 7%;
  bottom: -4.5%;
  left: 8.5%;
  animation: spin-rotate 5s linear infinite;
}
@media screen and (max-width: 767px) {
  .fv__itemdec--redshadow {
    width: 8%;
    right: 5.5%;
    left: auto;
    bottom: auto;
    top: -3.5%;
  }
}
.fv__itemdec--red {
  width: 7%;
  bottom: -4%;
  left: 8%;
  animation: spin-rotate 5s linear infinite;
}
@media screen and (max-width: 767px) {
  .fv__itemdec--red {
    width: 8%;
    right: 6%;
    left: auto;
    bottom: auto;
    top: -4%;
  }
}
.fv__itemdec--whiteshadow {
  width: 7%;
  top: -3.5%;
  right: 7.5%;
  animation: spin-rotate 6s linear infinite;
}
@media screen and (max-width: 767px) {
  .fv__itemdec--whiteshadow {
    width: 10%;
    top: auto;
    right: auto;
    bottom: -7%;
    left: 5%;
  }
}
.fv__itemdec--white {
  width: 7%;
  top: -4%;
  right: 8%;
  animation: spin-rotate 6s linear infinite;
}
@media screen and (max-width: 767px) {
  .fv__itemdec--white {
    width: 10%;
    top: auto;
    right: auto;
    bottom: -6%;
    left: 4%;
  }
}

.navarea {
  position: relative;
  padding: 40px 0 20px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .navarea {
    padding: 20px 0;
  }
}
.navarea::before {
  content: "";
  position: absolute;
  width: 20%;
  height: 60%;
  background: url(../img/cloud-left.png) no-repeat;
  background-size: contain;
  background-position: bottom;
  left: 0;
  bottom: 10%;
  z-index: 0;
}
@media screen and (max-width: 767px) {
  .navarea::before {
    content: none;
  }
}
.navarea::after {
  content: "";
  position: absolute;
  width: 20%;
  height: 60%;
  background: url(../img/cloud-right.png) no-repeat;
  background-size: contain;
  right: 0;
  top: 10%;
  z-index: 0;
}
@media screen and (max-width: 767px) {
  .navarea::after {
    content: none;
  }
}
.navarea__wrap {
  position: relative;
  width: 95%;
  margin: 0 auto;
  max-width: 1100px;
  z-index: 1;
}
.navarea .unkernav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.navarea .unkernav__item {
  width: 48%;
  max-width: 400px;
  margin: 8px 4px;
}
@media screen and (max-width: 767px) {
  .navarea .unkernav__item {
    width: 90%;
    margin: 10px auto;
  }
}
.navarea .unkernav__item a {
  position: relative;
  display: block;
  border-radius: 50px;
  border: 2px solid #E50012;
  padding: 10px 0 20px;
  box-shadow: 0 3px 0 #E50012;
  background: #fff;
  color: #E50012;
  font-weight: 700;
  font-size: 1.4em;
  line-height: 1.2;
  top: 0;
}
@media screen and (max-width: 767px) {
  .navarea .unkernav__item a {
    font-size: 1.3em;
  }
}
.navarea .unkernav__item a span.small {
  font-size: 0.7em;
}
.navarea .unkernav__item a::after {
  content: "";
  position: absolute;
  width: 24px;
  height: 8px;
  background: url(../img/arrow-red.svg) no-repeat;
  background-size: contain;
  left: 0;
  right: 0;
  margin: 0 auto;
  bottom: 5px;
}
.navarea .unkernav__item a:hover {
  box-shadow: 0 0 0 #E50012;
  top: 3px;
  opacity: 1;
}
.navarea .youmetoku {
  width: 95%;
  max-width: 640px;
  margin: 30px auto 0;
}
.navarea .youmetoku .bannerimg {
  display: block;
  border-radius: 12px;
  box-shadow: 5px 5px 5px #A5A5A5;
}
.navarea .youmetoku .bannerimg img {
  width: 100%;
  border-radius: 12px;
}
@media screen and (max-width: 767px) {
  .navarea .youmetoku .bannerimg img {
    border-radius: 8px;
  }
}
.navarea .youmetoku .link {
  position: relative;
  display: inline-block;
  color: #1D2087;
  padding-right: 1.5em;
  margin-top: 10px;
  border-bottom: 1px solid #1D2087;
  font-weight: 700;
  font-size: 1.1em;
  padding-bottom: 2px;
}
.navarea .youmetoku .link::before {
  content: "";
  position: absolute;
  width: 0.8em;
  height: 0.8em;
  background: url(../img/link_arrow_blue.svg) no-repeat;
  background-size: contain;
  right: 0;
  top: 20%;
}

.btn {
  position: relative;
  text-align: center;
  border-radius: 40px;
  z-index: 10;
  width: 90%;
  max-width: 400px;
  margin: 0 auto;
  margin-top: 16px;
}
@media screen and (max-width: 767px) {
  .btn {
    width: 100%;
  }
}
.btn a {
  position: relative;
  display: block;
  width: 95%;
  margin: 0 auto;
  padding: 16px 0;
  background: #C60079;
  border-radius: 40px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  color: #fff;
}
.btn a::before {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  background: url(../img/arrow.svg) no-repeat;
  background-size: contain;
  background-position: right;
  right: 4%;
  top: 32%;
  transition: all 0.3s;
}
.btn a:hover::before {
  right: 2%;
}

@keyframes spin-rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
/* -------------------------------------
        メイン
------------------------------------- */
.con {
  position: relative;
  padding: 80px 0;
}
@media screen and (max-width: 767px) {
  .con {
    padding: 40px 0;
  }
}
.con__wrap {
  width: 95%;
  margin: 0 auto;
  max-width: 1100px;
}
.con__ttl {
  max-width: 850px;
  margin: 0 auto;
}
.con__main {
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.8);
  padding: 40px 0;
}
.con__main--fukuwari {
  background: #EBD579;
  padding: 40px 1em;
}
@media screen and (max-width: 767px) {
  .con__main--fukuwari {
    padding: 40px 0.5em;
  }
}

.fukubiki {
  position: relative;
  background: url(../img/fukubiki-bg.png) #E50012;
  text-align: center;
}
.fukubiki::before, .fukubiki::after {
  content: "";
  position: absolute;
  width: 20%;
  height: 40%;
}
.fukubiki::before {
  background: url(../img/fukubiki-left.png) no-repeat;
  background-size: contain;
  left: 0;
  top: 5%;
}
.fukubiki::after {
  background: url(../img/fukubiki-right.png) no-repeat;
  background-size: contain;
  background-position: right bottom;
  right: 0;
  bottom: 5%;
}
.fukubiki .con__ttl {
  position: relative;
  width: 80%;
}
@media screen and (max-width: 767px) {
  .fukubiki .con__ttl {
    width: 100%;
  }
}
.fukubiki .con__ttl::before {
  content: "";
  position: absolute;
  width: 18%;
  height: 38%;
  background: url(../img/fukubiki-you.png) no-repeat;
  background-size: contain;
  left: -12%;
  bottom: 4%;
  z-index: 0;
}
@media screen and (max-width: 767px) {
  .fukubiki .con__ttl::before {
    width: 14%;
    height: 30%;
    left: auto;
    right: 4%;
    bottom: auto;
  }
}
.fukubiki .con__ttl::after {
  content: "";
  position: absolute;
  width: 16%;
  height: 38%;
  background: url(../img/fukubiki-me.png) no-repeat;
  background-size: contain;
  background-position: right;
  right: -12%;
  bottom: 4%;
  z-index: 0;
}
@media screen and (max-width: 767px) {
  .fukubiki .con__ttl::after {
    width: 12%;
    height: 30%;
    right: 0;
    bottom: 40%;
    background-position: bottom;
  }
}
.fukubiki .con__main {
  max-width: 900px;
  margin: 0 auto;
}
.fukubiki__day {
  position: relative;
  background: #F4CD11;
  background: linear-gradient(90deg, rgb(244, 205, 17) 0%, rgb(255, 255, 255) 50%, rgb(244, 205, 17) 100%);
  margin-bottom: 20px;
  padding: 8px 0.5em 12px;
}
.fukubiki__day::before, .fukubiki__day::after {
  content: "";
  position: absolute;
  width: 10%;
  height: 80%;
  background: url(../img/fukubiki-kadomatsu.png) no-repeat;
  background-size: contain;
  top: -20px;
}
@media screen and (max-width: 767px) {
  .fukubiki__day::before, .fukubiki__day::after {
    width: 16%;
    height: 80%;
    background-position: center;
    top: -35px;
  }
}
.fukubiki__day::before {
  left: 15%;
}
@media screen and (max-width: 767px) {
  .fukubiki__day::before {
    left: 0;
  }
}
.fukubiki__day::after {
  right: 15%;
}
@media screen and (max-width: 767px) {
  .fukubiki__day::after {
    right: 0;
  }
}
.fukubiki__day .ganjitsu {
  color: #E50012;
  font-weight: 800;
  font-size: 1.6em;
  line-height: 1.2;
}
@media screen and (max-width: 767px) {
  .fukubiki__day .ganjitsu {
    font-size: 1.4em;
  }
}
.fukubiki__day .ganjitsu span.big {
  font-size: 2em;
}
.fukubiki__day .santou {
  color: #E50012;
  margin-bottom: 4px;
  font-size: 0.9em;
}
@media screen and (max-width: 767px) {
  .fukubiki__day .santou {
    font-size: 0.8em;
  }
}
.fukubiki__limited {
  position: relative;
  display: inline-block;
  font-weight: 700;
  font-size: 1.3em;
}
@media screen and (max-width: 767px) {
  .fukubiki__limited {
    font-size: 1.1em;
  }
}
.fukubiki__limited::before, .fukubiki__limited::after {
  content: "";
  position: absolute;
  width: 1.5em;
  height: 1.5em;
  background: url(../img/fukubiki-hana.png) no-repeat;
  background-size: contain;
  bottom: -2px;
}
.fukubiki__limited::before {
  left: -1.8em;
}
.fukubiki__limited::after {
  right: -1.8em;
}
.fukubiki__sankahi p {
  display: inline-block;
  font-weight: 700;
  font-size: 1.6em;
  background: linear-gradient(transparent 60%, #F5D01F 60%);
  letter-spacing: 2px;
  line-height: 1.2;
}
@media screen and (max-width: 767px) {
  .fukubiki__sankahi p {
    font-size: 1.4em;
  }
}
.fukubiki__sankahi p span.big {
  font-size: 1.7em;
}
.fukubiki__present {
  margin-top: 10px;
  font-weight: 700;
  font-size: 1.1em;
  margin-top: 12px;
}
.fukubiki__present span.big {
  font-size: 1.6em;
}
@media screen and (max-width: 767px) {
  .fukubiki__present span.big {
    font-size: 1.4em;
  }
}
.fukubiki__present span.red {
  color: #CF2014;
}

.undameshi {
  position: relative;
  background: url(../img/undameshi-bg.png) no-repeat;
  background-size: cover;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .undameshi::before {
    content: "";
    position: absolute;
    width: 120px;
    height: 80px;
    background: url(../img/undameshi-bird.png) no-repeat;
    background-size: contain;
    left: 0;
    top: 7%;
  }
}
.undameshi__subttl {
  position: relative;
  display: inline-block;
  color: #2B0057;
  font-size: 1.2em;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .undameshi__subttl {
    font-size: 1em;
  }
}
.undameshi__subttl::before, .undameshi__subttl::after {
  content: "";
  position: absolute;
  width: 2px;
  height: 100%;
  background: #2B0057;
  bottom: 0;
}
.undameshi__subttl::before {
  transform: rotate(-30deg);
  left: -0.5em;
}
.undameshi__subttl::after {
  transform: rotate(30deg);
  right: -0.5em;
}
.undameshi .con__ttl {
  margin-bottom: 20px;
  max-width: 1000px;
}
@media screen and (max-width: 767px) {
  .undameshi .con__ttl {
    margin-top: 20px;
  }
}
.undameshi .con__main {
  padding: 40px 1em;
}
@media screen and (max-width: 767px) {
  .undameshi .con__main {
    padding: 30px 0.5em 40px;
  }
}
.undameshi__kikan, .undameshi__about {
  color: #2B0057;
  font-weight: 700;
  font-size: 1.4em;
}
@media screen and (max-width: 767px) {
  .undameshi__kikan, .undameshi__about {
    font-size: 1em;
  }
}
.undameshi__about {
  font-size: 1.6em;
  margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
  .undameshi__about {
    font-size: 1.2em;
    margin-bottom: 4px;
  }
}
.undameshi__img {
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .undameshi__img {
    margin-bottom: 16px;
  }
}
.undameshi__youmeapp {
  color: #C60079;
  font-weight: 700;
  font-size: 1.1em;
}
@media screen and (max-width: 767px) {
  .undameshi__youmeapp {
    font-size: 1em;
  }
}
.undameshi__youmeappwrap {
  max-width: 700px;
  margin: 8px auto;
  border: 2px solid #C60079;
  background: #fff;
  border-radius: 12px;
  padding: 1em;
}
@media screen and (max-width: 767px) {
  .undameshi__youmeappwrap {
    padding: 1em 0.5em;
  }
}
.undameshi__youmeappwrap-img {
  width: 90%;
  margin: 0 auto;
}
.undameshi__youmeappwrap-ok {
  display: inline-block;
  background: #F5D01F;
  font-size: 1.2em;
  line-height: 1.1;
  margin: 12px 0 8px;
  padding: 0 2px 2px;
}
@media screen and (max-width: 767px) {
  .undameshi__youmeappwrap-ok {
    font-size: 0.9em;
  }
}
.undameshi__youmeappwrap-ok span.ok {
  color: #C60079;
  font-size: 1.4em;
}
@media screen and (max-width: 767px) {
  .undameshi__youmeappwrap-ok span.ok {
    font-size: 1.2em;
  }
}
.undameshi__youmeappwrap-txt {
  font-size: 0.9em;
}
.undameshi .notice {
  margin-top: 10px;
}

.fukuwari {
  position: relative;
  background: #C92F1E;
  padding: 38px 0 120px;
  text-align: center;
}
.fukuwari::before, .fukuwari::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 40px;
  background: url(../img/fukuwari-line.png) repeat-x;
  background-size: cover;
  background-position: bottom;
  left: 0;
}
.fukuwari::before {
  top: -1px;
}
.fukuwari::after {
  bottom: -2px;
}
.fukuwari__ttl {
  position: relative;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
  .fukuwari__ttl {
    flex-direction: column-reverse;
  }
}
.fukuwari__ttl-sub {
  position: relative;
  width: 45%;
  margin-right: -50px;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .fukuwari__ttl-sub {
    width: 100%;
    margin-top: -50px;
    z-index: 0;
  }
}
.fukuwari__ttl-sub::before {
  content: "";
  position: absolute;
  width: 5%;
  height: 6%;
  background: url(../img/fukuwari-hana.png) no-repeat;
  background-size: contain;
  top: 4%;
  left: 5%;
  animation: spin-rotate 6s linear infinite;
}
@media screen and (max-width: 767px) {
  .fukuwari__ttl-sub::before {
    width: 6%;
    height: 9%;
    top: -16%;
    left: 8%;
  }
}
.fukuwari__ttl-main {
  position: relative;
  width: 40%;
}
@media screen and (max-width: 767px) {
  .fukuwari__ttl-main {
    width: 70%;
    margin: 0 auto;
    z-index: 1;
  }
}
.fukuwari__kikan {
  padding: 0.5em;
  background: #fff;
  border-radius: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 20px 0 30px;
}
@media screen and (max-width: 767px) {
  .fukuwari__kikan {
    display: block;
    margin: 10px 0 20px;
  }
}
.fukuwari__kikan-txt {
  width: 10%;
  display: inline-block;
  background: #C92F1E;
  color: #fff;
  font-weight: 800;
  font-size: 1.2em;
  padding: 4px;
  border-radius: 4px;
  margin-right: 8px;
  letter-spacing: 2px;
}
@media screen and (max-width: 767px) {
  .fukuwari__kikan-txt {
    width: 20%;
    letter-spacing: 2px;
    font-size: 1em;
    padding: 2px 1em;
    margin: 0;
    margin-bottom: 4px;
  }
}
.fukuwari__kikan-day {
  width: 65%;
}
@media screen and (max-width: 767px) {
  .fukuwari__kikan-day {
    width: 90%;
    margin: 0 auto;
    max-width: 500px;
  }
}
.fukuwari__up {
  position: relative;
  display: inline-block;
  color: #C92F1E;
  font-weight: 900;
  font-size: 1.6em;
  margin-bottom: 12px;
}
@media screen and (max-width: 767px) {
  .fukuwari__up {
    font-size: 1.2em;
    margin-bottom: 8px;
  }
}
.fukuwari__up::before, .fukuwari__up::after {
  content: "";
  position: absolute;
  width: 3px;
  height: 100%;
  background: #C92F1E;
  bottom: 0;
}
.fukuwari__up::before {
  transform: rotate(-30deg);
  left: -0.8em;
}
.fukuwari__up::after {
  transform: rotate(30deg);
  right: -0.8em;
}
.fukuwari__peroff {
  display: flex;
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap;
  max-width: 900px;
  margin: 0 auto;
  margin-bottom: 1em;
}
.fukuwari__peroff-regi {
  position: relative;
  width: 30%;
  background: #C92F1E;
  border-radius: 12px 0 0 12px;
  text-align: center;
  border: 3px solid #C92F1E;
  padding: 0.5em;
}
@media screen and (max-width: 767px) {
  .fukuwari__peroff-regi {
    width: 100%;
    background: none;
    border: none;
  }
}
@media screen and (max-width: 767px) {
  .fukuwari__peroff-regi::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 80%;
    background: #C92F1E;
    border-radius: 12px 12px 0 0;
    left: 0;
    bottom: 0;
    z-index: 0;
  }
}
.fukuwari__peroff-regi .regiimg {
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .fukuwari__peroff-regi .regiimg {
    width: 60%;
    margin: 0 auto;
  }
}
.fukuwari__peroff-no {
  width: 70%;
  border: 3px solid #C92F1E;
  background: #fff;
  border-radius: 0 12px 12px 0;
  text-align: left;
  padding: 0.5em 1em;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .fukuwari__peroff-no {
    width: 100%;
    text-align: center;
    border-radius: 0 0 12px 12px;
    justify-content: center;
  }
}
.fukuwari__taisho {
  max-width: 900px;
  margin: 0 auto;
  border-radius: 12px;
  background: #fff;
  padding: 1em 0.5em;
  margin-bottom: 16px;
}
.fukuwari__taisho .taishottl {
  color: #C92F1E;
  font-size: 1.4em;
  font-weight: 700;
}
.fukuwari__taisho .taishonotice {
  font-size: 0.9em;
}
.fukuwari__taisho .taishomain {
  margin-top: 8px;
  padding-top: 8px;
  border-top: 2px solid #C92F1E;
}
@media screen and (max-width: 767px) {
  .fukuwari__taisho .taishomain {
    text-align: left;
  }
}
.fukuwari__taisho .taishomain p {
  color: #C92F1E;
  font-size: 1.5em;
  font-weight: 700;
  padding-left: 1em;
  text-indent: -1em;
}
@media screen and (max-width: 767px) {
  .fukuwari__taisho .taishomain p {
    font-size: 1.2em;
  }
}
.fukuwari__taisho .taishomain p span.small {
  font-size: 0.7em;
}
.fukuwari__waribiki {
  position: relative;
  color: #C92F1E;
  font-weight: 700;
  font-size: 1.4em;
  width: 80%;
  margin: 0 auto;
  max-width: 700px;
  margin-bottom: 12px;
}
@media screen and (max-width: 767px) {
  .fukuwari__waribiki {
    font-size: 1em;
    max-width: 400px;
    width: 100%;
  }
}
.fukuwari__waribiki span.big {
  font-size: 1.6em;
}
.fukuwari__waribiki::before, .fukuwari__waribiki::after {
  content: "";
  position: absolute;
  width: 10%;
  height: 40%;
  bottom: 20%;
}
@media screen and (max-width: 767px) {
  .fukuwari__waribiki::before, .fukuwari__waribiki::after {
    bottom: 0;
  }
}
.fukuwari__waribiki::before {
  background: url(../img/fukuwari-hana-left.png) no-repeat;
  background-size: contain;
  left: -12%;
}
@media screen and (max-width: 767px) {
  .fukuwari__waribiki::before {
    left: 0;
    background-position: bottom;
  }
}
.fukuwari__waribiki::after {
  background: url(../img/fukuwari-hana-right.png) no-repeat;
  background-size: contain;
  right: -12%;
}
@media screen and (max-width: 767px) {
  .fukuwari__waribiki::after {
    right: 0;
    background-position: bottom;
  }
}
.fukuwari__uriba {
  font-size: 1.1em;
  margin-top: 8px;
}
@media screen and (max-width: 767px) {
  .fukuwari__uriba {
    font-size: 1em;
  }
}
.fukuwari__campnotice {
  text-align: center;
}
.fukuwari__campnotice p {
  display: inline-block;
  color: #fff;
  background: #C92F1E;
  font-size: 1.1em;
  margin-top: 4px;
}
@media screen and (max-width: 767px) {
  .fukuwari__campnotice p {
    display: block;
    font-size: 1em;
    padding: 2px 0 4px;
  }
}

.dpoint {
  background: url(../img/dpoint-bg.png) no-repeat;
  background-size: cover;
  background-position: center;
  text-align: center;
}
.dpoint__icon {
  width: 40%;
  max-width: 240px;
  margin: 0 auto;
  margin-bottom: 12px;
}
.dpoint__about {
  width: 85%;
  margin: 0 auto;
  max-width: 640px;
}
.dpoint__detail {
  font-size: 1.6em;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .dpoint__detail {
    font-size: 1.2em;
  }
}
.dpoint__detail span.small {
  font-size: 0.8em;
}
.dpoint__main {
  position: relative;
  z-index: 1;
}
.dpoint__main::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 65%;
  border: 5px solid #FF0000;
  border-radius: 20px;
  background: #fff;
  left: 0;
  bottom: 0;
  z-index: 0;
}
@media screen and (max-width: 767px) {
  .dpoint__main::after {
    border: 2px solid #FF0000;
    height: 82%;
  }
}
.dpoint__wrap {
  position: relative;
  z-index: 1;
  padding: 0 1em;
  padding-bottom: 60px;
}
@media screen and (max-width: 767px) {
  .dpoint__wrap {
    padding: 0 0.5em 60px;
  }
}
.dpoint__ttl {
  position: relative;
  width: 90%;
  margin: 0 auto;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .dpoint__ttl {
    width: 100%;
  }
}
.dpoint__img {
  max-width: 700px;
  margin: 0 auto;
  margin-top: -10px;
}
@media screen and (max-width: 767px) {
  .dpoint__img {
    margin-top: 0;
  }
}
.dpoint__top {
  font-size: 1.3em;
  font-weight: 700;
  margin: 12px 0 0;
}
@media screen and (max-width: 767px) {
  .dpoint__top {
    font-size: 1em;
    margin: 8px 0 0;
  }
}
.dpoint__heiyo {
  font-size: 1.2em;
  font-weight: 700;
  color: #C60079;
  display: inline-block;
  background: #FFF23F;
  margin: 4px auto 20px;
}
@media screen and (max-width: 767px) {
  .dpoint__heiyo {
    font-size: 1em;
  }
}
.dpoint__kikan {
  text-align: center;
  margin-bottom: 12px;
}
.dpoint__kikan-ttl {
  display: inline-block;
  margin: 0 auto;
  margin-bottom: 8px;
  background: #C60079;
  color: #fff;
  font-size: 1.4em;
  font-weight: 700;
  padding: 4px 1em;
  border-radius: 8px;
}
@media screen and (max-width: 767px) {
  .dpoint__kikan-ttl {
    font-size: 1.1em;
    padding: 4px 8px;
  }
}
@media screen and (max-width: 767px) {
  .dpoint .notice {
    text-align: left;
  }
}

.tenpo__img {
  text-align: center;
  width: 90%;
  margin: 0 auto;
  max-width: 600px;
  margin-bottom: 40px;
}

/* -------------------------------------
        注意文
------------------------------------- */
.notice p {
  padding-left: 1em;
  text-indent: -1em;
  font-size: 0.9em;
}

/*アニメーション*/
.anime-l {
  opacity: 0;
  visibility: hidden;
  transition: 1s;
  transform: translateX(-40px);
}

.anime-b {
  opacity: 0;
  visibility: hidden;
  transition: 1s;
  transform: translateY(30px);
}

.anime-o {
  opacity: 0;
  visibility: hidden;
  transition: 2.5s;
}

.anime-o2 {
  opacity: 0;
  visibility: hidden;
  transition: 3.5s;
  transition-delay: 0.4s;
}

.anime-o3 {
  opacity: 0;
  visibility: hidden;
  transition: 3.5s;
  transition-delay: 1.6s;
}

.active {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}