@charset "UTF-8";
/**
  @fonts
--------------------------------------------------------
  setting/_font.scss
--------------------------------------------------------
■日本語フォント
- Noto Sans Japanese
https://fonts.google.com/noto/specimen/Noto+Sans+JP

- Yaku Han JP
https://yakuhanjp.qranoko.jp/

■英字フォント
- Roboto,Cormorant Garamond
https://fonts.google.com/specimen/Roboto
https://fonts.google.com/specimen/Cormorant+Garamond
-------------------------------------------------------- */
:root {
  --body-width: calc(100vw - var(--scrollbar));
  --fz-3: 0.625rem;
  --fz-2: 0.75rem;
  --fz-1: 0.875rem;
  --fz0: clamp(1rem, 1rem + 0vw, 1rem);
  --fz1: clamp(1.125rem, 1.0708rem + 0.2312vw, 1.25rem);
  --fz2: clamp(1.2656rem, 1.1369rem + 0.5491vw, 1.5625rem);
  --fz3: clamp(1.4238rem, 1.1944rem + 0.979vw, 1.9531rem);
  --fz4: clamp(1.6018rem, 1.2378rem + 1.553vw, 2.4414rem);
  --fz5: clamp(1.802rem, 1.2602rem + 2.3116vw, 3.0518rem);
  --fz6: clamp(2.0273rem, 1.2524rem + 3.3062vw, 3.8147rem);
  --fz7: clamp(2.2807rem, 1.2022rem + 4.6015vw, 4.7684rem);
}

.c-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 15px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  min-width: 320px;
  margin-inline: auto;
  padding-inline: 30px;
  background: #4d362e;
  color: #fff;
  font-weight: 500;
  text-decoration: none;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .c-btn {
    height: 60px;
  }
}
@media screen and (max-width: 413px) {
  .c-btn {
    gap: 10px;
    width: 100%;
    padding-inline: 25px;
  }
}
@media screen and (min-width: 768px) {
  .c-btn {
    height: 70px;
  }
}
@media (hover: hover) {
  .c-btn:hover {
    background: #6d4c41;
  }
}
.c-btn .c-icon svg {
  fill: #fff;
  width: 26px;
  height: 8px;
}
.c-btn--en {
  height: 60px;
}
.c-btn--en span {
  font-family: "Cormorant Garamond", serif;
  font-size: var(--fz-1);
}
.c-btn--wht {
  border: solid 1px #4d362e;
  background: #fff;
  color: #4d362e;
}
.c-btn--wht .c-icon svg {
  fill: #4d362e;
}
@media (hover: hover) and (pointer: fine) {
  .c-btn--wht:hover {
    background: rgba(77, 54, 46, 0.1);
  }
}
.c-btn--primary {
  position: relative;
  width: 100%;
  height: 120px;
  padding-left: min(40px, 5vw);
  padding-right: min(30px, 5vw);
  color: #fff;
  font-size: var(--fz1);
  text-decoration: none;
  -webkit-transition: all 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  transition: all 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  line-height: 1;
}
.c-btn-wrap {
  margin-top: min(50px, 5vw);
}
.c-btn-wrap:has(.c-btn--primary) {
  margin-top: min(80px, 10vw);
}
.c-btn-lead {
  margin-bottom: 1em;
  line-height: 1.5em;
  text-align: center;
}
.c-btn-list {
  display: -ms-grid;
  display: grid;
  gap: var(--gap);
}
@media screen and (min-width: 768px) {
  .c-btn-list {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
}

i[class^=c-icon] {
  line-height: 0;
  -webkit-transition: all 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  transition: all 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53);
}
i[class^=c-icon] svg {
  aspect-ratio: 1/1;
  position: relative;
  -webkit-transition: all 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  transition: all 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  z-index: 2;
}

.c-icon {
  line-height: 0;
}
.c-icon-arrow svg {
  width: 11px;
}
.c-icon-arrow--wht svg {
  fill: #fff;
}

