@charset "UTF-8";

/* CSS Document */
/*------------------------------

  標準レイアウト・基本カラー

------------------------------*/
:root {
  --main_color: #006837;
}

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500;700;900&display=swap');

body {
  font-family: 'Noto Sans JP', sans-serif, 游ゴシック体, 游ゴシック, YuGothic, メイリオ, Meiryo, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, sans-serif;
  background: #FCF4E1;
  color: #534741;
  line-height: 2;
}

a {
  text-decoration: none;
}

p img {
  max-width: 100%;
}

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

@media screen and (max-width: 896px) {
  body {
    font-size: 14px;
    line-height: 1.6;
  }
}

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

/*------------------------------

  ヘッダー

------------------------------*/
header {}

header .wrap {
  align-items: center;
  display: flex;
}

header .logo {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 250px;
  padding: 20px;
}

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

@media screen and (max-width: 896px) {
  header .logo {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    width: 170px;
    padding: 15px;
  }
}

/*------------------------------

  グローバルナビゲーション

------------------------------*/
@media screen and (max-width: 1440px) {}

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

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

/*
  ドロップダウンメニュー
------------------------------*/
@media screen and (max-width: 896px) {}

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

/*
  ハンバーガーメニュー
------------------------------*/
header .toggle {
  background: var(--main_color);
  color: #fff;
  cursor: pointer;
  display: block;
  position: fixed;
  top: 0;
  right: 0;
  text-align: center;
  transition: all 0.6s;
  -moz-transition: all 0.6s;
  -webkit-transition: all 0.6s;
  z-index: 100;
  width: 140px;
  height: 50px;
}

header .toggle::after {
  content: 'メニュー';
  font-size: 1rem;
  font-weight: 600;
  line-height: 1;
  margin: auto;
  position: absolute;
  top: 18px;
  left: .8rem;
}

header .toggle span {
  background: #fff;
  display: block;
  position: absolute;
  right: 1rem;
  transition: all 0.3s;
  -moz-transition: all 0.3s;
  -webkit-transition: all 0.3s;
  width: 30px;
  height: 2.5px;
  margin: auto;
}

header .toggle span:nth-of-type(1) {
  top: 18px;
}

header .toggle span:nth-of-type(2) {
  top: 28px;
}

header .toggle.Active span:nth-of-type(1) {
  transform: rotate(-135deg);
  -moz-transform: rotate(-135deg);
  -webkit-transform: rotate(-135deg);
  top: 24px;
  right: 1rem;
}

header .toggle.Active span:nth-of-type(2) {
  transform: rotate(135deg);
  -moz-transform: rotate(135deg);
  -webkit-transform: rotate(135deg);
  top: 24px;
  right: 1rem;
}

header .overlay {
  /* 背景ぼかし */
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  background: rgba(0, 0, 0, 0.1);
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  width: 100%;
  height: calc(100vh);
}

/* このクラスを、jQueryで付与・削除する */
header nav.global.PanelActive {
  right: 0;
  transform: translateY(0%);
}

header nav.global {
  background: #FCF4E1;
  overflow: auto;
  position: fixed;
  top: 0;
  right: -100%;
  transition: all 0.6s;
  z-index: 99;
  width: 80%;
  height: calc(100%);
  max-width: 600px;
  -webkit-overflow-scrolling: touch;
}

header nav.global ul {
  list-style: none;
  position: relative;
  top: 40%;
  transform: translateY(-40%);
  width: 100%;
  margin: 0 auto;
  padding: 0;
}

header nav.global ul li {
  margin: 15px 0;
}

header nav.global ul li a {
  color: var(--main_color);
  display: block;
  font-size: 20px;
  font-weight: 900;
  text-align: center;
  padding: 10px;
}

header nav.global ul li a:hover {
  opacity: 1;
}

.header_bg {
  height: 0;
}

@media screen and (max-width: 480px) {
  header nav.global {
    max-width: 300px;
  }
}

/*------------------------------

	footer

------------------------------*/
footer {}

footer .wrap {
  text-align: center;
  width: 90%;
  margin: 80px auto;
}

footer .wrap div img {
  width: 50%;
  max-width: 250px;
}

