@charset "UTF-8";
.normal {
  font-family: "Helvetica", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", sans-serif;
  font-weight: 300;
  font-style: normal;
}

.bold {
  font-weight: 600;
}

:root {
  --textcolor: black;
  --bgcolor: transparent;
}
@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: 1200px;
    --maxwn: 1200;
    --pdg: 60px;
    --pdgn: 60;
    --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: 1330px;
    --maxwn: 1330;
    --pdg: 60px;
    --pdgn: 60;
  }
}
@media (width > 730px) {
  .inr1 {
    --maxw: 1250px;
    --maxwn: 1250;
    --pdg: 60px;
    --pdgn: 60;
  }
}
@media (width > 730px) {
  .inr2 {
    --maxw: 1040px;
    --maxwn: 1040;
    --pdg: 60px;
    --pdgn: 60;
  }
}
@media (width > 730px) {
  .inr3 {
    --maxw: 840px;
    --maxwn: 840;
    --pdg: 60px;
    --pdgn: 60;
  }
}
@media (width > 730px) {
  .inr4 {
    --maxw: 700px;
    --maxwn: 700;
    --pdg: 60px;
    --pdgn: 60;
  }
}
[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;
  }
}

.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 > *, .pc-rowss > * > * {
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
    align-content: center;
  }
  .pc-row > *, .pc-rows > * > *, .pc-rowss > * > * > * {
    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;
  }
  :where(.m-row, .m-rows > *, .m-rowss > * > *) {
    display: flex;
    flex-direction: column !important;
    align-items: stretch !important;
  }
  :where(.m-row > *, .m-rows > * > *, .m-rowss > * > * > *) {
    flex: 0 0 auto !important;
  }
}
@media (width <= 730px) {
  .only-pc {
    display: none;
  }
  .m-row, .m-rows > *, .m-rowss > * > * {
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
    align-content: center;
  }
  .m-row > *, .m-rows > * > *, .m-rowss > * > * > * {
    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;
  }
  :where(.pc-row, .pc-rows > *, .pc-rowss > * > *) {
    display: flex;
    flex-direction: column !important;
    align-items: stretch !important;
  }
  :where(.pc-row > *, .pc-rows > * > *, .pc-rowss > * > * > *) {
    flex: 0 0 auto !important;
  }
}
.fit {
  flex: 0 0 auto !important;
}

.btns {
  display: block;
  text-align: center;
  position: relative;
}
.btns > *:not(.wpcf7-spinner) {
  all: unset;
  display: inline-block;
  position: relative;
  line-height: 1;
  letter-spacing: 0.1em;
  color: var(--textcolor);
  border: 1px solid var(--textcolor);
  margin: 5px;
  text-align: center;
  border-radius: 10px;
  transition: all 0.4s;
  background: transparent;
}
@media (width <= 730px) {
  .btns > *:not(.wpcf7-spinner) {
    padding: 0.5em 3em;
  }
}
@media (width > 730px) {
  .btns > *:not(.wpcf7-spinner) {
    padding: 0.5em 3em;
    min-width: 13em;
  }
}
.btns > *:not(.wpcf7-spinner):hover {
  cursor: pointer;
  text-decoration: none;
  background: #131313;
  color: white;
}
.btns > *:has(input) {
  padding: 0 !important;
}
.btns > *:has(input) input {
  all: unset;
}
@media (width <= 730px) {
  .btns > *:has(input) input {
    padding: 1em 3em 1em 2em;
  }
}
@media (width > 730px) {
  .btns > *:has(input) input {
    padding: 1.5em 5em 1.5em 3em;
  }
}

.morebtn a {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding-bottom: 0.6em;
  border-bottom: 1px solid var(--textcolor);
  font-weight: 400;
}
.morebtn a:hover {
  text-decoration: none;
}
.morebtn a i {
  flex: 0 0 auto;
}
.morebtn a strong {
  font-weight: 400 !important;
}

