@charset "UTF-8";
.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;
}

/*-----------------------------------------------------------------*/
/*リセット*/
/*-----------------------------------------------------------------*/
@layer reset {
  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, font, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td {
    border: 0;
    font-family: inherit;
    font-size: 100%;
    font-weight: inherit;
    margin: 0;
    outline: 0;
    padding: 0;
    vertical-align: baseline;
  }
  :focus {
    /* remember to define focus styles! */
    outline: 0;
  }
  body {
    background: #fff;
    line-height: 1;
    position: relative;
  }
  ol, ul {
    list-style: none;
  }
  table {
    /* tables still need 'cellspacing="0"' in the markup */
    border-collapse: collapse;
    border-spacing: 0;
  }
  caption, th, td {
    font-weight: normal;
    text-align: left;
  }
  blockquote:before, blockquote:after, q:before, q:after {
    content: "";
  }
  blockquote, q {
    quotes: "" "";
  }
  a img {
    border: 0;
  }
  article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
    display: block;
  }
  hr {
    display: none;
  }
  main {
    display: block;
  }
  figure {
    margin: 0;
  }
  figure img:not([width]):not([height]) {
    width: 100%;
  }
  h1, h2, h3, h4, h5, h6 {
    font-family: "source-han-sans-japanese", sans-serif;
    font-weight: 500;
  }
  strong {
    font-weight: 700;
  }
  strong small {
    font-family: "source-han-sans-japanese", sans-serif;
    font-weight: 500;
  }
  a {
    color: inherit;
  }
  a[href^=tel] {
    color: inherit;
    text-decoration: none;
  }
  img {
    border-style: none;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
  }
  .only-img {
    font-size: 0px;
    line-height: 0px;
  }
  svg.symbols {
    display: none;
  }
  address {
    font-style: normal;
  }
  nav {
    display: block;
  }
  small {
    font-size: 80%;
  }
  .cf:after {
    display: block;
    clear: both;
    content: "";
  }
  .css-att {
    display: none;
  }
  html[class] {
    margin-top: 0 !important;
  }
  #wpadminbar {
    display: none;
  }
}
/*-----------------------------------------------------------------*/
/*サイト基本規則*/
/*-----------------------------------------------------------------*/
@layer siterule {
  body {
    font-family: "source-han-sans-japanese", sans-serif;
    font-weight: 500;
    color: #5f0b02;
  }
  @media (width <= 730px) {
    img {
      max-width: 100%;
    }
  }
  img:not([width]):not([height]) {
    width: auto;
    height: auto;
    max-width: 100%;
  }
  img.noimg {
    background: url(/wp-content/themes/custom/img/noimg.jpg) no-repeat center /cover rgba(0, 0, 0, 0.1);
    border: 0;
  }
  span[style*=background-image] {
    display: inline-block;
    width: 100%;
    padding-top: 75%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }
  span.vimg[style*=background-image],
  .vimgs span[style*=background-image] {
    padding-top: 133.3333333333%;
  }
  a {
    text-decoration: none;
    transition: all 0.3s ease-out;
  }
  a:hover, a:hover:before {
    text-decoration: underline;
  }
  label {
    cursor: pointer;
  }
  .slick {
    position: relative;
    opacity: 0;
    transition: opacity 0.75s ease;
  }
  .slick.slick-initialized {
    opacity: 1;
  }
  .slick, .slick * {
    max-width: none !important;
  }
  .slick-slide img {
    position: relative;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .slick-arrow::before {
    color: #222 !important;
  }
}
/*-----------------------------------------------------------------*/
/*サイト個別規則*/
/*-----------------------------------------------------------------*/
@media (width <= 730px) {
  .hdr-ctn {
    padding-top: 20px;
  }
}
@media (width > 730px) {
  .hdr-ctn {
    padding-top: 80px;
  }
}

header {
  position: relative;
  z-index: 2;
}
@media (width <= 730px) {
  header {
    padding-top: 20px;
  }
}
@media (width > 730px) {
  header {
    font-size: 120%;
  }
}
header .pc-row {
  justify-content: space-between !important;
}
header h1 {
  width: 128px;
  flex: 0 0 auto !important;
  position: relative;
  z-index: 96;
}
@media (width <= 730px) {
  header h1 {
    max-width: 20vw;
  }
}

@media (width <= 730px) {
  nav.topmenu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 180px 15px 20px;
    max-height: 100dvh;
    transform: translateY(-130vh);
    background: rgba(224, 224, 225, 0.7);
    transition: all 0.8s;
    z-index: 95;
    border-bottom: 1px solid #5f0b02;
  }
  nav.topmenu > ul > li {
    font-size: 140%;
    margin-bottom: 10px;
  }
  nav.topmenu > ul > li > a {
    display: block;
    box-sizing: border-box;
    border-radius: 999px;
    background: #5f0b02;
    color: white;
    padding: 10px 30px;
  }
  nav.topmenu > ul > li > a svg {
    width: 1em;
    height: 1em;
    fill: white;
  }
  nav.topmenu > ul > li > a:hover {
    background: #a20d23;
    text-decoration: none;
  }
}
@media (width > 730px) {
  nav.topmenu {
    flex: 0 0 auto !important;
  }
  nav.topmenu ul {
    writing-mode: vertical-lr;
    font-weight: 700;
  }
  nav.topmenu ul li + li {
    margin-left: 1em;
  }
  nav.topmenu ul li a {
    display: block;
    position: relative;
    height: -moz-max-content;
    height: max-content;
    padding: 3px;
  }
  nav.topmenu ul li a::before {
    content: "";
    display: block;
    position: absolute;
    box-sizing: border-box;
    inset: 0;
    background: #f1c725;
    transform-origin: bottom left;
    transform: scaleY(0);
    z-index: -1;
    transition: transform 0.3s;
  }
  nav.topmenu ul li a:hover {
    text-decoration: none;
  }
  nav.topmenu ul li a:hover::before {
    transform-origin: top left;
    transform: scaleY(1);
  }
  nav.topmenu ul li a svg {
    width: 1em;
    height: 1em;
    fill: #5f0b02;
  }
}

