@charset "UTF-8";
/***
    The new CSS reset - version 1.11.3 (last updated 25.08.2024)
    GitHub page: https://github.com/elad2412/the-new-css-reset
***/
/*
    Remove all the styles of the "User-Agent-Stylesheet", except for the 'display' property
    - The "symbol *" part is to solve Firefox SVG sprite bug
    - The "html" element is excluded, otherwise a bug in Chrome breaks the CSS hyphens property (https://github.com/elad2412/the-new-css-reset/issues/36)
 */
*:where(:not(html, iframe, canvas, img, svg, video, audio):not(svg *, symbol *)) {
  all: unset;
  display: revert;
}

/* Preferred box-sizing value */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Fix mobile Safari increase font-size on landscape mode */
html {
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
}

/* Reapply the pointer cursor for anchor tags */
a,
button {
  cursor: revert;
}

/* Remove list styles (bullets/numbers) */
ol,
ul,
menu,
summary {
  list-style: none;
}

/* Firefox: solve issue where nested ordered lists continue numbering from parent (https://bugzilla.mozilla.org/show_bug.cgi?id=1881517) */
ol {
  counter-reset: revert;
}

/* For images to not be able to exceed their container */
img {
  max-inline-size: 100%;
  max-block-size: 100%;
}

/* removes spacing between cells in tables */
table {
  border-collapse: collapse;
}

/* Safari - solving issue when using user-select:none on the <body> text input doesn't working */
input,
textarea {
  -webkit-user-select: auto;
  user-select: auto;
}

/* revert the 'white-space' property for textarea elements on Safari */
textarea {
  white-space: revert;
}

/* minimum style to allow to style meter element */
meter {
  -webkit-appearance: revert;
  appearance: revert;
}

/* preformatted text - use only for this feature */
:where(pre) {
  all: revert;
  box-sizing: border-box;
}

/* reset default text opacity of input placeholder */
::placeholder {
  color: unset;
}

/* fix the feature of 'hidden' attribute.
 display:revert; revert to element instead of attribute */
:where([hidden]) {
  display: none;
}

/* revert for bug in Chromium browsers
 - fix for the content editable attribute will work properly.
 - webkit-user-select: auto; added for Safari in case of using user-select:none on wrapper element*/
:where([contenteditable]:not([contenteditable=false])) {
  -moz-user-modify: read-write;
  -webkit-user-modify: read-write;
  overflow-wrap: break-word;
  -webkit-line-break: after-white-space;
  -webkit-user-select: auto;
  line-break: after-white-space;
  user-select: auto;
}

/* apply back the draggable feature - exist only in Chromium and Safari */
:where([draggable=true]) {
  -webkit-user-drag: element;
}

/* Revert Modal native behavior */
:where(dialog:modal) {
  all: revert;
  box-sizing: border-box;
}

/* Remove details summary webkit styles */
::-webkit-details-marker {
  display: none;
}

