@charset "utf-8";
/* CSS Document */

/* にぎわいツール用 */

/* font メイリオ最優先 */

html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
  font-family: "Meiryo", "Hiragino Kaku Gothic ProN", "Helvetica", "arial",
    sans-serif;
}

/* titleBack　*/

/* ---- clock ---- */

.clockWrapper {
  display: none;
  position: absolute;
  top: 20px;
  right: 20px;
}

.clock {
  position: relative;
  width: 10vw;
  height: 10vw;
  border-radius: 50%;
  border: solid 2px silver;
  background: #fff;
}

.clock::after {
  content: "";
  position: absolute;
  top: calc(50% - 0.4vw);
  left: calc(50% - 0.4vw);
  border-radius: 50%;
  width: 1vw;
  height: 1vw;
  background-color: silver;
}

.dials {
  position: relative;
  width: 100%;
  height: 100%;
}

.dials > div {
  position: absolute;
  top: 0;
  left: calc(50% - 3.5px);
  width: 7px;
  height: 50%;
  transform-origin: bottom;
}

.dials > div::after {
  position: absolute;
  top: 0;
  left: 25%;
  content: "";
  width: 0.5vw;
  height: 1vw;
  background-color: silver;
}

.dials div:nth-child(1) {
  transform: rotate(30deg);
}

.dials div:nth-child(2) {
  transform: rotate(60deg);
}

.dials div:nth-child(3) {
  transform: rotate(90deg);
}

.dials div:nth-child(4) {
  transform: rotate(120deg);
}

.dials div:nth-child(5) {
  transform: rotate(150deg);
}

.dials div:nth-child(6) {
  transform: rotate(180deg);
}

.dials div:nth-child(7) {
  transform: rotate(210deg);
}

.dials div:nth-child(8) {
  transform: rotate(240deg);
}

.dials div:nth-child(9) {
  transform: rotate(270deg);
}

.dials div:nth-child(10) {
  transform: rotate(300deg);
}

.dials div:nth-child(11) {
  transform: rotate(330deg);
}

.dials div:nth-child(12) {
  transform: rotate(360deg);
}

/* 秒針 */
#second-hand {
  animation: rotation-s 60s linear infinite;
  /* 60秒かけて一周 */
  background-color: #999;
  border-radius: 2px;
  height: 0.4vw;
  /* 線幅 */
  position: absolute;
  right: calc(50% - 0.2vw);
  /* 位置調整 線幅の半分ずらす */
  top: calc(50% - 0.2vw);
  /* 位置調整 線幅の半分ずらす */
  transform-origin: calc(100% - 0.2vw) center;
  /* アニメーションの中心軸 線幅の半分ずらす */
  -webkit-transform-origin: 100% center;
  -moz-transform-origin: 100% center;
  -ms-transform-origin: 100% center;
  width: 48%;
  backface-visibility: hidden;
}

/* 分針 */
#minute-hand {
  animation: rotation-m 3600s linear infinite;
  /* 3600秒、1時間かけて一周 */
  background-color: #000;
  border-radius: 5px;
  height: 0.4vw;
  /* 線幅 */
  position: absolute;
  right: calc(50% - 0.2vw);
  /* 位置調整 線幅の半分ずらす */
  top: calc(50% - 0.2vw);
  /* 位置調整 線幅の半分ずらす */
  transform-origin: 100% center;
  /* アニメーションの中心軸 線幅の半分ずらす */
  -webkit-transform-origin: 100% center;
  -moz-transform-origin: 100% center;
  -ms-transform-origin: 100% center;
  width: 40%;
  backface-visibility: hidden;
}

/* 時針 */
#hour-hand {
  animation: rotation-h 86400s linear infinite;
  /* 86400秒、12時間かけて一周 */
  background-color: #cc3b3b;
  border-radius: 5px;
  height: 0.4vw;
  /* 線幅 */
  position: absolute;
  right: calc(50% - 0.2vw);
  /* 位置調整 線幅の半分ずらす */
  top: calc(50% - 0.2vw);
  /* 位置調整 線幅の半分ずらす */
  transform-origin: 100% center;
  /* アニメーションの中心軸 線幅の半分ずらす */
  -webkit-transform-origin: 100% center;
  -moz-transform-origin: 100% center;
  -ms-transform-origin: 100% center;
  width: 25%;
  backface-visibility: hidden;
}

/* 秒針の回転アニメーション */
@keyframes rotation-s {
  0% {
    transform: rotate(90deg);
  }

  /* 初期位置 0秒の位置 */
  100% {
    transform: rotate(450deg);
  }

  /* 初期位置 + 360deg で一周 */
}

