@charset "UTF-8";

/* 共通部分
------------------------------- */
html {
  font-size: 100%;
}
body {
  font-family: "Lato", "Noto Sans JP", "游ゴシック",YuGothic,"ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  line-height: 1.7;
  color: #333;
  display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
main {
  width: 100%;
  margin: 0;
  padding: 0;
}
a {
  text-decoration: none;
}
img {
  width: 100%;
}
.for-pc {
  display: block;
}
.for-sp {
  display: none;
}
iframe {
  width: 100%;
}

/* リンクの位置調整 */
.link-anchor {
  position: relative;
  top: -20px;
  display: block;
}

/* IE用object-fit */	
.ofi {
  object-fit: contain;
  font-family: 'object-fit: contain;'
}


/* ヘッダー
------------------------------- */
.shoplist-header-wrap {
  position: relative;
  width: 100%;
  padding: 30px 0 0;
}
.shoplist-header-area {
  position: -webkit-sticky;/*Safari*/
  position: sticky;
  top: 20px;
  padding: 0 0 20px;
}
.shoplist-header-menubox {
  position: relative;
  margin: 0;
}
.shoplist-logobox {
  position: relative;
  width: 10%;
  margin: 0 auto 20px;
  padding: 0 0 20px;
  text-align: center;
  border-bottom: 1px solid #e9c468;
  z-index: 1;
}
.shoplist-logoimg {
  width: 100%;
}
.shoplist-linebk_left {
  position: absolute;
  top: 10px;
  left: 0;
  width: 15%;
  opacity: 0.5;
}
.shoplist-linebk_right {
  position: absolute;
  top: 160px;
  right: 0;
  width: 15%;
  opacity: 0.5;
}


/* クーポン参加店舗
------------------------------- */
.shoplist-ttl_area {
  width: 100%;
  margin: 0 auto;
  padding: 0px 2%;
}
.shoplist-ttl_box {
  width: 80%;
  margin: 0 auto;
  padding: 0;
  text-align: center;
}
.shoplist-ttl {
  display: flex;
	justify-content: center;
	align-items: center;
	font-size: 2em;
	text-align: center;
}
.shoplist-ttl::before,
.shoplist-ttl::after {
	content: '';
	width: 3px;
	height: 40px;
	background-color: #A13A31;
}
.shoplist-ttl::before {
	margin-right: 30px;
	transform: rotate(-35deg)
}
.shoplist-ttl::after {
	margin-left: 30px;
	transform: rotate(35deg)
}
.shoplist-ttl_box p {
  font-size: 1.25em;
  color: #A13A31;
  margin: 0 0 1.25em;
}
.shoplist-ttl_box p:last-child {
  margin: 0;
} 

/* ショップ情報 */
.shopinfo-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2em;
  width: 100%;
  margin: 30px auto 0;
  padding: 0 6%;
}
.shopinfo_area {
  margin: 0;
  padding: 1.5em 1em;
  background-color: #0A445F;
  border-radius: 18px;
}
.shopinfo_area:nth-child(2n) {
  background-color: #A13A31;
}
.shopinfo_heading {
  position: relative;
	padding-left: 70px;
	font-size: 1.375em;
  font-weight: 700;
  line-height: 1.4;
  color: rgba(255,255,255,1);
  margin: 0 0 20px;
}
.shopinfo_heading::before {
	content: attr(data-number);
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	color: rgba(255,255,255,0.3);
	font-size: 50px;
}
.shopinfo_heading::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100px;
	height: 1px;
	background-color: rgba(205,187,156,0.3);
}
.shopinfo_txt {
  margin: 0 0 20px;
  font-size: 1em;
  color: #fff;
}
.shopinfo_box {
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
  padding: 0;
}
.shopinfo_imgbox {
  width: 100%;
  height: 100%;
  margin: 0 1em 0 0;
  padding: 6px;
  background-color: #fff;
  border-radius: 10px;
}
.shopinfo_imgbox img {
  object-fit: contain;
  border-radius: 6px;
}
.shopinfo_txtbox {
  max-width: 400px;
  width: 100%;
  margin: 0;
  padding: 0;
}
table {
  width: 100%;
  margin: 0 0 10px;
  border-spacing: 0 0.5em
}
.shopinfo_tbl th {
  text-align: left;
  width: 30%;
  vertical-align: top;
  font-size: 1em;
  font-weight: 400;
  color: #fff;
}
.shopinfo_tbl td {
  text-align: left;
  width: 70%;
  font-size: 1em;
  color: #fff;
}
.shopinfo_tbl td a {
  color: #fff;
}
.shopmap_btnbox {
  text-align: left;
  margin: 0;
}
.shopmap_btnbox a {
  margin: 10px 0 0;
}
.shopmap_btnbox a:nth-child(1) {
  margin: 10px 0 0;
}

