body {
  background: #FCF2E7;
  font-family: "Poppins", "Zen Kaku Gothic New", sans-serif;
  line-height: 1.5;
}
body::before {
  -webkit-animation: PageAnime-fade 0.8s forwards;
  animation: PageAnime-fade 0.8s forwards;
  -webkit-animation-delay: 0.1s;
  animation-delay: 0.1s;
  background-color: #fff;
  content: "";
  height: 100vh;
  left: 0;
  position: fixed;
  top: 0;
  width: 100vw;
  z-index: 999;
}
body.is-drawerActive {
  height: 100%;
  overflow: hidden;
}

@-webkit-keyframes PageAnime-fade {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    visibility: hidden;
  }
}
@keyframes PageAnime-fade {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    visibility: hidden;
  }
}
/*-----------------------------------
  utility
-----------------------------------*/
.u-bg-check {
  background-color: #FEFEFE;
  background-image: linear-gradient(0deg, transparent calc(100% - 1px), #FCF2E7 calc(100% - 1px)), linear-gradient(90deg, transparent calc(100% - 1px), #FCF2E7 calc(100% - 1px));
  background-position: center center;
  background-repeat: repeat;
  background-size: 20px 20px;
}

.u-display-ib {
  display: inline-block;
}

.u-display-none {
  display: none !important;
}

.u-wid-fit {
  margin: auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.u-font-jp {
  font-family: "Zen Kaku Gothic New", sans-serif;
}

.u-font-en {
  font-family: "Poppins", sans-serif;
}

.u-font-en__secound {
  font-family: "Charmonman", cursive;
}

.u-m-lr {
  margin-left: auto;
  margin-right: auto;
}

.u-mt-0 {
  margin-top: 0 !important;
}

.u-mt-2 {
  margin-top: 2rem !important;
}

.u-mb-0 {
  margin-bottom: 0 !important;
}

.u-mb-3 {
  margin-bottom: 3rem !important;
}

.u-mb-4 {
  margin-bottom: 4rem !important;
}

.u-mb-5 {
  margin-bottom: 5rem !important;
}

.u-mb-6_5 {
  margin-bottom: 6.5rem !important;
}

.u-gap-18 {
  gap: calc(18 / 16 * 1rem);
}

.u-gap-0 {
  gap: 0;
}

.u-font-s {
  font-size: calc(14 / 16 * 1rem);
}
@media screen and (max-width:520px) {
  .u-font-s {
    font-size: calc(15 / 16 * 1rem);
  }
}

.u-txt-center {
  text-align: center;
}

.u-color-primary {
  color: #7D5A3A;
}

.u-txt-uppercase {
  text-transform: uppercase;
}

.u-pc-only {
  display: block;
}
@media screen and (max-width:960px) {
  .u-pc-only {
    display: none;
  }
}

.u-pc {
  display: block;
}
@media screen and (max-width:520px) {
  .u-pc {
    display: none;
  }
}

.u-tb {
  display: none;
}
@media screen and (max-width:960px) {
  .u-tb {
    display: block;
  }
}

.u-sp {
  display: none;
}
@media screen and (max-width:520px) {
  .u-sp {
    display: block;
  }
}

.u-lh-2 {
  line-height: 2;
}

.u-ai-stretch {
  align-items: stretch !important;
}

/*-----------------------------------
  layout
-----------------------------------*/
.l-root-container {
  display: grid;
  grid-template-columns: 100%;
  grid-template-rows: auto 1fr auto;
  min-height: 100vh;
}

:root {
  --vw: 1vw;
}

.l-wid100vw {
  margin: 0 calc(50% - 50vw);
  width: calc(var(--vw) * 100);
}
.l-wid100vw.-inner > * {
  margin-inline: auto;
  max-width: 1088px;
  width: 88%;
}
.l-wid100vw.-inner-s > * {
  margin-inline: auto;
  max-width: 896px;
}

.l-content-container {
  margin-left: auto;
  margin-right: auto;
}

.l-content-block {
  margin-left: auto;
  margin-right: auto;
  max-width: 1088px;
}
.l-content-block:not(:has(.l-content-block-l)) {
  width: 88%;
}

.l-content-block-s {
  margin-left: auto;
  margin-right: auto;
  max-width: 896px;
}
.l-content-block-s:not(:has(.l-content-block)), .l-content-block-s:not(:has(.l-content-block-l)) {
  width: 88%;
}

.l-content-block-l {
  margin-left: auto;
  margin-right: auto;
  max-width: 1440px;
  width: 88%;
}

.l-content-block-xs {
  margin-left: auto;
  margin-right: auto;
  max-width: 704px;
  width: 88%;
}

.l-column-1 {
  margin-left: auto;
  margin-right: auto;
  max-width: 1088px;
  width: 88%;
}

.l-column-1.-wide {
  margin-left: auto;
  margin-right: auto;
  max-width: 1440px;
  width: 88%;
}

.l-column-1.-narrow {
  margin-left: auto;
  margin-right: auto;
  max-width: 896px;
  width: 88%;
}

.l-column-2.-sidebar {
  display: flex;
  gap: 2rem;
  margin-left: auto;
  margin-right: auto;
  justify-content: space-between;
  max-width: 1088px;
  width: 88%;
}
.l-column-2.-sidebar .l-column-2__content {
  max-width: 820px;
  width: 75%;
}
.l-column-2.-sidebar .l-column-2__sidebar {
  max-width: 230px;
  width: 25%;
}
@media screen and (max-width:960px) {
  .l-column-2.-sidebar {
    flex-wrap: wrap;
    gap: calc(80 / 16 * 1rem);
  }
  .l-column-2.-sidebar .l-column-2__sidebar,
.l-column-2.-sidebar .l-column-2__content {
    max-width: 100%;
    width: 100%;
  }
}

main {
  padding-top: 80px;
}
@media screen and (max-width:960px) {
  main {
    padding-top: calc(64 / 16 * 1rem);
  }
}

.aioseo-breadcrumbs {
  margin-left: auto;
  margin-right: auto;
  padding: 0.25rem 1.5rem;
}
.aioseo-breadcrumbs__wrapper {
  background: #FEFEFE;
  font-size: calc(11 / 16 * 1rem);
}

.aioseo-breadcrumb-separator {
  font-size: 0.75rem;
  margin: 0 0.5rem;
}

a:hover {
  opacity: 0.7;
  transition: 0.6s all ease-out;
}

@media print {
  body {
    background: #FCF2E7 !important;
    margin: 0;
    padding: 0;
    -webkit-print-color-adjust: exact;
    color-adjust: exact;
         print-color-adjust: exact;
    zoom: 0.5;
  }
  section {
    page-break-before: auto;
  }
  .wp-block-columns {
    flex-direction: row;
    flex-wrap: nowrap !important;
  }
  .wp-block-fsb-flexible-spacer {
    height: 64px;
  }
  .fsb-flexible-spacer__device {
    display: none;
  }
  .l-wid100vw {
    margin: 0 auto;
    max-width: 100%;
    width: 100%;
  }
}
/*# sourceMappingURL=base.css.map */