@charset "UTF-8";
/* === 共通パーツ === */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@font-face {
  font-family: "NotoSansJP";
  src: url("../../base/fonts/NotoSansJP/NotoSansJP-Light.woff2") format("woff2"), url("../../base/fonts/NotoSansJP/NotoSansJP-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "NotoSansJP";
  src: url("../../base/fonts/NotoSansJP/NotoSansJP-Bold.woff2") format("woff2"), url("../../base/fonts/NotoSansJP/NotoSansJP-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "NotoSansJP";
  src: url("../../base/fonts/NotoSansJP/NotoSansJP-Black.woff2") format("woff2"), url("../../base/fonts/NotoSansJP/NotoSansJP-Black.ttf") format("truetype");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
/* === レイアウト === */
body {
  position: relative;
  z-index: 0;
  overflow-x: hidden;
  background-color: var(--bodyBg);
  color: var(--body);
  font-size: 16px;
  font-weight: 300;
  font-family: "NotoSansJP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  scroll-behavior: smooth;
  counter-reset: h2Counter;
}
body .trunk {
  position: relative;
  z-index: 0;
}
body.home .header-content {
  justify-content: flex-end !important;
}

.main {
  padding-left: 30px;
  padding-right: 30px;
  padding-top: 50px;
}
.main article {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}
.main article .article-inner {
  display: flex;
  gap: 60px;
}
@media screen and (max-width: 767px) {
  .main article .article-inner {
    flex-direction: column;
  }
}
.main article .article-inner .contents {
  flex-grow: 1;
}
.main article .article-inner .aside {
  width: 100%;
  flex-shrink: 0;
}
@media screen and (min-width: 768px) {
  .main article .article-inner .aside {
    max-width: 300px;
  }
}
.main article .article-inner:not(:has(.aside)) .contents {
  width: 100%;
}
.main .buttons-back {
  margin-top: 120px;
}

header {
  top: 0;
  z-index: 9999;
  width: 100%;
  height: auto;
  padding-top: 10px;
  padding-bottom: 10px;
  background-color: var(--headerBg);
  color: var(--header);
}
header.fixed {
  position: fixed;
}
header:not(.fixed) {
  position: absolute;
}
@media screen and (max-width: 767px) {
  header {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media screen and (min-width: 768px) {
  header {
    padding-left: 30px;
    padding-right: 30px;
  }
}
header .header-inner {
  width: 100%;
  height: 100%;
}
header .header-inner .header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  width: 100%;
  height: 100%;
  opacity: 0;
  animation: fadeIn 0.6s ease-in-out 0.1s forwards;
}
header .header-inner .header-content .logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  width: 80px;
  height: auto;
}
header .header-inner .header-content .logo a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}
@media screen and (min-width: 768px) {
  header .header-inner .header-content .logo a {
    opacity: 1;
    transition: opacity 0.3s;
  }
  header .header-inner .header-content .logo a:hover {
    opacity: 0.7;
  }
}
header .header-inner .header-content .logo .desc {
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 0.1em;
  line-height: 1;
}
header .header-inner .header-content .logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 767px) {
  header .header-inner .header-content .navmenu-header {
    display: none;
  }
}
header .header-inner .header-content .navmenu-header .menu {
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 40px;
  width: -moz-fit-content;
  width: fit-content;
  white-space: nowrap;
}
header .header-inner .header-content .navmenu-header .menu:hover .menu-item {
  opacity: 0.6;
}
header .header-inner .header-content .navmenu-header .menu:hover .menu-item:hover {
  opacity: 1;
}
header .header-inner .header-content .navmenu-header .menu-item {
  display: inline-flex;
  align-items: center;
  transition: opacity 0.3s ease;
}
header .header-inner .header-content .navmenu-header a {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 0.2em;
  color: var(--header);
  font-size: 14px;
  font-weight: normal;
  letter-spacing: 0.3em;
  text-decoration: none;
}
@media screen and (max-width: 1070px) {
  header .header-inner .header-content .navmenu-header {
    display: none;
  }
}
header .header-inner .header-content .navmenu-header a {
  letter-spacing: 0.1em;
}
header .header-inner .togglemenu-content {
  width: 100%;
  height: 100vh;
  padding-top: 30px;
  padding-bottom: 30px;
  padding-left: 30px;
  padding-right: 30px;
  background-color: var(--bodyBg);
  color: var(--header);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  overflow-y: auto;
  opacity: 0;
  transform: translateX(-100vw);
  transition: opacity 0.4s;
}
@media screen and (min-width: 768px) {
  header .header-inner .togglemenu-content ~ .pc {
    display: flex;
  }
}
@media screen and (max-width: 767px) {
  header .header-inner .togglemenu-content ~ .pc {
    display: none;
  }
}
@media screen and (max-width: 1070px) {
  header .header-inner .togglemenu-content ~ .mobile {
    display: flex;
  }
}
@media screen and (min-width: 1071px) {
  header .header-inner .togglemenu-content ~ .mobile {
    display: none;
  }
}
header .header-inner .togglemenu-content.is-open {
  opacity: 1;
  transform: translateX(0);
}
header .header-inner .togglemenu-content .togglemenu-inner .navmenu-mobile {
  margin-top: 80px;
}
@media screen and (min-width: 768px) {
  header .header-inner .togglemenu-content .togglemenu-inner .navmenu-mobile {
    display: none;
  }
}
header .header-inner .togglemenu-content .togglemenu-inner .navmenu-mobile .menu {
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 40px;
  width: -moz-fit-content;
  width: fit-content;
  white-space: nowrap;
}
header .header-inner .togglemenu-content .togglemenu-inner .navmenu-mobile .menu:hover .menu-item {
  opacity: 0.6;
}
header .header-inner .togglemenu-content .togglemenu-inner .navmenu-mobile .menu:hover .menu-item:hover {
  opacity: 1;
}
header .header-inner .togglemenu-content .togglemenu-inner .navmenu-mobile .menu-item {
  display: inline-flex;
  align-items: center;
  transition: opacity 0.3s ease;
}
header .header-inner .togglemenu-content .togglemenu-inner .navmenu-mobile a {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 0.2em;
  color: var(--header);
  font-weight: normal;
  letter-spacing: 0.3em;
  text-decoration: none;
}
@media screen and (max-width: 1070px) {
  header .header-inner .togglemenu-content .togglemenu-inner .navmenu-mobile {
    display: flex;
  }
}
header .header-inner .togglemenu-button {
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  background: var(--toggleButtonBg);
  position: fixed;
  top: 0;
  right: 0;
  z-index: 999;
}
header .header-inner .togglemenu-button.pc {
  display: flex;
}
@media screen and (max-width: 1070px) {
  header .header-inner .togglemenu-button.pc {
    display: none;
  }
}
header .header-inner .togglemenu-button.mobile {
  display: flex;
}
@media screen and (min-width: 1071px) {
  header .header-inner .togglemenu-button.mobile {
    display: none;
  }
}
header .header-inner .togglemenu-button .line {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 60%;
}
header .header-inner .togglemenu-button .line::before, header .header-inner .togglemenu-button .line::after {
  position: absolute;
  content: "";
  display: block;
  width: 100%;
  background: rgba(var(--toggleButton_rgb), 0.4);
  transition: transform 0.4s, background 0.2s 0.3s;
  height: 1px;
}
header .header-inner .togglemenu-button .line::before {
  transform: translateY(3px);
}
header .header-inner .togglemenu-button .line::after {
  transform: translateY(-6px);
}
header .header-inner .togglemenu-button.is-open .line::before {
  transform: translateY(-1px) rotate(225deg);
}
header .header-inner .togglemenu-button.is-open .line::after {
  transform: translateY(-1px) rotate(-225deg);
}

footer {
  border-top: 1px solid rgba(var(--footer_rgb), 0.3);
  padding-left: 30px;
  padding-right: 30px;
  background-color: var(--footerBg);
  color: var(--footer);
}
@media screen and (max-width: 767px) {
  footer {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}
@media screen and (min-width: 768px) {
  footer {
    padding-top: 70px;
    padding-bottom: 70px;
  }
}
footer .footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40pxpx;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0;
  animation: fadeIn 0.6s ease-in-out 0.1s forwards;
}
footer .footer-content .logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  width: 155px;
  height: auto;
}
@media screen and (max-width: 767px) {
  footer .footer-content .logo {
    width: 20vw;
  }
}
footer .footer-content .logo a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}
@media screen and (min-width: 768px) {
  footer .footer-content .logo a {
    opacity: 1;
    transition: opacity 0.3s;
  }
  footer .footer-content .logo a:hover {
    opacity: 0.7;
  }
}
footer .footer-content .logo .desc {
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 0.1em;
  line-height: 1;
}
footer .footer-content .logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
footer .copyright {
  color: var(--footer);
  letter-spacing: 0.1em;
  font-size: 14px;
  font-weight: normal;
  text-align: center;
  margin-top: 40px;
}

