@charset "UTF-8";
/* mediaquery */
/* color */
/* font */
.clearfix:before,
.clearfix:after {
  content: "";
  display: table;
}

.clearfix:after {
  clear: both;
}

/* For IE 6/7 (trigger hasLayout) */
.clearfix {
  zoom: 1;
}

/* variable */
i {
  margin: auto 20px;
}

.pc {
  display: inherit !important;
}

.sp {
  display: none !important;
}

/* スマートフォンで見たときは"sp"のclassがついた画像が表示される */
@media only screen and (max-width: 769px) {
  .pc {
    display: none !important;
  }
  .sp {
    display: inherit !important;
  }
}
/*---------------------------------------------------------------
common
-------------------------------------------------------------- */
html {
  font-size: 2.7vw;
  scroll-behavior: smooth;
}
@media (min-width: 768px) {
  html {
    font-size: clamp(10px, 1vw, 16px);
    font-size: clamp(10px, 0.8vw, 14px);
  }
}

:target {
  scroll-margin-top: 50px;
}

body {
  font-family: ryo-gothic-plusn, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 1.6rem;
  line-height: 180%;
  color: #3C3C3E;
  background: #EAE0D1;
  background-size: cover;
  background-position: center center;
  font-feature-settings: "palt";
  letter-spacing: 0.05em;
  text-align: justify;
  text-justify: inter-ideograph;
  position: relative;
}

a,
a:hover,
a:visited {
  color: #3C3C3E;
  text-decoration: none;
}

/* ローディング画面 */
#loading {
  position: fixed;
  inset: 0;
  background: #335643;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 1;
}
#loading .inner {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
#loading .inner figure {
  opacity: 0;
}
#loading .inner figure.loading-img-b {
  width: 24rem;
}

.btn_all {
  width: calc(100% - 3.2rem);
  max-width: 32rem;
  margin: auto;
  padding: 1.6rem;
  color: #F3F0EA;
  font-weight: 700;
  text-align: center;
  background: #A22C39;
  display: block;
  border-radius: 100vh;
  transition: background-color 0.4s ease;
}
.btn_all:visited {
  background: #A22C39;
  color: #F3F0EA;
}
.btn_all:hover {
  background-color: rgb(200.9611650485, 56.0388349515, 72.0048543689);
  color: #F3F0EA;
}

.btn_buy {
  width: 8rem;
  margin: 1.6rem auto 0;
  padding: 0.4rem 0.8rem;
  color: #F3F0EA;
  font-size: 1.2rem;
  line-height: 1;
  font-weight: 700;
  text-align: center;
  background: #A22C39;
  display: block;
  border-radius: 100vh;
  transition: background-color 0.4s ease;
}
.btn_buy:visited {
  background: #A22C39;
  color: #F3F0EA;
}
.btn_buy:hover {
  background-color: rgb(200.9611650485, 56.0388349515, 72.0048543689);
  color: #F3F0EA;
}

#wrapper {
  width: 100%;
  margin: 0 auto;
  padding: 0;
  overflow: hidden;
  position: relative;
  z-index: 1;
  opacity: 0;
}
@media screen and (min-width: 768px) {
  #wrapper {
    overflow: visible;
  }
}

img {
  width: 100%;
  vertical-align: bottom;
}

.marquee {
  overflow: hidden;
  white-space: nowrap;
  width: 100%;
}

.marquee__inner {
  display: inline-flex;
}

.marquee__inner span {
  display: block;
  white-space: nowrap;
}

/* ---------- snow ---------- */
.snow-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
  z-index: 9999;
}

.snow-particle {
  position: absolute;
  width: 10.8rem;
  height: 10.8rem;
  background: #fff;
  border-radius: 50%;
  opacity: 0.1;
  will-change: transform;
  filter: blur(1.5px);
}

/*-------------------------------
block
--------------------------------- */
.pc {
  display: none;
}
@media screen and (min-width: 768px) {
  .pc {
    display: inherit;
  }
}

@media screen and (min-width: 768px) {
  .sp {
    display: none;
  }
}

