@charset "UTF-8";
/* Snow Monkey のロゴ位置だけを調整 */
.c-site-branding {
  margin-left: -10%;
}
@media (min-width: 768px) {
  .c-site-branding {
    margin-left: -5%;
  }
}

.c-site-branding__title {
  width: auto !important;
  display: flex;
  align-items: center;
}
.c-site-branding__title .custom-logo {
  display: block;
  height: 60px;
  width: auto !important;
}
@media (min-width: 768px) {
  .c-site-branding__title .custom-logo {
    height: 60px;
  }
}
@media (min-width: 1024px) {
  .c-site-branding__title .custom-logo {
    height: 60px;
  }
}
@media (min-width: 425px) {
  .c-site-branding__title .custom-logo {
    height: 48px;
  }
}

.c-hamburger-btn__label::after {
  display: none;
}

.l-header__content {
  background-color: rgba(255, 255, 255, 0);
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1000;
  transition: background-color 0.3s ease;
}
.l-header__content.scrolled {
  background-color: #fff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}
.l-header__content.scrolled span {
  color: #4CAF50;
}
.l-header__content span {
  position: relative;
  color: #FFFFFF;
  text-decoration: none;
  transition: transform 0.6s ease, top 0.6s ease;
}
.l-header__content span::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background-color: #FFC107;
  transition: width 0.3s ease;
}
@media (min-width: 1024px) {
  .l-header__content span:hover {
    color: #FFC107;
  }
  .l-header__content span:hover::after {
    width: 100%;
  }
}

.c-hamburger-btn[aria-expanded=true] > .c-hamburger-btn__bars > .c-hamburger-btn__bar:first-of-type {
  transform: rotate(50deg);
  top: 8px;
}

.c-hamburger-btn[aria-expanded=true] > .c-hamburger-btn__bars > .c-hamburger-btn__bar:nth-of-type(3) {
  transform: rotate(-50deg);
  top: 6px;
}

/* 標準時のボタンのスタイル */
.header-button {
  display: inline-block;
  padding: 10px 15px;
  background-color: #FFC107;
  color: #FFFFFF;
  text-align: center;
  border-radius: 50px;
  border: 2px solid #FFC107;
  text-decoration: none;
  font-size: 1rem;
}
.header-button:hover {
  background-color: #fff;
  color: #FFC107;
  transition: all 0.3s ease;
}

.c-row .c-row__col {
  margin-bottom: var(--_gap);
  /* padding-left: calc(var(--_gap) * .5); */
  /* padding-right: calc(var(--_gap) * .5); */
}

.c-row > .c-row__col {
  margin-bottom: var(--_gap);
  padding-right: calc(var(--_gap) * 0.5);
}

.p-search-form {
  display: none;
}

.smb-section__title {
  color: #4CAF50;
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.smb-section__lede {
  --_font-size-level: -1;
  font-size: var(--_font-size);
  line-height: var(--_line-height);
  margin-top: -30px;
}

#works {
  background-color: #4CAF50;
}

.work-section {
  background-color: #F5F5F5;
  padding-top: 50px;
  padding-bottom: 50px;
}

.wp-block-snow-monkey-blocks-pricing-table-item .smb-pricing-table__item__title {
  border: none;
  border-radius: 20px;
  padding-block: 5px;
  color: #fff;
  font-size: 20px;
  text-align: center;
  margin-bottom: 20px;
}
.wp-block-snow-monkey-blocks-pricing-table-item:nth-of-type(1) .smb-pricing-table__item__title {
  background-color: #A5D6A7;
}
.wp-block-snow-monkey-blocks-pricing-table-item:nth-of-type(2) .smb-pricing-table__item__title {
  background-color: #4CAF50;
}
.wp-block-snow-monkey-blocks-pricing-table-item:nth-of-type(3) .smb-pricing-table__item__title {
  background-color: #2E7D32;
}

