/* http://meyerweb.com/eric/tools/css/reset/
v2.0 | 20110126
License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}

/* HTML5 display-role reset for older browsers
*/
article, aside, main, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

:root {
  --color-site-primary: #000;
  --color-site-secondary: #fff;
  --color-site-tertiary: #aaa;
  --color-site-quaternary: #707070;
  --color-site-require: #AF0C0C;
  --color-policy-primary: #D5D5D5;
  --color-policy-secondary: #707070;
  --color-border-primary: #2F2F2F;
  --color-border-secondary: #D5D5D5;
  --color-border-tertiary: #919191;
}
[id] {
  scroll-margin-top:100px;
}

::selection {
  color: var(--color-site-secondary);
  background-color: var(--color-site-primary);
}

* {
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  height: 100%;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Yuji Syuku", serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.45;
  position: relative;
  margin: 0;
  padding: 0;
  letter-spacing: 0.1em;
  color: var(--color-site-primary);
  background-color: var(--color-site-secondary);
  text-decoration-skip: none;
  -webkit-text-size-adjust: 100%;
}
@media print, screen and (width > 1024px) {
  body {
    font-size: 16px;
  }
}
body:not(#top) {
  padding-top: 96px;
}
@media print, screen and (width > 1024px) {
  body:not(#top) {
    padding-top: 240px;
  }
}

a {
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}
a:hover {
  text-decoration: underline;
}

img {
  vertical-align: bottom;
}

@media only screen and (width <= 1024px) {
  .u-use--pc {
    display: none !important;
  }
}

@media print, screen and (width > 1024px) {
  .u-use--sp {
    display: none !important;
  }
}

.l-header {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  width: 100%;
  height: 58px;
  padding: 18px 10px 0 20px;
  mix-blend-mode: difference;
}
@media print, screen and (width > 1024px) {
  .l-header {
    height: 86px;
    padding: 40px 40px 0;
  }
}

.l-article__inner {
  margin: 0 auto 0;
  width: calc(100% - 40px);
}
@media print, screen and (width > 1024px) {
  .l-article__inner {
    width: calc(100% - 40px);
    max-width: 1200px;
  }
}

.l-footer {
  position: sticky;
  top: 100svh;
  padding-top: 60px;
  padding-bottom: 34px;
  background: var(--color-site-primary);
}
@media print, screen and (width > 1024px) {
  .l-footer {
    padding-top: 130px;
    padding-bottom: 75px;
  }
}
.l-footer__inner {
  margin: 0 auto 0;
  width: calc(100% - 40px);
}
@media print, screen and (width > 1024px) {
  .l-footer__inner {
    width: calc(100% - 40px);
    max-width: 1200px;
  }
}
@media print, screen and (width > 1024px) {
  .l-footer__inner {
    display: flex;
    align-items: flex-start;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
  }
}

.c-hd {
  text-align: center;
  font-size: 30px;
}
@media print, screen and (width > 1024px) {
  .c-hd {
    font-size: 40px;
  }
}

.c-btn {
  display: block;
  width: fit-content;
  min-width: 236px;
  height: 62px;
  margin: auto;
  padding: 19px 15px 20px;
  text-align: center;
  text-decoration: none !important;
  cursor: pointer;
}
.c-btn:is(button, input) {
  border: 0;
  background: none;
}
@media print, screen and (width > 1024px) {
  .c-btn {
    min-width: 258px;
    height: 68px;
    padding: 20px;
  }
}
.c-btn__inner {
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0;
}
@media print, screen and (width > 1024px) {
  .c-btn__inner {
    font-size: 20px;
  }
}
.c-btn--primary {
  position: relative;
  border: 1px solid var(--color-site-quaternary) !important;
  transition: all 0.2s;
}
.c-btn--primary::after {
  content: "";
  position: absolute;
  right: 11px;
  top: 50%;
  translate: 0 -50%;
  width: 8px;
  height: 10px;
  background: var(--color-site-primary);
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  transition: all 0.2s;
}
@media (hover: hover) {
  .c-btn--primary:where(:any-link, :enabled, summary):hover {
    color: var(--color-site-secondary);
    background-color: var(--color-site-quaternary);
    transition: all 0.3s;
  }
  .c-btn--primary:where(:any-link, :enabled, summary):hover::after {
    background-color: var(--color-site-secondary);
    transition: all 0.3s;
  }
}
.c-btn--secondary {
  position: relative;
  border: 1px solid var(--color-site-quaternary) !important;
  transition: all 0.2s;
}
.c-btn--secondary::after {
  content: "";
  position: absolute;
  left: 11px;
  top: 50%;
  translate: 0 -50%;
  width: 8px;
  height: 10px;
  background: var(--color-site-primary);
  clip-path: polygon(100% 0, 100% 100%, 0 50%);
  transition: all 0.2s;
}
@media (hover: hover) {
  .c-btn--secondary:where(:any-link, :enabled, summary):hover {
    color: var(--color-site-secondary);
    background-color: var(--color-site-quaternary);
    transition: all 0.3s;
  }
  .c-btn--secondary:where(:any-link, :enabled, summary):hover::after {
    background-color: var(--color-site-secondary);
    transition: all 0.3s;
  }
}

.c-input {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  width: 100%;
  height: 45px;
  padding: 10px 15px;
  font-size: 15px;
  border: 1px solid var(--color-border-primary);
  border-radius: 10px;
}
@media print, screen and (width > 1024px) {
  .c-input {
    height: 70px;
    padding: 20px 35px;
    font-size: 17px;
  }
}
.c-input::placeholder {
  color: #AAA;
}
@media print, screen and (width > 1024px) {
  .c-input--middle {
    width: 50%;
  }
}
.c-input--short {
  width: 170px;
}
@media print, screen and (width > 1024px) {
  .c-input--short {
    width: 240px;
  }
}

.c-textarea {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  width: 100%;
  height: 45px;
  padding: 10 15px;
  font-size: 15px;
  border: 1px solid var(--color-border-primary);
  border-radius: 10px;
  field-sizing: content;
}
@media print, screen and (width > 1024px) {
  .c-textarea {
    height: 50px;
    padding: 20px 35px;
    font-size: 17px;
  }
}
.c-textarea--large {
  height: 234px;
}
@media print, screen and (width > 1024px) {
  .c-textarea--large {
    height: 450px;
  }
}

.c-check {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  display: flex;
  align-items: center;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  column-gap: 10px;
  width: 100%;
  padding: 10px;
  margin: auto;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.45;
  letter-spacing: 0;
  background-color: #EFEFEF;
  position: relative;
  cursor: pointer;
}
@media print, screen and (width > 1024px) {
  .c-check {
    width: fit-content;
    padding: 14px 25px;
    font-size: 21px;
    column-gap: 16px;
  }
}
.c-check__input {
  display: none;
}
.c-check__input:checked ~ .c-check__box::before {
  opacity: 1;
}
.c-check__box {
  position: relative;
  width: 21px;
  height: 21px;
  background: #fff;
  border: 2px solid var(--color-border-secondary);
  border-radius: 5px;
  pointer-events: none;
}
.c-check__box::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 5px;
  translate: -50% 0;
  rotate: -45deg;
  width: 10px;
  height: 4px;
  border-left: 2px solid var(--color-border-secondary);
  border-bottom: 2px solid var(--color-border-secondary);
  opacity: 0;
}
@media print, screen and (width > 1024px) {
  .c-check__box {
    width: 27px;
    height: 27px;
  }
  .c-check__box::before {
    top: 5px;
    width: 13px;
    height: 7px;
  }
}
.c-check__label {
  cursor: pointer;
}
.c-check__link {
  margin-right: 10px;
  color: var(--color-site-quaternary);
  text-decoration: underline;
}
@media print, screen and (width > 1024px) {
  .c-check__link {
    margin-right: 5px;
  }
}

.p-logo {
  width: 257px;
}
@media print, screen and (width > 1024px) {
  .p-logo {
    width: 405px;
  }
}
.p-logo__img {
  width: 100%;
}

