@charset "UTF-8";
/* ---------------------------
  A Modern CSS Reset
----------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
}

body, h1, h2, h3, h4, p, figure, blockquote, dl, dd, ul, ol {
  margin: 0;
}

ul {
  padding: 0;
}

ul, ol {
  list-style: none;
}

body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

a:not([class]) {
  text-decoration-skip-ink: auto;
}

img, picture {
  max-width: 100%;
  display: block;
}

input, button, textarea, select {
  font: inherit;
}

/* ---------------------------
  variable
----------------------------- */
:root {
  --red: #8E110D;
  --bgc: #F0F0F0;
  --fc: #000000;
  --bdc: #CBCBCB;
  --jaFont: "Zen Kaku Gothic New","游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", Meiryo, メイリオ, Osaka, "MS PGothic", arial, helvetica, sans-serif;
  --enFont: "Josefin Sans", sans-serif;
}

/* ---------------------------
  mixin
----------------------------- */
/* ---------------------------
  cross browser
----------------------------- */
/* ---------------------------
  function
----------------------------- */
/* ---------------------------
  base
----------------------------- */

html {
  overflow-x: hidden;
}

body {
  font-size: 14px;
  line-height: 1.5;
  font-family: var(--jaFont);
  font-weight: 500;
  color: var(--fc);
  font-feature-settings: "palt";
  letter-spacing: 0.025em;
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
}

html.is_not_scroll, body.is_not_scroll {
  overflow: hidden;
}

a {
  color: var(--fc);
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
}

button {
  appearance: none;
  -webkit-appearance: none;
  margin: 0;
  padding: 0;
  border: none;
  border-radius: 0;
  background-color: transparent;
}


/* ---------------------------
  utility
----------------------------- */
.wrapper {
  margin: 0 auto;
  max-width: 980px;
  padding: 0 20px;
  width: 100%;
}
@media screen and (max-width: 640px) {
  .wrapper {
    padding: 0 10px;
  }
}

.br-sp {
  display: none;
}
@media screen and (max-width: 640px) {
  .br-sp {
    display: inline;
  }
}

.br-sp-none {
  display: inline;
}
@media screen and (max-width: 640px) {
  .br-sp-none {
    display: none;
  }
}

/* ---------------------------
  component - head
----------------------------- */
.c-head-en {
  text-align: center;
  font-size: 36px;
  color: var(--red);
  font-family: var(--enFont);
  font-weight: bold;
  font-style: italic;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1em;
  line-height: 1.2;
}
@media screen and (max-width: 896px) {
  .c-head-en {
    font-size: 30px;
  }
}
@media screen and (max-width: 640px) {
  .c-head-en {
    font-size: 26px;
  }
}
.c-head-en span {
  display: block;
  text-align: center;
  font-size: 16px;
  color: var(--fc);
  font-family: var(--jaFont);
  font-weight: normal;
  font-style: normal;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 896px) {
  .c-head-en span {
    font-size: 15px;
  }
}
@media screen and (max-width: 640px) {
  .c-head-en span {
    font-size: 14px;
  }
}

/* ---------------------------
  component - text
----------------------------- */
.c-lead {
  text-align: center;
  font-size: 16px;
  line-height: 2;
}
@media screen and (max-width: 640px) {
  .c-lead {
    font-size: 14px;
  }
}

/* ---------------------------
  component - btn link
----------------------------- */
.c-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 280px;
  width: 100%;
  height: 40px;
  border-radius: 5px;
  margin: 0 auto;
  font-size: 12px;
  text-align: center;
  padding: 1em 1.5em;
  line-height: 1.1;
  background-repeat: no-repeat;
  background-position: center right 10px;
  box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.25);
}
@media screen and (max-width: 640px) {
  .c-btn {
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.25);
  }
}
.c-btn--chevron-bgwhite {
  background-image: url(../img/common/right-chevron-black.svg);
  background-size: 6px;
  border: 1px solid var(--bdc);
  background-color: #fff;
}
.c-btn--chevron-bgred {
  background-image: url(../img/common/right-chevron-white.svg);
  background-size: 6px;
  background-color: var(--red);
  color: #ffffff;
}
.c-btn--download-bgred {
  background-image: url(../img/common/icon-download.svg);
  background-size: 5px 19px;
  background-color: var(--red);
  color: #ffffff;
}

.c-btn-round {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 280px;
  width: 100%;
  height: 50px;
  border-radius: 25px;
  margin: 0 auto;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-align: center;
  padding: 1em 1.5em;
  background-image: url(../img/common/right-chevron-white.svg);
  background-size: 6px;
  background-repeat: no-repeat;
  background-position: center right 10px;
  box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.25);
  background-color: var(--red);
  color: #ffffff;
}
@media screen and (max-width: 640px) {
  .c-btn-round {
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.25);
  }
}

/* ---------------------------
  component - margin
----------------------------- */
:root .c-mt1em {
  margin-top: 1em;
}
:root .c-mt2em {
  margin-top: 2em;
}
:root .c-mt3em {
  margin-top: 3em;
}
:root .c-mb1em {
  margin-bottom: 1em;
}
:root .c-mb15em {
  margin-bottom: 1.5em;
}
:root .c-mb2em {
  margin-bottom: 2em;
}
:root .c-mb3em {
  margin-bottom: 3em;
}

/* ---------------------------
  header
----------------------------- */
.header {
  width: 100%;
}

.header--home {
  height: 150px;
}
@media screen and (max-width: 640px) {
  .header--home {
    height: 80px;
  }
}
.header--home .header__logo {
  position: relative;
  z-index: 100;
  padding-top: 32px;
  padding-left: 40px;
}
@media screen and (max-width: 896px) {
  .header--home .header__logo {
    padding-top: 32px;
    padding-left: 20px;
  }
}
@media screen and (max-width: 640px) {
  .header--home .header__logo {
    padding-top: 15px;
    padding-left: 15px;
  }
}
@media screen and (max-width: 896px) {
  .header--home .header__logo img {
    width: 280px;
    height: 61px;
  }
}
@media screen and (max-width: 640px) {
  .header--home .header__logo img {
    width: 220px;
    height: 48px;
  }
}
.header--home .header__logo a {
  display: block;
  transition: opacity 0.2s ease-in-out;
}
@media (hover: hover) and (pointer: fine) {
  .header--home .header__logo a:hover {
    opacity: 0.7;
  }
}

.header--page {
  display: flex;
  align-items: center;
  height: 66px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  padding-left: 30px;
}
@media screen and (max-width: 640px) {
  .header--page {
    padding-left: 15px;
  }
}

.header__nav {
  position: fixed;
  top: 0;
  right: -400px;
  width: 100%;
  max-width: 280px;
  height: 100vh;
  height: 100dvh;
  padding: 10px 0;
  background-color: var(--red);
  overflow-y: auto;
  z-index: 2000;
  transition: right 0.3s ease-out;
}
@media screen and (max-width: 640px) {
  .header__nav {
    max-width: inherit;
    width: 75%;
    right: -100%;
  }
}
.header__nav.is_active {
  right: 0;
}

.g-nav-overlay {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  right: 0;
  transform: translateX(101%);
  background-color: transparent;
  z-index: 1200;
}
.g-nav-overlay.is_active {
  transform: translateX(0);
}

.g-nav {
  display: block;
  width: 100%;
  margin-top: 10px;
}

