@charset "UTF-8";
/* ===============================================
# underline
=============================================== */
.js__marker {
  background-image: linear-gradient(to bottom, transparent 60%, #f6d48e 60%);
  background-size: 0% 100%;
  background-repeat: no-repeat;
}

/* ===============================================
# btn
=============================================== */
/* =======================  ===*/
/* ===============================================
# base
=============================================== */
/* ======================= fonts ===*/
body,
p,
a,
li,
h1,
h2,
h3,
h4,
h5,
h6,
.c-entry-content {
  font-family: "Zen Kaku Gothic New", sans-serif;
}

@media (max-width: 640px) {
  .smb-section__title {
    font-size: clamp(1.5rem, 1.149rem + 1.76vw, 1.85rem);
  }
}
.smb-section__title .deco {
  background-color: #e9a02a;
  color: #fff;
  margin: 0 0.03em;
  display: inline-block;
  width: 1.7em;
  height: 1.7em;
  line-height: 1.7;
  border-radius: 100vh;
}
.smb-section__title .orange {
  color: #eb6700;
}

/* ======================= responsive ===*/
.pc {
  display: block;
}
@media (max-width: 640px) {
  .pc {
    display: none;
  }
}

.mb {
  display: none;
}
@media (max-width: 640px) {
  .mb {
    display: block;
  }
}

/* ======================= layout ===*/
.c-section {
  padding-top: 0;
}

@media (max-width: 640px) {
  .c-container {
    padding-left: 0.8em;
    padding-right: 0.8em;
  }
}

/* ======================= btn ===*/
.smb-btn {
  border-bottom: 5px solid #c6c6c6;
  position: relative;
  overflow: hidden;
}
.smb-btn::after {
  -webkit-animation: 4s 0s shine linear infinite;
          animation: 4s 0s shine linear infinite;
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.4) 100%);
  content: "";
  height: 100%;
  left: -100%;
  position: absolute;
  top: 0;
  transform: skewX(-25deg);
  width: 50%;
}

@-webkit-keyframes shine {
  20% {
    left: 150%;
  }
  100% {
    left: 150%;
  }
}

@keyframes shine {
  20% {
    left: 150%;
  }
  100% {
    left: 150%;
  }
}
.smb-btn:hover {
  margin-top: 3px;
  border-bottom: 2px solid #c6c6c6;
}

/* ===============================================
# header
=============================================== */
.contact {
  margin-right: 0.5rem;
}
.contact a {
  background-color: #02c754;
}
.contact a .fa-line {
  font-size: 1.5rem;
  margin-right: 0.3rem;
}

#menu-item-110 {
  background-color: #02c754;
}
#menu-item-110 a {
  display: flex;
  align-items: center;
}

#menu-item-551 {
  background-color: #f6ecdc;
}
#menu-item-551 a {
  color: #615534;
}

/* ======================= header__logo ===*/
/* 初期は薄く */
.c-site-branding__title {
  opacity: 0.1;
  transition: opacity 0.35s cubic-bezier(0.2, 0.6, 0.2, 1);
}
@media (max-width: 640px) {
  .c-site-branding__title {
    opacity: 0;
  }
}

/* ページがスクロールされたら濃く */
.has-scrolled .c-site-branding__title {
  opacity: 1;
}

