@charset 'utf-8';
/* Reset
--------------------------------------------------- */
*, ::before, ::after { box-sizing: border-box; }
::before, ::after { text-decoration: inherit; vertical-align: inherit; }
html { cursor: default; line-height: 1.5; -moz-tab-size: 4; -o-tab-size: 4; tab-size: 4; -webkit-tap-highlight-color: transparent; -ms-text-size-adjust: 100%; -webkit-text-size-adjust: 100%; word-break: break-word; }

body { margin: 0; }
h1 { font-size: 2em; margin: 0.67em 0; }

dl dl, dl ol, dl ul, ol dl, ul dl { margin: 0; }
ol ol, ol ul, ul ol, ul ul { margin: 0; }
hr { height: 0; overflow: visible; }
main { display: block; }
nav ol, nav ul { list-style: none; padding: 0; }
pre { font-family: monospace, monospace; font-size: 1em; }

a { background-color: transparent; }
abbr[title] { text-decoration: underline; -webkit-text-decoration: underline dotted; text-decoration: underline dotted; }
b, strong { font-weight: bolder; }
code, kbd, samp { font-family: monospace, monospace; font-size: 1em; }
small { font-size: 80%; }

audio, canvas, iframe, img, svg, video { vertical-align: middle; }
audio, video { display: inline-block; }
audio:not([controls]) { display: none; height: 0; }
iframe { border-style: none; }
img { border-style: none; }
svg:not([fill]) { fill: currentColor; }
svg:not(:root) { overflow: hidden; }

table { border-collapse: collapse; }

details { display: block; }
dialog { background-color: white; border: solid; color: black; display: block; height: -moz-fit-content; height: -webkit-fit-content; height: fit-content; left: 0; margin: auto; padding: 1em; position: absolute; right: 0; width: -moz-fit-content; width: -webkit-fit-content; width: fit-content; }
dialog:not([open]) { display: none; }
summary { display: list-item; }

canvas { display: inline-block; }
template { display: none; }

a, area, button, input, label, select, summary, textarea, [tabindex] { touch-action: manipulation; }
[hidden] { display: none; }

img { max-width: 100%; height: auto; }
img[src$=".svg"], svg { width: 100%; height: auto; }
h1, h2, h3, h4, h5, h6 { margin: 0; font-size: 100%; font-weight: normal; }
blockquote, figure, p { margin: 0; }
dl, dd, ol, ul { margin: 0; padding: 0; }
ul, ol { list-style: none; }
i, em { font-style: normal; }
/* base */
@media screen and (max-width: 23.4275em), screen and (min-width: 48em) and (max-width: 79.99em) {
  html {
    font-size: 56.25%;
  }
}
@media screen and (min-width: 23.4375em) and (max-width: 47.99em), screen and (min-width: 80em) {
  html {
    font-size: 62.5%;
  }
}
body {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: normal;
  color: #182842;
  letter-spacing: 0.03em;
  line-height: 1;
  font-feature-settings: "palt" 1;
  background-color: #f6e8da;
}
@media screen and (max-width: 47.999em) {
  body {
    font-size: 1.4rem;
  }
}
@media screen and (min-width: 48em) {
  body {
    font-size: 1.6rem;
  }
}
@media (-webkit-min-device-pixel-ratio: 2) {
  body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }
}
::-moz-selection {
  background: #182842;
  color: #f6e8da;
  text-shadow: none;
}
::selection {
  background: #182842;
  color: #f6e8da;
  text-shadow: none;
}
a {
  color: #182842;
  transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}
a:link,
a:visited {
  color: #182842;
  text-decoration: none;
}
a img {
  transition: opacity 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}