.g-nav__item {
  border-bottom: 1px solid #7E080A;
}
.g-nav__item:first-of-type {
  border-top: 1px solid #7E080A;
}
.g-nav__item > a,
.g-nav__item button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  font-size: 14px;
  color: #ffffff;
  padding: 12px 20px;
  text-align: left;
  cursor: pointer;
}
.g-nav__item > a {
  background-image: url(../img/common/right-chevron-white.svg);
  background-size: 6px 6px;
  background-position: right 15px center;
  background-repeat: no-repeat;
}
.g-nav__item button {
  margin: 0;
}
.g-nav__item button::after {
  content: "";
  display: block;
  width: 26px;
  height: 26px;
  background-image: url(../img/common/bottom-arrow-white.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.g-nav__item button.is_open::after {
  transform: rotate(180deg);
}

.g-nav-child {
  display: none;
}

.g-nav-child__item:not(:last-of-type) {
  border-bottom: 1px solid var(--red);
}
.g-nav-child__item > a {
  display: block;
  font-size: 14px;
  background-color: #7E080A;
  color: #ffffff;
  padding: 12px 20px;
  background-image: url(../img/common/right-chevron-white.svg);
  background-size: 6px 6px;
  background-position: right 15px center;
  background-repeat: no-repeat;
}

.g-nav-action {
  padding: 0 20px;
  margin-top: 30px;
}

.g-nav-action__item:not(:last-of-type) {
  margin-bottom: 10px;
}
.g-nav-action__item a {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  text-align: center;
  background-color: #fff;
  height: 50px;
  padding: 0.5em;
  border-radius: 25px;
  background-image: url(../img/common/right-chevron-red.svg);
  background-repeat: no-repeat;
  background-position: center right 15px;
  background-size: 6px 6px;
}
.g-nav-action__item img {
  margin-right: 10px;
}

.g-nav-sns {
  padding: 0 20px;
  margin-top: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  padding-bottom: 80px;
}

@media not all and (min-resolution: 0.001dpcm) {
  @supports not (translate: none) {
    .g-nav-sns {
      gap: inherit;
      margin-left: -15px;
    }
    .g-nav-sns__item {
      padding-left: 15px;
    }
  }
}
/* ---------------------------
  hamb
----------------------------- */
.menu-trigger {
  width: 90px;
  height: 90px;
  padding: 0;
  margin: 0;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 1000;
  cursor: pointer;
}
@media screen and (max-width: 640px) {
  .menu-trigger {
    width: 95px;
    height: 95px;
  }
}

.menu-closer {
  width: 100%;
  cursor: pointer;
  padding: 20px;
}

/* ---------------------------
  aside
----------------------------- */
.fixed-link {
  position: fixed;
  right: 0;
  bottom: 20px;
  z-index: 1600;
  max-width: 260px;
  width: 100%;
}
@media screen and (max-width: 640px) {
  .fixed-link {
    display: none;
  }
}
.fixed-link ul {
  width: 100%;
}
.fixed-link li:not(:last-of-type) {
  margin-bottom: 10px;
}
.fixed-link a {
  display: block;
  background-color: rgba(142, 17, 13, 0.9);
  font-size: 14px;
  letter-spacing: 0.05em;
  font-weight: bold;
  padding: 10px 20px;
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
  color: #ffffff;
  background-image: url(../img/common/right-chevron-white.svg);
  background-size: 6px 6px;
  background-repeat: no-repeat;
  background-position: center right 15px;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.3);
}

.fixed-menu {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
}
@media screen and (max-width: 640px) {
  .fixed-menu {
    display: block;
  }
}
.fixed-menu ul {
  display: flex;
  margin-left: -1px;
  background-color: #7E080A;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.1);
}
.fixed-menu li {
  flex: 1;
  padding-left: 1px;
}
.fixed-menu a {
  background-color: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-weight: bold;
  letter-spacing: 0.1em;
  font-size: 12px;
  line-height: 1.4;
  width: 100%;
  height: 60px;
  background-image: url(../img/common/right-chevron-white.svg);
  background-size: 5px;
  background-position: center right 5px;
  background-repeat: no-repeat;
  text-align: center;
}

.history-back {
  background-color: #F0F0F0;
  padding: 70px 0;
}
@media screen and (max-width: 640px) {
  .history-back {
    padding: 50px 0 70px;
  }
}

/* ---------------------------
  footer
----------------------------- */
.footer-inner {
  position: relative;
  padding: 110px 0 100px;
}
@media screen and (max-width: 640px) {
  .footer-inner {
    padding: 50px 0 100px;
  }
}

.footer-pagetop {
  position: fixed;
  bottom: -80px;
  left: 50%;
  z-index: 999;
  display: block;
  transform: translateX(-50%);
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.15);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  cursor: pointer;
}
@media screen and (max-width: 640px) {
  .footer-pagetop {
    display: none;
  }
}
.footer-pagetop img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.footer-pagetop--sp {
  display: none;
  position: fixed;
  bottom: -80px;
  right: 10px;
  z-index: 999;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  cursor: pointer;
}
@media screen and (max-width: 640px) {
  .footer-pagetop--sp {
    display: block;
  }
}
.footer-pagetop--sp img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.footer-logo {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
@media screen and (max-width: 640px) {
  .footer-logo {
    flex-direction: column;
    justify-content: center;
    margin-bottom: 12px;
  }
}
.footer-logo img:first-of-type {
  margin-right: 20px;
}
@media screen and (max-width: 640px) {
  .footer-logo img:first-of-type {
    width: 240px;
    height: 52px;
    margin-right: 0;
    margin-bottom: 10px;
  }
}

.footer-address {
  font-style: normal;
  margin-bottom: 18px;
}
@media screen and (max-width: 640px) {
  .footer-address {
    margin-bottom: 28px;
    text-align: center;
    line-height: 2;
  }
}
.footer-address p {
  font-size: 12px;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  margin-left: -30px;
  margin-bottom: 5px;
}
@media screen and (max-width: 640px) {
  .footer-nav {
    display: block;
    width: calc(100% + 20px);
    margin-left: -10px;
    margin-right: -10px;
    margin-bottom: 20px;
  }
}

.footer-nav__item {
  padding-left: 30px;
  margin-bottom: 15px;
}
@media screen and (max-width: 640px) {
  .footer-nav__item {
    border-bottom: 1px solid var(--bdc);
    padding-left: 0;
    margin-bottom: 0;
  }
}
@media screen and (max-width: 640px) {
  .footer-nav__item:first-of-type {
    border-top: 1px solid var(--bdc);
  }
}
.footer-nav__item a {
  display: block;
  font-size: 12px;
  padding-left: 1em;
  background-image: url(../img/common/right-chevron-red.svg);
  background-position: left center;
  background-size: 5px;
  background-repeat: no-repeat;
}
@media screen and (max-width: 640px) {
  .footer-nav__item a {
    padding-left: 30px;
    padding-top: 1em;
    padding-bottom: 1em;
    background-position: left 20px center;
  }
}

.footer-sns {
  display: flex;
  margin-left: -15px;
  margin-bottom: 20px;
}
@media screen and (max-width: 640px) {
  .footer-sns {
    justify-content: center;
  }
}

.footer-sns__item {
  padding-left: 15px;
}
.footer-sns__item a {
  display: block;
}

.footer-copyright {
  font-size: 10px;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 640px) {
  .footer-copyright {
    text-align: center;
  }
}

/* ---------------------------
  post カスタム投稿テンプレート
----------------------------- */
.post > *,
.wp-editor:not(.post-type-page) > * {
  margin-top: 1em;
  margin-bottom: 1em;
  max-width: 100%;
}
.post > *:first-child,
.wp-editor:not(.post-type-page) > *:first-child {
  margin-top: 0 !important;
}
.post > *:last-child,
.wp-editor:not(.post-type-page) > *:last-child {
  margin-bottom: 0 !important;
}
.post h2:not([class]),
.wp-editor:not(.post-type-page) h2:not([class]) {
  font-size: 26px;
  font-weight: normal;
  color: var(--red);
}
@media screen and (max-width: 640px) {
  .post h2:not([class]),
.wp-editor:not(.post-type-page) h2:not([class]) {
    font-size: 22px;
  }
}
.post h3:not([class]),
.wp-editor:not(.post-type-page) h3:not([class]) {
  font-size: 20px;
  font-weight: normal;
}
@media screen and (max-width: 640px) {
  .post h3:not([class]),
.wp-editor:not(.post-type-page) h3:not([class]) {
    font-size: 18px;
  }
}
.post h4:not([class]),
.wp-editor:not(.post-type-page) h4:not([class]) {
  font-size: 16px;
  font-weight: normal;
}
.post h5:not([class]),
.wp-editor:not(.post-type-page) h5:not([class]) {
  font-size: 14px;
  font-weight: normal;
}
.post h6:not([class]),
.wp-editor:not(.post-type-page) h6:not([class]) {
  font-size: 12px;
  font-weight: normal;
}
.post p:not([class]),
.wp-editor:not(.post-type-page) p:not([class]) {
  font-size: 14px;
  line-height: 2;
}
.post strong, .post strong > *,
.wp-editor:not(.post-type-page) strong,
.wp-editor:not(.post-type-page) strong > * {
  font-weight: bold;
}
.post em, .post em > *,
.wp-editor:not(.post-type-page) em,
.wp-editor:not(.post-type-page) em > * {
  font-style: italic;
}
.post del,
.wp-editor:not(.post-type-page) del {
  text-decoration: line-through double var(--red);
}
.post hr,
.wp-editor:not(.post-type-page) hr {
  border: none;
  border-top: 1px dotted #9B9B9B;
  margin: 70px 0;
}
@media screen and (max-width: 640px) {
  .post hr,
.wp-editor:not(.post-type-page) hr {
    margin: 50px 0;
  }
}
.post blockquote,
.wp-editor:not(.post-type-page) blockquote {
  padding: 0.5em;
  background-color: #f2f2f2;
}
.post a:not([class]),
.wp-editor:not(.post-type-page) a:not([class]) {
  color: var(--red);
  text-decoration: underline;
  transition: text-decoration 0.1s ease-in-out;
}
@media (hover: hover) and (pointer: fine) {
  .post a:not([class]):hover,
.wp-editor:not(.post-type-page) a:not([class]):hover {
    text-decoration: none;
  }
}
.post ul:not([class]),
.wp-editor:not(.post-type-page) ul:not([class]) {
  list-style: disc;
  padding-left: 1.1em;
}
.post ul:not([class]) li,
.wp-editor:not(.post-type-page) ul:not([class]) li {
  font-size: 14px;
  margin: 0.5em 0;
  line-height: 2;
}
.post ul:not([class]) li:first-of-type,
.wp-editor:not(.post-type-page) ul:not([class]) li:first-of-type {
  margin-top: 0;
}
.post ul:not([class]) li:last-of-type,
.wp-editor:not(.post-type-page) ul:not([class]) li:last-of-type {
  margin-bottom: 0;
}
.post ul:not([class]) li::marker,
.wp-editor:not(.post-type-page) ul:not([class]) li::marker {
  color: var(--red);
}
.post ol:not([class]),
.wp-editor:not(.post-type-page) ol:not([class]) {
  list-style: decimal;
  padding-left: 1.2em;
}
.post ol:not([class]) li,
.wp-editor:not(.post-type-page) ol:not([class]) li {
  font-size: 14px;
  margin: 0.5em 0;
  line-height: 2;
}
.post ol:not([class]) li:first-of-type,
.wp-editor:not(.post-type-page) ol:not([class]) li:first-of-type {
  margin-top: 0;
}
.post ol:not([class]) li:last-of-type,
.wp-editor:not(.post-type-page) ol:not([class]) li:last-of-type {
  margin-bottom: 0;
}
.post ol:not([class]) li::marker,
.wp-editor:not(.post-type-page) ol:not([class]) li::marker {
  color: var(--red);
}
.post table,
.wp-editor:not(.post-type-page) table {
  width: 100%;
  border-collapse: collapse;
}
.post table caption,
.wp-editor:not(.post-type-page) table caption {
  text-align: center;
  font-size: 16px;
  margin-bottom: 0.5em;
  background-color: var(--red);
  color: #ffffff;
  padding: 1em;
  font-weight: normal;
}
@media screen and (max-width: 640px) {
  .post table caption,
.wp-editor:not(.post-type-page) table caption {
    font-size: 14px;
  }
}
.post table th, .post table td,
.wp-editor:not(.post-type-page) table th,
.wp-editor:not(.post-type-page) table td {
  border: 1px solid #9B9B9B;
  font-size: 14px;
  padding: 0.8em 1em;
  text-align: center;
  vertical-align: middle;
  word-break: break-all;
}
@media screen and (max-width: 640px) {
  .post table th, .post table td,
.wp-editor:not(.post-type-page) table th,
.wp-editor:not(.post-type-page) table td {
    font-size: 13px;
  }
}
.post table th,
.wp-editor:not(.post-type-page) table th {
  background-color: #EDE0DC;
}
.post table td,
.wp-editor:not(.post-type-page) table td {
  background-color: #ffffff;
}
.post table .alignleft,
.wp-editor:not(.post-type-page) table .alignleft {
  text-align: left;
}
.post .table-overflow,
.wp-editor:not(.post-type-page) .table-overflow {
  margin-bottom: 50px;
}
@media screen and (max-width: 640px) {
  .post .table-overflow,
.wp-editor:not(.post-type-page) .table-overflow {
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 640px) {
  .post .table-overflow,
.wp-editor:not(.post-type-page) .table-overflow {
    position: relative;
    overflow-x: scroll;
    width: 100%;
  }
  .post .table-overflow:before,
.wp-editor:not(.post-type-page) .table-overflow:before {
    content: "横にスクロールできます→";
    position: sticky;
    top: 0;
    left: 0;
    display: block;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 0.5em;
  }
  .post .table-overflow table,
.wp-editor:not(.post-type-page) .table-overflow table {
    width: 640px;
    margin-top: 0;
    margin-bottom: 0;
  }
}
.post .aligncenter,
.wp-editor:not(.post-type-page) .aligncenter {
  text-align: center;
}
.post .aligncenter img,
.wp-editor:not(.post-type-page) .aligncenter img {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.post .alignleft,
.wp-editor:not(.post-type-page) .alignleft {
  text-align: left;
}
.post .alignleft img,
.wp-editor:not(.post-type-page) .alignleft img {
  display: block;
  margin-right: auto;
  margin-left: 0;
}
.post .alignright,
.wp-editor:not(.post-type-page) .alignright {
  text-align: right;
}
.post .alignright img,
.wp-editor:not(.post-type-page) .alignright img {
  display: block;
  margin-left: auto;
  margin-right: 0;
}
.post img,
.wp-editor:not(.post-type-page) img {
  display: block;
  margin-top: 1em;
  margin-bottom: 1em;
}
.post img.aligncenter,
.wp-editor:not(.post-type-page) img.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.post img.alignleft,
.wp-editor:not(.post-type-page) img.alignleft {
  display: block;
  margin-right: auto;
  margin-left: 0;
}
.post img.alignright,
.wp-editor:not(.post-type-page) img.alignright {
  display: block;
  margin-left: auto;
  margin-right: 0;
}
.post .wp-caption,
.wp-editor:not(.post-type-page) .wp-caption {
  margin-bottom: 1em;
}
.post .wp-caption img,
.wp-editor:not(.post-type-page) .wp-caption img {
  margin-bottom: 0 !important;
}
.post .wp-caption-text,
.wp-editor:not(.post-type-page) .wp-caption-text {
  font-size: 13px;
  margin-top: 10px;
  text-align: left;
}
.post .gallery,
.wp-editor:not(.post-type-page) .gallery {
  display: flex;
  flex-wrap: wrap;
  margin-top: 1em !important;
  margin-bottom: 1em !important;
  margin-left: -10px !important;
  margin-right: inherit !important;
  max-width: none;
}
.post .gallery br,
.wp-editor:not(.post-type-page) .gallery br {
  display: none;
}
.post .gallery-columns-1 .gallery-item,
.wp-editor:not(.post-type-page) .gallery-columns-1 .gallery-item {
  width: 100% !important;
}
.post .gallery-columns-2 .gallery-item,
.wp-editor:not(.post-type-page) .gallery-columns-2 .gallery-item {
  width: 50% !important;
}
.post .gallery-columns-3 .gallery-item,
.wp-editor:not(.post-type-page) .gallery-columns-3 .gallery-item {
  width: 33.33% !important;
}
.post .gallery-columns-4 .gallery-item,
.wp-editor:not(.post-type-page) .gallery-columns-4 .gallery-item {
  width: 25% !important;
}
.post .gallery-item,
.wp-editor:not(.post-type-page) .gallery-item {
  float: none !important;
  padding-left: 10px !important;
  margin-top: 0 !important;
  margin-bottom: 10px !important;
}
.post .gallery-item img,
.wp-editor:not(.post-type-page) .gallery-item img {
  margin: 0 !important;
  border: none !important;
}
.post .flex2,
.wp-editor:not(.post-type-page) .flex2 {
  margin-top: 50px;
  margin-bottom: 50px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 50px;
}
@media screen and (max-width: 896px) {
  .post .flex2,
.wp-editor:not(.post-type-page) .flex2 {
    gap: 40px;
    margin-top: 40px;
    margin-bottom: 40px;
  }
}
.post .flex2 > div,
.wp-editor:not(.post-type-page) .flex2 > div {
  width: calc((100% - 50px) / 2);
}
@media screen and (max-width: 896px) {
  .post .flex2 > div,
.wp-editor:not(.post-type-page) .flex2 > div {
    width: calc((100% - 40px) / 2);
  }
}
@media screen and (max-width: 640px) {
  .post .flex2 > div,
.wp-editor:not(.post-type-page) .flex2 > div {
    width: 100%;
  }
}
.post .flex2 > div > *,
.wp-editor:not(.post-type-page) .flex2 > div > * {
  margin-top: 1em;
  margin-bottom: 1em;
  max-width: 100%;
}
.post .flex2 > div > *:first-child,
.wp-editor:not(.post-type-page) .flex2 > div > *:first-child {
  margin-top: 0 !important;
}
.post .flex2 > div > *:last-child,
.wp-editor:not(.post-type-page) .flex2 > div > *:last-child {
  margin-bottom: 0 !important;
}
.post .flex2 > div img, .post .flex2 > div picture, .post .flex2 > div figure,
.wp-editor:not(.post-type-page) .flex2 > div img,
.wp-editor:not(.post-type-page) .flex2 > div picture,
.wp-editor:not(.post-type-page) .flex2 > div figure {
  margin-left: auto;
  margin-right: auto;
}
.post .flex3,
.wp-editor:not(.post-type-page) .flex3 {
  margin-top: 50px;
  margin-bottom: 50px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 50px;
}
@media screen and (max-width: 896px) {
  .post .flex3,
.wp-editor:not(.post-type-page) .flex3 {
    gap: 40px;
    margin-top: 40px;
    margin-bottom: 40px;
  }
}
.post .flex3 > div,
.wp-editor:not(.post-type-page) .flex3 > div {
  width: calc((100% - 100px) / 3);
}
@media screen and (max-width: 896px) {
  .post .flex3 > div,
.wp-editor:not(.post-type-page) .flex3 > div {
    width: calc((100% - 80px) / 2);
  }
}
@media screen and (max-width: 640px) {
  .post .flex3 > div,
.wp-editor:not(.post-type-page) .flex3 > div {
    width: 100%;
  }
}
.post .flex3 > div > *,
.wp-editor:not(.post-type-page) .flex3 > div > * {
  margin-top: 1em;
  margin-bottom: 1em;
  max-width: 100%;
}
.post .flex3 > div > *:first-child,
.wp-editor:not(.post-type-page) .flex3 > div > *:first-child {
  margin-top: 0 !important;
}
.post .flex3 > div > *:last-child,
.wp-editor:not(.post-type-page) .flex3 > div > *:last-child {
  margin-bottom: 0 !important;
}
.post .flex3 > div img, .post .flex3 > div picture, .post .flex3 > div figure,
.wp-editor:not(.post-type-page) .flex3 > div img,
.wp-editor:not(.post-type-page) .flex3 > div picture,
.wp-editor:not(.post-type-page) .flex3 > div figure {
  margin-left: auto;
  margin-right: auto;
}
.post .flex4,
.wp-editor:not(.post-type-page) .flex4 {
  margin-top: 50px;
  margin-bottom: 50px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 50px;
}
@media screen and (max-width: 896px) {
  .post .flex4,
.wp-editor:not(.post-type-page) .flex4 {
    gap: 40px;
    margin-top: 40px;
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 640px) {
  .post .flex4,
.wp-editor:not(.post-type-page) .flex4 {
    gap: 40px 20px;
  }
}
.post .flex4 > div,
.wp-editor:not(.post-type-page) .flex4 > div {
  width: calc((100% - 200px) / 4);
}
@media screen and (max-width: 896px) {
  .post .flex4 > div,
.wp-editor:not(.post-type-page) .flex4 > div {
    width: calc((100% - 120px) / 3);
  }
}
@media screen and (max-width: 640px) {
  .post .flex4 > div,
.wp-editor:not(.post-type-page) .flex4 > div {
    width: calc((100% - 40px) / 2);
  }
}
.post .flex4 > div > *,
.wp-editor:not(.post-type-page) .flex4 > div > * {
  margin-top: 1em;
  margin-bottom: 1em;
  max-width: 100%;
}
.post .flex4 > div > *:first-child,
.wp-editor:not(.post-type-page) .flex4 > div > *:first-child {
  margin-top: 0 !important;
}
.post .flex4 > div > *:last-child,
.wp-editor:not(.post-type-page) .flex4 > div > *:last-child {
  margin-bottom: 0 !important;
}
.post .flex4 > div img, .post .flex4 > div picture, .post .flex4 > div figure,
.wp-editor:not(.post-type-page) .flex4 > div img,
.wp-editor:not(.post-type-page) .flex4 > div picture,
.wp-editor:not(.post-type-page) .flex4 > div figure {
  margin-left: auto;
  margin-right: auto;
}
@media not all and (min-resolution: 0.001dpcm) {
  @supports not (translate: none) {
    .post .flex2,
.wp-editor:not(.post-type-page) .flex2 {
      margin-left: -50px;
      max-width: none;
      gap: inherit;
    }
    @media screen and (max-width: 896px) {
      .post .flex2,
.wp-editor:not(.post-type-page) .flex2 {
        margin-left: -40px;
      }
    }
    @media screen and (max-width: 640px) {
      .post .flex2,
.wp-editor:not(.post-type-page) .flex2 {
        margin-left: 0;
      }
    }
    .post .flex2 > div,
.wp-editor:not(.post-type-page) .flex2 > div {
      width: 50%;
      padding-left: 50px;
      margin-bottom: 50px;
    }
    @media screen and (max-width: 896px) {
      .post .flex2 > div,
.wp-editor:not(.post-type-page) .flex2 > div {
        width: 50%;
        padding-left: 40px;
        margin-bottom: 40px;
      }
    }
    @media screen and (max-width: 640px) {
      .post .flex2 > div,
.wp-editor:not(.post-type-page) .flex2 > div {
        width: 100%;
        padding-left: 0;
      }
    }
    .post .flex3,
.wp-editor:not(.post-type-page) .flex3 {
      margin-left: -50px;
      max-width: none;
      gap: inherit;
    }
    @media screen and (max-width: 896px) {
      .post .flex3,
.wp-editor:not(.post-type-page) .flex3 {
        margin-left: -40px;
      }
    }
    @media screen and (max-width: 640px) {
      .post .flex3,
.wp-editor:not(.post-type-page) .flex3 {
        margin-left: 0;
      }
    }
    .post .flex3 > div,
.wp-editor:not(.post-type-page) .flex3 > div {
      width: 33.33%;
      padding-left: 50px;
      margin-bottom: 50px;
    }
    @media screen and (max-width: 896px) {
      .post .flex3 > div,
.wp-editor:not(.post-type-page) .flex3 > div {
        width: 50%;
        padding-left: 40px;
        margin-bottom: 40px;
      }
    }
    @media screen and (max-width: 640px) {
      .post .flex3 > div,
.wp-editor:not(.post-type-page) .flex3 > div {
        width: 100%;
        padding-left: 0;
      }
    }
    .post .flex4,
.wp-editor:not(.post-type-page) .flex4 {
      margin-left: -50px;
      max-width: none;
      gap: inherit;
    }
    @media screen and (max-width: 896px) {
      .post .flex4,
.wp-editor:not(.post-type-page) .flex4 {
        margin-left: -40px;
      }
    }
    @media screen and (max-width: 640px) {
      .post .flex4,
.wp-editor:not(.post-type-page) .flex4 {
        margin-left: -20px;
      }
    }
    .post .flex4 > div,
.wp-editor:not(.post-type-page) .flex4 > div {
      width: 25%;
      padding-left: 50px;
      margin-bottom: 50px;
    }
    @media screen and (max-width: 896px) {
      .post .flex4 > div,
.wp-editor:not(.post-type-page) .flex4 > div {
        width: 33.33%;
        padding-left: 40px;
        margin-bottom: 40px;
      }
    }
    @media screen and (max-width: 640px) {
      .post .flex4 > div,
.wp-editor:not(.post-type-page) .flex4 > div {
        width: 50%;
        padding-left: 20px;
      }
    }
    .post .flex-gap-link,
.wp-editor:not(.post-type-page) .flex-gap-link {
      margin-left: -50px;
      gap: inherit;
    }
    .post .flex-gap-link > div,
.wp-editor:not(.post-type-page) .flex-gap-link > div {
      padding-left: 50px;
      margin-bottom: 30px;
    }
    @media screen and (max-width: 896px) {
      .post .flex-gap-link,
.wp-editor:not(.post-type-page) .flex-gap-link {
        margin-left: -30px;
        justify-content: center;
      }
      .post .flex-gap-link > div,
.wp-editor:not(.post-type-page) .flex-gap-link > div {
        padding-left: 30px;
      }
    }
    @media screen and (max-width: 640px) {
      .post .flex-gap-link > div,
.wp-editor:not(.post-type-page) .flex-gap-link > div {
        padding-left: 15px;
        margin-bottom: 15px;
      }
    }
    @media screen and (max-width: 640px) {
      .post .flex-gap-small,
.wp-editor:not(.post-type-page) .flex-gap-small {
        margin-left: -15px;
        gap: inherit;
      }
      .post .flex-gap-small > div,
.wp-editor:not(.post-type-page) .flex-gap-small > div {
        padding-left: 15px;
        margin-bottom: 15px;
      }
    }
    @media screen and (max-width: 640px) {
      .post .flex-gap-medium,
.wp-editor:not(.post-type-page) .flex-gap-medium {
        margin-left: -25px;
        gap: inherit;
      }
      .post .flex-gap-medium > div,
.wp-editor:not(.post-type-page) .flex-gap-medium > div {
        padding-left: 25px;
        margin-bottom: 25px;
      }
    }
    @media screen and (max-width: 640px) {
      .post .flex-gap-none,
.wp-editor:not(.post-type-page) .flex-gap-none {
        margin-left: 0;
        gap: inherit;
      }
      .post .flex-gap-none > div,
.wp-editor:not(.post-type-page) .flex-gap-none > div {
        padding-left: 0;
        margin-bottom: 0;
      }
    }
  }
}

/* ---------------------------
  cover
----------------------------- */
.cover {
  position: relative;
  height: 300px;
}
@media screen and (max-width: 640px) {
  .cover {
    height: 130px;
  }
}

.cover__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cover__title {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: #ffffff;
  letter-spacing: 0.2em;
  font-weight: bold;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  font-size: 26px;
}
@media screen and (max-width: 640px) {
  .cover__title {
    font-size: 20px;
  }
}
.cover__title.ja {
  font-family: var(--jaFont);
}
.cover__title.en {
  font-family: var(--enFont);
  font-style: italic;
}
.cover__title span {
  text-align: center;
  display: block;
  font-size: 14px;
  font-family: var(--enFont);
  font-style: italic;
  font-weight: bold;
  color: #ffffff;
  margin-top: 0.5em;
  letter-spacing: 0.15em;
}
@media screen and (max-width: 640px) {
  .cover__title span {
    font-size: 12px;
    margin-top: 0.3em;
  }
}

.page-cover--secondary .cover {
  height: 200px;
}
@media screen and (max-width: 640px) {
  .page-cover--secondary .cover {
    height: 130px;
  }
}
.page-cover--secondary .cover__title {
  color: var(--red);
  text-shadow: none;
}
.page-cover--secondary .cover__title span {
  color: var(--red);
}

/* ---------------------------
  common
----------------------------- */
.page-content {
  padding-top: 140px;
  padding-bottom: 100px;
  position: relative;
}
@media screen and (max-width: 640px) {
  .page-content {
    padding-top: 0;
    padding-bottom: 80px;
  }
}

.page-content--secondary {
  padding: 70px 0 130px;
  background-color: #F0F0F0;
  position: relative;
}
@media screen and (max-width: 640px) {
  .page-content--secondary {
    padding: 30px 0 80px;
  }
}
.page-content--secondary::after {
  content: "";
  display: block;
  width: 100%;
  height: 50px;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
  background: -moz-linear-gradient(top, rgba(237, 237, 237, 0) 0%, rgb(229, 229, 229) 100%);
  background: -webkit-linear-gradient(top, rgba(237, 237, 237, 0) 0%, rgb(229, 229, 229) 100%);
  background: linear-gradient(to bottom, rgba(237, 237, 237, 0) 0%, rgb(229, 229, 229) 100%);
}

@media screen and (max-width: 640px) {
  .page-content__content {
    padding-top: 48px;
  }
}

.page-content__nav {
  transform: translateY(-50%);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
}
@media screen and (max-width: 640px) {
  .page-content__nav {
    position: inherit;
    top: auto;
    left: auto;
    transform: none;
  }
}

.p-nav {
  display: flex;
  max-width: 940px;
  width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 640px) {
  .p-nav {
    display: block;
  }
}

.p-nav__item {
  position: relative;
  flex: 1;
}
@media screen and (max-width: 640px) {
  .p-nav__item {
    border-bottom: 1px solid #CDCDCD;
  }
}
.p-nav__item:not(.current):not(:last-of-type)::after {
  content: "";
  display: block;
  width: 1px;
  height: 60px;
  background-color: #D5D5D5;
  position: absolute;
  top: 10px;
  right: 0;
  z-index: 1;
}
@media screen and (max-width: 640px) {
  .p-nav__item:not(.current):not(:last-of-type)::after {
    display: none;
  }
}
.p-nav__item a {
  width: 100%;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #8D8D8D;
  background-color: #fff;
  position: relative;
  padding: 1em;
}
@media screen and (max-width: 896px) {
  .p-nav__item a {
    font-size: 13px;
  }
}
@media screen and (max-width: 640px) {
  .p-nav__item a {
    height: auto;
  }
}

.p-nav__item.current a {
  color: #ffffff;
  background-color: var(--red);
  pointer-events: none;
}
.p-nav__item.current a::after {
  content: "";
  border-style: solid;
  height: 0;
  width: 0;
  border-color: var(--red) transparent transparent transparent;
  border-width: 15px 10px 0 10px;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 99%);
}
@media screen and (max-width: 640px) {
  .p-nav__item.current a::after {
    display: none;
  }
}

.page-password {
  background-color: #F0F0F0;
  padding: 100px 30px;
  height: calc(100vh - 66px);
}
@media screen and (max-width: 640px) {
  .page-password {
    padding: 30px;
  }
}

.page-password-inner {
  background-color: #fff;
  max-width: 680px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 100px 30px;
  border-radius: 40px;
}
@media screen and (max-width: 640px) {
  .page-password-inner {
    height: 100%;
  }
}
.page-password-inner h1 {
  text-align: center;
  color: var(--red);
  margin-top: 16px;
  margin-bottom: 32px;
  font-size: 20px;
  font-weight: bold;
}
@media screen and (max-width: 640px) {
  .page-password-inner h1 {
    font-size: 18px;
  }
}
.page-password-inner input[type=password] {
  display: block;
  max-width: 280px;
  width: 100%;
  font-size: 16px;
  background-color: #F0F0F0;
  border-radius: 5px;
  padding: 0.5em 1em;
  border: none;
  box-shadow: none;
}
.page-password-inner input[type=password]::placeholder {
  color: #8D8D8D;
  font-size: 14px;
  font-weight: bold;
}
.page-password-inner input[type=submit] {
  display: block;
  cursor: pointer;
  margin: 32px auto 0;
  background-color: var(--red);
  text-align: center;
  max-width: 100px;
  width: 100%;
  padding: 0.7em;
  font-size: 14px;
  font-weight: bold;
  color: #ffffff;
  border-radius: 3px;
  border: none;
}

/* ---------------------------
  parents
----------------------------- */
.notice-list__item {
  box-shadow: 0 3px 5px rgba(0, 0, 0, 0.1);
  background-color: #fff;
  background-image: url(../img/common/right-chevron-black.svg);
  background-size: 5px;
  background-position: right 15px center;
  background-repeat: no-repeat;
}
@media screen and (max-width: 640px) {
  .notice-list__item {
    background-position: right 5px center;
  }
}
.notice-list__item:not(:last-of-type) {
  margin-bottom: 10px;
}

.notice-list__item__link {
  display: flex;
  align-items: center;
  padding: 16px 30px;
  text-decoration: none;
}
@media screen and (max-width: 640px) {
  .notice-list__item__link {
    display: block;
    padding: 10px;
    padding-right: 15px;
  }
}
.notice-list__item__link p {
  font-size: 14px;
  width: calc(100% - 80px);
  color: var(--fc);
}
@media screen and (max-width: 640px) {
  .notice-list__item__link p {
    width: 100%;
    font-size: 13px;
  }
}
.notice-list__item__link time {
  display: block;
  color: var(--red);
  font-size: 12px;
  width: 80px;
}
@media screen and (max-width: 640px) {
  .notice-list__item__link time {
    width: 100%;
  }
}

/* ---------------------------
  contactform
----------------------------- */
/* ---------------------------
  news
----------------------------- */
.news-list__item:not(:last-of-type) {
  border-bottom: 1px dotted var(--bdc);
}
.news-list__item time {
  display: block;
  font-size: 12px;
  width: 80px;
}
.news-list__item .cat {
  width: 80px;
  height: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  letter-spacing: 0em;
  text-align: center;
  color: #ffffff;
  background-color: var(--red);
  border-radius: 5px;
}
.news-list__item .title {
  width: calc(100% - 160px);
  padding-left: 1.5em;
  font-size: 14px;
  font-weight: normal;
  overflow: hidden;
  display: -webkit-box;
  box-orient: vertical;
  -webkit-box-orient: vertical;
  line-clamp: 1;
  -webkit-line-clamp: 1;
}
@media screen and (max-width: 896px) {
  .news-list__item .title {
    width: 100%;
    margin-top: 0.2em;
    padding-left: 0;
    font-size: 13px;
    line-clamp: 2;
    -webkit-line-clamp: 2;
  }
}
.news-list__item .title a {
  display: block;
}

.news-list__item-inner {
  display: flex;
  align-items: center;
  background-image: url(../img/common/right-chevron-red.svg);
  background-size: 6px;
  background-position: right center;
  background-repeat: no-repeat;
  padding: 1em 0;
  padding-right: 2em;
}
@media screen and (max-width: 896px) {
  .news-list__item-inner {
    flex-wrap: wrap;
    padding-right: 1em;
  }
}

/* ---------------------------
  archive
----------------------------- */
.news-archive-container {
  background-color: #fff;
  padding: 40px 50px 50px;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 896px) {
  .news-archive-container {
    padding: 10px 20px;
  }
}
@media screen and (max-width: 640px) {
  .news-archive-container {
    padding: 0 10px;
    box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.1);
  }
}
.news-archive-container .news-list__item-inner {
  padding-top: 1.2em;
  padding-bottom: 1.2em;
}

.news-category-title {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 0.5em;
  text-align: center;
}
@media screen and (max-width: 640px) {
  .news-category-title {
    font-size: 18px;
    margin-bottom: 0;
    padding-top: 0.8em;
  }
}

/* ---------------------------
  blog
----------------------------- */
.blog-card {
  background-color: #fff;
  box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.1);
  position: relative;
}
@media screen and (max-width: 640px) {
  .blog-card {
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.25);
  }
}