/* 分針の回転アニメーション */
@keyframes rotation-m {
  0% {
    transform: rotate(90deg);
  }

  /* 初期位置 0分の位置 */
  100% {
    transform: rotate(450deg);
  }

  /* 初期位置 + 360deg で一周 */
}

/* 時針の回転アニメーション */
@keyframes rotation-h {
  0% {
    transform: rotate(150deg);
  }

  /* 初期位置 2時の位置 */
  100% {
    transform: rotate(510deg);
  }

  /* 初期位置 + 360deg で一周 */
}

/* ---- clock ここまで ---- */

/* 時計+テキスト titleBack05時計白枠 titleBack06時計赤枠 */

.titleBack05 .titleArea,
.titleBack06 .titleArea {
  display: block;
  width: 100%;
  margin: 0 0 10px 0;
}

.titleBack05 .titleText,
.titleBack06 .titleText {
  position: absolute;
  top: 0;
  left: 0;
  margin: 5px 0;
  height: 15.6vw;
  text-align: center;
  line-height: 15.6vw;
  font-size: 25px;
  z-index: 10000;
}

#sp.titleBack05 .titleText,
#sp.titleBack06 .titleText {
  padding-top: calc((15.6vw / 2) - 10px);
  height: auto;
  font-size: 15px;
}

.titleBack05 .titleImgWrapper,
.titleBack06 .titleImgWrapper {
  position: relative;
  height: 15.6vw;
  overflow: hidden;
  margin-bottom: 5px;
  background: #ececec;
}

.titleBack05 .updateDate,
.titleBack06 .updateDate {
  width: auto;
}

.titleBack05 .clockWrapper,
.titleBack06 .clockWrapper {
  display: block;
  top: -8px;
  right: -9px;
}

#sp.titleBack05 .clockWrapper,
#sp.titleBack06 .clockWrapper {
  top: -5px;
}

.titleBack05 .clock {
  width: 19vw;
  height: 19vw;
  border: solid 1vw silver;
  box-sizing: border-box;
}

.titleBack06 .clock {
  width: 19vw;
  height: 19vw;
  border: solid 1vw #c62300;
  box-sizing: border-box;
}

/* 時計オレンジ　時計+nigiwai_title_clock01.png */

.titleBack07 .titleArea {
  display: block;
  width: 100%;
  margin: 0 0 10px 0;
}

.titleBack07 .titleImgWrapper {
  position: relative;
  overflow: hidden;
  margin-bottom: 5px;
}

.titleBack07 .titleImg {
  width: 100%;
}

.titleBack07 .updateDate {
  width: auto;
}

.titleBack07 .titleText {
  display: none;
}

.titleBack07 .clockWrapper {
  display: block;
  top: -12px;
  left: -9px;
}

#sp.titleBack07 .clockWrapper {
  top: -5px;
  left: -4px;
}

.titleBack07 .clock {
  width: 18.5vw;
  height: 18.5vw;
  border: solid 0.6vw silver;
  box-sizing: border-box;
}

/* 時計赤　時計+nigiwai_title_clock02.png */

.titleBack08 .titleArea {
  display: block;
  width: 100%;
  margin: 0 0 10px 0;
}

.titleBack08 .titleImgWrapper {
  position: relative;
  overflow: hidden;
  margin-bottom: 5px;
}

.titleBack08 .titleImg {
  width: 100%;
}

.titleBack08 .updateDate {
  width: auto;
}

.titleBack08 .titleText {
  display: none;
}

.titleBack08 .clockWrapper {
  display: block;
  top: -8px;
  right: -9px;
}

#sp.titleBack08 .clockWrapper {
  top: -5px;
}

.titleBack08 .clock {
  width: 19vw;
  height: 19vw;
  border: solid 1.2vw #c62300;
  box-sizing: border-box;
}

/* 画像のみ 09以降 */
.titleBack09 .titleArea,
.titleBack10 .titleArea,
.titleBack11 .titleArea,
.titleBack12 .titleArea,
.titleBack13 .titleArea,
.titleBack14 .titleArea,
.titleBack15 .titleArea,
.titleBack16 .titleArea {
  display: block;
  width: 100%;
  margin: 0 0 10px 0;
}
.titleBack09 .titleImgWrapper,
.titleBack10 .titleImgWrapper,
.titleBack11 .titleImgWrapper,
.titleBack12 .titleImgWrapper,
.titleBack13 .titleImgWrapper,
.titleBack14 .titleImgWrapper,
.titleBack15 .titleImgWrapper,
.titleBack16 .titleImgWrapper {
  margin-bottom: 5px;
}

