@charset "UTF-8";
* {
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  font-family: "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 400;
  line-height: 1.6;
  color: #333;
  background: url(../images/bg.png);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0 0 24px 0;
  font-weight: 700;
  line-height: 1.4;
  color: #333;
}

h1 {
  font-size: 2.5rem;
}
@media (calc(768px - 1px)) {
  h1 {
    font-size: 2.25rem;
  }
}

h2 {
  font-size: 2rem;
}
@media (calc(768px - 1px)) {
  h2 {
    font-size: 1.8rem;
  }
}

h3 {
  font-size: 1.5rem;
}
@media (calc(768px - 1px)) {
  h3 {
    font-size: 1.35rem;
  }
}

h4 {
  font-size: 1.25rem;
}
@media (calc(768px - 1px)) {
  h4 {
    font-size: 1.125rem;
  }
}

h5 {
  font-size: 1.125rem;
}
@media (calc(768px - 1px)) {
  h5 {
    font-size: 1.0125rem;
  }
}

h6 {
  font-size: 1rem;
}
@media (calc(768px - 1px)) {
  h6 {
    font-size: 0.9rem;
  }
}

p {
  margin: 0 0 24px 0;
}

a {
  color: #c41e3a;
  text-decoration: none;
  transition: color 0.3s ease;
}
a:hover {
  color: #a01828;
}

strong, b {
  font-weight: 700;
}

em, i {
  font-style: italic;
}

small {
  font-size: 14px;
}

ul, ol {
  margin: 0 0 24px 0;
  padding-left: 32px;
}

li {
  margin-bottom: 8px;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 24px;
}

th, td {
  padding: 16px;
  text-align: left;
  border-bottom: 1px solid #eee;
}

th {
  font-weight: 600;
  background-color: #f8f8f8;
}

input,
textarea,
select,
button {
  font-family: inherit;
  font-size: inherit;
}

button {
  cursor: pointer;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
@media (calc(768px - 1px)) {
  .container {
    padding: 0 16px;
  }
}

.l-header {
  background: #201E1F;
  box-shadow: none;
  position: sticky;
  top: 0;
  z-index: 1020;
}
.l-header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  max-width: 1200px;
  margin: 0 auto;
}
@media (calc(768px - 1px)) {
  .l-header__inner {
    flex-direction: column;
    gap: 16px;
    padding: 16px;
  }
}
.l-header__logo a {
  display: block;
}
.l-header__logo a img {
  height: 60px;
  width: auto;
}
@media (calc(768px - 1px)) {
  .l-header__logo a img {
    height: 50px;
  }
}
.l-header__nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 32px;
}
@media (calc(768px - 1px)) {
  .l-header__nav ul {
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
  }
}
.l-header__nav li {
  margin: 0;
}
.l-header__nav a {
  color: #fff;
  font-weight: 500;
  transition: color 0.3s ease;
  padding: 8px 0;
  display: block;
}
.l-footer {
  background: #2c2c2c;
  color: #fff;
  padding: 48px 0 24px;
}
.l-footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.l-footer__content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 48px;
  margin-bottom: 32px;
}
@media (calc(768px - 1px)) {
  .l-footer__content {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}
.l-footer__section h3 {
  color: #c41e3a;
  font-size: 18px;
  margin-bottom: 24px;
}
.l-footer__section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.l-footer__section li {
  margin-bottom: 16px;
}
.l-footer__section a {
  color: #fff;
  transition: color 0.3s ease;
}
.l-footer__section a:hover {
  color: #c41e3a;
}
.l-footer__section p {
  margin-bottom: 16px;
  line-height: 1.8;
}
.l-footer__bottom {
  text-align: center;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #999;
  font-size: 14px;
}

.l-sidebar__widget {
  background: #fff;
  border-radius: 8px;
  padding: 24px;
  margin-bottom: 24px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
.l-sidebar__widget:last-child {
  margin-bottom: 0;
}
.l-sidebar__widget-title {
  font-size: 18px;
  font-weight: 700;
  color: #c41e3a;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 2px solid #c41e3a;
}
.l-sidebar__widget-content ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.l-sidebar__widget-content li {
  margin-bottom: 16px;
  padding-left: 16px;
  position: relative;
}
.l-sidebar__widget-content li::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 6px;
  height: 6px;
  background: #c41e3a;
  border-radius: 50%;
}
.l-sidebar__widget-content a {
  color: #333;
  transition: color 0.3s ease;
}
.l-sidebar__widget-content a:hover {
  color: #c41e3a;
}

.c-btn {
  display: inline-block;
  padding: 16px 48px;
  background: #c41e3a;
  color: #fff;
  border: none;
  border-radius: 50px;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  line-height: 1.5;
}
.c-btn:hover {
  background: #a01828;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(196, 30, 58, 0.3);
}
.c-btn--sm {
  padding: 8px 24px;
  font-size: 14px;
}
.c-btn--lg {
  padding: 24px 64px;
  font-size: 18px;
}
.c-btn--outline {
  background: transparent;
  border: 2px solid #c41e3a;
  color: #c41e3a;
}
.c-btn--outline:hover {
  background: #c41e3a;
  color: #fff;
}
.c-btn--ghost {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
}
.c-btn--ghost:hover {
  background: #fff;
  color: #c41e3a;
}
.c-btn--secondary {
  background: #666;
}
.c-btn--secondary:hover {
  background: #333;
}
.c-btn--disabled, .c-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}
.c-btn--block {
  display: block;
  width: 100%;
}