.blog-card__thumb {
  padding: 5px;
}
.blog-card__thumb a {
  display: block;
  aspect-ratio: 195/130;
  overflow: hidden;
}
.blog-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-card__content {
  padding: 5px 10px 10px;
}
.blog-card__content time {
  font-size: 14px;
  color: var(--red);
}
@media screen and (max-width: 640px) {
  .blog-card__content time {
    font-size: 13px;
  }
}
.blog-card__content .title {
  margin-top: 0.3em;
  font-weight: normal;
  font-size: 14px;
  overflow: hidden;
  display: -webkit-box;
  box-orient: vertical;
  -webkit-box-orient: vertical;
  line-clamp: 3;
  -webkit-line-clamp: 3;
}
@media screen and (max-width: 640px) {
  .blog-card__content .title {
    line-clamp: 2;
    -webkit-line-clamp: 2;
    font-size: 13px;
  }
}
.blog-card__content a {
  display: block;
  width: fit-content;
  margin-top: 0.5em;
  margin-left: auto;
  margin-right: 0;
  font-size: 10px;
  text-transform: uppercase;
  color: var(--red);
  letter-spacing: 0.1em;
  border-bottom: 1px solid var(--red);
  padding-right: 1.5em;
  padding-bottom: 0.2em;
  background-image: url(../img/common/right-chevron-red.svg);
  background-size: 6px;
  background-position: right center;
  background-repeat: no-repeat;
}
@media screen and (max-width: 640px) {
  .blog-card__content a {
    font-size: 10px;
  }
}