@font-face {
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: local("Noto Sans CJK JP Regular"), local("Noto Sans JP Regular"), local("NotoSansCJKjp-Regular"), local("NotoSansJP-Regular"), url("../fonts/jptx400.woff2") format("woff2"), url("../fonts/jptx400.woff") format("woff");
}
@font-face {
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: local("Noto Sans CJK JP Medium"), local("Noto Sans JP Medium"), local("NotoSansCJKjp-Medium"), local("NotoSansJP-Medium"), url("../fonts/jptx500.woff2") format("woff2"), url("../fonts/jptx500.woff") format("woff");
}
@font-face {
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: local("Noto Sans CJK JP bold"), local("Noto Sans JP bold"), local("NotoSansCJKjp-bold"), local("NotoSansJP-bold"), url("../fonts/jptx700.woff2") format("woff2"), url("../fonts/jptx700.woff") format("woff");
}
@font-face {
  font-family: "Noto Serif JP";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: local("Noto Serif CJK JP Regular"), local("Noto Serif JP Regular"), local("NotoSerifCJKjp-Regular"), local("NotoSerifJP-Regular"), url("../fonts/jpserif400-sub.woff2") format("woff2"), url("../fonts/jpserif400-sub.woff") format("woff");
}
@font-face {
  font-family: "Noto Serif JP";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: local("Noto Serif CJK JP Medium"), local("Noto Serif JP Medium"), local("NotoSerifCJKjp-Medium"), local("NotoSerifJP-Medium"), url("../fonts/jpserif500-sub.woff2") format("woff2"), url("../fonts/jpserif500-sub.woff") format("woff");
}
@font-face {
  font-family: "Noto Serif JP";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: local("Noto Serif CJK JP bold"), local("Noto Serif JP bold"), local("NotoSerifCJKjp-bold"), local("NotoSerifJP-bold"), url("../fonts/jpserif700-sub.woff2") format("woff2"), url("../fonts/jpserif700-sub.woff") format("woff");
}
:root {
  --jp-common:
    "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "游ゴシック", Meiryo, sans-serif;
  --jp-serif:
    "Noto Serif JP", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho",
    "Times New Roman", serif;
  --main_ttl: 4rem;
  --sub_ttl: 2.4rem;
  --xxl_tx: 2.2rem;
  --xl_tx: 2rem;
  --l_tx: 1.8rem;
  --common_tx: 1.6rem;
  --m_tx: 1.4rem;
  --s_tx: 1.2rem;
  --xs_tx: 1rem;
  --black: #232323;
  --white: #fff;
  --primary: #00a08e;
  --secondary: #938228;
  --primary-bg: #f1f0e5;
}
@media screen and (max-width: 767px) {
  :root {
    --main_ttl: clamp(3.5rem, 4.5vw, 4rem);
    --sub_ttl: clamp(2rem, 3.5vw, 2.4rem);
    --xxl_tx: clamp(1.9rem, 3.2vw, 2.2rem);
    --xl_tx: clamp(1.8rem, 3vw, 2rem);
    --l_tx: clamp(1.7rem, 2.8vw, 1.8rem);
    --common_tx: clamp(1.6rem, 2.6vw, 1.7rem);
    --m_tx: clamp(1.4rem, 2.5vw, 1.6rem);
    --s_tx: clamp(1.2rem, 2.2vw, 1.4rem);
  }
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
  scroll-padding-top: 8rem;
}
@media screen and (max-width: 767px) {
  html {
    scroll-padding-top: 5rem;
  }
}

body {
  width: 100vw;
  min-height: 100dvh;
  text-rendering: optimizeLegibility;
  font-family: var(--jp-serif);
  font-weight: 400;
  font-size: var(--common_tx);
  line-height: 1.5;
  color: var(--black);
  overflow-x: auto;
  overscroll-behavior: none;
  background-color: var(--white);
}
@media screen and (min-width: 1320px) {
  body {
    overflow-x: hidden;
  }
}
@media screen and (min-width: 768px) {
  body {
    width: max(120rem, 100%);
  }
}
@media screen and (max-width: 767px) {
  body {
    overflow-x: hidden;
  }
}

blockquote,
dd,
dl,
figcaption,
h1,
h2,
h3,
h4,
h5,
ul,
ol,
li,
p {
  font-size: inherit;
  font-weight: inherit;
  color: inherit;
}

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

figure,
picture {
  margin: 0;
  line-height: 0;
}

pre {
  white-space: pre;
}

button {
  cursor: pointer;
}

:where(button, a) {
  transition: opacity 0.3s ease;
}
@media (any-hover: hover) {
  :where(button, a):hover {
    opacity: 0.8;
  }
}
:where(button, a):not([tabindex="-1"]):focus-visible {
  outline: 0.2rem solid var(--white);
  outline-offset: 0.3rem;
}

strong {
  font-weight: bold;
}

