/* FOUNDATION */
/* FOUNDATION BASE */
* {
  box-sizing: border-box;
  font-family: "Noto Sans JP", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  color: var(--color-text);
  /* border: solid 1px var(--color-accent); */
}

html {
  overflow-x: hidden;
}

body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  background-color: #fff;
}

h1, h2, h3, h4, p, div {
  margin: 0 auto;
  padding: 0;
  width: 100%;
}

a {
  text-decoration: none;
}

a:hover {
  opacity: .8;
}

a.u-link-inline {
  display: inline-block;
  margin: 0 4px;
  text-decoration: underline;
}

/* VARIABLES */
:root {
  --color-text: #262626;
  --color-accent: #930e14;
  --color-bg-soft: #f3e8e8;
  --color-bg-footer: #ddd;
  --color-border: #ccc;

  --container-l: 1440px;
  --container-m: 880px;
  --container-s: 720px;
  --container-ss: 200px;

  --font-size-s: 14px;

  --gutter: 16px;
  --gutter-s: 8px;
}

/* LAYOUT*/
/* LAYOUT SITE HEADER */
.l-site-header__inner {
  margin: 0 auto;
  padding: 0 16px;
  width: 100%;
  max-width: var(--container-l);
}

/* LAYOUT SITE CONTENT */
.l-site-content__inner {
  padding: 0 var(--gutter);
  max-width: var(--container-m);
}

/* LAYOUT SITE FOOTER */
.l-site-footer__inner {
  margin: 0 auto;
  padding: 0 16px;
  width: 100%;
  max-width: var(--container-l);
}


/* LAYOUT HEADER TOP */
.l-header-top {
  position: relative;
  z-index: 0;
}

.l-header-top::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 100vw;
  transform: translateX(-50%);
  background: var(--color-accent);
  z-index: -1;
}

@media (max-width: 767.98px) {
  .l-header-top {
    display: none;
  }
}

.l-header-top__inner {
  margin: 0 auto;
  padding: 0 16px;
  width: 100%;
  max-width: var(--container-l);
}

/* LAYOUT HEADER MAIN */
.l-header-main {
  position: relative;
  height: 96px;
  z-index: 0;
}

.l-header-main::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 100vw;
  transform: translateX(-50%);
  border-bottom: solid 1px var(--color-accent);
  z-index: -1;
}

.l-header-main__inner {
  margin: 0 auto;
  padding: 0 16px;
  width: 100%;
  max-width: var(--container-l);
  display: grid;
  grid-template-columns: 246px 1fr 400px;
  gap: var(--gutter);
}

.l-header-bottom {
  margin-left: calc(50% - 50vw);
  width: 100vw;
  background-color: var(--color-accent);
}

.l-header-bottom__inner {
  margin: 0 auto;
  padding: 0 16px;
  width: 100%;
  max-width: var(--container-l);
}

/* 開発中非表示 */
.l-header-bottom {
  display: none;
}

/* LAYOUT FOOTER */
.l-footer-main {
  position: relative;
}

.l-footer-main::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 100vw;
  transform: translateX(-50%);
  background-color: var(--color-bg-footer);
  z-index: -1;
}

.l-footer-main__inner {
  margin: 0 auto;
  max-width: var(--container-l);
}

.l-footer-bottom {
  position: relative;
}

.l-footer-bottom::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 100vw;
  transform: translateX(-50%);
  background-color: var(--color-text);
  z-index: -1;
}

.l-footer-bottom__inner {
  margin: 0 auto;
  max-width: var(--container-l);
}

.l-footer-bottom__copyright {
  padding: 8px 0;
  text-align: center;
  color: white;
}

/* LAYOUT PAGE SECTION */
.l-page-section {
  position: relative;
  z-index: 0;
}

.l-page-section--bg-soft::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 100vw;
  transform: translateX(-50%);
  background-color: var(--color-bg-soft);
  z-index: -1;
}

.l-page-section__inner {
  padding: 16px 0;
}

.l-page-section__h2 {
  padding: 24px 0;
  text-align: center;
  font-family: "Noto Serif JP", serif;
  font-size: 2.1rem;
  font-weight: 800;
  letter-spacing: .1rem;
  color: var(--color-accent);
}

.l-page-section__h2-text {
  margin: 0 auto;
  padding: 0 16px;
  max-width: var(--container-s);
  font-size: 1.15rem;
  line-height: 2rem;
  text-align: justify;
}