/* === 状態 === */
.alignfull {
  width: var(--viewWidth);
  margin-left: calc((100% - var(--viewWidth)) / 2);
}

.has-text-align-center {
  text-align: center;
}

.mincho {
  font-family: HannariMincho, "游明朝", "Yu Mincho", "YuMincho", "Hiragino Mincho Pro", serif;
  font-weight: normal;
}

/* === 共通パーツ === */
.breadcrumb {
  color: var(--breadcrumb);
  background: var(--breadcrumbBg);
  max-width: 100%;
}
.breadcrumb .breadcrumb-list {
  padding-left: 0;
  display: flex;
  align-items: center;
  list-style: none;
}
.breadcrumb li {
  display: flex;
  align-items: center;
}
.breadcrumb li:nth-last-of-type(1) {
  overflow-x: hidden;
}
.breadcrumb svg {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 0.8em;
  height: 0.8em;
  min-width: 0.8em;
  transform: rotate(90deg);
  fill: var(--breadcrumb);
  margin-left: 0.6em;
  margin-right: 0.6em;
}
.breadcrumb a {
  display: flex;
  text-decoration: none;
}
@media screen and (min-width: 768px) {
  .breadcrumb a {
    opacity: 1;
    transition: opacity 0.3s;
  }
  .breadcrumb a:hover {
    opacity: 0.7;
  }
}
.breadcrumb span {
  color: var(--breadcrumb);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 13px;
  font-weight: bold;
  letter-spacing: 0.05em;
}

.toc {
  background: var(--lightgray);
  border-radius: 10px;
  position: relative;
}
.toc h2 {
  position: absolute;
  top: -0.7em;
  left: 50%;
  transform: translateX(-50%);
  color: var(--body);
  font-size: 22px;
  letter-spacing: 0.05em;
}
.toc .toc-inner {
  padding: 30px;
}
.toc.mobile {
  margin-top: 40px;
  margin-bottom: 40px;
}
.toc.mobile .toc-inner {
  margin-left: auto;
  margin-right: auto;
}
.toc .H2-ol,
.toc .H3-ol {
  list-style: none;
}
.toc .H2-ol a,
.toc .H3-ol a {
  display: block;
  width: 100%;
  color: var(--darkgray);
  text-decoration: none;
}
.toc .H2-ol {
  padding-left: 0;
}
.toc .H2-ol .H2-li:not(:first-child) {
  margin-top: 0.4em;
}
.toc .H2-ol .H2-li > a {
  font-size: 14px;
  font-weight: bold;
  transition: all 0.3s;
}
.toc .H2-ol .H2-li > a:hover {
  color: var(--buttonBg);
}
.toc .H3-ol {
  padding-left: 0.8em;
}
.toc .H3-ol .H3-li {
  margin-top: 0.4em;
}
.toc .H3-ol .H3-li a {
  font-size: 13px;
  border-left: 1px solid var(--buttonBg);
  padding-left: 1em;
  line-height: 1;
  transition: all 0.3s;
}
.toc .H3-ol .H3-li a:hover {
  color: var(--buttonBg);
}

.totop {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  width: 70px;
  height: 70px;
  position: fixed;
  z-index: 999;
  right: 30px;
  bottom: 40px;
  opacity: 0;
  transition: opacity 0.3s, visibility 0.3s;
  visibility: hidden;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .totop {
    right: 10px;
    bottom: 30px;
    border-radius: 4px 0 0 0;
  }
}
.totop.visible {
  opacity: 1;
  visibility: visible;
}
.totop span {
  display: block;
  width: 40%;
  height: 40%;
}
.totop svg {
  color: var(--toggleButton);
}
.totop svg {
  color: var(--body);
}

.buttons-back {
  margin-top: 40px;
  margin-bottom: 40px;
}
.buttons-back a {
  display: flex;
  align-items: center;
  gap: 1em;
  padding: 0;
  padding-left: 5em;
  padding-right: 1em;
  margin-top: 1.25em;
  margin-bottom: 1.25em;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
  z-index: 0;
  background: transparent;
  text-decoration: none;
  color: var(--body);
}
.buttons-back a::before {
  position: absolute;
  left: 0;
  content: "";
  display: inline-block;
  width: 4em;
  height: 4em;
  background: var(--lightgray);
  border-radius: 100%;
}
.buttons-back a::after {
  display: block;
  width: 1em;
  height: 1em;
  background: url(../../base/img/svg/chevron-up.svg);
  position: absolute;
  left: 1.4em;
  content: "";
  transform: rotate(-90deg);
  transition: transform 0.3s;
}
@media screen and (min-width: 768px) {
  .buttons-back a {
    opacity: 1;
    transition: opacity 0.3s;
  }
  .buttons-back a:hover {
    opacity: 0.7;
  }
  .buttons-back a:hover::after {
    transform: rotate(-90deg) translateY(-0.2em);
  }
}

.loading {
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  width: 100vw;
  height: 100vh;
  background: var(--bodyBg);
  transition: opacity 0.3s, visibility 0.3s;
}
.loading.hidden {
  opacity: 0;
  visibility: hidden;
}
.loading .logo img {
  width: 10vw;
  height: auto;
}
@media screen and (max-width: 767px) {
  .loading .logo img {
    width: 30vw;
  }
}