footer .wrap p {
  font-size: 11px;
  font-weight: 600;
  margin-top: 10px;
}

footer .wrap .copylight {
  color: var(--main_color);
  font-size: 12px;
  font-weight: 600;
  margin-top: 30px;
}

/*
  リンク
------------------------------*/
footer .links {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  width: 90%;
  max-width: 900px;
  margin: 50px auto 30px;
}

footer .links a {
  display: block;
  max-width: 200px;
  margin-bottom: 20px;
}

footer .links a img {
  width: 100%;
  height: auto;
}

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

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

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

/*------------------------------

	pagetop

------------------------------*/
.page_top {
  position: fixed;
  bottom: 20px;
  right: 20px;
}

.page_top a {
  background: var(--main_color);
  border-radius: 50%;
  color: #fff;
  display: block;
  position: relative;
  text-decoration: none;
  text-align: center;
  transition: .3s;
  width: 50px;
  height: 50px;
}

.page_top a .arrow {
  display: block;
}

.page_top a .arrow::before {
  content: '';
  background: url("../images/arrow_pagetop.svg") no-repeat;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  transition: all .3s;
  width: 30px;
  height: 30px;
  margin: auto;
}

.page_top a:hover {
  background: #f15a24;
  opacity: 1;
  text-decoration: none;
}

.page_top a:hover .arrow::before {
  top: -10px;
}

/*------------------------------

	pager

------------------------------*/
.pager ol {
  display: flex;
  justify-content: center;
  list-style: none;
  margin-top: 30px;
}

.pager ol li {
  display: inline-block;
  width: 35px;
  height: 35px;
  margin: 0 5px;
}

.pager ol li span,
.pager ol li a {
  color: #ffffff;
  display: block;
  font-size: 16px;
  font-weight: 600;
  line-height: 35px;
  text-align: center;
  transition: .2s;
  width: 100%;
  height: 100%;
}

.pager ol li span {
  background: #cccccc;
}

.pager ol li a {
  background: var(--main_color);
}

.pager ol li a:hover {
  background: #f15a24;
}

/*------------------------------

  ページ共通

------------------------------*/
figure img {
  width: 100%;
  vertical-align: bottom;
}

/*
  フェードイン
------------------------------*/
.fade {
  opacity: 0;
  position: relative;
  top: 50px;
}

.fade.FadeIn {
  animation: fade 1s ease forwards;
}

@keyframes fade {
  0% {
    opacity: 0;
    top: 50px;
  }

  100% {
    opacity: 1;
    top: 0;
  }
}

li.fade:nth-child(2) {
  animation-delay: .2s;
}

li.fade:nth-child(3) {
  animation-delay: .4s;
}

/*
  スライドイン
------------------------------*/
.slide {
  overflow: hidden;
  position: relative;
  width: 100%;
}

.slide img {
  position: absolute;
  bottom: -500px;
  right: 5%;
  height: auto;
}

.slide.SlideIn img {
  animation: slide 1s ease forwards;
}

@keyframes slide {
  0% {
    bottom: -500px;
  }

  100% {
    bottom: 0;
  }
}

/*
  揺れるアニメーション
------------------------------*/
.swing {
  animation: swing 3s steps(2) infinite;
}

@keyframes swing {
  0% {
    transform: rotate(5deg);
  }

  50% {
    transform: rotate(-5deg);
  }

  100% {
    transform: rotate(5deg);
  }
}

/*
  上下に動くアニメーション
------------------------------*/
@keyframes updown {
  0% {
    background-position-y: 0;
  }

  50% {
    background-position-y: 8px;
  }

  100% {
    background-position-y: 0;
  }
}

/*
  ローディング
------------------------------*/
.loading {
  background: #FCF4E1;
  position: fixed;
  z-index: 200;
  width: 100%;
  height: 100vh;
  margin: 0;
  padding: 0;
}

.loading .wrap {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 200px;
  height: 60px;
}

.loading .wrap .circle {
  animation: circle .5s alternate infinite ease;
  background-color: #f0454e;
  border-radius: 50%;
  position: absolute;
  left: 15%;
  transform-origin: 50%;
  width: 30px;
  height: 30px;
}