/* メニュートグル ここから */
.menu-toggle {
  position: fixed;
  z-index: 98;
  background: transparent;
  border-width: 0;
  border-style: solid;
  border-color: transparent;
  padding: 0;
  box-sizing: content-box;
  border-radius: 999px;
  font-size: 0px;
  transition: transform 0.4s, border-radius 0.4s, filter 0.4s, opacity 0.4s;
  transform-origin: top right;
  top: 45px;
  right: 15px;
}
.menu-toggle button {
  width: 50px;
  height: 30px;
  background: none;
  border: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  cursor: pointer;
}
.menu-toggle button, .menu-toggle button span {
  display: inline-block;
  transition: all 0.4s;
  box-sizing: border-box;
}
.menu-toggle button span {
  position: absolute;
  height: 3px;
  background: #5f0b02;
  border-radius: 0;
  width: 100%;
  left: 0;
}
.menu-toggle button span:nth-of-type(1) {
  top: 0;
  animation: menu-bar01 0.75s forwards;
}
.menu-toggle button span:nth-of-type(2) {
  top: calc(50% - 3px / 2);
  transition: all 0.25s 0.25s;
}
.menu-toggle button span:nth-of-type(3) {
  bottom: 0;
  animation: menu-bar03 0.75s forwards;
}
.menu-toggle > span {
  display: none;
  letter-spacing: 0.3ex;
  position: absolute;
  top: calc(100% + 0 - 10px);
  left: calc(-1 * 0);
  right: calc(-1 * 0);
  text-align: center;
  transition: all 0.6s;
  opacity: 1;
  color: white;
  font-size: 0.95rem;
  max-width: none;
}

