@charset "UTF-8";

/*======================================================================
 * たこ焼きミュージアム レイアウト
======================================================================*/
/* .ff-zenmarugo {
  font-family: 'Zen Maru Gothic', sans-serif;
} */

span.dis-ib {
  display: inline-block !important;
  width: auto !important;
}

.hero {
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  .hero {
    margin: 0 -5.5vw;
  }
}

.hero img {
  width: 100%;
}

/*  */
.l-page-title {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  padding: 0;
  margin-top: 24px;
}

@media screen and (max-width: 768px) {
  .l-page-title {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-top: 15px;
  }
}

.l-page-title+.lead {
  margin-top: 10px;
  font-size: 1.5rem;
  line-height: 1.8;
  margin-bottom: 36px;
}

@media screen and (max-width: 768px) {
  .l-page-title+.lead {
    margin-top: 15px;
    font-weight: 500;
    margin-bottom: 20px;
  }
}

.guide-tab {
  margin-bottom: 26px;
}

@media screen and (max-width: 768px) {
  .guide-tab {
    margin-bottom: 15px;
  }
}

.guide-tab ul {
  padding: 0;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

@media screen and (max-width: 768px) {
  .guide-tab ul {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}

.guide-tab ul li {
  position: relative;
  width: 100%;
  margin-right: 8px;
  font-size: 1.4rem;
  border-radius: 5px;
  background: #F4F4F4;
}

@media screen and (max-width: 768px) {
  .guide-tab ul li {
    width: calc(50% - 5px);
    min-height: 50px;
    margin-right: 0;
  }

  .guide-tab ul li:nth-child(n+3) {
    margin-top: 20px;
  }
}

.guide-tab ul li:last-child {
  margin-right: 0;
}

.guide-tab ul li.-current {
  position: relative;
  background: #A90002;
}

.guide-tab ul li.-current:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -15px;
  width: 0;
  height: 0;
  margin: auto;
  border: 6px solid transparent;
  border-top: 10px solid #A90002;
}

.guide-tab ul li.-current a {
  color: #ffffff;
  font-weight: bold;
}

.guide-tab ul li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 100%;
  width: 100%;
  padding: 23px 10px;
  color: #000;
  text-decoration: none;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .guide-tab ul li a {
    padding: 7px 10px;
    font-size: 1.2rem;
  }
}

.guide-heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  position: relative;
  padding-bottom: 12px;
  margin-bottom: 0;
  color: #A90002;
  font-weight: normal;
}

.guide-heading::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 5px;
  background: currentColor;
  border-radius: 5px;
}

.guide-heading .icon {
  width: 35px;
  height: 39px;
  margin-right: 6px;
  display: flex;
  align-items: center;
}

@media screen and (max-width: 768px) {
  .guide-heading .icon {}
}

.guide-heading .icon img {
  width: 100%;
  height: auto;
}

.guide-heading .text {
  font-size: 2.2rem;
  line-height: 1.5;
}

/* ------------------------------------------------------------
  * 共通
------------------------------------------------------------ */
.plain-text {
  margin: 20px 0 0;
}

.plain-text p {
  font-size: 1.5rem;
  line-height: 1.8;
}

.link-button-group {
  margin-top: 40px;
  margin-bottom: 60px;
}

@media screen and (max-width: 768px) {
  .link-button-group {
    margin-top: 30px;
    margin-bottom: 30px;
  }
}

.link-button {
  color: #A90002;
  border-color: #A90002;
}

.link-button::after {
  background-image: url(../images/takoyaki/btn-arrow-red.svg);
}

.link-button.-pdf::after {
  background-image: url(../images/takoyaki/icon-pdf-red.svg);
}

/* ------------------------------------------------------------
  * どんなところ？
------------------------------------------------------------ */
.takoyaki-content {
  background: rgba(255, 217, 0, 0.1);
  margin-top: 40px;
  padding: 35px 4.8% 56px;
  position: relative;
}

@media screen and (max-width: 768px) {
  .takoyaki-content {
    margin: 30px -5.5vw 0;
    padding: 40px 5.5vw 30px;
  }
}

@media screen and (max-width: 600px) {
  .takoyaki-content {
    padding-top: 90px;
  }
}

.takoyaki-content::before,
.takoyaki-content::after {
  content: "";
  display: inline-block;
  width: 15.625%;
  max-width: 150px;
  height: 130px;
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  pointer-events: none;
}