.wpcf7 {
  width: 768px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-top: 30px;
  padding-bottom: 30px;
  background: rgba(var(--body_rgb), 0.1);
}
@media screen and (max-width: 767px) {
  .wpcf7 {
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media screen and (min-width: 768px) {
  .wpcf7 {
    padding-left: 60px;
    padding-right: 60px;
  }
}
.wpcf7 .screen-reader-response {
  display: none;
}
.wpcf7 .wpcf7-form {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
.wpcf7 .inputAreaError {
  text-align: center;
  font-size: 0.7em;
  font-weight: bold;
  color: var(--red);
}
.wpcf7 .confirmAreaHeading {
  font-weight: bold;
  margin-bottom: 40px;
}
.wpcf7 .optional,
.wpcf7 .required {
  display: inline-block;
  padding: 0em 0.2em 0;
  font-size: 0.85em;
  font-weight: bold;
}
.wpcf7 .optional {
  color: var(--bodyBg_rgb);
  background: rgba(var(--body_rgb), 0.2);
}
.wpcf7 .required {
  color: var(--point);
  background: var(--pointBg);
}
.wpcf7 small {
  display: block;
  font-size: 0.7em;
}
.wpcf7 .input_area > label,
.wpcf7 .confirm_area > label {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 0.2em 1em 0.1em;
  gap: 0.2em 0.5em;
}
@media screen and (max-width: 767px) {
  .wpcf7 .input_area > label:not(.acceptance),
  .wpcf7 .confirm_area > label:not(.acceptance) {
    align-items: flex-start;
  }
}
.wpcf7 .input_area > label:not(.acceptance):has(.wpcf7-not-valid-tip),
.wpcf7 .confirm_area > label:not(.acceptance):has(.wpcf7-not-valid-tip) {
  background: rgba(var(--red_rgb), 0.1);
}
.wpcf7 .input_area > label:not(.acceptance) + label,
.wpcf7 .confirm_area > label:not(.acceptance) + label {
  margin-top: 1em;
}
.wpcf7 .input_area > label:not(.acceptance).is-hidden,
.wpcf7 .confirm_area > label:not(.acceptance).is-hidden {
  display: none;
}
.wpcf7 .input_area > label.acceptance,
.wpcf7 .confirm_area > label.acceptance {
  width: 100%;
}
.wpcf7 .input_area > label.acceptance .required,
.wpcf7 .confirm_area > label.acceptance .required {
  display: none;
}
.wpcf7 .input_area > label.acceptance .wpcf7-form-control-wrap,
.wpcf7 .confirm_area > label.acceptance .wpcf7-form-control-wrap {
  display: block;
}
.wpcf7 .input_area > label:nth-last-of-type(1),
.wpcf7 .confirm_area > label:nth-last-of-type(1) {
  padding-bottom: 0;
}
.wpcf7 .input_area .wpcf7-form-control-wrap,
.wpcf7 .confirm_area .wpcf7-form-control-wrap {
  display: block;
  width: 100%;
}
.wpcf7 .input_area .wpcf7-form-control-wrap .wpcf7-form-control,
.wpcf7 .confirm_area .wpcf7-form-control-wrap .wpcf7-form-control {
  display: flex;
  align-items: center;
  width: 100%;
}
.wpcf7 .input_area .wpcf7-not-valid-tip,
.wpcf7 .confirm_area .wpcf7-not-valid-tip {
  font-size: 0.7em;
  font-weight: bold;
  color: c(red);
}
.wpcf7 .input_area .wpcf7-text,
.wpcf7 .input_area .wpcf7-textarea,
.wpcf7 .confirm_area .wpcf7-text,
.wpcf7 .confirm_area .wpcf7-textarea {
  width: 100%;
  height: 40px;
  border: 1px solid rgba(var(--body_rgb), 0.1);
  box-sizing: border-box;
  color: rgba(var(--body_rgb), 1);
  background: rgba(var(--body_rgb), 0.1);
  padding-left: 1em;
  padding-right: 1em;
}
.wpcf7 .input_area .wpcf7-text::-moz-placeholder, .wpcf7 .input_area .wpcf7-textarea::-moz-placeholder, .wpcf7 .confirm_area .wpcf7-text::-moz-placeholder, .wpcf7 .confirm_area .wpcf7-textarea::-moz-placeholder {
  color: rgba(var(--body_rgb), 0.7);
}
.wpcf7 .input_area .wpcf7-text::placeholder,
.wpcf7 .input_area .wpcf7-textarea::placeholder,
.wpcf7 .confirm_area .wpcf7-text::placeholder,
.wpcf7 .confirm_area .wpcf7-textarea::placeholder {
  color: rgba(var(--body_rgb), 0.7);
}
.wpcf7 .input_area .wpcf7-textarea,
.wpcf7 .confirm_area .wpcf7-textarea {
  height: calc(40px * 3);
  padding-top: 0.6em;
  padding-bottom: 0.6em;
}
.wpcf7 .input_area .wpcf7-select,
.wpcf7 .confirm_area .wpcf7-select {
  color: var(--body);
  background: rgba(var(--body_rgb), 0.1);
  width: 100%;
  height: 40px;
  border: none;
  padding-left: 1em;
  padding-right: 1em;
}
.wpcf7 .input_area .wpcf7-select option,
.wpcf7 .confirm_area .wpcf7-select option {
  background: var(--bodyBg);
}
.wpcf7 .input_area .wpcf7-acceptance .wpcf7-list-item,
.wpcf7 .confirm_area .wpcf7-acceptance .wpcf7-list-item {
  display: flex;
  margin-left: 0;
}
.wpcf7 .input_area .wpcf7-acceptance .wpcf7-list-item > label,
.wpcf7 .confirm_area .wpcf7-acceptance .wpcf7-list-item > label {
  display: flex;
  align-items: center;
  gap: 0.2em 0.5em;
}
.wpcf7 .input_area .wpcf7-radio,
.wpcf7 .input_area .wpcf7-checkbox,
.wpcf7 .confirm_area .wpcf7-radio,
.wpcf7 .confirm_area .wpcf7-checkbox {
  flex-wrap: wrap;
  gap: 0.2em 1em;
}
.wpcf7 .input_area .wpcf7-radio .wpcf7-list-item,
.wpcf7 .input_area .wpcf7-checkbox .wpcf7-list-item,
.wpcf7 .confirm_area .wpcf7-radio .wpcf7-list-item,
.wpcf7 .confirm_area .wpcf7-checkbox .wpcf7-list-item {
  margin: 0;
  display: flex;
  width: -moz-fit-content;
  width: fit-content;
}
.wpcf7 .input_area .wpcf7-radio .wpcf7-list-item > label,
.wpcf7 .input_area .wpcf7-checkbox .wpcf7-list-item > label,
.wpcf7 .confirm_area .wpcf7-radio .wpcf7-list-item > label,
.wpcf7 .confirm_area .wpcf7-checkbox .wpcf7-list-item > label {
  display: flex;
  align-items: center;
  width: -moz-fit-content;
  width: fit-content;
}
.wpcf7 .input_area .wpcf7-radio .wpcf7-list-item > label .wpcf7-list-item-label,
.wpcf7 .input_area .wpcf7-checkbox .wpcf7-list-item > label .wpcf7-list-item-label,
.wpcf7 .confirm_area .wpcf7-radio .wpcf7-list-item > label .wpcf7-list-item-label,
.wpcf7 .confirm_area .wpcf7-checkbox .wpcf7-list-item > label .wpcf7-list-item-label {
  display: flex;
  align-items: center;
  padding-left: 0.5em;
  cursor: pointer;
  position: relative;
}
.wpcf7 .input_area input[type=checkbox],
.wpcf7 .input_area input[type=radio],
.wpcf7 .confirm_area input[type=checkbox],
.wpcf7 .confirm_area input[type=radio] {
  position: relative;
  width: 40px;
  height: 40px;
  background: rgba(var(--body_rgb), 0.1);
  border: 1px solid rgba(var(--body_rgb), 0.1);
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.wpcf7 .input_area input[type=checkbox]:checked:before,
.wpcf7 .input_area input[type=radio]:checked:before,
.wpcf7 .confirm_area input[type=checkbox]:checked:before,
.wpcf7 .confirm_area input[type=radio]:checked:before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 16px;
  height: 16px;
  border-radius: 100px;
  background: rgba(var(--body_rgb), 1);
  content: "";
}
.wpcf7 .input_area div,
.wpcf7 .confirm_area div {
  margin-top: 1em;
  margin-bottom: 1em;
  margin-left: auto;
  margin-right: auto;
  width: calc(100% - 2em);
  border: 1px solid rgba(var(--body_rgb), 0.1);
  border-radius: 0.4em;
  font-size: 14px;
  text-align: justify;
  line-height: 1.8;
  padding: 0.6em 1em;
  overflow-Y: scroll;
}
@media screen and (min-width: 768px) {
  .wpcf7 .input_area div,
  .wpcf7 .confirm_area div {
    aspect-ratio: 4/1;
  }
}
@media screen and (max-width: 767px) {
  .wpcf7 .input_area div,
  .wpcf7 .confirm_area div {
    height: 10em;
  }
}
.wpcf7 .confirm_area > label.acceptance {
  display: none;
}
.wpcf7 .confirm_area .confirm_value {
  width: 100%;
  min-height: 40px;
  line-height: 40px;
  font-weight: bold;
  background: rgba(var(--body_rgb), 0.1);
  padding-left: 1em;
  padding-right: 1em;
}
.wpcf7 .button_area {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px 30px;
  margin-top: 28.5714285714px;
}
@media screen and (max-width: 767px) {
  .wpcf7 .button_area {
    flex-direction: column;
  }
}
.wpcf7 .button_area .confirm_button,
.wpcf7 .button_area .wpcf7-submit,
.wpcf7 .button_area .back_button {
  border: none;
  background: var(--buttonBg);
  color: var(--button);
  padding-left: 1em;
  padding-right: 1em;
  line-height: 2.6em;
  min-width: 200px;
  transition: all 0.4s;
}
.wpcf7 .button_area .confirm_button:hover,
.wpcf7 .button_area .wpcf7-submit:hover,
.wpcf7 .button_area .back_button:hover {
  box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.08);
  transform: translateY(-3px);
}
.wpcf7 .button_area .back_button {
  background: rgba(var(--body_rgb), 0.4);
  color: var(--body);
}
.wpcf7 .button_area .wpcf7-spinner {
  display: none;
}
.banner {
  position: fixed;
  right: 1em;
  bottom: 1em;
  z-index: 9999;
  opacity: 0;
  transition: opacity 0.3s, visibility 0.3s;
  visibility: hidden;
  cursor: pointer;
}
.banner.visible {
  opacity: 1;
  visibility: visible;
}
.banner .close {
  position: absolute;
  right: 0em;
  top: -1.2em;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.2em;
  height: 1.2em;
  background: rgba(var(--body_rgb), 0.1);
  font-size: 22px;
  font-weight: bold;
  border-radius: 1em;
  cursor: pointer;
}
.banner a {
  display: flex;
  width: 200px;
  box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.08);
}
.banner img {
  border-radius: 6%;
}

.wp-block-buttons {
  gap: 40px;
  margin-top: 40px;
  margin-bottom: 40px;
}
.wp-block-buttons .wp-block-button .wp-block-button__link {
  display: flex;
  justify-content: center;
  align-items: center;
  height: auto;
  padding-top: 0px;
  padding-bottom: 0px;
  padding-left: 0px;
  padding-right: 0px;
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 0.05em;
  color: var(--body);
  background-color: transparent;
  border: none;
  cursor: pointer;
}
.wp-block-buttons .wp-block-button:not([class*=is-style-]) .wp-block-button__link, .wp-block-buttons .wp-block-button.is-style-fill .wp-block-button__link {
  background: var(--buttonBg);
  color: var(--button);
  border: 0.14em solid var(--buttonBg);
  border-radius: 0;
  padding-left: 2em;
  padding-right: 2em;
  font-weight: normal;
  line-height: 3.64em;
  min-width: 300px;
  opacity: 1;
  transition: opacity 0.3s;
}
.wp-block-buttons .wp-block-button:not([class*=is-style-]) .wp-block-button__link:hover, .wp-block-buttons .wp-block-button.is-style-fill .wp-block-button__link:hover {
  opacity: 0.7;
}
.wp-block-buttons .wp-block-button.is-style-outline .wp-block-button__link {
  background: var(--button);
  color: var(--buttonBg);
  border: 0.14em solid var(--buttonBg);
  padding-left: 1em;
  padding-right: 1em;
  line-height: 2.6em;
  min-width: 200px;
  transition: all 0.4s;
}
.wp-block-buttons .wp-block-button.is-style-outline .wp-block-button__link:hover {
  box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.08);
  transform: translateY(-3px);
}
.wp-block-buttons .wp-block-button.is-style-button-onlytext .wp-block-button__link {
  color: var(--buttonBg);
}
.wp-block-buttons .wp-block-button.is-style-button-onlytext .wp-block-button__link:hover {
  opacity: 1;
  transition: opacity 0.3s;
}
.wp-block-buttons .wp-block-button.is-style-button-onlytext .wp-block-button__link:hover:hover {
  opacity: 0.7;
}
.wp-block-buttons .wp-block-button.is-style-button-square .wp-block-button__link {
  color: var(--buttonBg);
}
.wp-block-buttons .wp-block-button.is-style-button-square .wp-block-button__link:hover {
  opacity: 1;
  transition: opacity 0.3s;
}
.wp-block-buttons .wp-block-button.is-style-button-square .wp-block-button__link:hover:hover {
  opacity: 0.7;
}