@keyframes menu-bar01 {
  0% {
    transform: translateY(14px) rotate(45deg);
  }
  50% {
    transform: translateY(14px) rotate(0);
  }
  100% {
    transform: translateY(0) rotate(0);
  }
}
@keyframes active-menu-bar01 {
  0% {
    transform: translateY(0) rotate(0);
  }
  50% {
    transform: translateY(14px) rotate(0);
  }
  100% {
    transform: translateY(14px) rotate(45deg);
  }
}
@keyframes menu-bar03 {
  0% {
    transform: translateY(-14px) rotate(-45deg);
  }
  50% {
    transform: translateY(-14px) rotate(0);
  }
  100% {
    transform: translateY(0) rotate(0);
  }
}
@keyframes active-menu-bar03 {
  0% {
    transform: translateY(0) rotate(0);
  }
  50% {
    transform: translateY(calc(-14px + 1.5px)) rotate(0);
  }
  100% {
    transform: translateY(calc(-14px + 1.5px)) rotate(-45deg);
  }
}
body.menu-active .topmenu {
  transform: translateY(0vh);
  overscroll-behavior-y: contain;
  opacity: 1;
}
@media (width > 730px) {
  body.menu-active .menu-toggle {
    opacity: 0;
  }
}
body.menu-active .menu-toggle button span:nth-of-type(1) {
  animation: active-menu-bar01 0.75s forwards;
}
body.menu-active .menu-toggle button span:nth-of-type(2) {
  opacity: 0;
}
body.menu-active .menu-toggle button span:nth-of-type(3) {
  animation: active-menu-bar03 0.75s forwards;
}

/* メニュートグル ここまで */
.morebtn a:hover {
  opacity: 0.5;
}

