@charset "UTF-8";
/* ===============================================
# レスポンシブ
=============================================== */
.pc {
  display: block;
}
@media (width < 640px) {
  .pc {
    display: none;
  }
}

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

/* ===============================================
# レイアウト
=============================================== */
.c-entry__header {
  display: none;
}

/* ===============================================
# カラー
=============================================== */
/* #FFF6E5 */
/* #333 */
/* #2F6FD6 */
/* #E5533D */
body {
  color: #333;
}

/* ===============================================
# button
=============================================== */
.smb-btn {
  border-bottom: 5px solid #7a5b2f;
  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 #7a5b2f;
}

.cta__btn:hover {
  transform: scale(1.2);
}

/* ======================= btn-green ===*/
.cta__btn-g a {
  border-bottom: 5px solid #1f6f4d;
  position: relative;
  overflow: hidden;
}
.cta__btn-g a::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%;
}
.cta__btn-g a .smb-btn__label {
  font-size: 1.2rem;
}
@media (width < 640px) {
  .cta__btn-g a .smb-btn__label {
    font-size: 0.9em;
  }
}

@keyframes shine {
  20% {
    left: 150%;
  }
  100% {
    left: 150%;
  }
}
.cta__btn-g a:hover {
  margin-top: 3px;
  border-bottom: 2px solid #1f6f4d;
}

.footer__nav__tel .smb-btn__label {
  font-size: 1.2rem;
}
@media (width < 640px) {
  .footer__nav__tel .smb-btn__label {
    font-size: 0.9em;
  }
}