.p-menu {
  position: fixed;
  z-index: 80;
  top: 0;
  left: 0;
  display: grid;
  visibility: hidden;
  overflow-y: auto;
  width: 100%;
  height: 100%;
  padding: 50px 0 20px;
  pointer-events: none;
  opacity: 0;
  background: url(../images/common/bg_pattern.jpg) no-repeat center center;
  background-size: cover;
  place-items: center;
}
.p-menu.is_open {
  visibility: visible;
  pointer-events: initial;
  opacity: 1;
}
@media print, screen and (width > 1024px) {
  .p-menu {
    padding: 60px 0;
  }
}
.p-menu__nav {
  margin: 0 auto 60px;
}
@media print, screen and (width > 1024px) {
  .p-menu__nav {
    display: grid;
    width: 680px;
    margin-bottom: 80px;
    grid-template-columns: 430px 1fr;
    column-gap: 111px;
  }
}
.p-menu__img {
  width: 430px;
}
@media only screen and (width <= 1024px) {
  .p-menu__img {
    display: none;
  }
}
.p-menu--btn {
  position: fixed;
  z-index: 100;
  top: 20px;
  right: 10px;
  width: 59px;
  height: 40px;
  padding: 20px 0 0;
  cursor: pointer;
  border: 0;
  background: none;
  mix-blend-mode: difference;
}
.p-menu--btn::before, .p-menu--btn::after {
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  content: "";
  background: var(--color-site-secondary);
}
.p-menu--btn::before {
  top: 0;
}
.p-menu--btn::after {
  top: 12px;
}
.p-menu--btn.is_open::before {
  top: 10px;
  rotate: 160deg;
}
.p-menu--btn.is_open::after {
  top: 10px;
  rotate: -160deg;
}
@media print, screen and (width > 1024px) {
  .p-menu--btn {
    top: 50px;
    right: 55px;
    width: 91px;
    height: 70px;
    padding-top: 43px;
  }
  .p-menu--btn::before {
    top: 6px;
  }
  .p-menu--btn::after {
    top: 24px;
  }
  .p-menu--btn.is_open::before {
    top: 16px;
    rotate: 20deg;
  }
  .p-menu--btn.is_open::after {
    top: 16px;
    rotate: -20deg;
  }
}
.p-menu--btn__txt {
  font-family: "Yuji Syuku", serif;
  color: var(--color-site-secondary);
  text-align: center;
  letter-spacing: 0.4em;
  font-size: 13px;
}
@media print, screen and (width > 1024px) {
  .p-menu--btn__txt {
    font-size: 18px;
  }
}

.p-gnav__list {
  display: flex;
  align-items: center;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: center;
  /* row-gap: 34px; */
  row-gap:1.75em;
}
@media print, screen and (width > 1024px) {
  .p-gnav__list {
    align-items: flex-start;
    justify-content: flex-start;
    margin-top: 10px;
    /* row-gap: 47px; */
    row-gap:1.75em;
  }
}
.p-gnav__link {
  white-space: nowrap;
  letter-spacing: 0;
  font-size: 18px;
}
@media print, screen and (width > 1024px) {
  .p-gnav__link {
    font-size: 23px;
  }
}
.p-gnav--jumbotron {
  position: absolute;
  z-index: 4;
  left: 40px;
  bottom: 65px;
}
@media only screen and (width <= 1024px) {
  .p-gnav--jumbotron {
    display: none !important;
  }
}
.p-gnav--jumbotron .p-gnav__list {
  row-gap: 25px;
}
.p-gnav--jumbotron .p-gnav__link {
  color: var(--color-site-tertiary);
  font-size: 17px;
  mix-blend-mode: difference;
}

