@charset "UTF-8";

/* ========================== 設定 ========================== */
/*管理用パーツ*/
#adminBox {
  margin-bottom: 0;
}

/*文字設定*/
html {
  font-size: 62.5%;
}

body {
  font-family: "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro",
    "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "ＭＳ Ｐゴシック",
    "MS PGothic", sans-serif;
  font-size: 1em;
  color: #000000;
  min-width: 1050px;
}

/*クリアフィックス*/
.clearfix::after {
  content: "";
  display: block;
  clear: both;
}

/*ボーダーとパディングを大きさに含める*/
*,
*::after,
*::before {
  box-sizing: border-box;
}

/*画像とボックスの隙間なくす*/
img {
  vertical-align: bottom;
}

/*リンクの設定*/
a {
  color: #000000;
  text-decoration: none;
}

/*横幅*/
.wrapper {
  width: 1000px;
  padding: 0 10px;
  margin: 0 auto;
}

/* ========================== ヘッダー ========================== */
.category-header {
  background: url(../images/category_header_bg.jpg?20240901) no-repeat center bottom;
  background-size: cover;
}

.header-title {
  padding: 30px 10px 0 10px;
}

.header-logo {
  width: 39%;
  float: left;
}

.header-logo img {
  width: 100%;
}

.header-copy {
  width: 55%;
  padding-top: 10px;
  float: right;
}

.header-copy img {
  width: 100%;
}

/*グローバルナビ*/
.header-navi {
  padding-top: 20px;
}

.global-navi {
  display: table;
}

.global-navi-item {
  display: table-cell;
}

.global-navi-item a {
  display: block;
  position: relative;
}

.global-navi-item a img {
  width: 100%;
  height: auto;
}

.global-navi-item a img:nth-child(2) {
  position: absolute;
  opacity: 0;
  top: 0;
  left: 0;
}

/*ページのタイトル部分*/
.page-title {
  padding: 50px 0 40px 20px;
}

.page-title img {
  width: 30%;
}

/*トピックパス*/
.topicpath-list {
  padding: 5px 20px;
  line-height: 1.5rem;
}

.topicpath-item {
  display: inline;
  padding-right: 0.5rem;
}

.topicpath-item::after {
  content: ">";
}

.topicpath-item:last-child {
  color: #a8a8a8;
}

.topicpath-item:last-child::after {
  content: "";
}

.topicpath-link {
  padding-right: 0.5rem;
  text-decoration: underline;
}

.topicpath-link:hover {
  text-decoration: none;
}

/* ========================== フッター ========================== */
footer {
  background-color: #d4f5ff;
  padding: 40px 0;
}

/*店名まわり*/
.footer-info {
  float: left;
  width: 45%;
}

.footer-logo img {
  width: 70%;
}

.footer-address {
  margin-top: 20px;
  font-size: 1.4rem;
  line-height: 2.5rem;
}

.footer-address span {
  font-size: 1.2rem;
}

/*ページ一覧*/
.footer-sitemap {
  float: right;
  width: 54%;
}

.footer-index-link {
  width: 33%;
  padding-left: 10px;
  float: left;
  font-size: 1.4rem;
  font-weight: bold;
}

.footer-index-link > li {
  padding-top: 5px;
}

.footer-index-link > li:first-child {
  padding-top: 0;
}

.footer-index-link ul {
  font-size: 1.1rem;
  font-weight: normal;
  padding-left: 20px;
}

.footer-index-link ul li span {
  font-weight: bold;
  margin-right: 5px;
}

.footer-index-link i {
  font-size: 0.5em;
}

.footer-index-link a:hover {
  text-decoration: underline;
}

/*コピーライト*/
.copyright {
  border-top: solid 1px #bbbbbb;
  text-align: center;
  padding-top: 20px;
  margin-top: 30px;
  font-size: 1.2rem;
}

/* ========================== 各コンテンツ共通 ========================== */
/*コンテンツの背景*/
.page-bg {
  background: url(../images/page_bg.gif) repeat;
  padding: 30px;
}

/*全体の白枠*/
.white-wrap {
  background-color: #fff;
  border-radius: 20px;
  padding: 30px 35px;
}

/*横幅*/
main {
  float: left;
  display: block;
  width: 76.5%;
}

/*サイドバー*/
.sidebar {
  width: 20.5%;
  float: right;
}

.sidebar a {
  display: block;
  margin-bottom: 10px;
  border-radius: 5px;
  overflow: hidden;
  transition: 0.2s;
}

.sidebar a:hover {
  box-shadow: 0 0 6px 1px rgba(0, 0, 0, 0.3);
}

.sidebar a img {
  width: 100%;
}