input[type=button],
input[type=submit] {
  background-color: transparent;
  border: none;
  cursor: pointer;
  padding-top: 0px;
  padding-bottom: 0px;
  padding-left: 0px;
  padding-right: 0px;
}

.wp-block-heading.reset-heading {
  border: none;
  padding: 0;
  position: relative;
  color: var(--body);
  background: transparent;
}
.wp-block-heading.reset-heading::before, .wp-block-heading.reset-heading::after {
  display: none;
}
.wp-block-heading.is-style-heading-underline {
  border-bottom: 2px solid var(--pointBg);
}
.wp-block-heading.is-style-heading-leftline, .contents.page.contents-privacy-policy h2.wp-block-heading, .contents.page.contents-privacy-policy .wp-block-heading.is-style-h2, .wp-block-heading.is-style-heading-wide, .wp-block-heading.is-style-heading-leftsquare, .contents.page.contents-privacy-policy h3.wp-block-heading, .contents.page.contents-privacy-policy .wp-block-heading.is-style-h3 {
  position: relative;
  padding: 0 0.9em;
}
.wp-block-heading.is-style-heading-leftline::after, .contents.page.contents-privacy-policy h2.wp-block-heading::after, .contents.page.contents-privacy-policy .wp-block-heading.is-style-h2::after, .wp-block-heading.is-style-heading-wide::after, .wp-block-heading.is-style-heading-leftsquare::after, .contents.page.contents-privacy-policy h3.wp-block-heading::after, .contents.page.contents-privacy-policy .wp-block-heading.is-style-h3::after {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  display: block;
  width: 0.3em;
  height: 100%;
  margin-right: 0.6em;
  background: var(--pointBg);
}
.wp-block-heading.is-style-heading-leftsquare, .contents.page.contents-privacy-policy h3.wp-block-heading, .contents.page.contents-privacy-policy .wp-block-heading.is-style-h3 {
  padding-left: 1.2em;
}
.wp-block-heading.is-style-heading-leftsquare::after, .contents.page.contents-privacy-policy h3.wp-block-heading::after, .contents.page.contents-privacy-policy .wp-block-heading.is-style-h3::after {
  top: 0.2em;
  width: 1em;
  height: 1em;
}
.wp-block-heading.is-style-heading-underline-point {
  text-align: center;
  position: relative;
  padding-bottom: 1em;
}
.wp-block-heading.is-style-heading-underline-point::after {
  position: absolute;
  bottom: 0em;
  left: 50%;
  transform: translateX(-50%);
  content: "";
  display: block;
  width: 3em;
  height: 3px;
  background: var(--pointBg);
}
.wp-block-heading.is-style-heading-label {
  color: var(--pointBg);
}
.wp-block-heading.is-style-heading-label strong {
  color: var(--button);
  background: var(--pointBg);
  padding: 0.2em 0.4em 0.1em;
  margin-left: 0.2em;
  margin-right: 0.2em;
}
.wp-block-heading.is-style-heading-wide {
  padding-top: 0.5em;
  padding-bottom: 0.5em;
}