.titleBack09 .titleImg,
.titleBack10 .titleImg,
.titleBack11 .titleImg,
.titleBack12 .titleImg,
.titleBack13 .titleImg,
.titleBack14 .titleImg,
.titleBack15 .titleImg,
.titleBack16 .titleImg {
  display: block;
  width: 100%;
}

.titleBack09 .updateDate,
.titleBack10 .updateDate,
.titleBack11 .updateDate,
.titleBack12 .updateDate,
.titleBack13 .updateDate,
.titleBack14 .updateDate,
.titleBack15 .updateDate,
.titleBack16 .updateDate {
  width: auto;
}

.titleBack09 .titleText,
.titleBack10 .titleText,
.titleBack11 .titleText,
.titleBack12 .titleText,
.titleBack13 .titleText,
.titleBack14 .titleText,
.titleBack15 .titleText,
.titleBack16 .titleText {
  display: none;
}

/* 新にぎわいE用 */

.titleBack17 .titleArea,
.titleBack18 .titleArea {
  position: relative;
  display: block;
  width: 100%;
  margin-bottom: 10px;
  border-bottom: 3px solid #000;
  background: #fff;
}

.titleBack17 .titleImgWrapper,
.titleBack18 .titleImgWrapper {
  position: relative;
  overflow: hidden;
  margin-bottom: 0;
}

.titleBack17 .titleImg,
.titleBack18 .titleImg {
  width: 100%;
}

.titleBack17 .titleText,
.titleBack18 .titleText {
  display: none;
}

.titleBack17 .updateDate,
.titleBack18 .updateDate {
  position: absolute;
  bottom: calc((100vw * 0.069) / 2 - 12.5px);
  right: 0;
  font-size: 11px;
  color: #000000;
  height: 18px;
  padding-top: 7px;
}

.contents#sp.titleBack17 .updateDate,
.contents#sp.titleBack18 .updateDate {
  width: auto;
}

@media screen and (max-width: 650px) {
  #sp.titleBack17 .titleArea,
  #sp.titleBack18 .titleArea {
    margin: 0;
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .contents#sp.titleBack17 .updateDate,
  .contents#sp.titleBack18 .updateDate {
    position: static;
    display: none;
    margin: 5px auto 0;
    height: 15px;
    padding: 4px 0 0 0;
    text-align: center;
  }
}

/* ---- title ここまで ---- */

/* ---- tile ---- */

.tile {
  background: transparent;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  width: 100%;
  height: 80px;
  z-index: 0;
  margin-bottom: 10px;
}

@media screen and (max-width: 650px) {
  #sp .tile {
    height: 110px;
    padding-top: 10px;
    margin-bottom: 0;
  }
}

@media screen and (max-width: 650px) {
  #sp .tile {
    border: none;
    background: transparent;
  }

  #sp .tile:before {
    display: none;
  }
}

a {
  font-weight: bold;
}

a:hover,
a:hover p,
a:hover img,
a:hover .shop_img {
  opacity: 0.7;
}

/* ---- 共通 ---- */

/* 左画像 */

.imgWrapper {
  width: 80px;
  height: 80px;
  margin-right: 15px;
}

.imgWrapper img {
  width: 100%;
}

@media screen and (max-width: 650px) {
  #sp .imgWrapper {
    width: 60px;
    height: 60px;
    padding: 0 0px 0 10px;
    margin-right: 0;
    z-index: -1;
  }
}

/* テキストエリア */

.textArea {
  position: relative;
  width: calc(100% - 95px);
  display: flex;
  align-items: center;
  font-size: 14px;
  color: #000;
  background: #fff;
  border: 1px solid #ccc;
  border-bottom: 5px solid #ccc;
  margin: 5px 0 0 10px;
  padding: 0 10px 0 15px;
  border-radius: 15px;
}

.textArea:after {
  position: absolute;
  display: block;
  content: "";
  background: url("./fukidasi.svg") no-repeat;
  background-size: contain;
  top: 34px;
  left: -12px;
  width: 20px;
  height: 17px;
  z-index: -1;
}

.textArea:before {
  position: absolute;
  display: block;
  content: "";
  background: #fff;
  top: 35px;
  left: -1px;
  width: 2px;
  height: 6px;
}