.p-news {
  margin: 0 auto 125px;
  width: calc(100% - 40px);
}
@media print, screen and (width > 1024px) {
  .p-news {
    width: calc(100% - 40px);
    max-width: 1200px;
  }
}
.p-news {
  display: grid;
  grid-template-columns: 100%;
  row-gap: 45px;
}
@media print, screen and (width > 1024px) {
  .p-news {
    margin-bottom: 260px;
    grid-template-columns: auto 1fr;
    gap: 0 7.25%;
  }
}
.p-news__title {
  text-align: center;
  font-size: 30px;
}
@media print, screen and (width > 1024px) {
  .p-news__title {
    text-align: left;
    font-size: 40px;
    line-height: 1;
    writing-mode: vertical-lr;
  }
}
.p-news__list {
  display: grid;
  grid-template-columns: 100%;
  row-gap: 16px;
  max-height:60vh;
  overflow-y:auto;
}
@media print, screen and (width > 1024px) {
  .p-news__list {
    row-gap: 35px;
    max-height:360px;
  }
}
.p-news__item:not(:last-child) {
  padding-bottom: 16px;
  border-bottom: 1px solid var(--color-border-tertiary);
}
@media print, screen and (width > 1024px) {
  .p-news__item:not(:last-child) {
    padding-bottom: 35px;
  }
}
.p-news__txt {
  margin-bottom: 5px;
  letter-spacing: 0;
  font-size: 18px;
}
@media print, screen and (width > 1024px) {
  .p-news__txt {
    margin-bottom: 13px;
    font-size: 25px;
  }
}
.p-news__txt div {
  max-width:min(30em, calc(100vw - 40px));
  text-overflow:ellipsis;
  overflow:hidden;
  white-space:nowrap;
}
.p-news__time {
  letter-spacing: 0;
  font-size: 16px;
}
@media print, screen and (width > 1024px) {
  .p-news__time {
    margin-bottom: 18px;
  }
}
.p-news--jumbotron {
  display: flex;
  align-items: flex-start;
  flex-direction: column-reverse;
  flex-wrap: wrap;
  justify-content: space-between;
  row-gap: 4px;
  position: relative;
  z-index: 5;
  padding: 0 20px 20px;
  grid-column: 1/2;
  grid-row: 1/2;
  place-self: end start;
  mix-blend-mode: difference;
}
@media print, screen and (width > 1024px) {
  .p-news--jumbotron {
    flex-direction: row-reverse;
    align-items: center;
    gap: 0 50px;
    padding: 0 50px 75px 0;
    place-self: end end;
  }
}
.p-news--jumbotron :is(.p-news__time, .p-news__txt) {
  color: var(--color-site-secondary);
  font-size: 16px;
  margin-bottom:0px;
  letter-spacing:0.1em;
}
@media print, screen and (width > 1024px) {
  .p-news--jumbotron :is(.p-news__time, .p-news__txt) {
    font-size: 18px;
  }
}
@media print, screen and (width > 1024px) {
  .p-news--jumbotron .p-news__time {
    position: relative;
  }
  .p-news--jumbotron .p-news__time::after {
    position: absolute;
    top: 50%;
    right: -26px;
    translate: 0 -50%;
    content: "";
    width: 1px;
    height: 26px;
    background-color: var(--color-site-secondary);
  }
}
.p-jumbotron {
  margin-bottom: 85px;
  padding-left: 20px;
}
@media print, screen and (width > 1024px) {
  .p-jumbotron {
    margin-bottom: 165px;
    padding-left: 7.65vw;
  }
}
.p-jumbotron__picture {
  display: block;
  height: 220px;
  margin-bottom: 13px;
}
@media print, screen and (width > 1024px) {
  .p-jumbotron__picture {
    height: 585px;
    margin-bottom: 30px;
  }
}
.p-jumbotron__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.p-jumbotron__title {
  display: grid;
  grid-template-columns: 100%;
  gap: 10px;
}
.p-jumbotron__title__main {
  font-size: 40px;
  line-height: 1.25;
}
@media print, screen and (width > 1024px) {
  .p-jumbotron__title__main {
    font-size: 60px;
  }
}
.p-jumbotron__title__sub {
  padding-left: 5px;
  font-size: 21px;
}
@media print, screen and (width > 1024px) {
  .p-jumbotron__title__sub {
    padding-left: 10px;
  }
}
.p-jumbotron--top {
  position: relative;
  position: relative;
  z-index: 2;
  display: grid;
  overflow: hidden;
  width: 100%;
  height: 100svh;
  margin-bottom: 90px;
  place-items: center;
}
@media print, screen and (width > 1024px) {
  .p-jumbotron--top {
    margin-bottom: 400px;
  }
}
.p-jumbotron--top__catchcopy {
  position: relative;
  z-index: 5;
  text-align: center;
  color: var(--color-site-secondary);
  font-size: 27px;
  line-height: 1.85;
  grid-column: 1/2;
  grid-row: 1/2;
  mix-blend-mode: difference;
}
@media print, screen and (width > 1024px) {
  .p-jumbotron--top__catchcopy {
    font-size: 46px;
    line-height: 1.7;
  }
}
.p-jumbotron--top__slider {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.p-jumbotron--top__slider .swiper-slider {
  width: 100%;
  height: 100%;
}
.p-jumbotron--top__slider .swiper-slider img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.p-intro {
  margin: 0 auto 160px;
  width: calc(100% - 110px);
}
@media print, screen and (width > 1024px) {
  .p-intro {
    width: calc(100% - 40px);
    max-width: 1200px;
  }
}
.p-intro {
  position: relative;
  padding-top: 248px;
}
@media print, screen and (width > 1024px) {
  .p-intro {
    margin-bottom: 220px;
    padding-top: 508px;
  }
}
.p-intro__catchcopy {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 50%;
  display: grid;
  letter-spacing: 0.1em;
  color: var(--color-site-secondary);
  font-size: 29px;
  line-height: 1;
  writing-mode: vertical-rl;
  grid-template-rows: repeat(2, auto);
  row-gap: 40px;
  translate: -50% 0;
  mix-blend-mode: difference;
}
@media print, screen and (width > 1024px) {
  .p-intro__catchcopy {
    font-size: 52px;
    row-gap: 68px;
  }
}
.p-intro__photo {
  position: relative;
  z-index: 1;
  margin-bottom: 42px;
}
@media only screen and (width <= 1024px) {
  .p-intro__photo {
    margin-bottom: 32px;
    aspect-ratio: 264/267;
  }
}
.p-intro__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.p-intro__txt {
  margin-bottom: 30px;
  text-align: center;
  font-size: 20px;
  line-height: 2;
}
@media print, screen and (width > 1024px) {
  .p-intro__txt {
    margin-bottom: 50px;
    font-size: 25px;
    line-height: 2.2;
  }
}
.p-intro--works {
  margin: -45px auto 50px;
  width: calc(100% - 80px);
}
@media print, screen and (width > 1024px) {
  .p-intro--works {
    width: calc(100% - 40px);
    max-width: 1630px;
  }
}
.p-intro--works {
  display: grid;
}
@media only screen and (width <= 1024px) {
  .p-intro--works {
    grid-template-rows: max(52.8svw, 196px) 1fr max(52.8svw, 196px);
  }
}
@media print, screen and (width > 1024px) {
  .p-intro--works {
    margin-top: 0;
    margin-bottom: 90px;
    padding-top: 145px;
  }
}
.p-intro--works__lead {
  position: relative;
  z-index: 2;
  display: grid;
  font-size: 20px;
  letter-spacing: 0.2em;
  line-height: 1;
  row-gap: 23px;
  writing-mode: vertical-rl;
  text-orientation: upright;
  grid-column: 1/2;
  grid-row: 1/3;
  justify-self: flex-end;
}
@media print, screen and (width > 1024px) {
  .p-intro--works__lead {
    grid-row: 1/2;
    margin-top: -340px;
    margin-right: 3.987%;
    font-size: 32px;
    row-gap: min(2.604svw, 50px);
  }
}
.p-intro--works__txt {
  position: relative;
  z-index: 2;
  display: grid;
  font-size: 18px;
  letter-spacing: 0.2em;
  line-height: 1;
  row-gap: 22px;
  writing-mode: vertical-rl;
  text-orientation: upright;
  grid-column: 1/2;
  grid-row: 2/3;
  justify-self: flex-start;
}
@media print, screen and (width > 1024px) {
  .p-intro--works__txt {
    justify-self: flex-end;
    grid-row: 1/2;
    margin-top: -75px;
    margin-right: 27.914%;
    font-size: 24px;
    row-gap: min(2.083svw, 40px);
  }
}
.p-intro--works__box {
  position: relative;
  z-index: 1;
  grid-column: 1/2;
  grid-row: 2/4;
  justify-self: center;
  align-self: flex-end;
  width: 100%;
}
@media print, screen and (width > 1024px) {
  .p-intro--works__box {
    grid-row: 1/2;
    justify-self: flex-start;
    width: 43.68%;
    margin-bottom: 0;
    margin-left: 9.754%;
  }
}
.p-intro--works__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.p-intro--case {
  margin: -45px auto 110px;
  width: calc(100% - 40px);
}
@media print, screen and (width > 1024px) {
  .p-intro--case {
    width: calc(100% - 40px);
    max-width: 1630px;
  }
}
.p-intro--case {
  display: grid;
}
@media print, screen and (width > 1024px) {
  .p-intro--case {
    margin-top: 0;
    margin-bottom: 400px;
    padding-top: 200px;
  }
}
.p-intro--case__lead {
  position: relative;
  z-index: 2;
  display: grid;
  margin-right: 18px;
  font-size: 20px;
  letter-spacing: 0.2em;
  line-height: 1;
  row-gap: 23px;
  writing-mode: vertical-rl;
  text-orientation: upright;
  grid-column: 1/2;
  grid-row: 1/2;
  justify-self: flex-end;
}
@media print, screen and (width > 1024px) {
  .p-intro--case__lead {
    margin-top: -410px;
    margin-right: 3.987%;
    font-size: 32px;
    row-gap: min(2.604svw, 50px);
  }
}
.p-intro--case__box {
  position: relative;
  z-index: 1;
  grid-column: 1/2;
  grid-row: 1/2;
  align-self: flex-end;
  margin-left: -20px;
  margin-bottom: -30px;
  width: 54.666svw;
}
@media print, screen and (width > 1024px) {
  .p-intro--case__box {
    width: 49.57%;
    margin-bottom: 0;
    margin-left: 13.251%;
  }
}
.p-intro--case__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.p-about {
  position: relative;
  margin-bottom: 60px;
  padding-bottom: max(85.333svw, 320px);
}
@media print, screen and (width > 1024px) {
  .p-about {
    margin-bottom: 110px;
    padding-top: min(4.166svw, 80px);
    padding-bottom: 0;
  }
}
.p-about__inner {
  margin: 0 auto 0;
  width: calc(100% - 40px);
}
@media print, screen and (width > 1024px) {
  .p-about__inner {
    width: calc(100% - 40px);
    max-width: 1200px;
  }
}
.p-about__inner {
  position: relative;
  z-index: 2;
}
.p-about__bg {
  width: 100%;
  position: absolute;
  z-index: 1;
  bottom: 0;
  left: 0;
  background: url(../images/home/img_about.jpg) no-repeat max(-5.9666svw, -22px) bottom;
  background-size: max(485px, 129.333svw) auto;
  aspect-ratio: 375/300;
}
@media print, screen and (width > 1024px) {
  .p-about__bg {
    width: 50.52svw;
    top: 50%;
    bottom: auto;
    translate: 0 calc(-50% + 80px);
    left: 48.17708333%;
    background-position: center center;
    background-size: 100%;
    aspect-ratio: 970/604;
  }
}
.p-about__title {
  margin-bottom: 25px;
  text-align: center;
  font-size: 30px;
}
@media print, screen and (width > 1024px) {
  .p-about__title {
    margin-bottom: 23px;
    text-align: left;
    font-size: 40px;
  }
}
.p-about__txt {
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  margin-bottom: 36px;
  letter-spacing: 0;
  font-size: 16px;
  font-weight: 500;
  line-height: 2.1875;
}
@media print, screen and (width > 1024px) {
  .p-about__txt {
    margin-bottom: 65px;
    font-size: 18px;
    line-height: 2.5;
  }
}
@media print, screen and (width > 1024px) {
  .p-about .c-btn {
    margin-left: 0;
  }
}

.p-product {
  margin: 0 auto 70px;
  width: calc(100% - 40px);
}
@media print, screen and (width > 1024px) {
  .p-product {
    width: calc(100% - 40px);
    max-width: 1630px;
  }
}
@media print, screen and (width > 1024px) {
  .p-product {
    margin-bottom: 215px;
  }
}
.p-product__title {
  margin-bottom: 25px;
}
@media print, screen and (width > 1024px) {
  .p-product__title {
    margin-bottom: 125px;
  }
}
.p-product__item {
  display: grid;
  grid-template-columns: 100%;
  row-gap: 25px;
}
.p-product__item:not(:last-child) {
  margin-bottom: 70px;
}
@media print, screen and (width > 1024px) {
  .p-product__item {
    grid-template-columns: 1fr 64.662%;
    gap: 0 7.73%;
  }
  .p-product__item:not(:last-child) {
    margin-bottom: 200px;
  }
}
.p-product__name {
  text-align: center;
  font-size: 25px;
  margin-bottom: 13px;
}
@media print, screen and (width > 1024px) {
  .p-product__name {
    text-align: left;
    font-size: 30px;
    margin-bottom: 35px;
  }
}
.p-product__txt {
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.875;
}
@media print, screen and (width > 1024px) {
  .p-product__txt {
    font-size: 18px;
    line-height: 2.222;
  }
}
.p-product__slider {
  position: relative;
}
@media only screen and (width <= 1024px) {
  .p-product__slider {
    padding: 0 14px;
  }
}
.p-product__slider .swiper-product {
  overflow: hidden;
}
.p-product__slider .swiper-product .swiper-slide {
  cursor: pointer;
}
.p-product__slider > .swiper-button-next,
.p-product__slider > .swiper-button-prev {
  width: 10px;
  height: 20px;
  color: var(--color-site-quaternary);
}
@media print, screen and (width > 1024px) {
  .p-product__slider > .swiper-button-next,
  .p-product__slider > .swiper-button-prev {
    width: 21px;
    height: 42px;
  }
}
.p-product__slider > .swiper-button-next {
  right: -10px !important;
}
@media print, screen and (width > 1024px) {
  .p-product__slider > .swiper-button-next {
    right: -13px !important;
  }
}
.p-product__slider > .swiper-button-prev {
  left: -10px !important;
}
@media print, screen and (width > 1024px) {
  .p-product__slider > .swiper-button-prev {
    left: -13px !important;
  }
}
.p-product__img {
  width: 100%;
  height: auto;
  max-height:80vh;
  object-fit:contain;
}
.p-product__caption {
  margin-top: 4px;
  font-size: 16px;
  letter-spacing: 0;
  line-height: 1.25;
}
@media print, screen and (width > 1024px) {
  .p-product__caption {
    margin-top: 15px;
    font-size: 20px;
    line-height: 1.8;
  }
}
.p-product__modal {
  width: min(89.333svw, 1000px);
  padding: 0;
  border: 0;
  position: fixed;
  z-index: 100;
  overflow: initial;
}
.p-product__modal::backdrop {
  background-color: rgba(255, 255, 255, 0.8);
}
.p-product__modal__inner {
  position: relative;
  z-index: 50;
}
.p-product__modal__slider {
  position: relative;
}
.p-product__modal__slider .swiper-modal {
  overflow: hidden;
}
.p-product__modal__slider > .swiper-button-next,
.p-product__modal__slider > .swiper-button-prev {
  top: 50% !important;
  width: 10px;
  height: 20px;
  margin-top: 0 !important;
  translate: 0 -50%;
  color: var(--color-site-quaternary);
}
@media print, screen and (width > 1024px) {
  .p-product__modal__slider > .swiper-button-next,
  .p-product__modal__slider > .swiper-button-prev {
    width: 21px;
    height: 42px;
  }
}
.p-product__modal__slider > .swiper-button-next {
  right: -15px !important;
}
@media print, screen and (width > 1024px) {
  .p-product__modal__slider > .swiper-button-next {
    right: -40px !important;
  }
}
.p-product__modal__slider > .swiper-button-prev {
  left: -15px !important;
}
@media print, screen and (width > 1024px) {
  .p-product__modal__slider > .swiper-button-prev {
    left: -40px !important;
  }
}
.p-product__close {
  width: 45px;
  height: 16px;
  border: 0;
  background: none;
  position: absolute;
  right: 0;
  top: -25px;
  z-index: 10;
  outline: none;
  cursor: pointer;
}
.p-product__close::before, .p-product__close::after {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  translate: 0 -50%;
  width: calc(100% + 4px);
  height: 1px;
  background-color: var(--color-site-primary);
}
.p-product__close::before {
  rotate: 20deg;
}
.p-product__close::after {
  rotate: -20deg;
}
@media print, screen and (width > 1024px) {
  .p-product__close {
    width: 86px;
    height: 31px;
    top: -49px;
  }
}
.p-product--top {
  padding-top: 88px;
  padding-bottom: 126px;
  background: url(../images/home/bg_stamp.jpg) no-repeat -127px top;
  background-size: 466px 466px;
}
@media print, screen and (width > 1024px) {
  .p-product--top {
    margin-bottom: 127px;
    padding-top: min(14.427svw, 277px);
    padding-bottom: min(9.947svw, 191px);
    background-position: -264px top;
    background-size: auto 100%;
  }
}
.p-product--top__title {
  margin-bottom: 18px;
}
@media print, screen and (width > 1024px) {
  .p-product--top__title {
    margin-bottom: 38px;
  }
}
.p-product--top__txt {
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  margin-bottom: 26px;
  text-align: center;
  letter-spacing: 0;
  font-size: 18px;
  font-weight: 500;
  line-height: 2.2;
}
@media print, screen and (width > 1024px) {
  .p-product--top__txt {
    margin-bottom: 44px;
    font-size: 20px;
  }
}
.p-product--top__inner {
  overflow: hidden;
  width: 100%;
  height: 446px;
  margin-bottom: 24px;
}
@media print, screen and (width > 1024px) {
  .p-product--top__inner {
    margin-bottom: 17px;
  }
}
.p-product--top__inner .swiper-slider {
  height: 100%;
}
.p-product--top__inner .swiper-slider .swiper-wrapper {
  height: 100%;
  transition-timing-function: linear;
}
.p-product--top__inner .swiper-slider .swiper-wrapper .swiper-slide {
  display: grid;
  place-items: end center;
  width: auto !important;
  height: 100%;
}
.p-product--top__inner .swiper-slider .swiper-wrapper .swiper-slide img {
  height: auto !important;
  vertical-align: bottom;
}

.p-handle {
  margin-bottom: 100px;
}
@media print, screen and (width > 1024px) {
  .p-handle {
    margin-bottom: 295px;
  }
}
.p-handle__picture {
  display: block;
  margin-bottom: 45px;
}
@media print, screen and (width > 1024px) {
  .p-handle__picture {
    margin-bottom: 60px;
  }
}
.p-handle__img {
  width: 100%;
}
.p-handle__title {
  margin-bottom: 35px;
  letter-spacing: 0;
}
@media only screen and (width <= 1024px) {
  .p-handle__title {
    font-size: 26px;
  }
}
.p-handle__txt {
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  padding-right: 20px;
  padding-left: 20px;
  text-align: center;
  font-size: 18px;
  font-weight: 500;
  line-height: 2.27;
}
@media print, screen and (width > 1024px) {
  .p-handle__txt {
    font-size: 20px;
  }
}

.p-maker {
  padding-bottom: clamp(160px, 42.666svw, 280px);
  background: url(../images/works/bg_maker.png) no-repeat center bottom clamp(-182px, -28svw, -108px);
  background-size: clamp(415px, 110.666svw, 600px) auto;
}
@media print, screen and (width > 1024px) {
  .p-maker {
    padding-bottom: clamp(200px, 13.02svw, 250px);
    background-position: left 46.718svw bottom max(-21.77svw, -418px);
    background-size: clamp(896px, 56.04svw, 1076px) auto;
  }
}
.p-maker__title {
  margin-bottom: 50px;
  letter-spacing: 0;
}
@media print, screen and (width > 1024px) {
  .p-maker__title {
    margin-bottom: 65px;
  }
}
.p-maker__list {
  text-align: center;
}
.p-maker__name {
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  letter-spacing: 0;
  font-size: 20px;
  font-weight: 500;
  line-height: 2.75;
}
@media print, screen and (width > 1024px) {
  .p-maker__name {
    font-size: 25px;
    line-height: 2.64;
  }
}

.p-greeting {
  margin: 0 auto 110px;
  width: calc(100% - 40px);
}
@media print, screen and (width > 1024px) {
  .p-greeting {
    width: calc(100% - 40px);
    max-width: 1200px;
  }
}
@media print, screen and (width > 1024px) {
  .p-greeting {
    margin-bottom: 295px;
    display: grid;
    grid-template-columns: 1fr 260px;
    column-gap: 8.583%;
  }
}
.p-greeting__title {
  margin-bottom: 30px;
}
@media print, screen and (width > 1024px) {
  .p-greeting__title {
    grid-column: 1/4;
    margin-bottom: 60px;
  }
}
@media only screen and (width <= 1024px) {
  .p-greeting__content {
    margin-bottom: 30px;
  }
}
.p-greeting__txt {
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.875;
}
.p-greeting__txt:not(:last-child) {
  margin-bottom: 30px;
}
@media print, screen and (width > 1024px) {
  .p-greeting__txt {
    font-size: 18px;
  }
  .p-greeting__txt:not(:last-child) {
    margin-bottom: 60px;
  }
}
@media only screen and (width <= 1024px) {
  .p-greeting__picture {
    width: 77.3333svw;
    margin: auto;
  }
}
.p-greeting__img {
  display:block;
  width: 90%;
  margin-inline:auto;
  margin-bottom: 14px;
}
.p-greeting__photo {
  width:80%;
  margin-inline:auto;
}
@media only screen and (width > 1024px){
  .p-greeting__photo {
    width:100%;
  }
}
.p-greeting__caption {
  text-align: center;
}
.p-greeting__position {
  margin-right: 13px;
  font-size: 20px;
}
.p-greeting__name {
  font-size: 25px;
}

.p-outline {
  margin: 0 auto 110px;
  width: calc(100% - 40px);
}
@media print, screen and (width > 1024px) {
  .p-outline {
    width: calc(100% - 0);
    max-width: 100%;
  }
}
@media print, screen and (width > 1024px) {
  .p-outline {
    display: grid;
    grid-template-columns: repeat(2, 50%);
    margin-bottom: 205px;
  }
}
.p-outline__title {
  margin-bottom: 40px;
}
@media print, screen and (width > 1024px) {
  .p-outline__title {
    margin-bottom: 85px;
    grid-column: 1/3;
    grid-row: 1/2;
  }
}
@media print, screen and (width > 1024px) {
  .p-outline__info {
    position: relative;
    z-index: 2;
    width: min(47.916svw, 690px);
    padding-right: 6.25%;
    justify-self: flex-end;
    grid-column: 1/2;
    grid-row: 2/3;
  }
}
.p-outline__term {
  margin-bottom: 18px;
  letter-spacing: 0;
  font-size: 18px;
}
@media print, screen and (width > 1024px) {
  .p-outline__term {
    margin-bottom: 14px;
    font-size: 20px;
  }
}
.p-outline__desc {
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  letter-spacing: 0;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.6875;
}
.p-outline__desc:not(:last-child) {
  margin-bottom: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--color-site-tertiary);
}
@media print, screen and (width > 1024px) {
  .p-outline__desc {
    font-size: 18px;
  }
  .p-outline__desc:not(:last-child) {
    margin-bottom: 45px;
    padding-bottom: 45px;
  }
}
.p-outline__picture {
  display: block;
  margin-top: 40px;
}
@media print, screen and (width > 1024px) {
  .p-outline__picture {
    position: relative;
    z-index: 1;
    margin: 0;
    grid-column: 2/3;
    grid-row: 2/3;
  }
}
.p-outline__img {
  width: 100%;
  height: 100%;
}
@media print, screen and (width > 1024px) {
  .p-outline__img {
    object-fit: cover;
    object-position: left center;
  }
}