.l-page-section__h3 {
  margin: 32px 0 0;
  padding: 32px 0 16px;
  font-size: 1.6rem;
  font-weight: 600;
  text-align: center;
  border-top: solid 1px var(--color-accent);
}

.l-page-section__h3-text {
  padding: 0 16px;
  max-width: var(--container-s);
  padding-bottom: 24px;
  text-align: justify;
  font-size: 1.15rem;
  line-height: 2rem;
}

.l-page-section__image-m {
  margin-bottom: 32px;
  width: 100%;
  aspect-ratio: 800 / 400;
  max-height: 400px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.l-page-section__image-m--exhibit-001 {
  background-image: url("images/exhibit-001.png");
}

.l-page-section__image-m--exhibit-002 {
  background-image: url("images/exhibit-002.png");
}

.l-page-section__image-m--exhibit-003 {
  background-image: url("images/exhibit-003.png");
}

.l-page-section__image-m--workshop-001 {
  background-image: url("images/workshop-001.png");
}

.l-page-section__image-m--workshop-002 {
  background-image: url("images/workshop-002.png");
}

.l-page-section__image-m--workshop-003 {
  background-image: url("images/workshop-003.png");
}

.l-page-section__image-m--car-001 {
  background-image: url("images/car-001.png");
}

.l-page-section__image-m--car-002 {
  background-image: url("images/car-002.png");
}

.l-page-section__image-m--car-003 {
  background-image: url("images/car-003.png");
}

/* LAYOUT SOME COLUMNS */
.l-some-columns__inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

@media(max-width:720px) {
  .l-some-columns__inner {
    grid-template-columns: 1fr;
  }
}

/* COMPONENT */
/* COMPONENT BUTTON */
.c-button {
  width: 100%;
  height: p-front-columns;
  border-radius: 8px;
  border: solid 2px var(--color-accent);
  overflow: hidden;
}

.c-button--workshop-cta {
  margin: 32px 0;
}

.c-button--cta-reserve {
  margin: 32px auto;
  max-width: var(--container-s);
}

.c-button__link {
  display: inline-block;
  width: 100%;
  height: p-front-columns;
  text-align: center;
  line-height: 42px;
  background-color: var(--color-accent);
}

.c-button--negative .c-button__link {
  background-color: white;
}

.c-button__button-text {
  color: white;
  font-weight: 600;
}

.c-button--negative .c-button__button-text {
  color: var(--color-accent);
}

/* COMPONENT INFO TABLE */
.c-info-table {
  margin: 0 auto;
  padding: 0 16px;
  max-width: var(--container-s);
}

.c-info-table__row {
  display: grid;
  grid-template-columns: 10rem 1fr;
  border-top: 1px solid var(--color-accent);
  border-right: 1px solid var(--color-accent);
  border-left: 1px solid var(--color-accent);
  background-color: white;
}

.c-info-table__row:last-child {
  border-bottom: 1px solid var(--color-accent);
}

.c-info-table__th {
  padding: 16px;
  background-color: var(--color-accent);
  border-bottom: solid 1px white;
  font-weight: 500;
  letter-spacing: .05rem;
  text-align: center;
  color: white;
}

.c-info-table__td {
  margin: 0;
  padding: 16px;
}

@media (max-width: 600px) {
  .c-info-table__row {
    grid-template-columns: 1fr;
  }

  .c-info-table--open-time .c-info-table__td {
    text-align: center;
  }
}


/* PROJECT */
/* PROJECT HEADER */
/* PROJECT HEADER TOP */
.p-header-top__list {
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: flex-end;
  gap: var(--gutter);
  font-size: var(--font-size-s);
  line-height: 32px;
}

.p-header-top__item {
  display: inline-block;
  margin: 0;
  padding: 0;
}

.p-header-top__link {
  position: relative;
  margin-left: 20px;
  color: white;
  letter-spacing: .01rem;
}

.p-header-top__link::before {
  content: "";
  position: absolute;
  top: 0px;
  left: -22px;
  width: 20px;
  height: 20px;
  margin-right: 4px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.p-header-top__item--schedule .p-header-top__link::before {
  background-image: url("images/calendar-check.svg");
}

.p-header-top__item--access .p-header-top__link::before {
  background-image: url("images/map-pin.svg");
}

.p-header-top__item--instagram .p-header-top__link::before {
  background-image: url("images/instagram-logo.svg");
}

/* PROJECT HEADER MAIN */
.p-header-logo {
  width: 100%;
  height: 96px;
  display: grid;
  align-items: center;
  justify-content: left;
}

.p-header-cta {
  padding: var(--gutter-s) 0;
  width: 100%;
  height: 96px;
  display: grid;
  grid-template-rows: 1fr auto;
}

@media (max-width: 767.98px) {
  .p-header-cta {
    display: none;
  }
}

.p-header-cta__title {
  padding-bottom: 4px;
  display: grid;
  align-items: end;
  justify-content: center;
  text-align: center;
  color: var(--color-accent);
  font-weight: 600;
}

.p-header-cta__buttons {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--gutter-s);
}

/* PROJECT PAGE TITLE */
.p-page-title {
  padding: 16px 0;
  font-size: 1rem;
}

.p-thumbnail {
  margin-bottom: 32px;
  width: 100%;
  aspect-ratio: 1300 / 640;
  max-height: 480px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

/* PROJECT FRONT SERVICE */
.p-front-columns {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 24px 16px 16px;
  background-color: var(--color-bg-soft);
  border-radius: 8px;
}

.p-front-columns--access {
  background-color: white;
}

.p-front-columns__image {
  margin: 0;
  margin-left: 50%;
  transform: translateX(-50%);
  padding: 0;
  width: 96px;
  height: 96px;
  border-radius: 200px;
  overflow: hidden;
  background-color: var(--color-accent);
}

.p-front-columns__image--exhibit {
  background-image: url("images/icon-exhibit.png");
}

.p-front-columns__image--workshop {
  background-image: url("images/icon-workshop.png");
}

.p-front-columns__image--shops {
  background-image: url("images/icon-shops.png");
}

.p-front-columns__image--car {
  background-image: url("images/icon-car.png");
}

.p-front-columns__image--bus {
  background-image: url("images/icon-bus.png");
}

.p-front-columns__image--taxi {
  background-image: url("images/icon-taxi.png");
}

.p-front-columns__image--workshop-01 {
  background-image: url("images/icon-workshop-01.png");
}

.p-front-columns__image--workshop-02 {
  background-image: url("images/icon-workshop-02.png");
}

.p-front-columns__image--workshop-03 {
  background-image: url("images/icon-workshop-03.png");
}


.p-front-columns__h4 {
  font-size: 1.2rem;
  font-weight: 600;
  text-align: center;
  line-height: 64px;
}

.p-front-columns__h4-text {
  padding: 0 16px 24px;
  text-align: justify;
  line-height: 1.8rem;
}

.p-front-columns__button {
  margin-top: auto;
}

/* PROJECT FOOTER */
.p-footer-menu__columns {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 767.98px) {
  .p-footer-menu__columns {
    grid-template-columns: 1fr;
  }
}

.p-footer-menu__column {
  padding: 16px;
}

.p-footer-menu__logo {
  width: 100%;
  height: 80px;
  background-image: url("images/site-logo.png");
  background-position: left top;
  background-size: contain;
  background-repeat: no-repeat;
}

.p-footer-menu__tel {
  font-weight: 600;
}

.p-footer-menu__tel-icon {
  display: inline-block;
  width: 50px;
  margin: 0 4px 0 0;
  background-color: var(--color-accent);
  text-align: center;
  font-size: .8rem;
  letter-spacing: .05rem;
  color: white;
}

.p-footer-menu__footer-title {
  padding-bottom: 8px;
  font-weight: 600;
}

.p-footer-menu__menu-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.p-footer-menu__menu-item {
  padding-bottom: 8px;
}

/* PROJECT NOTES */
.p-notes {
  border: solid 1px var(--color-accent);
}

.p-notes__list {
  margin: 0;
  padding: 16px;
  list-style: none;
}

.p-notes__item {
  display: block;
  margin: 0 0 8px 32px;
  position: relative;
  line-height: 32px;
}

.p-notes__item:last-child {
  margin-bottom: 0;
}

.p-notes__item::before {
  content: "";
  position: absolute;
  top: 4px;
  left: -32px;
  width: 24px;
  height: 24px;
  margin-right: 4px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  background-image: url("images/check.svg");
}

/* UTILITY */
.u-font-eng {
  font-family: "Jost", sans-serif;
}

.u-font-mini {
  font-size: .95rem;
}

.u-bg-gray {
  background-color: var(--color-bg-soft);
}

.u-no-bottom {
  border-bottom: none;
}

/* GSAP */
.js-reveal {
  opacity: 0;
}

@media (prefers-reduced-motion: reduce) {
  .js-reveal {
    opacity: 1;
  }
}