@keyframes infinity-scroll-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
/*-------------------------------
main
--------------------------------- */
.main {
  width: 100%;
  padding: 4.8rem 4.8rem 0;
  position: relative;
  z-index: 2;
  background: #A22C39;
  color: #F3F0EA;
  /* ---------- movie ---------- */
  /* ---------- lead ---------- */
  /* ---------- pagenavi ---------- */
}
@media screen and (min-width: 768px) {
  .main {
    padding-bottom: 11.2rem;
    display: flex;
    gap: 5.6rem;
    align-items: flex-start;
    justify-content: space-evenly;
  }
}
@media screen and (min-width: 768px) {
  .main .left {
    max-width: 42rem;
    padding-top: 4.8rem;
    position: sticky;
    top: 0;
    z-index: 999;
    align-self: start;
  }
}
.main .right {
  margin-top: 7.2rem;
}
@media screen and (min-width: 768px) {
  .main .right {
    max-width: 37.5rem;
    margin-bottom: 7.2rem;
  }
}
.main .movie_area {
  position: relative;
}
@media screen and (min-width: 768px) {
  .main .movie_area {
    max-height: 70vh;
    margin: 0 auto;
  }
}
.main .movie_area .frame {
  margin: 0 auto;
  padding: 0.5rem;
  border-radius: 100vh 100vh 0 0;
  overflow: hidden;
  border: solid 1px #978560;
}
@media screen and (min-width: 768px) {
  .main .movie_area .frame {
    max-height: 70vh;
    margin: 0 auto 8.8rem;
  }
}
.main .movie_area .frame .movie {
  width: 100%;
  margin: 0 auto;
  border-radius: 100vh 100vh 0 0;
  overflow: hidden;
  border: solid 2px #978560;
  position: relative;
  box-sizing: border-box;
}
@media screen and (min-width: 768px) {
  .main .movie_area .frame .movie {
    height: 100%;
  }
}
.main .movie_area .frame .movie video {
  display: block;
  width: 100% !important;
  height: 100% !important;
  -o-object-fit: cover !important;
     object-fit: cover !important;
}
.main .movie_area .frame .movie #leeep-embedded-1423500588674478080 {
  max-width: 100% !important;
  height: auto !important;
  width: 100% !important;
  height: 100% !important;
  -o-object-fit: cover !important;
     object-fit: cover !important;
}
.main .movie_area .frame .movie .LeeepSingleVideoContainer {
  aspect-ratio: auto !important;
  width: 100% !important;
  height: 100% !important;
  -o-object-fit: cover !important;
     object-fit: cover !important;
  max-width: none !important;
  max-height: none !important;
  overflow: hidden;
}
.main .movie_area .frame .movie .LeeepSingleVideoPlayer {
  width: 100% !important;
  height: 100% !important;
  -o-object-fit: cover !important;
     object-fit: cover !important;
  display: block;
}
.main .movie_area .title {
  width: 20rem;
  height: 20rem;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  z-index: 1;
  pointer-events: none;
}
.main .movie_area .deco li {
  position: absolute;
  z-index: 1;
}
.main .movie_area .deco li:nth-child(1) {
  width: 44.8%;
  top: -1.2rem;
  left: -1.6rem;
}
.main .movie_area .deco li:nth-child(2) {
  width: 22.4%;
  top: 4.2rem;
  right: -8.5333333333%;
}
.main .movie_area .deco li:nth-child(3) {
  width: 30.6666666667%;
  bottom: -2.4rem;
  left: -6.4%;
}
.main .movie_area .deco li:nth-child(4) {
  width: 21.3333333333%;
  bottom: -1.6rem;
  right: 19.2%;
}
.main .movie_area .deco li:nth-child(5) {
  width: 18.1333333333%;
  bottom: -1.6rem;
  right: -4.2666666667%;
}
.main .movie_area .deco li:nth-child(6) {
  width: 10.6666666667%;
  top: -1.4rem;
  right: 10.6666666667%;
}
.main .movie_area .deco li:nth-child(7) {
  width: 10.6666666667%;
  top: 22.6rem;
  left: -6.4%;
}
.main .movie_area .deco li:nth-child(8) {
  width: 10.6666666667%;
  bottom: 8rem;
  right: -6.4%;
}
.main .movie_area .deco li:nth-child(9) {
  width: 5.3333333333%;
  top: -4rem;
  right: -6.4%;
}
.main .movie_area .deco li:nth-child(10) {
  width: 5.3333333333%;
  top: -1.6rem;
  right: 2.1333333333%;
}
@media screen and (min-width: 768px) {
  .main .inner {
    margin: 0 auto;
    position: relative;
    z-index: 3;
  }
}
.main .copy {
  margin-bottom: 3.2rem;
  font-size: 3rem;
  font-family: "Luckiest Guy", cursive;
  line-height: 1.3;
  display: block;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .main .copy {
    font-size: 4rem;
  }
}
.main .lead {
  font-size: 1.3rem;
  line-height: 2;
  display: block;
  text-align: center;
}
.main .page_navi_area {
  width: 100vw;
  margin: 11.2rem calc(50% - 50vw) 0;
  background: #335643;
  position: relative;
}
@media screen and (min-width: 768px) {
  .main .page_navi_area {
    width: 100%;
    margin: 11.2rem 0 0 0;
    border-radius: 0 0 1.6rem 1.6rem;
  }
}
.main .page_navi_area:before {
  width: 100vw;
  padding-top: 18.9333333333%;
  display: inline-block;
  content: "";
  background-image: url(../images/lineup_top.png);
  background-size: cover;
  position: absolute;
  z-index: 1;
  bottom: 100%;
}
@media screen and (min-width: 768px) {
  .main .page_navi_area:before {
    width: 100%;
  }
}
.main .page_navi_area h2 {
  width: 14.4rem;
  margin: 0 auto;
  position: absolute;
  z-index: 4;
  right: 0;
  left: 0;
  top: -2.2rem;
}
.main .page_navi_area ul.page_navi {
  margin: 0 auto;
  padding: 5.6rem 1.6rem 11.2rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.6rem;
}
@media screen and (min-width: 768px) {
  .main .page_navi_area ul.page_navi {
    padding: 5.6rem 1.6rem 6.4rem;
  }
}
.main .page_navi_area ul.page_navi li {
  width: calc((100% - 1.6rem) / 2);
  padding: 0;
  position: relative;
  z-index: 2;
}
.main .page_navi_area ul.page_navi li a {
  display: block;
  border-radius: 1.6rem;
  background: #294A38;
  overflow: hidden;
  color: #F3F0EA;
}
.main .page_navi_area ul.page_navi li a figure {
  width: 100%;
}
.main .page_navi_area ul.page_navi li a div {
  padding: 1.6rem 1.4rem;
  line-height: 100%;
  text-align: center;
}
.main .page_navi_area ul.page_navi li a div .en {
  margin-bottom: 0.4rem;
  font-size: 1.6rem;
  font-family: "Luckiest Guy", cursive;
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 1;
}
.main .page_navi_area ul.page_navi li a div .jp {
  font-size: 1rem;
  line-height: 1;
  font-weight: 700;
}
.main .page_navi_area ul.page_navi li .date {
  padding: 0.4rem 0.8rem;
  background-color: #D8AF5A;
  color: #335643;
  border: solid 1px #335643;
  border-radius: 0.8rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.4rem;
  position: absolute;
  left: -0.4rem;
  top: -0.8rem;
  font-weight: 700;
  line-height: 1;
}
.main .page_navi_area ul.page_navi li .date .date_1 {
  font-size: 1.6rem;
}
.main .page_navi_area ul.page_navi li .date .date_2 {
  font-size: 1rem;
}
.main .page_navi_area .txt {
  font-size: 1rem;
  position: absolute;
  bottom: 7.2rem;
  left: 1.6rem;
}
@media screen and (min-width: 768px) {
  .main .page_navi_area .txt {
    bottom: 1.6rem;
  }
}
.main .page_navi_area .lineup_deco {
  width: 12rem;
  position: absolute;
  bottom: 12.4rem;
  right: 3.6rem;
}
@media screen and (min-width: 768px) {
  .main .page_navi_area .lineup_deco {
    width: 15rem;
    bottom: -1.6rem;
    right: -2.4rem;
  }
}
.main .marquee {
  padding-top: 3.2rem;
  position: absolute;
  bottom: 3.2rem;
  left: 0;
  z-index: 0;
}
@media screen and (min-width: 768px) {
  .main .marquee {
    padding-top: 6.4rem;
    bottom: 8.8rem;
  }
}
.main .marquee__inner span {
  padding: 0 1.6rem;
  font-size: 6.4rem;
  font-family: "Luckiest Guy", cursive;
  color: transparent;
  -webkit-text-stroke: 0.05rem #EAE0D1;
  opacity: 0.3;
}
@media screen and (min-width: 768px) {
  .main .marquee__inner span {
    font-size: 9.6rem;
  }
}