.p-album {
  margin-bottom: 105px;
}
@media print, screen and (width > 1024px) {
  .p-album {
    margin-bottom: 310px;
  }
}
.p-album__title {
  margin-bottom: 30px;
}
@media print, screen and (width > 1024px) {
  .p-album__title {
    margin-bottom: 45px;
  }
}
.p-album__inner {
  position: relative;
  z-index: 1;
  overflow: hidden;
  width: 100%;
  height: 219px;
}
@media print, screen and (width > 1024px) {
  .p-album__inner {
    height: 621px;
  }
}
.p-album__inner .swiper-slider {
  height: 100%;
}
.p-album__inner .swiper-slider .swiper-wrapper {
  height: 100%;
  transition-timing-function: linear;
}
.p-album__inner .swiper-slider .swiper-wrapper .swiper-slide {
  display: grid;
  place-items: start center;
  width: auto !important;
  height: 100%;
}
.p-album__inner .swiper-slider .swiper-wrapper .swiper-slide img {
  height: auto !important;
  vertical-align: bottom;
}
.p-album__img {
  position: relative;
  height: auto !important;
}
.p-album__img--01 {
  margin-top: 100px;
}
@media only screen and (width <= 1024px) {
  .p-album__img--01 {
    width: 208px !important;
    margin-top: 35px;
  }
}
.p-album__img--02 {
  margin-top: 48px;
}
@media only screen and (width <= 1024px) {
  .p-album__img--02 {
    width: 181px !important;
    margin-top: 17px;
  }
}
.p-album__img--03 {
  margin-top: 100px;
}
@media only screen and (width <= 1024px) {
  .p-album__img--03 {
    width: 182px !important;
    margin-top: 35px;
  }
}
.p-album__img--04 {
  margin-top: 0;
}
@media only screen and (width <= 1024px) {
  .p-album__img--04 {
    width: 131px !important;
  }
}
.p-album__img--05 {
  margin-top: 40px;
}
@media only screen and (width <= 1024px) {
  .p-album__img--05 {
    width: 130px !important;
    margin-top: 14px;
  }
}
.p-album__img--06 {
  margin-top: 147px;
}
@media only screen and (width <= 1024px) {
  .p-album__img--06 {
    width: 208px !important;
    margin-top: 52px;
  }
}
.p-album__img--07 {
  margin-top: 66px;
}
@media only screen and (width <= 1024px) {
  .p-album__img--07 {
    width: 163px !important;
    margin-top: 23px;
  }
}
.p-album__img--08 {
  margin-top: 14px;
}
@media only screen and (width <= 1024px) {
  .p-album__img--08 {
    width: 131px !important;
    margin-top: 5px;
  }
}
.p-album__img--09 {
  margin-top: 100px;
}
@media only screen and (width <= 1024px) {
  .p-album__img--09 {
    width: 132px !important;
    margin-top: 35px;
  }
}
.p-album__img--10 {
  margin-top: 14px;
}
@media only screen and (width <= 1024px) {
  .p-album__img--10 {
    width: 130px !important;
    margin-top: 5px;
  }
}
.p-album__img--11 {
  margin-top: 108px;
}
@media only screen and (width <= 1024px) {
  .p-album__img--11 {
    width: 187px !important;
    margin-top: 38px;
  }
}
.p-album__img--12 {
  margin-top: 40px;
}
@media only screen and (width <= 1024px) {
  .p-album__img--12 {
    width: 189px !important;
    margin-top: 14px;
  }
}