/* ======================= section__title ===*/
.section__title {
  background-color: #ffa400;
  opacity: 1;
  background-image: radial-gradient(#ffffff 0.7px, #ffa400 0.7px);
  background-size: 14px 14px;
  box-shadow: 0 0 0 100vmax #ffa400;
  -webkit-clip-path: inset(0 -100vmax);
          clip-path: inset(0 -100vmax);
  padding-top: 1.5rem !important;
  padding-bottom: 1.5rem !important;
  color: #fff;
  font-size: 2rem;
}
@media (width < 1024px) {
  .section__title {
    font-size: 1.45rem;
  }
}
@media (width < 640px) {
  .section__title {
    font-size: 1rem;
  }
}
.section__title .emphasis {
  background-color: #7a5b2f;
  color: #fff;
  margin: 0 0.03em;
  display: inline-block;
  width: 1.7em;
  height: 1.7em;
  line-height: 1.7;
  border-radius: 100vh;
}

/* ======================= sub__title ===*/
.section__title-sub {
  position: relative;
  padding: 1rem 1rem 1rem 1.5rem;
  border-radius: 30px;
  background-color: rgb(229, 83, 61);
  color: #fff;
  font-weight: bold;
  font-size: 1.2em;
}

.section__title-sub:before,
.section__title-sub:after {
  position: absolute;
  border-radius: 50%;
  background-color: rgb(229, 83, 61);
  content: "";
}

.section__title-sub:before {
  top: 110%;
  left: 40px;
  height: 15px;
  width: 15px;
}

.section__title-sub:after {
  top: 150%;
  left: 50px;
  height: 10px;
  width: 10px;
}

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

/* ===============================================
# common
=============================================== */
/* ======================= 詳細エリア ===*/
.detail h3 {
  font-size: 1rem;
}
@media (width < 640px) {
  .detail h3 {
    font-size: 0.8em;
  }
}
.detail h4 {
  font-size: 1rem;
  background: #fff !important;
  border-left: 1px solid #f2d7a6;
}
@media (width < 640px) {
  .detail h4 {
    font-size: 0.8em;
  }
}
.detail li,
.detail p {
  font-size: 0.8rem;
}
@media (width < 640px) {
  .detail li,
.detail p {
    font-size: 0.7em;
  }
}
.detail .smb-accordion__item__title {
  text-align: center;
}
.detail .smb-step__item__title span {
  font-size: 0.88rem;
}
@media (width < 640px) {
  .detail .smb-accordion__item__title__label {
    font-size: 0.7em;
  }
}
.detail .smb-step__item__number {
  width: 45px;
  height: 45px;
}
.detail .smb-read-more-box__button {
  background: #f3eee8;
  color: #7a5a3a;
}
.detail .smb-accordion__item__body {
  padding-left: 1em;
  padding-right: 1em;
}
.detail .smb-accordion__item__body {
  background: #fbfaf7;
}
@media (width < 640px) {
  .detail .smb-btn__label {
    font-size: 0.7em;
  }
}
.detail .detail__flow__advisor {
  text-align: center;
}

/* ===============================================
# header
=============================================== */
.l-header .p-header-sub-nav {
  padding-top: 0;
  padding-bottom: 0;
}
.l-header .p-header-sub-nav .c-navbar {
  gap: 0;
}
.l-header .p-header-sub-nav li a {
  padding: 0.5em 1em;
  background: #ffa400;
  color: #fff;
}
.l-header .p-header-sub-nav .menu-item-486 a {
  text-decoration: none;
  font-weight: bold;
}
.l-header .p-header-sub-nav .menu-item-487 a {
  background: #43d752;
  background: linear-gradient(180deg, rgb(67, 215, 82) 0%, rgb(9, 137, 53) 100%);
  text-decoration: none;
  font-weight: bold;
}
.l-header .p-global-nav ul li a {
  font-size: 18px !important;
  padding: 1em;
}
.l-header .nav__tel,
.l-header .nav__mail {
  display: flex;
  justify-content: center;
  align-items: center;
}
.l-header .l-1row-header__branding {
  padding-top: 0;
}

/* ===============================================
# cta
=============================================== */
/* ======================= cta ===*/
.cta__container {
  margin-top: 1rem;
  margin-bottom: 1rem;
  padding-top: 2rem;
  padding-bottom: 2rem;
  border-top: 1px dotted #fff;
  border-bottom: 1px dotted #fff;
}
@media (width < 640px) {
  .cta__container .c-container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
.cta__container .cta__text01 {
  font-size: 1.15em;
  color: #2b2b2b;
}
@media (width < 640px) {
  .cta__container .cta__text01 {
    font-size: clamp(0.85rem, 0.7rem + 0.75vw, 1rem);
  }
}
.cta__container .cta__text01 span {
  -webkit-text-emphasis: circle rgb(47, 111, 214);
          text-emphasis: circle rgb(47, 111, 214);
}
@media (width < 640px) {
  .cta__container .cta__text01 span {
    font-size: 1rem;
  }
}
.cta__container .cta__text-group {
  gap: 0;
}
@media (width < 1024px) {
  .cta__container .cta__text-group {
    flex-direction: column;
    gap: 0.3em;
  }
}
.cta__container .cta__text-group p {
  font-weight: bold;
  font-size: 1.2em;
  color: #333;
}
.cta__container .cta__text-group .wp-block-image {
  max-width: 360px;
  margin-right: 0.1em;
  padding-top: 0.1em;
}

/* ======================= long ===*/
.cta__long {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
@media (width < 640px) {
  .cta__long {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
.cta__long .cta__long__title__wrapper {
  position: relative;
}
.cta__long .cta__long__title__wrapper .cta__long__title {
  font-size: 2rem;
  font-weight: bold;
  color: rgb(47, 111, 214);
}
@media (width < 1024px) {
  .cta__long .cta__long__title__wrapper .cta__long__title {
    font-size: clamp(1.5rem, 0.664rem + 2.09vw, 2rem);
  }
}
@media (width < 640px) {
  .cta__long .cta__long__title__wrapper .cta__long__title {
    font-size: 1rem;
  }
}
.cta__long .cta__long__title__wrapper .cta__long__title span {
  font-size: 3rem;
  font-weight: bold;
  color: rgb(229, 83, 61);
}
@media (width < 1024px) {
  .cta__long .cta__long__title__wrapper .cta__long__title span {
    font-size: clamp(2.2rem, 0.863rem + 3.34vw, 3rem);
  }
}
@media (width < 640px) {
  .cta__long .cta__long__title__wrapper .cta__long__title span {
    font-size: 1.5rem;
  }
}
.cta__long .cta__long__title__wrapper .cta__long__deco01 {
  position: absolute;
  top: -2rem;
  left: 2rem;
  margin-top: 0;
}
@media (width < 1024px) {
  .cta__long .cta__long__title__wrapper .cta__long__deco01 {
    width: 3.5rem;
    top: -1.5rem;
    left: clamp(50px, 50px + (100vw - 640px) * 0.2347266881, 140px);
  }
}
@media (width < 640px) {
  .cta__long .cta__long__title__wrapper .cta__long__deco01 {
    width: 2.5rem;
    left: clamp(-20px, -20px + (100vw - 320px) * 0.4952978056, 138px);
  }
}
.cta__long .cta__long__text__wrapper {
  position: relative;
}
.cta__long .cta__long__text__wrapper .cta__long__deco02 {
  position: absolute;
  top: -4.7em;
  left: -1em;
  margin-top: 0;
}
@media (width < 1024px) {
  .cta__long .cta__long__text__wrapper .cta__long__deco02 {
    width: 5rem;
    left: clamp(-25px, -25px + (100vw - 640px) * 0.1958224543, 50px);
  }
}
@media (width < 640px) {
  .cta__long .cta__long__text__wrapper .cta__long__deco02 {
    display: none;
  }
}
@media (width < 1024px) {
  .cta__long .cta__long__text__wrapper p {
    font-size: clamp(0.8rem, 0.466rem + 0.84vw, 1rem);
  }
}

/* ======================= short ===*/
.cta__short {
  position: relative;
  padding: 1rem 0.5rem !important;
  outline: 2px solid rgb(47, 111, 214);
  outline-offset: 2px;
  background-image: linear-gradient(-45deg, transparent 10px, rgb(47, 111, 214) 10px);
  color: #fff;
  font-weight: bold;
  font-size: 1.5em;
  overflow: hidden;
  width: min(760px, 100vw);
}
@media (width < 1024px) {
  .cta__short {
    max-width: 90vw;
  }
}
@media (width < 1024px) {
  .cta__short .wp-block-image {
    width: 15rem;
  }
}
.cta__short p {
  margin-top: 0;
}
@media (width < 1024px) {
  .cta__short p {
    font-size: 1.3rem;
  }
}
.cta__short .wp-block-group {
  gap: 0.2em;
  justify-content: center;
  align-items: center;
}

.cta__short::before {
  position: absolute;
  content: "";
  right: 0px;
  bottom: 0px;
  border-width: 0px 0px 15px 15px;
  border-style: solid;
  border-color: transparent transparent transparent #a5d2e1;
  box-shadow: 0 0 5px #000;
}

.cta__short__deco {
  position: absolute;
  top: -3em;
  right: clamp(125px, 125px + (100vw - 1024px) * 0.5048076923, 335px);
}
@media (width < 1024px) {
  .cta__short__deco {
    width: 2rem;
    right: clamp(20px, 20px + (100vw - 640px) * 0.4166666667, 180px);
  }
}
@media (width < 640px) {
  .cta__short__deco {
    width: 1.5rem;
    right: 0;
    left: 0;
    top: clamp(106px, 151px + (100vw - 320px) * -0.1410670213, 151px);
  }
}

/* ===============================================
# お問い合わせフォーム
=============================================== */
.page-id-444 {
  font-size: 20px;
  /* ======================= phone ===*/
  /* ======================= form ===*/
  /* ======================= btn ===*/
}
@media (width < 640px) {
  .page-id-444 .smb-section__title {
    font-size: 1.3rem !important;
  }
}
.page-id-444 .l-contents__inner {
  padding-top: 0;
}
.page-id-444 .contact__phone__section .smb-section__body {
  margin-top: 1em;
}
.page-id-444 .contact__phone__section .contact__btn__tel .smb-btn__label {
  font-size: 1.8rem;
}
@media (width < 640px) {
  .page-id-444 .contact__phone__section .contact__btn__tel .smb-btn__label {
    font-size: 0.8rem;
  }
}
.page-id-444 .smf-form--business {
  border-radius: 20px;
  background: #fff;
}
.page-id-444 .smf-form--business .smf-item__col--label {
  background: #f3eee8 !important;
}
.page-id-444 .smf-form--business .smf-item__col--label .smf-item__label__text {
  color: #7a5a3a !important;
}
.page-id-444 .smf-form--business .wp-block-snow-monkey-forms-item:nth-of-type(1) {
  border-radius: 20px 20px 0 0;
}
.page-id-444 .smf-form--business .wp-block-snow-monkey-forms-item:nth-of-type(1) .smf-item__col--label {
  border-radius: 20px 0 0 0;
}
@media (width < 640px) {
  .page-id-444 .smf-form--business .wp-block-snow-monkey-forms-item:nth-of-type(1) .smf-item__col--label {
    border-radius: 20px 20px 0 0;
  }
}
.page-id-444 .smf-form--business .wp-block-snow-monkey-forms-item:nth-of-type(5) {
  border-radius: 0 0 20px 20px;
}
.page-id-444 .smf-form--business .wp-block-snow-monkey-forms-item:nth-of-type(5) .smf-item__col--label {
  border-radius: 0 0 0 20px;
}
@media (width < 640px) {
  .page-id-444 .smf-form--business .wp-block-snow-monkey-forms-item:nth-of-type(5) .smf-item__col--label {
    border-radius: 0;
  }
}
@media (width < 640px) {
  .page-id-444 {
    font-size: 18px;
  }
}
@media (width < 640px) {
  .page-id-444 .c-container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
@media (width < 640px) {
  .page-id-444 .smf-item__col {
    padding: 1.5em;
  }
}
.page-id-444 .smb-section__title {
  color: #333;
}
.page-id-444 .smf-progress-tracker__item[aria-current=true] .smf-progress-tracker__item__number {
  background-color: #7a5a3a;
  font-weight: 700;
}
.page-id-444 .smf-progress-tracker__item[aria-current=true] .smf-progress-tracker__item__text {
  color: var(--_color-text);
  font-weight: 700;
  color: #333;
}
.page-id-444 .smf-button-control__control {
  background: #1f6f4d;
  color: #fff;
  font-weight: bold;
}

/* ===============================================
# 詳細ページ
=============================================== */
@media (width < 640px) {
  .page-id-450 .c-container,
.page-id-458 .c-container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

/* ===============================================
# service
=============================================== */
.service {
  padding-top: 0;
  padding-bottom: 2rem;
  margin-top: 0;
}
@media (width < 640px) {
  .service .c-container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
.service .wp-container-core-columns-is-layout-28f84493 {
  gap: 0;
}
@media (width < 640px) {
  .service .wp-container-core-columns-is-layout-28f84493 {
    flex-direction: column;
  }
}
.service .section__title .wp-block-group {
  gap: 0;
}
.service .section__title .wp-block-group .wp-block-image {
  width: max(450px, 35vw);
}
.service .service__text {
  font-size: 1.2rem;
}
@media (width < 640px) {
  .service .service__text {
    font-size: clamp(0.7rem, 0.399rem + 1.5vw, 1rem);
  }
}
.service .service__text strong {
  font-size: 1.35rem;
}
@media (width < 640px) {
  .service .service__text strong {
    font-size: clamp(1rem, 0.498rem + 2.51vw, 1.5rem);
  }
}

/* ===============================================
# status
=============================================== */
@media (width < 640px) {
  .status .c-container {
    padding-left: 1em;
    padding-right: 1em;
  }
}
.status .smb-section__contents-wrapper {
  position: relative;
}
.status .status__title-sub {
  font-size: 1.2rem;
  font-weight: bold;
  background-color: rgb(229, 83, 61);
  color: #fff;
}
@media (width < 1024px) {
  .status .status__title-sub {
    font-size: 1.1em;
  }
}
@media (width < 640px) {
  .status .status__title-sub {
    font-size: 0.85em;
  }
}
.status .status__title-img {
  position: absolute;
  top: -2em;
  right: -0.5em;
  margin-top: 0;
}
@media (width < 640px) {
  .status .status__title-img {
    width: 3rem;
    top: -1em;
    right: -0.8em;
  }
}

/* ===============================================
# episode
=============================================== */
.episode {
  padding-top: 2rem;
}
@media (width < 640px) {
  .episode {
    padding-top: 0;
  }
}
.episode .section__title {
  position: relative;
}
.episode .section__title-sub__wrapper {
  position: absolute;
  top: -1.3em;
  left: clamp(75px, 75px + (100vw - 1024px) * 0.3966346154, 240px);
  z-index: 10;
}
@media (width < 1024px) {
  .episode .section__title-sub__wrapper {
    top: -0.5em;
    left: clamp(0px, 0px + (100vw - 640px) * 0.4569190601, 175px);
  }
}
@media (width < 640px) {
  .episode .section__title-sub__wrapper {
    top: 0.3em;
    left: clamp(0px, 0px + (100vw - 320px) * 0.2194369627, 70px);
  }
}
@media (width < 1024px) {
  .episode .section__title-sub__wrapper .section__title-sub {
    font-size: 1rem;
    padding: 0.5em;
  }
}
@media (width < 640px) {
  .episode .section__title-sub__wrapper .section__title-sub {
    font-size: 0.7rem;
  }
}
.episode .episode__item__wrapper {
  width: min(680px, 65vw);
  margin-top: 3rem;
}
@media (width < 1024px) {
  .episode .episode__item__wrapper {
    width: min(650px, 80vw);
  }
}
.episode .episode__item__wrapper .episode__item {
  position: relative;
  border: 2px solid #333;
  overflow: visible;
  padding-left: 0;
  padding-right: 0;
}
@media (width < 640px) {
  .episode .episode__item__wrapper .episode__item {
    padding-left: 1em;
    padding-right: 1em;
  }
}
.episode .episode__item__wrapper .episode__item .smb-items__item__body {
  padding-top: 3rem;
}
@media (width < 640px) {
  .episode .episode__item__wrapper .episode__item .smb-items__item__body {
    padding-left: 0;
    padding-right: 0;
  }
}
.episode .episode__item__wrapper .episode__item__title {
  position: absolute !important;
  top: 24px;
  left: -40px !important; /* ←はみ出し量 */
  right: -40px !important; /* ←はみ出し量 */
  margin: 0 !important;
  display: block !important;
  width: auto !important;
  max-width: none !important; /* ★これが無いと “内側幅で止まる” ことがある */
  box-sizing: border-box;
  text-align: center;
  padding: 18px 24px;
  z-index: 10;
  margin: 0.5rem;
  padding: 1rem;
  border-radius: 10px;
  box-shadow: 0 0 0 10px #ffe2aa;
  border: 2px dashed #ffa400;
}
@media (width < 640px) {
  .episode .episode__item__wrapper .episode__item__title {
    font-size: 0.85rem;
    padding: 0.5rem;
    left: -30px !important;
    right: -30px !important;
  }
}
.episode .episode__item__wrapper .wp-block-snow-monkey-blocks-list {
  margin-top: 0;
}
@media (width < 640px) {
  .episode .episode__item__wrapper .wp-block-snow-monkey-blocks-list li {
    font-size: 0.7rem;
  }
}
.episode .episode__item__wrapper .wp-block-snow-monkey-blocks-list li .sme-text-color {
  font-weight: 900;
}
@media (width < 640px) {
  .episode .episode__item__wrapper .wp-block-snow-monkey-blocks-list li .sme-text-color {
    font-size: 0.7rem;
  }
}

/* ===============================================
# reason
=============================================== */
.reason {
  padding-top: 2rem;
}
@media (width < 640px) {
  .reason .c-container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
.reason .reason__item {
  margin-top: 3rem;
}
@media (width < 640px) {
  .reason .reason__item {
    margin-top: 2rem;
  }
}
.reason .reason__item .wp-block-snow-monkey-blocks-list li .sme-text-color {
  font-weight: 900;
}
@media (width < 640px) {
  .reason .reason__item .wp-block-snow-monkey-blocks-list li {
    font-size: 0.7rem;
  }
}
.reason .smb-media-text__title {
  --_font-size-level: 2 !important;
  border-bottom: 1px dotted #d4d4d4;
  padding-top: 0.3em;
  padding-bottom: 0.3em;
  padding-left: 0.3em;
  background: #f2f2f2;
}
@media (width < 640px) {
  .reason .smb-media-text__title {
    font-size: 1rem !important;
  }
}
.reason .smb-media-text__title::first-letter {
  border-radius: 0.5rem;
  background-color: #ffb733;
  color: white;
  padding-left: 0.3em;
  padding-right: 0.3em;
}
@media (width < 1024px) {
  .reason .smb-media-text__figure {
    width: min(13rem, 45vw);
    margin: 0 auto;
  }
}

/* ===============================================
# doubt
=============================================== */
.doubt {
  padding-top: 0;
}
@media (width < 640px) {
  .doubt .c-container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
.doubt .smb-balloon__figure {
  width: 100px;
  height: auto;
}
.doubt .doubt__item {
  background-color: #f2f2f2;
  position: relative;
  margin-top: 3rem;
}
@media (width < 640px) {
  .doubt .doubt__item {
    padding: 0.8rem;
  }
}
@media (width < 640px) {
  .doubt .doubt__item .smb-balloon {
    flex-direction: row !important;
  }
}
@media (width < 640px) {
  .doubt .doubt__item .smb-balloon__body {
    padding: 1rem;
  }
}
@media (width < 640px) {
  .doubt .doubt__item .smb-balloon__body::after {
    left: -7px;
    top: calc(80% - 5px);
    transform: rotate(27deg);
  }
}
@media (width < 640px) {
  .doubt .doubt__item .smb-balloon__body::before {
    left: calc(-7px - var(--smb-balloon--border-width) * 2);
    top: calc(80% - 5px - var(--smb-balloon--border-width));
    transform: rotate(27deg);
  }
}
@media (width < 640px) {
  .doubt .doubt__item p {
    font-size: 0.7rem;
  }
}
.doubt .doubt__item .doubt__item__deco {
  position: absolute;
  top: 0;
  left: -1rem;
  transform: rotate(-15deg);
  font-size: 1.2rem;
  font-weight: bold;
  background: #6b4e3d;
  color: #fff;
  padding: 0.3em 1.5em;
  border-radius: 20px;
}
@media (width < 640px) {
  .doubt .doubt__item .doubt__item__deco {
    font-size: 1rem;
    padding: 0.3em 1em;
  }
}
.doubt .doubt__item .doubt__item__text {
  position: relative;
}
@media (width < 640px) {
  .doubt .doubt__item .doubt__item__text {
    margin-top: 0rem;
  }
}
.doubt .doubt__item .doubt__item__text::before {
  position: absolute;
  content: "A";
  top: 0;
  left: 0;
  font-size: 2rem;
  font-weight: bold;
  color: #ffb733;
}

/* ===============================================
# solutions
=============================================== */
.solutions {
  /*detail*/
}
@media (width < 640px) {
  .solutions .c-container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
.solutions .detail .is-style-snow-monkey-143920 .wp-block-snow-monkey-blocks-step-item-free {
  background: #f7f7f7;
  padding: 0.5em;
  /*smb-step__item__title*/
}
@media (width < 640px) {
  .solutions .detail .is-style-snow-monkey-143920 .wp-block-snow-monkey-blocks-step-item-free .smb-step__item__title {
    gap: 0.5em;
  }
}
@media (width < 640px) and (width < 640px) {
  .solutions .detail .is-style-snow-monkey-143920 .wp-block-snow-monkey-blocks-step-item-free .smb-step__item__title span {
    font-size: 0.7rem;
  }
}
.solutions .detail .is-style-snow-monkey-143920 .wp-block-snow-monkey-blocks-step-item-free .has-white-background-color {
  padding: 1rem;
}
@media (width < 640px) {
  .solutions .is-style-snow-monkey-143920 .smb-step__item__title::after {
    display: none;
  }
}

/* ===============================================
# selection
=============================================== */
@media (width < 640px) {
  .selection .c-container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
.selection .section__title {
  margin-top: 0;
  padding-top: 2.3rem !important;
  position: relative;
}
.selection .selection__title-deco {
  padding: 0.5em;
  border-radius: 50px;
  position: absolute;
  top: -1.8rem;
  left: 0;
  right: 0;
  z-index: 10;
  width: 450px;
}
@media (width < 640px) {
  .selection .selection__title-deco {
    width: 280px;
    font-size: 1rem;
    top: -1rem;
  }
}
.selection .selection__item__wrapper {
  width: min(680px, 65vw);
  margin-top: 7rem;
}
@media (width < 1024px) {
  .selection .selection__item__wrapper {
    width: min(650px, 80vw);
  }
}
.selection .selection__item__wrapper .selection__item {
  position: relative;
  border: 5px solid #f2e6d8;
  border-radius: 20px;
}
.selection .selection__item__wrapper .selection__item:not(:first-child) {
  margin-top: 4rem;
}
.selection .selection__item__wrapper .selection__item .selection__service {
  margin-top: 0 !important;
}
@media (width < 640px) {
  .selection .selection__item__wrapper .selection__item .selection__service {
    padding-left: 0;
    padding-right: 0;
  }
}
.selection .selection__item__wrapper .selection__item .selection__service .wp-block-heading {
  color: #7a5a3a;
}
@media (width < 640px) {
  .selection .selection__item__wrapper .selection__item .selection__service .wp-block-heading {
    font-size: 1rem;
  }
}
.selection .selection__item__wrapper .selection__item .selection__service .wp-block-snow-monkey-blocks-list {
  margin-top: 1em;
}
@media (width < 640px) {
  .selection .selection__item__wrapper .selection__item .selection__service .wp-block-snow-monkey-blocks-list {
    font-size: 0.7rem;
  }
}
.selection .selection__item__wrapper .selection__item__deco {
  position: absolute;
  top: -4.7rem;
  left: -2.7em;
}
@media (width < 640px) {
  .selection .selection__item__wrapper .selection__item__deco {
    top: -3rem;
    left: -1.3rem;
    width: 4rem;
  }
}
@media (width < 640px) {
  .selection .selection__item__wrapper .smb-items__item__body {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
}
.selection .selection__item__wrapper .selection__item__title {
  border-radius: 50px;
}
@media (width < 640px) {
  .selection .selection__item__wrapper .selection__item__title {
    font-size: 0.85rem;
  }
}
.selection .selection__item__wrapper .selection__item__text {
  border-top: 3px dotted #f6a623;
  padding-top: 0.5em;
}
@media (width < 640px) {
  .selection .selection__item__wrapper .selection__item__text {
    font-size: 0.7rem;
  }
}

/* ===============================================
# recommend
=============================================== */
.recommend .c-container {
  padding-left: 1rem;
  padding-right: 1rem;
}
.recommend .section__title {
  position: relative;
}
.recommend .section__title__deco {
  position: absolute;
  top: -1em;
  right: clamp(100px, 100px + (100vw - 1024px) * 0.4086538462, 270px);
}
@media (width < 1024px) {
  .recommend .section__title__deco {
    right: clamp(5px, 5px + (100vw - 640px) * 0.4960893855, 195px);
    top: -2rem;
    width: 4.5rem;
  }
}
@media (width < 640px) {
  .recommend .section__title__deco {
    right: 0;
    left: 0;
    top: -6rem;
    width: 3rem;
  }
}
.recommend .recommend__item__wrapper {
  position: relative;
}
@media (width < 1024px) {
  .recommend .recommend__item__wrapper {
    width: 80vw;
  }
}
.recommend .recommend__item__wrapper .recommend__item__deco {
  position: absolute;
  top: -1.5em;
  left: -2em;
  z-index: 10;
  background: rgb(229, 83, 61);
  color: #fff;
  transform: rotate(-11deg);
  padding: 0.5em 1em;
}
@media (width < 640px) {
  .recommend .recommend__item__wrapper .recommend__item__deco {
    left: -1em;
    font-weight: bold;
  }
}
.recommend .recommend__item {
  position: relative;
  padding: 1rem;
  border-top: 3px solid #e6a24a;
  background: #f4f1ed;
  color: #212121;
  overflow: hidden;
  margin-top: 3.5rem;
}
@media (width < 640px) {
  .recommend .recommend__item {
    gap: 1em;
  }
}
@media (width < 640px) {
  .recommend .recommend__item .wp-block-image {
    width: 3.5rem;
  }
}
.recommend .recommend__item::before {
  position: absolute;
  content: "";
  right: 0px;
  bottom: 0px;
  border-width: 0px 0px 15px 15px;
  border-style: solid;
  border-color: transparent transparent transparent #e6a24a;
  box-shadow: 0 0 5px #000;
}
@media (width < 640px) {
  .recommend h3 {
    font-size: 1rem;
  }
}
@media (width < 640px) {
  .recommend p {
    font-size: 0.7rem;
  }
}

/* ===============================================
# specialists
=============================================== */
.specialists {
  padding-top: 0;
}
@media (width < 640px) {
  .specialists .c-container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
.specialists .specialists__item {
  margin-top: 3rem;
}
.specialists .specialists__item .specialists__item__title {
  border-bottom: 1px dotted #e6a24a;
}
@media (width < 640px) {
  .specialists .specialists__item .specialists__item__title {
    font-size: 1rem;
  }
}
.specialists .specialists__item .specialists__item__wrapper {
  margin-top: 0.8em;
}
@media (width < 640px) {
  .specialists p {
    font-size: 0.7rem;
  }
}

/* ===============================================
# faq
=============================================== */
@media (width < 640px) {
  .faq .c-container {
    padding-left: 0.8rem;
    padding-right: 0.8rem;
  }
}
.faq .c-container .wp-block-snow-monkey-blocks-accordion {
  /*smb-accordion__item__body*/
}
@media (width < 640px) {
  .faq .c-container .wp-block-snow-monkey-blocks-accordion {
    padding-left: 0.8rem;
    padding-right: 0.8rem;
  }
}
@media (width < 640px) {
  .faq .c-container .wp-block-snow-monkey-blocks-accordion .smb-accordion__item__title__label {
    font-size: 0.75rem;
  }
}
@media (width < 640px) {
  .faq .c-container .wp-block-snow-monkey-blocks-accordion .smb-accordion__item__body p {
    font-size: 0.75rem;
  }
}

/* ===============================================
# voc
=============================================== */
@media (width < 640px) {
  .voc .c-container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
@media (width < 640px) {
  .voc .c-container .wp-block-columns {
    padding: 1rem;
  }
}
@media (width < 640px) {
  .voc .c-container .wp-block-columns p {
    font-size: 0.7rem;
  }
}
.voc .c-container .voc__item .voc__item__title {
  font-size: 1rem;
}
.voc .c-container .voc__item .voc__item__text {
  margin-top: 0.8em;
  font-size: 0.8em;
  padding: 1em 1em 1em 1em;
}
.voc .c-container .voc__item .voc__item__text p {
  margin-top: 1em;
}
.voc .c-container .voc__item .voc__item__text p:first-of-type {
  margin-top: 0;
}

/* ===============================================
# footer
=============================================== */
.page-id-450 .wp-block-snow-monkey-blocks-section,
.page-id-458 .wp-block-snow-monkey-blocks-section {
  padding-top: 8rem;
}
.page-id-450 .smb-section__title,
.page-id-458 .smb-section__title {
  font-size: 32px;
}
.page-id-450 h2,
.page-id-458 h2 {
  font-size: 26px;
}
.page-id-450 h3,
.page-id-458 h3 {
  font-size: 20px;
}
.page-id-450 p,
.page-id-458 p {
  font-size: 16px;
}
.page-id-450 ul li,
.page-id-458 ul li {
  font-size: 16px;
}
.page-id-450 .smb-information__item__label,
.page-id-458 .smb-information__item__label {
  font-size: 18px;
  font-weight: bold;
}

/* ======================= footer ===*/
.l-footer h2 {
  font-size: 16px !important;
}
.l-footer p {
  font-size: 14px !important;
}
.l-footer p a {
  text-decoration: none !important;
  color: #333 !important;
}
.l-footer ul li {
  font-size: 14px !important;
}
.l-footer ul li a {
  text-decoration: none;
  color: #333;
}
.l-footer .l-footer-widget-area {
  background: #f2eee9;
}

@media (width < 640px) {
  .c-copyright .c-fluid-container {
    padding: 0;
  }
}

/* ======================= sp-footer ===*/
.p-footer-sticky-nav .menu-item-486 {
  background: #ffa400 !important;
}
.p-footer-sticky-nav .menu-item-487 {
  background: #43d752;
  background: linear-gradient(180deg, rgb(67, 215, 82) 0%, rgb(9, 137, 53) 100%);
}
.p-footer-sticky-nav p {
  font-size: 0.8rem;
  font-weight: bold;
}
.p-footer-sticky-nav .nav__mail,
.p-footer-sticky-nav .nav__tel {
  display: flex;
  justify-content: center;
  align-items: center;
}
.p-footer-sticky-nav .fa-envelope,
.p-footer-sticky-nav .fa-phone {
  margin-right: 0.3rem;
  font-size: 1rem;
  padding: 0.5rem 0;
}
/*# sourceMappingURL=style.css.map */