.blog-card__badge {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 60px;
  height: 20px;
}
@media screen and (max-width: 640px) {
  .blog-card__badge {
    width: 50px;
  }
}

/* ---------------------------
  archive
----------------------------- */
.blog-list {
  display: flex;
  flex-wrap: wrap;
  gap: 50px 40px;
}
@media screen and (max-width: 896px) {
  .blog-list {
    gap: 20px;
  }
}
@media screen and (max-width: 640px) {
  .blog-list {
    gap: 10px;
  }
}

.blog-list__item {
  width: calc((100% - 120px) / 4);
}
@media screen and (max-width: 1080px) {
  .blog-list__item {
    width: calc((100% - 120px) / 3);
  }
}
@media screen and (max-width: 896px) {
  .blog-list__item {
    width: calc((100% - 40px) / 3);
  }
}
@media screen and (max-width: 640px) {
  .blog-list__item {
    width: calc((100% - 10px) / 2);
  }
}

@media not all and (min-resolution: 0.001dpcm) {
  @supports not (translate: none) {
    .blog-list {
      gap: inherit;
      margin-left: -40px;
      margin-bottom: -50px;
    }
    @media screen and (max-width: 896px) {
      .blog-list {
        margin-left: -20px;
        margin-bottom: -20px;
      }
    }
    @media screen and (max-width: 640px) {
      .blog-list {
        margin-left: -10px;
        margin-bottom: -10px;
      }
    }
    .blog-list__item {
      width: 25%;
      padding-left: 40px;
      margin-bottom: 50px;
    }
    @media screen and (max-width: 1080px) {
      .blog-list__item {
        width: 33.33%;
      }
    }
    @media screen and (max-width: 896px) {
      .blog-list__item {
        width: 33.33%;
        padding-left: 20px;
        margin-bottom: 20px;
      }
    }
    @media screen and (max-width: 640px) {
      .blog-list__item {
        width: 50%;
        padding-left: 10px;
        margin-bottom: 10px;
      }
    }
  }
}
.blog-tag-title {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 2em;
  text-align: center;
}
@media screen and (max-width: 640px) {
  .blog-tag-title {
    font-size: 18px;
    margin-bottom: 1.5em;
  }
}

/* ---------------------------
  single
----------------------------- */
.single-content-wrapper {
  background-color: #fff;
  padding: 70px 40px;
  box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 640px) {
  .single-content-wrapper {
    padding: 30px 10px 40px;
    box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.1);
  }
}

.single-content-wrapper--staff {
  box-shadow: 0 3px 5px rgba(0, 0, 0, 0.1);
  margin-bottom: 10px;
}

.single-content {
  max-width: 700px;
  margin: 0 auto;
}

.single-content__head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding-bottom: 70px;
  margin-bottom: 70px;
  border-bottom: 1px solid #9B9B9B;
}
@media screen and (max-width: 640px) {
  .single-content__head {
    padding-bottom: 40px;
    margin-bottom: 40px;
  }
}
.single-content__head time {
  order: 1;
  display: block;
  font-size: 14px;
  letter-spacing: 0.1em;
  padding-right: 1em;
  color: var(--red);
}
@media screen and (max-width: 640px) {
  .single-content__head time {
    font-size: 13px;
  }
}
.single-content__head .cat {
  order: 2;
  width: 120px;
  background-color: var(--red);
  color: #ffffff;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  letter-spacing: 0.1em;
  font-size: 12px;
}
@media screen and (max-width: 640px) {
  .single-content__head .cat {
    font-size: 10px;
    width: 80px;
    height: 15px;
  }
}
.single-content__head .cat:not(:first-of-type) {
  margin-left: 5px;
}
.single-content__head h1 {
  width: 100%;
  order: 3;
  font-size: 20px;
  font-weight: normal;
  line-height: 1.8;
  margin-top: 1.5em;
}
@media screen and (max-width: 640px) {
  .single-content__head h1 {
    font-size: 18px;
    line-height: 1.65;
    margin-top: 0.5em;
  }
}

/* ---------------------------
  single nav
----------------------------- */
.single-nav {
  margin-top: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 640px) {
  .single-nav {
    margin-top: 50px;
    flex-direction: column;
    justify-content: center;
    margin-bottom: -15px;
  }
}

.single-nav > a,
.single-nav__spacer {
  width: calc((100% - 100px) / 3);
  margin: 0;
}
@media screen and (max-width: 896px) {
  .single-nav > a,
.single-nav__spacer {
    width: calc((100% - 60px) / 3);
  }
}
@media screen and (max-width: 640px) {
  .single-nav > a,
.single-nav__spacer {
    width: 100%;
    margin-bottom: 15px;
  }
}

@media screen and (max-width: 640px) {
  .single-nav__spacer {
    display: none;
  }
}