.wp-block-snow-monkey-blocks-pricing-table-item .smb-pricing-table__item__price {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 20px;
}
.wp-block-snow-monkey-blocks-pricing-table-item:nth-of-type(1) .smb-pricing-table__item__price {
  color: #A5D6A7;
}
.wp-block-snow-monkey-blocks-pricing-table-item:nth-of-type(2) .smb-pricing-table__item__price {
  color: #4CAF50;
}
.wp-block-snow-monkey-blocks-pricing-table-item:nth-of-type(3) .smb-pricing-table__item__price {
  color: #2E7D32;
}

/*snow monkey blocksステップ*/
.smb-step__item__number {
  overflow: visible;
}

.smb-step__item .smb-step__item__number {
  position: relative;
}
.smb-step__item .smb-step__item__number::after {
  position: absolute;
  inset: auto auto 100%;
  color: #4CAF50;
  background-color: #fff;
  padding-top: 2px;
  margin-bottom: 3px;
}
.smb-step__item:nth-of-type(1) .smb-step__item__number::after {
  content: "STEP1";
}
.smb-step__item:nth-of-type(2) .smb-step__item__number::after {
  content: "STEP2";
}
.smb-step__item:nth-of-type(3) .smb-step__item__number::after {
  content: "STEP3";
}
.smb-step__item:nth-of-type(4) .smb-step__item__number::after {
  content: "STEP4";
}
.smb-step__item:nth-of-type(5) .smb-step__item__number::after {
  content: "STEP5";
}
.smb-step__item:nth-of-type(6) .smb-step__item__number::after {
  content: "STEP6";
}

.smb-step__body::before {
  position: absolute;
  content: "";
  border-left: 2px dotted #4CAF50;
}

.smb-step__item .smb-step__item__number {
  background-repeat: no-repeat;
  background-position: center;
  background-size: auto 80%;
  background-color: #fff;
  border: 2px solid #4CAF50;
}
.smb-step__item:nth-of-type(1) .smb-step__item__number {
  background-image: url("/wp-content/uploads/2025/11/吹き出しのアイコン.png");
}
.smb-step__item:nth-of-type(2) .smb-step__item__number {
  background-image: url("/wp-content/uploads/2025/11/やわらかいタッチの電卓アイコン.png");
}
.smb-step__item:nth-of-type(3) .smb-step__item__number {
  background-image: url("/wp-content/uploads/2025/11/フリーの握手アイコン.png");
}
.smb-step__item:nth-of-type(4) .smb-step__item__number {
  background-image: url("/wp-content/uploads/2025/11/プログラムアイコン.png");
}
.smb-step__item:nth-of-type(5) .smb-step__item__number {
  background-image: url("/wp-content/uploads/2025/11/チェックボックスアイコン.png");
}
.smb-step__item:nth-of-type(6) .smb-step__item__number {
  background-image: url("/wp-content/uploads/2025/11/ホームページのアイコン.png");
}

.smb-step__item__title {
  margin-bottom: 0;
}
.smb-step__item__title span {
  flex: 1 1 auto;
  position: relative;
  bottom: 19px;
  left: 30px;
  font-size: 1.25rem;
}

.smb-step__item__number::before {
  content: none !important;
}

.smb-media-text__figure img {
  border-radius: 20%;
}

.smf-action .smf-button-control__control[data-action=confirm],
.smf-action .smf-button-control__control[data-action=complete] {
  font-size: 1.2em;
  background-color: #FFC107;
  background-image: none;
  color: #FFFFFF;
  border-color: #FFC107;
  transition: box-shadow 0.25s;
  border-radius: 80px;
  display: inline-block;
  letter-spacing: 1px;
  line-height: 1.5;
  margin: 0;
  min-width: 35%;
  padding: 1em 1.5em;
  position: relative;
  text-decoration: none;
  width: auto;
}
.smf-action .smf-button-control__control[data-action=confirm]:hover,
.smf-action .smf-button-control__control[data-action=complete]:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1), 0 12px 24px -12px rgba(0, 0, 0, 0.2);
  background-color: #FFFFFF;
  color: #FFC107;
}
.smf-action .smf-button-control__control[data-action=back] {
  border-radius: 30px;
  padding: 10px 40px;
  margin-bottom: 1em;
}

.c-page-top {
  background-color: #FFC107;
}

.c-copyright {
  background-color: #4CAF50;
}/*# sourceMappingURL=style.css.map */