.wp-block-query ul {
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 0;
}
.wp-block-query .permalink {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
}
.wp-block-query:not([class*=is-style-]) .wp-block-post-template {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
  gap: 20px;
}
.wp-block-query:not([class*=is-style-]) .wp-block-post-template .wp-block-post {
  display: flex;
  flex-direction: column;
  position: relative;
}
.wp-block-query:not([class*=is-style-]) .wp-block-post-template .wp-block-post .wp-block-post-featured-image {
  overflow: hidden;
  aspect-ratio: 16/9;
  order: -1;
}
.wp-block-query:not([class*=is-style-]) .wp-block-post-template .wp-block-post .wp-block-post-featured-image img {
  width: 100%;
  height: 100%;
  transition: transform 0.1s;
  -o-object-fit: cover;
     object-fit: cover;
}
.wp-block-query:not([class*=is-style-]) .wp-block-post-template .wp-block-post .wp-block-post-title {
  font-size: 16px;
}
.wp-block-query:not([class*=is-style-]) .wp-block-post-template .wp-block-post .wp-block-post-date {
  font-size: 13px;
}
.wp-block-query:not([class*=is-style-]) .wp-block-post-template .wp-block-post:has(.permalink):hover .wp-block-post-featured-image img {
  transform: scale(1.05);
  animation: bounce-scale 0.2s;
}
.wp-block-query:not([class*=is-style-]) .wp-block-query-pagination {
  margin-top: 40px;
  margin-bottom: 40px;
  display: flex;
  justify-content: space-between;
}
.wp-block-query:not([class*=is-style-]) .wp-block-query-pagination .wp-block-query-pagination-previous,
.wp-block-query:not([class*=is-style-]) .wp-block-query-pagination .wp-block-query-pagination-next {
  padding: 0 1em;
  width: 10em;
  line-height: 3em;
  text-decoration: none;
  color: rgba(var(--body_rgb), 0.4);
  background: rgba(var(--body_rgb), 0.1);
  transition: 0.4s;
}
@media screen and (max-width: 767px) {
  .wp-block-query:not([class*=is-style-]) .wp-block-query-pagination .wp-block-query-pagination-previous,
  .wp-block-query:not([class*=is-style-]) .wp-block-query-pagination .wp-block-query-pagination-next {
    font-size: 16px;
  }
}
@media screen and (min-width: 768px) {
  .wp-block-query:not([class*=is-style-]) .wp-block-query-pagination .wp-block-query-pagination-previous,
  .wp-block-query:not([class*=is-style-]) .wp-block-query-pagination .wp-block-query-pagination-next {
    font-size: 18px;
  }
}
.wp-block-query:not([class*=is-style-]) .wp-block-query-pagination .wp-block-query-pagination-previous:hover,
.wp-block-query:not([class*=is-style-]) .wp-block-query-pagination .wp-block-query-pagination-next:hover {
  color: var(--point);
  background: var(--pointBg);
}
.wp-block-query:not([class*=is-style-]) .wp-block-query-pagination .wp-block-query-pagination-next {
  text-align: right;
}
.wp-block-query:not([class*=is-style-]) .wp-block-query-pagination .wp-block-query-pagination-numbers {
  display: flex;
  align-items: center;
  gap: 1em;
}
.wp-block-query:not([class*=is-style-]) .wp-block-query-pagination .wp-block-query-pagination-numbers .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(var(--body_rgb), 0.4);
  background: rgba(var(--body_rgb), 0.1);
  width: 2em;
  height: 2em;
  border-radius: 100px;
  text-decoration: none;
  font-size: 18px;
  transition: 0.4s;
}
.wp-block-query:not([class*=is-style-]) .wp-block-query-pagination .wp-block-query-pagination-numbers .page-numbers:not(.current):hover {
  color: var(--point);
  background: var(--pointBg);
}
.wp-block-query:not([class*=is-style-]) .wp-block-query-pagination .wp-block-query-pagination-numbers .page-numbers.current {
  color: var(--body);
  font-size: 22px;
}
.wp-block-query:not([class*=is-style-]) .wp-block-query-pagination:has(.wp-block-query-pagination-previous):not(:has(.wp-block-query-pagination-next))::after {
  content: "";
  display: block;
  width: 8em;
  height: 10px;
}
.wp-block-query:not([class*=is-style-]) .wp-block-query-pagination:has(.wp-block-query-pagination-next):not(:has(.wp-block-query-pagination-previous))::before {
  content: "";
  display: block;
  width: 8em;
  height: 10px;
}
.wp-block-query.is-style-news {
  max-width: 768px;
  margin-left: auto;
  margin-right: auto;
}
.wp-block-query.is-style-news .wp-block-post-template .wp-block-post {
  display: flex;
  align-items: center;
  gap: 2em;
  padding: 2em;
  position: relative;
  border-bottom: 1px solid rgba(var(--body_rgb), 0.5);
}
@media screen and (max-width: 767px) {
  .wp-block-query.is-style-news .wp-block-post-template .wp-block-post {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }
}
@media screen and (max-width: 767px) {
  .wp-block-query.is-style-news .wp-block-post-template .wp-block-post {
    padding-left: 1em;
    padding-right: 1em;
  }
}
.wp-block-query.is-style-news .wp-block-post-template .wp-block-post::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  display: block;
  width: 18%;
  height: 1px;
  background: var(--pointBg);
}
@media screen and (max-width: 767px) {
  .wp-block-query.is-style-news .wp-block-post-template .wp-block-post .wp-block-post-date {
    font-size: 16px;
  }
}
@media screen and (min-width: 768px) {
  .wp-block-query.is-style-news .wp-block-post-template .wp-block-post .wp-block-post-date {
    font-size: 18px;
  }
}
@media screen and (max-width: 767px) {
  .wp-block-query.is-style-news .wp-block-post-template .wp-block-post .wp-block-post-title {
    font-size: 16px;
  }
}
@media screen and (min-width: 768px) {
  .wp-block-query.is-style-news .wp-block-post-template .wp-block-post .wp-block-post-title {
    font-size: 18px;
  }
}
.wp-block-query.is-style-news .wp-block-post-template .wp-block-post .wp-block-post-title a {
  color: var(--body);
  text-decoration: none;
}
.wp-block-query.is-style-case:not(.splide__track) .wp-block-post-template {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
  gap: 40px 10px;
}
.wp-block-query.is-style-case .wp-block-post {
  position: relative;
  z-index: 0;
  overflow: hidden;
  box-shadow: 0px 3px 20px rgba(var(--body_rgb), 0.1);
}
.wp-block-query.is-style-case .wp-block-post::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 22%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0));
  transition: opacity 0.4s;
  z-index: -1;
  opacity: 1;
}
.wp-block-query.is-style-case .wp-block-post:hover::before {
  opacity: 0.1;
}
.wp-block-query.is-style-case .wp-block-post:hover .post-thumbnail {
  transform: translateY(-50%) scale(1.05);
}
.wp-block-query.is-style-case .wp-block-post .post-permalink {
  display: block;
  height: 100%;
  width: 100%;
  padding: 20px;
  aspect-ratio: 9/16;
  color: var(--body);
  font-weight: bold;
  text-decoration: none;
}
.wp-block-query.is-style-case .wp-block-post .post_type_name,
.wp-block-query.is-style-case .wp-block-post .case_tag,
.wp-block-query.is-style-case .wp-block-post .case_cat {
  font-size: 14px;
}
.wp-block-query.is-style-case .wp-block-post .post_type_name {
  margin-bottom: 0.2em;
}
.wp-block-query.is-style-case .wp-block-post .case_cat {
  display: block;
  padding: 0.1em 0.5em 0;
  border-radius: 10px;
  width: -moz-fit-content;
  width: fit-content;
  color: #000000;
  background: #ffffff;
}
.wp-block-query.is-style-case .wp-block-post .case_tag {
  display: flex;
  flex: 1;
  padding: 5px 0;
  white-space: nowrap; /* テキストを1行に制限 */
  overflow: hidden; /* はみ出した部分を非表示 */
  text-overflow: ellipsis; /* 三点リーダーを表示 */
}
.wp-block-query.is-style-case .wp-block-post .case_tag span {
  padding: 0.1em 0.5em 0;
  color: #ffffff;
  border: 1px solid #ffffff;
  margin-left: 0.2em;
  white-space: nowrap;
}
.wp-block-query.is-style-case .wp-block-post .tags {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
}
.wp-block-query.is-style-case .wp-block-post .wp-block-post-title {
  font-size: 18px;
  color: #ffffff;
  margin-top: 0em;
  line-height: 1.2;
  text-align: justify;
}
.wp-block-query.is-style-case .wp-block-post .post-thumbnail {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: -2;
  transition: transform 0.4s;
}
.wp-block-table table {
  border-collapse: collapse;
  width: 100%;
  table-layout: auto;
}
.wp-block-table th, .wp-block-table td {
  font-size: 14px;
}
.wp-block-table:not([class*=is-style-]) thead {
  border-bottom: 1px solid rgba(var(--body_rgb), 0.5);
}
.wp-block-table:not([class*=is-style-]) tfoot {
  border-top: 1px solid rgba(var(--body_rgb), 0.5);
}
.wp-block-table:not([class*=is-style-]) th, .wp-block-table:not([class*=is-style-]) td {
  padding: 1em 3em;
}
@media screen and (max-width: 767px) {
  .wp-block-table:not([class*=is-style-]) th, .wp-block-table:not([class*=is-style-]) td {
    padding: 1em 1em;
  }
}
@media screen and (max-width: 767px) {
  .wp-block-table:not([class*=is-style-]) th:not(:nth-child(1)), .wp-block-table:not([class*=is-style-]) td:not(:nth-child(1)) {
    padding-top: 0;
  }
}
.wp-block-table:not([class*=is-style-]) tr {
  border-top: 1px solid rgba(var(--body_rgb), 0.5);
}
@media screen and (max-width: 767px) {
  .wp-block-table:not([class*=is-style-]) tr {
    display: flex;
    flex-direction: column;
  }
}
.wp-block-table:not([class*=is-style-]) tr:nth-last-of-type(1) {
  border-bottom: 1px solid rgba(var(--body_rgb), 0.5);
}
.wp-block-table.is-style-table-timeline th, .wp-block-table.is-style-table-timeline td {
  padding: 1em 3em;
}
.wp-block-table.is-style-table-timeline td:nth-of-type(1) {
  width: -moz-fit-content;
  width: fit-content;
  white-space: nowrap;
  text-align: right;
  border-right: 1px solid rgba(var(--body_rgb), 0.5);
  position: relative;
  z-index: 0;
}
.wp-block-table.is-style-table-timeline td:nth-of-type(1)::before {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: -0.5em;
  z-index: 1;
  content: "";
  display: block;
  width: 1em;
  height: 1em;
  border-radius: 100%;
  background: var(--pointBg);
}
.wp-block-table.is-style-table-timeline td:nth-of-type(2) {
  width: 100%;
}