.c-meiji-container {
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .c-meiji-container--medium {
    width: 120rem;
  }
}
@media screen and (max-width: 767px) {
  .c-meiji-container--medium {
    padding-inline: 5vw;
  }
}
@media screen and (min-width: 768px) {
  .c-meiji-container {
    padding-inline: 2rem;
  }
  .c-meiji-container--small {
    width: 90rem;
  }
}

.c-meiji-nav {
  display: flex;
  gap: 2rem;
}
@media screen and (max-width: 767px) {
  .c-meiji-nav {
    flex-wrap: wrap;
  }
}
@media screen and (min-width: 768px) {
  .c-meiji-nav {
    align-items: center;
    justify-content: flex-end;
    gap: 3rem;
    width: fit-content;
  }
}
.c-meiji-nav__item {
  display: block;
}
@media screen and (max-width: 767px) {
  .c-meiji-nav__item {
    width: 100%;
  }
}
.c-meiji-nav__link {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 0.5rem 0;
  transition: opacity 0.3s ease;
  color: var(--white);
}
@media (any-hover: hover) {
  .c-meiji-nav__link:hover {
    opacity: 0.8;
  }
}
.c-meiji-nav__text {
  display: block;
  font-family: var(--jp-serif);
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
}
@media screen and (max-width: 767px) {
  .c-meiji-nav__text {
    font-size: var(--l_tx);
  }
}
@media screen and (min-width: 768px) {
  .c-meiji-nav__text {
    font-size: var(--common_tx);
  }
}

.c-meiji-sec {
  position: relative;
  z-index: 98;
  padding: 8rem 0;
}
@media screen and (max-width: 767px) {
  .c-meiji-sec {
    transform: translateZ(0);
    will-change: transform;
    padding: 5rem 0;
  }
}

.c-meiji-ttl {
  text-align: center;
  font-size: var(--main_ttl);
}
@media screen and (min-width: 768px) {
  .c-meiji-ttl {
    margin-bottom: 6rem;
  }
}
@media screen and (max-width: 767px) {
  .c-meiji-ttl {
    margin-bottom: 4rem;
  }
}
.c-meiji-ttl__en {
  display: block;
  font-weight: 700;
}
.c-meiji-ttl__jp {
  display: block;
  font-size: var(--sub_ttl);
  font-weight: 400;
}
.c-meiji-ttl__icon {
  display: block;
  width: 2.8em;
  height: 2.8em;
  object-fit: contain;
  margin-inline: auto;
}

.c-meiji-sns {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 0.8rem;
  width: fit-content;
  font-family: var(--jp-common);
  font-size: var(--m_tx);
  font-weight: 700;
  color: var(--white);
}
@media screen and (min-width: 768px) {
  .c-meiji-sns {
    font-size: var(--common_tx);
  }
}
.c-meiji-sns__icon {
  display: block;
  width: 3.5em;
  height: 3.5em;
  object-fit: contain;
}

.p-meiji-hd {
  transition: background-color 0.3s linear;
  z-index: 99;
  position: sticky;
  top: 0;
  left: 0;
}
@media screen and (max-width: 767px) {
  .p-meiji-hd {
    width: 100%;
  }
  .p-meiji-hd--showed {
    background-color: var(--black);
  }
}
@media screen and (min-width: 768px) {
  .p-meiji-hd {
    width: max(120rem, 100%);
  }
}
.p-meiji-hd--scrolled {
  background-color: var(--black);
}
.p-meiji-hd__cont {
  padding: 1.5rem min(5vw, 5rem);
  height: 8rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .p-meiji-hd__cont {
    flex-wrap: wrap;
  }
}
.p-meiji-hd__logo {
  display: block;
  aspect-ratio: 4/1;
  height: 100%;
  opacity: 0;
}
:where(.p-meiji-hd--scrolled) .p-meiji-hd__logo, :where(.p-meiji-hd--showed) .p-meiji-hd__logo {
  opacity: 1;
}
@media screen and (max-width: 767px) {
  .p-meiji-hd__logo {
    z-index: 5;
    transition: opacity 0.5s ease;
  }
}
@media screen and (min-width: 768px) {
  .p-meiji-hd__logo {
    transition: opacity 0.3s ease;
  }
}
.p-meiji-hd__logo img {
  display: block;
  width: 100%;
  object-fit: contain;
}
@media screen and (max-width: 767px) {
  .p-meiji-hd__main-nav {
    z-index: 2;
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.5s ease, padding-top 0.5s ease, padding-bottom 0.5s ease;
    width: 100vw;
    margin-inline: calc(50% - 50vw);
    position: absolute;
    top: 0;
    left: 0;
    background-color: var(--black);
  }
  :where(.p-meiji-hd--showed) .p-meiji-hd__main-nav {
    grid-template-rows: 1fr;
  }
  .p-meiji-hd__main-nav .c-meiji-nav {
    padding-top: 12rem;
    padding-bottom: 4rem;
  }
}
.p-meiji-hd__main-nav-inner {
  overflow: hidden;
}