/*各要素の間隔*/
.acms-entry p,
.acms-entry h3,
.acms-entry h4,
.acms-entry dl,
.acms-entry .entry-container {
  margin-bottom: 20px;
}
.acms-entry p.margin-bottom-5{
  margin-bottom: 5px;
}

.acms-entry h2 {
  margin-top: 60px;
  margin-bottom: 20px;
}

/*最初の要素と最後の要素のマージンなくす*/
.acms-grid-r > *:first-child {
  margin-top: 0;
}

.acms-grid-r > *:last-child {
  margin-bottom: 0;
}

/*本文*/
.acms-entry p {
  font-size: 1.5rem;
  line-height: 1.7;
}

/*リンク挿入*/
.acms-entry a {
  text-decoration: underline;
  color: blue;
}

.acms-entry a:hover {
  text-decoration: none;
}

/*強調1*/
em {
  color: #ff4a35;
  font-weight: inherit;
}

/*強調2*/
strong {
  font-weight: bold;
}

/*注釈*/
.acms-entry .annotation,
.event-infoblock .annotation {
  font-size: 1.2rem;
  color: #8c8c8c;
}

/*見出し大*/
.acms-entry h2 {
  position: relative;
  border-radius: 10px;
  background: url(../images/h2_bg.gif) repeat;
  font-size: 2.5rem;
  font-weight: bold;
  line-height: 1.5;
  overflow: hidden;
  padding: 14px 15px 10px 15px;
  margin-left: 0;
  margin-right: 0;
}

.acms-entry h2::before {
  content: "";
  display: block;
  background: url(../images/h2_topline.gif) no-repeat;
  background-size: 100% 100%;
  width: 100%;
  height: 4px;
  position: absolute;
  top: 0;
  left: 0;
}

.acms-entry-unit-full h2 {
  margin-left: 5px;
  margin-right: 5px;
}

.acms-entry-unit-full.acms-col-sm-6:first-child h2:first-child,
.acms-entry-unit-full.acms-col-sm-6:nth-child(2) h2:first-child {
  margin-top: 0;
}

/*見出し中*/
.acms-entry h3 {
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.7;
}

/*見出し小*/
.acms-entry h4 {
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1.7;
  color: #ff4a35;
}

/*見出し（青い背景）*/
.acms-entry h4.blue-bg {
  color: #000000;
  background-color: #d4f5ff;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 10px;
  padding-right: 10px;
  border-radius: 5px;
}

/*白文字に赤い背景*/
.acms-entry p.red-bg {
  padding: 0.5rem;
  background-color: #ff8b15;
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.3;
  color: #ffffff;
  text-align: center;
}

/*詳細情報*/
.acms-entry dl.info-list::after {
  content: "";
  display: block;
  clear: both;
}

.acms-entry dl.info-list dt,
.acms-entry dl.info-list dd {
  float: left;
  font-size: 1.5rem;
  line-height: 1.7;
}

.acms-entry dl.info-list dt {
  background-color: #ffdebe;
  border-radius: 0.5rem;
  color: #000;
  padding: 0 1rem;
}

.acms-entry dl.info-list dd {
  padding-left: 10px;
  margin-bottom: 20px;
}

.acms-entry dl.info-list dd:last-child {
  margin-bottom: 0;
}

/*テーブル*/
.acms-entry table {
  border-collapse: collapse;
  border-bottom: solid 1px #bbbbbb;
  width: 100%;
  font-size: 1.5rem;
  line-height: 1.5;
}

.acms-entry table tr {
  border-top: solid 1px #bbbbbb;
}

.acms-entry table tr th,
.acms-entry table tr td {
  padding: 1rem;
}

.acms-entry table tr th {
  background-color: #efefef;
}

/*定義リスト（1文字下げ）*/
.acms-entry dl.indent-one,
.acms-entry dl.line-under,
.acms-entry dl.titleline {
  font-size: 1.5rem;
  line-height: 1.7;
}

.acms-entry dl.indent-one dt,
.acms-entry dl.line-under dt,
.acms-entry dl.titleline dt {
  margin-top: 10px;
  font-weight: bold;
}

.acms-entry dl.indent-one dd,
.acms-entry dl.line-under dd,
.acms-entry dl.titleline dd {
  padding-left: 1em;
}

/*定義リスト（1文字下げ・見出し下線あり）*/
.acms-entry dl.titleline dt {
  border-left: solid 4px #ffa43f;
  border-bottom: solid 1px #ffedd9;
  padding-left: 6px;
  line-height: 1.7;
}

.acms-entry dl.titleline dt {
  margin-top: 15px;
}

.acms-entry dl.titleline dd {
  margin-top: 5px;
}

/*定義リスト（1文字下げ・項目に下線あり）*/
.acms-entry dl.line-under dt {
  padding-left: 0.5em;
  padding-right: 0.5em;
}