.c-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}
.c-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.15);
}
.c-card__image {
  position: relative;
  overflow: hidden;
}
.c-card__image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.c-card__image:hover img {
  transform: scale(1.1);
}
.c-card__badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: #c41e3a;
  color: #fff;
  padding: 8px 16px;
  border-radius: 5px;
  font-size: 14px;
  font-weight: 600;
}
.c-card__content {
  padding: 24px;
}
.c-card__title {
  font-size: 18px;
  font-weight: 700;
  color: #c41e3a;
  margin-bottom: 16px;
}
.c-card__title a {
  color: #c41e3a;
  transition: color 0.3s ease;
}
.c-card__title a:hover {
  color: #a01828;
}
.c-card__text {
  color: #666;
  line-height: 1.8;
  margin-bottom: 24px;
}
.c-card__meta {
  display: flex;
  gap: 24px;
  font-size: 14px;
  color: #999;
  border-top: 1px solid #eee;
  padding-top: 16px;
}
.c-card__meta span {
  display: flex;
  align-items: center;
  gap: 8px;
}
.c-card--horizontal {
  display: flex;
}
@media (calc(768px - 1px)) {
  .c-card--horizontal {
    flex-direction: column;
  }
}
.c-card--horizontal .c-card__image {
  flex: 0 0 40%;
}
.c-card--horizontal .c-card__image img {
  height: 100%;
}
.c-card--horizontal .c-card__content {
  flex: 1;
}

