@charset "UTF-8";
:root {
  --lp-color-bg: #f7f5f1;
  --lp-color-bg-alt: #efebe4;
  --lp-color-surface: #ffffff;
  --lp-color-ink: #2a2724;
  --lp-color-ink-soft: #6b655e;
  --lp-color-line: #e3ded5;
  --lp-color-accent: #561620;
  --lp-color-accent-deep: #5d2121;
  --lp-header-h: 72px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  margin: 0;
}

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--lp-header-h) + 1.5rem);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }
}
body {
  font-family: "Helvetica Neue", "Arial", "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Meiryo", sans-serif;
  font-weight: 400;
  font-feature-settings: "palt" 1;
  line-height: 1.9;
  color: var(--lp-color-ink);
  background: var(--lp-color-bg);
  letter-spacing: 0.04em;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

ul {
  list-style: none;
  padding: 0;
}

:focus-visible {
  outline: 2px solid #561620;
  outline-offset: 3px;
}

.lp-serif {
  font-family: "Helvetica Neue", "Arial", "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Meiryo", sans-serif;
}

.lp-section-head {
  max-width: 880px;
}
.lp-section-head__eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #561620;
}
.lp-section-head__title {
  margin-top: 1rem;
  font-size: clamp(1.5rem, 1.1rem + 2vw, 2.25rem);
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.06em;
}
.lp-section-head__lead {
  margin-top: 1.5rem;
  color: #6b655e;
  font-size: 1rem;
  line-height: 2;
}
.lp-section-head--center {
  margin-inline: auto;
  text-align: center;
}
.lp-section-head--center .lp-section-head__title {
  letter-spacing: 0.08em;
}

.lp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6em;
  min-height: 52px;
  padding: 0 2.5rem;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  white-space: nowrap;
  border-radius: 2px;
  transition: background-color 0.6s cubic-bezier(0.22, 0.61, 0.36, 1), color 0.6s cubic-bezier(0.22, 0.61, 0.36, 1), border-color 0.6s cubic-bezier(0.22, 0.61, 0.36, 1), transform 0.3s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.lp-btn__arrow {
  transition: transform 0.3s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.lp-btn:hover .lp-btn__arrow {
  transform: translateX(4px);
}
.lp-btn--primary {
  color: #fff;
  background: #561620;
  border: 1px solid #561620;
}
.lp-btn--primary:hover {
  background: #5d2121;
  border-color: #5d2121;
}
.lp-btn--ghost {
  color: #2a2724;
  background: transparent;
  border: 1px solid #c9c1b4;
}
.lp-btn--ghost:hover {
  border-color: #2a2724;
  background: rgba(0, 0, 0, 0.02);
}
.lp-btn--block {
  width: 100%;
}

.lp-reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.9s cubic-bezier(0.22, 0.61, 0.36, 1), transform 0.9s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.lp-reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .lp-reveal {
    opacity: 1;
    transform: none;
  }
}
.lp-visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  padding-top: 5px;
  padding-bottom: 5px;
  background: #452A35;
}
.header_scrolled .site-header {
  background: #452A35;
}
@media (max-width: 768px) {
  .site-header {
    padding: 0;
  }
}
.site-header-container {
  max-width: calc(100% - 100px);
}
@media (max-width: 768px) {
  .site-header-container {
    max-width: none;
  }
}
.site-header-logo {
  padding-top: 1rem;
}
@media (max-width: 768px) {
  .site-header-logo {
    padding-top: 15px;
  }
  .site-header-logo img {
    max-width: 60%;
  }
}
.header_scrolled .site-header-logo {
  display: inline !important;
}
.site-header .global-nav {
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}
.site-header .global-nav-name {
  font-size: 16px !important;
  letter-spacing: 0.06;
  font-weight: normal;
  color: white;
}
.site-header .global-nav-register > a {
  margin-left: 15px;
  background-color: #CEAA15;
  padding: 0.8em 3em !important;
  border: 1px solid #CEAA15;
}
.site-header .global-nav-register > a .global-nav-name {
  color: white !important;
}
.site-header .global-nav-register > a:hover {
  background-color: transparent;
}
.site-header .global-nav-register > a:hover .global-nav-name {
  color: #CEAA15 !important;
}
.site-header .global-nav-register .sub-menu li a {
  text-align: center;
  font-size: 14px !important;
}
.site-header .global-nav-login a {
  margin-left: 20px;
  padding: 0.8em 3em !important;
  border: 1px solid white;
}
.site-header .global-nav-login a .global-nav-name {
  color: white !important;
}
.site-header .global-nav-login a:hover {
  background-color: white;
}
.site-header .global-nav-login a:hover .global-nav-name {
  color: #53141E !important;
}