@media screen and (max-width: 768px) {

  .takoyaki-content::before,
  .takoyaki-content::after {
    width: calc(100/375*100%);
  }
}

.takoyaki-content::before {
  left: 0;
  background-position: left top;
  background-image: url(../images/takoyaki/deco-l.svg);
}

.takoyaki-content::after {
  right: 0;
  background-position: right top;
  background-image: url(../images/takoyaki/deco-r.svg);
}

.takoyaki-title {
  margin: 0 auto;
  text-align: center;
  color: #A90002;
  font-family: 'Zen Maru Gothic', sans-serif;
  font-weight: 500;
  font-size: 2.2rem;
  letter-spacing: 0;
  line-height: 1.63;
  width: calc(100% - 11% * 2);
}

@media screen and (max-width: 768px) {
  .takoyaki-title {
    width: 100%;
    font-size: 1.8rem;
  }
}

/*  */
.about {
  position: relative;
  z-index: 1;
}

.about * {
  margin: 0;
  padding: 0;
}

.about img {
  width: 100%;
  height: auto;
}

.about-map {
  margin-top: 40px;
}

@media screen and (max-width: 768px) {
  .about-map {
    margin-top: 30px;
  }
}

.about-list {
  max-width: 685px;
  margin: 60px auto 0;
}

@media screen and (max-width: 768px) {
  .about-list {
    max-width: 500px;
    margin-top: 30px;
  }
}