@media not all and (hover: none) and (pointer: coarse) {
  a:hover,
  a:active {
    color: #f98334;
    text-underline-color: #f98334;
  }
  a:hover img,
  a:active img {
    opacity: 0.75;
    transition: opacity 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  }
  a svg path {
    transition: fill 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  }
}
/* Layouts
--------------------------------------------------- */
/* frame */
.frame {
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
.frame__header,
.frame__footer {
  flex-grow: 0;
  width: 100%;
}
.frame__content {
  flex-grow: 1;
  width: 100%;
  overflow: hidden;
  background-color: #f0decd;
}
@media screen and (max-width: 47.999em) {
  .frame__content {
    min-height: 48rem;
    padding-top: 6rem;
  }
}
@media screen and (min-width: 48em) {
  .frame__header,
  .frame__footer,
  .frame__content {
    min-width: 1024px;
  }
  .frame__content {
    min-height: 80rem;
    padding-top: 8.8rem;
  }
}
/* column */
.grid {
  display: grid;
}
.grid.-g2 {
  gap: 0.2rem;
}
.grid.-g4 {
  gap: 0.4rem;
}
.grid.-g8 {
  gap: 0.8rem;
}
.grid.-g12 {
  gap: 1.2rem;
}
.grid.-g16 {
  gap: 1.6rem;
}
.grid.-g20 {
  gap: 2rem;
}
.grid.-g24 {
  gap: 2.4rem;
}
@media screen and (max-width: 47.999em) {
  .grid {
    grid-template-columns: 1fr;
    max-width: 100%;
  }
  .grid.-c2-sp {
    grid-template-columns: repeat(2, 1fr);
  }
  .grid.-c3-sp {
    grid-template-columns: repeat(3, 1fr);
  }
  .grid.-g2-sp {
    gap: 0.2rem;
  }
  .grid.-g4-sp {
    gap: 0.4rem;
  }
  .grid.-g8-sp {
    gap: 0.8rem;
  }
  .grid.-g16-sp {
    gap: 1.6rem;
  }
  .grid.-g20-sp {
    gap: 2rem;
  }
  .grid.-g24-sp {
    gap: 2.4rem;
  }
}
@media screen and (min-width: 48em) {
  .grid.-c2 {
    grid-template-columns: repeat(2, 1fr);
  }
  .grid.-c3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .grid.-c4 {
    grid-template-columns: repeat(4, 1fr);
  }
  .grid.-c5 {
    grid-template-columns: repeat(5, 1fr);
  }
  .grid.-c6 {
    grid-template-columns: repeat(6, 1fr);
  }
  .grid.-g2-pc {
    gap: 0.2rem;
  }
  .grid.-g4-pc {
    gap: 0.4rem;
  }
  .grid.-g8-pc {
    gap: 0.8rem;
  }
  .grid.-g16-pc {
    gap: 1.6rem;
  }
  .grid.-g20-pc {
    gap: 2rem;
  }
  .grid.-g24-pc {
    gap: 2.4rem;
  }
  .grid.-middle {
    align-items: center;
  }
}
/* Components
--------------------------------------------------- */
/**
 * structure
 */
/* header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  background-color: #f6e8da;
}
.header.-sticky {
  transition: box-shadow 0.4s cubic-bezier(0.19, 1, 0.22, 1);
  box-shadow: 0 2px 4px 0 rgba(0,0,0,0.08);
}
@media screen and (max-width: 47.999em) {
  .header {
    padding: 1.2rem 4.27% 1.3rem;
  }
  .header__logo {
    position: relative;
    width: 14rem;
    z-index: 999;
  }
}
@media screen and (min-width: 48em) {
  .header {
    padding-top: 2.4rem;
    padding-bottom: 2.4rem;
    transition: padding 0.4s cubic-bezier(0.19, 1, 0.22, 1);
  }
  .header__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 92.19%;
    max-width: 120rem;
    margin: auto;
  }
  .header__logo {
    width: 20rem;
  }
  .header.-sticky {
    padding-top: 0.8rem;
    padding-bottom: 0.8rem;
    transition: padding 1s cubic-bezier(0.19, 1, 0.22, 1);
  }
}
.header-menu {
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
}
.header-menu a,
.header-menu a:link,
.header-menu a:visited {
  color: #182842;
}
@media screen and (max-width: 47.999em) {
  .header-menu {
    width: 100%;
    font-size: 1.8rem;
  }
  .header-menu a,
  .header-menu a:link,
  .header-menu a:visited {
    display: block;
  }
  .header-menu__item {
    line-height: 5.6rem;
    text-align: center;
  }
}
@media screen and (min-width: 48em) {
  .header-menu {
    display: flex;
    align-items: center;
    gap: 2.4rem;
  }
  .header-menu__item.-current > a {
    color: #f98334;
  }
  .header-menu__item {
    line-height: 2.8rem;
  }
}
@media not all and (hover: none) and (pointer: coarse) {
  .header-menu a {
    transition: opacity 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  }
  .header-menu a:hover,
  .header-menu a:active {
    opacity: 0.6;
    transition: opacity 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  }
}
.nav__container-inner {
  display: flex;
}
@media screen and (max-width: 47.999em) {
  .nav__container {
    position: absolute;
    top: -100vh;
    left: 0;
    width: 100%;
    height: 100%;
    min-height: 100vh;
    background-color: #f6e8da;
    opacity: 0;
    transition: opacity 1s cubic-bezier(0.19, 1, 0.22, 1), top 0.1s cubic-bezier(0.19, 1, 0.22, 1) 1s;
  }
  .nav__container-inner {
    flex-direction: column;
    gap: 4rem;
    width: 100%;
    min-height: 100%;
    padding: 12rem 3.2rem 4rem;
    transform: translateY(-1.6rem);
    transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
  }
  .nav__button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 4.27%;
    z-index: 999;
    width: 2.4rem;
    height: 4rem;
    display: block;
    cursor: pointer;
  }
  .nav__button-icon {
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%);
    width: 2.4rem;
    height: 2px;
    background-color: #182842;
    border-radius: 2px;
    transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  }
  .nav__button-icon::before,
  .nav__button-icon::after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 2.4rem;
    height: 2px;
    background-color: #182842;
    transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  }
  .nav__button-icon::before {
    transform: translateY(-8px);
  }
  .nav__button-icon::after {
    transform: translateY(8px);
  }
  .nav.-open .nav__container {
    top: 0;
    z-index: 100;
    overflow-y: scroll;
    opacity: 1;
    transition: opacity 1s cubic-bezier(0.19, 1, 0.22, 1);
  }
  .nav.-open .nav__container-inner {
    transform: translateY(0);
    transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
  }
  .nav.-open .nav__button-icon {
    background-color: transparent;
  }
  .nav.-open .nav__button-icon::before {
    transform: rotate(45deg);
  }
  .nav.-open .nav__button-icon::after {
    transform: rotate(-45deg);
  }
}
@media screen and (min-width: 48em) {
  .nav__container-inner {
    align-items: center;
    gap: 3.2rem;
  }
}
/* footer */
.footer {
  background-color: #f6e8da;
}
.footer__inner {
  display: flex;
  flex-direction: column;
}
.footer__nav {
  display: flex;
}
.footer__copyright {
  font-size: 1rem;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 47.999em) {
  .footer__inner {
    gap: 3.2rem;
    padding: 4rem 6.4%;
  }
}
@media screen and (min-width: 48em) {
  .footer__inner {
    align-items: center;
    gap: 4rem;
    width: 92.19%;
    max-width: 120rem;
    margin: 4.8rem auto;
  }
  .footer__copyright {
    margin-top: -1.6rem;
  }
}
.footer-menu {
  font-size: 1.4rem;
}
.footer-menu a,
.footer-menu a:link,
.footer-menu a:visited {
  color: #182842;
}
@media screen and (max-width: 47.999em) {
  .footer-menu a,
  .footer-menu a:link,
  .footer-menu a:visited {
    display: block;
  }
  .footer-menu__item:not(:first-child) {
    margin-top: 1.6rem;
  }
}
@media screen and (min-width: 48em) {
  .footer-menu {
    display: flex;
    align-items: center;
  }
  .footer-menu__item:not(:first-child) {
    margin-left: 3.2rem;
  }
}
@media not all and (hover: none) and (pointer: coarse) {
  .footer-menu a {
    transition: opacity 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  }
  .footer-menu a:hover,
  .footer-menu a:active {
    opacity: 0.6;
    transition: opacity 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  }
}
/**
 * common
 */
.content {
  line-height: 2;
}
.content strong {
  font-weight: bolder;
}
.content em {
  font-style: italic;
}
.content small {
  font-size: 0.8em;
}
.content a,
.content a:link,
.content a:visited {
  text-decoration: underline;
}
.content h2.wp-block-heading,
.content h3.wp-block-heading,
.content h4.wp-block-heading {
  margin-top: 2em;
  margin-bottom: 0.5em;
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  line-height: 1.52;
}
.content p + p {
  margin-top: 1em;
}
.content ul.list-disc:not(:first-child),
.content ul.wp-block-list:not(:first-child),
.content ul:not([class]):not(:first-child),
.content ol.wp-block-list:not(:first-child),
.content ol:not([class]):not(:first-child) {
  margin-top: 1em;
}
.content ul.list-disc:not(:last-child),
.content ul.wp-block-list:not(:last-child),
.content ul:not([class]):not(:last-child),
.content ol.wp-block-list:not(:last-child),
.content ol:not([class]):not(:last-child) {
  margin-bottom: 1em;
}
.content ul.list-disc > li:not(.-nostyle),
.content ul.wp-block-list > li:not(.-nostyle),
.content ul:not([class]) > li:not(.-nostyle),
.content ol.wp-block-list > li:not(.-nostyle),
.content ol:not([class]) > li:not(.-nostyle) {
  display: flex;
  align-items: flex-start;
}
.content ul.list-disc > li:not(.-nostyle)::before,
.content ul.wp-block-list > li:not(.-nostyle)::before,
.content ul:not([class]) > li:not(.-nostyle)::before,
.content ol.wp-block-list > li:not(.-nostyle)::before,
.content ol:not([class]) > li:not(.-nostyle)::before {
  flex-shrink: 0;
  min-width: 1.25em;
  margin-right: 0.25em;
  color: #757575;
}
.content ul.list-disc > li:not(.-nostyle):nth-child(n+2),
.content ul.wp-block-list > li:not(.-nostyle):nth-child(n+2),
.content ul:not([class]) > li:not(.-nostyle):nth-child(n+2),
.content ol.wp-block-list > li:not(.-nostyle):nth-child(n+2),
.content ol:not([class]) > li:not(.-nostyle):nth-child(n+2) {
  margin-top: 0.1em;
}
.content ul.list-disc > li > ul,
.content ul.wp-block-list > li > ul,
.content ul:not([class]) > li > ul,
.content ol.wp-block-list > li > ul,
.content ol:not([class]) > li > ul,
.content ul.list-disc > ol,
.content ul.wp-block-list > ol,
.content ul:not([class]) > ol,
.content ol.wp-block-list > ol,
.content ol:not([class]) > ol {
  margin: 0.5em 0 !important;
}
.content ul.list-disc > li::before,
.content ul.wp-block-list > li::before,
.content ul:not([class]) > li::before {
  content: '\2022';
  display: grid;
  place-content: center;
}
.content ol.wp-block-list,
.content ol:not([class]) {
  counter-reset: num;
}
.content ol.wp-block-list > li::before,
.content ol:not([class]) > li::before {
  content: '' counter(num) '.';
  counter-increment: num;
  text-align: center;
}
.content .wp-block-columns,
.content .wp-block-group,
.content .wp-block-image,
.content .wp-block-gallery,
.content .wp-block-media-text,
.content .wp-block-embed,
.content [class|="embed"],
.content iframe {
  margin-top: 2.4rem;
  margin-bottom: 2.4rem;
}
.content .wp-block-columns a,
.content .wp-block-group a,
.content .wp-block-image a,
.content .wp-block-gallery a,
.content .wp-block-media-text a,
.content .wp-block-embed a,
.content [class|="embed"] a,
.content iframe a {
  border: 0;
}
.content .wp-block-table {
  margin-top: 2.4rem;
  margin-bottom: 2.4rem;
}
.content .wp-block-table table {
  width: 100%;
  border-top: 1px solid #e2e2e2;
  border-left: 1px solid #e2e2e2;
  border-right: 1px solid #e2e2e2;
}
.content .wp-block-table thead,
.content .wp-block-table th,
.content .wp-block-table td {
  border: 0;
}
.content .wp-block-table thead {
  background-color: rgba(24,40,66,0.08);
  font-size: 1.4rem;
  text-align: left;
  white-space: nowrap;
}
.content .wp-block-table th,
.content .wp-block-table td {
  border-bottom: 1px solid #e2e2e2;
}
.content .wp-block-separator,
.content hr {
  border: 0;
  border-bottom: 1px solid #e2e2e2;
}
.content iframe {
  width: 100%;
}
.content .wp-block-group {
  background-color: #f00;
}
.content .wp-block-group__inner-container > *:first-child {
  margin-top: 0;
}
.content .wp-block-group__inner-container > *:last-child {
  margin-bottom: 0;
}
.content .wp-block-gallery .wp-element-caption,
.content .wp-block-image .wp-element-caption,
.content figcaption {
  padding-top: 0.8rem;
  text-align: left !important;
  line-height: 1.5;
}
.content .wp-block-gallery .wp-element-caption {
  position: relative !important;
  background: none !important;
  padding: 0 !important;
}
.content *:first-child {
  margin-top: 0;
}
.content *:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 47.999em) {
  .content h2.wp-block-heading {
    font-size: 2rem;
  }
  .content h3.wp-block-heading {
    font-size: 1.7rem;
  }
  .content .wp-block-table th,
  .content .wp-block-table td {
    padding: 0.8rem 1.2rem;
  }
  .content .wp-block-columns {
    gap: 0.8rem;
  }
  .content .wp-block-separator,
  .content hr {
    margin: 2.4rem auto;
  }
  .content .wp-block-gallery .wp-element-caption,
  .content .wp-block-image .wp-element-caption,
  .content figcaption {
    font-size: 1.1rem !important;
  }
}
@media screen and (min-width: 48em) {
  .content h2.wp-block-heading {
    font-size: 2.1rem;
  }
  .content h3.wp-block-heading {
    font-size: 1.8rem;
  }
  .content .wp-block-table th,
  .content .wp-block-table td {
    padding: 1rem 2rem;
  }
  .content .wp-block-columns {
    gap: 1.6rem;
  }
  .content .wp-block-separator,
  .content hr {
    margin: 4rem auto;
  }
  .content .wp-block-gallery .wp-element-caption,
  .content .wp-block-image .wp-element-caption,
  .content figcaption {
    font-size: 1.3rem !important;
  }
}

