.normal {
  font-family: "source-han-sans-japanese", sans-serif;
  font-weight: 500;
}

.mincho {
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
}

.condensed {
  font-family: "Sofia Sans Extra Condensed", sans-serif;
  font-weight: 600;
}

.bold {
  font-weight: 700;
}

:root {
  --scr-y: 0;
  --scr-x: 0;
  --win-h: 0;
  --win-w: 0;
  --scr-yc: calc(var(--scr-y) + var(--win-h) / 2);
  --scr-xc: calc(var(--scr-x) + var(--win-w) / 2);
}
@media (width <= 730px) {
  :root {
    --minw: 360px;
    --minwn: 360;
    --maxw: 100vw;
    --maxwn: 360;
    --pdg: 20px;
    --pdgn: 20;
    --fs: 14px;
  }
}
@media (width > 730px) {
  :root {
    --minw: 730px;
    --minwn: 730;
    --maxw: 1100px;
    --maxwn: 1100;
    --pdg: 35px;
    --pdgn: 35;
    --fs: 15px;
  }
}

html, body {
  font-size: var(--fs);
  min-width: var(--minw);
}
@media (width <= 730px) {
  html, body {
    max-width: 100%;
  }
}

@media (width > 730px) {
  .inr0 {
    --maxw: 2000px;
    --maxwn: 2000;
    --pdg: 0;
    --pdgn: 0;
  }
  .inr1 {
    --maxw: 1100px;
    --maxwn: 1100;
    --pdg: 30px;
    --pdgn: 30;
  }
  .inr2 {
    --maxw: 960px;
    --maxwn: 960;
    --pdg: 30px;
    --pdgn: 30;
  }
  .inr3 {
    --maxw: 760px;
    --maxwn: 760;
    --pdg: 30px;
    --pdgn: 30;
  }
  .inr4 {
    --maxw: 720px;
    --maxwn: 720;
    --pdg: 30px;
    --pdgn: 30;
  }
}
[class^=inr], [class*=" inr"] {
  padding-inline: var(--pdg);
  margin: 0 auto;
}
@media (width > 730px) {
  [class^=inr], [class*=" inr"] {
    max-width: var(--maxw);
    container-type: inline-size;
  }
}

@media (width <= 730px) {
  .m-noinr {
    margin-inline: calc(var(--pdg) * -1) !important;
    max-width: none !important;
  }
}

.watchscroll {
  --pos-t: 0;
  --pos-l: 0;
  --size-h: 0;
  --size-w: 0;
  --pos-yc: calc(var(--pos-t) + var(--size-h) / 2);
  --pos-xc: calc(var(--pos-l) + var(--size-w) / 2);
  --scrpos-y: calc(var(--pos-t) - var(--scr-y));
  --scrpos-yc: calc(var(--pos-yc) - var(--scr-yc));
  --scrpos-x: calc(var(--pos-l) - var(--scr-x));
  --scrpos-xc: calc(var(--pos-xc) - var(--scr-xc));
}

.row, .rows > *, .rowss > * > * {
  display: flex;
  justify-content: space-around;
  align-items: flex-start;
  align-content: center;
}

.row > *, .rows > * > *, .rowss > * > * > * {
  flex: 1 1 auto;
}

.col, .cols > * {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: stretch;
  align-content: center;
}

.row.fixedrow {
  align-items: flex-start;
}

.row.fixedrow > * {
  flex: 1 0 0%;
}

.row.fixedrow > * + * {
  margin-left: 15px;
}

@media (width > 730px) {
  .only-m {
    display: none;
  }
  .pc-row, .pc-rows > * {
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
    align-content: center;
  }
  .pc-row > *, .pc-rows > * > * {
    flex: 1 0 0%;
  }
  .pc-col, .pc-cols > * {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: stretch;
    align-content: center;
  }
}
@media (width <= 730px) {
  .only-pc {
    display: none;
  }
  .m-row, .m-rows > * {
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
    align-content: center;
  }
  .m-row > *, .m-rows > * > * {
    flex: 1 1 auto;
  }
  .m-col, .m-cols > * {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: stretch;
    align-content: center;
  }
}
.fit {
  flex: 0 0 auto !important;
}