@keyframes circle {
  0% {
    border-radius: 50px 50px 25px 25px;
    top: 60px;
    transform: scaleX(1.7);
    height: 5px;
  }

  40% {
    border-radius: 50%;
    transform: scaleX(1);
    height: 20px;
  }

  100% {
    top: 0%;
  }
}

.loading .wrap .circle:nth-child(2) {
  animation-delay: .2s;
  background-color: #00a8b8;
  left: 42%;
}

.loading .wrap .circle:nth-child(3) {
  animation-delay: .3s;
  background-color: #58498d;
  left: auto;
  right: 15%;
}

.loading .wrap .shadow {
  animation: shadow .5s alternate infinite ease;
  background-color: rgba(0, 0, 0, .1);
  border-radius: 50%;
  position: absolute;
  top: 62px;
  left: 15%;
  transform-origin: 50%;
  z-index: -1;
  width: 30px;
  height: 4px;
}

@keyframes shadow {
  0% {
    transform: scaleX(1.5);
  }

  40% {
    opacity: .5;
    transform: scaleX(1);
  }

  100% {
    opacity: .2;
    transform: scaleX(.2);
  }
}

.loading .wrap .shadow:nth-child(4) {
  animation-delay: .2s;
  left: 42%;
}

.loading .wrap .shadow:nth-child(5) {
  animation-delay: .3s;
  left: auto;
  right: 15%;
}

/*
  パンくずリスト
------------------------------*/
.breadcrumb {
  font-size: 14px;
  list-style: none;
  position: relative;
  z-index: 1;
  margin: 0;
  padding: 10px 2.5%;
}

.breadcrumb ol {}

.breadcrumb li {
  display: inline-block;
}

.breadcrumb li::after {
  border-color: transparent transparent transparent #ffffff;
  border-style: solid;
  border-width: 3px 0 3px 6px;
  content: '';
  display: inline-block;
  width: 0;
  height: 0;
  margin: 2px 5px;
}

.breadcrumb li:last-child::after {
  content: none;
}

.breadcrumb li a,
.breadcrumb li {
  color: #ffffff;
}

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

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

/*
  ボタン
------------------------------*/
.button {
  display: inline-block;
  text-align: center;
  min-width: 200px;
}

.button a {
  border: solid 2px var(--main_color);
  border-radius: 50px;
  color: var(--main_color);
  display: block;
  font-size: 16px;
  font-weight: 600;
  position: relative;
  transition: .3s;
  padding: 10px 30px;
}

.button a:hover {
  background: #bad3c7;
}

/*
  タグ
------------------------------*/
ul.tags {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
}

ul.tags li {
  margin: 0 8px 5px 0;
}

ul.tags li a {
  border: solid 2px var(--main_color);
  border-radius: 50px;
  color: var(--main_color);
  display: block;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.4;
  position: relative;
  transition: .3s;
  padding: 3px 12px 3px 24px;
}

ul.tags li a:hover {
  background: #bad3c7;
}

ul.tags li a::before {
  content: '#';
  font-size: 16px;
  position: absolute;
  top: 0;
  left: 9px;
}

@media screen and (max-width: 480px) {
  ul.tags li {
    margin: 0 5px 3px 0;
  }

  ul.tags li a {
    font-size: 12px;
    padding: 2px 10px 2px 20px;
  }
}

/*
  お知らせリスト
------------------------------*/
.infolist {
  font-size: 14px;
  font-weight: 600;
  list-style: none;
}

.infolist>li {
  align-items: flex-start;
  display: flex;
}

.infolist>li a {
  align-items: flex-start;
  color: #534741;
  display: flex;
  width: 100%;
}

.infolist>li+li {
  margin-top: 20px;
}

.infolist .category {
  color: #ffffff;
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  padding: 0 5px;
  text-align: center;
  min-width: 90px;
  margin-right: 10px;
}

.infolist .category.news {
  background: #f15a24;
}

.infolist .category.shops {
  background: #4295d3;
}

.infolist .category.event {
  background: #81A82A;
}

.infolist time {
  display: inline-block;
  margin-right: 10px;
}

@media screen and (max-width: 896px) {
  .infolist>li {
    flex-wrap: wrap;
  }

  .infolist>li p {
    width: 100%;
  }
}