.c-form__group {
  margin-bottom: 24px;
}
.c-form__group:last-child {
  margin-bottom: 0;
}
.c-form__label {
  display: block;
  font-weight: 600;
  color: #333;
  margin-bottom: 8px;
}
.c-form__label--required::after {
  content: "*";
  color: #c41e3a;
  margin-left: 8px;
}
.c-form__input, .c-form__textarea, .c-form__select {
  width: 100%;
  padding: 16px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 16px;
  font-family: "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.c-form__input:focus, .c-form__textarea:focus, .c-form__select:focus {
  outline: none;
  border-color: #c41e3a;
  box-shadow: 0 0 0 3px rgba(196, 30, 58, 0.1);
}
.c-form__input::placeholder, .c-form__textarea::placeholder, .c-form__select::placeholder {
  color: #999;
}
.c-form__textarea {
  min-height: 150px;
  resize: vertical;
}
.c-form__select {
  background: #fff;
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 48px;
}
.c-form__help {
  display: block;
  margin-top: 8px;
  font-size: 14px;
  color: #999;
}
.c-form__error {
  display: block;
  margin-top: 8px;
  font-size: 14px;
  color: #c41e3a;
}
.c-form__check, .c-form__radio {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.c-form__check input, .c-form__radio input {
  margin-top: 0.25em;
  flex-shrink: 0;
}
.c-form__check label, .c-form__radio label {
  font-weight: 400;
  margin: 0;
  cursor: pointer;
}
.c-form__submit {
  text-align: center;
  margin-top: 32px;
}
.c-form--inline {
  display: flex;
  gap: 16px;
}
.c-form--inline .c-form__group {
  flex: 1;
  margin-bottom: 0;
}

.c-heading {
  text-align: center;
  margin-bottom: 64px;
}
.c-heading__main {
  font-size: 2.5rem;
  color: #c41e3a;
  font-weight: 700;
  margin-bottom: 16px;
  position: relative;
  display: inline-block;
}
@media (calc(768px - 1px)) {
  .c-heading__main {
    font-size: 2.25rem;
  }
}
@media (calc(768px - 1px)) {
  .c-heading__main {
    font-size: 1.8rem;
  }
}
.c-heading__main::after {
  content: "";
  display: block;
  position: absolute;
  bottom: -16px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: #c41e3a;
}
.c-heading__sub {
  display: block;
  font-size: 16px;
  color: #666;
  margin-top: 24px;
}
.c-heading__en {
  display: block;
  font-family: "Arial", sans-serif;
  font-size: 14px;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}
.c-heading--left {
  text-align: left;
}
.c-heading--left .c-heading__main {
  display: block;
}
.c-heading--left .c-heading__main::after {
  left: 0;
  transform: none;
}
.c-heading--sm {
  margin-bottom: 32px;
}
.c-heading--sm .c-heading__main {
  font-size: 1.8rem;
}
@media (calc(768px - 1px)) {
  .c-heading--sm .c-heading__main {
    font-size: 1.5rem;
  }
}
.c-heading--lg {
  margin-bottom: 80px;
}
.c-heading--lg .c-heading__main {
  font-size: 3rem;
}
@media (calc(768px - 1px)) {
  .c-heading--lg .c-heading__main {
    font-size: 2rem;
  }
}

.p-global-nav .c-navbar__item > a {
  color: #fff;
  position: relative;
}
.p-global-nav .c-navbar__item > a::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: auto;
  right: auto;
  background: #c41e3a;
  height: 1px;
  width: 0px;
  transition: all 0.3s ease-in-out;
}
.p-global-nav .c-navbar__item > a:hover {
  color: #fff;
}
.p-global-nav .c-navbar__item > a:hover::after {
  width: 100%;
}

.smb-section {
  padding: 100px 0 100px;
}
.smb-section__title {
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "HGS明朝E", "MS P明朝", "MS PMincho", serif;
  font-weight: 400;
  color: #c41e3a;
}
.smb-section__title::after {
  display: none;
}

.smb-faq__item {
  padding: 0;
}
.smb-faq__item__question {
  margin: 0;
  padding: 20px 32px;
  background: #c41e3a;
  color: #fff;
}
.smb-faq__item__question__body {
  line-height: 2em;
}
.smb-faq__item__answer {
  margin: 0;
  padding: 20px 32px;
  background: #fff;
}

.feature-section.smb-section {
  padding: 0 0 60px;
  background: url(../images/feature_bg.png);
  background-size: cover;
  align-items: stretch;
}
.feature-section.smb-section .section-inner > .c-container {
  width: 100%;
  display: flow-root;
}
.feature-section.smb-section .smb-section__header {
  background: #c41e3a;
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}
.feature-section.smb-section .smb-section__title {
  color: #fff;
  padding: 20px;
  margin-top: 0;
}
.feature-section.smb-section .smb-panels__item {
  border: #c41e3a solid 4px;
  box-shadow: none;
}
.feature-section.smb-section .smb-panels__item__body {
  background-image: url(../images/feature_mark.png);
  background-size: 72px 69px;
  background-position: top left;
  background-repeat: no-repeat;
}
.feature-section.smb-section .smb-panels__item .wp-block-heading {
  color: #c41e3a;
  text-align: center;
  border: none;
}