@media (min-width: 992px) {
  .site-header--layout--nav-float .site-header-logo a {
    display: inline;
  }
}
.lp-fv-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: #ffffff;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
.lp-fv-loader.is-loaded {
  opacity: 0;
  visibility: hidden;
}
.lp-fv-loader__spinner {
  width: 50px;
  height: 50px;
  border: 3px solid #f3f3f3;
  border-top: 3px solid #561620;
  border-radius: 50%;
  animation: fv-spin 1s linear infinite;
}

@keyframes fv-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.lp-hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid #e3ded5;
  max-height: calc(100vh - 110px);
  height: 100dvh;
  display: flex;
  align-items: center;
}
.lp-hero__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.lp-hero__bg img, .lp-hero__bg video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.lp-hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.6);
  z-index: 2;
}
.lp-hero__inner {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 1.5rem;
}
@media (min-width: 768px) {
  .lp-hero__inner {
    padding-inline: 2.5rem;
  }
}
.lp-hero__inner {
  position: relative;
  z-index: 3;
  width: 100%;
  padding-block: 6rem;
  padding-bottom: 2.5rem;
  display: flex;
  justify-content: center;
}
@media (min-width: 1024px) {
  .lp-hero__inner {
    justify-content: flex-end;
    padding-block: 8.5rem;
  }
}
.lp-hero__copy {
  max-width: 600px;
  text-align: left;
}
@media (min-width: 1024px) {
  .lp-hero__copy {
    text-align: right;
  }
}
.lp-hero__title {
  font-size: clamp(1.85rem, 1.2rem + 3.2vw, 3.05rem);
  font-weight: 700;
  line-height: 1.55;
  letter-spacing: 0.04em;
  margin-bottom: 20px;
}
.lp-hero__title .lp-hero__title-accent {
  font-family: "Helvetica Neue", "Arial", "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Meiryo", sans-serif;
  color: #561620;
  font-weight: 700;
}
@media (min-width: 1024px) {
  .lp-hero__title .sp {
    display: none;
  }
}
.lp-hero__sub {
  font-weight: 500;
  font-size: 1.25rem;
  color: #6b655e;
}
@media (min-width: 1024px) {
  .lp-hero__sub .sp {
    display: none;
  }
}

