@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Pacifico&display=swap");
@-webkit-keyframes opacity {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes opacity {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@-webkit-keyframes head {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes head {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@-webkit-keyframes chara {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes chara {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

/*******************************************************************/
@media only screen and (min-width: 961px) {
  .is-sp {
    display: none;
  }
  .is-pc {
    display: block;
  }
}

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

body {
  position: relative;
  font-family: YakuHanJP, "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Noto Sans JP", Meiryo, sans-serif;
  background: #ffead2;
  z-index: -1;
  font-weight: 500;
}

@media only screen and (max-width: 960px) {
  body {
    font-size: 13px;
  }
}

@media only screen and (min-width: 961px) {
  body {
    min-width: 1100px;
  }
}

a {
  color: #760000;
  text-decoration: underline;
}

/*******************************************************************/
.wrapper {
  background: url(../img/bg.jpg) top center;
  background-attachment: fixed;
  -webkit-animation: opacity 1s cubic-bezier(0.5, 1, 0.89, 1) 0.2s forwards;
  animation: opacity 1s cubic-bezier(0.5, 1, 0.89, 1) 0.2s forwards;
  opacity: 0;
  z-index: 1;
}

@media only screen and (max-width: 960px) {
  .wrapper {
    background-size: 250px;
  }
}

/*******************************************************************/
.deco_01 {
  position: fixed;
  top: 0;
  left: 0;
  width: 35%;
  z-index: 2;
}

@media only screen and (max-width: 960px) {
  .deco_01 {
    width: 45%;
  }
}

.deco_02 {
  position: fixed;
  top: 0;
  right: 0;
  width: 35%;
  z-index: 2;
}

@media only screen and (max-width: 960px) {
  .deco_02 {
    width: 45%;
  }
}

.hero {
  position: relative;
  padding: 100px 0 15%;
}

@media only screen and (max-width: 960px) {
  .hero {
    padding: 60px 0 20%;
  }
}

.hero .logo {
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 40%;
}

@media only screen and (max-width: 960px) {
  .hero .logo {
    width: 80%;
  }
}

.hero .chara {
  width: 80%;
  margin: 0 auto;
}

@media only screen and (max-width: 960px) {
  .hero .chara {
    width: 100%;
  }
}

.contents {
  width: 1000px;
  margin: 130px auto 0;
}

@media only screen and (max-width: 960px) {
  .contents {
    width: 90%;
    margin: 80px auto 0;
  }
}

.contents .ttl {
  font-family: "Pacifico", cursive !important;
  color: #4f2310;
  font-size: 80px;
  font-weight: 400;
  font-style: normal;
}

@media only screen and (max-width: 960px) {
  .contents .ttl {
    font-size: 50px;
  }
}

.about {
  position: relative;
  background: url(../img/bg_contents.jpg) top center;
  border-radius: 30px;
  padding: 120px 60px 100px;
  -webkit-box-shadow: rgba(0, 0, 0, 0.2) 0px 0px 20px;
  box-shadow: rgba(0, 0, 0, 0.2) 0px 0px 20px;
}

@media only screen and (max-width: 960px) {
  .about {
    border-radius: 20px;
    padding: 20% 8% 12%;
  }
}

.about::before {
  content: "";
  position: absolute;
  top: 15px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  border: 2px solid #845029;
  border-radius: 20px;
  pointer-events: none;
}

@media only screen and (max-width: 960px) {
  .about::before {
    top: 10px;
    right: 10px;
    bottom: 10px;
    left: 10px;
    border-radius: 15px;
  }
}

.about .ttl {
  position: absolute;
  left: -30px;
  top: -10px;
  -webkit-transform: rotate(-10deg);
  transform: rotate(-10deg);
  text-shadow: 4px 4px 1px #fff8f0, -4px 4px 1px #fff8f0, 4px -4px 1px #fff8f0, -4px -4px 1px #fff8f0, 4px 0px 1px #fff8f0, 0px 4px 1px #fff8f0, -4px 0px 1px #fff8f0, 0px -4px 1px #fff8f0;
}

@media only screen and (max-width: 960px) {
  .about .ttl {
    left: -5.5%;
    top: -5px;
  }
}

.about_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 20px;
  margin-top: 30px;
}

@media only screen and (max-width: 960px) {
  .about_item {
    display: block;
    font-size: 15px;
    margin-top: 25px;
  }
}

.about_item:first-child {
  margin-top: 0;
}

.about_item dt {
  width: 220px;
  color: #97745d;
  position: relative;
  padding-left: 30px;
}

@media only screen and (max-width: 960px) {
  .about_item dt {
    width: calc(100% - 25px);
    padding-left: 25px;
  }
}

.about_item dt::before {
  content: "";
  background: url(../img/icon.png) no-repeat;
  background-size: contain;
  width: 25px;
  height: 25px;
  position: absolute;
  top: -2px;
  left: 0;
}

@media only screen and (max-width: 960px) {
  .about_item dt::before {
    width: 20px;
    height: 20px;
  }
}

.about_item dd {
  width: calc(100% - 250px);
  line-height: 1.5em;
}

.about_item dd .txt_m {
  margin-top: 10px;
  font-size: 15px;
}

@media only screen and (max-width: 960px) {
  .about_item dd {
    width: 100%;
    margin-top: 15px;
    line-height: 1.5em;
  }
  .about_item dd .txt_m {
    margin-top: 5px;
    font-size: 13px;
  }
}

.ticket_ttl_sub {
  margin-top: 20px;
  margin-left: 45px;
}

@media only screen and (max-width: 960px) {
  .ticket_ttl_sub {
    line-height: 1.5em;
    margin-left: 20px;
  }
}

.about .contactus {
  margin-top: 45px;
}

@media only screen and (max-width: 960px) {
  .about .contactus {
    margin-top: 30px;
  }
}

.about .contactus > dl {
  margin-top: 25px;
}

@media only screen and (max-width: 960px) {
  .about .contactus > dl {
    margin-top: 20px;
  }
}

.about .contactus > dl:first-child {
  margin-top: 0;
}

.about .contactus > dl dt {
  color: #97745d;
}

.about .contactus > dl dd {
  margin-top: 10px;
  line-height: 1.5em;
}

@media only screen and (max-width: 960px) {
  .about .contactus > dl dd {
    margin-top: 5px;
  }
}

.ticket {
  position: relative;
  background: url(../img/bg_contents.jpg) top center;
  border-radius: 30px;
  padding: 120px 60px 100px;
  -webkit-box-shadow: rgba(0, 0, 0, 0.2) 0px 0px 20px;
  box-shadow: rgba(0, 0, 0, 0.2) 0px 0px 20px;
}

@media only screen and (max-width: 960px) {
  .ticket {
    border-radius: 20px;
    padding: 20% 8% 12%;
  }
}

.ticket::before {
  content: "";
  position: absolute;
  top: 15px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  border: 2px solid #845029;
  border-radius: 20px;
  pointer-events: none;
}

@media only screen and (max-width: 960px) {
  .ticket::before {
    top: 10px;
    right: 10px;
    bottom: 10px;
    left: 10px;
    border-radius: 15px;
  }
}

.ticket .ttl {
  position: absolute;
  left: -30px;
  top: -10px;
  -webkit-transform: rotate(-10deg);
  transform: rotate(-10deg);
  text-shadow: 4px 4px 1px #fff8f0, -4px 4px 1px #fff8f0, 4px -4px 1px #fff8f0, -4px -4px 1px #fff8f0, 4px 0px 1px #fff8f0, 0px 4px 1px #fff8f0, -4px 0px 1px #fff8f0, 0px -4px 1px #fff8f0;
}

@media only screen and (max-width: 960px) {
  .ticket .ttl {
    left: -5.5%;
    top: -5px;
  }
}

.ticket .ticket_wrap h3 {
  position: relative;
  color: #97745d;
  font-size: 25px;
  padding-left: 44px;
}

@media only screen and (max-width: 960px) {
  .ticket .ticket_wrap h3 {
    font-size: 18px;
    padding-left: 24px;
  }
}

.ticket .ticket_wrap h3::before {
  content: "";
  background: url(../img/icon.png) no-repeat;
  background-size: contain;
  width: 30px;
  height: 30px;
  position: absolute;
  top: -2px;
  left: 0;
}

@media only screen and (max-width: 960px) {
  .ticket .ticket_wrap h3::before {
    width: 20px;
    height: 20px;
    top: 0px;
  }
}

.ticket .ticket_wrap > dl {
  font-size: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 30px;
  margin-left: 45px;
}

@media only screen and (max-width: 960px) {
  .ticket .ticket_wrap > dl {
    display: block;
    font-size: 15px;
    margin-left: 25px;
    margin-top: 20px;
  }
}

.ticket .ticket_wrap > dl dt {
  color: #97745d;
  width: 220px;
}

.ticket .ticket_wrap > dl dt span {
  font-size: 13px;
}

.ticket .ticket_wrap > dl dd {
  line-height: 1.5em;
}
    
@media only screen and (max-width: 960px) {
  .ticket .ticket_wrap > dl dd {
    margin-top: 10px;
  }
}

.ticket .note {
  margin-top: 40px;
  font-size: 13px;
}

@media only screen and (max-width: 960px) {
  .ticket .note {
    font-size: 11px;
  }
}

.ticket .note li {
  text-indent: -1em;
  padding-left: 1em;
  margin-top: 2px;
  line-height: 1.4em;
}

.ticket .note li:first-child {
  margin-top: 0;
}

.ticket .line{
  border-top: solid 1px #97745d;
  padding-top: 50px;
  margin-top: 50px;
}

@media only screen and (max-width: 960px) {
  .ticket .line{
    padding-top: 40px;
    margin-top: 40px;
  }
}

@media only screen and (max-width: 960px) {
  .note .cap{
    color: #97745d;
    margin: 15px 0 5px !important;
  }
}

.ticket_wrap.end{ position: relative;}
.ticket_wrap.end::before{
  content: "";
  position: absolute;
  top: -2%;
  left: -1%;
  width: 102%;
  height: 104%;
  background: #97745d;
  opacity: 0.8;
  z-index: 1;
}
.ticket_wrap.end::after {
  content: "販売終了";
  color: #fff;
  font-size: 50px;
  line-height: 1em;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 1;
}
@media only screen and (max-width: 960px) {
  .ticket_wrap.end::after {
    font-size: 25px;
  }
}


/************************************************************/
.goods_ttl_sub {
  margin-top: 20px;
  margin-left: 45px;
}

@media only screen and (max-width: 960px) {
  .goods_ttl_sub {
    line-height: 1.5em;
    margin-left: 20px;
  }
}

.goods {
  position: relative;
  background: url(../img/bg_contents.jpg) top center;
  border-radius: 30px;
  padding: 120px 60px 100px;
  -webkit-box-shadow: rgba(0, 0, 0, 0.2) 0px 0px 20px;
  box-shadow: rgba(0, 0, 0, 0.2) 0px 0px 20px;
}

@media only screen and (max-width: 960px) {
  .goods {
    border-radius: 20px;
    padding: 20% 8% 12%;
  }
}

.goods::before {
  content: "";
  position: absolute;
  top: 15px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  border: 2px solid #845029;
  border-radius: 20px;
  pointer-events: none;
}

@media only screen and (max-width: 960px) {
  .goods::before {
    top: 10px;
    right: 10px;
    bottom: 10px;
    left: 10px;
    border-radius: 15px;
  }
}

.goods .ttl {
  position: absolute;
  left: -30px;
  top: -10px;
  -webkit-transform: rotate(-10deg);
  transform: rotate(-10deg);
  text-shadow: 4px 4px 1px #fff8f0, -4px 4px 1px #fff8f0, 4px -4px 1px #fff8f0, -4px -4px 1px #fff8f0, 4px 0px 1px #fff8f0, 0px 4px 1px #fff8f0, -4px 0px 1px #fff8f0, 0px -4px 1px #fff8f0;
}

@media only screen and (max-width: 960px) {
  .goods .ttl {
    left: -5.5%;
    top: -5px;
  }
}

.p-goods_data__header {
  background: #fff;
}

.p-goods__container {
  width: 100%;
  max-width: 100rem;
  display: block;
  position: relative;
  margin: 0 auto;
}

.p-goods__header {
  display: block;
  position: relative;
  margin-bottom: 4.7rem;
}

@media screen and (max-width: 960px) {
  .p-goods__header {
    margin-bottom: 2.4rem;
  }
}

.p-goods__title {
  display: block;
  position: relative;
}

.p-goods__title-main {
  display: block;
  position: relative;
  font-size: 6.8rem;
  letter-spacing: 0.5rem;
  text-align: center;
  font-family: modesto-text, "Zen Kaku Gothic Antique", -apple-system, BlinkMacSystemFont, "Helvetica Neue", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
}

@media screen and (max-width: 960px) {
  .p-goods__title-main {
    font-size: 5.2rem;
    letter-spacing: 0.3rem;
  }
}

.p-goods__title-main:first-letter {
  color: var(--color-teal-dark);
}

.p-goods__title-sub {
  display: block;
  position: relative;
  text-align: center;
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.6rem;
}

@media screen and (max-width: 960px) {
  .p-goods__title-sub {
    margin-top: -0.2rem;
    font-size: 1.3rem;
    letter-spacing: 0.4rem;
  }
}

.p-goods__inner {
  display: block;
  position: relative;
  -webkit-transform: translateY(2rem);
          transform: translateY(2rem);
}

.p-goods__list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
      grid-template-columns: repeat(3, 1fr);
  gap: 6rem 1.5rem;
  position: relative;
  border-top: #845029 solid 1px;
  border-bottom: #845029 solid 1px;
  padding: 80px 0;
}

@media screen and (max-width: 960px) {
  .p-goods__list {
    padding: 40px 0;
  }
}

@media screen and (max-width: 960px) {
  .p-goods__list {
    -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
    gap: 3rem 1rem;
  }
}

.p-goods__list-item {
  min-width: 0;
  display: block;
  position: relative;
}

.p-goods_data {
  display: block;
  position: relative;
}

.p-goods_data__thumb {
  width: 100%;
  display: block;
  position: relative;
  margin-bottom: 2rem;
  overflow: hidden;
}

.p-goods_data__thumb::after {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  border: 1px solid var(--color-gray);
  pointer-events: none;
}

@media screen and (max-width: 960px) {
  .p-goods_data__thumb {
    margin-bottom: 1rem;
  }
}

.p-goods_data__title {
  display: block;
  position: relative;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.5;
}

@media screen and (max-width: 960px) {
  .p-goods_data__title {
    font-size: 1.4rem;
    letter-spacing: 0;
    line-height: 1.4;
  }
}

.p-goods_data__price {
  display: block;
  position: relative;
  margin-top: 1.4rem;
  margin-bottom: 1.2rem;
  font-size: 18px;
}

@media screen and (max-width: 960px) {
  .p-goods_data__price {
    margin-top: 0.6rem;
    margin-bottom: 0.5rem;
    font-size: 13px;
    letter-spacing: 0.05rem;
  }
}

.p-goods_data__price small {
  font-size: 13px;
  vertical-align: baseline;
}

.p-goods_data__description {
  display: block;
  position: relative;
  margin-top: 1.3rem;
  font-size: 1.3rem;
  letter-spacing: 0.05rem;
  font-weight: 500;
  line-height: 1.5;
}

@media screen and (max-width: 960px) {
  .p-goods_data__description {
    margin-top: 1rem;
    font-size: 1.1rem;
  }
}

.p-goods_data__info {
  display: block;
  position: relative;
  margin-top: 0.8rem;
  font-size: 13px;
  letter-spacing: 0.05rem;
  font-weight: 500;
  line-height: 1.5;
}

@media screen and (max-width: 960px) {
  .p-goods_data__info {
    margin-top: 0.2rem;
    font-size: 11px;
  }
}

.p-goods_data__limit {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: block;
  position: relative;
  padding: 0.25rem 0.8rem;
  margin-top: 1.2rem;
  font-size: 1.2rem;
  color: var(--color-teal);
  background: var(--color-black);
}

@media screen and (max-width: 960px) {
  .p-goods_data__limit {
    margin-top: 0.65rem;
    font-size: 1rem;
  }
}

.p-goods_data_thumb {
  display: block;
  position: relative;
}

.p-goods_data_thumb__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  position: relative;
}

.p-goods_data_thumb__list-item {
  width: 100%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: block;
  position: relative;
}

.p-goods_data_thumb__img {
  width: 100%;
  padding-top: 100%;
  display: block;
  position: relative;
  background: var(--color-white);
}

.p-goods_data_thumb__img img {
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  -o-object-fit: contain;
  object-fit: contain;
}

.p-goods_data_thumb__pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  position: absolute;
  bottom: 1.2rem;
  left: 1.2rem;
  gap: 0.6rem;
  z-index: 1;
}

@media screen and (max-width: 960px) {
  .p-goods_data_thumb__pagination {
    bottom: 0.8rem;
    left: 0.8rem;
    gap: 0.35rem;
  }
}

.p-goods_data_thumb__pagination-item {
  width: 1rem;
  height: 1rem;
  display: block;
  position: relative;
  border-radius: 50%;
  -webkit-transition: background-color 0.3s var(--ease_out);
  transition: background-color 0.3s var(--ease_out);
}

@media screen and (max-width: 960px) {
  .p-goods_data_thumb__pagination-item {
    width: 0.8rem;
    height: 0.8rem;
  }
}

.p-goods_data_thumb__pagination-item.is-current {
  background-color: var(--color-teal-dark);
}

.p-goods_data_thumb__pagination-item::after {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  border: 1.5px solid var(--color-teal-dark);
}

@media screen and (max-width: 960px) {
  .p-goods_data_thumb__pagination-item::after {
    border-width: 1px;
  }
}

.goods_info h3 {
  position: relative;
  color: #97745d;
  font-size: 25px;
  padding-left: 44px;
}

@media only screen and (max-width: 960px) {
  .goods_info h3 {
    font-size: 18px;
    padding-left: 24px;
  }
}

.goods_info h3::before {
  content: "";
  background: url(../img/icon.png) no-repeat;
  background-size: contain;
  width: 30px;
  height: 30px;
  position: absolute;
  top: -2px;
  left: 0;
}

@media only screen and (max-width: 960px) {
  .goods_info h3::before {
    width: 20px;
    height: 20px;
    top: 0px;
  }
}

.goods_info .goods_info_text {
  margin: 20px 0 40px 45px;
  font-size: 20px;
}

@media only screen and (max-width: 960px) {
  .goods_info .goods_info_text {
    margin-left: 20px;
    font-size: 15px;
    margin: 15px 0 30px 25px;
  }
}

.goods_info .goods_info_item {
  font-size: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 30px;
  margin-left: 45px;
  font-weight: 600;
}

@media only screen and (max-width: 960px) {
  .goods_info .goods_info_item {
    display: block;
    font-size: 15px;
    margin-left: 25px;
    margin-top: 20px;
  }
}

.goods_info dl dt {
  color: #97745d;
  width: 220px;
}

@media only screen and (max-width: 960px) {
  .goods_info dl dt {
    width: 100%;
  }
}

.goods_info dl dt span {
  font-size: 13px;
}

.goods_info dl dd {
  line-height: 1.5em;
  width: calc(100% - 220px);
}

@media only screen and (max-width: 960px) {
  .goods_info dl dd {
    width: 100%;
  }
}

@media only screen and (max-width: 960px) {
  .goods_info dl dd {
    margin-top: 10px;
  }
}

.goods_info .info_item-note {
  font-size: 15px;
  margin-top: 10px;
  line-height: 1.5em;
  font-weight: 500;
}

@media only screen and (max-width: 960px) {
  .goods_info .info_item-note {
    font-size: 11px;
  }
}

.goods_info .info_item-note li {
  text-indent: -1em;
  padding-left: 1em;
}

.goods_info .info_item-note.indent-none li {
  text-indent: 0;
  padding-left: 0;
  margin-top: 5px;
}

.goods_info .note {
  margin-top: 50px;
  font-size: 13px;
  line-height: 1.4em;
}

@media only screen and (max-width: 960px) {
  .goods_info .note {
    font-size: 11px;
    margin-top: 40px;
  }
}

.goods_info .note li {
  text-indent: -1em;
  padding-left: 1em;
  margin-top: 2px;
}

.goods_info .note li.cap {
  color: #760000;
  margin-bottom: 5px;
  font-size: 15px;
  font-weight: 600;
}

.goods_info .note li:first-child {
  margin-top: 0;
}

.goods_info.kaijo {
  margin-bottom: 80px;
}

@media only screen and (max-width: 960px) {
  .goods_info.kaijo {
    margin-bottom: 60px;
  }
}

.goods_info.pkg {
  margin-top: 80px;
}

@media only screen and (max-width: 960px) {
  .goods_info.pkg {
    margin-top: 60px;
  }
}

.goods_info.pkg .goods_info_item {
  display: block;
}

.goods_info.pkg .goods_info_item dt {
  width: 100%;
  margin-bottom: 10px;
}

.goods_info.pkg .goods_info_item dd {
  width: 100%;
  font-size: 18px;
}

@media only screen and (max-width: 960px) {
  .goods_info.pkg .goods_info_item dd {
    font-size: 13px;
  }
}

.goods_info.pkg .goods_info_item .sub {
  font-size: 15px;
  margin-top: 10px;
  font-weight: 500;
}

@media only screen and (max-width: 960px) {
  .goods_info.pkg .goods_info_item .sub {
    font-size: 11px;
  }
}

.goods_info.pkg .goods_info_item .pkg_special {
  width: 50%;
  margin-top: 20px;
}

@media only screen and (max-width: 960px) {
  .goods_info.pkg .goods_info_item .pkg_special {
    width: 100%;
  }
}

/***********************************************************/
.attention .ttl {
  font-size: 70px;
  text-align: center;
}

@media only screen and (max-width: 960px) {
  .attention .ttl {
    font-size: 40px;
  }
}

.attention .note {
  margin-top: 60px;
  font-size: 13px;
}

@media only screen and (max-width: 960px) {
  .attention .note {
    font-size: 11px;
    margin-top: 40px;
  }
}

.attention .note li {
  text-indent: -1em;
  padding-left: 1em;
  margin-top: 2px;
  line-height: 1.4em;
}

.attention .note li.cap {
  color: #760000;
  margin-bottom: 5px;
  font-size: 15px;
  font-weight: 600;
}

@media only screen and (max-width: 960px) {
  .attention .note li.cap {
    font-size: 13px;
  }
}

.attention .note li.cap.mt {
  margin-top: 20px;
}

/*******************************************************************/
.footer {
  position: relative;
  background: #4f2310;
  margin-top: 200px;
  padding: 50px;
  color: #fff;
  font-size: 11px;
  z-index: 10;
}

@media only screen and (max-width: 960px) {
  .footer {
    font-size: 10px;
    margin-top: 120px;
    padding: 12% 5%;
  }
}

.footer a {
  color: #fff;
  text-decoration: none;
}

.footer_deco-01 {
  position: absolute;
  width: 65px;
  top: -58px;
  left: 50px;
}

@media only screen and (max-width: 960px) {
  .footer_deco-01 {
    width: 40px;
    top: -36px;
    left: 20px;
  }
}

.footer_deco-02 {
  position: absolute;
  width: 120px;
  top: -117px;
  right: 50px;
}

@media only screen and (max-width: 960px) {
  .footer_deco-02 {
    width: 70px;
    top: -68px;
    right: 20px;
  }
}

@media only screen and (min-width: 961px) {
  .footer .anime {
    width: 260px;
    position: absolute;
    bottom: 50px;
    right: 50px;
    -webkit-transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  }
  .footer .anime:hover {
    -webkit-transform: scale(0.95);
    transform: scale(0.95);
  }
}

@media only screen and (max-width: 960px) {
  .footer .anime {
    position: relative;
    width: 60%;
    margin: 0 auto;
  }
}

.footer .share {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media only screen and (max-width: 960px) {
  .footer .share {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-top: 10%;
  }
}

.footer .share li {
  width: 30px;
  margin-left: 20px;
  -webkit-transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

@media only screen and (min-width: 960px) {
  .footer .share li:hover {
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
  }
}

.footer .share li:first-child {
  margin-left: 0;
}

.footer .link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 20px;
}

@media only screen and (max-width: 960px) {
  .footer .link {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-top: 10%;
  }
}

.footer .link li {
  margin-left: 10px;
  -webkit-transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

@media only screen and (min-width: 960px) {
  .footer .link li:hover {
    opacity: 0.6;
  }
}

.footer .link li:first-child {
  margin-left: 0;
}

.footer .text {
  margin-top: 8px;
}

@media only screen and (max-width: 960px) {
  .footer .text {
    text-align: center;
    line-height: 1.3em;
    margin-top: 10px;
  }
}

.footer .copy {
  margin-top: 12px;
}

@media only screen and (max-width: 960px) {
  .footer .copy {
    text-align: center;
    margin-top: 15px;
  }
}
/*# sourceMappingURL=fes.css.map */