/*-------------------------------
item
--------------------------------- */
section.item {
  width: 100%;
  margin: 0 auto;
  padding: 0;
}
section.item article {
  padding: 8rem 1.6rem 9.6rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  section.item article {
    padding: 11.2rem 7.2rem 12rem;
  }
}
section.item article:before {
  width: 100vw;
  margin: 0 calc(50% - 50vw);
  padding-top: 6.4%;
  display: inline-block;
  content: "";
  background-size: cover;
  position: absolute;
  z-index: 3;
  bottom: calc(100% - 0.1rem);
  left: 0;
}
section.item article:nth-child(odd) {
  background: #EAE0D1;
}
section.item article:nth-child(odd):before {
  background-image: url(../images/wave_1.png);
}
@media screen and (min-width: 768px) {
  section.item article:nth-child(odd) .flex {
    display: flex;
    gap: 7.2rem;
    align-items: center;
  }
}
section.item article:nth-child(even) {
  background: #F3F0EA;
}
section.item article:nth-child(even):before {
  background-image: url(../images/wave_2.png);
}
@media screen and (min-width: 768px) {
  section.item article:nth-child(even) .flex {
    display: flex;
    gap: 6.4rem;
    align-items: center;
    flex-direction: row-reverse;
  }
}
section.item article .deco {
  position: absolute;
  z-index: 3;
}
section.item article .item_deco_01 {
  width: 7.2rem;
  bottom: calc(100% - 5.6rem);
  left: 3.2rem;
  transform: rotate(-15deg);
}
@media screen and (min-width: 768px) {
  section.item article .item_deco_01 {
    width: 10.8rem;
  }
}
section.item article .item_deco_02 {
  width: 9.6rem;
  bottom: calc(100% - 5.6rem);
  right: 6.4rem;
}
@media screen and (min-width: 768px) {
  section.item article .item_deco_02 {
    width: 14.4rem;
  }
}
section.item article .item_deco_03 {
  width: 5.4rem;
  bottom: calc(100% - 5.6rem);
  left: 3.2rem;
}
@media screen and (min-width: 768px) {
  section.item article .item_deco_03 {
    width: 8.1rem;
  }
}
section.item article .item_deco_04 {
  width: 6.2rem;
  bottom: calc(100% - 4.2rem);
  right: 3.2rem;
}
@media screen and (min-width: 768px) {
  section.item article .item_deco_04 {
    width: 9.3rem;
  }
}
section.item article .item_deco_05 {
  width: 9.6rem;
  bottom: calc(100% - 3.6rem);
  left: 1.6rem;
}
@media screen and (min-width: 768px) {
  section.item article .item_deco_05 {
    width: 14.4rem;
  }
}
section.item article .item_deco_06 {
  width: 11.2rem;
  bottom: calc(100% - 7.6rem);
  right: 2.4rem;
}
@media screen and (min-width: 768px) {
  section.item article .item_deco_06 {
    width: 16.8rem;
  }
}
section.item article .item_deco_07 {
  width: 8.2rem;
  bottom: calc(100% - 3.6rem);
  left: 3.2rem;
}
@media screen and (min-width: 768px) {
  section.item article .item_deco_07 {
    width: 12.3rem;
  }
}
section.item article .inner {
  margin: auto;
  position: relative;
  /* item_list_area */
  /* weblimited */
  /* 矢印ボタンの基本 */
  /* 左矢印 */
  /* 右矢印 */
  /* アイコンサイズ */
}
@media screen and (min-width: 768px) {
  section.item article .inner {
    max-width: 1440px;
  }
}
@media screen and (min-width: 768px) {
  section.item article .inner .flex {
    margin-bottom: 8.4rem;
  }
}
section.item article .inner .flex .detail {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media screen and (min-width: 768px) {
  section.item article .inner .flex .detail {
    width: 40%;
    margin-bottom: 0;
  }
}
section.item article .inner .flex .detail .date {
  width: 16rem;
  margin: 0 auto 1.6rem;
  padding: 0.4rem 0.8rem;
  color: #A22C39;
  border: solid 1px #A22C39;
  border-radius: 0.8rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.4rem;
  font-weight: 700;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  section.item article .inner .flex .detail .date {
    margin: 0 auto 1.6rem 0;
  }
}
section.item article .inner .flex .detail .date .date_1 {
  font-size: 1.6rem;
}
section.item article .inner .flex .detail .date .date_2 {
  font-size: 1rem;
}
section.item article .inner .flex .detail h2 {
  margin-bottom: 1.6rem;
  color: #A22C39;
  text-align: center;
}
@media screen and (min-width: 768px) {
  section.item article .inner .flex .detail h2 {
    text-align: left;
  }
}
section.item article .inner .flex .detail h2 .jp {
  margin-bottom: 1.6rem;
  font-size: 1.6rem;
  font-weight: 900;
  line-height: 100%;
  letter-spacing: 0.2em;
}
section.item article .inner .flex .detail h2 .en {
  font-size: 4.8rem;
  font-family: "Luckiest Guy", cursive;
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 1;
}
section.item article .inner .flex .detail .txt {
  margin-bottom: 1.6rem;
  font-size: 1.4rem;
  line-height: 2;
  display: block;
  white-space: pre-line;
}
section.item article .inner .flex .category_img {
  position: relative;
  width: 100vw;
  margin-left: -1.6rem;
  margin-bottom: 3.2rem;
  overflow: hidden;
  list-style: none;
}
@media screen and (min-width: 768px) {
  section.item article .inner .flex .category_img {
    width: 60%;
    margin-bottom: 0;
    border-radius: 1.6rem;
    overflow: hidden;
    background: #EEEAE1;
  }
}
section.item article .inner .flex .category_img li {
  position: static;
  opacity: 1;
  transition: none;
}
section.item article .inner .flex .category_img li img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
section.item article .inner .item_list_area {
  width: 100vw;
  margin: 0 calc(50% - 50vw) 5.6rem;
  padding: 0 1.6rem;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
}
@media screen and (min-width: 768px) {
  section.item article .inner .item_list_area {
    margin-bottom: 8.4rem;
  }
}
section.item article .inner .item_list_area .item_list {
  width: -moz-max-content;
  width: max-content;
  padding: 0;
  margin: 0 auto;
  display: flex;
  gap: 1.6rem;
}
section.item article .inner .item_list_area .item_list li {
  width: 14rem;
  flex: 0 0 auto;
}
section.item article .inner .item_list_area .item_list li a {
  display: block;
}
section.item article .inner .item_list_area .item_list li a figure {
  margin-bottom: 0.8rem;
  border-radius: 0.8rem;
  overflow: hidden;
}
section.item article .inner .item_list_area .item_list li a .credit {
  text-align: center;
}
section.item article .inner .item_list_area .item_list li a .credit .name {
  line-height: 1.5;
  font-size: 1.2rem;
  margin-bottom: 0.4rem;
}
section.item article .inner .item_list_area .item_list li a .credit .price {
  line-height: 1;
  font-size: 1.4rem;
}
section.item article .inner .item_list_area .item_list li a .credit .price span {
  font-size: 1rem;
}
section.item article .inner .item_list_area .item_list li a .credit .txt {
  margin-top: 0.4rem;
  font-size: 1rem;
}
section.item article .inner .weblimited {
  margin: 5.6rem auto;
  text-align: center;
}
section.item article .inner .weblimited h3 {
  margin-bottom: 1.6rem;
  font-family: "Luckiest Guy", cursive;
  font-size: 3.2rem;
  color: #A22C39;
}
section.item article .inner .weblimited h3 span {
  font-family: ryo-gothic-plusn, sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  display: block;
}
section.item article .inner .weblimited ul li a {
  margin: 0 auto;
  border-radius: 1.6rem;
  background: #fff;
  overflow: hidden;
  padding: 0;
  display: flex;
  align-items: center;
}
@media screen and (min-width: 768px) {
  section.item article .inner .weblimited ul li a {
    width: 36rem;
  }
}
section.item article .inner .weblimited ul li a figure {
  width: 50%;
}
section.item article .inner .weblimited ul li a .limited-slider {
  width: 50%;
}
section.item article .inner .weblimited ul li a .limited-slider img {
  width: 100%;
  display: block;
}
section.item article .inner .weblimited ul li a .limited-slider .slick-slide {
  display: flex !important;
}
section.item article .inner .weblimited ul li a .credit {
  width: 50%;
  padding: 1.6rem;
  line-height: 1.5;
}
section.item article .inner .weblimited ul li a .credit .txt {
  font-size: 0.9rem;
  margin-bottom: 1rem;
  text-align: left;
}
@media screen and (min-width: 768px) {
  section.item article .inner .weblimited ul li a .credit .txt br {
    display: none;
  }
}
section.item article .inner .weblimited ul li a .credit .name {
  font-size: 1.1rem;
  margin-bottom: 0.4rem;
}
@media screen and (min-width: 768px) {
  section.item article .inner .weblimited ul li a .credit .name br {
    display: none;
  }
}
section.item article .inner .weblimited ul li a .credit .price {
  font-size: 1.4rem;
}
section.item article .inner .weblimited ul li a .credit .price span {
  font-size: 1rem;
}
@media screen and (min-width: 768px) {
  section.item article .inner .weblimited .slick-slider {
    width: 42rem;
    margin: 0 auto;
  }
}
section.item article .inner .weblimited .slick-prev,
section.item article .inner .weblimited .slick-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  background: #A22C39;
  border: none;
  width: 3.2rem;
  height: 3.2rem;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}