@media screen and (max-width: 550px) {
  .infolist>li a {
    flex-wrap: wrap;
  }

  .infolist>li a p {
    line-height: 1.1;
    width: 100%;
    margin: 6px 0;
  }
}

/*
  ショップリスト
------------------------------*/
.shoplist {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  list-style: none;
  width: 90%;
  max-width: 1500px;
  margin: 200px auto 50px;
}

.subpage .shoplist {
  margin: 0 auto;
}

.shoplist>li {
  background: #ffffff;
  border: solid 2px var(--main_color);
  border-radius: 25px;
  width: 30%;
  margin-top: 20px;
}

.shoplist figure {
  border-radius: 24px 24px 0 0;
  overflow: hidden;
  height: 300px;
}

.shoplist figure img {
  background: #aaaaaa;
  object-fit: cover;
  transition: .8s;
  width: 100%;
  height: 100%;
}

.shoplist>li>a {
  display: block;
}

.shoplist>li>a:hover figure img {
  transform: scale(1.1);
}

.shoplist .inner {
  padding: 20px 30px 30px;
}

.shoplist .inner>span a {
  color: var(--main_color);
  font-weight: 600;
}

.shoplist .inner h3 a {
  display: inline-block;
  color: #534741;
  font-size: 24px;
  margin-bottom: 10px;
}

.shoplist .inner .text {
  font-size: 14px;
  margin-top: 10px;
}

/* 番号付きリストの場合 */
ol.shoplist {
  counter-reset: number;
  list-style-type: none;
}

ol.shoplist>li {
  position: relative;
  margin-bottom: 20px;
}

/* ol.shoplist>li::before {
  background: #ffffff;
  border: solid 2px var(--main_color);
  border-radius: 70px;
  color: var(--main_color);
  content: counter(number);
  counter-increment: number;
  font-size: 28px;
  font-weight: 900;
  line-height: 60px;
  position: absolute;
  top: -15px;
  left: -15px;
  text-align: center;
  z-index: 2;
  width: 70px;
  height: 70px;
} */

ol.shoplist>li .map_no {
  background: #ffffff;
  border: solid 2px var(--main_color);
  border-radius: 70px;
  color: var(--main_color);
  font-size: 28px;
  font-weight: 900;
  line-height: 60px;
  position: absolute;
  top: -15px;
  left: -15px;
  text-align: center;
  z-index: 2;
  width: 70px;
  height: 70px;
}

@media screen and (max-width: 896px) {
  .shoplist>li {
    width: 48%;
  }
}

@media screen and (max-width: 600px) {
  .shoplist>li {
    width: 100%;
  }

  .shoplist figure {
    height: 200px;
  }

  .shoplist .inner {
    padding: 15px 20px 20px;
  }

  .shoplist .inner h3 a {
    font-size: 18px;
  }

  ol.shoplist>li::before {
    font-size: 20px;
    line-height: 50px;
    width: 55px;
    height: 55px;
  }
}

/*---------------------------------
*
* index
* トップページスタイル
*
*
***/
/*---------------------------------

  メインビジュアル

---------------------------------*/
.key_visual {
  overflow: hidden;
  position: relative;
  text-align: center;
  height: 100vh;
  padding-top: 10vh;
  z-index: 1;
}

.key_visual p {
  font-size: 14px;
  font-weight: 600;
}

.key_visual h1 {
  position: relative;
  width: 50%;
  margin: 10px auto 0;
  z-index: 5;
}

.key_visual .float {
  animation: blur 5s ease;
}

@keyframes blur {
  0% {
    filter: blur(5px);
    opacity: 0;
  }

  100% {
    filter: blur(0);
    opacity: 1;
  }
}

.key_visual .slide_loop {
  display: flex;
  overflow: hidden;
  position: absolute;
  bottom: 40px;
  width: 100vw;
  height: 65vh;
}

.key_visual .slide_loop img {
  width: auto;
  height: 100%;
}

.key_visual .slide_loop img:first-child {
  animation: slide_first 150s -75s linear infinite;
}

.key_visual .slide_loop img:last-child {
  animation: slide_last 150s linear infinite;
}

