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

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

.bold {
  font-weight: 700;
}

@media (width <= 730px) {
  :root {
    --minw: 360px;
    --minwn: 360;
    --maxw: 100vw;
    --maxwn: 360;
    --pdg: 15px;
    --pdgn: 15;
    --fs: 15px;
  }
}
@media (width > 730px) {
  :root {
    --minw: 730px;
    --minwn: 730;
    --maxw: 933px;
    --maxwn: 933;
    --pdg: 35px;
    --pdgn: 35;
    --fs: 16px;
  }
}

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: 960px;
    --maxwn: 960;
    --pdg: 30px;
    --pdgn: 30;
  }
  .inr2 {
    --maxw: 860px;
    --maxwn: 860;
    --pdg: 0;
    --pdgn: 0;
  }
  .inr3 {
    --maxw: 760px;
    --maxwn: 760;
    --pdg: 0;
    --pdgn: 0;
  }
  .inr4 {
    --maxw: 720px;
    --maxwn: 720;
    --pdg: 0;
    --pdgn: 0;
  }
  .inr5 {
    --maxw: 550px;
    --maxwn: 550;
    --pdg: 0;
    --pdgn: 0;
  }
}
[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 > * {
    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: #E4007F;
  color: white;
  margin: 5px;
  text-align: center;
  padding: 15px 20px;
  transition: all 0.4s;
}
.btns > *:hover {
  cursor: pointer;
  text-decoration: none;
  filter: brightness(1.5);
}

/*-----------------------------------------------------------------*/
/*リセット*/
/*-----------------------------------------------------------------*/
@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;
  }
  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;
  }
  svg.symbols {
    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;
  }
}
/*-----------------------------------------------------------------*/
/*サイト個別規則*/
/*-----------------------------------------------------------------*/
.hdr-ctn {
  background: #F7F7F7;
}
@media (width <= 730px) {
  .hdr-ctn {
    padding-top: clamp(145px, 15vw + 90px, 159px);
  }
}
@media (width > 730px) {
  .hdr-ctn {
    padding-top: 121px;
  }
}

header {
  padding-top: 30px;
  padding-bottom: 20px;
  position: relative;
  justify-content: space-between !important;
  align-items: center !important;
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 10;
  filter: drop-shadow(0 0 2px #F7F7F7) drop-shadow(0 0 3px #F7F7F7) drop-shadow(0 0 4px #F7F7F7);
}
@media (width > 730px) {
  header .row {
    justify-content: space-between;
    align-items: center;
  }
}
@media (width <= 730px) {
  header h1 {
    max-width: 430px;
    margin: 0 auto;
  }
}
@media (width > 730px) {
  header h1 {
    width: 471px;
    flex: 0 0 auto !important;
  }
}
@media (width <= 730px) {
  header .contactbtn {
    position: fixed;
    z-index: 98;
    top: min(clamp(330px * 22 / 100, (100vw - 30px) * 22 / 100, 700px * 22 / 100), 90px);
    right: 90px;
  }
}
@media (width > 730px) {
  header .contactbtn {
    flex: 0 0 auto;
    margin-right: 120px;
  }
}
header .contactbtn a {
  display: inline-block;
  border-radius: 999px;
  aspect-ratio: 1/1;
}
@media (width <= 730px) {
  header .contactbtn a {
    border: 2px solid #E4007F;
    padding: 8px;
  }
}
@media (width > 730px) {
  header .contactbtn a {
    border: 3px solid #E4007F;
    padding: 10px;
  }
}
header .contactbtn a svg {
  fill: #E4007F;
  transition: all 0.4s;
}
@media (width <= 730px) {
  header .contactbtn a svg {
    width: 30px;
  }
}
@media (width > 730px) {
  header .contactbtn a svg {
    width: 35px;
  }
}
header .contactbtn a:hover {
  background: #E4007F;
  transform: rotate(30deg);
}
header .contactbtn a:hover svg {
  fill: white;
}

nav.topmenu {
  background: white;
  position: fixed;
  z-index: 30;
  overflow-y: auto;
  transition: all 1s;
  border-bottom: 1px solid white;
  box-sizing: border-box;
  overflow-y: auto;
  overscroll-behavior: contain;
  opacity: 0;
}
@media (width <= 730px) {
  nav.topmenu {
    top: 0;
    left: 0;
    right: 0;
    padding: 15px 15px 40px;
    max-height: 100dvh;
    transform: translateY(-130vh);
  }
}
@media (width > 730px) {
  nav.topmenu {
    top: 0;
    left: 0;
    bottom: 0;
    padding: 15px 40px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transform: translateX(-100%);
  }
}
nav.topmenu p.close a svg {
  width: 32px;
}
nav.topmenu p.close a svg polyline {
  transition: all 0.4s;
  stroke: #E4007F;
  stroke-width: 0;
}
nav.topmenu p.close a:hover svg polyline {
  fill: #E4007F;
  stroke-width: 3;
}
nav.topmenu > ul {
  border-top: 2px solid #E4007F;
  border-bottom: 2px solid #E4007F;
  padding: 30px 15px;
}
@media (width <= 730px) {
  nav.topmenu > ul {
    margin-top: calc(82px + 14.4565217391vw);
  }
}
@media (width > 730px) {
  nav.topmenu > ul {
    margin-top: 60px;
  }
}
@media (width <= 730px) {
  nav.topmenu > ul > li {
    font-size: 140%;
  }
}
@media (width > 730px) {
  nav.topmenu > ul > li {
    font-size: 120%;
  }
}
nav.topmenu > ul > li > a {
  display: block;
  box-sizing: border-box;
}
@media (width <= 730px) {
  nav.topmenu > ul > li > a {
    padding: 14px 0;
  }
}
@media (width > 730px) {
  nav.topmenu > ul > li > a {
    padding: 20px 0;
  }
}

/* メニュートグル ここから */
.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;
  filter: drop-shadow(0 0 2px #F7F7F7) drop-shadow(0 0 3px #F7F7F7) drop-shadow(0 0 4px #F7F7F7);
}
@media (width <= 730px) {
  .menu-toggle {
    top: min(clamp(330px * 25 / 100, (100vw - 30px) * 25 / 100, 700px * 25 / 100), 98px);
    right: 15px;
  }
}
@media (width > 730px) {
  .menu-toggle {
    top: 45px;
    right: calc(50% - clamp(660px * 50 / 100, (100vw - 70px) * 50 / 100, 933px * 50 / 100) + 35px);
  }
}
.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: #E4007F;
  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;
}