.shopmap_btn {
  display: inline-block;
  padding: 0.5em 1em;
  text-decoration: none;
  color: #fff;
  border: dashed 1px #fff;
  border-radius: 3px;
  transition: .4s;
  color: #fff;
}
.shopmap_btn:hover {
  border-style: dotted;
  color: #eee;
}
.shopmap_btn:nth-child(1) {
  background-color: #06c755;
  border: none;
}
.shopmap_btn:hover:nth-child(1) {
  border-style: none;
}


/* 主催・後援紹介エリア
------------------------------- */
.special_area {
  margin: 60px 0 0;
  padding: 40px 0 0;
  background-color: #DDCCAD;
}
.special-wrap {
  width: 100%;
  text-align: center;
  margin: 0 auto;
  padding: 0 2% 20px;
}
.special-logo {
  width: 100%;
  margin: 0 auto 20px;
}
.special-logo img {
  width: 152px;
}
.special-logo p {
  font-size: 0.875em;
  color: #8B272B;
  margin-top: 0;
}
.special-txt {
  font-size: 0.875em;
}
.special-txt p {
  margin: 0 0 10px;
}
.special-txt p:last-child {
  margin: 0;
}


/* フッター
------------------------------- */
.footer-wrap {
  width: 100%;
  background-color: #DDCCAD;
  margin: 0;
  padding: 10px 0 20px;
}
.footer-area {
  width: 100%;
  text-align: center;
  margin: 0 auto;
  padding: 0;
}
/* ページトップ */
#page-top a{
  display: flex;
  justify-content: center;
  align-items: center;
  width: 80px;
  text-transform: uppercase; 
  text-decoration: none;
  transition: all 0.3s;
}
#page-top a:hover{
  opacity: 0.8;
}
#page-top {
  position: fixed;
  right: 10px;
  z-index: 2;
  opacity: 0;
  transform: translateY(100px);
}
#page-top.UpMove{
  animation: UpAnime 0.5s forwards;
}
@keyframes UpAnime{
  from {
    opacity: 0;
  transform: translateY(100px);
  }
  to {
    opacity: 1;
  transform: translateY(0);
  }
}
#page-top.DownMove{
  animation: DownAnime 0.5s forwards;
}
@keyframes DownAnime{
  from {
    opacity: 1;
  transform: translateY(0);
  }
  to {
    opacity: 1;
  transform: translateY(100px);
  }
}