@media screen and (max-width: 767px) {
  .p-main-nav-ctrlbtn {
    z-index: 5;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    width: 4rem;
    aspect-ratio: 4/3;
    position: relative;
  }
}
@media screen and (min-width: 768px) {
  .p-main-nav-ctrlbtn {
    display: none;
  }
}
.p-main-nav-ctrlbtn__bar {
  transition: rotate 0.3s ease, left 0.3s ease, top 0.3s ease, opacity 0.3s ease, transform 0.3s ease;
  width: 100%;
  height: 0.5rem;
  background-color: var(--white);
}
.p-main-nav-ctrlbtn__bar:nth-child(1) {
  background-color: var(--primary);
}
.p-main-nav-ctrlbtn__bar:nth-child(2) {
  background-color: var(--secondary);
}
.p-main-nav-ctrlbtn__bar:nth-child(3) {
  background-color: var(--primary-bg);
}
:where(.p-meiji-hd--showed) .p-main-nav-ctrlbtn__bar {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
:where(.p-meiji-hd--showed) .p-main-nav-ctrlbtn__bar:nth-child(1) {
  opacity: 0;
}
:where(.p-meiji-hd--showed) .p-main-nav-ctrlbtn__bar:nth-child(2) {
  rotate: -45deg;
  left: 8%;
}
:where(.p-meiji-hd--showed) .p-main-nav-ctrlbtn__bar:nth-child(3) {
  rotate: 45deg;
}

.p-meiji-main {
  margin-top: -8rem;
}

.p-meiji-mv {
  will-change: transform;
  z-index: 0;
  overflow: hidden;
  transform: translateZ(0);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  position: sticky;
  top: 0;
  left: 0;
}
@media screen and (max-width: 767px) {
  .p-meiji-mv {
    aspect-ratio: 500/713;
  }
}
@media screen and (min-width: 768px) {
  .p-meiji-mv {
    aspect-ratio: 20/9;
  }
}
.p-meiji-mv__ttl {
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 90%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  pointer-events: none;
}
@media screen and (min-width: 768px) {
  .p-meiji-mv__ttl {
    max-width: 80rem;
  }
}
.p-meiji-mv__img {
  display: block;
  width: 100%;
  max-width: 60rem;
  height: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
}
@media screen and (min-width: 768px) {
  .p-meiji-mv__img {
    max-width: 80rem;
  }
}
.p-meiji-mv__txt {
  z-index: 2;
  display: block;
  width: 90%;
  max-width: 90rem;
  padding: 0 2rem;
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--jp-common);
  font-size: var(--xs_tx);
  font-weight: 400;
  line-height: 1.8;
  text-align: center;
  color: var(--white);
  pointer-events: none;
}
@media screen and (min-width: 768px) {
  .p-meiji-mv__txt {
    bottom: 4rem;
    font-size: var(--s_tx);
  }
}
.p-meiji-mv__slider {
  overflow: hidden;
  z-index: 1;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.p-meiji-mv__pic {
  transition: opacity 1s ease-in-out;
  opacity: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.p-meiji-mv__pic img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.p-meiji-news {
  padding-block: 6rem;
  background-color: var(--primary);
}
.p-meiji-news__ttl {
  margin-bottom: 4rem;
  color: var(--white);
}
.p-meiji-news__list {
  display: flex;
  flex-direction: column;
  row-gap: 1rem;
}
.p-meiji-news__item-link {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) 1em;
  align-items: start;
  gap: 3rem;
  width: 100%;
  padding: 0.5em;
  font-family: var(--jp-common);
  font-size: var(--m_tx);
  color: var(--white);
}
@media (any-hover: hover) {
  .p-meiji-news__item-link:not(.inactive):hover {
    opacity: 1;
    background-color: rgba(0, 0, 0, 0.2);
  }
}
.p-meiji-news__item-link:not(.inactive):focus-visible {
  background-color: rgba(0, 0, 0, 0.2);
}
.p-meiji-news__item-link:not(.inactive)::after {
  transform: rotate(45deg);
  display: block;
  flex-shrink: 0;
  width: 0.7em;
  aspect-ratio: 1/1;
  margin-top: 0.5em;
  border-top: 0.1rem solid var(--white);
  border-right: 0.1rem solid var(--white);
  content: "";
}
.p-meiji-news__sns {
  display: flex;
  justify-content: flex-end;
  margin-top: 3rem;
}

.p-meiji-concept {
  position: relative;
  background-color: var(--primary-bg);
}
@media screen and (min-width: 768px) {
  .p-meiji-concept__cont-inner {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: center;
    gap: 6rem;
  }
}
.p-meiji-concept__img {
  width: 100%;
}
.p-meiji-concept__txt-ttl {
  margin-bottom: 2rem;
  font-family: var(--jp-serif);
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .p-meiji-concept__txt-ttl {
    margin-top: 3rem;
    font-size: min(2.2rem, 7vw);
    text-align: center;
  }
}
@media screen and (min-width: 768px) {
  .p-meiji-concept__txt-ttl {
    font-size: 3.2rem;
  }
}
.p-meiji-concept__txt-des {
  font-family: var(--jp-serif);
  font-weight: 400;
  line-height: 2;
  color: var(--black);
}
@media screen and (min-width: 768px) {
  .p-meiji-concept__txt-des {
    font-size: var(--l_tx);
  }
}

@media screen and (min-width: 768px) {
  .p-meiji-menu {
    background: center/cover no-repeat fixed url(../img/meijiyasuda/bg-menu.jpg);
    padding: 15rem 2rem;
  }
}
@media screen and (max-width: 767px) {
  .p-meiji-menu {
    padding: 0;
  }
}
@media screen and (min-width: 768px) {
  .p-meiji-menu__bg {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .p-meiji-menu__bg {
    will-change: transform;
    transform: translateZ(0);
    z-index: 1;
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    height: 110lvh;
    background: center/cover no-repeat url(../img/meijiyasuda/bg-menu.jpg);
  }
}
@media screen and (max-width: 767px) {
  .p-meiji-menu__cont {
    position: relative;
    z-index: 2;
    padding: 7rem 2rem;
  }
}
.p-meiji-menu__cont-inner {
  margin-inline: auto;
  background-color: var(--white);
}
@media screen and (max-width: 767px) {
  .p-meiji-menu__cont-inner {
    margin-top: -110lvh;
  }
}
@media screen and (max-width: 767px) {
  .p-meiji-menu__cont-inner {
    width: 100%;
    padding: 5rem 2rem;
  }
}
@media screen and (min-width: 768px) {
  .p-meiji-menu__cont-inner {
    width: 118rem;
    padding: 8rem 10rem;
  }
}
.p-meiji-menu__cat {
  display: block;
}
.p-meiji-menu__cat-ttl {
  margin-top: 5rem;
  margin-bottom: 3rem;
  padding-bottom: 1em;
  border-bottom: 0.1rem solid var(--black);
  font-size: var(--sub_ttl);
  font-weight: 700;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-meiji-menu__cat-cont {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 4rem;
  }
}
@media screen and (max-width: 767px) {
  .p-meiji-menu__sub-cat:not(:first-child) {
    margin-top: 4rem;
  }
}
.p-meiji-menu__cat-img {
  width: 100%;
}
.p-meiji-menu__sub-cat-ttl {
  margin-bottom: 2rem;
  font-size: var(--xl_tx);
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .p-meiji-menu__sub-cat-ttl {
    margin-top: 4rem;
  }
}
@media screen and (max-width: 767px) {
  .p-meiji-menu__sub-cat-ttl {
    margin-top: 2rem;
    text-align: center;
  }
}
.p-meiji-menu__sub-cat-section-ttl {
  margin-bottom: 1.5rem;
  color: var(--primary);
}
.p-meiji-menu__sub-cat-item {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 100%;
  gap: 0.2em 2rem;
  margin-top: 0.5em;
}
.p-meiji-menu__sub-cat-name {
  display: block;
  flex: 1;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .p-meiji-menu__sub-cat-name {
    font-size: var(--s_tx);
  }
}
.p-meiji-menu__sub-cat-price {
  display: block;
  width: fit-content;
  flex-shrink: 0;
  white-space: nowrap;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .p-meiji-menu__sub-cat-price {
    font-size: var(--s_tx);
  }
}
.p-meiji-menu__sub-cat-choice {
  display: block;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-meiji-menu__sub-cat-choice {
    font-size: var(--s_tx);
  }
}
@media screen and (max-width: 767px) {
  .p-meiji-menu__sub-cat-choice {
    font-size: 1.1rem;
  }
}
.p-meiji-menu__sub-cat-choice:last-child {
  margin-bottom: 2rem;
}
.p-meiji-menu__note {
  font-size: var(--s_tx);
}
@media screen and (min-width: 768px) {
  .p-meiji-menu__note {
    margin-top: 5rem;
    text-align: right;
  }
}
@media screen and (max-width: 767px) {
  .p-meiji-menu__note {
    margin-top: 2rem;
    text-align: center;
  }
}

.p-meiji-history {
  position: relative;
  background-color: var(--primary-bg);
}
.p-meiji-history__txt-ttl {
  margin-bottom: 2rem;
  font-size: var(--main_ttl);
  font-weight: 500;
  text-align: center;
  letter-spacing: 0.1em;
}
.p-meiji-history__txt-ttl small {
  display: block;
  font-size: var(--xl_tx);
}
.p-meiji-history__txt-des {
  line-height: 2;
}
@media screen and (min-width: 768px) {
  .p-meiji-history__txt-des {
    font-size: var(--l_tx);
    text-align: center;
  }
}
.p-meiji-history__img-box {
  width: min(70rem, 100%);
  margin-inline: auto;
  margin-top: 4rem;
}
@media screen and (min-width: 768px) {
  .p-meiji-history__info-cont {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 5rem;
    width: 98rem;
    margin-inline: auto;
  }
}
.p-meiji-history__info-ttl {
  width: fit-content;
  padding-inline: 0.5em;
  padding-bottom: 0.4em;
  border-bottom: 0.1rem solid var(--black);
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .p-meiji-history__info-ttl {
    font-size: 2.2rem;
    margin: 10rem auto 3rem;
  }
}
@media screen and (min-width: 768px) {
  .p-meiji-history__info-ttl {
    font-size: 3.2rem;
    margin: 8rem auto 5rem;
  }
}
.p-meiji-history__info-img {
  width: 100%;
}
.p-meiji-history__info-txt-ttl {
  margin-bottom: 3rem;
  font-size: var(--sub_ttl);
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .p-meiji-history__info-txt-ttl {
    margin-top: 3rem;
    text-align: center;
  }
}
.p-meiji-history__info-txt-des {
  font-family: var(--jp-serif);
  line-height: 1.8;
}

.p-meiji-access {
  background-color: var(--primary);
  color: var(--white);
}
@media screen and (min-width: 768px) {
  .p-meiji-access__info-cont {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 40rem;
    align-items: flex-start;
    gap: 8rem;
    width: 98rem;
    margin-inline: auto;
  }
}
.p-meiji-access__info-txt-ttl {
  font-size: var(--xxl_tx);
  font-weight: 700;
}
.p-meiji-access__info-txt-addresss {
  margin-top: 1rem;
  font-size: var(--m_tx);
}
.p-meiji-access__info-txt-addresss small {
  display: block;
  margin-top: 1rem;
  font-size: var(--s_tx);
}
.p-meiji-access__info-txt-des {
  margin-top: 2rem;
  font-family: var(--jp-common);
  font-size: var(--s_tx);
  line-height: 1.8;
}
.p-meiji-access__info-txt-des strong {
  font-weight: 400;
  text-decoration: underline;
}
@media screen and (max-width: 767px) {
  .p-meiji-access__info-txt-des strong {
    font-size: var(--s_tx);
  }
}
@media screen and (max-width: 767px) {
  .p-meiji-access__info-txt-des {
    margin-bottom: 3rem;
    font-size: 1.1rem;
  }
}

.p-meiji-link {
  background-color: var(--white);
}
.p-meiji-link__list {
  width: 80%;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .p-meiji-link__list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 4rem 5rem;
    padding-inline: 2rem;
  }
}
@media screen and (max-width: 767px) {
  .p-meiji-link__item:not(:first-child) {
    margin-top: 4rem;
  }
}
.p-meiji-link__link {
  display: block;
  aspect-ratio: 420/107;
  background-color: #ccc;
}
.p-meiji-link__link:focus-visible {
  outline-color: var(--primary);
}

.p-meiji-ft {
  background-color: var(--black);
}
.p-meiji-ft__logo-box {
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .p-meiji-ft__logo-box {
    width: 25rem;
  }
}
@media screen and (max-width: 767px) {
  .p-meiji-ft__logo-box {
    width: 50%;
  }
}
.p-meiji-ft__nav-cont {
  margin-top: 5rem;
}
@media screen and (min-width: 768px) {
  .p-meiji-ft__nav-cont {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: nowrap;
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .p-meiji-ft__sns {
    width: fit-content;
    margin-top: 3rem;
    margin-inline: auto;
  }
}
.p-meiji-ft__contact {
  margin-top: 0.5rem;
  font-size: var(--m_tx);
  color: var(--white);
}
.p-meiji-ft__contact a {
  text-decoration: underline;
}
@media screen and (max-width: 767px) {
  .p-meiji-ft__contact {
    margin-top: 3rem;
    text-align: center;
  }
}
.p-meiji-ft__copyright {
  margin-top: 3rem;
  font-size: var(--s_tx);
  text-align: center;
  color: var(--white);
}

.u-wid-fit {
  width: fit-content;
  margin-inline: auto;
}

.u-tac {
  text-align: center;
}

@media screen and (min-width: 768px) {
  .u-pc-tac {
    text-align: center;
  }
}
@media screen and (max-width: 767px) {
  .u-sp-tac {
    text-align: center;
  }
}
.u-tal {
  text-align: left;
}

.u-tar {
  text-align: right;
}

.u-center {
  margin: 0 auto;
}

.u-right {
  margin: 0 0 0 auto;
}

.u-left {
  margin: 0 auto 0 0;
}

.u-fw-b {
  font-weight: bold;
}

.u-fz-s {
  font-size: var(--s_tx);
}

.u-fz-common {
  font-size: var(--common_tx);
}

.u-fz-m {
  font-size: var(--m_tx);
}

.u-fz-l {
  font-size: var(--l_tx);
}

.u-fz-xl {
  font-size: var(--xl_tx);
}

.u-fw300 {
  font-weight: 300;
}

.u-fw400 {
  font-weight: 400;
}

.u-fw600 {
  font-weight: 600;
}

.u-fw700 {
  font-weight: 700;
}

.u-fw900 {
  font-weight: 900;
}

.u-mt-00 {
  margin-top: 0;
}

.u-mt-10 {
  margin-top: 1rem;
}

.u-mt-20 {
  margin-top: 2rem;
}

.u-mt-30 {
  margin-top: 3rem;
}

.u-mt-40 {
  margin-top: 4rem;
}

.u-mt-50 {
  margin-top: 5rem;
}

.u-mt-60 {
  margin-top: 6rem;
}

.u-mt-70 {
  margin-top: 7rem;
}

.u-mt-80 {
  margin-top: 8rem;
}

.u-mt-90 {
  margin-top: 9rem;
}

.u-mt-100 {
  margin-top: 10rem;
}

.u-mb-00 {
  margin-bottom: 0;
}

.u-mb-10 {
  margin-bottom: 1rem;
}

.u-mb-20 {
  margin-bottom: 2rem;
}

.u-mb-30 {
  margin-bottom: 3rem;
}

.u-mb-40 {
  margin-bottom: 4rem;
}

.u-mb-50 {
  margin-bottom: 5rem;
}

.u-mb-60 {
  margin-bottom: 6rem;
}

.u-mb-70 {
  margin-bottom: 7rem;
}

.u-mb-80 {
  margin-bottom: 8rem;
}

.u-mb-90 {
  margin-bottom: 9rem;
}

.u-mb-100 {
  margin-bottom: 10rem;
}

.u-lh12 {
  line-height: 1.2;
}

.u-lh13 {
  line-height: 1.3;
}

.u-lh15 {
  line-height: 1.5;
}

.u-lh16 {
  line-height: 1.6;
}

.u-lh18 {
  line-height: 1.8;
}

.u-lh20 {
  line-height: 2;
}

.u-udline {
  text-decoration: underline;
}

.u-pt-10 {
  padding-top: 1rem;
}

.u-pt-15 {
  padding-top: 1.5rem;
}

.u-pt-20 {
  padding-top: 2rem;
}

.u-pt-30 {
  padding-top: 3rem;
}

.u-pt-40 {
  padding-top: 4rem;
}

.u-pb-0 {
  padding-bottom: 0;
}

.u-pb-10 {
  padding-bottom: 1rem;
}

.u-pb-15 {
  padding-bottom: 1.5rem;
}

.u-pb-20 {
  padding-bottom: 2rem;
}

.u-pb-30 {
  padding-bottom: 3rem;
}

.u-pb-40 {
  padding-bottom: 4rem;
}

.u-pl-10 {
  padding-left: 1rem;
}

.u-pr-10 {
  padding-right: 1rem;
}

.u-pl-15 {
  padding-left: 1.5rem;
}

.u-pr-15 {
  padding-right: 1.5rem;
}

.u-pl-20 {
  padding-left: 2rem;
}

.u-pr-20 {
  padding-right: 2rem;
}

.u-p-20 {
  padding: 2rem;
}

@media screen and (min-width: 768px) {
  .u-pc-none {
    display: none;
  }
}

@media screen and (max-width: 767px) {
  .u-sp-none {
    display: none;
  }
}

.u-none {
  display: none;
}

.u-hidden {
  visibility: hidden;
}

.u-central {
  display: flex;
  align-items: center;
  justify-content: center;
}

.u-pointer {
  cursor: pointer;
}

.u-overflow-hidden {
  overflow: hidden;
}

.u-indent-1em {
  display: inline-block;
  padding-left: 1em;
  text-indent: -1em;
}/*# sourceMappingURL=meijiyasuda.css.map */