.about-item {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

.about-item:not(:first-child) {
  margin-top: 50px;
}

@media screen and (max-width: 768px) {
  .about-item:not(:first-child) {
    margin-top: 30px;
  }
}

.about-img {
  width: 47%;
  max-width: 320px;
}

@media screen and (max-width: 768px) {
  .about-img {
    width: 100%;
    max-width: none;
  }
}

.about-text {
  width: 50%;
  max-width: 338px;
}

@media screen and (max-width: 768px) {
  .about-text {
    width: 100%;
    max-width: none;
    margin-top: 20px;
  }
}

@media screen and (max-width: 768px) {}

.about-text .-title {
  color: #A90002;
  font-family: 'Zen Maru Gothic', sans-serif;
  font-weight: bold;
  font-size: 1.6rem;
}

.about-text .-desc {
  margin-top: 12px;
  font-size: 1.4rem;
  line-height: 1.92;
}

/*  */
.about-seat {
  position: relative;
  z-index: 1;
  margin-top: 60px;
}

@media screen and (max-width: 768px) {
  .about-seat {
    margin-top: 30px;
  }
}

.about-seat * {
  margin: 0;
  padding: 0;
}

.about-seat img {
  width: 100%;
  height: auto;
}

.seat-title {
  background: #F5F5F5;
  font-weight: bold;
  font-size: 1.6rem;
  padding: 12px 20px;
}

.seat-lead {
  margin-top: 24px;
  font-size: 1.5rem;
  line-height: 1.8;
}

.seat-list {
  margin: 30px auto 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 680px;
}

@media screen and (max-width: 768px) {
  .seat-list {
    max-width: 500px;
  }
}

.seat-item {
  border: 1px solid #A90002;
  border-radius: 16px;
  overflow: hidden;
  width: 48.6%;
  max-width: 330px;
}

.seat-item:nth-child(n+3) {
  margin-top: 20px;
}

@media screen and (max-width: 768px) {
  .seat-item {
    width: 100%;
    max-width: none;
  }

  .seat-item:nth-child(n+2) {
    margin-top: 20px;
  }
}

.seat-img {}

.seat-name {
  background: #A90002;
  color: #fff;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 3px 10px;
}

.seat-name p {
  font-size: 1.2rem;
  letter-spacing: 0;
}

.seat-name span {
  display: block;
  font-size: 1rem;
}

/* ------------------------------------------------------------
  * たこ焼きトリビア
------------------------------------------------------------ */
@media screen and (max-width: 600px) {
  .takoyaki-content.-trivia {
    padding-top: 40px;
  }
}

.trivia {
  background:
    linear-gradient(45deg, #FFD900 25%, transparent 25%, transparent 75%, #FFD900 75%),
    linear-gradient(45deg, #FFD900 25%, transparent 25%, transparent 75%, #FFD900 75%);
  background-size:
    100px 100px;
  background-position:
    0 0,
    50px 50px;
  background-color: #ffdf2a;
  /*  */
  margin-top: 80px;
  padding: 9px;
  border-radius: 5px;
}

@media screen and (max-width: 768px) {
  .trivia {
    margin-top: 30px;
    padding: 1.07vw;
  }
}

.trivia-list {
  list-style: none;
  background: #fff;
  border-radius: 3px;
  padding: 40px 80px;
}

@media screen and (max-width: 1000px) {
  .trivia-list {
    padding: 40px 40px;
  }
}

@media screen and (max-width: 768px) {
  .trivia-list {
    padding: 20px 3vw;
  }
}

.trivia-item:not(:first-child) {
  margin-top: 25px;
}

@media screen and (max-width: 768px) {
  .trivia-item:not(:first-child) {
    margin-top: 15px;
  }
}
.trivia-item a {
  color: inherit;
  text-decoration: none;
}
.trivia-number {
  margin: 0 10px 5px 0;
  display: inline-block;
  color: #A90002;
  font-family: 'Zen Maru Gothic', sans-serif;
  font-weight: bold;
  font-size: 1.8rem;
  position: relative;
  padding-left: calc(36px + 5px);
}

@media screen and (max-width: 768px) {
  .trivia-number {
    margin: 0 0 5px 0;
    display: block;
    font-size: 1.6rem;
    padding-left: calc(24px + 3px);
  }
}

.trivia-number span {
  font-size: 1.5em;
  padding-left: 2px;
}

.trivia-number::before {
  content: "";
  display: inline-block;
  width: 36px;
  height: calc(36px * 1.15);
  background: url(../images/takoyaki/trivia-icon.svg) no-repeat center/contain;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

@media screen and (max-width: 768px) {
  .trivia-number::before {
    width: 24px;
    height: calc(24px * 1.15);
  }
}

.trivia-title {
  margin: 0;
  display: inline-block;
  font-family: 'Zen Maru Gothic', sans-serif;
  font-weight: bold;
  font-size: 1.6rem;
}

@media screen and (max-width: 768px) {
  .trivia-title {
    display: block;
    font-size: 1.5rem;
  }
}

/*  */
.trivia-content {
  margin-top: 50px;
  padding-bottom: 50px;
  border-bottom: 1px solid #D6D6D6;
}

@media screen and (max-width: 768px) {
  .trivia-content {
    margin-top: 40px;
    padding-bottom: 40px;
  }
}

.trivia-desc-list {
  list-style: none;
  padding: 0;
}

.trivia-desc:not(:first-child) {
  margin-top: 140px;
}

@media screen and (max-width: 768px) {
  .trivia-desc:not(:first-child) {
    margin-top: 80px;
  }
}

.desc-head {
  position: relative;
  padding-left: calc(60px + 15px);
}

@media screen and (max-width: 768px) {
  .desc-head {
    padding-left: calc(36px + 10px);
  }
}

.desc-head::before {
  content: "";
  display: inline-block;
  width: 60px;
  height: calc(60px * 1.15);
  background: url(../images/takoyaki/trivia-icon.svg) no-repeat center/contain;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

@media screen and (max-width: 768px) {
  .desc-head::before {
    width: 36px;
    height: calc(36px * 1.15);
  }
}

.desc-number {
  margin: 0 0 8px 0;
  color: #A90002;
  font-family: 'Zen Maru Gothic', sans-serif;
  font-weight: bold;
  font-size: 2.2rem;
  line-height: 1;
}

@media screen and (max-width: 768px) {
  .desc-number {
    font-size: 1.6rem;
  }
}

.desc-number span {
  font-size: 1.5em;
  padding-left: 2px;
}

.desc-title {
  margin: 0;
  font-family: 'Zen Maru Gothic', sans-serif;
  font-weight: bold;
  font-size: 2.2rem;
}

@media screen and (max-width: 768px) {
  .desc-title {
    font-size: 1.6rem;
  }
}

.desc-text {
  margin: 1em 0 0;
  font-size: 1.6rem;
  line-height: 1.8;
}

@media screen and (max-width: 768px) {
  .desc-text {
    font-size: 1.4rem;
  }
}

/*  */
.plain-text.trivia-end {
  margin: 50px 0 50px;
  font-weight: 500;
}

@media screen and (max-width: 768px) {
  .plain-text.trivia-end {
    margin: 40px 0 40px;
  }
}