.lp-worries {
  background: #efebe4;
  border-bottom: 1px solid #e3ded5;
  padding-block: 6rem;
}
@media (min-width: 768px) {
  .lp-worries {
    padding-block: 8.5rem;
  }
}
.lp-worries__inner {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 1.5rem;
}
@media (min-width: 768px) {
  .lp-worries__inner {
    padding-inline: 2.5rem;
  }
}
.lp-worries__head {
  margin-bottom: 4rem;
}
.lp-worries__grid {
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .lp-worries__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
  }
}
.lp-worries__card {
  display: flex;
  flex-direction: column;
  padding: 2.5rem;
  background: #ffffff;
  border: 1px solid #e3ded5;
  border-radius: 2px;
}
.lp-worries__card-num {
  font-family: "Helvetica Neue", "Arial", "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Meiryo", sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  color: #561620;
}
.lp-worries__card-quote {
  position: relative;
  margin-top: 1rem;
  padding-top: 1rem;
  font-size: 1.02rem;
  font-weight: 500;
  line-height: 1.9;
}
.lp-worries__card-quote::before {
  content: "";
  display: block;
  width: 28px;
  height: 1px;
  margin-bottom: 1rem;
  background: #c9c1b4;
}
.lp-worries__bridge {
  margin-top: 4rem;
  text-align: center;
  font-family: "Helvetica Neue", "Arial", "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Meiryo", sans-serif;
  font-size: clamp(1.1rem, 0.9rem + 1vw, 1.4rem);
  line-height: 1.9;
  letter-spacing: 0.06em;
}
.lp-worries__bridge em {
  font-style: normal;
  color: #561620;
  border-bottom: 1px solid #f0e6e3;
}

.lp-service {
  padding-block: 6rem;
}
@media (min-width: 768px) {
  .lp-service {
    padding-block: 8.5rem;
  }
}
.lp-service {
  border-bottom: 1px solid #e3ded5;
}
.lp-service__inner {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 1.5rem;
}
@media (min-width: 768px) {
  .lp-service__inner {
    padding-inline: 2.5rem;
  }
}
.lp-service__grid {
  display: grid;
  gap: 4rem;
  align-items: center;
}
@media (min-width: 1024px) {
  .lp-service__grid {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 6rem;
  }
}
.lp-service__lead .lp-service__title {
  margin-top: 1rem;
  font-size: clamp(1.4rem, 1.1rem + 1.6vw, 2rem);
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.06em;
}
.lp-service__lead .lp-service__text {
  margin-top: 1.5rem;
  color: #6b655e;
  line-height: 2.1;
}
.lp-service__eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #561620;
}
.lp-service__points {
  display: grid;
  gap: 1.5rem;
  margin-top: 2.5rem;
}
@media (min-width: 480px) {
  .lp-service__points {
    grid-template-columns: repeat(3, 1fr);
  }
}
.lp-service__point {
  padding: 1.5rem;
  border: 1px solid #e3ded5;
  border-radius: 2px;
  background: #ffffff;
}
.lp-service__point-label {
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  color: #561620;
}
.lp-service__point-value {
  margin-top: 0.4em;
  font-family: "Helvetica Neue", "Arial", "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Meiryo", sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
}
.lp-service__point-note {
  margin-top: 0.4em;
  font-size: 0.78rem;
  color: #9a948c;
  line-height: 1.7;
}
.lp-service__scheme {
  border: 1px solid #e3ded5;
  border-radius: 2px;
  background: #ffffff;
  padding: 2.5rem;
}
.lp-service__scheme-title {
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.08em;
}
.lp-service__scheme-note {
  margin-top: 0.5rem;
  font-size: 0.8rem;
  color: #6b655e;
  line-height: 1.8;
}
.lp-service__scheme-bar {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 2px;
  border: 1px solid #e3ded5;
  border-radius: 2px;
  overflow: hidden;
}
.lp-service__scheme-seg {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
}
.lp-service__scheme-seg span:last-child {
  font-family: "Helvetica Neue", "Arial", "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Meiryo", sans-serif;
  font-weight: 700;
}
.lp-service__scheme-seg--senior {
  background: #f0e6e3;
  color: #5d2121;
}
.lp-service__scheme-seg--junior {
  background: #efebe4;
  color: #6b655e;
}
.lp-service__scheme-caption {
  margin-top: 1rem;
  font-size: 0.74rem;
  color: #9a948c;
  line-height: 1.7;
}