.acms-entry dl.line-under dd {
  padding-left: 1.5em;
  padding-right: 0.5em;
}

.acms-entry dl.line-under > *:first-child {
  padding-top: 12px;
  border-top: solid 1px #bbbbbb;
}

.acms-entry dl.line-under dd {
  padding-bottom: 12px;
  border-bottom: solid 1px #bbbbbb;
}

/* リスト */
.acms-entry ul.list_normal{
  font-size: 1.4rem;
  line-height: 1.5;
  margin: 0 10px 25px;
  list-style: disc;
  padding: 0 0 0 20px;
}
.acms-entry ul.list_normal li{
  margin: 0 0 14px;
}
.acms-entry ul.list_normal li:last-child{
  margin: 0;
}

/*本文（ピンクの背景）*/
.acms-entry .pink-bg {
  background-color: #ffe4e1;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 10px;
  padding-right: 10px;
  border-radius: 5px;
}

.acms-entry .pink-bg + .pink-bg {
  margin-top: -30px;
}

/*写真のキャプション*/
.acms-entry .caption {
  font-size: 1.2rem;
  color: #8c8c8c;
}
/* 大きめのリンクボタン */
.acms-entry .linkbutoon-l a {
  display: block;
  text-align: center;
  font-weight: bold;
  text-decoration: none;
  color: #fff;
  background-color: #ffa217;
  font-size: 18px;
  padding: 13px 0;
  border-radius: 30px;
  margin-top: 15px;
}
.acms-entry .linkbutoon-l a:hover {
  background-color: #ff7b00;
}
body.monthly-event-entry .acms-entry .linkbutoon-l a,
body.monthly-event-index .acms-entry .linkbutoon-l a {
  background-color: #09c959;
  padding: 5px 20px;
}
body.monthly-event-entry .acms-entry .linkbutoon-l a:hover,
body.monthly-event-index .acms-entry .linkbutoon-l a:hover {
  background-color: #00b94d;
}

/* ========================== ショップリスト-エントリー ========================== */
/*店名*/
h2.shoplist-name {
  border-top: solid 1px #bbb;
  border-bottom: solid 1px #bbb;
  border-radius: 0;
  padding: 10px;
  margin: 0 -10px 15px -10px;
  background: url(../images/shopname_bg.gif) repeat;
}

h2.shoplist-name::before {
  content: none;
}

/*ロゴ*/
.shoplist-logo {
}

.shoplist-logo img {
  width: 90%;
}

/*カスタムフィールドの表の改行禁止*/
.acms-entry .shoplist-field-table th {
  white-space: nowrap;
  text-align: right;
}

/*URLの途中で改行*/
.acms-entry .shoplist-field-table td.shop-url {
  word-break: break-all;
}

/* ========================== ショップリスト-インデックス ========================== */
/*子カテゴリーの一覧表示*/
.shopping-index .acms-entry,
.gourmet-index .acms-entry,
.lifestyle-index .acms-entry {
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: dotted 1px #ffc9c3;
}