@media screen and (max-width: 650px) {
  #sp .textArea {
    display: block;
    width: calc(100% - 115px);
    margin: 0 0 0 10px;
    padding: 5px 10px 0 15px;
    border-bottom: 3px solid #ccc;
  }

  #sp .textArea:after {
    top: 25px;
    left: -9px;
    width: 10px;
    height: 12px;
  }

  #sp .textArea:before {
    top: 26px;
    height: 4px;
  }
}

.textArea .date {
  position: relative;
  font-size: 12px;
  text-indent: 75px;
  white-space: nowrap;
}

.date::before {
  position: absolute;
  bottom: 2px;
  left: 0;
  content: "";
  width: 70px;
  height: 15px;
  background-repeat: no-repeat;
  background-position: center;
}

.main_text {
  overflow: hidden;
}

@media screen and (max-width: 650px) {
  #sp .date {
    position: relative;
    margin-top: 5px;
    margin-bottom: 5px;
    font-size: 11px;
    text-indent: 60px;
    white-space: nowrap;
  }

  #sp .date::before {
    position: absolute;
    bottom: 1px;
    left: 0;
    content: "";
    width: 50px;
    height: 16px;
    background-repeat: no-repeat;
    background-position: center;
  }

  #sp .main_text {
    font-size: 12px;
  }
}

@media screen and (max-width: 330px) {
  #sp .date {
    font-size: 10px;
  }
}

/* ---- 共通ここまで ---- */

/* ---- info ---- */

/* アイコン */

.info_img,
.shop_img {
  position: relative;
  width: 100%;
  height: 100%;
  background: #fff;
}
.info_img:after,
.shop_img:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.4);
  z-index: 10;
}

.info .date::before {
  background-image: url("./Nigiwai-PC-DE-info.svg");
}

@media screen and (max-width: 650px) {
  #sp .info .date::before {
    background-image: url("./Nigiwai-mobile-DE-info.svg");
  }

}

/* テキストエリア */

@media screen and (max-width: 650px) {
}

/* ---- order ---- */

/* アイコン */

/* テキストエリア */

.order .order_price:before {
  content: "（";
}

.order .order_price:after {
  content: "）";
}

.order .date::before {
  background-image: url("./Nigiwai-PC-DE-order.svg");
}

@media screen and (max-width: 650px) {
  #sp .order .date::before {
    background-image: url("./Nigiwai-mobile-DE-order.svg");
  }

}

/* ---- order ここまで ---- */

/* ---- new ---- */

/* アイコン */

/* テキストエリア */

.new .price:before {
  content: "（";
}

.new .price:after {
  content: "）";
}

.new .date::before {
  background-image: url("./Nigiwai-PC-DE-new.svg");
}

@media screen and (max-width: 650px) {
  #sp .new .date::before {
    background-image: url("./Nigiwai-mobile-DE-new.svg");
  }

}

/* ---- new ここまで ---- */

/* ---- review ---- */

/* アイコン */

.review .textWrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.review .star {
  margin-right: 10px;
  position: relative;
  text-indent: 75px;
}

.review .star .full:before,
.review .star .half:before,
.review .star .off:before {
  font-family: "icomoon";
  font-size: 16px;
}

.review .star .full:before {
  content: "\e9d9";
}

.review .star .half:before {
  content: "\e9d8";
}

.review .star .off:before {
  content: "\e9d7";
}

.review .point {
  font-size: 12px;
  padding-top: 4px;
  margin-right: 15px;
  white-space: nowrap;
}

.review .star::before {
  position: absolute;
  bottom: 5px;
  left: 0;
  content: "";
  width: 70px;
  height: 15px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url("./Nigiwai-PC-DE-review.svg");
}

.review a .main_text {
  color: #000;
  font-weight: normal;
}

@media screen and (max-width: 650px) {
  #sp .review .star {
    position: relative;
    margin-top: 5px;
    margin-bottom: 5px;
    text-indent: 60px;
    white-space: nowrap;
  }

  #sp .review .star .full:before,
  #sp .review .star .half:before,
  #sp .review .star .off:before {
    font-size: 13px;
  }

  #sp .review .star::before {
    position: absolute;
    bottom: 2.5px;
    left: 0;
    content: "";
    width: 50px;
    height: 16px;
    background-repeat: no-repeat;
    background-position: center;
    background-image: url("./Nigiwai-mobile-DE-review.svg");
  }

  #sp .review .point {
    font-size: 11px;
    padding-top: 8px;
    white-space: nowrap;
  }
}

.review .date {
  display: none;
}

/* ---- review ここまで ---- */

/* ---- tile ここまで ---- */