@media (width <= 730px) {
  main {
    overflow-x: hidden;
  }
}

html.sec h2 {
  background: url(/wp-content/themes/custom/img/sec/0101.svg) no-repeat center right calc(max(50vw, 180px) + min(max(50vw, 180px), 933px / 2) - 100px)/auto 100%, url(/wp-content/themes/custom/img/sec/0191.png) repeat center/14px;
  font-weight: 700;
  color: #E4007F;
}
@media (width <= 730px) {
  html.sec h2 {
    text-align: center;
    line-height: 1.8;
    padding: 15px 0 10px;
  }
}
@media (width > 730px) {
  html.sec h2 {
    font-size: 150%;
    padding: 40px 0 40px calc(max(50vw, 180px) - min(max(50vw, 180px), 933px / 2) + 120px);
  }
}
html.sec h2 img {
  vertical-align: middle;
}
@media (width <= 730px) {
  html.sec h2 img {
    height: 31px;
  }
}
@media (width > 730px) {
  html.sec h2 img {
    height: 46px;
  }
}
html.sec h2 [lang=ja] {
  display: inline-block;
  margin: 0 20px;
  white-space: nowrap;
}

footer {
  position: relative;
  background: #F7F7F7;
}
footer .pgtop {
  position: fixed;
  z-index: 5;
  transition: all 1s;
}
@media (width <= 730px) {
  footer .pgtop {
    right: 15px;
    bottom: -110px;
    width: 60px;
  }
}
@media (width > 730px) {
  footer .pgtop {
    right: 60px;
    bottom: -110px;
    width: 80px;
  }
}
footer .pgtop a {
  display: block;
  transform: translateY(0);
  background: #E4007F;
  color: white;
  font-weight: 700;
  width: -moz-max-content;
  width: max-content;
  font-size: 110%;
  text-align: center;
  padding: 10px;
  border-radius: 999px;
  border: 3px solid #E4007F;
}
footer .pgtop a:hover {
  transform: translateY(-10px);
  text-decoration: none;
  background: white;
  color: #E4007F;
}
footer .rights {
  padding: 40px 0;
  text-align: center;
}

@media (width <= 730px) {
  body.hdr-scrolling .pgtop {
    transform: translateY(-130px);
  }
}
@media (width > 730px) {
  body.hdr-scrolling .pgtop {
    transform: translateY(-130px);
  }
}
body.hdr-scrolling .m-btmnav {
  transform: translateY(0);
}/*# sourceMappingURL=site.css.map */