.voice-section.smb-section {
  background-color: #F4EDEE;
}
.voice-section.smb-section .p-repeater-block__grid .c-row__col:nth-child(odd) {
  display: flex;
  justify-content: flex-end;
}
.voice-section.smb-section .p-repeater-block__grid .c-row__col:nth-child(even) {
  display: flex;
  justify-content: flex-start;
}
.voice-section.smb-section .p-repeater-block__item {
  width: 84%;
  padding: 32px;
  border-radius: 0;
  box-shadow: 4px 4px 0 #DCC6C9;
}
.voice-section.smb-section .p-repeater-block__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  color: #c41e3a;
  border-bottom: 1px solid #c41e3a;
}
.voice-section.smb-section .p-repeater-block__title {
  color: #c41e3a;
}
.voice-section.smb-section .p-repeater-block__name {
  text-align: right;
  font-size: 18px;
}
.voice-section.smb-section .p-repeater-block__comment {
  padding-top: 12px;
}

.p-hero {
  position: relative;
  height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
  overflow: hidden;
}
@media (calc(768px - 1px)) {
  .p-hero {
    height: 400px;
  }
}
.p-hero__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.p-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.p-hero__bg::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.5));
}
.p-hero__content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 0 24px;
}
.p-hero__title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 24px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}
@media (calc(768px - 1px)) {
  .p-hero__title {
    font-size: 2.7rem;
  }
}
@media (calc(768px - 1px)) {
  .p-hero__title {
    font-size: 2rem;
  }
}
.p-hero__subtitle {
  font-size: 1.3rem;
  margin-bottom: 32px;
  font-weight: 500;
}
@media (calc(768px - 1px)) {
  .p-hero__subtitle {
    font-size: 1.17rem;
  }
}
@media (calc(768px - 1px)) {
  .p-hero__subtitle {
    font-size: 1rem;
  }
}
.p-hero__buttons {
  display: flex;
  gap: 24px;
  justify-content: center;
}
@media (calc(768px - 1px)) {
  .p-hero__buttons {
    flex-direction: column;
    align-items: stretch;
  }
}
.p-hero--sm {
  height: 300px;
}
@media (calc(768px - 1px)) {
  .p-hero--sm {
    height: 200px;
  }
}
.p-hero--sm .p-hero__title {
  font-size: 2rem;
}
@media (calc(768px - 1px)) {
  .p-hero--sm .p-hero__title {
    font-size: 1.5rem;
  }
}

.p-service {
  padding: 80px 0;
}
@media (calc(768px - 1px)) {
  .p-service {
    padding: 64px 0;
  }
}
.p-service--gray {
  background: #f8f8f8;
}
.p-service__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
}
@media (calc(768px - 1px)) {
  .p-service__grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}
.p-service__intro {
  max-width: 800px;
  margin: 0 auto 64px;
  text-align: center;
}
.p-service__intro p {
  font-size: 18px;
  line-height: 1.8;
  color: #666;
}
.p-service__cta {
  text-align: center;
  margin-top: 64px;
}

.p-works {
  padding: 80px 0;
}
@media (calc(768px - 1px)) {
  .p-works {
    padding: 64px 0;
  }
}
.p-works__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}
@media (calc(768px - 1px)) {
  .p-works__grid {
    grid-template-columns: 1fr;
  }
}
.p-works__item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  cursor: pointer;
}
.p-works__item:hover .p-works__image img {
  transform: scale(1.1);
}
.p-works__item:hover .p-works__overlay {
  opacity: 1;
  transform: translateY(0);
}
.p-works__image {
  position: relative;
}
.p-works__image::before {
  content: "";
  display: block;
  padding-top: 75%;
}
.p-works__image > * {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.p-works__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.p-works__overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px;
  background: linear-gradient(to top, rgba(196, 30, 58, 0.7), rgba(196, 30, 58, 0.9));
  color: #fff;
  opacity: 0.9;
  transform: translateY(20px);
  transition: all 0.3s ease;
}
@media (calc(768px - 1px)) {
  .p-works__overlay {
    opacity: 1;
    transform: translateY(0);
  }
}
.p-works__title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}
.p-works__meta {
  display: flex;
  gap: 16px;
  font-size: 14px;
  flex-wrap: wrap;
}
.p-works__meta span::after {
  content: "|";
  margin-left: 16px;
}
.p-works__meta span:last-child::after {
  content: none;
}
.p-works__description {
  margin-top: 16px;
  font-size: 14px;
  line-height: 1.6;
}
.p-works__filter {
  display: flex;
  gap: 16px;
  margin-bottom: 32px;
  flex-wrap: wrap;
  justify-content: center;
}
.p-works__filter button {
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  font: inherit;
  color: inherit;
  cursor: pointer;
  appearance: none;
  padding: 8px 24px;
  border: 1px solid #ddd;
  border-radius: 50px;
  background: #fff;
  color: #333;
  font-weight: 500;
  transition: all 0.3s ease;
}
.p-works__filter button:hover, .p-works__filter button.is-active {
  background: #c41e3a;
  color: #fff;
  border-color: #c41e3a;
}
.p-works__more {
  text-align: center;
  margin-top: 64px;
}