.btns {
  display: block;
  text-align: center;
  position: relative;
}
.btns > * {
  all: unset;
  display: inline-block;
  position: relative;
  line-height: 1;
  background: transparent;
  color: inherit;
  margin: 5px;
  text-align: center;
  transition: all 0.4s;
  z-index: 2;
}
@media (width <= 730px) {
  .btns > * {
    min-width: 80%;
    padding: 15px;
    box-sizing: border-box;
  }
}
@media (width > 730px) {
  .btns > * {
    padding: 15px 6em;
  }
}
.btns > *::before {
  content: "";
  display: block;
  position: absolute;
  box-sizing: border-box;
  top: 0;
  left: 0;
  height: 70%;
  aspect-ratio: 1/1;
  border-top: 3px solid #5f0b02;
  border-left: 3px solid #5f0b02;
}
.btns > *::after {
  content: "";
  display: block;
  position: absolute;
  box-sizing: border-box;
  bottom: 0;
  right: 0;
  height: 70%;
  aspect-ratio: 1/1;
  border-bottom: 3px solid #5f0b02;
  border-right: 3px solid #5f0b02;
}
.btns > *:hover {
  cursor: pointer;
  text-decoration: none;
  filter: brightness(1.5);
  padding: 15px 3em;
}

html#idx body {
  background: url(/wp-content/themes/custom/img/0091.jpg) repeat center/990px;
}
html#idx .hdr-ctn p.logotype {
  position: fixed;
  top: 0;
  padding-top: 10px;
  left: 0;
  right: 0;
  z-index: -1;
  text-align: center;
}
html#idx .hdr-ctn p.logotype img {
  width: clamp(660px * 110 / 100, (100vw - 70px) * 110 / 100, 1100px * 110 / 100);
  position: relative;
  transform: translateY(min(1px * var(--scr-y) * 0.5, 25vh));
  transition: all 0.1s;
}
html#idx .hdr-ctn section.kv {
  position: relative;
  padding-bottom: 60px;
  z-index: 1;
}
html#idx .hdr-ctn section.kv .fader {
  border-radius: 9999px;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
  aspect-ratio: 610/795;
}
@media (width <= 730px) {
  html#idx .hdr-ctn section.kv .fader {
    transform: translateY(calc(1px * var(--scrpos-y) * 0.2));
  }
}
@media (width > 730px) {
  html#idx .hdr-ctn section.kv .fader {
    transform: translateY(calc(1px * var(--scrpos-y) * 0.6));
  }
}
@media (width <= 730px) {
  html#idx .hdr-ctn section.kv .fader {
    margin-top: -20px;
    width: clamp(320px * 85 / 100, (100vw - 40px) * 85 / 100, 690px * 85 / 100);
    border: 10px solid white;
    box-shadow: 0px 0px 0px 5px #ccba7e;
  }
}
@media (width > 730px) {
  html#idx .hdr-ctn section.kv .fader {
    width: 610px;
    margin-top: -180px;
    border: 15px solid white;
    box-shadow: 0px 0px 0px 10px #ccba7e;
  }
}
html#idx .hdr-ctn section.kv .fader .slick-list, html#idx .hdr-ctn section.kv .fader .slick-track, html#idx .hdr-ctn section.kv .fader .slick-slide {
  width: 100%;
  height: 100%;
}
html#idx .hdr-ctn section.kv .fader img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transform: scale(calc(1 + var(--scr-y) / 2000));
}
html#idx .hdr-ctn section.kv .fader + p {
  position: absolute;
}
@media (width <= 730px) {
  html#idx .hdr-ctn section.kv .fader + p {
    transform: translateY(calc(1px * var(--scrpos-y) * 0.5));
  }
}
@media (width > 730px) {
  html#idx .hdr-ctn section.kv .fader + p {
    transform: translateY(calc(1px * var(--scrpos-y) * 1.3));
  }
}
@media (width <= 730px) {
  html#idx .hdr-ctn section.kv .fader + p {
    bottom: 30px;
    left: 20px;
    right: 20px;
  }
}
@media (width > 730px) {
  html#idx .hdr-ctn section.kv .fader + p {
    bottom: 130px;
    left: 47vw;
    width: clamp(660px * 50 / 100, (100vw - 70px) * 50 / 100, 1100px * 50 / 100);
  }
}
@media (width <= 730px) {
  html#idx main section#s01-intro {
    padding-top: 50px;
  }
}
@media (width > 730px) {
  html#idx main section#s01-intro .pc-row {
    align-items: center;
  }
}
@media (width <= 730px) {
  html#idx main section#s01-intro .pc-row > div {
    display: contents;
  }
}
@media (width <= 730px) {
  html#idx main section#s01-intro .pc-row h2 {
    order: 1;
  }
  html#idx main section#s01-intro .pc-row figure {
    order: 2;
  }
  html#idx main section#s01-intro .pc-row p {
    order: 3;
  }
}
html#idx main section#s01-intro h2 {
  text-align: center;
  font-weight: 700;
}
@media (width <= 730px) {
  html#idx main section#s01-intro h2 {
    font-size: 160%;
  }
}
@media (width > 730px) {
  html#idx main section#s01-intro h2 {
    font-size: 200%;
  }
}
@media (width > 730px) {
  html#idx main section#s01-intro h2 {
    margin-bottom: 1.6rem;
  }
}
html#idx main section#s01-intro h2 svg:has([href="#deco01"]) {
  vertical-align: bottom;
  position: relative;
  top: 5px;
  fill: #5f0b02;
}
@media (width <= 730px) {
  html#idx main section#s01-intro h2 svg:has([href="#deco01"]) {
    width: 36px;
  }
}
@media (width > 730px) {
  html#idx main section#s01-intro h2 svg:has([href="#deco01"]) {
    width: 48px;
  }
}
html#idx main section#s01-intro p {
  line-height: 1.6;
}
@media (width <= 730px) {
  html#idx main section#s02-pics {
    padding-top: clamp(320px * 20 / 100, (100vw - 40px) * 20 / 100, 690px * 20 / 100);
    padding-bottom: clamp(320px * 20 / 100, (100vw - 40px) * 20 / 100, 690px * 20 / 100);
    overflow-x: hidden;
  }
}
@media (width > 730px) {
  html#idx main section#s02-pics {
    padding-top: 200px;
    padding-bottom: 100px;
  }
}
html#idx main section#s02-pics ul.slider .slick-slide {
  width: auto !important;
}
html#idx main section#s02-pics ul.slider img {
  height: 46px;
  width: 632px;
  margin: 0 10px;
}
html#idx main section#s02-pics ul.pics {
  padding-inline: 30px;
}
@media (width <= 730px) {
  html#idx main section#s02-pics ul.pics {
    max-width: none;
  }
}
@media (width > 730px) {
  html#idx main section#s02-pics ul.pics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(50px, 1fr));
    gap: 30px;
  }
}
@media (width <= 730px) {
  html#idx main section#s02-pics ul.pics li {
    width: 150px;
    flex: 0 0 auto;
  }
  html#idx main section#s02-pics ul.pics li + li {
    margin-left: 20px;
  }
}
html#idx main section#s02-pics ul.pics li:nth-child(odd) {
  transform: translateY(calc(1px * var(--scrpos-yc) * 0.1));
}
html#idx main section#s02-pics ul.pics li:nth-child(even) {
  transform: translateY(calc(1px * var(--scrpos-yc) * -0.1));
}
html#idx main section#s031-history, html#idx main section#s032-sauce {
  background: white;
  position: sticky;
  top: 0;
}
@media (width <= 730px) {
  html#idx main section#s031-history::after, html#idx main section#s032-sauce::after {
    content: "";
    display: block;
    width: 100%;
    aspect-ratio: 3/2;
  }
}
html#idx main section#s031-history h2, html#idx main section#s032-sauce h2 {
  font-weight: 700;
  color: white;
  padding: 10px 8px;
}
@media (width <= 730px) {
  html#idx main section#s031-history h2, html#idx main section#s032-sauce h2 {
    font-size: 160%;
  }
}
@media (width > 730px) {
  html#idx main section#s031-history h2, html#idx main section#s032-sauce h2 {
    font-size: 200%;
  }
}
html#idx main section#s031-history h2 svg:has([href="#deco01"]), html#idx main section#s032-sauce h2 svg:has([href="#deco01"]) {
  width: 48px;
  vertical-align: middle;
  position: relative;
  fill: white;
}
html#idx main section#s031-history h2 svg:has([href*="#num"]), html#idx main section#s032-sauce h2 svg:has([href*="#num"]) {
  height: 0.8em;
  vertical-align: middle;
  position: relative;
  fill: white;
  top: -2px;
  margin-left: 20px;
  margin-right: 20px;
}
@media (width <= 730px) {
  html#idx main section#s031-history h2 + div, html#idx main section#s032-sauce h2 + div {
    padding-top: 20px;
    padding-bottom: 40px;
  }
}
@media (width > 730px) {
  html#idx main section#s031-history h2 + div, html#idx main section#s032-sauce h2 + div {
    padding-block: 30px;
  }
}
html#idx main section#s031-history h2 + div div, html#idx main section#s032-sauce h2 + div div {
  background: rgba(255, 255, 255, 0.7);
}
@media (width > 730px) {
  html#idx main section#s031-history h2 + div div, html#idx main section#s032-sauce h2 + div div {
    width: 30em;
    padding: 60px;
  }
}
html#idx main section#s031-history h2 + div div h3, html#idx main section#s032-sauce h2 + div div h3 {
  text-align: center;
  margin-bottom: 50px;
  font-weight: 700;
}
@media (width <= 730px) {
  html#idx main section#s031-history h2 + div div h3, html#idx main section#s032-sauce h2 + div div h3 {
    font-size: 160%;
  }
}
@media (width > 730px) {
  html#idx main section#s031-history h2 + div div h3, html#idx main section#s032-sauce h2 + div div h3 {
    font-size: 200%;
  }
}
html#idx main section#s031-history h2 + div div h3 svg:has([href*="#num"]), html#idx main section#s032-sauce h2 + div div h3 svg:has([href*="#num"]) {
  height: 0.8em;
  vertical-align: middle;
  position: relative;
  fill: #5f0b02;
  margin-bottom: 15px;
}
html#idx main section#s031-history h2 + div div h3 img, html#idx main section#s032-sauce h2 + div div h3 img {
  margin-bottom: 15px;
}
html#idx main section#s031-history h2 + div div h3 small, html#idx main section#s032-sauce h2 + div div h3 small {
  font-size: 1.1rem;
}
html#idx main section#s031-history h2 + div div h3 + p, html#idx main section#s032-sauce h2 + div div h3 + p {
  line-height: 1.8;
  margin-bottom: 70px;
}
@media (width > 730px) {
  html#idx main section#s031-history {
    background: url(/wp-content/themes/custom/img/1311.jpg) no-repeat center/cover;
  }
}
html#idx main section#s031-history::after {
  background: url(/wp-content/themes/custom/img/1311.jpg) no-repeat center/cover;
}
html#idx main section#s031-history h2 {
  background: #ff0000;
}
@media (width > 730px) {
  html#idx main section#s032-sauce {
    background: url(/wp-content/themes/custom/img/1321.jpg) no-repeat center/cover;
  }
}
html#idx main section#s032-sauce::after {
  background: url(/wp-content/themes/custom/img/1321.jpg) no-repeat center/cover;
}
html#idx main section#s032-sauce h2 {
  background: #5f0b02;
}
html#idx main section#s04-store {
  position: relative;
  background: url(/wp-content/themes/custom/img/1491.jpg) repeat center/2000px;
  padding-block: 50px;
  overflow: hidden;
}
html#idx main section#s04-store .inr3 {
  position: relative;
}
html#idx main section#s04-store .inr3::before {
  content: "";
  display: block;
  position: absolute;
  box-sizing: border-box;
  top: 0;
  left: -120px;
  width: clamp(660px * 16.8 / 100, (100vw - 70px) * 16.8 / 100, 1100px * 16.8 / 100);
  aspect-ratio: 185/749;
  background: url(/wp-content/themes/custom/img/1492.svg) no-repeat top center/contain;
  opacity: 0.7;
  z-index: -1;
  transform: translateY(calc(1px * var(--scrpos-yc) * -1));
}
html#idx main section#s04-store h2 {
  text-align: center;
  font-weight: 700;
  margin-bottom: 2rem;
}
@media (width <= 730px) {
  html#idx main section#s04-store h2 {
    font-size: 160%;
  }
}
@media (width > 730px) {
  html#idx main section#s04-store h2 {
    font-size: 200%;
  }
}
html#idx main section#s04-store h2 svg:has([href="#deco01"]) {
  vertical-align: bottom;
  position: relative;
  top: 5px;
  fill: #5f0b02;
}
@media (width <= 730px) {
  html#idx main section#s04-store h2 svg:has([href="#deco01"]) {
    width: 36px;
  }
}
@media (width > 730px) {
  html#idx main section#s04-store h2 svg:has([href="#deco01"]) {
    width: 48px;
  }
}
html#idx main section#s04-store h2 + p {
  line-height: 1.8;
  text-align: center;
  margin-bottom: 3em;
}
html#idx main section#s04-store figure {
  text-align: center;
  margin-bottom: 50px;
}
@media (width > 730px) {
  html#idx main section#s04-store figure img {
    max-width: 500px;
  }
}
html#idx main section#s05-tikka {
  position: relative;
  background: white;
  padding: 50px 0 100px;
}
html#idx main section#s05-tikka h2 {
  text-align: center;
  font-weight: 700;
  margin-bottom: 1.6rem;
}
@media (width <= 730px) {
  html#idx main section#s05-tikka h2 {
    font-size: 160%;
  }
}
@media (width > 730px) {
  html#idx main section#s05-tikka h2 {
    font-size: 200%;
  }
}
html#idx main section#s05-tikka h2 svg:has([href="#deco01"]) {
  vertical-align: bottom;
  position: relative;
  top: 5px;
  fill: #5f0b02;
}
@media (width <= 730px) {
  html#idx main section#s05-tikka h2 svg:has([href="#deco01"]) {
    width: 36px;
  }
}
@media (width > 730px) {
  html#idx main section#s05-tikka h2 svg:has([href="#deco01"]) {
    width: 48px;
  }
}
html#idx main section#s05-tikka h2 + p {
  line-height: 1.8;
  text-align: center;
  margin-bottom: 3em;
}
html#idx main section#s05-tikka h2 + p + div {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  padding-bottom: 5em;
}
html#idx main section#s05-tikka h2 + p + div figure figcaption {
  display: block;
  border-left: 2px solid #5f0b02;
  padding: 4em 0 0 1em;
  margin-left: 2em;
  margin-top: -3em;
  position: relative;
}
html#idx main section#s05-tikka h2 + p + div figure figcaption h3 {
  font-weight: 700;
  margin-bottom: 0.7rem;
}
@media (width <= 730px) {
  html#idx main section#s05-tikka h2 + p + div figure figcaption h3 {
    font-size: 140%;
  }
}
@media (width > 730px) {
  html#idx main section#s05-tikka h2 + p + div figure figcaption h3 {
    font-size: 170%;
  }
}
html#idx main section#s05-tikka h2 + p + div figure figcaption p {
  line-height: 1.8;
}