html.sec .hdr-ctn {
  overflow: hidden;
  position: relative;
  border-bottom: 3px solid #ccba7e;
  margin-bottom: 1px;
}
@media (width <= 730px) {
  html.sec .hdr-ctn {
    padding-bottom: clamp(320px * 10 / 100, (100vw - 40px) * 10 / 100, 690px * 10 / 100);
  }
}
@media (width > 730px) {
  html.sec .hdr-ctn {
    padding-bottom: 100px;
  }
}
html.sec .hdr-ctn::before {
  content: "";
  display: block;
  position: absolute;
  box-sizing: border-box;
  border-radius: 999px 0 0 999px;
}
@media (width <= 730px) {
  html.sec .hdr-ctn::before {
    top: 30px;
    bottom: clamp(320px * 10 / 100, (100vw - 40px) * 10 / 100, 690px * 10 / 100);
    right: -50px;
    left: 150px;
    border: 4px solid white;
    box-shadow: 0px 0px 0px 2px #ccba7e;
  }
}
@media (width > 730px) {
  html.sec .hdr-ctn::before {
    top: 60px;
    bottom: 70px;
    right: -50px;
    left: calc(50% - clamp(660px * 50 / 100, (100vw - 70px) * 50 / 100, 1100px * 50 / 100) + 220px);
    border: 7px solid white;
    box-shadow: 0px 0px 0px 3px #ccba7e;
  }
}
html.sec .hdr-ctn header {
  position: relative;
}
html.sec .hdr-ctn header .topmenu {
  color: white;
}
html.sec .hdr-ctn header .topmenu svg {
  fill: white;
  transition: all 0.3s;
}
@media (width > 730px) {
  html.sec .hdr-ctn header .topmenu a span {
    filter: drop-shadow(0px 0px 4px #000000);
    transition: all 0.3s;
  }
  html.sec .hdr-ctn header .topmenu a:hover {
    color: #5f0b02;
  }
  html.sec .hdr-ctn header .topmenu a:hover svg {
    fill: #5f0b02;
  }
  html.sec .hdr-ctn header .topmenu a:hover span {
    filter: none;
  }
}
html.sec .hdr-ctn .pgtitle-en {
  position: absolute;
  transform: translateY(calc(1px * var(--scrpos-y) * 0.1));
}
@media (width <= 730px) {
  html.sec .hdr-ctn .pgtitle-en {
    left: 180px;
    bottom: calc(clamp(320px * 13 / 100, (100vw - 40px) * 13 / 100, 690px * 13 / 100) - 50px);
    right: 30px;
    height: 70px;
  }
}
@media (width > 730px) {
  html.sec .hdr-ctn .pgtitle-en {
    left: calc(50% - clamp(660px * 50 / 100, (100vw - 70px) * 50 / 100, 1100px * 50 / 100) + 170px);
    top: 30%;
    width: 300px;
  }
}
html.sec main {
  background: url(/wp-content/themes/custom/img/02/03.svg) no-repeat top 30px center/min(100%, clamp(660px * 100 / 100, (100vw - 70px) * 100 / 100, 1100px * 100 / 100)), url(/wp-content/themes/custom/img/02/10.png) no-repeat bottom -30px center/100%, url(/wp-content/themes/custom/img/02/05.jpg) repeat center/500px;
  border-top: 3px solid #ff0000;
  padding-top: 50px;
  padding-bottom: max(30vw, 72px);
}
html.sec main section.pgtitle h2 {
  text-align: center;
  margin-bottom: 3rem;
  font-weight: 700;
}
@media (width <= 730px) {
  html.sec main section.pgtitle h2 {
    font-size: 160%;
  }
}
@media (width > 730px) {
  html.sec main section.pgtitle h2 {
    font-size: 200%;
  }
}
html.sec main section.pgtitle h2 small {
  font-family: "source-han-sans-japanese", sans-serif;
  font-weight: 500;
  font-size: 1rem;
}
html.sec main section.pgtitle h2 svg:has([href="#deco01"]) {
  vertical-align: bottom;
  position: relative;
  top: 15px;
  fill: #5f0b02;
}
@media (width <= 730px) {
  html.sec main section.pgtitle h2 svg:has([href="#deco01"]) {
    width: 36px;
  }
}
@media (width > 730px) {
  html.sec main section.pgtitle h2 svg:has([href="#deco01"]) {
    width: 48px;
  }
}

footer {
  position: relative;
  background: url(/wp-content/themes/custom/img/9191.jpg) repeat center/2000px;
  padding-top: 50px;
  color: white;
}
footer .pgtop {
  position: fixed;
  z-index: 5;
  transition: all 1s;
}
@media (width <= 730px) {
  footer .pgtop {
    right: 15px;
    bottom: clamp(320px * 22 / 100, (100vw - 40px) * 22 / 100, 690px * 22 / 100);
    width: 60px;
    transform: translateY(clamp(320px * 38 / 100, (100vw - 40px) * 38 / 100, 690px * 38 / 100));
  }
}
@media (width > 730px) {
  footer .pgtop {
    right: 20px;
    bottom: 20px;
    width: 80px;
    transform: translateY(130px);
  }
}
footer .pgtop a {
  display: block;
  transform: translateY(0);
  background: rgba(95, 11, 2, 0.7);
  color: white;
  min-width: -moz-max-content;
  min-width: max-content;
  min-height: -moz-max-content;
  min-height: max-content;
  font-size: 90%;
  text-align: center;
  padding: 15px;
  border-radius: 999px;
  border: 1px solid white;
  aspect-ratio: 1/1;
}
footer .pgtop a:hover {
  transform: translateY(-10px);
  text-decoration: none;
  background: white;
  color: #5f0b02;
}
footer section.ftr-atc .pc-row > * {
  flex: 0 0 auto !important;
}
footer section.ftr-atc .pc-row .row {
  align-items: center;
}
@media (width <= 730px) {
  footer section.ftr-atc .pc-row .row {
    justify-content: center;
  }
}
@media (width > 730px) {
  footer section.ftr-atc .pc-row .row {
    justify-content: flex-start;
  }
}
footer section.ftr-atc .pc-row .row > * {
  flex: 0 0 auto !important;
}
footer section.ftr-atc .pc-row .row h2 {
  margin-right: 20px;
}
footer section.ftr-atc .pc-row .row address {
  line-height: 1.3;
}
footer section.ftr-atc .pc-row .row address strong {
  font-size: 130%;
  display: inline-block;
  margin-top: 5px;
}
footer section.ftr-atc .pc-row nav.ftrmenu {
  line-height: 1.8;
}
footer section.ftr-atc .pc-row nav.ftrmenu svg {
  width: 1em;
  height: 1em;
  fill: white;
}
footer .rights {
  margin-top: 50px;
  text-align: center;
  background: rgba(0, 0, 0, 0.7);
  line-height: 2;
  padding-block: 5px;
}
@media (width <= 730px) {
  footer .rights {
    padding-bottom: clamp(320px * 20 / 100, (100vw - 40px) * 20 / 100, 690px * 20 / 100);
  }
}
footer .m-btmnav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9;
  transform: translateY(clamp(320px * 25 / 100, (100vw - 40px) * 25 / 100, 690px * 25 / 100));
  transition: all 1s;
}
footer .m-btmnav > * {
  display: block;
  box-sizing: border-box;
  height: 100%;
}

body.hdr-scrolling .pgtop {
  transform: translateY(0);
}
body.hdr-scrolling .m-btmnav {
  transform: translateY(0);
}/*# sourceMappingURL=site.css.map */