@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 !important;
  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 !important;
  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 !important;
  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 !important;
  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;
}

/* 新にぎわいB用　　Nigiwai-PC-B-header.jpg */

.titleBack17 .titleArea {
  position: relative;
  display: block !important;
  width: 100%;
  margin: 0;
}

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

.titleBack17 .titleImg {
  width: 100%;
}

.titleBack17 .titleText {
  display: none;
}

.titleBack17 .updateDate {
  position: absolute;
  top: auto;
  right: auto;
  bottom: 0;
  left: 0;
  background-color: transparent;
  font-size: 10px;
  color: #fff;
  text-align: left;
  padding: 1vw 0;
  text-indent: 5px;
}

@media screen and (max-width: 650px) {
  #sp.titleBack17 .titleArea {
    position: relative;
  }

  #sp.titleBack17 .updateDate {
    position: absolute;
    top: auto;
    right: auto;
    bottom: 0;
    left: 0;
    background-color: transparent;
    font-size: 12px;
    color: #fff;
    text-align: left;
	padding: 1.5vw 0;
	text-indent: 5px;
  }
}

@media screen and (max-width: 480px) {
  #sp.titleBack17 .updateDate {
    font-size: 11px;
    padding: 1vw 0;
  }
}

@media screen and (max-width: 375px) {
  #sp.titleBack17 .updateDate {
    font-size: 10px;
    padding: 0.8vw 0;
  }
}

@media screen and (max-width: 340px) {
  #sp.titleBack17 .updateDate {
	padding: 0.6vw 0;
  }
}


.titleBack18 .titleArea {
	position: relative;
	display: block !important;
	width: 100%;
	margin: 0;
  }

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

  .titleBack18 .titleImg {
	width: 100%;
  }

  .titleBack18 .titleText {
	display: none;
  }

  .titleBack18 .updateDate {
	position: absolute;
	top: auto;
	right: auto;
	bottom: 0;
	left: 0;
	background-color: transparent;
	font-size: 10px;
	color: #fff;
	text-align: left;
	padding: 1vw 0;
	text-indent: 5px;
  }

  @media screen and (max-width: 650px) {
	#sp.titleBack18 .titleArea {
	  position: relative;
	}

	#sp.titleBack18 .updateDate {
	  position: absolute;
	  top: auto;
	  right: auto;
	  bottom: 0;
	  left: 0;
	  background-color: transparent;
	  font-size: 12px;
	  color: #fff;
	  text-align: left;
	  padding: 1.5vw 0;
	  text-indent: 5px;
	}
  }

  @media screen and (max-width: 480px) {
	#sp.titleBack18 .updateDate {
	  font-size: 11px;
	  padding: 1vw 0;
	}
  }

  @media screen and (max-width: 375px) {
	#sp.titleBack18 .updateDate {
	  font-size: 10px;
	  padding: 0.8vw 0;
	}
  }

  @media screen and (max-width: 340px) {
	#sp.titleBack18 .updateDate {
	  padding: 0.6vw 0;
	}
  }

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

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

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

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

.tile {
  background: #edf1f2;
}

a {
  color: #0071bc;
  font-weight: bold;
}

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

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

/* 左アイコン */

.iconWrapper {
  width: 80px;
  height: 80px;
  padding: 10px 5px;
}

@media screen and (max-width: 650px) {
  #sp .iconWrapper {
    position: absolute;
    bottom: 0;
    left: -2px;
    width: 58px;
    height: 58px;
    padding: 0;
  }

}

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

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

/* 左画像 */

.imgWrapper {
  width: 80px;
  height: 80px;
  padding: 10px 5px;
  margin-right: 10px;
}

.imgWrapper img {
  width: 100%;
}

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

/* テキストエリア */

.textArea {
  width: calc(100% - 200px);
  display: flex;
  align-items: center;
  font-size: 14px;
  color: #000;
}

.textArea .date {
  font-size: 12px;
  color: #666;
}

.main_text {
  overflow: hidden;
}

@media screen and (max-width: 650px) {
  #sp .textArea {
    width: calc(100% - 115px);
    display: block;
    padding-top: 10px;
  }

  #sp .date {
    position: relative;
    margin-top: 5px;
    margin-bottom: 5px;
    font-size: 11px;
  }

  #sp .date::before {
    position: absolute;
    bottom: -10px;
    left: -5px;
    content: "";
    width: 40px;
    height: 40px;
    background-size: contain;
  }

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

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

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

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

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

/* アイコン */

.B_info {
  fill: #96c9e0;
}

/* テキストエリア */

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

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

/* アイコン */

.B_order {
  fill: #68c78b;
}

/* テキストエリア */

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

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

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

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

/* アイコン */

.B_new {
  fill: #f1939b;
}

/* テキストエリア */

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

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

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

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

/* アイコン */

.B_review {
  fill: #fcc96d;
}

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

.review .star {
  margin-right: 10px;
}

.review .star .full:before,
.review .star .half:before,
.review .star .off:before {
  font-family: "icomoon";
  color: #fbb03b;
  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;
  color: #666;
  padding-top: 4px;
  margin-right: 15px;
}

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

@media screen and (max-width: 650px) {
  #sp .review .star {
	margin-top: 5px;
	margin-bottom: 5px;
  }

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

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

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

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