.wp-block-list li {
  margin-top: 1em;
  margin-bottom: 1em;
}
@media screen and (max-width: 767px) {
  .wp-block-list li {
    font-size: 16px;
  }
}
@media screen and (min-width: 768px) {
  .wp-block-list li {
    font-size: 18px;
  }
}
.wp-block-list.is-style-list-checkbox {
  list-style: none;
  position: relative;
}
.wp-block-list.is-style-list-checkbox li {
  display: flex;
  align-items: center;
  position: relative;
}
.wp-block-list.is-style-list-checkbox li::before {
  position: absolute;
  left: -0.1em;
  content: "";
  display: block;
  width: 1.6em;
  height: 1.6em;
  background: url(../../base/img/svg/check.svg) no-repeat;
}
.wp-block-list.is-style-list-checkbox li::after {
  content: "";
  display: block;
  margin-right: 0.5em;
  order: -1;
  width: 1.6em;
  height: 1.6em;
  border: 2px solid var(--pointBg);
}

.wp-block-image img {
  width: 100%;
  height: auto;
}
.wp-block-image figcaption {
  font-size: 13px;
  color: rgba(var(--body_rgb), 0.5);
}
.wp-block-image figure.aligncenter {
  display: flex;
  justify-content: center;
  width: 100%;
}

.wp-block-post-terms.is-style-post-terms-inverted {
  display: flex;
  align-items: center;
}
.wp-block-post-terms.is-style-post-terms-inverted a {
  padding: 0.1em 0.4em;
  color: var(--point);
  background-color: var(--pointBg);
}
.wp-block-post-terms.is-style-post-terms-hashtag a::before {
  content: "#";
}

.wp-block-basis-map.is-style-map-grayscale iframe {
  filter: grayscale(100%);
}

.wp-block-separator {
  margin-top: 40px;
  margin-bottom: 40px;
  border: none;
  border-bottom: 1px solid rgba(var(--body_rgb), 0.2);
}

p {
  font-weight: 400;
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  p {
    font-size: 16px;
  }
}
@media screen and (min-width: 768px) {
  p {
    font-size: 18px;
  }
}
p + p {
  margin-top: 1em;
}
p > a {
  color: var(--pointBg);
  opacity: 1;
  transition: opacity 0.3s;
}
p > a:hover {
  opacity: 0.7;
}
p.is-style-paragraph-big-alphabet {
  color: rgba(var(--body_rgb), 0.1);
  font-weight: 800;
  line-height: 0;
  font-size: 18vw;
  letter-spacing: -0.05em;
  transform: translateY(-0.05em);
  white-space: nowrap;
  position: absolute;
  left: -0.2em;
  z-index: -2;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
p.is-style-paragraph-annotation {
  font-size: 0.7em;
}

strong {
  color: var(--pointBg);
}

.wp-block-embed.is-provider-youtube iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
}

.media-responsive {
  width: 100%;
}
.media-responsive source,
.media-responsive img {
  width: 100%;
  height: auto;
}