@keyframes flowlr {
  0% {
    opacity: 0;
    transform: translateX(-30%);
  }
  20% {
    opacity: 1;
    transform: translateX(-10%);
  }
  40% {
    opacity: 1;
    transform: translateX(10%);
  }
  60% {
    opacity: 0;
    transform: translateX(30%);
  }
}
/*-----------------------------------------------------------------*/
/*リセット*/
/*-----------------------------------------------------------------*/
@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: "Helvetica", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", sans-serif;
    font-weight: 300;
    font-style: normal;
  }
  strong {
    font-weight: 600;
  }
  strong small {
    font-family: "Helvetica", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", sans-serif;
    font-weight: 300;
    font-style: normal;
  }
  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;
  }
  .grecaptcha-badge {
    width: 0 !important;
    height: 0 !important;
  }
}
/*-----------------------------------------------------------------*/
/*サイト基本規則*/
/*-----------------------------------------------------------------*/
@layer siterule {
  :where(*) {
    color: var(--textcolor);
    letter-spacing: 0.2ex;
  }
  svg path[stroke-width] {
    stroke: var(--textcolor);
  }
  svg path:not([stroke-width]) {
    fill: var(--textcolor);
  }
  @media (width <= 730px) {
    html {
      width: 100%;
      overflow-x: hidden;
    }
  }
  body {
    font-family: "Helvetica", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", sans-serif;
    font-weight: 300;
    font-style: normal;
    --textcolor: #131313;
  }
  @media (width <= 730px) {
    img {
      max-width: 100%;
    }
  }
  :is(img, svg):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;
  }
  :has(> .slick) {
    max-width: max(100vw, 360px);
    overflow: hidden;
  }
  .slick {
    position: relative;
    opacity: 0;
    transition: opacity 0.75s ease;
    overflow: hidden;
  }
  .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: white !important;
  }
  .modaal-outer-wrapper {
    background: rgba(0, 0, 0, 0.2) !important;
    -webkit-backdrop-filter: blur(10px) !important;
            backdrop-filter: blur(10px) !important;
  }
  .modaal-overlay {
    transition: all 0.3s;
    background: unset !important;
  }
}
/*-----------------------------------------------------------------*/
/*サイト個別規則*/
/*-----------------------------------------------------------------*/
header:has(.kv figure) {
  --textcolor: white;
}
header:has(.kv figure) > .inr0 {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 2;
}
@media (width <= 730px) {
  header > .inr0 {
    padding-top: 20px;
  }
}
@media (width > 730px) {
  header > .inr0 {
    padding-top: 50px;
  }
}
@media (width <= 730px) {
  header > .inr0 .hdr-ctn {
    --textcolor: white;
  }
  header > .inr0 .hdr-ctn h1 {
    width: 150px;
    margin-left: auto;
  }
  body.menu-active header > .inr0 .hdr-ctn h1 {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 99;
    animation: menu-active-h1 0.8s forwards;
  }
  @keyframes menu-active-h1 {
    0% {
      transform: translateY(-100vh);
    }
    100% {
      transform: translateX(0);
    }
  }
}
@media (width > 730px) {
  header > .inr0 .hdr-ctn {
    flex-direction: row-reverse;
    justify-content: space-between;
  }
  header > .inr0 .hdr-ctn h1 {
    flex: 0 0 auto;
    width: 220px;
  }
}
@media (width <= 730px) {
  header nav.menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #131313;
    transition: all 0.8s;
    overflow-y: auto;
  }
  header nav.menu::after {
    content: "";
    display: block;
    position: absolute;
    box-sizing: border-box;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 7em;
    background: linear-gradient(to bottom, #131313 50%, transparent 100%);
    z-index: 2;
  }
  header nav.menu ul.pc-col {
    margin-top: 7em;
    padding: 20px;
  }
  header nav.menu ul.pc-col li a {
    font-size: 1.5em;
    letter-spacing: normal;
    display: block;
    padding: 1em 0;
    border-top: 1px solid #4D4D4D;
    transition: all 0.3s;
  }
  header nav.menu ul.pc-col li a:hover {
    text-decoration: none;
    background: linear-gradient(90deg, transparent 0%, #4D4D4D 20%, #4D4D4D 80%, transparent 100%);
  }
  header nav.menu ul.pc-col li a small {
    color: #aaa;
    font-size: 0.6em;
    letter-spacing: normal;
    margin-left: 1em;
  }
  header nav.menu ul.only-m {
    padding: 20px;
  }
  header nav.menu ul.only-m li.morebtn a {
    border: 1px solid white;
    padding: 1.4rem;
    text-align: center;
  }
  header nav.menu ul.only-m li.morebtn a:has(strong) {
    padding: 1rem 1.4rem;
  }
  header nav.menu ul.only-m li.morebtn a > span {
    display: block;
    flex: 1;
    text-align: center;
  }
  header nav.menu ul.only-m li.morebtn a > span strong {
    font-size: 1.8rem;
  }
  header nav.menu ul.only-m li.morebtn + li.morebtn {
    margin-top: 10px;
  }
  header nav.menu ul.only-m li.insta {
    text-align: center;
    margin-top: 3rem;
    font-size: 0.7rem;
  }
  header nav.menu ul.only-m li.insta i {
    display: inline-block;
    margin-top: 1rem;
  }
  header nav.menu section.hdr-contact {
    margin-top: 3rem;
    margin-inline: 20px;
    padding-bottom: 3rem;
  }
  header nav.menu section.hdr-contact p:nth-child(1) {
    margin-bottom: 1rem;
  }
  header nav.menu section.hdr-contact p:nth-child(1) svg path {
    fill: #EFEFEF;
  }
  header nav.menu section.hdr-contact p.addr {
    line-height: 1.3;
    margin-bottom: 1rem;
  }
  header nav.menu section.hdr-contact p.btns a {
    width: 100%;
    box-sizing: border-box;
    font-size: 160%;
  }
}
@media (width > 730px) {
  header nav.menu {
    flex: 1 0 auto;
  }
}
@media screen and (width > 730px) {
  header nav.menu.watchscroll.scrolling li:not(:hover), header nav.menu.watchscroll.scrolling li *:not(:hover) {
    transition-property: all;
    transition-duration: 0.8s;
    transition-timing-function: ease;
  }
  header nav.menu :nth-child(1 of li):not(:hover) {
    transition-delay: 0.8s;
  }
  header nav.menu :nth-child(2 of li):not(:hover) {
    transition-delay: 0.9s;
  }
  header nav.menu :nth-child(3 of li):not(:hover) {
    transition-delay: 1s;
  }
  header nav.menu :nth-child(4 of li):not(:hover) {
    transition-delay: 1.1s;
  }
  header nav.menu :nth-child(5 of li):not(:hover) {
    transition-delay: 1.2s;
  }
  header nav.menu :nth-child(6 of li):not(:hover) {
    transition-delay: 1.3s;
  }
  header nav.menu :nth-child(7 of li):not(:hover) {
    transition-delay: 1.4s;
  }
  header nav.menu :nth-child(8 of li):not(:hover) {
    transition-delay: 1.5s;
  }
  header nav.menu :nth-child(9 of li):not(:hover) {
    transition-delay: 1.6s;
  }
  header nav.menu :nth-child(10 of li):not(:hover) {
    transition-delay: 1.7s;
  }
  header nav.menu.watchscroll:not(.scrolling) li {
    opacity: 0;
    transform: translateX(-10px);
  }
}
@media (width > 730px) {
  header nav.menu ul {
    flex: 0 0 auto;
    align-items: flex-start;
    align-content: flex-start;
    flex-wrap: wrap;
    height: 4.6em;
    gap: 0.8em 1.2em;
    font-size: 1.1rem;
  }
}
header .kv {
  position: relative;
}
@media (width <= 730px) {
  header .kv:has(figure) {
    width: 100%;
    height: clamp(600px, 100vh, 1120px);
    z-index: 1;
  }
}
@media (width > 730px) {
  header .kv:has(figure) {
    width: 100%;
    height: clamp(600px, 100vh, 1120px);
    z-index: 1;
  }
}
header .kv:has(figure) figure {
  position: absolute;
  inset: 0;
}
header .kv:has(figure) figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: var(--imgpos-x) center;
     object-position: var(--imgpos-x) center;
}
header nav.quickmenu {
  position: fixed;
  --textcolor: white;
  width: calc(24px + 1.6em);
  top: 150px;
  right: 0;
  z-index: 6;
  transition: all 0.8s;
}
header nav.quickmenu li a {
  display: block;
  background: #131313;
  padding: 1.2em 0.8em;
  writing-mode: vertical-rl;
  text-orientation: upright;
  letter-spacing: 0.4ex;
}
header nav.quickmenu li a #dots {
  margin-inline: 18px;
  height: 5px;
}
header nav.quickmenu li a:hover {
  text-decoration: none;
}