@keyframes slide_first {
  0% {
    transform: translateX(100%);
  }

  to {
    transform: translateX(-100%);
  }
}

@keyframes slide_last {
  0% {
    transform: translateX(0);
  }

  to {
    transform: translateX(-200%);
  }
}

.key_visual .decoration {
  position: absolute;
  z-index: 5;
}

.key_visual .decoration:nth-of-type(1) {
  bottom: 30px;
  left: 10%;
  width: 250px;
  height: auto;
}

.key_visual .decoration:nth-of-type(2) {
  animation-delay: .5s;
  bottom: 30px;
  right: 10%;
  width: 250px;
  height: auto;
}

.key_visual .decoration:nth-of-type(3) {
  animation-delay: 1s;
  bottom: 30px;
  left: 35%;
  width: 130px;
}

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

@media screen and (max-width: 896px) {
  .key_visual {
    padding-top: 15vh;
    z-index: 1;
  }

  .key_visual p {
    font-size: 12px;
  }

  .key_visual h1 {
    width: 90%;
    max-width: 700px;
    margin: 20px auto 0;
  }

  .key_visual .slide_loop {
    height: 60vh;
  }

  .key_visual .decoration:nth-of-type(1) {
    left: 2%;
    width: 30%;
  }

  .key_visual .decoration:nth-of-type(2) {
    right: 2%;
    width: 40%;
  }

  .key_visual .decoration:nth-of-type(3) {
    bottom: 30px;
    left: 32%;
    width: 20%;
  }
}

/*---------------------------------

  共通

---------------------------------*/
section .title {}

section .title h2 {
  color: var(--main_color);
  font-size: 42px;
  font-weight: 900;
}

section .title h2 strong {
  font-size: 120%;
}

@media screen and (max-width: 1200px) {
  section .title h2 {
    font-size: 32px;
  }
}

@media screen and (max-width: 896px) {
  section .title h2 {
    font-size: 22px;
  }
}

@media screen and (max-width: 480px) {
  section .title h2 {}
}

/*---------------------------------

  magazine

---------------------------------*/
section.magazine {
  background: #FFFFFF;
  border-radius: 20px;
  display: flex;
  justify-content: space-between;
  position: relative;
  width: 90%;
  max-width: 1300px;
  margin: 250px auto 100px;
  padding: 20px 40px 40px 40px;
}

section.magazine figure {
  display: block;
  position: relative;
  width: 40%;
}

section.magazine figure img {
  border-radius: 20px;
  display: block;
  object-fit: cover;
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 125%;
}

section.magazine .wrap {
  width: 55%;
}

section.magazine h3 {
  font-size: 24px;
  font-weight: 900;
  margin-bottom: 16px;
}

section.magazine .text {
  margin: 16px 0;
}

section.magazine .wrap_button {
  text-align: right;
}

section.magazine .decoration {
  position: absolute;
  bottom: -30px;
  left: -30px;
  width: 110px;
}

section.magazine .decoration img {
  width: 100%;
}

@media screen and (max-width: 896px) {
  section.magazine {
    display: block;
    margin: 80px auto;
    padding: 20px;
  }

  section.magazine figure {
    width: 100%;
    height: 250px;
  }

  section.magazine .wrap {
    width: 100%;
    margin-top: 20px;
  }

  section.magazine h3 {
    font-size: 20px;
    margin-bottom: 12px;
  }

  section.magazine .wrap_button {
    text-align: center;
  }

  section.magazine .decoration {
    bottom: -100px;
    left: -10px;
    width: 80px;
  }
}

/*---------------------------------

  about

---------------------------------*/
section.about {
  align-items: flex-start;
  display: flex;
  justify-content: space-between;
  position: relative;
  width: 95%;
  max-width: 1500px;
  margin: 200px 0 200px auto;
}

section.about figure {
  display: block;
  width: 50%;
  height: 500px;
  margin-top: 50px;
}