.p-album__img--13 {
  margin-top: 130px;
}
@media only screen and (width <= 1024px) {
  .p-album__img--13 {
    width: 116px !important;
    margin-top:45px;
  }
}
.p-album__img--14 {
  margin-top: 210px;
}
@media only screen and (width <= 1024px) {
  .p-album__img--14 {
    width: 180px !important;
    margin-top: 73px;
  }
}
.p-album__img--15 {
  margin-top:0px;
}
@media only screen and (width <= 1024px) {
  .p-album__img--15 {
    width: 138px !important;
    margin-top:0px;
  }
}




.p-access {
  position: relative;
  margin-bottom: 64px;
  text-align: center;
}
@media print, screen and (width > 1024px) {
  .p-access {
    margin-bottom: 124px;
  }
}
.p-access__title {
  margin-bottom: 35px;
}
.p-access__txt {
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  margin-bottom: 40px;
  letter-spacing: 0;
  font-size: 18px;
  font-weight: 500;
  line-height: 2.22;
}
@media print, screen and (width > 1024px) {
  .p-access__txt {
    margin-bottom: 58px;
    font-size: 20px;
  }
}
.p-access__time {
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  margin-bottom: 30px;
  letter-spacing: 0;
  font-size: 16px;
  font-weight: 500;
}
@media print, screen and (width > 1024px) {
  .p-access__time {
    margin-bottom: 40px;
    font-size: 18px;
    line-height: 2.22;
  }
}
.p-access__info {
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  margin-bottom: 30px;
  letter-spacing: 0;
  font-size: 16px;
  font-weight: 500;
}
@media print, screen and (width > 1024px) {
  .p-access__info {
    margin-bottom: 60px;
    font-size: 18px;
    line-height: 2.22;
  }
}
.p-access__map {
  margin: 0 auto 0;
  width: calc(100% - 40px);
}
@media print, screen and (width > 1024px) {
  .p-access__map {
    width: calc(100% - 40px);
    max-width: 1200px;
  }
}
.p-access__map {
  position: relative;
  z-index: 2;
  aspect-ratio: 335/303;
}
.p-access__map iframe {
  width: 100% !important;
  height: 100% !important;
}
@media print, screen and (width > 1024px) {
  .p-access__map {
    aspect-ratio: 2/1;
  }
}
.p-access__bg {
  position: absolute;
  left: 0;
  bottom: 45px;
  z-index: 1;
  overflow: hidden;
  opacity: 0.2;
  width: 100%;
  height: 446px;
}
.p-access__bg .swiper-slider {
  height: 100%;
}
.p-access__bg .swiper-slider .swiper-wrapper {
  height: 100%;
  transition-timing-function: linear;
}
.p-access__bg .swiper-slider .swiper-wrapper .swiper-slide {
  display: grid;
  place-items: end center;
  width: auto !important;
  height: 100%;
}
.p-access__bg .swiper-slider .swiper-wrapper .swiper-slide img {
  height: auto !important;
  vertical-align: bottom;
}
@media only screen and (width <= 1024px) {
  .p-access__bg {
    display: none !important;
  }
}