/* メニュートグル ここから */
@media (width <= 730px) {
  .menu-toggle {
    position: fixed;
    z-index: 98;
    transition: all 0.4s;
    top: 10px;
    left: 15px;
    flex: 0 0 auto !important;
    background: transparent;
    border-width: 6px;
    border-style: solid;
    border-color: transparent;
    padding: calc((30px - 20px) / 2) calc((20px - 30px) / 2);
    box-sizing: content-box;
    border-radius: 999px;
    font-size: 0px;
  }
}
@media (width > 730px) {
  .menu-toggle {
    display: none;
  }
}
.menu-toggle button {
  position: relative;
  width: 30px;
  height: 20px;
  border: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: transparent;
  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;
  left: 0;
  width: 100%;
  height: 10px;
  background: var(--textcolor);
  border-radius: 999px;
}
.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% - 10px / 2);
  width: 10px;
  left: calc(50% - 5px);
  transition: all 0.25s 0.25s;
}
.menu-toggle button span:nth-of-type(3) {
  bottom: 0;
  animation: menu-bar03 0.75s forwards;
}
.menu-toggle button::after {
  content: "Menu";
  position: absolute;
  top: 80%;
  left: 50%;
  right: 0;
  font-size: 1rem;
  text-align: center;
  width: -moz-max-content;
  width: max-content;
  transform: translateX(-50%);
}

