@charset "UTF-8";
/* 
Theme Name:gamo4_nigiwai_project
Description:がもよんにぎわいプロジェクト様用のテンプレートです
Version:1.0
Author:Fuji
*/

/*==========================
common
==========================*/
:root {
  --primary-white: #ffffff;
  --primary-black: #353535;
  --primary-red: #E51525;
  --primary-gray: #614F50;
  --contentWidth: 91.4%;
  --contentPadding: 9.7%;
}

html {
  font-size: 62.5%;
}

body {
  font-family:
    'Noto Sans JP',
    Arial,
    sans-serif;
  font-style: normal;
  color: var(--primary-black, #353535);
  background-color: var(--primary-white, #ffffff);
  line-height: 1.3;
}

img {
  max-width: 100%;
  height: auto;
}

p {
  font-size: 1.6rem;
  line-height: 1.5;
  padding: 5px 0 0;
}


h2 {
  font-size: 2.4rem;
}

ul {
  list-style-position: inside;
}

li {
  font-size: 1.6rem;
  margin: 10px 0 10px;
}

input,
textarea {
  display: block;
  width: 100%;
  opacity: 0.8;
  background: #D9D9D9;
  font-size: 1.4rem;
  padding: 10px 10px;
}


.btn-submit {
  display: block;
  color: var(--primary-white);
  text-align: center;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1;
  border-radius: 10px;
  background: var(--primary-red, #E51525);
  padding: 16px 32px 17px;
  position: relative;
  transition: 0.4s;
  max-width: 250px;
}

.btn-submit::after {
  content: '';
  display: block;
  width: 16px;
  height: 16px;
  background-image: url("images/btn_arrow.png");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  transition: 0.4s;
}

.btn-submit:hover {
  opacity: 0.5;
}


.page-title {
  color: var(--primary-red, #E51525);
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 1.3rem;
  text-align: center;
}

.page-nav {
  font-size: 1.2rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding: 10px 10px;
  margin-top: 28px;
  border-top: 1px dashed #666666;
  border-bottom: 1px dashed #666666;
  font-weight: 500;
  color: #666666;
  list-style: none;
}

.page-nav a {
  font-size: 1.2rem;
}

.c-breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  color: #6C6C6C;
  line-height: 1.2;
  padding: 15px 0 0;
}

.c-breadcrumbs span {
  font-size: 1.3rem;
}

.c-breadcrumbs>li {
  display: inline-block;
  position: relative;
}

.c-breadcrumbs>li:not(:last-of-type)::after {
  content: ">";
  display: inline-block;
  margin-right: 0.5em;
  margin-left: 0.5em;
}

.inner.is-small {
  padding: 0 4.7% 0;
  margin: 0 auto;
}

/* common pc */
@media screen and (min-width:769px) {
  h2 {
    font-size: 3rem;
  }

  p {
    font-size: 1.8rem;
  }

  li {
    font-size: 1.8em;
  }

  .btn {
    width: 350px;
    height: 65px;
    font-size: 2rem;
    padding: 10px 30px;
  }

  .page-title {
    font-size: 3.6rem;
    line-height: 1;
  }

  .c-breadcrumbs {
    font-size: 1.2rem;
  }

  .page-nav a {
    font-size: 1.5rem;
  }

  .c-breadcrumbs span {
    font-size: 1.5rem;
  }

}

/* pc 769px */

/*==========================
header
==========================*/
.header {
  /* padding: 20px 4.2% 25px; */
  min-width: 343px;
  padding: 20px 4.2% 25px;
  margin: 0 auto;
}

.common__heder {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header_img {
  max-width: 143px;
}


/* .nav初期表示 */
.nav {
  background: var(--primary-gray, #614F50);
  width: 100%;
  height: 100vh;
  padding: 0 4.2%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  transform: translateX(-100%);
  transition: transform 0.4s;
}

.nav__header {
  padding: 20px 0 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav__logo {
  max-width: 120px;
}

.nav__btn {
  max-width: 36px;
}

.nav__list {
  margin-top: 70px;
}

.nav__item {
  color: var(--primary-white);
  font-size: 1.8rem;
  line-height: 1;
  margin-bottom: 30px;
  display: flex;
  align-items: center;
}

.nav__img {
  margin: 5px 15px 0 0;
}

.sns {
  padding: 20px 0 50px;
  display: flex;
  align-items: center;
}

.snsTxt {
  color: var(--primary-white);
  margin-right: 30px;
}

.snsImg {
  width: 30px;
  height: 30px;
}

.header__links {
  display: none;
}

.snsImg--header__bk {
  display: none;
}

/* .nav.active表示 */
.nav.active {
  transform: translateX(0);
}

.header__btn {
  display: block;
  max-width: 36px;
}

/* .header pc */
@media screen and (min-width:769px) {
  .header {
    max-width: 1440px;
    margin: 0 auto;
    padding: 50px 9.7% 30px;
  }

  .header_img {
    max-width: 200px;
  }

  .nav {
    max-width: 1440px;
    padding: 50px 9.7% 10px;
  }

  .nav__header {
    padding: 0;
  }

  .nav__logo {
    max-width: 200px;
  }

  .nav__btn {
    min-width: 56px;
  }

  .nav_box {
    display: flex;
    margin-top: 100px;
  }

  .nav__list {
    margin: 0 200px 0 0;
  }

  .nav__img {
    width: 30px;
    margin: 0 14px 0 0;
  }

  .nav__item {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 95px;
  }

  .snsTxt {
    font-size: 2rem;
  }

  .common__hederRight {
    display: flex;
    align-items: center;
  }

  .snsImg--header__bk {
    width: 45px;
    margin-right: 45px;
  }

  .header__btn {
    max-width: 56px;
  }

  .header__links {
    display: block;
    align-items: center;
    margin-top: 25px;
  }

  .links__list {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0 10px;
    list-style-type: none;
  }

  .links__img {
    width: 30px;
    margin-right: 10px;
  }

  .links__item {
    font-size: 1.8rem;
  }

}

/* pc 769px */

/*==========================
footer
==========================*/
.footer {
  background-color: var(--primary-gray);
  padding: 52px 8% 30px;
  display: flex;
  justify-content: center
}

.footer__top {
  text-align: center;
}

.footer__logo {
  max-width: 120px;
}

.footer__sns {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
}

.footer_snsTxt {
  margin-right: 30px;
  color: var(--primary-white);
  font-size: 1.5rem;
  line-height: 1;
  font-weight: 500;
}

.footer__snsImg {
  width: 30px;
  height: 30px;
}

.footer__menu {
  display: flex;
  justify-content: space-between;
  margin-top: 52px;
}

.footer__left {
  margin-right: 60px;
}

.footer__list {
  list-style-type: none;
}


.footer__item {
  margin-bottom: 30px;
  color: var(--primary-white);
  font-size: 1.6rem;
  font-weight: 700;
}

.footer__anotherTxt {
  color: var(--primary-white);
  font-size: 1.3rem;
  font-weight: 400;
  line-height: 1;
}

.footer__anotherTxt:last-of-type {
  margin-top: 15px;
}

.copy {
  color: var(--primary-white);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1;
  text-align: center;
  margin-top: 40px;
}

.copy small {
  color: var(--primary-white);
  font-size: 1.2rem;
  line-height: 1.5;
}

/* .footer pc */
@media screen and (min-width:769px) {
  .footer {
    padding: 80px 9.4% 30px;
    display: block;
  }

  .footer__topPC {
    display: flex;
  }

  .footer__top {
    text-align: left;
    margin-right: 433px;
  }

  .footer__sns {
    margin-top: 32px;
  }

  .footer__menu {
    margin-top: 0;
  }

  .footer__left {
    margin-right: 60px;
  }

  .footer__another {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 40px;
  }

  .footer--footer__botom {
    display: flex;
    align-items: center;
  }

  .footer__anotherTxt:last-of-type {
    margin: 0 0 0 59px;
  }

  .copy {
    margin-top: 0;
  }

}

/* pc 769px */

/*==========================
home
==========================*/
.top-about{
	padding: 50px 4.7% 10px;
}

.slick-next {
    right: auto !important;
}

.slick-next:before  {
	display:none;
}

.topAbout__title {
  display: inline;
  color: #FFF;
  text-align: left;
  font-family: "Zen Antique";
  font-size: 2.5rem;
  font-weight: 400;
  line-height: 1.2;
  background: var(--primary-gray, #614F50);
}

.slick-next,
.slick-arrow {
	display: none;
}

.txt {
  margin-top: 30px;
  color: var(--primary-black, #353535);
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.5;
}

/* infoEvent */
.top-infoEvent {
	padding:50px 4.7% 50px;
}

.top-infoEvent__title{
	margin-top: 8px;
    color: var(--primary-black, #353535);
    font-size: 1.6rem;
    font-weight: 500;
    line-height: 1.3;
}

/* shop */
.overflow-right {
  padding: 30px 0;
}

.overflow-right__heading {
  font-size: 24px;
  font-weight: 700;
}

.topShop-inner {
  margin-inline: auto;
  max-width: 1060px;
  padding: 0 30px;
}


.splide__slide {
  display: grid;
  place-content: start;
}
.overflow-right__sliderWrap {
  width: 100vw;
  margin-left: calc(50% - 50vw);
}
.overflow-right__sliderWrap {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  padding-left: calc(50vw - 50%); // 追加
}
.splide__pagination,
.splide__pagination--ltr {
	display: none;
}

.shop__label {
  display: flex;
  margin-top: 10px;
}

.shop__type, 
.shop__tag {
    color: var(--primary-black, #353535);
    text-align: center;
    font-size: 1.3rem;
    font-weight: 350;
    line-height: 1;
}

.shop-meta p {
  padding: 0 13px;
}

.shop__name {
  margin-top: 8px;
  color: var(--primary-red);
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1;
}


.btn__shop {
  margin: 50px auto 0;
}

/* shop pc */
@media screen and (min-width:769px) {
  .section--shop {
    padding: 50px 9.7% 50px;
  }

  .btn__shop {
    max-width: 350px;
    line-height: 1.8;
    margin: 20px 0 50px auto;
  }

}
/* pc 769px */


/* home pc */
@media screen and (min-width:769px) {
  .info__box {
    display: flex;
    justify-content: space-around;
  }
}

/* home  769px */

/*==========================
Privacy Policy
==========================*/
.privacyPolicy-inner {
	margin: 30px 0 60px;
}
.privacyPolicy-title {
	margin: 30px 0 15px;
    background-color: var(--primary-gray);
    color: var(--primary-white);
    font-size: 2rem;
    padding: 5px 10px;
}
/* Privacy Policy pc */
@media screen and (min-width:769px) {
  .inner.is-small {
    padding: 0 9.7% 0;
  }
}


/* Privacy Policy pc  769px */

/*==========================
このサイトについて
==========================*/
.siteinfo-inner {
	margin: 30px 0 60px;
}
.siteinfo-title {
	margin: 30px 0 15px;
    background-color: var(--primary-gray);
    color: var(--primary-white);
    font-size: 2rem;
    padding: 5px 10px;
}
.text_link pre {
    white-space: pre-wrap; /* 改行を維持しつつ、折り返し可能に */
    word-wrap: break-word; /* 長いURLやコードを折り返し */
    background-color: #f4f4f4; /* 背景色をつけて見やすく */
    padding: 10px;
    border-radius: 5px;
    font-family: monospace; /* コードっぽく表示 */
    overflow-x: auto; /* 横スクロールを許可（必要な場合のみ） */
}

/* Privacy Policy pc */
@media screen and (min-width:769px) {
	

}
/* Privacy Policy pc  769px */

/*==========================
404 page
==========================*/

.box-white.is-page404 {
  margin: 50px 0 80px;
}

/* 404 page pc */
@media screen and (min-width:769px) {
  .box-white.is-page404 {
    margin: 50px 0 150px;
  }
}

/* 404 page pc  769px */

/*==========================
info-event
==========================*/

.cat-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8125rem;
  color: #555555;
  list-style: none;
}

.cat-list>li {
  min-width: 40px;
  padding: 5px;
  margin-bottom: 0.5em;
  background-color: #F3F3F3;
  border-radius: 3px;
  text-align: center;
  line-height: 1;
  font-size: 1.4rem;
}

.cat-list>li:not(:last-of-type) {
  margin-right: 0.923em;
}

.post-header time {
  margin-bottom: 0.5em;
  font-size: 1.4rem;
}

.info-eventPage-wrapper .box-white {
  margin-bottom: 40px;
}

.info-eventPage-wrapper .main-content,
.info-eventPage-wrapper .sidebar {
  width: 100%;
}

.wp-pagenavi span,
.wp-pagenavi a {
  font-size: 0.875rem;
}

.news-title {
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--primary-red);
}
.news-list li {
  list-style: none;
}

.sidebar .item:not(:last-of-type) {
  border-bottom: 1px solid #BABABA;
}

.sidebar-list {
  padding: 0 7.718%;
  font-weight: 500;
  color: #555555;
  display: flex;
  gap: 15px;
  list-style: none;
}

.sidebar-list a {
  display: inline-block;
}

.sidebar-list a::before {
  content: "-";
  display: inline-block;
  margin-right: 0.5em;
}

.title-infoEvent {
  font-size: 1.8rem;
  margin: 0 0 50px;
}

.thumbnail img {
  width: 343px;
  height: 299px;
  object-fit: cover;
}

.wp-pagenavi {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 0 60px;
}

.wp-pagenavi span,
.wp-pagenavi a {
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid;
  padding: 5px 10px;
  transition: 0.3s ease-in;
  font-size: 1.5rem;
}

.wp-pagenavi span:not(:last-child),
.wp-pagenavi a:not(:last-child) {
  margin-right: 2.622%;
}

.wp-pagenavi span:hover,
.wp-pagenavi a:hover {
  background-color: #353535;
  color: #FFFFFF;
}

.wp-pagenavi span.current {
  background-color: #353535;
  color: #FFFFFF;
}

.wp-pagenavi a {
  color: #666666;
}

.wp-pagenavi a.nextpostslink,
.wp-pagenavi a.previouspostslink {
  width: auto;
  padding: 5px 1.2em;
}

.wp-pagenavi span:not(:last-child),
.wp-pagenavi a:not(:last-child) {
  margin-right: 2.622%;
}

.wp-pagenavi span:hover,
.wp-pagenavi a:hover {
  background-color: #353535;
  color: #FFFFFF;
}

.wp-pagenavi span.current {
  background-color: #614F50;
    color: #fff;
    border-color: #333;
    font-weight: bold;
    pointer-events: none;
}

.wp-pagenavi a {
  color: #666666;
}

.wp-pagenavi a.nextpostslink,
.wp-pagenavi a.previouspostslink {
  width: auto;
  padding: 5px 1.2em;
}

.news-titleMain {
  color: var(--primary-red);
  margin: 50px 0 15px;
}

@media screen and (min-width:769px) {
  .info-eventPage-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
  }

  .info-eventPage-wrapper .box-white {
    padding: 26px 7.282% 50px;
  }

  .info-eventPage-wrapper .main-content {
    width: 61.551%;
  }

  .info-eventPage-wrapper .sidebar {
    width: 32.931%;
  }

  .pagenavi {
    display: flex;
    justify-content: flex-end;
    margin-top: 42px;
  }

  .news-title {
    margin-bottom: 1em;
    font-size: 1.8rem;
    line-height: 1.8;
  }

  .news-list {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
  }

  .news-title {
    font-size: 1.8rem;
  }

  .news-titleMain {
    margin: 80px 0 15px;
  }
	
	.wp-pagenavi {
		margin: 0 0 120px;
	}

}

/* info-event pc  769px */

.main__slide {
  margin: 0 10px 0;
}

/*==========================
about
==========================*/

.shopInfo-img {
  max-width: 15px;
  max-height: 15px;
  margin-right: 5px;
}

.about-title {
  display: inline-block;
  margin: 50px auto 0;
  padding: 5px 10px;
  background-color: var(--primary-red);
  color: #FFF;
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1;
}

.about__contens {
  text-align: center;
}

.about-info li {
  margin-bottom: 20px;
  position: relative;
  list-style: none;
}

.about-info li::after {
  content: "";
  display: inline-block;
  border-bottom: 1px dotted var(--primary-black);
  width: 320px;
  height: 1px;
  position: absolute;
  bottom: -8px;
  left: 3px;
}


/* about pc */
@media screen and (min-width:769px) {
  .about-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    /* 3列に分割 */
    gap: 10px;
    /* 隙間を設定 */
  }

}

/* pc 769px */

/* info */
.section--info {
  padding: 50px 4.7% 0;
}

.top__title {
  color: var(--primary-red, #E51525);
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.3rem;
}

.top__title span {
  display: flex;
  justify-content: center;
  color: var(--primary-red, #E51525);
  font-family: "Zen Antique";
  font-size: 2.8rem;
  font-weight: 400;
  line-height: 1.3;
}

.info__box {
  margin-top: 40px;
}

.info__item {
  margin: 40px auto;
  width: 300px;
}

.splide__pagination, 
.splide__pagination--ltr {
    display: none !important;
}



.thumbnail img {
  width: 343px;
  height: 299px;
  object-fit: cover;
}

.info__item__contens {
  padding: 0 4.7% 0;
}

.info__item__label {
  margin-top: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.info__item__label time {
  color: var(--primary-black, #353535);
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1;
}

.info__item__label p {
  display: block;
  text-align: center;
  width: 104px;
  height: 25px;
  color: var(--primary-red, #E51525);
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.3;
  border-radius: 3px;
  border: 1px solid var(--primary-red);
}

.info__item__title {
  margin-top: 8px;
  color: var(--primary-black, #353535);
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.3;
}

.btn__info {
  margin: 30px auto 0;
}

.shopInfo__item {
  margin: 0 0 0;
}

/* info pc */
@media screen and (min-width:769px) {

  .section--info {
    padding: 60px 9.7% 50px
  }

  .top__title__info {
    text-align: left;
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 1.3;
  }

  .sub__title__info {
    text-align: left;
    font-size: 3.2rem;
    font-weight: 400;
    line-height: 1.3;
    letter-spacing: 1.6px;
  }

  .info__list {
    display: flex;
    justify-content: space-between;
  }

  .btn__info {
    max-width: 350px;
    line-height: 1.8;
    margin: 50px 0 0px auto;
  }

}

/* pc 769px */

/* shop */
.section--shop {
  padding: 50px 4.7% 50px;
}


.slick__inner {
  width: min(100%, 1120px);
}

.slick__container {
  position: relative;
  /* インナー幅から片側をはみ出させる */
  width: calc(100% + (100vw - 100%) / 2);
  /* / インナー幅から片側をはみ出させる */
}

.slick__images {
  padding: 30px 0 60px 0;
  background: #fff;
}

.slick__prev {
  position: absolute;
  bottom: 5px;
  left: 0;
  z-index: 1;
  width: 50px;
  height: 50px;
  border-radius: 50%;
}

.slick__next {
  position: absolute;
  left: 10%;
  bottom: 5px;
  z-index: 1;
  width: 50px;
  height: 50px;
  border-radius: 50%;
}

.slick__prev {
  /* (インナー幅の右端) + (画像のマージン + ボタンの大きさ + ボタンとの間隔) */
  right: calc((100vw - 100%) + (30px + 50px + 15px));
}

.slick__next {
  /* (インナー幅の右端) + (画像のマージン) */
  right: calc((100vw - 100%) + (30px));
}

.slick__prev:before,
.slick__next:before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 10px;
  border-top: 1px solid #18212b;
  border-right: 1px solid #18212b;
  opacity: 1;
  content: '';
}

.slick__prev:before {
  transform: translate(-25%, -50%) rotate(-135deg);
}

.slick__next:before {
  transform: translate(-75%, -50%) rotate(45deg);
}

.slick__image {
  position: relative;
  width: 330px;
  margin-right: 30px;
}

.slick__image:before {
  display: block;
  padding-top: calc((2 / 3) * 100%);
  content: '';
}

.slick__image img {
  position: absolute;
  top: 0;
  left: 15px;
  width: 100%;
  height: 100%;
  object-fit: cover;
}


.shop__label {
  display: flex;
  margin-top: 10px;
}

.shop__type,
.shop__tag {
  color: var(--primary-black, #353535);
  text-align: center;
  font-size: 1.3rem;
  font-weight: 350;
  line-height: 1;
}

.shop__item__txt {
  padding: 0 13px;
}

.shop__name {
  margin-top: 8px;
  color: var(--primary-red);
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1;
}


.btn__shop {
  margin: 50px auto 0;
}

/* shop pc */
@media screen and (min-width:769px) {
  .section--shop {
    padding: 50px 9.7% 50px;
  }

  .btn__shop {
    max-width: 350px;
    line-height: 1.8;
    margin: 20px 0 50px auto;
  }

}

/* pc 769px */


/* instagram */

.section--instagram {
  padding: 50px 4.7% 50px;
  text-align: center;
}

.top__title__instagram {
  color: var(--primary-black, #353535);
  text-align: center;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1;
  display: inline-block;
  align-items: center;
}

.top__title {
  text-align: center;
  align-items: center;
}

.top__title img {
  width: 50px;
  height: 50px;
  border-radius: 50px;
}

.instagram__list {
  margin-top: 25px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px 15px;
  list-style: none;
}

.instagram__item img {
  max-width: 150px;
}

.btn__instagram {
  margin: 50px auto 0;
}

/* instagram pc */
@media screen and (min-width:769px) {
  .btn__instagram {
    max-width: 350px;
    line-height: 1.8;
  }

  .instagram__list {
    display: flex;
    justify-content: space-between;
    padding: 0 20% 0;
    gap: 20px 0px;
  }

  .instagram__item img {
    max-width: 250px;
    max-height: 250px;
  }
}

/* link */
.section__link {
  padding: 50px 0;
}

.link__slide {
  margin: 0 10px 0;
}


/*==========================
about page
==========================*/

.about {
  margin: 60px 0 50px;
  text-align: center;
}

.about__inner {
  padding: 0 4.7% 0;
  margin: 0 auto;
}

.wp-block-image {
	text-align:center;
}

.about__img {
  margin-top: 50px;
  width: 100vw;
}

.abut-subTitle {
  display: inline-block;
  margin: 50px auto 0;
  padding: 5px 10px;
  background-color: var(--primary-red);
  color: #FFF;
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1;
}

.about__txt {
  margin-top: 20px;
  padding: 10px;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.7;
  text-align: left;
}

.map__title {
  margin-top: 50px;
}

/* googleMap */
.map {
  display: flex;
  margin: 30px auto;
}

.map {
  overflow: hidden;
  padding-top: 78%;
  margin: 30px auto;
  position: relative;
}

.map iframe {
  width: 100%;
  height: calc(100% + 56px);
  margin-top: -60px;
  position: absolute;
  top: 0;
  left: 0;
}

.shop-map__inner {
  max-width: 1440px;
  padding: 0 4.7% 0;
  margin: 0 auto;
}

.map__title {
  text-align: center;
  color: var(--primary-red);
  font-size: 1.5rem;
  line-height: 1.3;
}

.map__title span {
  font-family: "Zen Antique";
  font-size: 2.8rem;
  font-weight: 400;
}

.map__info {
  max-width: 1440px;
  padding: 32px 4.2% 0px;
}


/* map info */

/* about pc */
@media screen and (min-width:769px) {

  .about {
    margin: 80px 0 0px;
  }

  .about__inner {
    margin: 0 auto;
    padding: 0 5% 0;
  }

  .title {
    font-size: 2.8rem;
    font-weight: 500;
    line-height: 1.3;
    letter-spacing: 2.8px;
  }


  .sub__title {
    font-size: 2.3rem;
    font-weight: 600;
    line-height: 1;
  }

  .about__txt {
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 2;
	 padding: 0 100px;
  }

}

/* pc 760px */

/* about shopInfo */

.shop__category {
  max-width: 100px;
  display: block;
  background-color: var(--primary-red);
  border-radius: 3px;
  padding: 5px 10px;
  color: #FFF;
  font-size: 1.6rem;
  font-weight: 800;
  line-height: 1;
  position: relative;
  margin-top: 15px;
}

.shop__category::after {
  content: "";
  display: inline-block;
  background-color: var(--primary-red);
  width: 320px;
  height: 2px;
  position: absolute;
  bottom: 0;
  left: 10px;
}

.shopInfo__item {
  position: relative;
}

.shop__item::after {
  content: "";
  display: inline-block;
  border-bottom: 1px dotted var(--primary-black);
  width: 320px;
  height: 1px;
  position: absolute;
  bottom: -8px;
  left: 3px;
}

.shop__title {
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1;
  margin-top: 13px;
}

.shop__info {
  display: flex;
  align-items: flex-start;
  align-content: flex-start;
  gap: 10px;
  align-self: stretch;
  flex-wrap: wrap;
  margin-top: 6px;
}

.shop__info__grop {
  display: flex;
  align-items: center;
}

.shop__info dd {
  font-size: 1.3rem;
  font-weight: 400;
  line-height: 1;
}

.shop__info__icon {
  width: 15px;
  margin-right: 6px;
}

.btn--shop {
  margin: 50px auto 80px;
}

/* map pc */
@media screen and (min-width:760px) {
  .shop-map__inner {
    padding: 0 4%;
    max-width: 1140px;
    margin: 0 auto;
  }

  .map__title {
    margin-top: 100px;
  }

  .map__title span {
    font-size: 3.2rem;
  }

  .map__info {
    display: flex;
    justify-content: space-between;
    max-width: 1440px;
    padding: 0 9.7% 0;
    margin: 0 auto;
    gap: 1%;
  }

  .map {
    height: 100vh;
    overflow: hidden;
    padding-top: 78%;
    margin: 30px auto;
    position: relative;
  }

  .map iframe {
    width: 100%;
    height: calc(100% + 56px);
    margin-top: -60px;
    position: absolute;
    top: 0;
    left: 0;
  }

  .map__info .group {
    width: calc(100% - 3% / 3);
  }

  .shop__item {
    max-width: 336px;
  }

  .btn--shop {
    margin: 50px auto 80px;
    max-width: 350px;
    height: 65px;
    align-items: center;
    font-size: 2rem;
    font-weight: 700;
    line-height: 2;
  }
}

/* pc 760px */

/*==========================
info-event-home
==========================*/

.info-event-wrapper {
  padding: 60px 9.7% 50px;
  text-align: center;
}

.info-event__title {
  margin-top: 8px;
  text-align: left;
  color: var(--primary-black, #353535);
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.3;
}

.title {
  color: var(--primary-red);
  font-size: 2.5rem;
  font-weight: 500;
  line-height: 1;
}

.sub-title {
  margin-top: 40px;
  color: var(--primary-red);
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.3;
  text-align: center;
}


.info__list {
  margin-top: 40px;
}

.info_item {
  max-width: 343px;
  margin: 0 auto 65px;
}

.info_item a {
  display: block;
}

.info__contens {
  padding: 0 4.2% 0;
}

.info__label {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
  align-items: center;
}

.info__label-time {
  color: var(--primary-black, #353535);
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1;
}

.info__label__txt {
  display: inline-block;
  width: 104px;
  height: 25px;
  color: var(--primary-red, #E51525);
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.5;
  border-radius: 3px;
  border: 1px solid var(--primary-red);
}

.info__title {
  margin-top: 8px;
  text-align: left;
  color: var(--primary-black, #353535);
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.3;
}



.btn--pastInfo {
  display: flex;
  margin: 0 auto;
  justify-content: center;
  min-width: 250px;
  min-height: 50px;
  font-size: 1.6rem;
  font-weight: 700;
  padding: 16px 20px 18px;
}

.btn--pastInfo::after {
  content: '';
  display: inline-block;
  width: 6.5px;
  background-image: url(../images/btn_arrow.png);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  transition: 0.4s;
}

/* .info-event-home pc */
@media screen and (min-width:769px) {
  .info {
    padding: 60px 0 100px;
  }

  .info__inner {
    padding: 0 9.7% 0;
  }

  .title {
    font-size: 2.8rem;
    font-weight: 500;
    line-height: 1.3;
    letter-spacing: 2.8px;
  }

  .sub__title {
    font-size: 2rem;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 1px;
  }

  .sp__br {
    display: none;
  }

  .info__list {
    margin-top: 90px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
  }

  .btn--pastInfo {
    min-width: 350px;
    min-height: 65px;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
    padding: 10px 30px;
    align-items: center;
  }

  .btn--pastInfo::after {
    width: 7.5px;
    right: 30px;
  }
}

/* pc 769px */

/*==========================
info-event-page
==========================*/
.info-eventPage-wrapper {
  padding: 60px 4.7% 50px;
  text-align: left;
}

.post-title__info-event {
  margin: 8px 0 15px;
  text-align: left;
  color: var(--primary-red, #E51525);
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.3;
}

.text-wrapper {
  padding: 0 10px 30px
}


/* .info-event- pc */
@media screen and (min-width:769px) {
  .pastInfo {
    padding: 50px 9.7% 100px;
  }

  .title {
    font-size: 2.8rem;
    font-weight: 500;
    line-height: 1.3;
    letter-spacing: 2.8px;
  }

  .sub__title {
    font-size: 2rem;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 1px;
  }

  .sp__br {
    display: none;
  }


  .accordion__list {
    margin: 40px 0 0;
  }

  .accordion {
    margin-top: 70px;
  }


  .btn--info-event {
    margin-top: 65px;
    min-width: 350px;
    min-height: 65px;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.5;
    padding: 10px 30px;
    align-items: center;
    text-align: center;
  }

  .btn--info-event::after {
    width: 7.5px;
    right: 30px;
  }
}

/* pc 769px */

/*==========================
shop
==========================*/
.shop {
  padding: 0 0 30px;
  text-align: center;
}

.shop__list {
  text-align: left;
  margin-top: 20px;
}


.shop-info {
  margin-top: 50px;
}

.shop__item {
  margin: 40px auto;
  max-width: 343px;
}

.shop__contens {
  margin: 0 4.2% 0;
  text-align: left;
  margin-bottom: 35px;
  list-style: none;
}

.shop__name {
  margin-top: 7px;
  color: var(--primary-red);
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.2;
}

.shop__label {
  display: flex;
  margin-top: 6px;
  align-items: center;
}

.shop__label__name {
  display: inline-block;
  color: var(--primary-white);
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1;
  background: var(--primary-red);
  padding: 3px 5px;
  margin-right: 10px;
}

.shop__label__txt {
  color: rgba(53, 53, 53, 0.80);
  font-size: 1.3rem;
  font-weight: 400;
  line-height: 1;
}

.shop__txt {
  margin-top: 8px;
  color: var(--primary-black, #353535);
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.5;
}

.shop__info {
  margin-top: 11px;
  align-items: center;
}

.shop__info__icon {
  width: 15px;
  margin-right: 6px;
}

.shop__info__txt {
  margin-top: 5px;
  color: var(--primary-black, #353535);
  font-size: 1.3rem;
  font-weight: 400;
  line-height: 1;
}

.pagination {
  display: flex;
  justify-content: center;
  font-size: 1.5rem;
  gap: 8px;
  margin-bottom: 60px;
}

.page-numbers {
  display: block;
  padding: 5px 10px;
  border: 1px solid;
}

.pagination a:hover {
  background-color: #fff;
}

.pagination .current {
  background-color: #614F50;
  color: #fff;
  border-color: #333;
  font-weight: bold;
  pointer-events: none;
  /* クリック不可にする */
}



/* .shop pc */
@media screen and (min-width:769px) {

  .shop__list {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
  }

  .pagination {
    margin-bottom: 120px;
  }

}

/*==========================
property
==========================*/

.property {
  text-align: center;
}

.title {
  color: var(--primary-red);
  font-size: 2.5rem;
  font-weight: 500;
  line-height: 1;
}

.sub__title {
  margin-top: 40px;
  color: var(--primary-red);
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.3;
  text-align: center;
}

.property__list {
  margin-top: 40px;
}

.property__item {
  margin: 0 auto 40px;
  max-width: 343px;
}

.property__img {
  max-width: 343px;
}

.property__contens {
  padding: 0 4.2% 35px;
	list-style: none;
}

.property__label {
  margin-top: 10px;
  display: flex;
  align-items: center;
}

.property__area {
  color: #FFF;
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1;
  background: var(--primary-red);
  display: flex;
  padding: 3px 5px;
  justify-content: center;
  align-items: center;
  margin-right: 10px;
}

.property__name {
  color: var(--primary-red, #E51525);
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.2;
}

.property__txt {
  margin-top: 6px;
  text-align: left;
  color: var(--primary-black, #353535);
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.5;
}

.btn--property {
  display: flex;
  margin: 0 auto;
  justify-content: center;
  min-width: 250px;
  min-height: 50px;
  font-size: 1.6rem;
  font-weight: 700;
  padding: 16px 20px 18px;
}

.btn--property::after {
  content: '';
  display: inline-block;
  width: 6.5px;
  background-image: url(../images/btn_arrow.png);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  transition: 0.4s;
}

/* .property pc */
@media screen and (min-width:769px) {
  .property {
    text-align: center;
  }

  .title {
    font-size: 2.8rem;
    font-weight: 500;
    line-height: 1.3;
    letter-spacing: 2.8px;
  }

  .sub__title {
    font-size: 2rem;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 1px;
  }

  .property__list {
    margin-top: 70px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
  }

  .btn--property {
    margin-top: 65px;
    min-width: 350px;
    min-height: 65px;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.5;
    padding: 10px 30px;
    align-items: center;
    text-align: center;
  }

  .btn--property::after {
    width: 7.5px;
    right: 30px;
  }
	
   .propertyBtn-wapper {
	width: 100%;
    margin: 50px 0 120px;
	}
	
	.propertyBtn {
		margin: 0 auto;
	}
}

/* pc 769px */

/*==========================
contact
==========================*/
.form-wrapper {
  padding: 30px 0 0px;
}

.btn-wrapper {
  max-width: 250px;
  margin: 50px auto 60px;
}

.form-box {
  padding: 0 5% 0;
}

.form-box p {
  margin: 5px 0;
}

.form-box dl {
  margin-top: 18px;
}
.contactBtn-wapper {
	width: 100%;
	margin: 50px 0 60px;
}
.contctBtn{
	margin: 0 auto;
}

/* Contact pc */
@media screen and (min-width:769px) {
 .btn-wrapper {
  margin: 50px 10% 120px auto;
}

  .form-wrapper {
    padding: 30px 20% 60px;
  }

  .form__txt {
    text-align: left;
    margin: 30px 0 0 10px;
  }

}

/* Contact pc */