@media only screen and (max-width: 1020px) and (min-width: 768px) {

  /* 共通部分
  ------------------------------- */
  html {
    font-size: 100%;
  }
  body {
    font-family: "Lato", "Noto Sans JP", "游ゴシック",YuGothic,"ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    line-height: 1.7;
    color: #333;
    display: flex;
    justify-content: flex-start;
    flex-direction: column;
    flex-wrap: wrap;
  }
  main {
    width: 100%;
    margin: 0;
    padding: 0;
  }
  a {
    text-decoration: none;
  }
  img {
    width: 100%;
  }
  .for-pc {
    display: block;
  }
  .for-sp {
    display: none;
  }
  iframe {
    width: 100%;
  }
  /* リンクの位置調整 */
  .link-anchor {
    position: relative;
    top: -20px;
    display: block;
  }
  /* IE用object-fit */	
  .ofi {
    object-fit: contain;
    font-family: 'object-fit: contain;'
  }


  /* ヘッダー
  ------------------------------- */
  .shoplist-header-wrap {
    position: relative;
    width: 100%;
    padding: 30px 0 0;
  }
  .shoplist-header-area {
    position: -webkit-sticky;/*Safari*/
    position: sticky;
    top: 20px;
    padding: 0 0 20px;
  }
  .shoplist-header-menubox {
    position: relative;
    margin: 0;
  }
  .shoplist-logobox {
    position: relative;
    width: 20%;
    margin: 0 auto 20px;
    padding: 0 0 20px;
    text-align: center;
    border-bottom: 1px solid #e9c468;
    z-index: 1;
  }
  .shoplist-logoimg {
    width: 100%;
  }
  .shoplist-linebk_left {
    position: absolute;
    top: 10px;
    left: 0;
    width: 15%;
    opacity: 0.5;
  }
  .shoplist-linebk_right {
    position: absolute;
    top: 160px;
    right: 0;
    width: 15%;
    opacity: 0.5;
  }


  /* クーポン参加店舗
  ------------------------------- */
  .shoplist-ttl_area {
    width: 100%;
    margin: 0 auto;
    padding: 0px 2%;
  }
  .shoplist-ttl_box {
    width: 80%;
    margin: 0 auto;
    padding: 0;
    text-align: center;
  }
  .shoplist-ttl {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.75em;
    text-align: center;
  }
  .shoplist-ttl::before,
  .shoplist-ttl::after {
    content: '';
    width: 3px;
    height: 40px;
    background-color: #A13A31;
  }
  .shoplist-ttl::before {
    margin-right: 30px;
    transform: rotate(-35deg)
  }
  .shoplist-ttl::after {
    margin-left: 30px;
    transform: rotate(35deg)
  }

  /* ショップ情報 */
  .shopinfo-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2em;
    width: 100%;
    margin: 30px auto 0;
    padding: 0 6%;
  }
  .shopinfo_area {
    margin: 0;
    padding: 1em 1em 1.5em;
    background-color: #0A445F;
    border-radius: 18px;
  }
  .shopinfo_area:nth-child(2n) {
    background-color: #A13A31;
  }
  .shopinfo_heading {
    position: relative;
    padding-left: 50px;
    font-size: 1.25em;
    font-weight: 700;
    line-height: 1.4;
    color: rgba(255,255,255,1);
    margin: 0 0 20px;
  }
  .shopinfo_heading::before {
    content: attr(data-number);
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    color: rgba(255,255,255,0.3);
    font-size: 36px;
  }
  .shopinfo_heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 1px;
    background-color: rgba(205,187,156,0.3);
  }
  .shopinfo_box {
    display: flex;
    justify-content: flex-start;
    flex-direction: column;
    margin: 0 auto;
    padding: 0;
  }
  .shopinfo_imgbox {
    width: 100%;
    height: 100%;
    margin: 0 0 20px;
    padding: 6px;
    background-color: #fff;
    border-radius: 10px;
  }
  .shopinfo_imgbox img {
    object-fit: contain;
    border-radius: 6px;
  }
  .shopinfo_txtbox {
    max-width: 400px;
    width: 100%;
    margin: 0;
    padding: 0;
  }
  table {
    width: 100%;
    margin: 0 0 10px;
    border-spacing: 0 0.5em
  }
  .shopinfo_tbl th {
    text-align: left;
    width: 30%;
    vertical-align: top;
    font-size: 1em;
    font-weight: 400;
    color: #fff;
  }
  .shopinfo_tbl td {
    text-align: left;
    width: 70%;
    font-size: 1em;
    color: #fff;
  }
  .shopinfo_tbl td a {
    color: #fff;
  }
  .shopmap_btnbox {
    text-align: left;
    margin: 0;
  }
  .shopmap_btnbox a {
    margin: 20px 0 0;
  }
  .shopmap_btnbox a:nth-child(1) {
    margin: 0;
  }

  .shopmap_btn {
    display: inline-block;
    padding: 0.5em 1em;
    text-decoration: none;
    color: #fff;
    border: dashed 1px #fff;
    border-radius: 3px;
    transition: .4s;
    color: #fff;
  }
  .shopmap_btn:hover {
    border-style: dotted;
    color: #eee;
  }
  

  /* 主催・後援紹介エリア
  ------------------------------- */
  .special_area {
    margin: 60px 0 0;
    padding: 40px 0 0;
    background-color: #DDCCAD;
  }
  .special-wrap {
    width: 100%;
    text-align: center;
    margin: 0 auto;
    padding: 0 2% 20px;
  }
  .special-logo {
    width: 100%;
    margin: 0 auto 20px;
  }
  .special-logo img {
    width: 152px;
  }
  .special-logo p {
    font-size: 0.875em;
    color: #8B272B;
    margin-top: 0;
  }
  .special-txt {
    font-size: 0.875em;
  }
  .special-txt p {
    margin: 0 0 10px;
  }
  .special-txt p:last-child {
    margin: 0;
  }


  /* フッター
  ------------------------------- */
  .footer-wrap {
    width: 100%;
    background-color: #DDCCAD;
    margin: 0;
    padding: 10px 0 20px;
  }
  .footer-area {
    width: 100%;
    text-align: center;
    margin: 0 auto;
    padding: 0;
  }
  /* ページトップ */
  #page-top a{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 80px;
    text-transform: uppercase; 
    text-decoration: none;
    transition: all 0.3s;
  }
  #page-top a:hover{
    opacity: 0.8;
  }
  #page-top {
    position: fixed;
    right: 10px;
    z-index: 2;
    opacity: 0;
    transform: translateY(100px);
  }
  #page-top.UpMove{
    animation: UpAnime 0.5s forwards;
  }
  @keyframes UpAnime{
    from {
      opacity: 0;
    transform: translateY(100px);
    }
    to {
      opacity: 1;
    transform: translateY(0);
    }
  }
  #page-top.DownMove{
    animation: DownAnime 0.5s forwards;
  }
  @keyframes DownAnime{
    from {
      opacity: 1;
    transform: translateY(0);
    }
    to {
      opacity: 1;
    transform: translateY(100px);
    }
  }
}