@keyframes menu-bar01 {
  0% {
    transform: translateY(5px) rotate(45deg) scale(0.5, 0.2);
  }
  50% {
    transform: translateY(5px) rotate(0) scale(0.5, 0.2);
  }
  100% {
    transform: translateY(0) rotate(0);
    opacity: 0;
  }
}
@keyframes active-menu-bar01 {
  0% {
    transform: translateY(0) rotate(0) scale(0.5, 0.2);
    opacity: 0;
  }
  50% {
    transform: translateY(5px) rotate(0) scale(0.5, 0.2);
  }
  100% {
    transform: translateY(5px) rotate(45deg) scale(0.5, 0.2);
  }
}
@keyframes menu-bar03 {
  0% {
    transform: translateY(-5px) rotate(-45deg) scale(0.5, 0.2);
  }
  50% {
    transform: translateY(-5px) rotate(0) scale(0.5, 0.2);
  }
  100% {
    transform: translateY(0) rotate(0);
    opacity: 0;
  }
}
@keyframes active-menu-bar03 {
  0% {
    transform: translateY(0) rotate(0) scale(0.5, 0.2);
    opacity: 0;
  }
  50% {
    transform: translateY(-5px) rotate(0) scale(0.5, 0.2);
    opacity: 0;
  }
  100% {
    transform: translateY(-5px) rotate(-45deg) scale(0.5, 0.2);
  }
}
@media (width <= 730px) {
  body:not(.menu-active) nav.menu {
    bottom: 100vh;
    opacity: 0;
  }
}

@media (width <= 730px) {
  body.menu-active header .hdr-ctn {
    --textcolor: white;
  }
  body.menu-active nav.menu {
    --textcolor: white;
  }
  body.menu-active .menu-toggle {
    --textcolor: white;
  }
  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;
  }
  body.menu-active .quickmenu {
    transform: translateX(4em);
  }
}