.p-case {
  margin: 0 auto 110px;
  width: calc(100% - 40px);
}
@media print, screen and (width > 1024px) {
  .p-case {
    width: calc(100% - 0);
    max-width: 1820px;
  }
}
@media print, screen and (width > 1024px) {
  .p-case {
    margin-bottom: 330px;
  }
}
.p-case__item:not(:last-child) {
  margin-bottom: 110px;
}
@media print, screen and (width > 1024px) {
  .p-case__item {
    display: grid;
    column-gap: 5.705%;
    padding-right: min(4.947svw, 95px);
    padding-left: min(4.947svw, 95px);
  }
  .p-case__item .p-case__inner,
  .p-case__item .p-case__box {
    grid-row: 1/2;
  }
  .p-case__item:nth-child(odd) {
    grid-template-columns: 1fr 60.552%;
  }
  .p-case__item:nth-child(even) {
    grid-template-columns: 60.552% 1fr;
  }
  .p-case__item:nth-child(even) .p-case__inner {
    grid-column: 2/3;
  }
  .p-case__item:nth-child(even) .p-case__box {
    grid-column: 1/2;
  }
  .p-case__item:not(:last-child) {
    margin-bottom: 265px;
  }
}
.p-case__inner {
  margin-bottom: 20px;
}
.p-case__number {
  width: fit-content;
  margin: 0 auto 20px;
  padding: 4px;
  border-top: 1px solid var(--color-site-primary);
  border-bottom: 1px solid var(--color-site-primary);
  font-size: 30px;
}
@media print, screen and (width > 1024px) {
  .p-case__number {
    margin: 0 0 50px;
    font-size: 40px;
  }
}
.p-case__name {
  margin-bottom: 13px;
  text-align: center;
  font-size: 25px;
}
@media print, screen and (width > 1024px) {
  .p-case__name {
    margin-bottom: 35px;
    text-align: left;
    font-size: 30px;
  }
}
.p-case__txt {
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.875;
  letter-spacing: 0;
}
.p-case__txt:not(:last-child) {
  margin-bottom: 40px;
}
@media print, screen and (width > 1024px) {
  .p-case__txt {
    font-size: 18px;
    line-height: 2.222;
  }
  .p-case__txt:not(:last-child) {
    margin-bottom: 75px;
  }
}
.p-case__picture {
  position: relative;
}
.p-case__img {
  position: relative;
  width: 100%;
}
@media print, screen and (width > 1024px) {
  .p-case__img--02 {
    margin-left: max(-4.947svw, -95px);
  }
}
@media only screen and (width <= 1024px) {
  .p-case__img--03 {
    width: calc(100% + 10px);
    margin-right: -10px;
  }
}

.p-other {
  margin: 0 auto 150px;
  width: calc(100% - 40px);
}
@media print, screen and (width > 1024px) {
  .p-other {
    width: calc(100% - 40px);
    max-width: 1200px;
  }
}
@media print, screen and (width > 1024px) {
  .p-other {
    margin-bottom: 325px;
  }
}
.p-other__list {
  display: grid;
  grid-template-columns: 100%;
  gap: 34px 7.25%;
}
@media print, screen and (width > 1024px) {
  .p-other__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
.p-other__item {
  height: 114px;
}
@media print, screen and (width > 1024px) {
  .p-other__item {
    height: 189px;
  }
}
.p-other__link {
  display: grid;
  grid-template-columns: 114px 1fr;
  column-gap: 6px;
  text-decoration: none !important;
}
@media print, screen and (width > 1024px) {
  .p-other__link {
    grid-template-columns: 189px 1fr;
    column-gap: 11px;
  }
}
.p-other__img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1/1;
}
.p-other__txt {
  position: relative;
  display: grid;
  padding-left: 12px;
  border-top: 1px solid var(--color-site-primary);
  border-bottom: 1px solid var(--color-site-primary);
  font-size: 20px;
  place-items: center start;
}
.p-other__txt::after {
  position: absolute;
  top: 50%;
  right: 5px;
  width: 5px;
  height: 6px;
  content: "";
  background-color: var(--color-site-primary);
  translate: 0 -50%;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}
@media print, screen and (width > 1024px) {
  .p-other__txt {
    padding-left: 19px;
    font-size: 30px;
  }
  .p-other__txt::after {
    right: 10px;
    width: 8px;
    height: 10px;
  }
}
.p-other__pdf {
  position: relative;
  padding-right: 28px;
}
.p-other__pdf::after {
  content: "";
  width: 22px;
  height: 27px;
  background: url(../images/common/icon_pdf.svg) no-repeat left top;
  background-size: 22px 27px;
  position: absolute;
  right: 0;
  bottom: 0;
}
@media print, screen and (width > 1024px) {
  .p-other__pdf {
    padding-right: 49px;
  }
  .p-other__pdf::after {
    width: 29px;
    height: 36px;
    background-size: 29px 36px;
    bottom: 50%;
    translate: 0 50%;
  }
}
.p-other--single {
  margin: 0 auto 160px;
  width: calc(100% - 40px);
}
@media print, screen and (width > 1024px) {
  .p-other--single {
    width: calc(100% - 40px);
    max-width: 1200px;
  }
}
@media print, screen and (width > 1024px) {
  .p-other--single {
    margin-bottom: 300px;
  }
}
.p-other--single__list {
  display: grid;
  grid-template-columns: 100%;
  row-gap: 34px;
}
.p-other--single__item {
  min-height: 114px;
}
@media print, screen and (width > 1024px) {
  .p-other--single__item {
    height: 189px;
  }
}
.p-other--single__link {
  display: grid;
  grid-template-columns: max(114px, 30.4svw) 1fr;
  column-gap: 7px;
  text-decoration: none !important;
}
@media print, screen and (width > 1024px) {
  .p-other--single__link {
    grid-template-columns: 316px 1fr;
    column-gap: 17px;
  }
}
.p-other--single__img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
}
@media print, screen and (width > 1024px) {
  .p-other--single__img {
    aspect-ratio: 316/189;
  }
}
.p-other--single__txt {
  position: relative;
  display: grid;
  padding: 13px 20px 13px 12px;
  border-top: 1px solid var(--color-site-primary);
  border-bottom: 1px solid var(--color-site-primary);
  font-size: 20px;
  place-items: center start;
}
.p-other--single__txt::after {
  position: absolute;
  top: 50%;
  right: 5px;
  width: 5px;
  height: 6px;
  content: "";
  background-color: var(--color-site-primary);
  translate: 0 -50%;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}
@media print, screen and (width > 1024px) {
  .p-other--single__txt {
    padding-left: 19px;
    padding-right: 30px;
    font-size: 30px;
  }
  .p-other--single__txt::after {
    right: 10px;
    width: 8px;
    height: 10px;
  }
}

.p-staff {
  display: grid;
  grid-template-columns: 100%;
  margin-bottom: 120px;
}
@media print, screen and (width > 1024px) {
  .p-staff {
    grid-template-columns: 17.5% 1fr;
    gap: 0 7.8%;
    margin-bottom: 200px;
  }
  .p-staff:last-child {
    margin-bottom: 300px;
  }
}
@media only screen and (width <= 1024px) {
  .p-staff__photo {
    display: block;
    width: max(166px, 44.26svw);
    margin: auto;
  }
}
.p-staff__img {
  width: 100%;
  height:auto;
}
.p-staff__position {
  margin-bottom: 6px;
  font-size: 20px;
}
@media only screen and (width <= 1024px) {
  .p-staff__position {
    margin-top: 13px;
    text-align: center;
    font-size: 18px;
  }
}
.p-staff__name {
  display: flex;
  align-items: center;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: flex-start;
  row-gap: 6px;
  margin-bottom: 40px;
}
.p-staff__name__main {
  font-size: 25px;
}
@media print, screen and (width > 1024px) {
  .p-staff__name__main {
    font-size: 30px;
  }
}
.p-staff__name__sub {
  font-size: 16px;
  color: var(--color-site-quaternary);
}
@media print, screen and (width > 1024px) {
  .p-staff__name__sub {
    font-size: 18px;
  }
}
@media print, screen and (width > 1024px) {
  .p-staff__name {
    flex-direction: row;
    gap: 0 30px;
  }
}
.p-staff__profile {
  display: grid;
  grid-template-columns: 100%;
}
.p-staff__profile:not(:last-child) {
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--color-site-tertiary);
}
@media print, screen and (width > 1024px) {
  .p-staff__profile {
    grid-template-columns: 200px 1fr;
    column-gap: 15px;
  }
}
.p-staff__profile__term {
  font-size: 18px;
  letter-spacing: 0;
}
@media only screen and (width <= 1024px) {
  .p-staff__profile__term {
    margin-bottom: 13px;
    font-size: 16px;
  }
}
.p-staff__profile__desc {
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0;
}
@media only screen and (width <= 1024px) {
  .p-staff__profile__desc {
    font-size: 16px;
  }
}