/* ---------------------------
  contents 固定ページテンプレート
----------------------------- */
.contents,
.wp-editor.post-type-page {
  /* ---------------------------
    base
  ----------------------------- */
  /* ---------------------------
    table
  ----------------------------- */
  /* ---------------------------
    align
  ----------------------------- */
  /* ---------------------------
    image
  ----------------------------- */
  /* ---------------------------
    column layout
  ----------------------------- */
  /* ---------------------------
    gray box
  ----------------------------- */
  /* ---------------------------
    link list
  ----------------------------- */
  /* ---------------------------
    faq list
  ----------------------------- */
  /* ---------------------------
    contact
  ----------------------------- */
  /* ---------------------------
    embed
  ----------------------------- */
  /* ---------------------------
    unique
  ----------------------------- */
  /* ---------------------------
    other utility
  ----------------------------- */
  /* ---------------------------
    // end
  ----------------------------- */
}
.contents > *,
.wp-editor.post-type-page > * {
  margin-top: 1em;
  margin-bottom: 1em;
}
.contents > *:first-child,
.wp-editor.post-type-page > *:first-child {
  margin-top: 0 !important;
}
.contents > *:last-child,
.wp-editor.post-type-page > *:last-child {
  margin-bottom: 0 !important;
}
.contents h1:not([class]),
.wp-editor.post-type-page h1:not([class]) {
  font-size: 40px;
  text-align: center;
  font-weight: normal;
}
@media screen and (max-width: 896px) {
  .contents h1:not([class]),
.wp-editor.post-type-page h1:not([class]) {
    font-size: 35px;
  }
}
@media screen and (max-width: 640px) {
  .contents h1:not([class]),
.wp-editor.post-type-page h1:not([class]) {
    font-size: 30px;
  }
}
.contents h1:not([class]) span,
.wp-editor.post-type-page h1:not([class]) span {
  display: block;
  text-align: center;
  margin-bottom: 0.8em;
  font-size: 20px;
  color: var(--red);
  font-weight: normal;
}
@media screen and (max-width: 896px) {
  .contents h1:not([class]) span,
.wp-editor.post-type-page h1:not([class]) span {
    font-size: 18px;
  }
}
@media screen and (max-width: 640px) {
  .contents h1:not([class]) span,
.wp-editor.post-type-page h1:not([class]) span {
    font-size: 16px;
    margin-bottom: 0.5em;
  }
}
.contents h2:not([class]),
.wp-editor.post-type-page h2:not([class]) {
  text-align: center;
  font-size: 36px;
  color: var(--red);
  font-family: var(--enFont);
  font-weight: bold;
  font-style: italic;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  line-height: 1.2;
  margin-bottom: 2em;
}
@media screen and (max-width: 896px) {
  .contents h2:not([class]),
.wp-editor.post-type-page h2:not([class]) {
    font-size: 30px;
  }
}
@media screen and (max-width: 640px) {
  .contents h2:not([class]),
.wp-editor.post-type-page h2:not([class]) {
    font-size: 26px;
    margin-bottom: 1em;
  }
}
.contents h2:not([class]) span,
.wp-editor.post-type-page h2:not([class]) span {
  display: block;
  text-align: center;
  font-size: 16px;
  color: var(--fc);
  font-family: var(--jaFont);
  font-weight: normal;
  font-style: normal;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 896px) {
  .contents h2:not([class]) span,
.wp-editor.post-type-page h2:not([class]) span {
    font-size: 15px;
  }
}
@media screen and (max-width: 640px) {
  .contents h2:not([class]) span,
.wp-editor.post-type-page h2:not([class]) span {
    font-size: 14px;
  }
}
.contents h3:not([class]),
.wp-editor.post-type-page h3:not([class]) {
  font-size: 26px;
  font-weight: normal;
  text-align: center;
  color: var(--red);
  margin-top: 1.5em;
  margin-bottom: 1.5em;
}
@media screen and (max-width: 640px) {
  .contents h3:not([class]),
.wp-editor.post-type-page h3:not([class]) {
    font-size: 20px;
  }
}
.contents h4:not([class]),
.wp-editor.post-type-page h4:not([class]) {
  font-size: 20px;
  font-weight: normal;
  color: var(--red);
  margin-top: 2em;
}
@media screen and (max-width: 640px) {
  .contents h4:not([class]),
.wp-editor.post-type-page h4:not([class]) {
    font-size: 16px;
    margin-top: 1.5em;
  }
}
.contents h5:not([class]),
.wp-editor.post-type-page h5:not([class]) {
  font-size: 16px;
  font-weight: normal;
}
.contents h6:not([class]),
.wp-editor.post-type-page h6:not([class]) {
  font-size: 12px;
  font-weight: normal;
}
.contents p:not([class]),
.wp-editor.post-type-page p:not([class]) {
  font-size: 14px;
  line-height: 2;
  text-align: left;
}
@media screen and (max-width: 640px) {
  .contents p:not([class]),
.wp-editor.post-type-page p:not([class]) {
    font-size: 13px;
    line-height: 1.75;
  }
}
.contents .lead,
.wp-editor.post-type-page .lead {
  text-align: center;
  font-size: 16px;
  line-height: 2;
}
@media screen and (max-width: 640px) {
  .contents .lead,
.wp-editor.post-type-page .lead {
    font-size: 14px;
    text-align: left;
    line-height: 1.75;
  }
}
.contents .en,
.wp-editor.post-type-page .en {
  font-family: var(--enFont);
  font-weight: bold;
  font-style: italic;
  color: var(--red);
}
.contents strong,
.contents strong > *,
.wp-editor.post-type-page strong,
.wp-editor.post-type-page strong > * {
  font-weight: bold;
}
.contents small,
.wp-editor.post-type-page small {
  font-size: 0.85em;
}
.contents em,
.contents em > *,
.wp-editor.post-type-page em,
.wp-editor.post-type-page em > * {
  font-style: italic;
}
.contents del,
.wp-editor.post-type-page del {
  text-decoration: line-through double var(--red);
}
.contents hr:not([class]),
.wp-editor.post-type-page hr:not([class]) {
  display: block;
  border: none;
  border-top: 1px dotted #9B9B9B;
  margin: 70px 0;
}
@media screen and (max-width: 640px) {
  .contents hr:not([class]),
.wp-editor.post-type-page hr:not([class]) {
    margin: 30px 0;
  }
}
.contents hr.large,
.wp-editor.post-type-page hr.large {
  display: block;
  border: none;
  border-top: 1px solid #9B9B9B;
  margin: 120px 0;
}
@media screen and (max-width: 640px) {
  .contents hr.large,
.wp-editor.post-type-page hr.large {
    margin: 50px 0;
  }
}
.contents blockquote,
.wp-editor.post-type-page blockquote {
  padding: 0.5em;
  background-color: #f2f2f2;
}
.contents a:not([class]),
.wp-editor.post-type-page a:not([class]) {
  color: var(--red);
  text-decoration: underline;
  transition: text-decoration 0.1s ease-in-out;
}
@media (hover: hover) and (pointer: fine) {
  .contents a:not([class]):hover,
.wp-editor.post-type-page a:not([class]):hover {
    text-decoration: none;
  }
}
.contents ul:not([class]),
.wp-editor.post-type-page ul:not([class]) {
  list-style: none;
  padding-left: 0;
  margin-top: 0;
  margin-bottom: 0;
}
.contents ul:not([class]) li,
.wp-editor.post-type-page ul:not([class]) li {
  font-size: 14px;
  line-height: 2;
  padding-left: 1.3em;
  background-image: url(../img/common/list-style-square.svg);
  background-size: 10px;
  background-repeat: no-repeat;
  background-position: left top 0.7em;
  text-align: left;
}
@media screen and (max-width: 640px) {
  .contents ul:not([class]) li,
.wp-editor.post-type-page ul:not([class]) li {
    font-size: 13px;
    background-position: left top 0.6em;
  }
}
.contents ul:not([class]) li:first-of-type,
.wp-editor.post-type-page ul:not([class]) li:first-of-type {
  margin-top: 0;
}
.contents ul:not([class]) li:last-of-type,
.wp-editor.post-type-page ul:not([class]) li:last-of-type {
  margin-bottom: 0;
}
.contents ol:not([class]),
.wp-editor.post-type-page ol:not([class]) {
  counter-reset: item;
  list-style-type: none;
  padding-left: 0;
  margin-top: 0;
  margin-bottom: 0;
}
.contents ol:not([class]) li,
.wp-editor.post-type-page ol:not([class]) li {
  font-size: 14px;
  line-height: 2;
  text-align: left;
}
@media screen and (max-width: 640px) {
  .contents ol:not([class]) li,
.wp-editor.post-type-page ol:not([class]) li {
    font-size: 13px;
  }
}
.contents ol:not([class]) li:before,
.wp-editor.post-type-page ol:not([class]) li:before {
  counter-increment: item;
  content: "0" counter(item);
  padding-right: 0.5em;
  color: var(--red);
}
.contents ol:not([class]) li:first-of-type,
.wp-editor.post-type-page ol:not([class]) li:first-of-type {
  margin-top: 0;
}
.contents ol:not([class]) li:last-of-type,
.wp-editor.post-type-page ol:not([class]) li:last-of-type {
  margin-bottom: 0;
}
.contents table,
.wp-editor.post-type-page table {
  width: 100%;
  border-collapse: collapse;
}
.contents table caption,
.wp-editor.post-type-page table caption {
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  overflow: hidden;
  text-align: center;
  font-size: 16px;
  background-color: var(--red);
  color: #ffffff;
  padding: 1em;
  font-weight: normal;
}
@media screen and (max-width: 640px) {
  .contents table caption,
.wp-editor.post-type-page table caption {
    font-size: 14px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
  }
}
.contents table th,
.contents table td,
.wp-editor.post-type-page table th,
.wp-editor.post-type-page table td {
  border: 1px solid #9B9B9B;
  font-size: 14px;
  font-weight: normal;
  padding: 0.8em 1em;
  text-align: center;
  vertical-align: middle;
  word-break: break-all;
}
@media screen and (max-width: 640px) {
  .contents table th,
.contents table td,
.wp-editor.post-type-page table th,
.wp-editor.post-type-page table td {
    font-size: 13px;
  }
}
.contents table th,
.wp-editor.post-type-page table th {
  background-color: #EDE0DC;
}
.contents table td,
.wp-editor.post-type-page table td {
  background-color: #ffffff;
}
.contents table tr > td:last-child,
.contents table tr > th:last-child,
.wp-editor.post-type-page table tr > td:last-child,
.wp-editor.post-type-page table tr > th:last-child {
  border-right: none;
}
.contents table tr > td:first-child,
.contents table tr > th:first-child,
.wp-editor.post-type-page table tr > td:first-child,
.wp-editor.post-type-page table tr > th:first-child {
  border-left: none;
}
.contents .table-overflow,
.wp-editor.post-type-page .table-overflow {
  margin-bottom: 50px;
}
@media screen and (max-width: 640px) {
  .contents .table-overflow,
.wp-editor.post-type-page .table-overflow {
    margin-bottom: 40px;
    overflow-x: scroll;
    width: 100%;
  }
  .contents .table-overflow table,
.wp-editor.post-type-page .table-overflow table {
    width: 950px !important;
    height: auto !important;
    max-width: max-content !important;
    margin-top: 0;
    margin-bottom: 0;
  }
}
.contents dl:not([class]),
.wp-editor.post-type-page dl:not([class]) {
  display: flex;
  flex-wrap: wrap;
}
.contents dl:not([class]) dt,
.contents dl:not([class]) dd,
.wp-editor.post-type-page dl:not([class]) dt,
.wp-editor.post-type-page dl:not([class]) dd {
  font-size: 14px;
  line-height: 2;
}
@media screen and (max-width: 640px) {
  .contents dl:not([class]) dt,
.contents dl:not([class]) dd,
.wp-editor.post-type-page dl:not([class]) dt,
.wp-editor.post-type-page dl:not([class]) dd {
    font-size: 13px;
    line-height: 1.75;
  }
}
.contents dl:not([class]) dt,
.wp-editor.post-type-page dl:not([class]) dt {
  width: 120px;
  color: var(--red);
}
@media screen and (max-width: 640px) {
  .contents dl:not([class]) dt,
.wp-editor.post-type-page dl:not([class]) dt {
    width: 95px;
  }
}
.contents dl:not([class]) dd,
.wp-editor.post-type-page dl:not([class]) dd {
  width: calc(100% - 120px);
}
@media screen and (max-width: 640px) {
  .contents dl:not([class]) dd,
.wp-editor.post-type-page dl:not([class]) dd {
    width: calc(100% - 95px);
  }
}
.contents .aligncenter,
.wp-editor.post-type-page .aligncenter {
  text-align: center;
}
.contents .aligncenter img,
.wp-editor.post-type-page .aligncenter img {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.contents .alignleft,
.wp-editor.post-type-page .alignleft {
  text-align: left;
}
.contents .alignleft img,
.wp-editor.post-type-page .alignleft img {
  display: block;
  margin-right: auto;
  margin-left: 0;
}
.contents .alignright,
.wp-editor.post-type-page .alignright {
  text-align: right;
}
.contents .alignright img,
.wp-editor.post-type-page .alignright img {
  display: block;
  margin-left: auto;
  margin-right: 0;
}
.contents img,
.wp-editor.post-type-page img {
  display: block;
}
.contents img.aligncenter,
.wp-editor.post-type-page img.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.contents img.alignleft,
.wp-editor.post-type-page img.alignleft {
  display: block;
  margin-right: auto;
  margin-left: 0;
}
.contents img.alignright,
.wp-editor.post-type-page img.alignright {
  display: block;
  margin-left: auto;
  margin-right: 0;
}
.contents .flex2,
.wp-editor.post-type-page .flex2 {
  margin-top: 50px;
  margin-bottom: 50px;
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
}
@media screen and (max-width: 896px) {
  .contents .flex2,
.wp-editor.post-type-page .flex2 {
    gap: 40px;
    margin-top: 20px;
    margin-bottom: 40px;
  }
}
.contents .flex2.reverse,
.wp-editor.post-type-page .flex2.reverse {
  flex-direction: row-reverse;
}
@media screen and (max-width: 640px) {
  .contents .flex2.reverse,
.wp-editor.post-type-page .flex2.reverse {
    flex-direction: inherit;
  }
}
.contents .flex2 > div,
.wp-editor.post-type-page .flex2 > div {
  width: calc((100% - 50px) / 2);
}
@media screen and (max-width: 896px) {
  .contents .flex2 > div,
.wp-editor.post-type-page .flex2 > div {
    width: calc((100% - 40px) / 2);
  }
}
@media screen and (max-width: 640px) {
  .contents .flex2 > div,
.wp-editor.post-type-page .flex2 > div {
    width: 100%;
  }
}
.contents .flex2 > div > *,
.wp-editor.post-type-page .flex2 > div > * {
  margin-top: 1em;
  margin-bottom: 1em;
}
.contents .flex2 > div > *:first-child,
.wp-editor.post-type-page .flex2 > div > *:first-child {
  margin-top: 0 !important;
}
.contents .flex2 > div > *:last-child,
.wp-editor.post-type-page .flex2 > div > *:last-child {
  margin-bottom: 0 !important;
}
.contents .flex2 > div img,
.contents .flex2 > div picture,
.contents .flex2 > div figure,
.wp-editor.post-type-page .flex2 > div img,
.wp-editor.post-type-page .flex2 > div picture,
.wp-editor.post-type-page .flex2 > div figure {
  margin-left: auto;
  margin-right: auto;
}
.contents .flex2 > div hr,
.wp-editor.post-type-page .flex2 > div hr {
  margin-top: 25px;
  margin-bottom: 25px;
}
@media screen and (max-width: 640px) {
  .contents .flex2 > div hr,
.wp-editor.post-type-page .flex2 > div hr {
    margin-top: 15px;
    margin-bottom: 15px;
  }
}
.contents .flex3,
.wp-editor.post-type-page .flex3 {
  margin-top: 50px;
  margin-bottom: 50px;
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
}
@media screen and (max-width: 896px) {
  .contents .flex3,
.wp-editor.post-type-page .flex3 {
    gap: 40px;
    margin-top: 40px;
    margin-bottom: 40px;
  }
}
.contents .flex3 > div,
.wp-editor.post-type-page .flex3 > div {
  width: calc((100% - 100px) / 3);
}
@media screen and (max-width: 896px) {
  .contents .flex3 > div,
.wp-editor.post-type-page .flex3 > div {
    width: calc((100% - 80px) / 2);
  }
}
@media screen and (max-width: 640px) {
  .contents .flex3 > div,
.wp-editor.post-type-page .flex3 > div {
    width: 100%;
  }
}
.contents .flex3 > div > *,
.wp-editor.post-type-page .flex3 > div > * {
  margin-top: 1em;
  margin-bottom: 1em;
}
.contents .flex3 > div > *:first-child,
.wp-editor.post-type-page .flex3 > div > *:first-child {
  margin-top: 0 !important;
}
.contents .flex3 > div > *:last-child,
.wp-editor.post-type-page .flex3 > div > *:last-child {
  margin-bottom: 0 !important;
}
.contents .flex3 > div img,
.contents .flex3 > div picture,
.contents .flex3 > div figure,
.wp-editor.post-type-page .flex3 > div img,
.wp-editor.post-type-page .flex3 > div picture,
.wp-editor.post-type-page .flex3 > div figure {
  margin-left: auto;
  margin-right: auto;
}
.contents .flex3 > div hr,
.wp-editor.post-type-page .flex3 > div hr {
  margin-top: 25px;
  margin-bottom: 25px;
}
@media screen and (max-width: 640px) {
  .contents .flex3 > div hr,
.wp-editor.post-type-page .flex3 > div hr {
    margin-top: 15px;
    margin-bottom: 15px;
  }
}
.contents .flex4,
.wp-editor.post-type-page .flex4 {
  margin-top: 50px;
  margin-bottom: 50px;
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
}
@media screen and (max-width: 896px) {
  .contents .flex4,
.wp-editor.post-type-page .flex4 {
    gap: 40px;
    margin-top: 40px;
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 640px) {
  .contents .flex4,
.wp-editor.post-type-page .flex4 {
    gap: 40px 20px;
  }
}
.contents .flex4 > div,
.wp-editor.post-type-page .flex4 > div {
  width: calc((100% - 200px) / 4);
}
@media screen and (max-width: 896px) {
  .contents .flex4 > div,
.wp-editor.post-type-page .flex4 > div {
    width: calc((100% - 120px) / 3);
  }
}
@media screen and (max-width: 640px) {
  .contents .flex4 > div,
.wp-editor.post-type-page .flex4 > div {
    width: calc((100% - 40px) / 2);
  }
}
.contents .flex4 > div > *,
.wp-editor.post-type-page .flex4 > div > * {
  margin-top: 1em;
  margin-bottom: 1em;
}
.contents .flex4 > div > *:first-child,
.wp-editor.post-type-page .flex4 > div > *:first-child {
  margin-top: 0 !important;
}
.contents .flex4 > div > *:last-child,
.wp-editor.post-type-page .flex4 > div > *:last-child {
  margin-bottom: 0 !important;
}
.contents .flex4 > div img,
.contents .flex4 > div picture,
.contents .flex4 > div figure,
.wp-editor.post-type-page .flex4 > div img,
.wp-editor.post-type-page .flex4 > div picture,
.wp-editor.post-type-page .flex4 > div figure {
  margin-left: auto;
  margin-right: auto;
}
.contents .flex4 > div hr,
.wp-editor.post-type-page .flex4 > div hr {
  margin-top: 25px;
  margin-bottom: 25px;
}
@media screen and (max-width: 640px) {
  .contents .flex4 > div hr,
.wp-editor.post-type-page .flex4 > div hr {
    margin-top: 15px;
    margin-bottom: 15px;
  }
}
.contents .flex280,
.wp-editor.post-type-page .flex280 {
  margin-top: 50px;
  margin-bottom: 50px;
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
}
@media screen and (max-width: 896px) {
  .contents .flex280,
.wp-editor.post-type-page .flex280 {
    gap: 40px;
    margin-top: 40px;
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 640px) {
  .contents .flex280,
.wp-editor.post-type-page .flex280 {
    gap: 40px 20px;
  }
}
.contents .flex280 > div:first-of-type,
.wp-editor.post-type-page .flex280 > div:first-of-type {
  width: 280px;
}
@media screen and (max-width: 896px) {
  .contents .flex280 > div:first-of-type,
.wp-editor.post-type-page .flex280 > div:first-of-type {
    width: 100%;
  }
}
.contents .flex280 > div:last-of-type,
.wp-editor.post-type-page .flex280 > div:last-of-type {
  width: calc(100% - 330px);
}
@media screen and (max-width: 896px) {
  .contents .flex280 > div:last-of-type,
.wp-editor.post-type-page .flex280 > div:last-of-type {
    width: 100%;
  }
}
.contents .flex280 > div > *,
.wp-editor.post-type-page .flex280 > div > * {
  margin-top: 1em;
  margin-bottom: 1em;
}
.contents .flex280 > div > *:first-child,
.wp-editor.post-type-page .flex280 > div > *:first-child {
  margin-top: 0 !important;
}
.contents .flex280 > div > *:last-child,
.wp-editor.post-type-page .flex280 > div > *:last-child {
  margin-bottom: 0 !important;
}
.contents .flex280 > div img,
.contents .flex280 > div picture,
.contents .flex280 > div figure,
.wp-editor.post-type-page .flex280 > div img,
.wp-editor.post-type-page .flex280 > div picture,
.wp-editor.post-type-page .flex280 > div figure {
  margin-left: auto;
  margin-right: auto;
}
.contents .flex-gap-link,
.wp-editor.post-type-page .flex-gap-link {
  gap: 30px 50px;
}
@media screen and (max-width: 896px) {
  .contents .flex-gap-link,
.wp-editor.post-type-page .flex-gap-link {
    gap: 30px;
    justify-content: center;
  }
}
@media screen and (max-width: 640px) {
  .contents .flex-gap-link,
.wp-editor.post-type-page .flex-gap-link {
    gap: 15px;
  }
}
@media screen and (max-width: 640px) {
  .contents .flex-gap-small,
.wp-editor.post-type-page .flex-gap-small {
    gap: 15px;
  }
}
@media screen and (max-width: 640px) {
  .contents .flex-gap-medium,
.wp-editor.post-type-page .flex-gap-medium {
    gap: 25px;
  }
}
@media screen and (max-width: 640px) {
  .contents .flex-gap-none,
.wp-editor.post-type-page .flex-gap-none {
    gap: 0;
  }
}
@media screen and (max-width: 640px) {
  .contents .flex-sp-basis > div,
.wp-editor.post-type-page .flex-sp-basis > div {
    flex: 1;
  }
}
.contents .flex-guide h4,
.wp-editor.post-type-page .flex-guide h4 {
  margin-bottom: 0 !important;
  margin-top: 0.9em !important;
}
.contents .flex-guide h4 + p,
.wp-editor.post-type-page .flex-guide h4 + p {
  margin-top: 0.5em;
}
@media not all and (min-resolution: 0.001dpcm) {
  @supports not (translate: none) {
    .contents .flex2,
.wp-editor.post-type-page .flex2 {
      margin-left: -50px;
      max-width: none;
      gap: inherit;
    }
    @media screen and (max-width: 896px) {
      .contents .flex2,
.wp-editor.post-type-page .flex2 {
        margin-left: -40px;
      }
    }
    @media screen and (max-width: 640px) {
      .contents .flex2,
.wp-editor.post-type-page .flex2 {
        margin-left: 0;
      }
    }
    .contents .flex2 > div,
.wp-editor.post-type-page .flex2 > div {
      width: 50%;
      padding-left: 50px;
      margin-bottom: 50px;
    }
    @media screen and (max-width: 896px) {
      .contents .flex2 > div,
.wp-editor.post-type-page .flex2 > div {
        width: 50%;
        padding-left: 40px;
        margin-bottom: 40px;
      }
    }
    @media screen and (max-width: 640px) {
      .contents .flex2 > div,
.wp-editor.post-type-page .flex2 > div {
        width: 100%;
        padding-left: 0;
      }
    }
    .contents .flex3,
.wp-editor.post-type-page .flex3 {
      margin-left: -50px;
      max-width: none;
      gap: inherit;
    }
    @media screen and (max-width: 896px) {
      .contents .flex3,
.wp-editor.post-type-page .flex3 {
        margin-left: -40px;
      }
    }
    @media screen and (max-width: 640px) {
      .contents .flex3,
.wp-editor.post-type-page .flex3 {
        margin-left: 0;
      }
    }
    .contents .flex3 > div,
.wp-editor.post-type-page .flex3 > div {
      width: 33.33%;
      padding-left: 50px;
      margin-bottom: 50px;
    }
    @media screen and (max-width: 896px) {
      .contents .flex3 > div,
.wp-editor.post-type-page .flex3 > div {
        width: 50%;
        padding-left: 40px;
        margin-bottom: 40px;
      }
    }
    @media screen and (max-width: 640px) {
      .contents .flex3 > div,
.wp-editor.post-type-page .flex3 > div {
        width: 100%;
        padding-left: 0;
      }
    }
    .contents .flex4,
.wp-editor.post-type-page .flex4 {
      margin-left: -50px;
      max-width: none;
      gap: inherit;
    }
    @media screen and (max-width: 896px) {
      .contents .flex4,
.wp-editor.post-type-page .flex4 {
        margin-left: -40px;
      }
    }
    @media screen and (max-width: 640px) {
      .contents .flex4,
.wp-editor.post-type-page .flex4 {
        margin-left: -20px;
      }
    }
    .contents .flex4 > div,
.wp-editor.post-type-page .flex4 > div {
      width: 25%;
      padding-left: 50px;
      margin-bottom: 50px;
    }
    @media screen and (max-width: 896px) {
      .contents .flex4 > div,
.wp-editor.post-type-page .flex4 > div {
        width: 33.33%;
        padding-left: 40px;
        margin-bottom: 40px;
      }
    }
    @media screen and (max-width: 640px) {
      .contents .flex4 > div,
.wp-editor.post-type-page .flex4 > div {
        width: 50%;
        padding-left: 20px;
      }
    }
    .contents .flex-gap-link,
.wp-editor.post-type-page .flex-gap-link {
      margin-left: -50px;
      gap: inherit;
    }
    .contents .flex-gap-link > div,
.wp-editor.post-type-page .flex-gap-link > div {
      padding-left: 50px;
      margin-bottom: 30px;
    }
    @media screen and (max-width: 896px) {
      .contents .flex-gap-link,
.wp-editor.post-type-page .flex-gap-link {
        margin-left: -30px;
        justify-content: center;
      }
      .contents .flex-gap-link > div,
.wp-editor.post-type-page .flex-gap-link > div {
        padding-left: 30px;
      }
    }
    @media screen and (max-width: 640px) {
      .contents .flex-gap-link > div,
.wp-editor.post-type-page .flex-gap-link > div {
        padding-left: 15px;
        margin-bottom: 15px;
      }
    }
    @media screen and (max-width: 640px) {
      .contents .flex-gap-small,
.wp-editor.post-type-page .flex-gap-small {
        margin-left: -15px;
        gap: inherit;
      }
      .contents .flex-gap-small > div,
.wp-editor.post-type-page .flex-gap-small > div {
        padding-left: 15px;
        margin-bottom: 15px;
      }
    }
    @media screen and (max-width: 640px) {
      .contents .flex-gap-medium,
.wp-editor.post-type-page .flex-gap-medium {
        margin-left: -25px;
        gap: inherit;
      }
      .contents .flex-gap-medium > div,
.wp-editor.post-type-page .flex-gap-medium > div {
        padding-left: 25px;
        margin-bottom: 25px;
      }
    }
    @media screen and (max-width: 640px) {
      .contents .flex-gap-none,
.wp-editor.post-type-page .flex-gap-none {
        margin-left: 0;
        gap: inherit;
      }
      .contents .flex-gap-none > div,
.wp-editor.post-type-page .flex-gap-none > div {
        padding-left: 0;
        margin-bottom: 0;
      }
    }
  }
}
.contents .box,
.wp-editor.post-type-page .box {
  padding: 28px 30px;
  border-radius: 20px;
  background-color: #EDEDED;
  height: fit-content;
}
@media screen and (max-width: 640px) {
  .contents .box,
.wp-editor.post-type-page .box {
    padding: 18px 20px;
    border-radius: 15px;
  }
}
.contents .box > *,
.wp-editor.post-type-page .box > * {
  margin-top: 0.5em;
  margin-bottom: 0.5em;
}
.contents .box > *:first-child,
.wp-editor.post-type-page .box > *:first-child {
  margin-top: 0 !important;
}
.contents .box > *:last-child,
.wp-editor.post-type-page .box > *:last-child {
  margin-bottom: 0 !important;
}
.contents .box hr,
.wp-editor.post-type-page .box hr {
  margin-top: 22px;
  margin-bottom: 22px;
}
@media screen and (max-width: 640px) {
  .contents .box hr,
.wp-editor.post-type-page .box hr {
    margin-top: 16px;
    margin-bottom: 16px;
  }
}
.contents .box hr + h4:not([class]),
.wp-editor.post-type-page .box hr + h4:not([class]) {
  margin-top: 0;
}
.contents .box h3:not([class]),
.wp-editor.post-type-page .box h3:not([class]) {
  text-align: left;
}
.contents .box h5:not([class]),
.wp-editor.post-type-page .box h5:not([class]) {
  color: var(--red);
}
.contents .link-list,
.wp-editor.post-type-page .link-list {
  margin-bottom: 50px;
}
@media screen and (max-width: 640px) {
  .contents .link-list,
.wp-editor.post-type-page .link-list {
    margin-bottom: 40px;
  }
}
.contents .link-list li,
.wp-editor.post-type-page .link-list li {
  border-bottom: 1px solid #8C8C8C;
}
.contents .link-list a,
.wp-editor.post-type-page .link-list a {
  display: block;
  font-size: 14px;
  background-image: url(../img/common/right-chevron-black.svg);
  background-size: 5px;
  background-position: right center;
  background-repeat: no-repeat;
  padding-right: 1em;
  padding-top: 0.1em;
  padding-bottom: 0.1em;
  color: var(--fc);
  text-decoration: none;
}
.contents .faq-list dt, .contents .faq-list dd,
.wp-editor.post-type-page .faq-list dt,
.wp-editor.post-type-page .faq-list dd {
  background-repeat: no-repeat;
  background-size: 30px;
  padding-left: 50px;
  line-height: 2;
}
@media screen and (max-width: 640px) {
  .contents .faq-list dt, .contents .faq-list dd,
.wp-editor.post-type-page .faq-list dt,
.wp-editor.post-type-page .faq-list dd {
    line-height: 1.75;
    min-height: 30px;
  }
}
.contents .faq-list dt,
.wp-editor.post-type-page .faq-list dt {
  color: var(--red);
  font-size: 16px;
  margin-bottom: 30px;
  background-image: url(../img/common/q.svg);
}
@media screen and (max-width: 640px) {
  .contents .faq-list dt,
.wp-editor.post-type-page .faq-list dt {
    margin-bottom: 20px;
    font-size: 14px;
  }
}
.contents .faq-list dd,
.wp-editor.post-type-page .faq-list dd {
  font-size: 14px;
  background-image: url(../img/common/a.svg);
}
@media screen and (max-width: 640px) {
  .contents .faq-list dd,
.wp-editor.post-type-page .faq-list dd {
    font-size: 13px;
  }
}
.contents .faq-list dd:not(:last-of-type),
.wp-editor.post-type-page .faq-list dd:not(:last-of-type) {
  margin-bottom: 70px;
  padding-bottom: 70px;
  border-bottom: 1px dotted #9B9B9B;
}
@media screen and (max-width: 640px) {
  .contents .faq-list dd:not(:last-of-type),
.wp-editor.post-type-page .faq-list dd:not(:last-of-type) {
    margin-bottom: 40px;
    padding-bottom: 40px;
  }
}
.contents .contact-form,
.wp-editor.post-type-page .contact-form {
  margin-top: 50px;
}
@media screen and (max-width: 640px) {
  .contents .contact-form,
.wp-editor.post-type-page .contact-form {
    margin-top: 30px;
  }
}
.contents .contact-form input[type=text],
.contents .contact-form input[type=tel],
.contents .contact-form input[type=email],
.contents .contact-form textarea,
.wp-editor.post-type-page .contact-form input[type=text],
.wp-editor.post-type-page .contact-form input[type=tel],
.wp-editor.post-type-page .contact-form input[type=email],
.wp-editor.post-type-page .contact-form textarea {
  appearance: none;
  -webkit-appearance: none;
  border: none;
  width: 100%;
  background-color: #F0F0F0;
  font-size: 16px;
  padding: 0.5em 1em;
  border-radius: 5px;
  color: var(--fc);
  font-weight: normal;
  font-family: var(--jaFont);
}
.contents .contact-form input[type=text]::placeholder,
.contents .contact-form input[type=tel]::placeholder,
.contents .contact-form input[type=email]::placeholder,
.contents .contact-form textarea::placeholder,
.wp-editor.post-type-page .contact-form input[type=text]::placeholder,
.wp-editor.post-type-page .contact-form input[type=tel]::placeholder,
.wp-editor.post-type-page .contact-form input[type=email]::placeholder,
.wp-editor.post-type-page .contact-form textarea::placeholder {
  color: #BBBBBB;
  font-size: 14px;
}
.contents .contact-form .small,
.wp-editor.post-type-page .contact-form .small {
  max-width: 70px;
}
.contents .contact-form .medium,
.wp-editor.post-type-page .contact-form .medium {
  max-width: 410px;
}
.contents .contact-form select,
.wp-editor.post-type-page .contact-form select {
  appearance: none;
  -webkit-appearance: none;
  max-width: 410px;
  width: 100%;
  border-radius: 5px;
  border: 1px solid #CBCBCB;
  background-color: #fff;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.15);
  font-size: 14px;
  color: var(--fc);
  padding: 0.5em 1em;
  padding-right: 40px;
  background-image: url(../img/common/select-chevron-black.svg);
  background-position: right 15px center;
  background-size: 10px;
  background-repeat: no-repeat;
  display: block;
  font-weight: normal;
  font-family: var(--jaFont);
}
.contents .contact-form textarea,
.wp-editor.post-type-page .contact-form textarea {
  height: 200px;
}
.contents .contact-form .notice,
.wp-editor.post-type-page .contact-form .notice {
  max-width: 740px;
  margin-right: 0;
  margin-left: auto;
  line-height: 2;
  font-size: 14px;
  margin-top: 50px;
}
@media screen and (max-width: 640px) {
  .contents .contact-form .notice,
.wp-editor.post-type-page .contact-form .notice {
    margin-top: 30px;
    font-size: 13px;
  }
}
.contents .contact-form .submit,
.wp-editor.post-type-page .contact-form .submit {
  max-width: 740px;
  margin-right: 0;
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 70px;
}
@media screen and (max-width: 896px) {
  .contents .contact-form .submit,
.wp-editor.post-type-page .contact-form .submit {
    margin-right: auto;
    justify-content: center;
    margin-top: 50px;
  }
}
@media screen and (max-width: 640px) {
  .contents .contact-form .submit,
.wp-editor.post-type-page .contact-form .submit {
    flex-direction: column;
    gap: 15px;
    margin-top: 30px;
  }
}
.contents .contact-form .btn-clear, .contents .contact-form .btn-back,
.wp-editor.post-type-page .contact-form .btn-clear,
.wp-editor.post-type-page .contact-form .btn-back {
  appearance: none;
  -webkit-appearance: none;
  border: none;
  width: 100%;
  max-width: 135px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  border-radius: 25px;
  color: var(--fc);
  font-size: 12px;
  font-weight: normal;
  background-color: #F0F0F0;
  cursor: pointer;
}
.contents .contact-form .btn-submit,
.wp-editor.post-type-page .contact-form .btn-submit {
  appearance: none;
  -webkit-appearance: none;
  border: none;
  width: 100%;
  max-width: 280px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  border-radius: 25px;
  color: #ffffff;
  font-size: 12px;
  font-weight: normal;
  background-color: var(--red);
  background-image: url(../img/common/right-chevron-white.svg);
  background-repeat: no-repeat;
  background-size: 6px;
  background-position: right 15px center;
  box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.25);
  cursor: pointer;
}
.contents .contact-form__list,
.wp-editor.post-type-page .contact-form__list {
  display: flex;
  margin-bottom: 30px;
}
@media screen and (max-width: 640px) {
  .contents .contact-form__list,
.wp-editor.post-type-page .contact-form__list {
    display: block;
    margin-bottom: 20px;
  }
}
.contents .contact-form__list dt,
.wp-editor.post-type-page .contact-form__list dt {
  width: 200px;
  padding-right: 1em;
  font-size: 14px;
  padding-top: 0.5em;
}
@media screen and (max-width: 640px) {
  .contents .contact-form__list dt,
.wp-editor.post-type-page .contact-form__list dt {
    width: 100%;
    font-size: 13px;
    margin-bottom: 0.4em;
    padding-top: 0;
    padding-right: 0;
  }
}
.contents .contact-form__list dd,
.wp-editor.post-type-page .contact-form__list dd {
  width: calc(100% - 200px);
}
@media screen and (max-width: 640px) {
  .contents .contact-form__list dd,
.wp-editor.post-type-page .contact-form__list dd {
    width: 100%;
  }
}
.contents .mw_wp_form_confirm .contact-form__list,
.wp-editor.post-type-page .mw_wp_form_confirm .contact-form__list {
  padding-bottom: 15px;
  margin-bottom: 15px;
  border-bottom: 1px solid var(--bdc);
}
.contents .mw_wp_form_confirm .contact-form__list dt,
.wp-editor.post-type-page .mw_wp_form_confirm .contact-form__list dt {
  padding-top: 0;
}
.contents .mw_wp_form_confirm .btn-clear,
.wp-editor.post-type-page .mw_wp_form_confirm .btn-clear {
  display: none;
}
.contents .map,
.wp-editor.post-type-page .map {
  width: 100%;
  aspect-ratio: 940/400;
}
@media screen and (max-width: 640px) {
  .contents .map,
.wp-editor.post-type-page .map {
    aspect-ratio: 1/1;
  }
}
.contents .map iframe,
.wp-editor.post-type-page .map iframe {
  width: 100%;
  height: 100%;
}
.contents .youtube,
.wp-editor.post-type-page .youtube {
  width: 100%;
  aspect-ratio: 450/254;
}
.contents .youtube iframe,
.wp-editor.post-type-page .youtube iframe {
  width: 100%;
  height: 100%;
}
.contents .name,
.wp-editor.post-type-page .name {
  text-align: center;
  font-size: 20px;
  font-weight: normal;
}
@media screen and (max-width: 640px) {
  .contents .name,
.wp-editor.post-type-page .name {
    font-size: 16px;
  }
}
.contents .name span,
.wp-editor.post-type-page .name span {
  display: block;
  text-align: center;
  font-size: 14px;
}
@media screen and (max-width: 640px) {
  .contents .name span,
.wp-editor.post-type-page .name span {
    font-size: 11px;
  }
}
.contents .head,
.wp-editor.post-type-page .head {
  text-align: left;
  font-size: 40px;
  font-weight: normal;
  color: var(--red);
}
@media screen and (max-width: 640px) {
  .contents .head,
.wp-editor.post-type-page .head {
    font-size: 26px;
  }
}
.contents .head span,
.wp-editor.post-type-page .head span {
  font-size: 20px;
  display: block;
  color: var(--fc);
  margin-top: 0.5em;
}
@media screen and (max-width: 640px) {
  .contents .head span,
.wp-editor.post-type-page .head span {
    font-size: 16px;
    margin-top: 0.5em;
  }

}
.contents .en-head,
.wp-editor.post-type-page .en-head {
  text-align: left;
  font-size: 36px;
  margin-top: 0.7em !important;
  margin-bottom: 0 !important;
  color: var(--red);
  font-family: var(--enFont);
  font-weight: bold;
  font-style: italic;
  line-height: 1;
}
.contents .ja-en-head,
.wp-editor.post-type-page .ja-en-head {
  margin-bottom: 0.5em !important;
  display: flex;
  align-items: center;
  gap: 10px 20px;
  font-size: 26px;
  font-weight: normal;
}
@media screen and (max-width: 640px) {
  .contents .ja-en-head,
.wp-editor.post-type-page .ja-en-head {
    font-size: 20px;
    gap: 5px 15px;
  }
}
.contents .ja-en-head span,
.wp-editor.post-type-page .ja-en-head span {
  display: inline-block;
  font-family: var(--enFont);
  color: var(--red);
  font-weight: bold;
  font-style: italic;
  font-size: 14px;
}
@media screen and (max-width: 640px) {
  .contents .ja-en-head span,
.wp-editor.post-type-page .ja-en-head span {
    font-size: 12px;
  }
}
.contents .mb0,
.wp-editor.post-type-page .mb0 {
  margin-bottom: 0 !important;
}
.contents .mt0,
.wp-editor.post-type-page .mt0 {
  margin-top: 0 !important;
}
.contents .mb1em,
.wp-editor.post-type-page .mb1em {
  margin-bottom: 1em !important;
}
.contents .mt1em,
.wp-editor.post-type-page .mt1em {
  margin-top: 1em !important;
}
.contents .mb2em,
.wp-editor.post-type-page .mb2em {
  margin-bottom: 2em !important;
}
.contents .mt2em,
.wp-editor.post-type-page .mt2em {
  margin-top: 2em !important;
}
.contents .mb3em,
.wp-editor.post-type-page .mb3em {
  margin-bottom: 3em !important;
}
.contents .mt3em,
.wp-editor.post-type-page .mt3em {
  margin-top: 3em !important;
}
.contents .spacer,
.wp-editor.post-type-page .spacer {
  display: block;
  height: 1px;
}
.contents .spacer1em,
.wp-editor.post-type-page .spacer1em {
  display: block;
  height: 1em;
}
.contents .spacer2em,
.wp-editor.post-type-page .spacer2em {
  display: block;
  height: 2em;
}
.contents .spacer3em,
.wp-editor.post-type-page .spacer3em {
  display: block;
  height: 3em;
}
.contents .pc,
.wp-editor.post-type-page .pc {
  display: block;
}
@media screen and (max-width: 640px) {
  .contents .pc,
.wp-editor.post-type-page .pc {
    display: none;
  }
}
.contents .sp,
.wp-editor.post-type-page .sp {
  display: none;
}
@media screen and (max-width: 640px) {
  .contents .sp,
.wp-editor.post-type-page .sp {
    display: block;
  }
}

/* ---------------------------
  wp-pagenavi
----------------------------- */
.wp-pagenavi {
  margin-top: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
@media screen and (max-width: 640px) {
  .wp-pagenavi {
    flex-wrap: wrap;
    margin-top: 50px;
  }
}
.wp-pagenavi .page,
.wp-pagenavi .current,
.wp-pagenavi .extend,
.wp-pagenavi .last,
.wp-pagenavi .first {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: #888888;
  background-color: #ffffff;
  transition: 0.2s ease-in-out;
  border-radius: 4px;
}
@media screen and (max-width: 640px) {
  .wp-pagenavi .page,
.wp-pagenavi .current,
.wp-pagenavi .extend,
.wp-pagenavi .last,
.wp-pagenavi .first {
    width: 32px;
    height: 32px;
  }
}
.wp-pagenavi .current {
  color: #fff;
  background-color: var(--red);
}
@media (hover: hover) and (pointer: fine) {
  .wp-pagenavi .page:hover,
.wp-pagenavi .last:hover,
.wp-pagenavi .first:hover {
    background-color: var(--red);
    color: #fff;
  }
}
.wp-pagenavi .previouspostslink,
.wp-pagenavi .nextpostslink {
  padding: 10px;
  width: 24px;
  height: 40px;
  text-indent: -9999px;
  color: transparent;
  background-size: 16px 14px;
  background-repeat: no-repeat;
}
@media screen and (max-width: 640px) {
  .wp-pagenavi .previouspostslink,
.wp-pagenavi .nextpostslink {
    height: 32px;
  }
}
.wp-pagenavi .previouspostslink {
  background-image: url(../img/common/pagination-prev.svg);
  margin-left: 0;
  background-position: center left;
}
.wp-pagenavi .nextpostslink {
  background-image: url(../img/common/pagination-next.svg);
  margin-right: 0;
  background-position: center right;
}

@media not all and (min-resolution: 0.001dpcm) {
  @supports not (translate: none) {
    .wp-pagenavi {
      gap: inherit;
    }
    .wp-pagenavi > * {
      margin: 5px;
    }
  }
}
/* ---------------------------
  loading
----------------------------- */
.loading {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99999;
  overflow: hidden;
  background-color: transparent;
}

.loading-foundation {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  background-color: #fff;
}

.loading-bg {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  background-color: var(--red);
  opacity: 0;
}

.loading-inner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  z-index: 10;
}

.loading-bar {
  width: 100%;
  max-width: 280px;
  height: 2px;
  background-color: #7E0F12;
  position: relative;
  overflow: hidden;
  opacity: 0;
  margin: 20px 0;
}

.loading-progress {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  height: 2px;
  display: block;
  width: 100%;
  background-color: #fff;
}

.loading-top,
.loading-bottom {
  opacity: 0;
}

@media screen and (max-width: 640px) {
  .loading-top {
    width: 80px;
  }
}

@media screen and (max-width: 640px) {
  .loading-bottom {
    width: 200px;
  }
}

/* ---------------------------
  top - common
----------------------------- */
.top-common-head {
  font-size: 36px;
  font-family: var(--enFont);
  font-weight: normal;
  font-style: italic;
  text-align: center;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.8em;
}
@media screen and (max-width: 1080px) {
  .top-common-head {
    font-size: 32px;
  }
}
@media screen and (max-width: 896px) {
  .top-common-head {
    font-size: 28px;
  }
}
@media screen and (max-width: 640px) {
  .top-common-head {
    font-size: 24px;
  }
}
.top-common-head::before, .top-common-head::after {
  content: "";
  width: 20px;
  height: 1px;
  background-color: #999999;
  display: block;
  margin: 0 18px;
}

/* ---------------------------
  top - hero
----------------------------- */
.hero {
  position: relative;
  z-index: 10;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  margin-top: -150px;
}
@media screen and (max-width: 896px) {
  .hero {
    height: 100vw;
  }
}
@media screen and (max-width: 640px) {
  .hero {
    margin-top: 0;
  }
}

.hero__video {
  position: absolute;
  z-index: 1;
  overflow: hidden;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}
.hero__video video {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.hero__topics {
  display: flex;
  position: absolute;
  bottom: 20px;
  left: 20px;
  z-index: 10;
  max-width: 400px;
  height: 40px;
  width: 100%;
  overflow: hidden;
}
@media screen and (max-width: 640px) {
  .hero__topics {
    bottom: 0;
    left: 0;
    max-width: inherit;
  }
}

.topics-head {
  width: 90px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #ffffff;
  background-color: var(--red);
  font-size: 14px;
  text-transform: uppercase;
  font-weight: normal;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 640px) {
  .topics-head {
    width: 80px;
    font-size: 12px;
  }
}

.topics-content {
  width: calc(100% - 90px);
  height: 40px;
  overflow: hidden;
  background-color: rgba(255, 255, 255, 0.8);
  padding-left: 15px;
  padding-right: 15px;
  padding-top: 9px;
}
@media screen and (max-width: 640px) {
  .topics-content {
    width: calc(100% - 80px);
    padding-top: 10px;
  }
}

.topics-list {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
}
.topics-list > li {
  opacity: 0;
  transition: opacity 0.4s ease-in;
}
.topics-list > li:first-of-type {
  opacity: 1;
}
.topics-list > li > span {
  display: block;
  position: absolute;
  top: 0px;
  left: 0px;
  height: 100%;
  white-space: nowrap;
}
@media screen and (max-width: 640px) {
  .topics-list span {
    font-size: 12px;
  }
}

.ticker {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

/* ---------------------------
  top - news
----------------------------- */
.top-section-news {
  padding-top: 100px;
  padding-bottom: 130px;
}
@media screen and (max-width: 640px) {
  .top-section-news {
    padding-bottom: 70px;
    padding-top: 48px;
  }
}

.top-news-container {
  border-top: 1px solid var(--bdc);
}
@media screen and (max-width: 640px) {
  .top-news-container {
    width: calc(100% + 20px);
    margin-left: -10px;
    margin-right: -10px;
  }
}
@media screen and (max-width: 640px) {
  .top-news-container .news-list {
    padding-left: 10px;
    padding-right: 10px;
  }
}

.top-news-more {
  margin-top: 1em;
}
@media screen and (max-width: 640px) {
  .top-news-more {
    margin-top: 0.5em;
  }
}

/* ---------------------------
  top - bnr
----------------------------- */
.top-bnr-container {
  padding-top: 70px;
}
@media screen and (max-width: 640px) {
  .top-bnr-container {
    padding-top: 50px;
  }
}

.top-bnr {
  display: flex;
  margin-left: -50px;
  margin-bottom: -30px;
  flex-wrap: wrap;
}
@media screen and (max-width: 896px) {
  .top-bnr {
    margin-left: -15px;
    margin-bottom: -15px;
  }
}
@media screen and (max-width: 896px) {
  .top-bnr {
    margin-left: -10px;
    margin-bottom: -10px;
  }
}

.top-bnr__item {
  width: 33.33%;
  padding-left: 50px;
  margin-bottom: 30px;
  aspect-ratio: 280/100;
}
@media screen and (max-width: 896px) {
  .top-bnr__item {
    padding-left: 15px;
    margin-bottom: 15px;
  }
}
@media screen and (max-width: 640px) {
  .top-bnr__item {
    width: 50%;
    padding-left: 10px;
    margin-bottom: 10px;
  }
}
.top-bnr__item img {
  margin: 0 auto;
  object-fit: cover;
  object-position: center;
  width: 100%;
  height: 100%;
  box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.15);
}
.top-bnr__item a {
  display: block;
  transition: opacity 0.2s ease-in-out;
}
@media (hover: hover) and (pointer: fine) {
  .top-bnr__item a:hover {
    opacity: 0.7;
  }
}

/* ---------------------------
  top - insert
----------------------------- */
.top-insert img {
  width: 100%;
  max-width: inherit;
}

/* ---------------------------
  top - blog, attraction
----------------------------- */
.top-section-blog {
  background-color: #F0F0F0;
  padding-bottom: 240px;
}
@media screen and (max-width: 896px) {
  .top-section-blog {
    padding-bottom: 100px;
    padding-top: 100px;
  }
}
@media screen and (max-width: 640px) {
  .top-section-blog {
    padding-bottom: 70px;
    padding-top: 64px;
  }
}
.top-section-blog .top-head-wrapper {
  background-color: #F0F0F0;
}

.top-section-attraction {
  padding-bottom: 130px;
}
@media screen and (max-width: 896px) {
  .top-section-attraction {
    padding-bottom: 100px;
    padding-top: 100px;
  }
}
@media screen and (max-width: 640px) {
  .top-section-attraction {
    padding-bottom: 70px;
    padding-top: 64px;
  }
}
.top-section-attraction .top-head-wrapper {
  background-color: #ffffff;
}

.top-head-wrapper {
  position: relative;
  z-index: 10;
  margin-top: -140px;
  padding: 80px 20px 0;
}
@media screen and (max-width: 896px) {
  .top-head-wrapper {
    margin-top: 0;
    padding: 0;
  }
}
.top-head-wrapper .c-head-en {
  margin-bottom: 1.5em;
}
@media screen and (max-width: 640px) {
  .top-head-wrapper .c-head-en {
    margin-bottom: 1em;
  }
}

@media screen and (max-width: 640px) {
  .top-blog-container {
    padding-left: 10px;
  }
}

.blog-swiper {
  padding-bottom: 10px;
}
.blog-swiper .swiper-slide {
  width: 205px;
}
.blog-swiper .swiper-button-next,
.blog-swiper .swiper-button-prev {
  display: block;
  margin: 0;
  padding: 0;
  width: 100px;
  height: 240px;
  position: absolute;
  z-index: 100;
  top: 24px;
  cursor: pointer;
}
@media screen and (max-width: 896px) {
  .blog-swiper .swiper-button-next,
.blog-swiper .swiper-button-prev {
    width: 80px;
    height: 176px;
  }
}
@media screen and (max-width: 640px) {
  .blog-swiper .swiper-button-next,
.blog-swiper .swiper-button-prev {
    display: none;
  }
}
.blog-swiper .swiper-button-next img,
.blog-swiper .swiper-button-prev img {
  width: 100%;
}
.blog-swiper .swiper-button-next {
  right: 0;
}
.blog-swiper .swiper-button-prev {
  left: 0;
}
.blog-swiper .blog-card__content {
  cursor: grab;
}
.blog-swiper .blog-card__content a {
  cursor: pointer;
}

.top-blog-more {
  margin-top: 3em;
}
@media screen and (max-width: 640px) {
  .top-blog-more {
    margin-top: 1.5em;
  }
}

.top-attraction {
  display: flex;
  flex-wrap: wrap;
  margin-left: -50px;
  margin-bottom: -50px;
  margin-top: 72px;
}
@media screen and (max-width: 896px) {
  .top-attraction {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-left: 0;
    margin-bottom: -30px;
  }
}
@media screen and (max-width: 640px) {
  .top-attraction {
    width: calc(100% + 20px);
    margin-left: -10px;
    margin-right: -10px;
    margin-top: 30px;
    margin-bottom: -15px;
  }
}

.top-attraction__item {
  width: 50%;
  padding-left: 50px;
  margin-bottom: 50px;
}
@media screen and (max-width: 896px) {
  .top-attraction__item {
    width: 100%;
    padding-left: 0;
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 640px) {
  .top-attraction__item {
    margin-bottom: 15px;
  }
}

.top-attraction__item-inner {
  box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.15);
  display: flex;
  margin: 0 auto;
}
@media screen and (max-width: 896px) {
  .top-attraction__item-inner {
    max-width: 455px;
  }
}
@media screen and (max-width: 640px) {
  .top-attraction__item-inner {
    max-width: inherit;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.15);
  }
}

.top-attraction-thumb {
  display: block;
  width: 50%;
  overflow: hidden;
}
@media screen and (max-width: 640px) {
  .top-attraction-thumb {
    width: 130px;
    max-width: inherit;
    aspect-ratio: 1/1;
    width: 35%;
  }
}
.top-attraction-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.top-attraction-content {
  width: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 16px 16px 40px;
  position: relative;
}
@media screen and (max-width: 640px) {
  .top-attraction-content {
    width: 65%;
    padding-bottom: 30px;
  }
}

.top-attraction-content__title {
  width: 100%;
  text-align: center;
  font-size: 20px;
  color: var(--red);
  font-weight: normal;
  background-image: url(../img/top/attraction-bubble.svg);
  background-position: bottom center;
  background-size: contain;
  background-repeat: no-repeat;
  margin-bottom: 0.8em;
  padding-bottom: 1.3em;
}
@media screen and (max-width: 640px) {
  .top-attraction-content__title {
    font-size: 16px;
    max-width: 190px;
    font-weight: bold;
    margin-bottom: 0.5em;
  }
}

.top-attraction-content__text {
  text-align: center;
  line-height: 1.75;
}
@media screen and (max-width: 640px) {
  .top-attraction-content__text {
    font-size: 13px;
    line-height: 1.5;
  }
}

.top-attraction-content__link {
  position: absolute;
  bottom: 15px;
  right: 15px;
  z-index: 1;
  display: block;
  width: fit-content;
  margin-right: 0;
  font-size: 10px;
  text-transform: uppercase;
  white-space: nowrap;
  color: var(--red);
  letter-spacing: 0.1em;
  border-bottom: 1px solid var(--red);
  padding-right: 1.5em;
  padding-bottom: 0.2em;
  background-image: url(../img/common/right-chevron-red.svg);
  background-size: 6px;
  background-position: right center;
  background-repeat: no-repeat;
}
@media screen and (max-width: 640px) {
  .top-attraction-content__link {
    bottom: 6px;
    right: 6px;
  }
}