.lp-strengths {
  background: #efebe4;
  border-bottom: 1px solid #e3ded5;
  padding-block: 6rem;
}
@media (min-width: 768px) {
  .lp-strengths {
    padding-block: 8.5rem;
  }
}
.lp-strengths__inner {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 1.5rem;
}
@media (min-width: 768px) {
  .lp-strengths__inner {
    padding-inline: 2.5rem;
  }
}
.lp-strengths__head {
  margin-inline: auto;
  margin-bottom: 6rem;
}
.lp-strengths__list {
  display: grid;
  gap: 4rem;
}
@media (min-width: 768px) {
  .lp-strengths__list {
    gap: 6rem;
  }
}
.lp-strengths__item {
  display: grid;
  gap: 2.5rem;
  align-items: center;
  padding-top: 4rem;
  border-top: 1px solid #e3ded5;
}
@media (min-width: 1024px) {
  .lp-strengths__item {
    grid-template-columns: 0.85fr 1.15fr;
    gap: 6rem;
  }
}
@media (min-width: 1024px) {
  .lp-strengths__item:nth-child(even) .lp-strengths__visual {
    order: 2;
  }
  .lp-strengths__item:nth-child(even) .lp-strengths__body {
    order: 1;
  }
}
.lp-strengths__index {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.lp-strengths__index-num {
  font-family: "Helvetica Neue", "Arial", "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Meiryo", sans-serif;
  font-size: clamp(2.4rem, 1.8rem + 2.4vw, 3.6rem);
  font-weight: 700;
  line-height: 1;
  color: #561620;
}
.lp-strengths__index-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #561620;
  color: #9a948c;
}
.lp-strengths__item-title {
  font-size: clamp(1.2rem, 1rem + 1vw, 1.55rem);
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: 0.04em;
}
.lp-strengths__item-text {
  margin-top: 1.5rem;
  color: #6b655e;
  line-height: 2.1;
  font-size: 0.96rem;
}
.lp-strengths__visual {
  position: relative;
  border: 1px solid #e3ded5;
  border-radius: 2px;
  overflow: hidden;
  background: #ffffff;
  aspect-ratio: 4/3;
}
.lp-strengths__visual img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.lp-flow {
  padding-block: 6rem;
}
@media (min-width: 768px) {
  .lp-flow {
    padding-block: 8.5rem;
  }
}
.lp-flow {
  border-bottom: 1px solid #e3ded5;
}
.lp-flow__inner {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 1.5rem;
}
@media (min-width: 768px) {
  .lp-flow__inner {
    padding-inline: 2.5rem;
  }
}
.lp-flow__head {
  margin-inline: auto;
  margin-bottom: 6rem;
}
.lp-flow__steps {
  display: grid;
  gap: 2.5rem;
  counter-reset: step;
}
@media (min-width: 768px) {
  .lp-flow__steps {
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
  }
}
.lp-flow__step {
  position: relative;
  padding: 2.5rem;
  background: #ffffff;
  border: 1px solid #e3ded5;
  border-radius: 2px;
}
@media (min-width: 768px) {
  .lp-flow__step {
    border-radius: 0;
  }
  .lp-flow__step:not(:first-child) {
    border-left: none;
  }
  .lp-flow__step:first-child {
    border-top-left-radius: 2px;
    border-bottom-left-radius: 2px;
  }
  .lp-flow__step:last-child {
    border-top-right-radius: 2px;
    border-bottom-right-radius: 2px;
  }
}
@media (min-width: 768px) {
  .lp-flow__step:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 50%;
    right: -7px;
    z-index: 2;
    width: 12px;
    height: 12px;
    background: #ffffff;
    border-top: 1px solid #c9c1b4;
    border-right: 1px solid #c9c1b4;
    transform: translateY(-50%) rotate(45deg);
  }
}
.lp-flow__step-num {
  display: flex;
  align-items: baseline;
  gap: 0.5em;
  font-family: "Helvetica Neue", "Arial", "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Meiryo", sans-serif;
  color: #561620;
}
.lp-flow__step-num span:first-child {
  font-size: 0.7rem;
  letter-spacing: 0.16em;
}
.lp-flow__step-num span:last-child {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}
.lp-flow__step-title {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid #e3ded5;
  font-size: 1.05rem;
  font-weight: 500;
  line-height: 1.7;
}
.lp-flow__step-text {
  margin-top: 1rem;
  font-size: 0.9rem;
  color: #6b655e;
  line-height: 2;
}
.lp-flow__foot {
  margin-top: 4rem;
  text-align: center;
}