.p-faq {
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--color-site-tertiary);
}
.p-faq:last-child {
  margin-bottom: 100px;
  border-bottom: 0;
}
@media print, screen and (width > 1024px) {
  .p-faq {
    margin-bottom: 80px;
    padding-bottom: 80px;
  }
  .p-faq:last-child {
    margin-bottom: 160px;
    border-bottom: 0;
  }
}
.p-faq__question, .p-faq__answer {
  position: relative;
  padding-left: 38px;
}
.p-faq__question::before, .p-faq__answer::before {
  position: absolute;
  top: 0;
  left: 0;
  font-size: 20px;
  line-height: 1.666;
}
@media print, screen and (width > 1024px) {
  .p-faq__question, .p-faq__answer {
    padding-left: 65px;
  }
  .p-faq__question::before, .p-faq__answer::before {
    font-size: 30px;
  }
}
.p-faq__question {
  margin-bottom: 20px;
  font-size: 20px;
  line-height: 1.666;
}
.p-faq__question::before {
  content: "Q.";
}
@media print, screen and (width > 1024px) {
  .p-faq__question {
    margin-bottom: 26px;
    font-size: 30px;
  }
}
.p-faq__answer {
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-size: 16px;
  line-height: 1.875;
  font-weight: 700;
}
.p-faq__answer::before {
  font-family: "Yuji Syuku", serif;
  content: "A.";
}
@media print, screen and (width > 1024px) {
  .p-faq__answer {
    font-size: 18px;
    line-height: 2;
  }
  .p-faq__answer::before {
    top: -9px;
  }
}
.p-faq--lead {
  width: 260px;
  margin: 0 auto 54px;
  font-size: 26px;
  line-height: 1.8;
}
@media print, screen and (width > 1024px) {
  .p-faq--lead {
    width: auto;
    margin-bottom: 135px;
    text-align: center;
    font-size: 25px;
  }
}

.p-policy {
  margin-bottom: 90px;
}
@media print, screen and (width > 1024px) {
  .p-policy {
    margin-bottom: 100px;
  }
  .p-policy:last-child {
    margin-bottom: 160px;
  }
}
.p-policy__lead {
  font-size: 20px;
  line-height: 2;
}
@media print, screen and (width > 1024px) {
  .p-policy__lead {
    font-size: 25px;
    line-height: 2.2;
  }
}
.p-policy__hd {
  margin-bottom: 19px;
  font-size: 25px;
}
@media print, screen and (width > 1024px) {
  .p-policy__hd {
    margin-bottom: 35px;
    font-size: 30px;
  }
}
.p-policy__txt {
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-size: 18px;
  font-weight: 500;
  line-height: 2.2;
}
.p-policy__txt:not(:last-child) {
  margin-bottom: 35px;
}
.p-policy__address {
  margin-top: 55px;
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-size: 18px;
  font-weight: 500;
  line-height: 2.2;
}

.p-contact {
  margin-bottom: 85px;
}
@media print, screen and (width > 1024px) {
  .p-contact {
    margin-bottom: 195px;
  }
}
.p-contact__title {
  margin-bottom: 17px;
  text-align: center;
  font-size: 30px;
}
@media print, screen and (width > 1024px) {
  .p-contact__title {
    margin-bottom: 38px;
    font-size: 40px;
  }
}
.p-contact__txt {
  margin-bottom: 70px;
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-size: 18px;
  font-weight: 500;
  line-height: 2.22;
}
@media print, screen and (width > 1024px) {
  .p-contact__txt {
    margin-bottom: 110px;
    text-align: center;
    font-size: 20px;
    line-height: 2.75;
  }
}
.p-contact__btns {
  display: flex;
  align-items: center;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 30px;
  gap: 20px;
}
@media print, screen and (width > 1024px) {
  .p-contact__btns {
    margin-top: 65px;
    flex-direction: row;
  }
}
.p-contact__body {
  margin-bottom: 20px;
}
@media print, screen and (width > 1024px) {
  .p-contact__body {
    display: grid;
    grid-template-columns: 325px 1fr;
    margin-bottom: 60px;
  }
}
@media print, screen and (width > 1024px) {
  .p-contact__term:not(:last-of-type), .p-contact__content:not(:last-of-type) {
    margin-bottom: 35px !important;
  }
  .p-contact__term:not(:first-of-type), .p-contact__content:not(:first-of-type) {
    padding-bottom: 35px;
  }
}
.p-contact__term {
  display: flex;
  align-items: center;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  column-gap: 13px;
  font-size: 20px;
  font-weight: 700;
  padding-bottom: 20px;
}
@media print, screen and (width > 1024px) {
  .p-contact__term {
    justify-content: space-between;
    align-items: flex-start;
    column-gap: 0;
    padding: 16px 48px 0 0;
    font-size: 24px;
    border-bottom: 1px solid var(--color-border-secondary);
  }
}
.p-contact__content {
  display: grid;
  grid-template-columns: 100%;
  row-gap: 17px;
  padding-bottom: 30px;
  border-bottom: 1px solid var(--color-border-secondary);
}
.p-contact__content:not(:last-of-type) {
  margin-bottom: 30px;
}
@media print, screen and (width > 1024px) {
  .p-contact__content {
    row-gap: 24px;
  }
}
.p-contact__require {
  padding: 1px 12px;
  margin-top: 3px;
  color: var(--color-site-secondary);
  font-size: 13px;
  font-weight: 700;
  background-color: var(--color-site-require);
}
@media print, screen and (width > 1024px) {
  .p-contact__require {
    padding: 1px 14px;
    margin-top: 6px;
    font-size: 16px;
  }
}
.p-contact__zip {
  display: flex;
  align-items: center;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  column-gap: 6px;
}
@media print, screen and (width > 1024px) {
  .p-contact__zip {
    column-gap: 13px;
  }
}
.p-contact__zip__mark {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-size: 17px;
  font-weight: 700px;
}
.p-contact--lead {
  margin: auto;
  text-align: center;
  font-size: 26px;
  line-height: 1.88;
}
@media print, screen and (width > 1024px) {
  .p-contact--lead {
    font-size: 25px;
  }
}

.p-cta {
  padding-top: 65px;
  padding-bottom: 77px;
  text-align: center;
  background: url(../images/common/bg_pattern.jpg) no-repeat center;
  background-size: cover;
}
@media print, screen and (width > 1024px) {
  .p-cta {
    padding-top: 128px;
    padding-bottom: 100px;
  }
}
.p-cta__title {
  margin-bottom: 19px;
  font-size: 30px;
}
@media print, screen and (width > 1024px) {
  .p-cta__title {
    margin-bottom: 25px;
    font-size: 40px;
  }
}
.p-cta__txt {
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  margin-bottom: 25px;
  font-size: 18px;
  font-weight: 500;
  line-height: 2.2;
}
@media print, screen and (width > 1024px) {
  .p-cta__txt {
    margin-bottom: 35px;
    font-size: 20px;
  }
}
.p-cta__tel {
  margin-bottom: 30px;
}
@media print, screen and (width > 1024px) {
  .p-cta__tel {
    margin-bottom: 55px;
  }
}
.p-cta__link {
  position: relative;
  display: inline-block;
  padding-left: 49px;
  font-size: 33px;
}
.p-cta__link::before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 39px;
  height: 32px;
  content: "";
  background: url(../images/common/icon_tel.svg) no-repeat left top;
  background-size: 100%;
  translate: 0 -50%;
}
@media print, screen and (width > 1024px) {
  .p-cta__link {
    text-decoration: none;
    pointer-events: none;
    padding-left: 74px;
    font-size: 49px;
  }
  .p-cta__link::before {
    width: 58px;
    height: 47px;
  }
}
.p-cta__time {
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-size: 18px;
  font-weight: 500;
}
@media print, screen and (width > 1024px) {
  .p-cta__time {
    font-size: 20px;
  }
}
.p-cta--contact {
  margin-top: 48px;
  margin-bottom: 100px;
  padding-top: 50px;
  padding-bottom: 80px;
}
@media print, screen and (width > 1024px) {
  .p-cta--contact {
    margin-top: 85px;
    margin-bottom: 170px;
    padding-top: 85px;
    padding-bottom: 90px;
  }
}
@media only screen and (width <= 1024px) {
  .p-cta--contact .p-cta__title {
    margin-bottom: 30px;
  }
}
.p-cta--contact .p-cta__tel {
  margin-bottom: 35px;
}
@media print, screen and (width > 1024px) {
  .p-cta--contact .p-cta__tel {
    margin-bottom: 30px;
  }
}