.shopping-index .white-wrap .acms-entry:nth-last-child(2),
.gourmet-index .white-wrap .acms-entry:nth-last-child(2),
.lifestyle-index .white-wrap .acms-entry:nth-last-child(2) {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

/*親カテゴリーの一覧表示*/
.acms-entry a.shoplink {
  display: block;
  width: 31%;
  float: left;
  margin-right: 3.5%;
  margin: 5px 3.5% 5px 0;
  text-decoration: none;
}

.acms-entry a.shoplink:nth-child(3n) {
  margin-right: 0;
}

.acms-entry a.shoplink .shoplink-logo {
  padding: 0 20px;
}

.acms-entry a.shoplink .shoplink-logo img {
  width: 100%;
  transition: all 0.2s;
}

.acms-entry a.shoplink:hover {
  text-decoration: underline;
}

.acms-entry a.shoplink:hover img {
  opacity: 0.8;
}

.shoplink-name {
  text-align: center;
  padding-top: 5px;
}

/* ========================== フロアガイド ========================== */
/*アイコンの説明*/
.flooricon-list {
  width: 100%;
  padding: 10px 20px;
  border: solid 1px #bbb;
  margin-bottom: 40px;
}

.flooricon-item {
  padding: 10px;
  width: 25%;
}

.flooricon-item,
.shopicon-item {
  float: left;
  font-size: 1.4rem;
  line-height: 1.8rem;
  padding-left: 2rem;
  text-indent: -2rem;
}

/*マップ*/
.floorguide-maparea {
  text-align: center;
  margin: 60px 0 20px 0;
}

.floorguide-maparea img {
  width: 80%;
}

/*ショップの名前一覧*/
.shopicon-list {
  width: 100%;
  padding: 5px 0 5px 20px;
}

.shopicon-item {
  width: 33%;
}

.shopicon-item {
  padding-right: 10px;
}

.flooricon-item span,
.shopicon-item span {
  display: inline-block;
  width: 1.8rem;
  height: 1.8rem;
  margin-right: 0.2rem;
  text-indent: 0;
}

.shopicon-item span {
  border-radius: 5px;
  background-color: #b679ad;
  text-align: center;
  color: #fff;
}

.shopicon-item span.kangai {
  background-color: #85b732;
}

.flooricon-item span img {
  width: 100%;
}

.floorguide {
  text-align: center;
  margin: 30px 0 10px 0;
}

.floorguide img {
  width: 100%;
}

.shopicon-item a {
  color: blue;
  text-decoration: underline;
}

.shopicon-item a:hover {
  text-decoration: none;
}

.shopicon-item a:visited,
.shoplist-index a {
  color: #000;
}

/* ========================== アクセス ========================== */
/*マップの上の空き*/
div.column-map-auto {
  margin-top: 60px;
}

/* ========================== イベント・ニュースのエントリー ========================== */
.event-and-news-entry .white-wrap {
  border-top-left-radius: 0px;
  border-top-right-radius: 0px;
}

/*タイトルと情報欄の白枠*/
.event-and-news-entry .white-wrap.event-infoblock {
  margin-bottom: 3px;
  padding: 30px;
  overflow: hidden;
  position: relative;
  border-radius: 0px;
  border-bottom-left-radius: 0px;
  border-bottom-right-radius: 0px;
}

.event-infoblock::before {
  content: "";
  display: block;
  width: 100%;
  height: 4px;
  background-color: #8fc31f;
  position: absolute;
  top: 0;
  left: 0;
}

.event-infoblock.newsinfo::before {
  background-color: #ae81e9;
}

/*分類のラベル*/
.event-cate-e,
.event-cate-n {
  padding: 0 0.3rem;
  font-size: 0.8rem;
  line-height: 1.2rem;
  color: #fff;
  display: block;
  position: absolute;
  top: 10px;
  right: 10px;
}

.event-cate-e {
  background-color: #8fc31f;
}

.event-cate-n {
  background-color: #ae81e9;
}

/*ラベル部分*/
.event-icon span {
  padding: 5px 10px;
  font-size: 1.5rem;
  line-height: 1;
  color: #fff;
  background-color: #73c4ee;
  font-weight: bold;
  display: inline-block;
  margin-right: 3px;
}

.event-icon span.event-people {
  background-color: #ff4a35;
}

.event-hanaiku {
  display: block;
  font-size: 1.5rem;
  color: #f67474;
  font-weight: bold;
}

.event-title {
  font-size: 2.8rem;
  line-height: 1.5;
  font-weight: bold;
  border-bottom: solid 1px #000;
  padding: 15px 0;
  margin-bottom: 20px;
}

/*情報欄の表*/
.event-info-table {
  border-collapse: collapse;
}

.event-info-table tr {
  border-bottom: solid 5px rgba(255, 255, 255, 0);
}

.event-info-table th,
.event-info-table td {
  font-size: 1.4rem;
  vertical-align: top;
  line-height: 2.2rem;
}

.event-info-table th {
  white-space: nowrap;
  padding-right: 8px;
}

.event-info-table th span {
  background-color: #8fc31f;
  height: 2.2rem;
  display: inline-block;
  width: 100%;
  text-align: center;
  color: #fff;
  padding: 0 10px;
  border-radius: 5px;
}

.event-infoblock.newsinfo .event-info-table th span {
  background-color: #ae81e9;
}

/*情報欄のグレー枠*/
.event-gray {
  padding: 10px;
  background-color: #efefef;
  border-radius: 5px;
  margin-top: 10px;
}

.event-gray table {
  border-collapse: collapse;
}

.event-gray table th,
.event-gray table td {
  font-size: 1.4rem;
  padding: 5px;
  line-height: 1.7;
  vertical-align: top;
}

.event-gray table th {
  font-weight: bold;
  color: #ff4a35;
}

/*シリアルナビ*/
.event-serialnavi {
  display: table;
  width: 100%;
  margin-top: 20px;
}

.event-serialnavi li {
  display: table-cell;
}

.event-serialnavi li a {
  display: inline-block;
  height: 3rem;
  padding: 0 10px;
  background-color: #73c4ee;
  border-radius: 1.5rem;
  font-size: 1.4rem;
  line-height: 3rem;
  color: #fff;
}

.event-serialnavi li a span {
  font-size: 0.8em;
}

.event-serialnavi-prev {
  text-align: left;
  width: 50%;
}

.event-serialnavi-next {
  text-align: right;
  width: 50%;
}

/*イベントニュースのエントリーリスト*/
.event-entrylist {
  background-color: rgba(255, 255, 255, 0.7);
  margin-bottom: 20px;
}

.event-entrylist-title {
  background-color: #73c4ee;
  color: #fff;
  text-align: center;
  font-size: 1.4rem;
}

.event-entrylist ul li a {
  display: block;
  padding: 5px 8px;
  border-bottom: solid 1px #e2e2e2;
  font-size: 1.3rem;
  line-height: 2rem;
  border-radius: 0;
  margin-bottom: 0;
}

.event-entrylist ul li a:hover {
  box-shadow: none;
  text-decoration: underline;
}

.event-entrylist-date {
  color: #ff4a35;
  font-size: 1.2rem;
}

.event-list-cate-e,
.event-list-cate-n {
  display: inline-block;
  line-height: 1.4rem;
  padding: 0 3px;
  color: #fff;
  font-size: 0.8rem;
  line-height: 1.4rem;
  height: 1.4rem;
}

.event-list-cate-e {
  background-color: #8fc31f;
}

.event-list-cate-n {
  background-color: #ae81e9;
}

/* ========================== イベント・ニュースの一覧ページ ========================== */
/*タイトルと情報欄の白枠*/
.event-and-news-index .white-wrap.event-infoblock {
  width: 48.5%;
  padding: 15px;
  margin-bottom: 20px;
  margin-right: 3%;
  border-top-left-radius: 0px;
  border-top-right-radius: 0px;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  display: block;
  position: relative;
  overflow: hidden;
  float: left;
  transition: 0.2s;
}

.event-and-news-index .white-wrap.event-infoblock:hover {
  box-shadow: 0 0 6px 1px rgba(0, 0, 0, 0.3);
}

.event-and-news-index .white-wrap.event-infoblock:nth-child(2n) {
  margin-right: 0;
}

/*タイトルと情報*/
.event-sammary-info {
  width: 50%;
  float: left;
}

/*写真*/
.event-sammary-photo {
  width: 47%;
  float: right;
}

.event-sammary-photo img {
  width: 100%;
}

.event-sammary-info .event-cate-e,
.event-sammary-info .event-cate-n {
  top: 15px;
  right: 15px;
}

.event-sammary-info .event-icon {
  line-height: 2.5;
}

.event-sammary-info .event-icon span {
  font-size: 0.8rem;
}

.event-sammary-info .event-tokai {
  height: 1rem;
  font-size: 1rem;
  line-height: 1rem;
  margin: 5px 0 5px 0;
}

.event-sammary-info .event-title {
  font-size: 1.6rem;
  border-bottom: solid 1px #b0b0b0;
  padding: 0 0 5px 0;
  margin-bottom: 10px;
}

.event-sammary-info .event-date {
  font-size: 1.4rem;
  line-height: 2.5rem;
  font-weight: bold;
}

.event-sammary-info .event-date span {
  display: inline-block;
}

.event-sammary-info .event-date span:first-child {
  height: 2rem;
  padding: 0 3px;
  font-size: 1.2rem;
  line-height: 2rem;
  background-color: #8fc31f;
  border-radius: 5px;
  text-align: center;
  color: #fff;
  margin-right: 3px;
}

.event-infoblock.newsinfo .event-sammary-info .event-date span:first-child {
  background-color: #ae81e9;
}

/* ========================== 重要なお知らせ ========================== */
.information-title::before {
  background-color: #E60012;
}
.information-title_date{
  font-size: 1.2rem;
  margin: 0 0 5px;
}
.information-title .event-title {
  border-bottom: 0;
  padding: 0;
  margin-bottom: 0;
}
/* 一覧ページ */
.infomation-list_heading{
  color: #E60012;
  font-weight: bold;
  font-size: 16px;
  margin: 0 0 10px;
}
.icon_attention_red{
  display: inline-block;
  width: 22px;
  vertical-align: -5px;
}
.icon_attention_red img{
  display: block;
  width: 100%;
  height: auto;
}
.headline_list{
  border-top: solid 1px #ddd;
}
.headline_item{
  border-bottom: solid 1px #ddd;
  padding: 10px 2px;
  background-color: #fff;
  transition: background-color 0.25s;
}
.headline_item::after{
  content: "";
  display: block;
  clear: both;
}
.headline_item:hover{
  background-color: #e9e9e9;
}
.headline_date{
  font-size: 1.2rem;
  display: block;
  float: left;
}
.headline_title{
  display: block;
  font-size: 1.4rem;
  padding: 0 0 0 9rem;
}
.headline_title a{
  font-weight: bold;
}
.headline_new{
  color: #E60012;
  display: inline-block;
  margin: 0 0 0 0.3em;
}
/* ========================== トップページ ========================== */
.top-header {
  background: url(../images/header_bg.jpg) no-repeat center center;
  background-size: cover;
  overflow: hidden;
}

/*トップのイメージのアニメーション部分*/
.top-image {
  position: relative;
  width: 100%;
  height: 540px;
}

.road {
  position: absolute;
  top: 217px;
  left: 105px;
  display: none;
}

.road img {
  width: 100%;
}

.clean-illust,
.domino-illust,
.royal-illust,
.okazakijou-illust,
.erueru,
.gast-illust,
.komeda-illust,
.goryoutei-illust,
.misudo-illust,
.mamezou-illust,
.musee-illust,
.shika-illust,
.supaka-illust,
.ikinari-illust,
.booon-illust,
.anniv,
img[class^="person"] {
  position: absolute;
  opacity: 0;
  -webkit-animation-duration: 0.3s;
  animation-duration: 0.3s;
}

@-webkit-keyframes kaiten {
  0% {
    -webkit-transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
  }
}

@keyframes kaiten {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.sun {
  position: absolute;
  top: 20px;
  left: 30px;
  animation-name: kaiten;
  animation-duration: 10s;
  animation-timing-function: linear;
  animation-delay: 1s;
  animation-iteration-count: infinite;
  animation-direction: normal;
  animation-fill-mode: none;
  animation-play-state: running;
  -webkit-animation-name: kaiten;
  -webkit-animation-duration: 10s;
  -webkit-animation-timing-function: linear;
  -webkit-animation-delay: 1s;
  -webkit-animation-iteration-count: infinite;
  -webkit-animation-direction: normal;
  -webkit-animation-fill-mode: none;
  -webkit-animation-play-state: running;
}
.sun_face {
  position: absolute;
  top: 20px;
  left: 30px;
}

.okazakijou-illust {
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.2s;
  top: 150px;
  left: 0;
}

.erueru {
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s;
  top: 32px;
  left: 170px;
}

.gast-illust {
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
  top: 185px;
  left: 85px;
}

.komeda-illust {
  -webkit-animation-delay: 0.25s;
  animation-delay: 0.25s;
  top: 260px;
  left: 0px;
}

.ikinari-illust {
  -webkit-animation-delay: 0.55s;
  animation-delay: 0.55s;
  top: 262px;
  left: 215px;
}

.mamezou-illust {
  -webkit-animation-delay: 0.45s;
  animation-delay: 0.45s;
  top: 350px;
  left: 320px;
}
.musee-illust {
  -webkit-animation-delay: 0.45s;
  animation-delay: 0.45s;
  top: 330px;
  left: 115px;
}

.shika-illust {
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s;
  top: 348px;
  left: 590px;
}

.royal-illust {
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s;
  top: 330px;
  left: 720px;
}

.domino-illust {
  -webkit-animation-delay: 0.35s;
  animation-delay: 0.35s;
  top: 340px;
  left: -10px;
}

.clean-illust {
  -webkit-animation-delay: 0.25s;
  animation-delay: 0.25s;
  top: 340px;
  left: 710px;
}

.supaka-illust {
  -webkit-animation-delay: 0.35s;
  animation-delay: 0.35s;
  top: 260px;
  left: 450px;
}

.booon-illust {
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
  top: 334px;
  left: 840px;
}

.anniv {
  -webkit-animation-delay: 0.3s;
  animation-delay: 1.5s;
  top: 117px;
  left: 232px;
  -webkit-animation-duration: 0.7s;
  animation-duration: 0.7s;
}

/*人物イラスト*/
img[class^="person"] {
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
}

.person01 {
  top: 40px;
  left: 340px;
}

.person02 {
  top: 260px;
  left: 150px;
}

.person03 {
  top: 210px;
  left: 233px;
}

.person04 {
  top: 333px;
  left: 255px;
}

.person05 {
  top: 205px;
  left: 395px;
}

.person06 {
  top: 230px;
  left: 545px;
}

.person07 {
  top: 205px;
  left: 600px;
}

.person08 {
  top: 340px;
  left: 470px;
}

.person09 {
  top: 250px;
  left: 595px;
}

.person10 {
  top: 190px;
  left: 310px;
}

.person11 {
  top: 200px;
  left: 470px;
}

/*トップのイメージのバナー*/
.top-chirashi-bnr,
.chirashi_fuki {
  -webkit-animation-duration: 0.3s;
  animation-duration: 0.3s;
  position: absolute;
  opacity: 0;
}

.top-chirashi-bnr {
  display: block;
  top: 10px;
  right: 0;
  transition: 0.2s;
}

.chirashi_fuki {
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s;
  top: -3px;
  left: 85px;
}

/*木曜とみくじ景品バナー*/
.top-prize {
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s;
  width: 251px;
  height: 212px;
  position: absolute;
  right: -10px;
  top: 110px;
  opacity: 0;
  transition: 0.2s;
}

.top-prize-bnr-item a {
  padding: 0 10px;
  display: block;
}

.top-prize-bnr-item a img {
  width: 100%;
  height: auto;
}

.top-prize .slick-arrow {
  position: absolute;
  top: 45%;
  width: 25px;
  height: 25px;
  text-indent: -9999px;
  opacity: 0.5;
  transition: 0.2s;
  border: 0;
  z-index: 100;
}

.top-prize .slick-arrow:hover {
  opacity: 1;
}

.top-prize .slick-arrow:focus {
  outline: 0;
}

.top-prize .slick-prev {
  left: 0;
  background: url(../images/prize_prev.png) no-repeat center center;
  background-size: 100% 100%;
}

.top-prize .slick-next {
  right: 0;
  background: url(../images/prize_next.png) no-repeat center center;
  background-size: 100% 100%;
}

/*ショップリスト(カルーセルだよ)*/
.shop-list-wrap {
  position: absolute;
  bottom: 10px;
  width: 720px;
  left: 130px;
}

.shop-list-item-wrap {
  position: relative;
  width: 120px;
  height: 120px;
}

.shop-list-item {
  -webkit-animation-duration: 0.3s;
  animation-duration: 0.3s;
  display: block;
  width: 100px;
  border: solid 3px #fff;
  border-radius: 50%;
  background-color: #fff;
  position: absolute;
  top: 10px;
  left: 10px;
  overflow: hidden;
}

.shop-list-item img {
  width: 100%;
  height: auto;
}

/*bxsliderの設定*/
.shop-list-wrap .slick-arrow {
  position: absolute;
  font-size: 0;
  width: 17px;
  height: 41px;
  top: 39px;
  border: 0;
}
.shop-list-wrap .slick-arrow:focus {
  outline: 0;
}
.shop-list-wrap .slick-prev {
  left: -20px;
  background: url(../images/bx_prev.png);
}

.shop-list-wrap .slick-next {
  right: -20px;
  background: url(../images/bx_next.png);
}
/*重要なお知らせ*/
.top-infomation{
  padding: 30px 0 0;
}
.top-infomation_container{
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 10px;
}
.top-infomation_box{
  background: #FCE2E4;
  border-radius: 5px;
  overflow: hidden;
  display: flex;
}
.top-infomation_heading{
  display: flex;
  width: 160px;
  align-items: center;
  justify-content: center;
  padding: 5px;
  background: #E60012;
  color: #fff;
  font-size: 1.4rem;
  font-weight: bold;
  white-space: nowrap;
}
.icon_attention{
  display: inline-block;
  width: 20px;
  vertical-align: -4px;
}
.icon_attention img{
  display: block;
  width: 100%;
  height: auto;
}
.top-infomation_body{
  padding: 8px 10px 0 15px;
  width: calc(100% - 160px);
}
.top-infomation_item{
  position: relative;
  padding: 0 0 0 10px;
  margin: 0 0 8px;
}
.top-infomation_item::after{
  content: "";
  display: block;
  clear: both;
}
.top-infomation_item::before{
  position: absolute;
  top: 7px;
  left: 0;
  margin: auto;
  width: 0;
  height: 0;
  border: 4px solid transparent;
  border-left: 4px solid #BC1601;
  content: "";
}
.top-infomation_date{
  font-size: 1.2rem;
  display: block;
  float: left;
  padding: 2px 0 0;
}
.top-infomation_title{
  display: block;
  font-size: 1.4rem;
  padding: 0 0 0 9rem;
}
.top-infomation_title a{
  color: #BC1601;
  text-decoration: underline;
}
.top-infomation_title a:visited{
  color: #BC1601;
}
.top-infomation_title a:hover{
  text-decoration: none;
}
.top-infomation_indexLink{
  font-size: 1.2rem;
  text-align: right;
  margin: 5px 0 0;
}
.top-infomation_indexLink a{
  text-decoration: underline;
}
.top-infomation_indexLink a:hover{
  text-decoration: none;
}

/*各見出し*/
.heading-event,
.heading-kourei,
.heading-chirashi {
  padding-top: 10px;
}

.heading-event img,
.heading-kourei img,
.heading-chirashi img {
  width: 41%;
}

/*イベント一覧*/
.event-list-bg {
  padding: 30px 0;
  background: url(../images/top_event_bg.gif) repeat;
}

.top-event-list-item {
  float: left;
  width: 32%;
  margin-right: 2%;
  margin-bottom: 20px;
  opacity: 0;
}

@media print {
  .top-event-list-item {
    opacity: 1;
  }
}

.top-event-list-item:nth-child(3n) {
  margin-right: 0;
}

.top-event-list-link {
  display: block;
}

.top-event-photo {
  position: relative;
  border-radius: 5px;
  overflow: hidden;
  transition: 0.2s;
}

.top-event-list-link:hover .top-event-photo {
  box-shadow: 0 0 6px 1px rgba(0, 0, 0, 0.3);
}

.top-event-photo img.photo {
  width: 100%;
}

.top-event-photo img.shoplogo {
  position: absolute;
  top: 0;
  left: 0;
  height: 18%;
  width: auto;
}

.top-event-photo img.newicon {
  position: absolute;
  top: 0;
  right: 0;
  height: 8%;
  width: auto;
}

.top-event-info {
  font-size: 1.2rem;
  color: #6d6d6d;
  line-height: 2rem;
  padding-top: 10px;
}

.top-event-info span[class^="shop-icon-"] {
  display: inline-block;
  padding: 0 3px;
  line-height: 2rem;
  height: 2rem;
  color: #ffffff;
  margin-right: 5px;
}

.top-event-info span.shop-icon-n {
  background-color: #ae81e9;
}

.top-event-info span.shop-icon-e {
  background-color: #8fc31f;
}

.top-event-info span.top-event-date {
  padding-top: 5px;
  font-size: 1.6rem;
  line-height: 2rem;
  font-weight: bold;
  color: #eb0d0d;
}

.top-event-description {
  padding-top: 5px;
  font-size: 1.6rem;
  line-height: 1.8rem;
  font-weight: bold;
}

.ichiran-link {
  padding-top: 10px;
  text-align: center;
}

.ichiran-link a {
  display: inline-block;
  padding: 10px 15px;
  text-align: center;
  color: #ffa43d;
  font-size: 1.4rem;
  font-weight: bold;
  line-height: 1;
  border-radius: 20px;
  border: solid 2px #ffa43d;
  background-color: #fff;
  transition: 0.2s;
}

.ichiran-link a:hover {
  color: #fff;
  background-color: #ffa43d;
}

/*毎月恒例イベント*/
.kourei-list-bg {
  padding: 30px 0;
  background: url(../images/top_kourei_bg.gif) repeat;
}

.kourei-list-item {
  float: left;
  width: 32%;
  margin-right: 2%;
}

.kourei-list-item:last-child {
  margin-right: 0;
}

.kourei-list-item a {
  border-radius: 20px;
  overflow: hidden;
  display: block;
  transition: 0.2s;
}

.kourei-list-item a:hover {
  box-shadow: 0 0 6px 1px rgba(0, 0, 0, 0.3);
}

.kourei-list-item a img {
  width: 100%;
}

/*チラシ情報*/
.chirashi-list-bg {
  padding: 30px 0;
  background: url(../images/top_chirashi_bg.gif) repeat;
}
.chirashi-list{
  display: flex;
  margin: 0 -10px;
  justify-content: center;
  flex-wrap: wrap;
}

.chirashi-list-item {
  box-sizing: border-box;
  width: 20%;
  padding: 0 10px;
}

.chirashi-list-item:last-child {
  margin-right: 0;
}

.chirashi-list-item a {
  display: block;
  text-align: center;
  font-size: 1.1rem;
}

.chirashi-list-item a img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 5px;
  transition: 0.2s;
}

.chirashi-list-item a:hover img {
  box-shadow: 0 0 6px 1px rgba(0, 0, 0, 0.3);
}

.chirashi-list-item a.no-chirashi:hover img {
  box-shadow: none;
}

/*バナーリスト*/
.bnr-list {
  padding: 30px 0;
  text-align: center;
  margin: 0 -10px;
}

.bnr-list li {
  float: left;
  width: 25%;
  margin: 0 0 20px;
  padding: 0 10px;
}

.bnr-list li:nth-child(5n) {
  margin-left: 12.5%;
}

.bnr-list li a {
  display: block;
  transition: 0.2s;
  border-radius: 5px;
  overflow: hidden;
}

.bnr-list li a:hover {
  box-shadow: 0 0 6px 1px rgba(0, 0, 0, 0.3);
}

.bnr-list li a img {
  width: 100%;
}

/* ========================== エルちゃんのページ ========================== */
.eruchan-yoro {
  margin-bottom: 30px;
}

/*ページ送り*/
.pager {
  text-align: center;
  padding-top: 30px;
  margin: 10px 0 0 0;
}

.pager li {
  display: inline-block;
}

.pager li a,
.pager li.cur span {
  display: block;
  background: #bbb;
  padding: 5px 10px;
  margin: 0 3px 5px 3px;
  line-height: 1;
  font-size: 15px;
  border-radius: 4px;
  color: #fff;
}

.pager li a:hover,
.pager li.cur span {
  background: #888;
}

/*バックナンバーリスト*/
.backeruchan {
  font-size: 18px;
  font-weight: bold;
  color: #ffa43d;
  margin-bottom: 10px;
}

.eruchan-list a {
  font-size: 15px;
}
}