.contents h1.wp-block-heading, .contents .is-style-h1, .contents h1.title {
  margin-top: 1em;
  margin-bottom: 1em;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .contents h1.wp-block-heading, .contents .is-style-h1, .contents h1.title {
    font-size: 46px;
  }
}
@media screen and (min-width: 768px) {
  .contents h1.wp-block-heading, .contents .is-style-h1, .contents h1.title {
    font-size: 58px;
  }
}
.contents h2.wp-block-heading, .contents .is-style-h2 {
  margin-top: 1em;
  margin-bottom: 1em;
}
@media screen and (max-width: 767px) {
  .contents h2.wp-block-heading, .contents .is-style-h2 {
    font-size: 28px;
  }
}
@media screen and (min-width: 768px) {
  .contents h2.wp-block-heading, .contents .is-style-h2 {
    font-size: 36px;
  }
}
.contents h3.wp-block-heading, .contents .is-style-h3 {
  margin-top: 1em;
  margin-bottom: 1em;
}
@media screen and (max-width: 767px) {
  .contents h3.wp-block-heading, .contents .is-style-h3 {
    font-size: 22px;
  }
}
@media screen and (min-width: 768px) {
  .contents h3.wp-block-heading, .contents .is-style-h3 {
    font-size: 28px;
  }
}
.contents .wp-block-list {
  margin-top: 40px;
  margin-bottom: 40px;
}
.contents .wp-block-table {
  margin-top: 40px;
  margin-bottom: 40px;
}
.contents .wp-block-image {
  margin-top: 40px;
  margin-bottom: 40px;
}
.contents .business-images {
  display: grid;
  gap: 0;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  place-content: center;
}
.contents .business-images .wp-block-image {
  margin: 0;
}
.contents .business-images .wp-block-image a {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--body);
}
.contents .business-images .wp-block-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 16/9;
  opacity: 1;
  transition: opacity 0.3s;
}
.contents .business-images .wp-block-image img:hover {
  opacity: 0.7;
}
.contents .business-lists {
  margin: 0;
  padding: 0;
  margin-top: 40px;
  margin-bottom: 40px;
  list-style: none;
  display: grid;
  gap: 2em;
}
@media screen and (min-width: 768px) {
  .contents .business-lists {
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  }
}
@media screen and (max-width: 767px) {
  .contents .business-lists {
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  }
}
.contents .business-lists > li {
  margin: 0;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .contents .business-lists > li {
    font-size: 18px;
  }
}
@media screen and (min-width: 768px) {
  .contents .business-lists > li {
    font-size: 22px;
  }
}
.contents .business-lists > li > ul {
  margin: 0;
  padding: 0;
  margin-top: 1em;
  padding-top: 1em;
  list-style: none;
  border-top: 1px solid rgba(var(--body_rgb), 0.2);
  font-weight: normal;
}
@media screen and (max-width: 767px) {
  .contents .business-lists > li > ul {
    font-size: 14px;
  }
}
@media screen and (min-width: 768px) {
  .contents .business-lists > li > ul {
    font-size: 16px;
  }
}
.contents .business-lists > li > ul > li {
  margin: 0;
}
.contents .wp-block-embed.is-provider-youtube {
  margin-top: 40px;
  margin-bottom: 40px;
}
.contents .cta {
  position: relative;
  z-index: 1;
  max-width: 768px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 767px) {
  .contents .cta {
    margin-top: 60px;
    margin-bottom: 60px;
  }
}
@media screen and (min-width: 768px) {
  .contents .cta {
    margin-top: 100px;
    margin-bottom: 100px;
  }
}
.contents .cta::before {
  position: absolute;
  top: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
  content: "";
  display: block;
  width: 100vw;
  height: calc(100% - 80px);
  background: var(--ctaBg);
}
.contents .cta .cta-inner {
  border: 2px solid #9e8700;
  color: var(--ctaText);
  background: var(--ctaBg);
  padding-left: 30px;
  padding-right: 30px;
}
@media screen and (max-width: 767px) {
  .contents .cta .cta-inner {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}
@media screen and (min-width: 768px) {
  .contents .cta .cta-inner {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}
.contents .cta h2 {
  text-align: center;
  color: var(--ctaText);
}
@media screen and (max-width: 767px) {
  .contents .cta h2 {
    font-size: 18px;
  }
}
@media screen and (min-width: 768px) {
  .contents .cta h2 {
    font-size: 22px;
  }
}
.contents .cta h2 strong {
  color: var(--ctaStrong);
}
.contents .cta h2 em {
  font-style: normal;
  font-size: 1.3em;
}
.contents .cta p {
  text-align: center;
  font-weight: bold;
  color: var(--ctaText);
}
@media screen and (max-width: 767px) {
  .contents .cta p {
    font-size: 14px;
  }
}
@media screen and (min-width: 768px) {
  .contents .cta p {
    font-size: 16px;
  }
}
.contents .cta p strong {
  font-size: 1.2em;
  color: var(--ctaText);
}
.contents .cta .label {
  text-align: center;
  font-size: 1em;
  letter-spacing: 0.2em;
  color: var(--ctaStrong);
}
.contents .cta .icons {
  display: flex;
  justify-content: center;
  margin-top: 1em;
  margin-bottom: 1em;
}
@media screen and (max-width: 767px) {
  .contents .cta .icons {
    gap: 1em;
  }
}
@media screen and (min-width: 768px) {
  .contents .cta .icons {
    gap: 2em;
  }
}
.contents .cta .icons .name {
  text-align: center;
  color: var(--ctaStrong);
}
@media screen and (max-width: 767px) {
  .contents .cta .icons .name {
    font-size: 12px;
  }
}
@media screen and (min-width: 768px) {
  .contents .cta .icons .name {
    font-size: 13px;
  }
}
.contents .cta .icons img {
  width: 100%;
  max-width: 5em;
  height: auto;
}
.contents .cta .buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0 1em;
}
.contents .cta .buttons img {
  width: 100%;
  max-width: 20em;
  height: auto;
  transition: 0.2s;
}
.contents .cta .buttons img:hover {
  transform: translateY(-1px);
}
.contents.error404 p {
  text-align: center;
}
.contents.page.contents-company h2.wp-block-heading:not(:nth-of-type(1)), .contents.page.contents-company .is-style-h2:not(:nth-of-type(1)) {
  margin-top: 4em;
}
.contents.page.contents-aboutus .wp-block-cover {
  height: 60vw;
  max-height: 400px;
  transform: translateY(-89.5px);
  margin-bottom: -89.5px;
}
.contents.page.contents-aboutus .wp-block-cover::before {
  position: absolute;
  left: 50%;
  top: 0;
  z-index: -1;
  transform: translateX(-50%);
  content: "";
  display: block;
  width: 100vw;
  height: 100%;
  background: #fdb733;
}
.contents.page.contents-aboutus .wp-block-cover .wp-block-cover__image-background {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
  width: -moz-fit-content;
  width: fit-content;
  width: 50vw;
  max-width: 550px;
  height: auto;
  aspect-ratio: initial;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 767px) {
  .contents.page.contents-aboutus .wp-block-cover .wp-block-cover__image-background {
    width: 80vw;
    left: -20vw;
  }
}
.contents.page.contents-aboutus .wp-block-cover .wp-block-cover__inner-container {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  height: 100%;
}
.contents.page.contents-aboutus .wp-block-cover .wp-block-cover__inner-container h1 {
  margin: 0;
  color: var(--bodyBg);
  text-align: right;
}
@media screen and (max-width: 767px) {
  .contents.page.contents-aboutus .wp-block-cover .wp-block-cover__inner-container h1 {
    font-size: 8vw;
  }
}
.contents.page.contents-aboutus .wp-block-group {
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  margin-top: 80px;
  margin-bottom: 80px;
}
.contents.page.contents-aboutus .wp-block-group .aboutus-number {
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .contents.page.contents-aboutus .wp-block-group .aboutus-number {
    font-size: 18px;
  }
}
@media screen and (min-width: 768px) {
  .contents.page.contents-aboutus .wp-block-group .aboutus-number {
    font-size: 22px;
  }
}
.contents.page.contents-aboutus p:not(.aboutus-number) {
  text-align: center;
  line-height: 2;
}
.contents.page.contents-aboutus p:not(.aboutus-number) + p {
  margin-top: 2em;
}
.contents.page.contents-recruit p {
  text-align: center;
}
.contents.page.contents-contact .wpcf7 {
  margin-top: 40px;
  margin-bottom: 40px;
}
.contents.page.contents-thanks p {
  text-align: center;
}
.contents.home p.p-heading {
  font-size: min(72px, 8vw) !important;
  font-weight: bold;
  line-height: 1.2;
  color: var(--pointBg);
  margin: 0;
}
.contents.home .top-fv {
  position: relative;
  z-index: 0;
  margin-top: -70px;
  display: flex;
  align-items: flex-end;
}
@media screen and (min-width: 768px) {
  .contents.home .top-fv {
    margin-top: -210px;
    min-height: 67vw;
  }
}
@media screen and (max-width: 767px) {
  .contents.home .top-fv {
    min-height: 150vw;
  }
}
.contents.home .top-fv:before {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
  content: "";
  display: block;
  width: 100vw;
  height: 100%;
  background: url("../img/top_fvbg.jpg") no-repeat;
  background-size: contain;
}
@media screen and (max-width: 767px) {
  .contents.home .top-fv:before {
    background: url("../img/top_fvbg_mo.png") no-repeat;
    background-size: cover;
  }
}
.contents.home .top-fv .wp-block-group__inner-container {
  padding-left: 5vw;
  padding-bottom: 40vw;
  height: 100%;
}
@media screen and (min-width: 768px) {
  .contents.home .top-fv .wp-block-group__inner-container {
    padding-left: 4vw;
    padding-bottom: 12vw;
  }
}
.contents.home .top-fv .wp-block-group__inner-container h1.wp-block-heading, .contents.home .top-fv .wp-block-group__inner-container .is-style-h1 {
  font-size: 10vw;
  font-weight: bold;
  text-align: left;
  line-height: 1.2;
  margin-top: 0;
  margin-bottom: 0.2em;
}
@media screen and (min-width: 768px) {
  .contents.home .top-fv .wp-block-group__inner-container h1.wp-block-heading, .contents.home .top-fv .wp-block-group__inner-container .is-style-h1 {
    font-size: 8vw;
  }
}
.contents.home .top-fv .wp-block-group__inner-container p {
  font-size: 2vw;
  line-height: 1.2;
  letter-spacing: 0.2em;
  margin: 0;
}
@media screen and (min-width: 768px) {
  .contents.home .top-fv .wp-block-group__inner-container p {
    font-size: 1.12vw;
  }
}
@media screen and (max-width: 767px) {
  .contents.home .top-fv .wp-block-group__inner-container::before {
    position: absolute;
    bottom: 4vw;
    left: 37%;
    content: "scroll";
    display: block;
    width: 30vw;
    height: 1em;
    line-height: 1;
    font-size: 1.8vw;
    letter-spacing: 0.1em;
    margin: 0 auto;
    transform: rotate(90deg);
  }
  .contents.home .top-fv .wp-block-group__inner-container::after {
    position: absolute;
    bottom: -10vw;
    left: 50%;
    content: "";
    display: block;
    width: 1px;
    height: 30vw;
    background: rgba(var(--body_rgb), 0.4);
    margin: 0 auto;
  }
}
.contents.home .top-companyinfo {
  position: relative;
  z-index: 0;
  display: flex;
  flex-direction: row-reverse;
  gap: 40px 120px;
  padding-top: 40px;
  padding-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .contents.home .top-companyinfo {
    flex-direction: column;
    margin-top: 80px;
  }
}
.contents.home .top-companyinfo:before {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
  content: "";
  display: block;
  width: 100vw;
  height: 100%;
  background: url("../img/top_2bg.jpg") no-repeat;
  background-size: cover;
  background-position: 0%;
}
@media screen and (max-width: 767px) {
  .contents.home .top-companyinfo:before {
    background: url("../img/top_2bg_mo.png") no-repeat;
    background-size: cover;
  }
}
.contents.home .top-companyinfo .wp-block-column {
  width: 100%;
  flex: 1;
}
.contents.home .top-companyinfo .wp-block-column:nth-of-type(2) {
  width: 100%;
}
.contents.home .top-companyinfo .wp-block-column:nth-of-type(2) iframe {
  aspect-ratio: 4/3;
  filter: grayscale(100%);
}
@media screen and (max-width: 767px) {
  .contents.home .top-companyinfo .wp-block-column:nth-of-type(1) {
    width: -moz-fit-content;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
  }
}
.contents.home .top-companyinfo .wp-block-column:nth-of-type(1) h2.wp-block-heading, .contents.home .top-companyinfo .wp-block-column:nth-of-type(1) .is-style-h2 {
  font-weight: normal;
  line-height: 1.1;
  letter-spacing: 0.1em;
  margin-top: -0.7em;
}
@media screen and (min-width: 768px) {
  .contents.home .top-companyinfo .wp-block-column:nth-of-type(1) h2.wp-block-heading, .contents.home .top-companyinfo .wp-block-column:nth-of-type(1) .is-style-h2 {
    font-size: 88px;
    margin-bottom: 0.4em;
  }
}
@media screen and (max-width: 767px) {
  .contents.home .top-companyinfo .wp-block-column:nth-of-type(1) h2.wp-block-heading, .contents.home .top-companyinfo .wp-block-column:nth-of-type(1) .is-style-h2 {
    font-size: 46px;
    margin-bottom: 1em;
  }
}
.contents.home .top-companyinfo .wp-block-column:nth-of-type(1) .wp-block-table {
  margin-bottom: 0;
}
.contents.home .top-companyinfo .wp-block-column:nth-of-type(1) .wp-block-table thead,
.contents.home .top-companyinfo .wp-block-column:nth-of-type(1) .wp-block-table tfoot,
.contents.home .top-companyinfo .wp-block-column:nth-of-type(1) .wp-block-table tr,
.contents.home .top-companyinfo .wp-block-column:nth-of-type(1) .wp-block-table td {
  border: none;
  padding-left: 0;
  padding-right: 0;
}
.contents.home .top-companyinfo .wp-block-column:nth-of-type(1) .wp-block-table th, .contents.home .top-companyinfo .wp-block-column:nth-of-type(1) .wp-block-table td {
  padding: 1em 0em;
  font-size: 16px;
}
.contents.home .top-companyinfo .wp-block-column:nth-of-type(1) .wp-block-table th:nth-child(1), .contents.home .top-companyinfo .wp-block-column:nth-of-type(1) .wp-block-table td:nth-child(1) {
  min-width: 6em;
}
.contents.home .top-companyinfo .wp-block-column:nth-of-type(1) .wp-block-table th:not(:nth-child(1)), .contents.home .top-companyinfo .wp-block-column:nth-of-type(1) .wp-block-table td:not(:nth-child(1)) {
  padding-top: 1em;
}
.contents.home .top-companyinfo .wp-block-column:nth-of-type(1) .wp-block-table tr {
  flex-direction: row;
}
.contents.home .top-works {
  margin-top: 120px;
  padding-bottom: 120px;
  position: relative;
  z-index: 0;
  display: flex;
  gap: 0 120px;
}
.contents.home .top-works:before {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
  content: "";
  display: block;
  width: 100vw;
  height: 100%;
  background: url("../img/top_3bg.jpg") no-repeat;
  background-size: cover;
  background-position: 0%;
}
@media screen and (max-width: 767px) {
  .contents.home .top-works:before {
    background: url("../img/top_3bg_mo.png") no-repeat;
    background-size: cover;
  }
}
.contents.home .top-works .wp-block-group__inner-container {
  width: 100%;
  position: relative;
  z-index: 0;
}
.contents.home .top-works .wp-block-group__inner-container::before {
  position: absolute;
  bottom: -20px;
  left: 0;
  z-index: 1;
  content: "";
  display: block;
  width: 100px;
  height: 1px;
  background: rgba(var(--body_rgb), 0.4);
}
@media screen and (max-width: 767px) {
  .contents.home .top-works .wp-block-group__inner-container::before {
    bottom: -60px;
  }
}
.contents.home .top-works .wp-block-group__inner-container::after {
  position: absolute;
  bottom: -20px;
  left: 0;
  z-index: 1;
  content: "";
  display: block;
  width: 50px;
  height: 1px;
  background: rgba(var(--body_rgb), 0.4);
  transform: rotate(-45deg);
  transform-origin: left bottom;
}
@media screen and (max-width: 767px) {
  .contents.home .top-works .wp-block-group__inner-container::after {
    bottom: -60px;
  }
}
.contents.home .top-works h2.wp-block-heading, .contents.home .top-works .is-style-h2 {
  font-weight: normal;
  letter-spacing: 0.1em;
  line-height: 1.2;
  margin-bottom: 1em;
}
@media screen and (min-width: 768px) {
  .contents.home .top-works h2.wp-block-heading, .contents.home .top-works .is-style-h2 {
    font-size: 88px;
    margin-top: -0.7em;
  }
}
@media screen and (max-width: 767px) {
  .contents.home .top-works h2.wp-block-heading, .contents.home .top-works .is-style-h2 {
    font-size: 46px;
    text-align: center;
  }
}
.contents.home .top-works .wp-block-columns {
  width: var(--viewWidth);
  gap: 40px;
  margin-left: calc((100% - var(--viewWidth)) / 2);
}
@media screen and (max-width: 767px) {
  .contents.home .top-works .wp-block-columns {
    gap: 20px;
  }
  .contents.home .top-works .wp-block-columns .wp-block-column:nth-of-type(2), .contents.home .top-works .wp-block-columns .wp-block-column:nth-of-type(3) {
    display: none;
  }
}
.contents.home .top-works .wp-block-columns::before {
  flex: 0.4;
  content: "";
  display: block;
  width: 200px;
  height: 300px;
  background: hsl(0, 0%, 12%);
}
@media screen and (max-width: 767px) {
  .contents.home .top-works .wp-block-columns::before {
    flex: 0.3;
  }
}
.contents.home .top-works .wp-block-columns::after {
  flex: 0.4;
  content: "";
  display: block;
  width: 200px;
  height: 300px;
  background: hsl(0, 0%, 12%);
}
@media screen and (max-width: 767px) {
  .contents.home .top-works .wp-block-columns::after {
    flex: 0.3;
  }
}
.contents.home .top-works .wp-block-columns .wp-block-column {
  flex: 1;
}
.contents.home .top-works .wp-block-columns .wp-block-column .wp-block-image {
  position: relative;
  z-index: 0;
  margin: 0;
  width: 100%;
  height: 300px;
  background: hsl(0, 0%, 12%);
}
.contents.home .top-works .wp-block-columns .wp-block-column .wp-block-image img {
  -o-object-fit: contain;
     object-fit: contain;
  width: 60%;
  margin-left: auto;
  margin-right: auto;
  height: 300px;
  opacity: 0.2;
}
.contents.home .top-contact {
  margin-top: 80px;
  margin-bottom: 80px;
}
.contents.home .top-contact h2.wp-block-heading, .contents.home .top-contact .is-style-h2 {
  font-weight: normal;
  line-height: 1.2;
  letter-spacing: 0.1em;
  margin-top: 0;
  margin-bottom: 40px;
}
@media screen and (min-width: 768px) {
  .contents.home .top-contact h2.wp-block-heading, .contents.home .top-contact .is-style-h2 {
    font-size: 72px;
  }
}
@media screen and (max-width: 767px) {
  .contents.home .top-contact h2.wp-block-heading, .contents.home .top-contact .is-style-h2 {
    font-size: 46px;
  }
}
.contents.home .top-contact p {
  letter-spacing: 0.1em;
}
@media screen and (min-width: 768px) {
  .contents.home .top-contact p {
    font-size: 16px;
  }
  .contents.home .top-contact p br {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .contents.home .top-contact p {
    font-size: 16px;
  }
}

@keyframes bounce-scale {
  0% {
    transform: scale(1);
  }
  90% {
    transform: scale(1.06);
  }
  100% {
    transform: scale(1.05);
  }
}/*# sourceMappingURL=theme.css.map */