.p-info__logo {
  margin-bottom: 20px;
}
.p-info__img {
  width: 100%;
}
.p-info__address {
  letter-spacing: 0.05em;
  font-size: 18px;
}
.p-info__number {
  letter-spacing: 0.05em;
  font-size: 18px;
}
.p-info__tel, .p-info__fax {
  display: inline-block;
}
.p-info--menu .p-info__logo {
  width: 260px;
  margin: auto;
}
@media print, screen and (width > 1024px) {
  .p-info--menu .p-info__logo {
    width: 308px;
  }
}
.p-info--menu .p-info__inner {
  margin-top: 13px;
  text-align: center;
}
@media print, screen and (width > 1024px) {
  .p-info--menu .p-info__inner {
    margin-top: 21px;
    display: flex;
    align-items: flex-start;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    column-gap: 40px;
  }
}
@media only screen and (width <= 1024px) {
  .p-info--menu .p-info__address, .p-info--menu .p-info__number {
    font-size: 13px;
  }
}
.p-info--menu .p-info__address .u-use--sp {
  display: none !important;
}
.p-info--footer .p-info__logo {
  width: 100%;
}
@media print, screen and (width > 1024px) {
  .p-info--footer .p-info__logo {
    width: 405px;
  }
}
@media only screen and (width <= 1024px) {
  .p-info--footer .p-info__inner {
    width: fit-content;
    margin: 0 auto 50px;
  }
}
.p-info--footer .p-info__address, .p-info--footer .p-info__number {
  color: var(--color-site-secondary);
  line-height: 1.888;
}
@media only screen and (width <= 1024px) {
  .p-info--footer .p-info__address, .p-info--footer .p-info__number {
    width: fit-content;
  }
}
@media only screen and (width <= 1024px) {
  .p-info--footer .p-info__tel, .p-info--footer .p-info__fax {
    display: block;
  }
}
@media only screen and (width <= 1024px) {
  .p-info--footer .p-info__slash {
    display: none !important;
  }
}

.p-fnav__list {
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: 10px 6.4svw;
}
@media print, screen and (width > 1024px) {
  .p-fnav__list {
    /* gap: 20px 73px; */
    gap:20px 45px;
  }
}
.p-fnav__item:last-child {
  grid-column: 1/4;
}
.p-fnav__link {
  position: relative;
  display: inline-block;
  padding-left: 14px;
  color: var(--color-site-secondary);
  font-size: 14px;
  letter-spacing: 0;
}
.p-fnav__link::before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 6px;
  height: 7px;
  margin-top: -3px;
  content: "";
  background-color: var(--color-site-secondary);
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}
@media print, screen and (width > 1024px) {
  .p-fnav__link {
    padding-left: 16px;
    font-size: 20px;
  }
  .p-fnav__link::before {
    width: 8px;
    height: 10px;
    margin-top: -5px;
  }
}

.p-copyright {
  margin-top: 55px;
  text-align: center;
  letter-spacing: 0;
  color: var(--color-site-secondary);
  font-size: 11px;
}
@media print, screen and (width > 1024px) {
  .p-copyright {
    margin-top: 85px;
    font-size: 15px;
    letter-spacing: 0.1em;
  }
}


/* ↓ お問い合わせフォーム用 ↓ */
#formWrap {

  & form { container:form / inline-size;}
  & .formTable {
    width:min(700px, 90%);
    margin:5em auto;

    & tr { border-bottom:solid 1px var(--color-site-tertiary);}
    & :is(th, td) { padding:1em 0.5em;}
    & th { text-align:start; width:40%;}
    & td { width:60%; font-family:"Noto Serif JP", serif;}
  }
  & .buttonWrap { display:flex; justify-content:center; flex-direction:row-reverse; flex-wrap:wrap; gap:2rem; margin-top:2rem;}
  & .buttonWrap button { margin-inline:0;}
  & .error_messe { margin-top:3em; color:var(--color-site-require);}
  & .error_messe + .error_messe { margin-top:1em;}
}
@container form (width < 600px){

  #formWrap .formTable {

    & :is(th, td) { display:block; width:100%; padding-block:0.5em;}
    & td { padding-top:0px;}
  }
}

/* エラー文章 */
form .error { color:red; font-weight:bold;}
.p-contact__policy .error { width:fit-content; margin-inline:auto;}


/* ↓ スタッフ紹介：popover実装 ↓ */
#staff {

  & [popover] {
    --img-height:65vh;
    --padding-block:calc((100vh - var(--img-height)) / 2);

    width:100%;
    height:100%;
    background-color:rgb(255 255 255 / 0.8);

    & .modal_wrap {
      position:relative;
      width:fit-content;
      margin-inline:auto;
      padding-top:var(--padding-block);
    }
    & img { width:auto; height:var(--img-height);}
    & button {
      position:absolute;
      width:86px;
      height:31px;
      background-color:transparent;
      border:none;
      inset:auto 0 calc(100% - var(--padding-block)) auto;
      translate:0 -50%;
      cursor:pointer;

      &:before, &:after {
        content:"";
        position:absolute;
        display:block;
        width:calc(100% + 4px);
        height:1px;
        inset:50% auto auto 50%;
        translate:-50% -50%;
        background-color:var(--color-site-primary);
      }
      &:before { rotate:20deg;}
      &:after { rotate:-20deg;}
    }
  }
  & .c-btn[popovertarget] {
    margin:1em auto 0 0;
    padding:15px;
    min-width:193.5px;
    height:51px;

    & .c-btn__inner { font-size:15px;}
  }
}
@media only screen and (width <= 1024px) {
  #staff {

    & [popover] {
      & button { width:45px; height:16px;}
    }
    & .c-btn[popovertarget] {
      margin-inline:auto;
      color:inherit;
    }
  }
}


/* ===== stock ===== */
#stockContent {
  &:has([popover]:popover-open) [popovertargetaction="show"] { pointer-events:none;}
  & section:not(:has( + section)) { margin-bottom:10em;}
  
  & h2 { font-size:3em; margin-block:2em 1em; text-align:center;}
  & img { max-width:100%; height:auto;}
  & dl { display:grid; grid-template-columns:auto 1fr;}
  & dd { word-break:break-word;}
  & button { padding:0px; border:none; background-color:transparent; cursor:pointer;}
  & button.hasSwiper {
    position:relative;

    &::after {
      --w:1em;
      content:"";
      position:absolute;
      inset:auto 1em 1em auto;
      width:var(--w);
      height:calc(tan(60deg) * var(--w) / 2);
      background-color:currentColor;
      clip-path:polygon(50% 0%, 100% 100%, 0% 100%);
      rotate:90deg;
      pointer-events:none;
    }
  }
  & .lead { font-size:25px; text-align:center; margin-bottom:5em;}
  & .capacity { font-size:1.75em; font-weight:700; margin-block:2em 1em;}
  & .imgList {
    display:grid;
    grid-template-columns:repeat(auto-fill, minmax(250px, 1fr));
    gap:3em 1em;

    & img {
      aspect-ratio:4/3;
      object-fit:cover;
    }
  }
  & [popover] {
    inset:0;
    margin:auto;
    width:min(89.333svw, 1000px);
    background-color:transparent;
    overflow:unset;
    
    &::backdrop { background-color:rgb(255 255 255 / 0.8);}
    & .popoverInner { position:relative;}
    & img { width:100%; max-height:80vh; object-fit:contain;}
    & button {
      position:absolute;
      width:45px;
      height:16px;
      top:-25px;
      right:0;

      &::before,
      &::after {
        content:"";
        position:absolute;
        top:50%;
        left:0px;
        translate:0 -50%;
        width:calc(100% + 4px);
        height:1px;
        background-color:var(--color-site-primary);
      }
      &::before { rotate:20deg;}
      &::after { rotate:-20deg;}
    }
    & :is(.swiper-button-next, .swiper-button-prev) {
      top: 50% !important;
      width: 10px;
      height: 20px;
      margin-top: 0 !important;
      translate: 0 -50%;
      color: var(--color-site-quaternary);
    }
    & .swiper-button-next { right:-15px!important;}
    & .swiper-button-prev { left:-15px!important;}
  }
}
@media only screen and (width > 1024px){
  #stockContent {

    & .popoverInner {
  
      & button {
        width:86px;
        height:31px;
        top:-49px;
      }
      & :is(.swiper-button-next, .swiper-button-prev) {
        width:21px;
        height:42px;
      }
      & .swiper-button-next { right:-40px!important;}
      & .swiper-button-prev { left:-40px!important;}
    }
  }
}
@media only screen and (768px > width){
  #stockContent {
    & h2 { font-size:2.75em;}
    & .capacity { font-size:1.5em;}
    & .imgList { grid-template-columns:repeat(2, 1fr);}
  }
}