section.item article .inner .weblimited .slick-prev {
  left: -2.4rem;
}
section.item article .inner .weblimited .slick-next {
  right: -2.4rem;
}
section.item article .inner .weblimited .material-icons {
  font-size: 2.4rem;
}
section.item article .inner .slick-prev:before,
section.item article .inner .slick-next:before {
  content: none;
  /* ← これで完全に消える */
}
section.item article .inner .slick-dots {
  bottom: -3.2rem;
}
section.item article .inner .slick-dots li {
  position: relative;
  display: inline-block;
  width: 1.6rem;
  height: 1.6rem;
  margin: 0;
  padding: 0;
  cursor: pointer;
}
section.item article .inner .slick-dots li button:before {
  color: #3C3C3E;
}
section.item article .inner .slick-dots li.slick-active button:before {
  color: #A22C39;
  font-size: 0.8rem;
}
@media screen and (max-width: 767px) {
  section.item article .inner .weblimited .slick-prev,
  section.item article .inner .weblimited .slick-next {
    display: none !important;
  }
}

.footer_navi {
  width: 100%;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  -moz-column-gap: 0.4rem;
       column-gap: 0.4rem;
  position: fixed;
  bottom: -16rem;
  z-index: 5;
  transition: bottom 0.3s ease;
}
.footer_navi li a {
  width: 7.2rem;
  height: 7.2rem;
  padding: 1.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #F3F0EA;
  border: dotted 1px #978560;
  border-radius: 100vh;
  font-size: 1.1rem;
  line-height: 1.3;
  font-weight: 700;
  letter-spacing: 0;
  text-align: center;
  color: #A22C39;
}
.footer_navi li a.active {
  background: #A22C39;
  color: #F3F0EA;
}
.footer_navi.show {
  bottom: 1.6rem;
}