.c-link-txt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 30px;
  color: #362e2b;
  text-decoration: none;
}
@media screen and (max-width: 575px) {
  .c-link-txt {
    margin-top: 20px;
  }
}
.c-link-txt:has(.c-icon-map) {
  gap: 5px;
}
.c-link-txt > span {
  overflow: hidden;
  position: relative;
  display: block;
  padding-block: 5px;
  line-height: 1.3;
}
.c-link-txt > span:after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: #8b776f;
  -webkit-transform-origin: right bottom;
          transform-origin: right bottom;
  -webkit-transition: all 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  transition: all 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53);
}
.c-link-txt p {
  margin: 0 !important;
}
@media screen and (hover: hover) and (pointer: fine) and (min-width: 992px) {
  .c-link-txt:hover span:after {
    -webkit-animation: underline 0.4s cubic-bezier(0.29, 0.65, 0.62, 1) forwards;
            animation: underline 0.4s cubic-bezier(0.29, 0.65, 0.62, 1) forwards;
  }
}
.c-link-txt .c-icon-circle {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  position: relative;
}
.c-link-txt__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 15px 30px;
  margin-top: 30px;
}
.c-link-txt__list--right {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.c-link-txt__list--center {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.c-link-txt__list .c-link-txt {
  margin-top: 0;
}
.c-link-pdf {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 10px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  min-height: 60px;
  padding: 1em;
  border-radius: 10px;
  border: 1px solid #ddd;
  background: #fff;
}
@media screen and (max-width: 413px) {
  .c-link-pdf {
    min-height: 50px;
  }
}
@media (hover: hover) {
  .c-link-pdf:hover {
    border-color: #4d362e;
  }
}
.c-link-pdf i {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 30px;
  aspect-ratio: 1/1;
  border-radius: 100%;
  background: #4d362e;
}
.c-link-pdf i svg {
  width: 16px;
  aspect-ratio: 1/1;
  fill: #fff;
}
.c-link-pdf__list {
  display: -ms-grid;
  display: grid;
  gap: 15px;
}
@media screen and (max-width: 767px) {
  .c-link-pdf__list {
    gap: 10px;
  }
}
@media screen and (min-width: 768px) {
  .c-link-pdf__list {
    grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
  }
}
.c-link-pdf__list .c-link-pdf {
  width: 100%;
}

@-webkit-keyframes underline {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
  37% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
    opacity: 1;
  }
  38% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
    opacity: 0;
  }
  39% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
    opacity: 0;
  }
  40% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
}

@keyframes underline {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
  37% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
    opacity: 1;
  }
  38% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
    opacity: 0;
  }
  39% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
    opacity: 0;
  }
  40% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
}
.c-list {
  display: -ms-grid;
  display: grid;
}
.c-list:has(> li) {
  gap: 0.5em;
}
.c-list:not(:last-child) {
  margin-bottom: 1.6em;
}
.c-list > li, .c-list > dt {
  position: relative;
  padding-left: 15px;
  line-height: 1.6;
}
.c-list > li:before, .c-list > dt:before {
  position: absolute;
  display: block;
  content: "";
  top: 0.8em;
  left: 0;
  width: 6px;
  margin-top: -3px;
  aspect-ratio: 1/1;
  border-radius: 100%;
  background: #4d362e;
}
.c-list dt {
  margin-bottom: 5px;
}
.c-list dt:not(:first-child) {
  margin-top: 1rem;
}
.c-list dd {
  padding-left: 15px;
}
.c-list dd ul {
  display: -ms-grid;
  display: grid;
  gap: 5px;
}
.c-list-num {
  display: -ms-grid;
  display: grid;
  gap: 0.5em;
}
.c-list-num:not(:last-child) {
  margin-bottom: 1.6em;
}
.c-list-num > li, .c-list-num > dt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 5px;
  counter-increment: calc-ex9;
  line-height: 1.6;
}
.c-list-num > li:last-child, .c-list-num > dt:last-child {
  margin-bottom: 0;
}
.c-list-num > li:before, .c-list-num > dt:before {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  content: counter(calc-ex9) ".";
  display: inline-block;
  width: 2em;
  text-indent: 0;
}
.c-list-num > dt {
  margin-bottom: 5px;
  line-height: 1.3;
}
.c-list-num > dd {
  padding-left: calc(2em + 5px);
}
.c-list-num > dd:not(:last-child) {
  margin-bottom: 10px;
}
.c-list-num--parenthesis > li:before, .c-list-num--parenthesis > dt:before {
  content: "（" counter(calc-ex9) "）";
}

@media screen and (max-width: 767px) {
  #wrapper {
    padding-top: 60px;
  }
}

@media screen and (max-width: 767px) {
  header {
    height: 60px;
  }
}
@media screen and (max-width: 767px) {
  header .head-logo svg {
    width: auto;
    height: 30px;
    aspect-ratio: 4/1;
  }
}
@media screen and (max-width: 767px) {
  header .menu {
    padding-top: 60px;
  }
}
@media screen and (max-width: 767px) {
  header .menu-btn {
    width: 60px;
    height: auto;
    aspect-ratio: 1/1;
  }
}
@media screen and (max-width: 767px) {
  header .menu-btn figure {
    width: 20px;
    left: calc(50% - 10px);
  }
}