/* フォントサイズ */
.has-small-font-size { font-size: 1.4rem; }
.has-large-font-size { font-size: 1.8rem; }
/* カラーパレット - 背景色 */
.has-orange-background-color { background-color: #E03831; }
/* カラーパレット - テキスト色 */
.has-orange-color { color: #E03831; }
.h-page,
.h-section,
.h-large,
.h-medium {
  font-family: "Noto Serif JP", serif;
}
.h-page,
.h-section {
  line-height: 1.25;
  font-weight: 600;
}
.h-page {
  text-align: center;
}
.h-large,
.h-medium,
.h-small {
  font-weight: 700;
  line-height: 1.52;
}
.h-large > em {
  display: inline-block;
  font-style: normal;
}
.txt-lead {
  line-height: 2.22;
}
.txt-bold {
  font-weight: 700;
}
.txt-note,
.list-notes > li,
.list-footnotes > li {
  padding-left: 1.2em;
}
.txt-note::before,
.list-notes > li::before,
.list-footnotes > li::before {
  width: 1.2em;
  margin-left: -1.2em;
}
.txt-note::before,
.list-notes > li::before {
  display: inline-block;
  content: '\203B';
}
.list-footnotes {
  counter-reset: num;
}
.list-footnotes > li::before {
  content: '*' counter(num) ': ';
  counter-increment: num;
}
.list-notes > li:nth-child(n+2),
.list-footnotes > li:nth-child(n+2) {
  margin-top: 0.1em;
}
.txt-highlight {
  padding: 0.4rem 1.6rem;
  background-color: rgba(255,255,255,0.5);
}
@media screen and (max-width: 47.999em) {
  .h-page {
    margin-top: 4rem;
    margin-bottom: 3.2rem;
  }
  .h-section {
    margin-bottom: 2.4rem;
  }
  .h-large:not(:first-child) {
    margin-top: 3.2rem;
  }
  .h-medium:not(:first-child) {
    margin-top: 2.4rem;
  }
  .h-small:not(:first-child) {
    margin-top: 1.6rem;
  }
  .h-large:not(:last-child),
  .h-medium:not(:last-child),
  .h-small:not(:last-child) {
    margin-bottom: 1.6rem;
  }
  .h-large:not(:last-child) + p,
  .h-medium:not(:last-child) + p,
  .h-small:not(:last-child) + p {
    margin-top: -0.5em;
  }
  .h-page,
  .h-section {
    font-size: 2.4rem;
  }
  .h-large,
  .txt-lead.-lg {
    font-size: 2rem;
  }
  .h-large > em {
    transform: translateY(0.2rem);
    margin-right: 0.4rem;
    font-size: 2.8rem;
  }
  .h-medium,
  .txt-large {
    font-size: 1.7rem;
  }
  .txt-lead {
    font-size: 1.6rem;
  }
  .txt-regular {
    font-size: 1.4rem;
  }
  .txt-small,
  .txt-note,
  .list-notes > li,
  .list-footnotes > li {
    font-size: 1.2rem;
  }
}
@media screen and (min-width: 48em) {
  .h-page {
    margin-top: 8rem;
    margin-bottom: 6.4rem;
  }
  .h-section {
    margin-bottom: 3.2rem;
  }
  .h-large:not(:first-child) {
    margin-top: 4.8rem;
  }
  .h-medium:not(:first-child) {
    margin-top: 4rem;
  }
  .h-small:not(:first-child) {
    margin-top: 2rem;
  }
  .h-large:not(:last-child),
  .h-medium:not(:last-child),
  .h-small:not(:last-child) {
    margin-bottom: 1.6rem;
  }
  .h-large:not(:last-child) + p,
  .h-medium:not(:last-child) + p,
  .h-small:not(:last-child) + p {
    margin-top: -0.5em;
  }
  .h-page,
  .h-section {
    font-size: 3.2rem;
  }
  .h-large,
  .txt-lead.-lg {
    font-size: 2.1rem;
  }
  .h-large > em {
    transform: translateY(0.25rem);
    margin-right: 0.8rem;
    font-size: 3.2rem;
  }
  .h-medium,
  .txt-lead,
  .txt-large {
    font-size: 1.8rem;
  }
  .txt-regular {
    font-size: 1.6rem;
  }
  .txt-small,
  .txt-note,
  .list-notes > li,
  .list-footnotes > li {
    font-size: 1.4rem;
  }
}
.box {
  background-color: #fff;
}
@media screen and (max-width: 47.999em) {
  .box {
    padding: 2.4rem 3.5%;
  }
}
@media screen and (min-width: 48em) {
  .box {
    padding: 8rem;
  }
}
.block.-neutral {
  background-color: #f6e8da;
}
.block.-dark {
  background-color: #f0decd;
}
.block.-light {
  background-color: #faf4ee;
}
.h-page + .block {
  padding-top: 0;
}
@media screen and (max-width: 47.999em) {
  .block {
    padding: 4rem 0;
  }
  .block__inner {
    padding: 0 4.27%;
  }
  .block__inner + .block__inner {
    margin-top: 4rem;
  }
}
@media screen and (min-width: 48em) {
  .block {
    padding: 8rem 0;
  }
  .block__inner {
    margin: auto;
    width: 92.19%;
    max-width: 80rem;
  }
  .block__inner.-nr {
    max-width: 64rem;
  }
  .block__inner.-wd {
    max-width: 120rem;
  }
  .block__inner.-xwd {
    max-width: 144rem;
  }
  .block__inner + .block__inner {
    margin-top: 8rem;
  }
}
.link-button {
  position: relative;
  background-color: #182842;
  border-radius: 0.2rem;
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  color: #f6e8da;
  line-height: 1;
  text-align: center;
}
.link-button > a {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.link-button > small {
  display: block;
  padding-top: 1.2rem;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.4rem;
  font-weight: normal;
}
@media screen and (max-width: 47.999em) {
  .link-button {
    padding: 1.6rem;
  }
  .link-button.-large {
    padding: 1.6rem;
    font-size: 2rem;
  }
}
@media screen and (min-width: 48em) {
  .link-button {
    padding: 1.4rem 3.2rem;
  }
  .link-button.-large {
    padding: 2.7rem 4rem;
    font-size: 2.4rem;
  }
}
@media not all and (hover: none) and (pointer: coarse) {
  .link-button {
    transition: opacity 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  }
  .link-button:hover,
  .link-button:active {
    opacity: 0.8;
    transition: opacity 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  }
}
.link-sns {
  position: relative;
  display: flex;
  align-items: center;
  font-size: 1.2rem;
  line-height: 1;
  letter-spacing: 0.08em;
}
.link-sns > a {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.link-sns.-insta::before {
  content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 18 19' fill='none'%3E%3Cpath fill='%23182842' d='M17.522 3.975a4.398 4.398 0 0 0-1.036-1.593 4.405 4.405 0 0 0-1.593-1.036c-.57-.223-1.23-.376-2.184-.417-.96-.042-1.266-.056-3.714-.056S6.241.88 5.281.929c-.96.041-1.614.194-2.184.417-.6.225-1.144.579-1.593 1.036A4.419 4.419 0 0 0 .468 3.975C.245 4.545.092 5.206.051 6.16c-.042.96-.056 1.266-.056 3.714s.007 2.754.056 3.714c.041.96.194 1.614.417 2.184.23.591.536 1.092 1.036 1.593.501.5 1.002.807 1.593 1.036.57.223 1.231.376 2.184.417.96.042 1.266.056 3.714.056s2.754-.007 3.714-.056c.96-.041 1.614-.194 2.184-.417a4.398 4.398 0 0 0 1.593-1.036c.5-.501.807-1.002 1.036-1.593.223-.57.376-1.231.417-2.184.042-.96.056-1.266.056-3.714s-.007-2.754-.056-3.714c-.04-.96-.194-1.614-.417-2.184Zm-1.203 9.536c-.042.876-.188 1.356-.313 1.669a2.79 2.79 0 0 1-.675 1.036c-.291.299-.645.53-1.036.675-.32.125-.793.271-1.67.313-.952.041-1.23.055-3.637.055-2.406 0-2.692-.007-3.638-.055-.876-.042-1.356-.188-1.669-.313a2.787 2.787 0 0 1-1.036-.675 2.817 2.817 0 0 1-.675-1.036c-.125-.32-.27-.793-.313-1.67-.04-.952-.055-1.237-.055-3.637s.007-2.692.055-3.638c.042-.876.188-1.356.313-1.669a2.79 2.79 0 0 1 .675-1.036c.291-.299.645-.53 1.036-.675.32-.125.793-.271 1.67-.313.952-.04 1.238-.055 3.637-.055 2.4 0 2.692.007 3.638.055.876.042 1.356.188 1.67.313.416.16.722.362 1.035.675.313.313.508.612.675 1.036.125.32.271.793.313 1.67.042.952.055 1.237.055 3.637s-.013 2.692-.055 3.638Z'/%3E%3Cpath fill='%23182842' d='M8.988 5.248a4.628 4.628 0 0 0-4.625 4.625 4.628 4.628 0 0 0 4.625 4.625 4.628 4.628 0 0 0 4.625-4.625 4.628 4.628 0 0 0-4.625-4.625Zm0 7.63a3.005 3.005 0 1 1 0-6.01 3.005 3.005 0 0 1 0 6.01ZM13.794 6.145a1.078 1.078 0 1 0 0-2.156 1.078 1.078 0 0 0 0 2.156Z'/%3E%3C/svg%3E");
  margin-right: 1.2rem;
  width: 2.3rem;
  height: 2.4rem;
}
@media not all and (hover: none) and (pointer: coarse) {
  .link-sns {
    transition: opacity 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  }
  .link-sns:hover,
  .link-sns:active {
    opacity: 0.6;
    transition: opacity 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  }
}
.toggle-heading {
  position: relative;
  display: inline-block;
  cursor: pointer;
  padding: 0.4rem 0.5em 0.4rem 1.25em;
}
.toggle-heading > span {
  text-decoration: underline;
  text-underline-offset: 3px;
}
.toggle-heading::before {
  content: '+';
  position: absolute;
  left: 0;
  margin-right: 0.25em;
  width: 1em;
  text-align: center;
}
.toggle-heading.-open::before {
  content: '–';
}
@media not all and (hover: none) and (pointer: coarse) {
  .toggle-heading:hover {
    color: #f98334;
  }
}
.toggle-content {
  position: relative;
  transition: all 0.25s;
  height: 0;
  opacity: 0;
  overflow: hidden;
}
.toggle-content.-open {
  transition: all 0.25s;
  opacity: 1;
  padding: 2.4rem 0 0.8rem;
}
/**
 * local
 */
/* home */
.home-slider {
  position: relative;
}
.home-slider__content {
  position: relative;
  display: grid;
  align-content: center;
  width: 100%;
}
.home-slider__content-image {
  position: absolute;
  z-index: -1;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.home-slider__content-catch,
.home-slider__content-copy {
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  color: #fff;
}
.home-slider__content-catch {
  line-height: 1.11;
}
.home-slider__content-copy {
  line-height: 1.8;
}
.home-slider .swiper-pagination {
  height: 2rem;
}
.home-slider .swiper-pagination-bullet {
  margin: 0 0.8rem !important;
  background-color: #fff;
  opacity: 1;
}
.home-slider .swiper-pagination-bullet-active {
  background-color: #f98334;
}
@media screen and (max-width: 47.999em) {
  .home-slider__content {
    height: 40rem;
  }
  .home-slider__content-catch,
  .home-slider__content-copy {
    padding: 0 4.27%;
  }
  .home-slider__content-catch {
    margin-bottom: 0.8rem;
    font-size: 2.2rem;
  }
  .home-slider__content-copy {
    font-size: 1.6rem;
  }
  .home-slider__pickup {
    transform: translateY(-4rem);
    margin-bottom: -1.2rem;
  }
  .home-slider .swiper-pagination {
    bottom: 0.8rem !important;
  }
  .home-slider .swiper-pagination-bullet {
    width: 0.8rem;
    height: 0.8rem;
  }
}
@media screen and (min-width: 48em) {
  .home-slider__content {
    height: 70rem;
    max-height: 100vh;
  }
  .home-slider__content-catch,
  .home-slider__content-copy {
    width: 92.19%;
    max-width: 120rem;
    margin: auto;
  }
  .home-slider__content-catch {
    margin-bottom: 2.4rem;
    font-size: 3.6rem;
  }
  .home-slider__content-copy {
    font-size: 2rem;
  }
  .home-slider__pickup {
    transform: translateY(-7.2rem);
    margin-bottom: -4.4rem;
  }
  .home-slider .swiper-pagination {
    bottom: 4.8rem !important;
  }
  .home-slider .swiper-pagination-bullet {
    width: 1.2rem;
    height: 1.2rem;
  }
}
.home-intro__image {
  position: relative;
}
@media screen and (max-width: 47.999em) {
  .home-intro__text {
    margin-bottom: 3.2rem;
  }
  .home-intro__image > img:nth-child(1) {
    margin-left: 34.69%;
    width: 69.97%;
  }
  .home-intro__image > img:nth-child(2) {
    margin-top: -24rem;
    margin-left: -4.66%;
    width: 51.31%;
  }
  .home-intro__image > img:nth-child(3) {
    margin-top: -1.6rem;
    margin-left: -7%;
    width: 42.57%;
  }
}
@media screen and (min-width: 48em) {
  .home-intro {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
  }
  .home-intro__text {
    margin-right: 4rem;
  }
  .home-intro__image {
    height: calc(100vw * (834 / 1440));
    max-height: 83.4rem;
  }
  .home-intro__image > img {
    position: absolute;
  }
  .home-intro__image > img:nth-child(1) {
    top: 0;
    right: -20%;
    width: 80%;
  }
  .home-intro__image > img:nth-child(2) {
    top: 21.1%;
    left: 0;
    width: 53.33%;
  }
  .home-intro__image > img:nth-child(3) {
    bottom: 0;
    left: 31.67%;
    width: 48.67%;
  }
}
.home-jewelry {
  display: grid;
  gap: 0.4rem;
}
.home-jewelry__item {
  position: relative;
}
.home-jewelry__item figcaption {
  position: absolute;
  font-size: 1.2rem;
  color: #fff;
}
.home-jewelry__item img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 47.999em) {
  .home-jewelry {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(6, 1fr);
  }
  .home-jewelry__item figcaption {
    left: 0.4rem;
    bottom: 0.4rem;
  }
  .home-jewelry__item:nth-child(1) {
    grid-area: 1/1/3/3;
  }
  .home-jewelry__item:nth-child(2) {
    grid-area: 3/1/4/3;
  }
  .home-jewelry__item:nth-child(3) {
    grid-area: 4/1/5/2;
  }
  .home-jewelry__item:nth-child(4) {
    grid-area: 4/2/5/3;
  }
  .home-jewelry__item:nth-child(5) {
    grid-area: 5/1/7/3;
  }
}
@media screen and (min-width: 48em) {
  .home-jewelry {
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(3, 1fr);
  }
  .home-jewelry__item figcaption {
    left: 1.2rem;
    bottom: 1.2rem;
  }
  .home-jewelry__item:nth-child(1) {
    grid-area: 1/1/3/3;
  }
  .home-jewelry__item:nth-child(2) {
    grid-area: 3/1/4/3;
  }
  .home-jewelry__item:nth-child(3) {
    grid-area: 1/3/2/4;
  }
  .home-jewelry__item:nth-child(4) {
    grid-area: 1/4/2/5;
  }
  .home-jewelry__item:nth-child(5) {
    grid-area: 2/3/4/5;
  }
}
/* about */
@media screen and (max-width: 47.999em) {
  .about-col__text {
    padding-bottom: 2.4rem;
  }
  .about-col + .about-col {
    margin-top: 2.4rem;
  }
}
@media screen and (min-width: 48em) {
  .about-col {
    display: grid;
  }
  .about-col.-jewelry {
    grid-template-columns: auto 24.8rem;
    gap: 2.4rem;
  }
  .about-col.-story01 {
    grid-template-columns: auto 44rem;
    gap: 4rem;
  }
  .about-col.-story01 .about-col__image {
    order: -1;
  }
  .about-col.-story02 {
    grid-template-columns: auto 28rem;
    gap: 4rem;
  }
  .about-col__image {
    padding: 0.5em 0;
  }
  .about-col + .about-col {
    margin-top: 4rem;
  }
}
/* guide */
.guide-step {
  display: grid;
}
.guide-step__text {
  line-height: 1.75;
}
@media screen and (max-width: 47.999em) {
  .guide-step {
    grid-template-columns: 4.8rem auto;
    gap: 1.6rem;
  }
  .guide-step__image {
    width: 4.8rem;
    height: 4.8rem;
    overflow: hidden;
  }
  .guide-step__image > img {
    transform: scale(2);
    -o-object-fit: cover;
       object-fit: cover;
  }
  .guide-step + .guide-step {
    margin-top: 2.4rem;
  }
}
@media screen and (min-width: 48em) {
  .guide-step {
    grid-template-columns: 16rem auto;
    align-items: center;
    gap: 3.2rem;
  }
  .guide-step + .guide-step {
    margin-top: 4rem;
  }
}
/* contact */
.form-content input {
  width: 100%;
  max-width: 100%;
}
.form-content textarea {
  width: 100%;
  min-height: 16rem;
  line-height: 1.5;
}
.form-content input,
.form-content textarea {
  outline: none;
  border-radius: 0.8rem;
  padding: 1.1rem 1.6rem;
  border: 1px solid #757575;
  background-color: #fff;
  font-size: 1.6rem;
}
.form-content input:focus,
.form-content textarea:focus {
  box-shadow: inset 0 0 2px 0 #fff;
}
.form-content input[type="checkbox"] {
  margin-right: 0.4rem;
  vertical-align: middle;
}
.form-content span.error {
  color: #a30c02 !important;
  display: block !important;
  width: auto !important;
}
.form-content ::-webkit-input-placeholder {
  color: #ccc;
}
.form-content ::-moz-placeholder {
  color: #ccc;
}
.form-content :-ms-input-placeholder {
  color: #ccc;
}
.form-content select {
  cursor: pointer;
  text-overflow: ellipsis;
  border: 1px solid #757575;
  border-radius: 0.8rem;
  outline: none;
  background: transparent;
  background: #fff url("../img/icon-selectbox.svg") right 1.6rem center no-repeat;
  background-size: 1.6rem;
  box-shadow: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  padding: 1.1rem 4rem 1.1rem 1.6rem;
  font-size: 1.6rem;
}
.form-content .wpcf7-not-valid-tip {
  font-size: 1.2rem !important;
  width: auto !important;
}
.form-back,
.form-submit {
  display: flex;
  align-items: center;
  justify-content: center;
}
.form-back input[type="button"] {
  font-weight: 700;
  border: 0;
  outline: none;
  padding: 0;
  line-height: 1;
  border-bottom: 1px solid #182842;
  background-color: transparent;
}
.form-submit {
  width: 100%;
  max-width: 72rem;
}
.form-submit input[type="submit"] {
  width: 100%;
  height: 100%;
  border: 0;
  outline: none;
  padding: 0;
  background-color: #182842;
  border-radius: 0.2rem;
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  font-size: 1.8rem;
  color: #fff;
  text-align: center;
  transition: opacity 0.4s cubic-bezier(0.19, 1, 0.22, 1);
}
.form-submit input[type="submit"]:disabled {
  cursor: not-allowed /* 禁止カーソル */;
  background-color: #e2e2e2;
}
.form-submit .wpcf7-spinner {
  display: none;
}
@media screen and (max-width: 47.999em) {
  .form-content input,
  .form-content select {
    width: 100%;
  }
  .form-submit input[type="submit"] {
    line-height: 4.8rem;
  }
}
@media screen and (min-width: 48em) {
  .form-content:not(.-contact) input,
  .form-content:not(.-contact) select {
    width: 32rem;
  }
  .form-content.-contact input,
  .form-content.-contact select {
    width: 100% !important;
  }
  .form-back input[type="button"]:hover {
    opacity: 0.8;
  }
  .form-submit input[type="submit"] {
    line-height: 5rem;
  }
  .form-submit input[type="submit"]:not(:disabled):hover {
    opacity: 0.8;
  }
}
.form-content {
  display: grid;
  margin-top: 2.4rem;
}
.form-content__item {
  display: flex;
  flex-direction: column;
}
.form-content__item.-required::after {
  content: '必須';
  align-self: flex-start;
  margin-top: 0.8rem;
  padding: 0.4rem 0.6rem;
  background-color: #ff3b30;
  border-radius: 0.2rem;
  font-size: 1.2rem;
  color: #fff;
  line-height: 1;
}
@media screen and (max-width: 47.999em) {
  .form-content {
    gap: 1.2rem;
  }
}
@media screen and (min-width: 48em) {
  .form-content:not(.-contact) {
    grid-template-columns: auto auto;
    justify-content: start;
    gap: 1.6rem;
  }
  .form-content__item.-colspan {
    grid-column-start: span 2;
  }
}
.form-order {
  position: fixed;
  left: 0;
  right: 0;
  z-index: 99;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #fff;
  font-size: 1.4rem;
  box-shadow: 0px 0px 4px rgba(0,0,0,0.08);
}
.form-order__text-copy,
.form-order__text-price b,
.form-order__text-price em {
  font-weight: 700;
  font-style: normal;
}
@media screen and (max-width: 47.999em) {
  .form-order {
    gap: 0.8rem;
    padding: 1rem 4.27%;
  }
  .form-order__text {
    text-align: center;
    line-height: 1;
  }
  .form-order__text-copy {
    display: none;
  }
  .form-order__text-price {
    display: inline-block;
    margin-top: 0.3rem;
    font-size: 1.6rem;
    line-height: 1;
  }
  .form-order__text-price em {
    font-size: 2.4rem;
  }
}
@media screen and (min-width: 48em) {
  .form-order {
    gap: 1rem;
    min-width: 1024px;
    padding: 1.6rem;
  }
  .form-order__text {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 1.6rem;
    line-height: 1;
  }
  .form-order__text-price {
    font-size: 1.8rem;
  }
  .form-order__text-price em {
    font-size: 2.8rem;
  }
}
.form-comfirm {
  display: grid;
  grid-template-columns: -webkit-max-content auto;
  grid-template-columns: max-content auto;
  gap: 0.4rem 1.6rem;
}
.form-comfirm > dd {
  font-weight: 700;
}
/* Trumps
--------------------------------------------------- */
/* typo */
._center {
  text-align: center !important;
}
._left {
  text-align: left !important;
}
._right {
  text-align: right !important;
}
._small {
  font-size: 0.8em !important;
}
._large {
  font-size: 1.2em !important;
}
._nowrap {
  white-space: nowrap;
}
@media screen and (max-width: 47.999em) {
  ._center-sp {
    text-align: center !important;
  }
  ._left-sp {
    text-align: left !important;
  }
  ._right-sp {
    text-align: right !important;
  }
  ._small-sp {
    font-size: 0.8em !important;
  }
  ._large-sp {
    font-size: 1.2em !important;
  }
  ._nowrap-sp {
    white-space: nowrap;
  }
}
@media screen and (min-width: 48em) {
  ._center-pc {
    text-align: center !important;
  }
  ._left-pc {
    text-align: left !important;
  }
  ._right-pc {
    text-align: right !important;
  }
  ._small-pc {
    font-size: 0.8em !important;
  }
  ._large-pc {
    font-size: 1.2em !important;
  }
  ._nowrap-pc {
    white-space: nowrap;
  }
}
/* layout */
._pull-rt {
  float: right !important;
}
._pull-lt {
  float: left !important;
}
._p0 {
  padding: 0 !important;
}
._pt0,
._py0 {
  padding-top: 0 !important;
}
._pb0,
._py0 {
  padding-bottom: 0 !important;
}
._mr-auto {
  margin-right: auto !important;
}
._ml-auto {
  margin-left: auto !important;
}
._mx-auto {
  margin-left: auto !important;
  margin-right: auto !important;
}
._m0 {
  margin: 0 !important;
}
._mt0,
._my0 {
  margin-top: 0 !important;
}
._mb0,
._my0 {
  margin-bottom: 0 !important;
}
._mt2,
._my2 {
  margin-top: 0.2rem !important;
}
._mb2,
._my2 {
  margin-bottom: 0.2rem !important;
}
._mt4,
._my4 {
  margin-top: 0.4rem !important;
}
._mb4,
._my4 {
  margin-bottom: 0.4rem !important;
}
._mt8,
._my8 {
  margin-top: 0.8rem !important;
}
._mb8,
._my8 {
  margin-bottom: 0.8rem !important;
}
._mt12,
._my12 {
  margin-top: 1.2rem !important;
}
._mb12,
._my12 {
  margin-bottom: 1.2rem !important;
}
._mt16,
._my16 {
  margin-top: 1.6rem !important;
}
._mb16,
._my16 {
  margin-bottom: 1.6rem !important;
}
._mt20,
._my20 {
  margin-top: 2rem !important;
}
._mb20,
._my20 {
  margin-bottom: 2rem !important;
}
._mt24,
._my24 {
  margin-top: 2.4rem !important;
}
._mb24,
._my24 {
  margin-bottom: 2.4rem !important;
}
._mt28,
._my28 {
  margin-top: 2.8rem !important;
}
._mb28,
._my28 {
  margin-bottom: 2.8rem !important;
}
._mt32,
._my32 {
  margin-top: 3.2rem !important;
}
._mb32,
._my32 {
  margin-bottom: 3.2rem !important;
}
._mt40,
._my40 {
  margin-top: 4rem !important;
}
._mb40,
._my40 {
  margin-bottom: 4rem !important;
}
._mt48,
._my48 {
  margin-top: 4.8rem !important;
}
._mb48,
._my48 {
  margin-bottom: 4.8rem !important;
}
._mt56,
._my56 {
  margin-top: 5.6rem !important;
}
._mb56,
._my56 {
  margin-bottom: 5.6rem !important;
}
._mt64,
._my64 {
  margin-top: 6.4rem !important;
}
._mb64,
._my64 {
  margin-bottom: 6.4rem !important;
}
._mt72,
._my72 {
  margin-top: 7.2rem !important;
}
._mb72,
._my72 {
  margin-bottom: 7.2rem !important;
}
._mt80,
._my80 {
  margin-top: 8rem !important;
}
._mb80,
._my80 {
  margin-bottom: 8rem !important;
}
._mt96,
._my96 {
  margin-top: 9.6rem !important;
}
._mb96,
._my96 {
  margin-bottom: 9.6rem !important;
}
._mt120,
._my120 {
  margin-top: 12rem !important;
}
._mb120,
._my120 {
  margin-bottom: 12rem !important;
}
._mt160,
._my160 {
  margin-top: 16rem !important;
}
._mb160,
._my160 {
  margin-bottom: 16rem !important;
}
._mt200,
._my200 {
  margin-top: 20rem !important;
}
._mb200,
._my200 {
  margin-bottom: 20rem !important;
}
@media screen and (max-width: 47.999em) {
  ._p0-sp {
    padding: 0 !important;
  }
  ._pt0-sp,
  ._py0-sp {
    padding-top: 0 !important;
  }
  ._pb0-sp,
  ._py0-sp {
    padding-bottom: 0 !important;
  }
  ._mr-auto-sp {
    margin-right: auto !important;
  }
  ._ml-auto-sp {
    margin-left: auto !important;
  }
  ._mx-auto-sp {
    margin-left: auto !important;
    margin-right: auto !important;
  }
  ._mt2-sp,
  ._my2-sp {
    margin-top: 0.2rem !important;
  }
  ._mb2-sp,
  ._my2-sp {
    margin-bottom: 0.2rem !important;
  }
  ._mt4-sp,
  ._my4-sp {
    margin-top: 0.4rem !important;
  }
  ._mb4-sp,
  ._my4-sp {
    margin-bottom: 0.4rem !important;
  }
  ._mt8-sp,
  ._my8-sp {
    margin-top: 0.8rem !important;
  }
  ._mb8-sp,
  ._my8-sp {
    margin-bottom: 0.8rem !important;
  }
  ._mt12-sp,
  ._my12-sp {
    margin-top: 1.2rem !important;
  }
  ._mb12-sp,
  ._my12-sp {
    margin-bottom: 1.2rem !important;
  }
  ._mt16-sp,
  ._my16-sp {
    margin-top: 1.6rem !important;
  }
  ._mb16-sp,
  ._my16-sp {
    margin-bottom: 1.6rem !important;
  }
  ._mt20-sp,
  ._my20-sp {
    margin-top: 2rem !important;
  }
  ._mb20-sp,
  ._my20-sp {
    margin-bottom: 2rem !important;
  }
  ._mt24-sp,
  ._my24-sp {
    margin-top: 2.4rem !important;
  }
  ._mb24-sp,
  ._my24-sp {
    margin-bottom: 2.4rem !important;
  }
  ._mt28-sp,
  ._my28-sp {
    margin-top: 2.8rem !important;
  }
  ._mb28-sp,
  ._my28-sp {
    margin-bottom: 2.8rem !important;
  }
  ._mt32-sp,
  ._my32-sp {
    margin-top: 3.2rem !important;
  }
  ._mb32-sp,
  ._my32-sp {
    margin-bottom: 3.2rem !important;
  }
  ._mt40-sp,
  ._my40-sp {
    margin-top: 4rem !important;
  }
  ._mb40-sp,
  ._my40-sp {
    margin-bottom: 4rem !important;
  }
  ._mt48-sp,
  ._my48-sp {
    margin-top: 4.8rem !important;
  }
  ._mb48-sp,
  ._my48-sp {
    margin-bottom: 4.8rem !important;
  }
  ._mt56-sp,
  ._my56-sp {
    margin-top: 5.6rem !important;
  }
  ._mb56-sp,
  ._my56-sp {
    margin-bottom: 5.6rem !important;
  }
  ._mt64-sp,
  ._my64-sp {
    margin-top: 6.4rem !important;
  }
  ._mb64-sp,
  ._my64-sp {
    margin-bottom: 6.4rem !important;
  }
  ._mt72-sp,
  ._my72-sp {
    margin-top: 7.2rem !important;
  }
  ._mb72-sp,
  ._my72-sp {
    margin-bottom: 7.2rem !important;
  }
  ._mt80-sp,
  ._my80-sp {
    margin-top: 8rem !important;
  }
  ._mb80-sp,
  ._my80-sp {
    margin-bottom: 8rem !important;
  }
  ._mt96-sp,
  ._my96-sp {
    margin-top: 9.6rem !important;
  }
  ._mb96-sp,
  ._my96-sp {
    margin-bottom: 9.6rem !important;
  }
  ._mt120-sp,
  ._my120-sp {
    margin-top: 12rem !important;
  }
  ._mb120-sp,
  ._my120-sp {
    margin-bottom: 12rem !important;
  }
  ._mt160-sp,
  ._my160-sp {
    margin-top: 16rem !important;
  }
  ._mb160-sp,
  ._my160-sp {
    margin-bottom: 16rem !important;
  }
  ._mt200-sp,
  ._my200-sp {
    margin-top: 20rem !important;
  }
  ._mb200-sp,
  ._my200-sp {
    margin-bottom: 20rem !important;
  }
}
@media screen and (min-width: 48em) {
  ._p0-pc {
    padding: 0 !important;
  }
  ._pt0-pc,
  ._py0-pc {
    padding-top: 0 !important;
  }
  ._pb0-pc,
  ._py0-pc {
    padding-bottom: 0 !important;
  }
  ._mr-auto-pc {
    margin-right: auto !important;
  }
  ._ml-auto-pc {
    margin-left: auto !important;
  }
  ._mx-auto-pc {
    margin-left: auto !important;
    margin-right: auto !important;
  }
  ._mt2-pc,
  ._my2-pc {
    margin-top: 0.2rem !important;
  }
  ._mb2-pc,
  ._my2-pc {
    margin-bottom: 0.2rem !important;
  }
  ._mt4-pc,
  ._my4-pc {
    margin-top: 0.4rem !important;
  }
  ._mb4-pc,
  ._my4-pc {
    margin-bottom: 0.4rem !important;
  }
  ._mt8-pc,
  ._my8-pc {
    margin-top: 0.8rem !important;
  }
  ._mb8-pc,
  ._my8-pc {
    margin-bottom: 0.8rem !important;
  }
  ._mt12-pc,
  ._my12-pc {
    margin-top: 1.2rem !important;
  }
  ._mb12-pc,
  ._my12-pc {
    margin-bottom: 1.2rem !important;
  }
  ._mt16-pc,
  ._my16-pc {
    margin-top: 1.6rem !important;
  }
  ._mb16-pc,
  ._my16-pc {
    margin-bottom: 1.6rem !important;
  }
  ._mt20-pc,
  ._my20-pc {
    margin-top: 2rem !important;
  }
  ._mb20-pc,
  ._my20-pc {
    margin-bottom: 2rem !important;
  }
  ._mt24-pc,
  ._my24-pc {
    margin-top: 2.4rem !important;
  }
  ._mb24-pc,
  ._my24-pc {
    margin-bottom: 2.4rem !important;
  }
  ._mt28-pc,
  ._my28-pc {
    margin-top: 2.8rem !important;
  }
  ._mb28-pc,
  ._my28-pc {
    margin-bottom: 2.8rem !important;
  }
  ._mt32-pc,
  ._my32-pc {
    margin-top: 3.2rem !important;
  }
  ._mb32-pc,
  ._my32-pc {
    margin-bottom: 3.2rem !important;
  }
  ._mt40-pc,
  ._my40-pc {
    margin-top: 4rem !important;
  }
  ._mb40-pc,
  ._my40-pc {
    margin-bottom: 4rem !important;
  }
  ._mt48-pc,
  ._my48-pc {
    margin-top: 4.8rem !important;
  }
  ._mb48-pc,
  ._my48-pc {
    margin-bottom: 4.8rem !important;
  }
  ._mt56-pc,
  ._my56-pc {
    margin-top: 5.6rem !important;
  }
  ._mb56-pc,
  ._my56-pc {
    margin-bottom: 5.6rem !important;
  }
  ._mt64-pc,
  ._my64-pc {
    margin-top: 6.4rem !important;
  }
  ._mb64-pc,
  ._my64-pc {
    margin-bottom: 6.4rem !important;
  }
  ._mt72-pc,
  ._my72-pc {
    margin-top: 7.2rem !important;
  }
  ._mb72-pc,
  ._my72-pc {
    margin-bottom: 7.2rem !important;
  }
  ._mt80-pc,
  ._my80-pc {
    margin-top: 8rem !important;
  }
  ._mb80-pc,
  ._my80-pc {
    margin-bottom: 8rem !important;
  }
  ._mt96-pc,
  ._my96-pc {
    margin-top: 9.6rem !important;
  }
  ._mb96-pc,
  ._my96-pc {
    margin-bottom: 9.6rem !important;
  }
  ._mt120-pc,
  ._my120-pc {
    margin-top: 12rem !important;
  }
  ._mb120-pc,
  ._my120-pc {
    margin-bottom: 12rem !important;
  }
  ._mt160-pc,
  ._my160-pc {
    margin-top: 16rem !important;
  }
  ._mb160-pc,
  ._my160-pc {
    margin-bottom: 16rem !important;
  }
  ._mt200-pc,
  ._my200-pc {
    margin-top: 20rem !important;
  }
  ._mb200-pc,
  ._my200-pc {
    margin-bottom: 20rem !important;
  }
}
/* responsive */
@media screen and (max-width: 47.999em) {
  ._hide-sp {
    display: none;
  }
}
@media screen and (min-width: 48em) {
  ._hide-pc {
    display: none;
  }
}
/* JS, Plugins
 --------------------------------------------------- */
/* wp-pagenav */
.wp-pagenavi {
  display: flex;
  align-items: center;
  font-weight: bolder;
  font-size: 1.2rem;
}
.wp-pagenavi > a:link,
.wp-pagenavi > a:visited {
  background-color: #008b59;
  border-radius: 0.2rem;
  color: #fff;
  text-decoration: none;
}
.wp-pagenavi > .page,
.wp-pagenavi > .current,
.wp-pagenavi > .first,
.wp-pagenavi > .last,
.wp-pagenavi > .previouspostslink,
.wp-pagenavi > .nextpostslink {
  display: flex;
  justify-content: center;
  align-items: center;
}
.wp-pagenavi > .current {
  background-color: rgba(0,139,89,0.6);
  border-radius: 0.2rem;
  color: #fff;
}
.wp-pagenavi > .first::before,
.wp-pagenavi > .previouspostslink::before {
  content: '';
  display: inline-block;
  width: 0.6rem;
  height: 0.6rem;
  border-bottom: 0.15rem solid #fff;
  border-left: 0.15rem solid #fff;
  transform: rotate(45deg);
}
.wp-pagenavi > .first::before {
  margin-right: 0.4rem;
}
.wp-pagenavi > .last::after,
.wp-pagenavi > .nextpostslink::after {
  content: '';
  display: inline-block;
  width: 0.6rem;
  height: 0.6rem;
  border-top: 0.15rem solid #fff;
  border-right: 0.15rem solid #fff;
  transform: rotate(45deg);
}
.wp-pagenavi > .last::after {
  margin-left: 0.4rem;
}
@media screen and (max-width: 47.999em) {
  .wp-pagenavi {
    overflow-x: scroll;
    white-space: nowrap;
    width: 109.33%;
    margin-left: -4.66%;
    margin-right: -4.66%;
    padding: 0.8rem;
    line-height: 3.2rem;
    text-align: center;
  }
  .wp-pagenavi > .extend {
    padding: 0 0.2rem;
  }
  .wp-pagenavi > .page,
  .wp-pagenavi > .current,
  .wp-pagenavi > .first,
  .wp-pagenavi > .last,
  .wp-pagenavi > .previouspostslink,
  .wp-pagenavi > .nextpostslink {
    margin: 0 0.1rem;
    height: 3.2rem;
  }
  .wp-pagenavi > .page,
  .wp-pagenavi > .current,
  .wp-pagenavi > .previouspostslink,
  .wp-pagenavi > .nextpostslink {
    min-width: 3.2rem;
  }
  .wp-pagenavi > .first,
  .wp-pagenavi > .last {
    min-width: 5.6rem;
  }
  .wp-pagenavi > .first,
  .wp-pagenavi > .last {
    padding: 0 0.8rem;
  }
}
@media screen and (min-width: 48em) {
  .wp-pagenavi {
    justify-content: center;
    line-height: 3.2rem;
  }
  .wp-pagenavi > a:hover,
  .wp-pagenavi > a:active {
    color: #fff;
    background-color: rgba(0,139,89,0.6);
  }
  .wp-pagenavi > .extend {
    padding: 0 0.8rem;
  }
  .wp-pagenavi > .page,
  .wp-pagenavi > .current,
  .wp-pagenavi > .first,
  .wp-pagenavi > .last,
  .wp-pagenavi > .previouspostslink,
  .wp-pagenavi > .nextpostslink {
    margin: 0 0.1rem;
    min-width: 4rem;
    height: 3.2rem;
  }
  .wp-pagenavi > .first,
  .wp-pagenavi > .last {
    padding: 0 1.6rem;
  }
}
/* wp login */
.customize-support .frame__header {
  top: 32px;
}