footer {
  width: 100%;
  padding: 9.6rem 1.6rem;
  text-align: center;
  background: #335643;
  color: #F3F0EA;
  position: relative;
}
footer:before {
  width: 100vw;
  margin: 0 calc(50% - 50vw);
  padding-top: 6.4%;
  display: inline-block;
  content: "";
  background-image: url(../images/wave_3.png);
  background-size: cover;
  position: absolute;
  z-index: 3;
  bottom: calc(100% - 0.1rem);
  left: 0;
}
footer .f_logo {
  width: 12rem;
  margin: 0 auto;
}
footer .f_logo a {
  margin: 0 auto;
  padding: 0;
  display: block;
}
footer .f_logo a svg path {
  fill: #F3F0EA;
}
footer .f_icon {
  margin: 3.2rem auto 1.6rem;
  padding: 0;
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
footer .f_icon li {
  margin: 0 1.2rem;
  padding: 0;
}
footer .f_icon li i {
  margin: 0;
  font-size: 2rem;
  color: #F3F0EA;
}
footer small {
  text-align: center;
  font-size: 1rem;
}

/*------------------------------
animation
-------------------------------*/
.invisible {
  transition: opacity 0.5s ease;
  opacity: 0;
}

.visible {
  transition: opacity 0.5s ease;
  opacity: 1;
}/*# sourceMappingURL=style.css.map */