.p-top-mv {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.p-top-mv h2 {
  margin-bottom: 0;
}
.p-top-mv .btn-box {
  position: relative;
  z-index: 10;
}
.p-top-mv .btn-box a {
  background: #fff;
  color: #4d362e;
}
@media (hover: hover) and (pointer: fine) {
  .p-top-mv .btn-box a:hover {
    background: rgba(255, 255, 255, 0.8);
  }
}
.p-top-mv .btn-box svg {
  fill: #4d362e !important;
}
.p-top-news .splide__pagination {
  position: static;
  margin-top: 30px;
  gap: 5px;
}
.p-top-news .splide__pagination li {
  display: block;
  width: 10px;
  aspect-ratio: 1/1;
  margin: 0;
}
.p-top-news .splide__pagination__page {
  display: block;
  width: 10px;
  height: 10px;
  margin: 0;
  background: #999;
  border-radius: 0;
  opacity: 1;
}
.p-top-news .splide__pagination__page.is-active {
  background: #4d362e;
  -webkit-transform: scale(1);
          transform: scale(1);
}
.p-top-stock dl {
  margin: 0 !important;
}
.p-top-stock .p-stock-list__body {
  padding-inline: 0;
  padding-bottom: 0;
}
.p-top-stock .p-stock-list__price dl {
  -webkit-box-pack: end !important;
      -ms-flex-pack: end !important;
          justify-content: flex-end !important;
  padding-block: 15px;
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
}
.p-top-stock .splide__track {
  overflow: visible;
}
.p-top-stock .splide__pagination {
  position: static;
  margin-top: 30px;
  gap: 5px;
}
.p-top-stock .splide__pagination li {
  display: block;
  width: 10px;
  aspect-ratio: 1/1;
  margin: 0;
}
.p-top-stock .splide__pagination__page {
  display: block;
  width: 10px;
  height: 10px;
  margin: 0;
  background: #999;
  border-radius: 0;
  opacity: 1;
}
.p-top-stock .splide__pagination__page.is-active {
  background: #4d362e;
  -webkit-transform: scale(1);
          transform: scale(1);
}

.p-about-concept__ttl {
  margin-bottom: 1em;
  font-size: var(--fz4);
  text-align: center;
  line-height: 1.8;
  letter-spacing: 0.15em;
}
.p-about-concept p {
  letter-spacing: 0.15em;
  line-height: 2.2 !important;
}
@media screen and (min-width: 768px) {
  .p-about-concept p {
    font-size: 1.125rem;
  }
}
.p-about-concept p:not(:last-child) {
  margin-bottom: 1.5em;
}

#wrapper:has(.p-stock--archive) .pagetitle {
  margin-bottom: 0;
}