.p-pricing {
  padding: 80px 0;
  background: #f8f8f8;
}
@media (calc(768px - 1px)) {
  .p-pricing {
    padding: 64px 0;
  }
}
.p-pricing__table-wrapper {
  background: #fff;
  border-radius: 10px;
  padding: 32px;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
  margin-bottom: 32px;
}
.p-pricing__table-wrapper:last-child {
  margin-bottom: 0;
}
.p-pricing__table-title {
  font-size: 20px;
  font-weight: 700;
  color: #c41e3a;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 2px solid #c41e3a;
}
.p-pricing__table {
  width: 100%;
  border-collapse: collapse;
}
.p-pricing__table thead th {
  background: #f8f8f8;
  font-weight: 600;
  text-align: left;
  padding: 16px 24px;
  border-bottom: 2px solid #ddd;
}
@media (calc(768px - 1px)) {
  .p-pricing__table thead th {
    font-size: 14px;
    padding: 8px 16px;
  }
}
.p-pricing__table tbody tr {
  border-bottom: 1px solid #eee;
  transition: background-color 0.3s ease;
}
.p-pricing__table tbody tr:hover {
  background: #f8f8f8;
}
.p-pricing__table tbody tr:last-child {
  border-bottom: none;
}
.p-pricing__table tbody th,
.p-pricing__table tbody td {
  padding: 16px 24px;
}
@media (calc(768px - 1px)) {
  .p-pricing__table tbody th,
  .p-pricing__table tbody td {
    font-size: 14px;
    padding: 8px 16px;
  }
}
.p-pricing__table tbody th {
  font-weight: 500;
  text-align: left;
}
.p-pricing__table tbody td {
  color: #666;
}
.p-pricing__table tbody td:not(:first-child) {
  text-align: center;
  font-weight: 600;
  color: #c41e3a;
}
.p-pricing__note {
  text-align: center;
  margin-top: 32px;
  color: #666;
  font-size: 14px;
  line-height: 1.8;
}
.p-pricing__note p {
  margin-bottom: 8px;
}
.p-pricing__cta {
  text-align: center;
  margin-top: 64px;
}

.contact-section {
  padding: 80px 0;
  background: #f8f8f8;
}
@media (calc(768px - 1px)) {
  .contact-section {
    padding: 64px 0;
  }
}
.contact-section .smb-section__header {
  text-align: center;
  margin-bottom: 48px;
}
.contact-section .smb-section__title {
  color: #c41e3a;
  font-size: 2rem;
}
@media (calc(768px - 1px)) {
  .contact-section .smb-section__title {
    font-size: 1.5rem;
  }
}
.contact-section .smb-section__body > p {
  text-align: center;
  line-height: 1.8;
  margin-bottom: 24px;
}
.contact-section .smb-section__body > p strong {
  color: #c41e3a;
  font-size: 18px;
}

