@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;
}

.din {
  font-family: "din-2014", sans-serif;
  font-weight: 700;
}

.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: 10px;
    --pdgn: 10;
    --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: 30px;
    --pdgn: 30;
  }
  .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 !important;
  justify-content: space-around;
  align-items: flex-start;
  align-content: center;
}

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

.col, .cols > * {
  display: flex !important;
  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 !important;
    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 !important;
    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 !important;
    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 !important;
    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-color: var(--btnbgcolor, #2f54c0);
  color: var(--textcolor, white);
  border-color: var(--bdrcolor, var(--btnbgcolor, #2f54c0));
  border-width: 1px;
  border-style: solid;
  margin: 0 10px;
  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 > * svg {
  position: absolute;
  transition: all 0.4s;
  top: calc(50% - 0.75em);
  right: 15px;
  height: 1.5em;
  stroke: var(--textcolor, white);
  stroke-miterlimit: 2px;
  fill: none;
}
.btns > *:hover {
  cursor: pointer;
  text-decoration: none;
  background-color: var(--textcolor, white);
  color: var(--btnbgcolor, #2f54c0);
}
.btns > *:hover svg {
  stroke: var(--btnbgcolor, #2f54c0);
}

.morebtn {
  display: block;
  position: relative;
}
@media (width <= 730px) {
  .morebtn {
    text-align: right;
  }
}
@media (width > 730px) {
  .morebtn {
    text-align: center;
  }
}
.morebtn > * {
  all: unset;
  display: inline-block;
  position: relative;
  line-height: 1;
  padding: 5px 15px;
  background-color: var(--btnbgcolor, #2f54c0);
  color: var(--textcolor, white);
  border-color: var(--bdrcolor, var(--btnbgcolor, #2f54c0));
  border-width: 1px;
  border-style: solid;
  transition: all 0.4s;
  z-index: 2;
  border-radius: 6px;
  text-align: center;
}
.morebtn > *:hover {
  cursor: pointer;
  text-decoration: none;
  background-color: var(--textcolor, white);
  color: var(--btnbgcolor, #2f54c0);
}

/*-----------------------------------------------------------------*/
/*リセット*/
/*-----------------------------------------------------------------*/
@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;
  }
  :where(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;
  }
  a:not(:has(:not(img))):hover {
    filter: brightness(1.2);
  }
  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;
  }
  small {
    font-size: 80%;
  }
  .cf:after {
    display: block;
    clear: both;
    content: "";
  }
  .css-att {
    display: none;
  }
  html[class] {
    margin-top: 0 !important;
  }
  #wpadminbar {
    display: none;
  }
  .screen-reader-text {
    display: none;
  }
}
/*-----------------------------------------------------------------*/
/*サイト基本規則*/
/*-----------------------------------------------------------------*/
@layer siterule {
  body {
    font-family: "source-han-sans-japanese", sans-serif;
    font-weight: 500;
  }
  @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;
  }
}
/*-----------------------------------------------------------------*/
/*サイト個別規則*/
/*-----------------------------------------------------------------*/
header {
  --bgcolor: #264a90;
  --textcolor: white;
  position: relative;
  z-index: 4;
  color: var(--textcolor);
}
@media (width > 730px) {
  header {
    padding: 15px 0;
    background: var(--bgcolor);
    border-bottom: 6px solid #d3b684;
  }
}
header .inr0 > .pc-row {
  justify-content: space-between !important;
  align-items: center;
  gap: 10px 40px;
  flex-wrap: wrap;
}
header h1 {
  position: relative;
  z-index: 96;
}
@media (width <= 730px) {
  header h1 {
    padding: 15px 10px;
    background: var(--bgcolor);
    padding-right: 90px;
    border-bottom: 6px solid #d3b684;
  }
}
@media (width > 730px) {
  header h1 {
    flex: 1 1 auto !important;
  }
}
@media (width <= 730px) {
  header h1 img {
    max-width: 400px;
  }
}
@media (width > 730px) {
  header h1 img {
    width: 420px;
  }
}

@media (width <= 730px) {
  nav.topmenu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: calc(min(clamp(340px * 30 / 100, (100vw - 20px) * 30 / 100, 710px * 30 / 100), 182.4px) + 6px) 15px 20px;
    max-height: 100dvh;
    transform: translateY(-130vh);
    background: #264a90;
    transition: all 0.8s;
    z-index: 1;
    border-bottom: 3px solid #d3b684;
  }
  nav.topmenu > ul > li {
    font-size: 140%;
    margin-bottom: 10px;
  }
  nav.topmenu > ul > li > a {
    display: block;
    box-sizing: border-box;
    border-radius: 999px;
    color: white;
    padding: 10px 30px;
  }
  nav.topmenu > ul > li > a:hover {
    text-decoration: none;
  }
}
@media (width > 730px) {
  nav.topmenu {
    flex: 0 0 auto;
    font-size: 90%;
    font-weight: 700;
  }
  nav.topmenu ul {
    justify-content: flex-start;
  }
  nav.topmenu ul li {
    flex: 0 0 auto !important;
    border-left: 1px solid var(--textcolor);
  }
  nav.topmenu ul li:last-child {
    border-right: 1px solid var(--textcolor);
  }
  nav.topmenu ul li a {
    display: block;
    padding: 0.6em 20px;
  }
}

@media (width > 730px) {
  nav.snsmenu {
    flex: 0 1 auto;
  }
}
@media (width <= 730px) {
  nav.snsmenu ul {
    justify-content: center;
  }
}
@media (width > 730px) {
  nav.snsmenu ul {
    justify-content: flex-end;
  }
}
nav.snsmenu li {
  flex: 0 0 auto;
}
nav.snsmenu li a {
  background-color: var(--textcolor);
  color: var(--bgcolor);
  font-size: 1.5rem;
  border-radius: 999px;
  margin: 8px;
  padding: 5px;
  width: 1.1em;
  aspect-ratio: 1/1;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  display: inline-flex;
  border: 1px solid var(--textcolor);
}
@media (width <= 730px) {
  nav.snsmenu li a {
    --bgcolor: white;
    --textcolor: #d3b684;
  }
}
nav.snsmenu li a svg {
  height: 1.5rem;
  fill: var(--bgcolor);
}
nav.snsmenu li a:hover {
  background: var(--bgcolor);
  color: var(--textcolor);
  text-decoration: none;
}
nav.snsmenu li a:hover svg {
  fill: var(--textcolor);
}
/* メニュートグル ここから */
.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: min(clamp(340px * 8 / 100, (100vw - 20px) * 8 / 100, 710px * 8 / 100), 38.64px);
  right: 15px;
}
.menu-toggle button {
  width: 30px;
  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: 2px;
  background: white;
  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% - 2px / 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 + 1px)) rotate(0);
  }
  100% {
    transform: translateY(calc(-14px + 1px)) 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;
}

/* メニュートグル ここまで */
html.sec section.pgtitle {
  padding-bottom: 60px;
}
html.sec section.pgtitle h2 {
  text-align: center;
  padding-top: 100px;
  padding-bottom: 80px;
}
html.sec section.pgtitle h2 img {
  max-height: 52px;
}

footer {
  position: relative;
  background: url(/wp-content/themes/custom/img/9191.jpg) repeat center/2000px;
  padding-top: 50px;
  color: white;
}
footer .contactbtn {
  padding-bottom: 30px;
}
footer .contactbtn .inr > div {
  background: linear-gradient(90deg, #000 0%, #1E50FF 61%, #5CA0FF 100%);
  line-height: 1.3;
  display: grid;
}
footer .contactbtn .inr > div .cp {
  grid-area: cp;
}
footer .contactbtn .inr > div .tel > :nth-child(1) {
  grid-area: tellabel;
}
footer .contactbtn .inr > div .tel > :nth-child(2) {
  grid-area: tel;
}
footer .contactbtn .inr > div .time > :nth-child(1) {
  grid-area: timelabel;
}
footer .contactbtn .inr > div .time > :nth-child(2) {
  grid-area: time;
}
footer .contactbtn .inr > div .btns {
  grid-area: btns;
}
footer .contactbtn .inr > div .contactme {
  grid-area: contactme;
}
footer .contactbtn .inr > div figure {
  grid-area: img;
}
@media (width <= 730px) {
  footer .contactbtn .inr > div {
    font-size: 14px;
    grid-template-columns: auto 1fr 7fr;
    grid-template-rows: auto auto auto auto auto;
    gap: 0px 0px;
    grid-template-areas: "img img cp" "tellabel tel tel" "timelabel time time" "btns btns btns" "contactme contactme contactme";
  }
  footer .contactbtn .inr > div .cp {
    padding: 5px;
    font-size: calc(clamp(var(--minw) - var(--pdg) * 2, 100cqw, var(--maxw)) / 1000 * 9 / (var(--maxwn) / 1000));
  }
  footer .contactbtn .inr > div .tel > *, footer .contactbtn .inr > div .time > *, footer .contactbtn .inr > div .btns {
    background: white;
    color: black;
  }
}
@media (width > 730px) {
  footer .contactbtn .inr > div {
    border: 3px solid #C5C5C5;
    font-size: calc(clamp(var(--minw) - var(--pdg) * 2, 100cqw, var(--maxw)) / 1000 * 20 / (var(--maxwn) / 1000));
    grid-template-columns: 1fr auto 2fr;
    grid-template-rows: auto auto auto auto auto;
    gap: 0px 0px;
    grid-template-areas: "cp cp cp" "img tellabel tel" "img timelabel time" "img btns btns" "contactme contactme contactme";
  }
  footer .contactbtn .inr > div .cp {
    padding: 5px 5px 5px 33%;
  }
  footer .contactbtn .inr > div figure, footer .contactbtn .inr > div .tel > *, footer .contactbtn .inr > div .time > *, footer .contactbtn .inr > div .btns {
    background: white;
    color: black;
  }
}
footer .contactbtn .inr > div .tel, footer .contactbtn .inr > div .time {
  display: contents;
}
footer .contactbtn .inr > div .tel > :nth-child(1), footer .contactbtn .inr > div .time > :nth-child(1) {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (width <= 730px) {
  footer .contactbtn .inr > div .tel > :nth-child(1), footer .contactbtn .inr > div .time > :nth-child(1) {
    padding: 5px;
    font-size: calc(clamp(var(--minw) - var(--pdg) * 2, 100cqw, var(--maxw)) / 1000 * 12 / (var(--maxwn) / 1000));
  }
}
footer .contactbtn .inr > div .tel > :nth-child(1) > span, footer .contactbtn .inr > div .time > :nth-child(1) > span {
  display: block;
  font-weight: 700;
  color: white;
  text-align: center;
  background: #264a90;
  margin-right: 10px;
  border-radius: 4px;
  padding: 3px 10px;
}
footer .contactbtn .inr > div .tel > :nth-child(2), footer .contactbtn .inr > div .time > :nth-child(2) {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (width <= 730px) {
  footer .contactbtn .inr > div .tel strong {
    font-size: calc(clamp(var(--minw) - var(--pdg) * 2, 100cqw, var(--maxw)) / 1000 * 35 / (var(--maxwn) / 1000));
  }
}
@media (width > 730px) {
  footer .contactbtn .inr > div .tel strong {
    font-size: 360%;
  }
}
footer .contactbtn .inr > div .time {
  font-weight: 700;
}
@media (width <= 730px) {
  footer .contactbtn .inr > div .time {
    font-size: calc(clamp(var(--minw) - var(--pdg) * 2, 100cqw, var(--maxw)) / 1000 * 12 / (var(--maxwn) / 1000));
  }
}
@media (width <= 730px) {
  footer .contactbtn .inr > div .time strong {
    font-size: calc(clamp(var(--minw) - var(--pdg) * 2, 100cqw, var(--maxw)) / 1000 * 20 / (var(--maxwn) / 1000));
  }
}
@media (width > 730px) {
  footer .contactbtn .inr > div .time strong {
    font-size: 200%;
  }
}
footer .contactbtn .inr > div .btns {
  padding: 1em 1em 1em 0;
}
@media (width > 730px) {
  footer .contactbtn .inr > div .btns {
    text-align: left;
  }
}
@media (width <= 730px) {
  footer .contactbtn .inr > div .btns > * {
    padding: 0.7em;
    margin-bottom: 5px;
  }
}
@media (width > 730px) {
  footer .contactbtn .inr > div .btns > * {
    margin: 0 15px 0 0;
    padding: 0.7em 3em;
  }
}
footer .contactbtn .inr > div .btns > *.contact {
  --btnbgcolor: #e61c24;
}
footer .contactbtn .inr > div .btns > *.line-contact {
  --btnbgcolor: #1db21d;
}
footer .contactbtn .inr > div figure {
  position: relative;
}
footer .contactbtn .inr > div figure img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}
footer .contactbtn .inr > div .contactme {
  text-align: center;
  padding: 5px 5px 10px 5px;
}
footer .contactbtn .inr > div .contactme strong {
  font-size: 250%;
}
@media (width <= 730px) {
  footer .contactbtn .inr > div .contactme strong {
    font-size: calc(clamp(var(--minw) - var(--pdg) * 2, 100cqw, var(--maxw)) / 1000 * 18 / (var(--maxwn) / 1000));
  }
}
@media (width > 730px) {
  footer .contactbtn .inr > div .contactme strong {
    font-size: 250%;
  }
}
footer section.ftr-atc {
  color: white;
}
footer section.ftr-atc h2 {
  background: #264a90;
  text-align: center;
  padding: 10px 10px;
  border-bottom: 5px solid #d3b684;
}
footer section.ftr-atc h2 img {
  max-width: 400px;
}
footer section.ftr-atc h2 + div {
  background: #2f54c0;
  text-align: center;
}
@media (width <= 730px) {
  footer section.ftr-atc h2 + div {
    padding: 10px 10px;
  }
}
@media (width > 730px) {
  footer section.ftr-atc h2 + div {
    padding: 30px 10px;
  }
}
footer section.ftr-atc nav.ftrmenu {
  margin-bottom: 2em;
}
footer section.ftr-atc nav.ftrmenu ul {
  justify-content: center;
}
footer section.ftr-atc nav.ftrmenu ul li {
  flex: 0 0 auto;
}
footer section.ftr-atc nav.ftrmenu ul li + li {
  margin-left: 3em;
}
footer section.ftr-atc address {
  line-height: 1.5;
}
footer section.ftr-atc address strong {
  font-size: 150%;
}
footer section.ftr-atc .snsmenu {
  --bgcolor: #2f54c0;
  --textcolor: white;
  justify-content: center;
}
footer section.ftr-atc .snsmenu li {
  flex: 0 0 auto;
}
footer section.ftr-atc .snsmenu li a {
  background-color: var(--textcolor);
  color: var(--bgcolor);
  font-size: 1.5rem;
  border-radius: 999px;
  margin: 8px;
  padding: 5px;
  width: 1.1em;
  aspect-ratio: 1/1;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  display: inline-flex;
  border: 1px solid var(--textcolor);
}
footer section.ftr-atc .snsmenu li a:hover {
  background: var(--bgcolor);
  color: var(--textcolor);
  text-decoration: none;
}
footer .rights {
  text-align: center;
  line-height: 2;
  padding-block: 5px;
  color: black;
}
@media (width <= 730px) {
  footer .rights {
    padding-bottom: min(clamp(340px * 20 / 100, (100vw - 20px) * 20 / 100, 710px * 20 / 100), 68px);
  }
}
footer .pgtop {
  position: fixed;
  z-index: 5;
  transition: all 1s;
}
@media (width <= 730px) {
  footer .pgtop {
    right: 15px;
    bottom: min(clamp(340px * 20 / 100, (100vw - 20px) * 20 / 100, 710px * 20 / 100), 68px);
    width: 60px;
    transform: translateY(clamp(340px * 70 / 100, (100vw - 20px) * 70 / 100, 710px * 70 / 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(47, 84, 192, 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: #2f54c0;
}
footer .m-btmnav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9;
  transform: translateY(clamp(340px * 50 / 100, (100vw - 20px) * 50 / 100, 710px * 50 / 100));
  transition: all 1s;
}
footer .m-btmnav > * {
  max-width: 300px;
  display: block;
  box-sizing: border-box;
  height: 100%;
}

body.hdr-scrolling .pgtop {
  transform: translateY(0);
}
body.hdr-scrolling .m-btmnav {
  transform: translateY(0);
}

@media (width <= 730px) {
  footer.scrolling .pgtop {
    margin-bottom: 50px;
  }
}/*# sourceMappingURL=site.css.map */