@media screen and (max-width: 767px) {
  .p-stock {
    margin-bottom: 60px;
  }
}
@media screen and (min-width: 768px) {
  .p-stock {
    margin-bottom: 80px;
  }
}
@media screen and (min-width: 992px) {
  .p-stock {
    margin-bottom: 150px;
  }
}
.p-stock-inner {
  width: 100%;
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: min(40px, 5vw);
}
.p-stock--archive {
  background: #f2f1f0;
}
@media screen and (max-width: 767px) {
  .p-stock--archive {
    padding-bottom: 60px;
  }
}
@media screen and (min-width: 768px) {
  .p-stock--archive {
    padding-bottom: 80px;
  }
}
@media screen and (min-width: 992px) {
  .p-stock--archive {
    padding-bottom: 100px;
  }
}
@media screen and (max-width: 767px) {
  .p-stock--article {
    padding-top: 60px;
  }
}
@media screen and (min-width: 768px) {
  .p-stock--article {
    padding-top: 30px;
  }
}
.p-stock-header {
  margin-bottom: min(30px, 5vw);
}
.p-stock-header .breadcrumbs {
  position: static;
  width: 100%;
  max-width: none;
  -webkit-transform: translate(0);
          transform: translate(0);
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .p-stock-header .breadcrumbs {
    display: none;
  }
}
.p-stock-header .breadcrumbs li, .p-stock-header .breadcrumbs a {
  color: #4d362e;
}
.p-stock-header__brand {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-bottom: 10px;
  font-weight: 500;
  line-height: 1;
}
.p-stock-header__hgroup {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  gap: 10px;
}
.p-stock-header__ttl {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
  font-size: var(--fz4);
  font-weight: 700;
  line-height: 1.3;
}
.p-stock-header__grade {
  font-size: var(--fz0);
  font-weight: 500;
}
.p-stock-header__sold {
  padding: 8px 10px;
  background: #ad0306;
  color: #fff;
  font-size: var(--fz0);
  font-family: "Oswald", sans-serif;
  line-height: 0.7;
}
.p-stock-slide .splide__track {
  overflow: visible;
}
@media screen and (max-width: 991px) {
  .p-stock-slide .splide__slide {
    width: 80vw;
  }
}
@media screen and (min-width: 992px) {
  .p-stock-slide .splide__slide {
    width: 640px;
  }
}
.p-stock-slide .splide__slide figure {
  opacity: 0.5;
  -webkit-transform: scale(0.85);
          transform: scale(0.85);
  -webkit-transition: all 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  transition: all 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53);
}
.p-stock-slide .splide__slide.is-active figure {
  opacity: 1;
  -webkit-transform: scale(1);
          transform: scale(1);
}
.p-stock-thumbnail {
  position: relative;
  margin-top: min(30px, 5vw);
  display: -ms-grid;
  display: grid;
  -ms-grid-rows: 125px;
  grid-template-rows: 125px;
  -webkit-transition: grid-template-rows 0.3s;
  transition: grid-template-rows 0.3s;
  transition: grid-template-rows 0.3s, -ms-grid-rows 0.3s;
}
.p-stock-thumbnail:after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 40px;
  background: -webkit-gradient(linear, left bottom, left top, color-stop(29%, white), color-stop(70%, rgba(255, 255, 255, 0.6)), to(rgba(255, 255, 255, 0)));
  background: linear-gradient(0deg, white 29%, rgba(255, 255, 255, 0.6) 70%, rgba(255, 255, 255, 0) 100%);
}
.p-stock-thumbnail:has(input:checked) {
  -ms-grid-rows: 1fr;
  grid-template-rows: 1fr;
}
.p-stock-thumbnail:has(input:checked) .p-stock-thumbnail__label:before {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  margin-top: 5px;
}
.p-stock-thumbnail:has(input:checked) .p-stock-thumbnail__label span:after {
  content: "閉じる";
}
.p-stock-thumbnail__list {
  overflow: hidden;
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
  gap: 5px;
  padding-bottom: 30px;
}
.p-stock-thumbnail__slide {
  position: relative;
}
@media screen and (max-width: 575px) {
  .p-stock-thumbnail__slide {
    grid-template-columns: repeat(auto-fill, minmax(60px, 1fr));
  }
}
.p-stock-thumbnail__slide:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 2px solid #4d362e;
  opacity: 0;
  -webkit-transition: all 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  transition: all 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53);
}
.p-stock-thumbnail__slide figure {
  aspect-ratio: 4/3;
}
.p-stock-thumbnail__slide figure img {
  opacity: 0.6;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-stock-thumbnail__slide.is-active img {
  opacity: 1;
}
.p-stock-thumbnail__slide.is-active:before {
  opacity: 1;
}
.p-stock-thumbnail__label {
  cursor: pointer;
  position: absolute;
  left: 50%;
  bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 5px;
  width: 120px;
  height: 30px;
  margin-left: -60px;
  background: #4d362e;
  color: #fff;
  z-index: 10;
}
.p-stock-thumbnail__label:before {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  margin-top: -2px;
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
}
.p-stock-thumbnail__label span {
  font-size: var(--fz-2);
  line-height: 1;
}
.p-stock-thumbnail__label span:after {
  content: "全て表示";
}
.p-stock-table {
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  border-left: 1px solid #ddd;
  border-top: 1px solid #ddd;
}
.p-stock-table dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (min-width: 414px) {
  .p-stock-table dl {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.p-stock-table dt, .p-stock-table dd {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-right: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
}
@media screen and (max-width: 413px) {
  .p-stock-table dt, .p-stock-table dd {
    font-size: var(--fz-2);
  }
}
@media screen and (min-width: 414px) {
  .p-stock-table dt, .p-stock-table dd {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    text-align: center;
    font-size: var(--fz-1);
  }
}
@media screen and (max-width: 413px) {
  .p-stock-table dt small, .p-stock-table dd small {
    font-size: var(--fz-3);
  }
}
@media screen and (min-width: 414px) {
  .p-stock-table dt small, .p-stock-table dd small {
    font-size: var(--fz-2);
  }
}
.p-stock-table dt {
  background: #f2f1f0;
}
@media screen and (max-width: 413px) {
  .p-stock-table dt {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    width: 35%;
    padding: 1em;
  }
}
@media screen and (min-width: 414px) {
  .p-stock-table dt {
    height: 3em;
    padding-inline: 1em;
  }
}
.p-stock-table dd {
  -webkit-box-flex: 2;
      -ms-flex-positive: 2;
          flex-grow: 2;
  padding: 1em;
  line-height: 1.5;
}
.p-stock-base {
  gap: 30px;
}
@media screen and (max-width: 767px) {
  .p-stock-base {
    display: -ms-grid;
    display: grid;
    margin-top: 30px;
  }
}
@media screen and (min-width: 768px) {
  .p-stock-base {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin-top: 50px;
  }
}
@media screen and (min-width: 992px) {
  .p-stock-base {
    margin-top: 80px;
  }
}
@media screen and (min-width: 1200px) {
  .p-stock-base {
    margin-top: 100px;
  }
}
.p-stock-base__info {
  -webkit-box-flex: 2;
      -ms-flex-positive: 2;
          flex-grow: 2;
}
.p-stock-base .p-stock-contact {
  margin-top: 0;
}
.p-stock-price {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .p-stock-price {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 15px;
  }
}
.p-stock-price .attention {
  margin-top: 5px;
  color: #ad0306;
  font-size: var(--fz-3);
  font-weight: 500;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-stock-price .attention {
    width: 100%;
    text-align: right;
  }
}
.p-stock-price__sold {
  padding: 0.2em 0.3em;
  background: #ad0306;
  color: #fff;
  font-family: "Oswald", sans-serif;
  font-size: var(--fz7);
  line-height: 0.8;
  -webkit-transform: rotate(-5deg);
          transform: rotate(-5deg);
}
.p-stock-price__total {
  margin-bottom: 15px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-stock-price__total {
    width: 50%;
  }
}
@media screen and (max-width: 413px) {
  .p-stock-price__total {
    width: 40%;
  }
}
.p-stock-price__total [class$=__num] {
  color: #ad0306;
}
.p-stock-price__total [class$=__num] span {
  font-size: var(--fz6);
}
.p-stock-price__total [class$=__ttl] {
  margin-bottom: 10px;
  padding: 0.5em;
  background: #ad0306;
  color: #fff;
  font-weight: 700;
  line-height: 1;
}
.p-stock-price__other {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: auto 0 1fr;
  grid-template-columns: auto 1fr;
  gap: 10px 0;
  padding-top: 10px;
  border-top: 1px solid #ddd;
}
@media screen and (max-width: 767px) {
  .p-stock-price__other {
    -webkit-box-flex: 2;
        -ms-flex-positive: 2;
            flex-grow: 2;
  }
}
.p-stock-price__other [class$=__num] {
  font-size: var(--fz3);
}
.p-stock-price__other dt, .p-stock-price__other dd {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
  padding-bottom: 10px;
  border-bottom: 1px solid #ddd;
}
@media screen and (min-width: 576px) {
  .p-stock-price__other dt {
    padding-left: 1rem;
  }
}
.p-stock-price__other dd {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
  padding-left: 10px;
}
@media screen and (min-width: 576px) {
  .p-stock-price__other dd {
    padding-right: 1rem;
  }
}
.p-stock-price__ttl {
  font-size: var(--fz-1);
  font-weight: 500;
}
.p-stock-price__ttl small {
  font-size: var(--fz-3);
}
.p-stock-price__num {
  font-weight: 700;
  line-height: 1;
}
.p-stock-price__num span {
  font-family: "Oswald", sans-serif;
}
.p-stock-price__num small {
  font-size: var(--fz-2);
}
@media screen and (max-width: 767px) {
  .p-stock-section {
    margin-top: 10vw;
  }
}
@media screen and (min-width: 768px) {
  .p-stock-section {
    margin-top: 80px;
  }
}
@media screen and (min-width: 992px) {
  .p-stock-section {
    margin-top: 100px;
  }
}
.p-stock-section h2 {
  margin-bottom: 1em;
}
.p-stock-equipment {
  display: -ms-grid;
  display: grid;
  gap: 5px;
}
@media screen and (max-width: 575px) {
  .p-stock-equipment {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width: 576px) {
  .p-stock-equipment {
    grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  }
}
.p-stock-equipment li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 1em;
  border: 1px solid #ddd;
  background: rgba(77, 54, 46, 0.1);
}
@media screen and (max-width: 575px) {
  .p-stock-equipment li {
    font-size: var(--fz-2);
  }
}
@media screen and (min-width: 576px) {
  .p-stock-equipment li {
    font-size: var(--fz-1);
  }
}
.p-stock-contact {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .p-stock-contact {
    margin-top: 30px;
  }
}
@media screen and (max-width: 767px) {
  .p-stock-contact {
    display: -ms-grid;
    display: grid;
    gap: 15px;
    margin-top: 40px;
  }
}
@media screen and (min-width: 768px) {
  .p-stock-contact {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 20px;
    margin-top: 50px;
  }
}
@media screen and (min-width: 768px) and (min-width: 1200px) {
  .p-stock-contact {
    gap: 30px;
  }
}
.p-stock-contact:has(img) + .p-stock-contact__attention {
  display: block;
}
@media screen and (min-width: 768px) {
  .p-stock-contact li {
    width: calc((100% - 20px) / 2);
  }
}
@media screen and (min-width: 992px) {
  .p-stock-contact li {
    width: calc((100% - 40px) / 3);
  }
}
@media screen and (min-width: 1200px) {
  .p-stock-contact li {
    width: calc((100% - 60px) / 3);
  }
}
.p-stock-contact__logo {
  width: 80px;
}
@media screen and (max-width: 767px) {
  .p-stock-contact__logo {
    height: 30px;
  }
}
@media screen and (min-width: 768px) {
  .p-stock-contact__logo {
    height: 40px;
  }
}
.p-stock-contact__logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center center;
     object-position: center center;
}
.p-stock-contact .c-btn {
  width: 100%;
  min-width: 0;
}
.p-stock-contact .c-btn:has(img) {
  padding-inline: 20px;
}
@media screen and (min-width: 768px) {
  .p-stock-contact .c-btn:not(:has(img)) span {
    font-size: 1.125rem;
  }
}
.p-stock-contact__attention {
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
  display: none;
  width: 100%;
  margin-top: 0.5em;
  font-size: var(--fz-1);
  text-align: center;
}
.p-stock-base .p-stock-contact__attention {
  margin-top: 0;
  -webkit-transform: translateY(-1em);
          transform: translateY(-1em);
}
.p-stock-list {
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 40px;
}
.p-stock-list__item {
  background: #fff;
}
.p-stock-list__link {
  display: block;
  text-decoration: none;
}
.p-stock-list__thumb {
  position: relative;
  aspect-ratio: 4/3;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-stock-list__brand {
  position: absolute;
  top: 0;
  left: 0;
  padding: 0.5em;
  background: #4d362e;
  color: #fff;
  font-size: var(--fz-2);
}
.p-stock-list__body {
  padding: min(30px, 6vw);
}
.p-stock-list__ttl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
  margin-bottom: 1em;
  font-size: var(--fz2);
  text-align: left;
  line-height: 1.3;
}
.p-stock-list__hgroup {
  margin-bottom: min(30px, 6vw);
}
.p-stock-list__count {
  margin: 0;
  font-size: var(--fz0);
  line-height: 1;
  text-align: left;
}
.p-stock-list__result {
  margin-top: 15px;
  color: #4d362e;
  font-size: var(--fz1);
  font-weight: 700;
  line-height: 1;
}
.p-stock-list__name {
  margin-bottom: 0.5em;
  font-size: var(--fz1);
  text-align: left;
  line-height: 1.3;
}
.p-stock-list__grade {
  font-size: var(--fz-1);
  font-weight: 700;
  line-height: 1.3;
}
.p-stock-list__price {
  margin-top: 15px;
  display: -ms-grid;
  display: grid;
  gap: 15px;
}
.p-stock-list__price:has(.p-stock-list__price-sold) {
  position: relative;
}
.p-stock-list__price:has(.p-stock-list__price-sold):after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.7);
}
.p-stock-list__price-sold {
  position: absolute;
  top: 50%;
  left: 50%;
  padding: 8px 15px 10px;
  background: #ad0306;
  color: #fff;
  font-size: var(--fz4);
  font-family: "Oswald", sans-serif;
  line-height: 0.7;
  -webkit-transform: translate(-50%, -50%) rotate(-3deg);
          transform: translate(-50%, -50%) rotate(-3deg);
  z-index: 10;
}
.p-stock-list__price dt, .p-stock-list__price dd {
  font-weight: 700;
  line-height: 1;
}
.p-stock-list__price dd {
  font-weight: 700;
}
.p-stock-list__price dd span {
  display: inline-block;
  min-width: 2em;
  font-family: "Oswald", sans-serif;
  line-height: 0.7;
}
.p-stock-list__price--total {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 5px;
  color: #ad0306;
}
.p-stock-list__price--total dt {
  font-size: var(--fz0);
}
.p-stock-list__price--total dd span {
  font-size: var(--fz5);
}
.p-stock-list__price--total dd small {
  font-size: var(--fz-1);
}
.p-stock-list__price--other {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-block: 15px;
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
}
.p-stock-list__price--other dt {
  font-size: var(--fz-2);
}
.p-stock-list__price--other dd span {
  font-size: var(--fz2);
}
.p-stock-list__price--other dd small {
  font-size: var(--fz-2);
}
.p-stock-list__price--other dd + dt {
  margin-left: 10px;
}
.p-stock-list__spec {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: auto 1fr;
  grid-template-columns: auto 1fr;
}
.p-stock-list__spec dt, .p-stock-list__spec dd {
  padding-block: 10px;
  font-size: var(--fz-1);
  border-bottom: 1px solid #ddd;
}
@media screen and (max-width: 575px) {
  .p-stock-list__spec dt, .p-stock-list__spec dd {
    font-size: var(--fz-2);
  }
}
.p-stock-list__spec dd {
  padding-left: 1em;
}
@media screen and (max-width: 767px) {
  .p-stock-related {
    margin-top: 60px;
  }
}
@media screen and (min-width: 768px) {
  .p-stock-related {
    margin-top: 80px;
  }
}
@media screen and (min-width: 992px) {
  .p-stock-related {
    margin-top: 150px;
  }
}
.p-stock-filter {
  margin-bottom: 50px;
  background: #fff;
  -webkit-box-shadow: 0 0 10px 0px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 10px 0px rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 575px) {
  .p-stock-filter {
    padding-top: 30px;
  }
}
@media screen and (min-width: 576px) {
  .p-stock-filter {
    padding-top: 50px;
  }
}
.p-stock-filter__header-ttl {
  margin-bottom: 0;
  font-size: var(--fz1);
  font-weight: 700;
  text-align: left;
  line-height: 1;
}
.p-stock-filter__body {
  display: -ms-grid;
  display: grid;
  gap: 30px;
  width: 100%;
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: min(40px, 5vw);
}
@media screen and (max-width: 575px) {
  .p-stock-filter__body {
    padding-bottom: 30px;
  }
}
@media screen and (min-width: 576px) {
  .p-stock-filter__body {
    padding-bottom: 50px;
  }
}
.p-stock-filter__ttl {
  margin-bottom: 1em;
  font-size: var(--fz-2);
  font-weight: 700;
  text-align: left;
  line-height: 1;
}
.p-stock-filter__list {
  gap: 10px;
}
@media screen and (max-width: 575px) {
  .p-stock-filter__list {
    gap: 5px;
  }
}
.p-stock-filter__list input {
  display: none;
}
.p-stock-filter__list--maker {
  display: -ms-grid;
  display: grid;
}
@media screen and (max-width: 575px) {
  .p-stock-filter__list--maker {
    position: relative;
    overflow: hidden;
    -ms-grid-columns: (1fr)[3];
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (min-width: 576px) {
  .p-stock-filter__list--maker {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  }
}
.p-stock-filter__list--status {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.p-stock-filter__label {
  position: relative;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #362e2b;
  text-decoration: none;
  border-radius: 5px;
}
ul[class$=maker] .p-stock-filter__label {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  width: 100%;
  height: 100%;
  padding: 15px 20px;
  background: #fff;
}
ul[class$=maker] .p-stock-filter__label:before, ul[class$=maker] .p-stock-filter__label:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 5px;
  -webkit-transition: all 0.1s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  transition: all 0.1s cubic-bezier(0.55, 0.085, 0.68, 0.53);
}
ul[class$=maker] .p-stock-filter__label:before {
  border: 1px solid #ddd;
}
ul[class$=maker] .p-stock-filter__label:after {
  border: 2px solid #4d362e;
  opacity: 0;
}
ul[class$=maker] .p-stock-filter__label:has(input:checked):after {
  opacity: 1;
}
@media (hover: hover) and (pointer: fine) {
  ul[class$=maker] .p-stock-filter__label:hover:before {
    border-color: #4d362e;
  }
}
ul[class$=status] .p-stock-filter__label {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100px;
  height: 40px;
  background: #f2f1f0;
  border-radius: 5px;
  line-height: 1;
  -webkit-transition: all 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  transition: all 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53);
}
ul[class$=status] .p-stock-filter__label:has(input:checked) {
  color: #fff;
  background: #4d362e;
}
@media (hover: hover) and (pointer: fine) {
  ul[class$=status] .p-stock-filter__label:hover {
    background: #dad8d5;
  }
}
.p-stock-filter__logo {
  overflow: visible;
  margin-bottom: 10px;
  -webkit-transition: all 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  transition: all 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53);
}
.p-stock-filter__logo div {
  width: 100%;
  height: 30px;
}
.p-stock-filter__logo div img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.p-stock-filter__name {
  -webkit-box-flex: 2;
      -ms-flex-positive: 2;
          flex-grow: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: var(--fz-2);
  text-align: center;
  -webkit-transition: all 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  transition: all 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53);
}
.p-stock-filter__status-txt {
  font-size: var(--fz-1);
}
.p-stock-filter__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 15px;
  padding-block: 20px;
  border-top: 1px solid #ddd;
}
@media screen and (max-width: 575px) {
  .p-stock-filter__btn {
    padding-inline: 5vw;
  }
}
.p-stock-filter__btn-item {
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 5px;
  color: #362e2b;
  line-height: 1;
  -webkit-transition: all 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  transition: all 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53);
}
@media screen and (max-width: 575px) {
  .p-stock-filter__btn-item {
    height: 50px;
    font-size: var(--fz-1);
  }
}
@media screen and (min-width: 576px) {
  .p-stock-filter__btn-item {
    height: 60px;
  }
}
.p-stock-filter__btn-item--submit {
  background: #4d362e;
  color: #fff;
}
@media screen and (max-width: 575px) {
  .p-stock-filter__btn-item--submit {
    width: 160px;
  }
}
@media screen and (min-width: 576px) {
  .p-stock-filter__btn-item--submit {
    width: 200px;
  }
}
@media (hover: hover) and (pointer: fine) {
  .p-stock-filter__btn-item--submit:hover {
    background: #000;
  }
}
.p-stock-filter__btn-item--clear {
  gap: 5px;
}
.p-stock-filter__btn-item--clear i {
  position: relative;
  width: 12px;
  height: 12px;
}
.p-stock-filter__btn-item--clear i:before, .p-stock-filter__btn-item--clear i:after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  margin-top: 0;
  background: #4d362e;
}
.p-stock-filter__btn-item--clear i:before {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.p-stock-filter__btn-item--clear i:after {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.p-stock-nopost {
  text-align: center;
}

#results-page .pagetitle {
  margin-bottom: 50px;
  background: url("/assets/images/results/bg-pagettl.png") no-repeat right center #4d362e;
  background-size: auto 100%;
}

.p-results-list {
  gap: 30px;
}
@media screen and (max-width: 767px) {
  .p-results-list {
    display: -ms-grid;
    display: grid;
    gap: 30px;
  }
}
.p-results-list__ttl {
  width: 90%;
  max-width: 1240px;
  margin-inline: auto;
  margin-bottom: 1em;
  text-align: left;
}
.p-results-list .item {
  margin: 0 !important;
}
.p-results-sort__wrap {
  width: 90%;
  max-width: 1240px;
  margin-inline: auto;
  margin-bottom: 50px;
}
.p-results-sort__list {
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 10px;
  padding: 15px;
  background: #f2f1f0;
}
@media screen and (max-width: 575px) {
  .p-results-sort__list {
    position: relative;
    overflow: hidden;
    -ms-grid-columns: 1fr 5px 1fr;
    grid-template-columns: repeat(2, 1fr);
    height: 280px;
    padding: 10px;
    gap: 5px;
  }
  .p-results-sort__list:after {
    content: "";
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background: -webkit-gradient(linear, left bottom, left top, color-stop(20%, rgb(255, 255, 255)), to(rgba(255, 255, 255, 0)));
    background: linear-gradient(0deg, rgb(255, 255, 255) 20%, rgba(255, 255, 255, 0) 100%);
  }
}
@media screen and (max-width: 575px) and (max-width: 575px) {
  .p-results-sort__list:has(input:checked) {
    height: auto;
    overflow: visible;
  }
  .p-results-sort__list:has(input:checked):after {
    display: none;
  }
  .p-results-sort__list:has(input:checked) [class$=__label] {
    -webkit-transform: translate(-50%, 150%);
            transform: translate(-50%, 150%);
  }
  .p-results-sort__list:has(input:checked) [class$=__label]:before {
    content: "閉じる▲";
  }
}
.p-results-sort__list input {
  display: none;
}
@media screen and (max-width: 575px) {
  .p-results-sort__label {
    display: block;
    position: absolute;
    bottom: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    font-size: var(--fz-2);
    z-index: 10;
  }
  .p-results-sort__label:before {
    content: "すべて表示▼";
  }
}
@media screen and (min-width: 576px) {
  .p-results-sort__label {
    display: none;
  }
}
.p-results-sort__ttl {
  margin-bottom: 1em;
  font-size: var(--fz-2);
  font-weight: 700;
  text-align: left;
  line-height: 1;
}
.p-results-sort a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  height: 100%;
  padding: 15px 20px;
  background: #fff;
  color: #362e2b;
  text-decoration: none;
  border: 1px solid #ddd;
  border-radius: 5px;
}
.p-results-sort a:has(img) {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.p-results-sort figure {
  overflow: visible;
  margin-bottom: 10px;
}
.p-results-sort div {
  width: 100%;
  height: 30px;
}
.p-results-sort div img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.p-results-sort span {
  -webkit-box-flex: 2;
      -ms-flex-positive: 2;
          flex-grow: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: var(--fz-2);
  text-align: center;
}

#contact-page .contents .form-wrap.p-form-car:has(input[value=予約する]:checked) .p-form-reserve {
  -ms-grid-rows: 1fr;
  grid-template-rows: 1fr;
}