html#history .hdr-ctn::before {
  background: url(/wp-content/themes/custom/img/02/01.jpg) repeat top calc(-100px + 1px * var(--scrpos-y) * -0.2) center/100%;
}
html#history main section.pgtitle h2 + p {
  text-align: center;
  line-height: 2;
}
@media (width > 730px) {
  html#history main section.pgtitle h2 + p img {
    margin-bottom: 20px;
  }
}
@media (width <= 730px) {
  html#history main section#s011-kebab {
    padding-top: 50px;
  }
}
@media (width > 730px) {
  html#history main section#s011-kebab {
    padding-top: 100px;
  }
}
html#history main section#s011-kebab > div {
  position: relative;
}
@media (width > 730px) {
  html#history main section#s011-kebab > div {
    display: grid;
    grid-template-columns: 1fr auto 0.8fr;
    grid-template-rows: 1fr;
    gap: 0px 0px;
    grid-template-areas: "turkiye atc pic";
    align-items: end;
  }
  html#history main section#s011-kebab > div .turkiye {
    grid-area: turkiye;
  }
  html#history main section#s011-kebab > div > div {
    grid-area: atc;
  }
  html#history main section#s011-kebab > div .pic {
    grid-area: pic;
  }
}
@media (width > 730px) {
  html#history main section#s011-kebab > div .turkiye {
    position: relative;
    width: 100%;
    height: 100%;
    transform: translateY(calc(1px * var(--scrpos-yc) * -0.1));
  }
}
@media (width > 730px) {
  html#history main section#s011-kebab > div .turkiye img {
    position: absolute;
    width: 100%;
    height: 100%;
    -o-object-position: right center;
       object-position: right center;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
@media (width <= 730px) {
  html#history main section#s011-kebab > div > div {
    margin-top: 30px;
    padding: 0 100px 0 20px;
  }
}
@media (width > 730px) {
  html#history main section#s011-kebab > div > div {
    max-width: 26em;
    margin: 0 auto;
    padding-left: 40px;
  }
}
html#history main section#s011-kebab > div > div * + * {
  margin-top: 1em;
}
html#history main section#s011-kebab > div > div h3 {
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  font-size: 200%;
}
html#history main section#s011-kebab > div > div p {
  line-height: 2;
}
@media (width <= 730px) {
  html#history main section#s011-kebab > div .pic {
    transform: translateY(calc(1px * var(--scrpos-yc) * -0.3));
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    width: 100px;
  }
}
@media (width > 730px) {
  html#history main section#s011-kebab > div .pic {
    transform: translateY(calc(1px * var(--scrpos-yc) * 0.3));
    position: relative;
    width: 100%;
    max-width: unset;
    margin-left: 0;
    max-width: unset;
    height: 100%;
  }
}
@media (width <= 730px) {
  html#history main section#s011-kebab > div .pic img {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    max-width: 500px;
    aspect-ratio: 715/1621;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: left bottom;
       object-position: left bottom;
  }
}
@media (width > 730px) {
  html#history main section#s011-kebab > div .pic img {
    position: absolute;
    bottom: 0;
    left: 30px;
    width: calc(100% - 30px);
    max-width: 300px;
    min-height: 680px;
    aspect-ratio: 715/1621;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: left bottom;
       object-position: left bottom;
  }
}
html#history main section#s011-kebab > div + p {
  font-weight: 700;
  line-height: 1.8;
  font-size: 120%;
  color: #a20d23;
}
@media (width <= 730px) {
  html#history main section#s011-kebab > div + p {
    margin-top: 30px;
    padding: 0 100px 0 20px;
  }
}
@media (width > 730px) {
  html#history main section#s011-kebab > div + p {
    margin-top: 5em;
    text-align: center;
  }
}
html#history main > figure {
  margin: 50px 0;
  text-align: center;
  background: url(/wp-content/themes/custom/img/02/11.png) no-repeat bottom calc(clamp(660px * 8 / 100, (100vw - 70px) * 8 / 100, 1100px * 8 / 100) * -1) center/clamp(660px * 100 / 100, (100vw - 70px) * 100 / 100, 1100px * 100 / 100), url(/wp-content/themes/custom/img/02/08.jpg) repeat-y top calc(1px * var(--scrpos-y) * 0.2) center/cover;
}
@media (width <= 730px) {
  html#history main > figure {
    padding: 60px 0 120px;
  }
}
@media (width > 730px) {
  html#history main > figure {
    padding: 200px 0 260px;
  }
}
html#history main section#s012-sand {
  padding-top: 100px;
}
@media (width > 730px) {
  html#history main section#s012-sand .pc-row {
    margin-bottom: -100px;
  }
}
@media (width <= 730px) {
  html#history main section#s012-sand .pc-row figure {
    margin-inline: 50px;
    margin-bottom: 60px;
  }
}
@media (width > 730px) {
  html#history main section#s012-sand .pc-row figure {
    flex: 1 1 0;
    transform: translateY(calc(1px * var(--scrpos-yc) * -0.1));
  }
}
@media (width <= 730px) {
  html#history main section#s012-sand .pc-row .row {
    margin-bottom: 40px;
  }
}
@media (width > 730px) {
  html#history main section#s012-sand .pc-row .row {
    margin-left: 20px;
  }
}
html#history main section#s012-sand .pc-row .row h3 {
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  font-size: 200%;
}
@media (width <= 730px) {
  html#history main section#s012-sand .pc-row .row h3 {
    margin-right: 20px;
  }
}
@media (width > 730px) {
  html#history main section#s012-sand .pc-row .row h3 {
    writing-mode: vertical-rl;
  }
}
html#history main section#s012-sand .pc-row .row p {
  line-height: 2;
}
@media (width > 730px) {
  html#history main section#s012-sand .pc-row .row p {
    margin-left: 20px;
    flex: 0 1 auto;
    min-width: 25em;
  }
}
@media (width > 730px) {
  html#history main section#s012-sand > div > figure {
    transform: translateY(calc(1px * var(--scrpos-yc) * -0.1));
  }
}
html#history main section#s012-sand > div + p {
  font-weight: 700;
  text-align: center;
  line-height: 1.8;
  font-size: 120%;
  color: #a20d23;
}
@media (width <= 730px) {
  html#history main section#s012-sand > div + p {
    padding: 0 20px;
  }
}
@media (width > 730px) {
  html#history main section#s012-sand > div + p {
    margin-top: 5em;
  }
}