.contact-section .smb-container {
  background: #fff;
  border-radius: 10px;
  padding: 32px;
  margin: 48px 0;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  text-align: center;
}
.contact-section .smb-container .smb-container__body p {
  margin-bottom: 16px;
}
.contact-section .smb-container .smb-container__body p:first-child {
  font-size: 16px;
  color: #333;
  font-weight: 500;
}
.contact-section .smb-container .smb-container__body p:nth-child(2) {
  font-size: 2.5rem;
  font-weight: 700;
  color: #c41e3a;
  margin: 24px 0;
}
@media (calc(768px - 1px)) {
  .contact-section .smb-container .smb-container__body p:nth-child(2) {
    font-size: 2rem;
  }
}
.contact-section .smb-container .smb-container__body p:nth-child(2) a {
  color: #c41e3a;
  text-decoration: none;
}
.contact-section .smb-container .smb-container__body p:nth-child(2) a:hover {
  color: #a01828;
}
.contact-section .smb-container .smb-container__body p:last-child {
  font-size: 14px;
  color: #999;
  margin-bottom: 0;
}

.contact-section .snow-monkey-form {
  background: #fff;
  border-radius: 10px;
  padding: 48px;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
}
@media (calc(768px - 1px)) {
  .contact-section .snow-monkey-form {
    padding: 24px;
  }
}
.contact-section .smf-item {
  margin-bottom: 32px;
}
.contact-section .smf-item:last-child {
  margin-bottom: 0;
}
.contact-section .smf-item__label__text {
  font-weight: 600;
  color: #333;
  display: block;
  margin-bottom: 8px;
}
.contact-section .smf-text-control__control,
.contact-section .smf-textarea-control__control {
  width: 100%;
  padding: 16px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 16px;
  font-family: "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.contact-section .smf-text-control__control:focus,
.contact-section .smf-textarea-control__control:focus {
  outline: none;
  border-color: #c41e3a;
  box-shadow: 0 0 0 3px rgba(196, 30, 58, 0.1);
}
.contact-section .smf-textarea-control__control {
  min-height: 150px;
  resize: vertical;
}
.contact-section .smf-control-description {
  display: block;
  margin-top: 8px;
  font-size: 14px;
  color: #999;
}
.contact-section .smf-submit-button {
  text-align: center;
  margin-top: 48px;
}
.contact-section .smf-submit-button button {
  display: inline-block;
  padding: 24px 64px;
  background: #c41e3a;
  color: #fff;
  border: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 18px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  min-width: 300px;
}
.contact-section .smf-submit-button button:hover {
  background: #a01828;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(196, 30, 58, 0.3);
}
@media (calc(768px - 1px)) {
  .contact-section .smf-submit-button button {
    width: 100%;
    min-width: auto;
  }
}

.p-contact {
  padding: 80px 0;
}
@media (calc(768px - 1px)) {
  .p-contact {
    padding: 64px 0;
  }
}

.p-company {
  padding: 80px 0;
  background: #f8f8f8;
}
@media (calc(768px - 1px)) {
  .p-company {
    padding: 64px 0;
  }
}
.p-company__inner {
  max-width: 800px;
  margin: 0 auto;
}
.p-company__wrapper {
  background: #fff;
  border-radius: 10px;
  padding: 48px;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
}
@media (calc(768px - 1px)) {
  .p-company__wrapper {
    padding: 24px;
  }
}
.p-company__table {
  width: 100%;
  border-collapse: collapse;
}
.p-company__table tr {
  border-bottom: 1px solid #eee;
}
.p-company__table tr:last-child {
  border-bottom: none;
}
.p-company__table th,
.p-company__table td {
  padding: 24px;
  text-align: left;
  vertical-align: top;
}
@media (calc(768px - 1px)) {
  .p-company__table th,
  .p-company__table td {
    display: block;
    padding: 16px;
  }
}
.p-company__table th {
  width: 30%;
  font-weight: 600;
  color: #333;
  background: #f8f8f8;
}
@media (calc(768px - 1px)) {
  .p-company__table th {
    width: 100%;
    padding-bottom: 0;
    background: none;
  }
}
.p-company__table td {
  color: #666;
}
@media (calc(768px - 1px)) {
  .p-company__table td {
    padding-top: 8px;
  }
}
.p-company__map {
  margin-top: 32px;
  border-radius: 8px;
  overflow: hidden;
}
.p-company__map iframe {
  width: 100%;
  height: 400px;
  border: none;
  display: block;
}
@media (calc(768px - 1px)) {
  .p-company__map iframe {
    height: 300px;
  }
}

.u-mt-0 {
  margin-top: 0 !important;
}

.u-mt-xs {
  margin-top: 8px !important;
}

.u-mt-sm {
  margin-top: 16px !important;
}

.u-mt-md {
  margin-top: 24px !important;
}

.u-mt-lg {
  margin-top: 32px !important;
}

.u-mt-xl {
  margin-top: 48px !important;
}

.u-mt-xxl {
  margin-top: 64px !important;
}

.u-mb-0 {
  margin-bottom: 0 !important;
}

.u-mb-xs {
  margin-bottom: 8px !important;
}

.u-mb-sm {
  margin-bottom: 16px !important;
}

.u-mb-md {
  margin-bottom: 24px !important;
}

.u-mb-lg {
  margin-bottom: 32px !important;
}

.u-mb-xl {
  margin-bottom: 48px !important;
}

.u-mb-xxl {
  margin-bottom: 64px !important;
}

.u-ml-auto {
  margin-left: auto !important;
}

.u-mr-auto {
  margin-right: auto !important;
}

.u-mx-auto {
  margin-left: auto !important;
  margin-right: auto !important;
}

.u-pt-0 {
  padding-top: 0 !important;
}

.u-pt-sm {
  padding-top: 16px !important;
}

.u-pt-md {
  padding-top: 24px !important;
}

.u-pt-lg {
  padding-top: 32px !important;
}

.u-pt-xl {
  padding-top: 48px !important;
}

.u-pb-0 {
  padding-bottom: 0 !important;
}

.u-pb-sm {
  padding-bottom: 16px !important;
}

.u-pb-md {
  padding-bottom: 24px !important;
}

.u-pb-lg {
  padding-bottom: 32px !important;
}

.u-pb-xl {
  padding-bottom: 48px !important;
}

.u-text-left {
  text-align: left !important;
}

.u-text-center {
  text-align: center !important;
}

.u-text-right {
  text-align: right !important;
}

.u-text-primary {
  color: #c41e3a !important;
}

.u-text-light {
  color: #666 !important;
}

.u-text-lighter {
  color: #999 !important;
}

.u-text-white {
  color: #fff !important;
}

.u-bg-white {
  background-color: #fff !important;
}

.u-bg-gray {
  background-color: #f8f8f8 !important;
}

.u-bg-primary {
  background-color: #c41e3a !important;
}

.u-hide {
  display: none !important;
}

.u-show {
  display: block !important;
}

@media (calc(768px - 1px)) {
  .u-hide-sp {
    display: none !important;
  }
}

@media (min-width: 768px) {
  .u-hide-pc {
    display: none !important;
  }
}

.u-show-sp {
  display: none !important;
}
@media (calc(768px - 1px)) {
  .u-show-sp {
    display: block !important;
  }
}

.u-show-pc {
  display: none !important;
}
@media (min-width: 768px) {
  .u-show-pc {
    display: block !important;
  }
}

.u-fw-normal {
  font-weight: 400 !important;
}

.u-fw-medium {
  font-weight: 500 !important;
}

.u-fw-semibold {
  font-weight: 600 !important;
}

.u-fw-bold {
  font-weight: 700 !important;
}

.u-fz-sm {
  font-size: 14px !important;
}

.u-fz-base {
  font-size: 16px !important;
}

.u-fz-lg {
  font-size: 18px !important;
}

.u-fz-xl {
  font-size: 20px !important;
}

.u-truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.u-shadow-sm {
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1) !important;
}

.u-shadow-md {
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1) !important;
}

.u-shadow-lg {
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.15) !important;
}

.u-rounded {
  border-radius: 8px !important;
}

.u-rounded-lg {
  border-radius: 10px !important;
}

.u-flex {
  display: flex !important;
}

.u-flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.u-flex-column {
  flex-direction: column !important;
}

.u-flex-wrap {
  flex-wrap: wrap !important;
}

.u-gap-sm {
  gap: 16px !important;
}

.u-gap-md {
  gap: 24px !important;
}

.u-gap-lg {
  gap: 32px !important;
}