section.about figure img {
  background: #aaaaaa;
  border-radius: 20px 0 0 20px;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

section.about .wrap {
  width: 45%;
}

section.about .text {
  font-weight: 600;
  max-width: 600px;
  margin-top: 30px;
}

section.about .text p+p {
  margin-top: 16px;
}

section.about .decoration {
  animation-delay: 1s;
  position: absolute;
  bottom: -100px;
  right: 45%;
  width: 180px;
}

section.about .decoration img {
  width: 100%;
}

/* テキストアニメーション*/
section.about h2.animation {
  line-height: 1.6;
}

section.about h2.animation.rotating {
  align-items: center;
  display: flex;
  font-size: 42px;
  position: relative;
}

section.about .word {
  font-size: 120%;
  line-height: 1.3;
  opacity: 0;
  position: absolute;
  top: 0;
}

section.about .letter {
  display: inline-block;
  position: relative;
  transform: translateZ(25px);
  transform-origin: 50% 50% 25px;
}

section.about .letter.out {
  transform: rotateX(90deg);
  transition: transform 0.32s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

section.about .letter.behind {
  transform: rotateX(-90deg);
}

section.about .letter.in {
  transform: rotateX(0deg);
  transition: transform 0.38s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

section.about p.end {
  padding-left: 155px;
}

@media screen and (min-width: 1200px) {
  section.about h2.animation.rotating {
    font-size: 60px;
  }

  section.about p.end {
    padding-left: 220px;
  }
}

@media screen and (max-width: 896px) {
  section.about {
    display: block;
    position: relative;
    margin: 150px 0 50px auto;
  }

  section.about .wrap {
    width: 95%;
  }

  section.about .text {
    max-width: 500px;
    margin-top: 40px;
  }

  section.about figure {
    display: inline-block;
    width: 100%;
    height: 280px;
  }

  section.about .decoration {
    bottom: -100px;
    left: 0;
    right: auto;
    width: 130px;
  }

  section.about h2.animation.rotating {
    font-size: 36px;
  }

  section.about p.end {
    padding-left: 140px;
  }
}

/*---------------------------------

  map

---------------------------------*/
section.map .wrap:nth-of-type(1) {
  align-items: end;
  display: flex;
  justify-content: flex-end;
  position: relative;
  width: 90%;
  max-width: 1100px;
  margin: 250px auto 0;
}

section.map .wrap:nth-of-type(1) .inner {
  position: absolute;
  top: 200px;
  left: 0;
  z-index: 2;
}

section.map .inner h2 {
  font-size: 44px;
}

section.map .wrap:nth-of-type(1) .inner .text {
  font-weight: 600;
  max-width: 600px;
  margin-top: 30px;
}

section.map .decoration {
  width: 500px;
  padding-bottom: 200px;
}

section.map .footprints {
  max-width: 1100px;
}

section.map .shoplist {
  margin-top: 50px;
}

section.map .wrap_button {
  text-align: center;
}

section.map .button {
  margin: 0 auto 80px;
}

@media screen and (max-width: 1100px) {
  section.map .wrap:nth-of-type(1) {
    flex-wrap: wrap;
  }

  section.map .wrap:nth-of-type(1) .inner {
    position: static;
    width: 100%;
  }

  section.map .decoration {
    position: relative;
    top: 30px;
    width: 100%;
    padding: 0 0 0 30px;
  }

  section.map .decoration img {
    width: 80%;
    max-width: 180px;
  }
}

@media screen and (max-width: 800px) {
  section.map .wrap:nth-of-type(1) {
    margin: 130px auto 0;
  }

  section.map .inner h2 {
    font-size: 28px;
    line-height: 1.3;
    text-align: center;
  }

  section.map .inner h2 strong {
    display: block;
    font-size: 40px;
  }

  section.map .shoplist {
    margin-top: 20px;
    margin-bottom: 0;
  }

  section.map .button {
    margin: 0 auto 0;
  }
}

/*---------------------------------

  info

---------------------------------*/
div.background {
  background-image: url(../images/image_background.svg);
  background-position: bottom;
  position: relative;
  width: 100%;
  height: 220px;
  padding-top: 200px;
}

div.background img {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 95%;
  max-width: 1000px;
}

section.info {
  background: var(--main_color);
  text-align: center;
  padding: 50px 0 0;
}

section.info .title h2 {
  color: #ffffff;
}

section.info .title span {
  color: #fbb03b;
  font-weight: 900;
}

section.info .wrap {
  background: #FCF4E1;
  border-radius: 30px;
  text-align: left;
  width: 90%;
  max-width: 1200px;
  margin: 50px auto;
  padding: 50px;
}

section.info .button a {
  border: solid 2px #ffffff;
  color: #ffffff;
}

section.info .slide {
  height: 200px;
}

section.info .slide img {
  width: 200px;
}

@media screen and (max-width: 800px) {
  section.info .slide {
    height: 130px;
  }

  section.info .slide img {
    width: 130px;
  }

  section.info .wrap {
    margin: 30px auto;
    padding: 30px;
  }
}

/*---------------------------------
*
* 
* サブページスタイル
*
*
***/
.subpage .head {
  position: relative;
  width: 80%;
  max-width: 420px;
  min-width: 200px;
  margin: 100px auto 0;
}

.subpage .catname {
  background: var(--main_color);
  color: #ffffff;
  position: relative;
  text-align: center;
  margin: 50px 0;
  padding: 50px 5%;
}

.subpage .catname::after {
  animation: updown 2s infinite ease;
  background-image: url(../images/subpage_deco.png);
  background-repeat: no-repeat;
  background-size: contain;
  content: '';
  position: absolute;
  right: 5%;
  top: -20%;
  width: 150px;
  height: 100px;
}

.subpage .catname h2 {
  font-size: 30px;
  font-weight: 900;
  line-height: 1;
}

.subpage .catname p {
  font-size: 16px;
  font-weight: 500;
  margin: 20px 0;
}

.subpage .catname .button a {
  color: #ffffff;
  border: solid 2px #ffffff;
}

.subpage section {
  background: #ffffff;
  border-radius: 30px;
  font-size: 14px;
  width: 90%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 30px;
}

.subpage section h3 {
  border-radius: 10px;
  background-color: #c66200;
  color: #fff;
  font-size: 22px;
  position: relative;
  padding: 6px 16px;
}

.subpage section h3::after {
  border: 11px solid transparent;
  border-top: 11px solid #c66200;
  content: '';
  position: absolute;
  top: 100%;
  left: 30px;
  width: 0;
  height: 0;
}

.subpage section h4 {
  border-bottom: 3px dotted var(--main_color);
  color: #534741;
  font-size: 18px;
  font-weight: 600;
  margin: 14px 0;
  padding: 0 10px 6px 0;
}

.subpage section .wrap {
  display: flex;
  justify-content: space-between;
  margin: 20px 0;
}

.subpage section .wrap figure {
  overflow: hidden;
  width: 50%;
  height: auto;
  margin-bottom: 20px;
}

.subpage section .wrap figure img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.subpage section .wrap table {
  text-align: left;
  width: 47%;
}

.subpage section .wrap table tr+tr th,
.subpage section .wrap table tr+tr td {
  border-top: 1px dashed var(--main_color);
}

.subpage section .wrap table th,
.subpage section .wrap table td {
  line-height: 1;
  padding: 10px;
}

.subpage section .wrap table th {
  width: 100px;
}

.subpage section .wrap table td {
  vertical-align: middle;
}

.subpage section .wrap table td a {
  color: var(--main_color);
  font-weight: 600;
}

.subpage section .wrap table td img {
  width: 40px;
  height: 40px;
}

.subpage section .button_coupon {
  display: inline-block;
  width: 100%;
  max-width: 400px;
  margin: 20px 0;
}

.subpage section .button_coupon a {
  display: block;
  transition: .2s;
  height: 100%;
}

.subpage section .button_coupon a:hover {
  opacity: .85;
}

.subpage section .button_coupon a img {
  width: 100%;
  height: auto;
}

iframe,
video,
video *,
.wp-video {
  max-width: 100%;
  max-height: auto;
}

@media screen and (max-width: 850px) {
  .subpage .catname {
    background: var(--main_color);
    color: #ffffff;
    position: relative;
    text-align: center;
    margin: 30px 0;
    padding: 45px 5%;
  }

  .subpage section {
    border-radius: 20px;
    padding: 20px;
  }

  .subpage section .wrap {
    display: block;
  }

  .subpage section .wrap figure {
    width: 100%;
  }

  .subpage section .wrap table {
    width: 100%;
  }
}