#contact-page .contents .form-wrap .p-form-reserve {
  display: -ms-grid;
  display: grid;
  -ms-grid-rows: 0fr;
  grid-template-rows: 0fr;
  -webkit-transition: all 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  transition: all 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53);
}
#contact-page .contents .form-wrap .p-form-reserve > dl {
  overflow: hidden;
  border-top: none;
}
#contact-page .contents .form-wrap .p-form-reserve__cnt {
  display: -ms-grid;
  display: grid;
  gap: 5px;
}
#contact-page .contents .form-wrap .p-form-reserve__cnt-ttl {
  margin-bottom: 0;
  font-weight: 500;
  line-height: 1;
}
#contact-page .contents .form-wrap .p-form-reserve__cnt-ttl:nth-of-type(2) {
  margin-top: 1em;
}
#contact-page .contents .form-wrap .p-form-reserve__table {
  display: -ms-grid;
  display: grid;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0;
}
@media screen and (max-width: 991px) {
  #contact-page .contents .form-wrap .p-form-reserve__table {
    -ms-grid-columns: auto 200px;
    grid-template-columns: auto 200px;
  }
}
@media screen and (min-width: 992px) {
  #contact-page .contents .form-wrap .p-form-reserve__table {
    -ms-grid-columns: auto 200px auto 200px;
    grid-template-columns: auto 200px auto 200px;
  }
}
#contact-page .contents .form-wrap .p-form-reserve__table-ttl {
  width: auto;
}
@media screen and (min-width: 992px) {
  #contact-page .contents .form-wrap .p-form-reserve__table-ttl:nth-of-type(2) {
    padding-left: 1em;
  }
}
#contact-page .contents .form-wrap .p-form-reserve__table-cnt {
  width: auto;
}
#contact-page .contents .form-wrap .p-form-reserve__table-cnt input, #contact-page .contents .form-wrap .p-form-reserve__table-cnt select {
  height: 50px;
}
#contact-page .contents .form-wrap .p-form-reserve__table-cnt select {
  width: 100%;
  border: 1px solid #ddd;
  border-radius: 4px;
}

.mw_wp_form_confirm .p-form-reserve {
  -ms-grid-rows: 1fr !important;
  grid-template-rows: 1fr !important;
}

.ui-datepicker {
  z-index: 100 !important;
}