/* ===============================================
# fv
=============================================== */
.fv {
  position: relative;
  padding-top: 6.6rem;
}
@media (max-width: 640px) {
  .fv .c-container {
    padding-left: 0;
    padding-right: 0;
  }
}
.fv .fv__mov__container .smb-container__body {
  margin-right: 0;
  margin-left: auto;
}
.fv .fv__mov__container .wp-block-cover {
  border-radius: 120px 0;
}
@media (max-width: 640px) {
  .fv .fv__mov__container .wp-block-cover {
    border-radius: 0;
  }
}
@media (max-width: 640px) {
  .fv .fv__mov__container .wp-block-cover__video-background {
    top: 3.5rem;
    height: 72%;
  }
}
.fv .fv__title__container {
  position: absolute;
  top: -1.5rem;
}
@media (max-width: 640px) {
  .fv .fv__title__container {
    top: -7rem;
    width: 100vw;
    background: #ffffff;
    background: linear-gradient(0deg, rgba(255, 255, 255, 0.7) 5%, rgba(255, 255, 255, 0) 100%);
  }
}
@media (max-width: 640px) {
  .fv .fv__title__container figure {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
@media (max-width: 640px) {
  .fv .fv__title__container img {
    max-width: 350px;
  }
}
.fv .fv__catch__container {
  margin-top: -10rem;
}
@media (max-width: 640px) {
  .fv .fv__catch__container {
    margin-top: -10rem;
    padding: 0 1rem;
    gap: 0;
  }
}
@media (max-width: 640px) {
  .fv .fv__catch__container .catch__right__item .c-row__col {
    margin-bottom: 1rem !important;
  }
}

/* ======================= 揺れ ===*/
.smb-section__lede {
  display: inline-block; /* 揺れを分かりやすくする */
  -webkit-animation: sway 1.5s ease-in-out infinite alternate;
          animation: sway 1.5s ease-in-out infinite alternate;
}

@-webkit-keyframes sway {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(20px);
  } /* 揺れる距離を調整 */
}

@keyframes sway {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(20px);
  } /* 揺れる距離を調整 */
}
/* ===============================================
# cta
=============================================== */
.cta__container {
  /* ======================= btn ===*/
}
@media (max-width: 640px) {
  .cta__container {
    padding-left: 0.8em;
    padding-right: 0.8em;
  }
}
.cta__container .cta__title {
  position: relative;
  padding: 1.5rem 2rem;
  box-shadow: 0 2px 14px rgba(0, 0, 0, 0.1);
}
@media (max-width: 640px) {
  .cta__container .cta__title {
    font-size: 1.5rem !important;
  }
}
.cta__container .cta__title:before,
.cta__container .cta__title:after {
  position: absolute;
  left: 0;
  width: 100%;
  height: 4px;
  content: "";
  background-image: linear-gradient(135deg, #704308 0%, #ffce08 40%, #e1ce08 60%, #704308 100%);
}
.cta__container .cta__title:before {
  top: 0;
}
.cta__container .cta__title:after {
  bottom: 0;
}
@media (max-width: 640px) {
  .cta__container .cta__text {
    font-size: 1rem !important;
  }
}
.cta__container .cta__text span {
  -webkit-text-emphasis: circle #e72d2f;
          text-emphasis: circle #e72d2f;
  font-size: 1.8rem;
}
@media (max-width: 640px) {
  .cta__container .cta__text span {
    font-size: 1.2rem;
  }
}
.cta__container .btn__wrapper {
  margin-top: 3rem;
}
.cta__container .smb-btn__label {
  font-size: 1.15rem;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cta__container .smb-btn__label .fa-line {
  font-size: 2rem;
}

/* ===============================================
# footer-cta
=============================================== */
.p-footer-sticky-nav .menu-item-623 a {
  background-color: #00b900;
}
.p-footer-sticky-nav .menu-item-623 div {
  display: flex;
  justify-content: center;
  align-items: center;
}
.p-footer-sticky-nav .menu-item-623 div .fa-line {
  margin-right: 0.3rem;
  font-size: 1.15rem;
}
.p-footer-sticky-nav a {
  font-size: 1rem !important;
  font-weight: bold;
  padding-top: 1rem;
  padding-bottom: 1rem;
}

/* ===============================================
# worries
=============================================== */
.worries {
  margin-top: 5rem;
}

/* ===============================================
# reasons
=============================================== */
@media (max-width: 640px) {
  .reasons .smb-spider-contents-slider__item--p-s {
    padding: 1rem;
  }
}
.reasons .spider__arrow[data-direction=prev]:before {
  border-bottom: 1px solid !important;
  border-left: 1px solid !important;
}
.reasons .spider__arrow[data-direction=next]:before {
  border-right: 1px solid !important;
  border-top: 1px solid !important;
}

/* ===============================================
# mission
=============================================== */
.mission {
  /* ======================= img ===*/
}
.mission .smb-section__background-text {
  overflow: visible !important;
}
.mission .smb-section__background-text .smb-section__background-text__text {
  margin-top: -6rem !important;
  padding-bottom: 0.5rem;
  color: #333;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  background: repeating-linear-gradient(#f5f733 0 3px, #e539a6 3px 6px);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (max-width: 640px) {
  .mission .smb-section__background-text .smb-section__background-text__text {
    font-size: clamp(4rem, 15vw, 6rem) !important;
  }
}
.mission .mission__item {
  margin-top: 7rem;
}
.mission .mission__item .smb-media-text__title {
  font-size: 1.7rem;
  padding: 0.5rem 0;
  margin-bottom: 0.2rem;
  background-image: linear-gradient(90deg, #e9a02a 0 20%, #f6ecdc 20%);
  background-repeat: no-repeat;
  background-size: 100% 2px;
  background-position: bottom;
}
@media (max-width: 640px) {
  .mission .mission__item .smb-media-text__title {
    font-size: clamp(1.3rem, 1.099rem + 1vw, 1.5rem);
  }
}
.mission .mission__item .mission__conversation {
  max-width: 500px;
  margin-left: 0 !important;
  margin-right: auto !important;
}
.mission .sub__title {
  margin-top: 7rem !important;
  margin-bottom: 3rem !important;
}
.mission .three-needs {
  margin-top: 5rem;
  margin-bottom: 5rem;
}
@media (max-width: 640px) {
  .mission .three-needs .smb-container__body {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
.mission .smb-media-text__figure {
  height: auto !important; /* ← 親の高さ固定を解除 */
}
.mission .smb-media-text__figure > img,
.mission .smb-media-text__figure > video {
  width: 100%;
  height: auto;
}
@media (max-width: 640px) {
  .mission .message__container {
    flex-direction: column-reverse;
  }
} /* ===============================================
# voice
=============================================== */
.voice {
  padding-top: 7rem;
}
.voice .voice__wrapper {
  margin-top: 5rem;
}
.voice .voice__wrapper .wp-block-heading {
  padding: 1rem 0;
  background-image: linear-gradient(90deg, #b2d5de 0 25%, #ddcfb3 25% 50%, #b3ddb4 50% 75%, #f7e69b 75%);
  background-repeat: no-repeat;
  background-size: 100% 0.3rem;
  background-position: bottom;
}
@media (max-width: 640px) {
  .voice .voice__wrapper .RJE_R002LP_voices__item_heading + .RJE_R002LP_voices__item_content:not(:root) {
    border: none !important;
    margin-top: -2rem !important;
  }
}
@media (max-width: 640px) {
  .voice .smb-items__item__body {
    padding: 0 !important;
  }
}
@media (max-width: 640px) {
  .voice .smb-media-text__contents-wrapper {
    margin-top: 0 !important;
  }
}

@media (max-width: 1023px) {
  .RJE_R002LP_voices__item_heading + .RJE_R002LP_voices__item_content:not(:root) {
    border: none !important;
    margin-top: -2rem !important;
  }
}
.shapedividers_com-6704 {
  overflow: hidden;
  position: relative;
}

.shapedividers_com-6704::before {
  content: "";
  font-family: "shape divider from ShapeDividers.com";
  position: absolute;
  z-index: 3;
  pointer-events: none;
  background-repeat: no-repeat;
  bottom: -0.1vw;
  left: -0.1vw;
  right: -0.1vw;
  top: -0.1vw;
  background-size: 100% 90px;
  background-position: 50% 0%;
  background-image: url('data:image/svg+xml;charset=utf8, <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 35.278 3.527" preserveAspectRatio="none"><path d="M0 1.064v.125a82.946 82.946 0 0035.278-.007v-.125A82.783 82.783 0 010 1.064M0 .45V.7A83.105 83.105 0 0035.278.693v-.25A82.777 82.777 0 010 .45M33.252 0a82.855 82.855 0 01-31.26 0H0v.092A83.44 83.44 0 0035.278.085V0zm-10.8 0h8.84A84.249 84.249 0 013.952 0h8.839zM0 1.557v.075a82.878 82.878 0 0035.278-.007V1.55A82.771 82.771 0 010 1.557" fill="%23f6ecdc"/></svg>');
}

@media (min-width: 2100px) {
  .shapedividers_com-6704::before {
    background-size: 100% calc(2vw + 90px);
  }
}
/* ===============================================
# support
=============================================== */
.support .support_subtitle {
  padding: 0.5rem 0;
  margin-bottom: 3rem;
  background-image: linear-gradient(90deg, #e9a02a 0 20%, #f6ecdc 20%);
  background-repeat: no-repeat;
  background-size: 100% 2px;
  background-position: bottom;
}
.support .support_subtitle span {
  -webkit-text-emphasis: dot #e72d30;
          text-emphasis: dot #e72d30;
}
@media (max-width: 640px) {
  .support .person__container {
    --smb-grid--columns: 1 !important;
    --smb-grid--rows: auto !important;
    gap: 1rem;
  }
}
.support .person__container .wp-block-heading span {
  -webkit-text-emphasis: dot #e72d30;
          text-emphasis: dot #e72d30;
}
.support .person__container .no-fit__wrapper figure {
  margin-top: 2rem;
}
@media (max-width: 640px) {
  .support .person__container .wp-block-image {
    width: 7rem !important;
  }
} /* ===============================================
# join-us
=============================================== */
@media (max-width: 640px) {
  .join-us .join-us__requirements {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }
} /* ===============================================
# entry
=============================================== */
.entry .entry__wrapper span {
  padding: 0.8rem 0;
  margin-bottom: 0.2rem;
  background-image: linear-gradient(90deg, #eb6700 0 20%, #dedede 20%);
  background-repeat: no-repeat;
  background-size: 100% 4%;
  background-position: bottom;
  font-size: 1.2rem;
}
.entry .entry__wrapper .smb-step__item__number::before {
  font-size: 1rem;
  font-weight: bold;
  color: #eb6700;
}

/* ===============================================
# locations
=============================================== */
.locations .smb-section__background-text {
  overflow: visible !important;
}
.locations .smb-section__background-text .smb-section__background-text__text {
  margin-top: 2rem;
  margin-left: -5rem;
  padding-bottom: 0.5rem;
  color: #333;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  background: repeating-linear-gradient(#f5f733 0 3px, #e539a6 3px 6px);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (max-width: 640px) {
  .locations .smb-section__background-text .smb-section__background-text__text {
    margin-top: 0rem;
    margin-left: 0;
    line-height: 1;
    font-size: clamp(3.2rem, 17vw, 6rem) !important;
  }
} /* ===============================================
# footer
=============================================== */
.footer__cta .footer__cta__btn__container {
  padding-right: 1rem;
}
/*# sourceMappingURL=style.css.map */