html#sauce .hdr-ctn::before {
  background: url(/wp-content/themes/custom/img/03/01.jpg) repeat top calc(-100px + 1px * var(--scrpos-y) * -0.2) center/100%;
}
@media (width <= 730px) {
  html#sauce section.pgtitle h2 {
    margin-bottom: 20px;
  }
}
html#sauce section.pgtitle h2 + p {
  text-align: center;
  line-height: 2;
}
@media (width > 730px) {
  html#sauce section.pgtitle h2 + p img {
    margin-bottom: 20px;
  }
}
html#sauce main section#s011 {
  position: relative;
}
@media (width <= 730px) {
  html#sauce main section#s011 {
    padding-bottom: max(60vw, 216px);
    background: url(/wp-content/themes/custom/img/03/02_m.png) no-repeat bottom center/100%;
  }
}
@media (width > 730px) {
  html#sauce main section#s011 {
    padding: 60px 0;
  }
  html#sauce main section#s011::before {
    content: "";
    display: block;
    position: absolute;
    box-sizing: border-box;
    top: 0;
    bottom: 0;
    left: 0;
    right: 40%;
    background: url(/wp-content/themes/custom/img/03/02.png) no-repeat top right/cover;
  }
}
@media (width > 730px) {
  html#sauce main section#s011 .inr > div:nth-of-type(1) {
    margin-left: 25vw;
  }
  html#sauce main section#s011 .inr > div:nth-of-type(2) {
    margin-left: 33vw;
    align-items: flex-end;
  }
}
html#sauce main section#s011 .inr > div h3 {
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  font-size: 200%;
}
@media (width <= 730px) {
  html#sauce main section#s011 .inr > div h3 {
    text-align: center;
    margin-bottom: 1em;
  }
}
@media (width > 730px) {
  html#sauce main section#s011 .inr > div h3 {
    writing-mode: vertical-rl;
    flex: 0 0 auto;
    margin-right: 30px;
  }
}
html#sauce main section#s011 .inr > div > div p {
  line-height: 2;
}
html#sauce main section#s011 .inr > div > div figure {
  max-width: 400px;
}
html#sauce main section#s011 .inr > div > div > * + * {
  margin-top: 30px;
}
html#sauce main section#s011 .inr > div:nth-of-type(2) {
  transform: translateY(calc(1px * var(--scrpos-yc) * 0.1));
}
@media (width <= 730px) {
  html#sauce main section#s011 .inr > div:nth-of-type(2) > div {
    display: contents;
  }
  html#sauce main section#s011 .inr > div:nth-of-type(2) h3 {
    order: 2;
    margin-bottom: 0;
  }
  html#sauce main section#s011 .inr > div:nth-of-type(2) figure {
    order: 1;
    margin-left: auto;
    margin-right: 0;
    margin-bottom: 30px;
  }
  html#sauce main section#s011 .inr > div:nth-of-type(2) p {
    order: 3;
  }
}
html#sauce main section#s011 .inr > figure {
  position: relative;
  z-index: 2;
  transform: translateY(calc(1px * var(--scrpos-yc) * 0.3));
}
@media (width <= 730px) {
  html#sauce main section#s011 .inr > figure {
    margin-top: -20vw;
    margin-bottom: -20vw;
  }
}
@media (width > 730px) {
  html#sauce main section#s011 .inr > figure {
    margin-top: -100px;
    margin-bottom: -100px;
    margin-left: 20vw;
    max-width: 400px;
  }
}
html#sauce main > figure {
  margin: 0 0 50px 0;
  text-align: center;
  background: url(/wp-content/themes/custom/img/02/11.png) no-repeat bottom calc(clamp(660px * 8 / 100, (100vw - 70px) * 8 / 100, 1100px * 8 / 100) * -1) center/clamp(660px * 100 / 100, (100vw - 70px) * 100 / 100, 1100px * 100 / 100), url(/wp-content/themes/custom/img/03/04.jpg) repeat-y top calc(1px * var(--scrpos-y) * -0.2) center/cover;
}
@media (width <= 730px) {
  html#sauce main > figure {
    padding: 60px 0 120px;
  }
}
@media (width > 730px) {
  html#sauce main > figure {
    padding: 200px 0 260px;
  }
}
html#sauce main section#s012 {
  overflow: hidden;
}
@media (width > 730px) {
  html#sauce main section#s012 .pc-row > figure {
    margin-right: 50px;
  }
}
html#sauce main section#s012 .pc-row h3 {
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  margin-bottom: 1em;
}
@media (width <= 730px) {
  html#sauce main section#s012 .pc-row h3 {
    font-size: 170%;
    text-align: center;
    margin-top: 30px;
  }
}
@media (width > 730px) {
  html#sauce main section#s012 .pc-row h3 {
    font-size: 200%;
  }
}
html#sauce main section#s012 .pc-row p {
  line-height: 2;
}
html#sauce main section#s012 .pc-row p + figure {
  position: relative;
  transform: translateY(calc(1px * var(--scrpos-yc) * 0.3));
}
@media (width <= 730px) {
  html#sauce main section#s012 .pc-row p + figure {
    width: 120%;
    max-width: none;
    right: -10px;
    top: -80px;
  }
}
@media (width > 730px) {
  html#sauce main section#s012 .pc-row p + figure {
    right: -150px;
    top: -80px;
  }
}/*# sourceMappingURL=site_t.css.map */