/* メニュートグル ここまで */
main nav.about-menu {
  --textcolor: white;
  margin-top: 8em;
}
main nav.about-menu ul {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(min(250px, 40vw), 100%), 1fr));
  gap: min(25px, 2vw);
}
main nav.about-menu ul li {
  position: relative;
  aspect-ratio: 5/3;
}
main nav.about-menu ul li figure {
  content: "";
  display: block;
  position: absolute;
  box-sizing: border-box;
  inset: 0;
}
main nav.about-menu ul li figure img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  filter: brightness(0.5);
  transition: all 0.3s;
}
main nav.about-menu ul li figure ~ * {
  position: relative;
}
main nav.about-menu ul li a {
  position: absolute;
  inset: 0;
  background: #4D4D4D;
  text-align: center;
  line-height: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
main nav.about-menu ul li a:hover {
  text-decoration: none;
}
main nav.about-menu ul li a:hover figure img {
  filter: brightness(0.8);
}
main nav.about-menu ul li a:hover:not(:has(figure)) {
  filter: brightness(1.5);
}
main nav.about-menu ul li br {
  display: none;
}

footer {
  padding: 60px 0;
  --textcolor: #131313;
}
@media (width <= 730px) {
  footer .inr0 > div {
    padding: 0;
  }
}
@media (width > 730px) {
  footer .inr0 > div {
    border-top: 1px solid #131313;
    padding: 100px 0 70px;
    flex-wrap: wrap;
  }
  footer .inr0 > div .pc-row {
    gap: 60px;
    flex-wrap: wrap;
  }
  footer .inr0 > div .pc-row > * {
    flex: 0 0 auto;
  }
}
@media (width <= 730px) {
  footer .inr0 > div h2 {
    padding: 40px 0;
  }
}
@media (width > 730px) {
  footer .inr0 > div h2 {
    padding: 40px;
  }
}
footer .inr0 > div .ftr-ctn {
  font-size: 90%;
  line-height: 1.5;
}
footer .inr0 > div .ftr-ctn h3 {
  margin-bottom: 1em;
}
footer .inr0 > div .ftr-ctn p.addr {
  margin-top: 1em;
}
footer .inr0 > div .ftr-ctn address {
  margin-bottom: 1em;
}
@media (width <= 730px) {
  footer .inr0 > div .ftr-ctn > div + div {
    margin-top: 3em;
  }
}
footer .inr0 > div nav.ftrmenu ul {
  text-align: center;
  line-height: 2;
  max-width: 60em;
  margin-inline: auto;
}
@media (width <= 730px) {
  footer .inr0 > div nav.ftrmenu ul {
    margin-top: 3em;
  }
}
@media (width > 730px) {
  footer .inr0 > div nav.ftrmenu ul {
    margin-top: 5em;
  }
}
@media (width <= 730px) {
  footer .inr0 > div nav.ftrmenu ul li {
    text-align: left;
  }
}
@media (width > 730px) {
  footer .inr0 > div nav.ftrmenu ul li {
    display: inline-block;
  }
  footer .inr0 > div nav.ftrmenu ul li:not(:last-child)::after {
    content: "/";
    display: inline-block;
    margin: 0 1em;
  }
}
footer .m-btmnav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: white;
  transition: all 0.8s;
}

body:not(.hdr-scrolling) nav.pgtop {
  transform: translateY(200px);
}
body:not(.hdr-scrolling) .m-btmnav {
  transform: translateY(calc(min(clamp(320px * 100 / 100, (100vw - 40px) * 100 / 100, 690px * 100 / 100), 500px) * 0.14 + 20px));
}

@media (width <= 730px) {
  body:has(footer.scrolling) nav.pgtop {
    transform: translateY(-90px);
  }
}

html.sec header .kv {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
html.sec header .kv h2.pgtitle {
  position: relative;
  z-index: 2;
  text-align: center;
  font-size: 140%;
}
html.sec header .kv h2.pgtitle svg {
  margin-bottom: 30px;
}
html.sec header .kv h2.pgtitle span[lang=ja] {
  letter-spacing: 0.4ex;
  display: inline-block;
  margin-bottom: 1rem;
}
html.sec header .kv h2.pgtitle small[lang=en] {
  display: inline-block;
  font-size: 90%;
}
html.sec main {
  padding-block: 6em;
}
html.sec main h2.pgtitle2 {
  font-size: 160%;
  letter-spacing: 0.4ex;
  margin-bottom: 4em;
}
html.sec main h2.pgtitle2 span[lang=ja] {
  display: inline-block;
  margin-bottom: 0.7rem;
}
html.sec main h2.pgtitle2 small[lang=en] {
  letter-spacing: normal;
  font-size: 80%;
}
html.sec main section h3 {
  font-weight: 600;
  font-size: 140%;
  margin-bottom: 3rem;
  letter-spacing: normal;
  line-height: 1.5;
}
html.sec main section * + h3 {
  margin-top: 4rem;
}/*# sourceMappingURL=site.css.map */