@media only screen and (max-width: 767px) {

  /* 共通部分
  ------------------------------- */
  html {
    font-size: 100%;
  }
  body {
    font-family: "Lato", "Noto Sans JP", "游ゴシック",YuGothic,"ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    line-height: 1.7;
    color: #333;
    display: flex;
    justify-content: flex-start;
    flex-direction: column;
    flex-wrap: wrap;
  }
  main {
    width: 100%;
    margin: 0;
    padding: 0;
  }
  a {
    text-decoration: none;
  }
  img {
    width: 100%;
  }
  .for-pc {
    display: none;
  }
  .for-sp {
    display: block;
  }
  iframe {
    width: 100%;
  }
  /* リンクの位置調整 */
  .link-anchor {
    position: relative;
    top: -20px;
    display: block;
  }
  /* IE用object-fit */	
  .ofi {
    object-fit: contain;
    font-family: 'object-fit: contain;'
  }


  /* ヘッダー
  ------------------------------- */
  .shoplist-header-wrap {
    position: relative;
    width: 100%;
    padding: 30px 0 0;
  }
  .shoplist-header-area {
    position: -webkit-sticky;/*Safari*/
    position: sticky;
    top: 20px;
    padding: 0 0 20px;
  }
  .shoplist-header-menubox {
    position: relative;
    margin: 0;
  }
  .shoplist-logobox {
    position: relative;
    width: 40%;
    margin: 0 auto 20px;
    padding: 0 0 20px;
    text-align: center;
    border-bottom: 1px solid #e9c468;
    z-index: 1;
  }
  .shoplist-logoimg {
    width: 100%;
  }
  .shoplist-linebk_left {
    position: absolute;
    top: 10px;
    left: 0;
    width: 30%;
    opacity: 0.5;
  }
  .shoplist-linebk_right {
    position: absolute;
    top: 160px;
    right: 0;
    width: 30%;
    opacity: 0.5;
  }


  /* クーポン参加店舗
  ------------------------------- */
  .shoplist-ttl_area {
    width: 100%;
    margin: 0 auto;
    padding: 0px 2%;
  }
  .shoplist-ttl_box {
    width: 100%;
    margin: 0 auto;
    padding: 0;
    text-align: center;
  }
  .shoplist-ttl {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.25em;
    text-align: center;
  }
  .shoplist-ttl::before,
  .shoplist-ttl::after {
    content: '';
    width: 3px;
    height: 40px;
    background-color: #A13A31;
  }
  .shoplist-ttl::before {
    margin-right: 20px;
    transform: rotate(-35deg)
  }
  .shoplist-ttl::after {
    margin-left: 20px;
    transform: rotate(35deg)
  }
  .shoplist-ttl_box p {
    font-size: 1em;
    color: #A13A31;
    margin: 0 0 1em;
  }
  .shoplist-ttl_box p:last-child {
    margin: 0;
  } 

  /* ショップ情報 */
  .shopinfo-wrap {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2em;
    width: 100%;
    margin: 30px auto 0;
    padding: 0 6%;
  }
  .shopinfo_area {
    margin: 0;
    padding: 1em 1em 1.5em;
    background-color: #0A445F;
    border-radius: 18px;
  }
  .shopinfo_area:nth-child(2n) {
    background-color: #A13A31;
  }
  .shopinfo_heading {
    position: relative;
    padding-left: 50px;
    font-size: 1.125em;
    font-weight: 700;
    line-height: 1.4;
    color: rgba(255,255,255,1);
    margin: 0 0 10px;
  }
  .shopinfo_heading::before {
    content: attr(data-number);
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    color: rgba(255,255,255,0.3);
    font-size: 34px;
  }
  .shopinfo_heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 1px;
    background-color: rgba(205,187,156,0.3);
  }
  .shopinfo_txt {
    margin: 0 0 10px;
    font-size: 0.875em;
    color: #fff;
  }
  .shopinfo_box {
    display: flex;
    justify-content: flex-start;
    flex-direction: column;
    margin: 0 auto;
    padding: 0;
  }
  .shopinfo_imgbox {
    width: 100%;
    height: 100%;
    margin: 0 0 10px;
    padding: 6px;
    background-color: #fff;
    border-radius: 10px;
  }
  .shopinfo_imgbox img {
    object-fit: contain;
    border-radius: 6px;
  }
  .shopinfo_txtbox {
    max-width: 400px;
    width: 100%;
    margin: 0;
    padding: 0;
  }
  table {
    width: 100%;
    margin: 0 0 10px;
    border-spacing: 0 0.5em
  }
  .shopinfo_tbl th {
    text-align: left;
    width: 30%;
    vertical-align: top;
    font-size: 0.875em;
    font-weight: 400;
    color: #fff;
  }
  .shopinfo_tbl td {
    text-align: left;
    width: 70%;
    font-size: 0.875em;
    color: #fff;
  }
  .shopinfo_tbl td a {
    color: #fff;
  }
  .shopmap_btnbox {
    text-align: left;
    margin: 0;
  }
  .shopmap_btnbox a {
    margin: 20px 0 0;
  }
  .shopmap_btnbox a:nth-child(1) {
    margin: 0;
  }
  .shopmap_btn {
    display: inline-block;
    padding: 0.5em 1em;
    text-decoration: none;
    color: #fff;
    border: dashed 1px #fff;
    border-radius: 3px;
    transition: .4s;
    color: #fff;
  }
  .shopmap_btn:hover {
    border-style: dotted;
    color: #eee;
  }
  

  /* 主催・後援紹介エリア
  ------------------------------- */
  .special_area {
    margin: 60px 0 0;
    padding: 40px 0 0;
    background-color: #DDCCAD;
  }
  .special-wrap {
    width: 100%;
    text-align: center;
    margin: 0 auto;
    padding: 0 2% 20px;
  }
  .special-logo {
    width: 100%;
    margin: 0 auto 20px;
  }
  .special-logo img {
    width: 152px;
  }
  .special-logo p {
    font-size: 0.875em;
    color: #8B272B;
    margin-top: 0;
  }
  .special-txt {
    font-size: 0.75em;
  }
  .special-txt p {
    margin: 0 0 10px;
  }
  .special-txt p:last-child {
    margin: 0;
  }


  /* フッター
  ------------------------------- */
  .footer-wrap {
    width: 100%;
    background-color: #DDCCAD;
    margin: 0;
    padding: 10px 0 20px;
  }
  .footer-area {
    width: 100%;
    text-align: center;
    margin: 0 auto;
    padding: 0;
  }
  /* ページトップ */
  #page-top a{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 80px;
    text-transform: uppercase; 
    text-decoration: none;
    transition: all 0.3s;
  }
  #page-top a:hover{
    opacity: 0.8;
  }
  #page-top {
    position: fixed;
    right: 10px;
    z-index: 2;
    opacity: 0;
    transform: translateY(100px);
  }
  #page-top.UpMove{
    animation: UpAnime 0.5s forwards;
  }
  @keyframes UpAnime{
    from {
      opacity: 0;
    transform: translateY(100px);
    }
    to {
      opacity: 1;
    transform: translateY(0);
    }
  }
  #page-top.DownMove{
    animation: DownAnime 0.5s forwards;
  }
  @keyframes DownAnime{
    from {
      opacity: 1;
    transform: translateY(0);
    }
    to {
      opacity: 1;
    transform: translateY(100px);
    }
  }
}