.vk_faq {
  max-width: 700px;
  background-color: white;
}
.vk_faq:first-of-type {
  border-top: 1px solid var(--vk-color-border);
}
.vk_faq_title {
  border-bottom: none !important;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  padding-top: 40px !important;
  padding-bottom: 0 !important;
  padding-right: 30px !important;
  padding-left: 40px !important;
  font-size: 16px !important;
  font-weight: 500;
}
.vk_faq_title:before {
  color: #561620 !important;
  font-weight: 700 !important;
  font-size: 16px !important;
  top: 2.3rem !important;
}
.vk_faq_title:after {
  content: "\f078";
  position: absolute;
  right: 1rem;
  top: 2.5rem;
  color: #561620;
  font-family: "Font Awesome 5 Free";
  font-size: 12px;
  font-weight: 900;
  transition: transform 0.3s;
}
.vk_faq_title.is-active:after {
  transform: rotate(180deg);
}
@media (max-width: 768px) {
  .vk_faq_title {
    padding-right: 3rem !important;
    padding-top: 2.3rem !important;
  }
}
.vk_faq_content {
  padding-top: 20px !important;
  padding-bottom: 0px !important;
  padding-right: 40px !important;
  font-size: 15px !important;
  color: #6b655e;
}
.vk_faq_content:before {
  top: 1rem !important;
  font-weight: 700 !important;
  font-size: 15px !important;
  color: #6b655e !important;
}

.lp-cta {
  position: relative;
  overflow: hidden;
  background: #561620;
  color: #fff;
  padding-block: 6rem;
}
@media (min-width: 768px) {
  .lp-cta {
    padding-block: 8.5rem;
  }
}
.lp-cta__inner {
  width: 100%;
  max-width: 880px;
  margin-inline: auto;
  padding-inline: 1.5rem;
}
@media (min-width: 768px) {
  .lp-cta__inner {
    padding-inline: 2.5rem;
  }
}
.lp-cta__inner {
  text-align: center;
  position: relative;
  z-index: 1;
}
.lp-cta__eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #561620;
  color: rgba(255, 255, 255, 0.7);
}
.lp-cta__title {
  margin-top: 1rem;
  font-size: clamp(1.5rem, 1.2rem + 1.6vw, 2.2rem);
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.06em;
}
.lp-cta__text {
  margin-top: 1.5rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 2;
}
.lp-cta__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-top: 4rem;
}
.lp-cta .lp-btn--primary {
  background: #fff;
  color: #561620;
  border-color: #fff;
}
.lp-cta .lp-btn--primary:hover {
  background: rgba(255, 255, 255, 0.88);
  border-color: rgba(255, 255, 255, 0.88);
}
.lp-cta .lp-btn--ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.5);
}
.lp-cta .lp-btn--ghost:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.08);
}
.lp-cta__note {
  margin-top: 1.5rem;
  font-size: 0.76rem;
  color: rgba(255, 255, 255, 0.7);
}

.site-footer {
  background: #561620;
  background-image: linear-gradient(to top, rgba(20, 6, 9, 0.98) 0%, rgba(20, 6, 9, 0.75) 50%, rgba(20, 6, 9, 0.25) 100%);
  color: rgba(255, 255, 255, 0.55);
}
.site-footer img {
  width: 80%;
}
.site-footer table tr {
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.site-footer table tr td:first-child {
  width: 110px;
}
.site-footer table tr td:last-child {
  color: rgba(255, 255, 255, 0.85);
}
.site-footer-copyright p:last-child {
  display: none;
}

.entry-header {
  display: flex;
  flex-direction: column-reverse;
}
.entry-meta {
  margin-bottom: 0.5rem;
}
.entry-meta-item-author {
  display: none;
}
.entry-meta-item-updated {
  display: none;
}
.entry-meta-item-date .fa-solid {
  display: none;
}
.entry-footer .entry-meta-data-list {
  display: none;
}

.vk_post_body {
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-end;
  padding-bottom: 0 !important;
}
.vk_post_title {
  padding-bottom: 0;
  border-bottom: none;
  font-weight: normal !important;
}
.vk_post_title_new {
  display: none;
}
.vk_post_imgOuter {
  display: none;
}
.vk_post_excerpt {
  display: none;
}
.vk_post_btnOuter {
  display: none;
}
.vk_post_date {
  margin-top: 0 !important;
  font-size: 1rem !important;
  min-width: 100px;
}

.wpcf7-previous {
  font-size: 16px;
  padding: 0.5em 2em;
  border-radius: var(--vk-size-radius);
  background-color: white;
  border: 2px solid;
  color: var(--vk-color-primary);
  margin-right: 1rem;
}
.wpcf7-submit {
  padding-left: 4em !important;
  padding-right: 4em !important;
  padding-top: 20px !important;
  padding-bottom: 20px !important;
  font-weight: bold;
}
.wpcf7 .badge {
  display: inline-block;
  padding: 0.35em 0.65em;
  font-size: 0.6em;
  font-weight: normal;
  line-height: 1;
  color: #fff;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  border-radius: 0.25rem;
  margin-right: 10px;
}
.wpcf7 .badge.bg-danger {
  background-color: #561620 !important;
}
.wpcf7 .form-label {
  display: flex;
  align-items: center;
  margin-bottom: 5px;
}
.wpcf7-buttons {
  margin-top: 50px;
  padding-left: 66px;
  display: flex;
  justify-content: center;
}

.vk-mobile-nav-menu-btn {
  display: flex;
  align-items: flex-end;
  background: rgba(255, 255, 255, 0.8);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 0;
  text-indent: 0;
  font-size: 10px;
  justify-content: center;
  font-weight: bold;
  color: #561620;
}
.vk-mobile-nav-menu-btn:before {
  content: "";
  position: absolute;
  top: 8px;
  left: 5px;
  width: 30px;
  height: 2px;
  background-color: #561620;
  transition: transform 0.3s ease;
}
.vk-mobile-nav-menu-btn:after {
  content: "";
  position: absolute;
  top: 18px;
  left: 5px;
  width: 30px;
  height: 2px;
  background-color: #561620;
  transition: transform 0.3s ease;
}
.vk-mobile-nav-menu-btn.menu-open {
  border: none;
  background: rgba(255, 255, 255, 0.8);
}
.vk-mobile-nav-menu-btn.menu-open:before {
  transform: rotate(30deg);
  top: 13px;
}
.vk-mobile-nav-menu-btn.menu-open:after {
  transform: rotate(-30deg);
  top: 13px;
}
.vk-mobile-nav .wp-block-button .wp-block-button__link {
  padding-top: 20px;
  padding-bottom: 20px;
  box-sizing: border-box;
  font-size: 16px !important;
}
.vk-mobile-nav .wp-block-button:first-child .wp-block-button__link {
  border: #561620 2px solid;
}
.vk-mobile-nav .wp-block-button:last-child .wp-block-button__link {
  background-color: transparent;
  border: #561620 2px solid;
  color: #561620;
}

.home h2 {
  font-size: 35.2px;
  font-weight: 500;
}
@media (max-width: 768px) {
  .home h2 {
    font-size: 22px;
  }
}
.home h3 {
  font-weight: 500;
}
.home h4 {
  font-weight: 500;
}
.home h5 {
  font-weight: 500;
}
.home h6 {
  font-size: 11.52px;
  font-weight: 500;
  letter-spacing: 0.3em;
}

.concern-case {
  border-top: 3px solid #561620;
}
.concern-case p:first-child {
  margin-top: 0;
}
.concern-case p:first-child::after {
  content: "";
  display: block;
  width: 30px;
  height: 1px;
  background-color: #561620;
  margin-top: 30px;
}

.vk_button_link {
  border-radius: 0;
  padding-left: 2rem !important;
  padding-right: 2rem !important;
}

.vk_button_link_white a {
  border-radius: 0 !important;
  background-color: #CEAA15 !important;
  color: white !important;
  letter-spacing: 0.1rem;
  width: 220px !important;
  font-weight: bold;
}
.vk_button_link_white a:hover {
  opacity: 0.8;
}

.vk_button_link_transparent a {
  border-radius: 0 !important;
  border: 1px solid #fff !important;
  background-color: transparent !important;
  color: white !important;
  letter-spacing: 0.1rem;
  width: 220px !important;
  font-weight: bold;
}
.vk_button_link_transparent a:hover {
  opacity: 0.8;
}

.vk-mobile-nav {
  background-color: #f7f5f1 !important;
}

/**
* パンくずリスト：不要
*/
.breadcrumb .container {
  max-width: 800px;
}
.breadcrumb .container .fa-solid {
  display: none;
}

/**
* 個別ページの横幅
*/
body:not(.home) .site-body-container {
  max-width: 800px;
}

.tagcloud-wrapper {
  padding-top: 1em;
}
.tagcloud-wrapper .container {
  max-width: 800px;
}
.tagcloud-wrapper .container dt {
  display: none;
}

/**
* 前の記事/次の記事：不要
*/
.next-prev {
  display: none;
}

.wp-block-latest-posts li {
  display: flex;
  align-items: center;
  flex-direction: row-reverse;
  justify-content: flex-end;
}
.wp-block-latest-posts__post-title {
  margin-bottom: 0 !important;
}
.wp-block-latest-posts__post-date {
  min-width: 100px;
  display: block;
  color: #8C7310;
}

.wp-block-list-history {
  position: relative;
  padding-left: 1.6rem;
}
.wp-block-list-history:before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  bottom: 6px;
  width: 2px;
  background: linear-gradient(to bottom, #CEAA15, #561620);
}
.wp-block-list-history li {
  position: relative;
  padding-left: 1.6rem;
  padding-bottom: 2.2rem;
}
.wp-block-list-history li:last-child {
  padding-bottom: 0;
}
.wp-block-list-history li:before {
  content: "";
  position: absolute;
  left: calc(-1.6rem - 5px);
  top: 0.55em;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: white;
  border: 3px solid #561620;
}
.wp-block-list-history li h4 {
  color: #561620;
  margin-bottom: 0;
}

#flows .wp-block-column strong {
  display: inline-block;
  background-color: #EFEBE4;
  padding: 0px 20px;
  border-radius: 4px;
}

/**
* 1列目 （左）画像　（右）テキスト
* 2列目 （左）テキスト　（右）画像
* レスポンシブで折りたたむ際に、2列目は順番を変える必要あり
*/
@media (max-width: 768px) {
  .responsive-reverse {
    flex-direction: column-reverse;
  }
}
.responsive-reverse .wp-block-column:first-child {
  flex-basis: 58%;
}
.responsive-reverse .wp-block-column:last-child {
  flex-basis: 42%;
}

@media (max-width: 768px) {
  #news .wp-block-heading {
    text-align: center;
  }
}
#news .wp-block-latest-posts {
  max-width: 700px;
  margin: 0 auto;
}

@media (min-width: 769px) {
  .sp-only {
    display: none;
  }
}/*# sourceMappingURL=style.css.map */