@charset "UTF-8";
.mt0 {
  margin-top: 0 !important;
}

.mt8 {
  margin-top: 8px !important;
}

.mt16 {
  margin-top: 16px !important;
}

.mt24 {
  margin-top: 24px !important;
}

.mt32 {
  margin-top: 32px !important;
}

.mt64 {
  margin-top: 64px !important;
}

.mt80 {
  margin-top: 80px !important;
}

.mb0 {
  margin-bottom: 0 !important;
}

.mb8 {
  margin-bottom: 8px !important;
}

.mb16 {
  margin-bottom: 16px !important;
}

.mb24 {
  margin-bottom: 24px !important;
}

.mb32 {
  margin-bottom: 32px !important;
}

.mb64 {
  margin-bottom: 64px !important;
}

.mb80 {
  margin-bottom: 80px !important;
}

.pt0 {
  padding-top: 0 !important;
}

.pb0 {
  padding-bottom: 0 !important;
}

.pl32 {
  padding-left: 32px !important;
}

.is_pc {
  display: none;
}
@media print, screen and (min-width: 1024px) {
  .is_pc {
    display: block;
  }
}

.is_sp {
  display: block;
}
@media print, screen and (min-width: 1024px) {
  .is_sp {
    display: none;
  }
}

.serif {
  font-family: serif;
}

.p_top_more a {
  text-decoration: none;
}

.no-underline a {
  text-decoration: none !important;
  color: var(--wp--preset--color--sm-text);
}

.table_rows tbody th {
  background-color: #E1E1E1 !important;
  color: #333 !important;
}
@media print, screen and (min-width: 1200px) {
  .table_rows tbody th {
    width: 300px;
  }
}
.table_rows tbody td {
  vertical-align: top;
}
.table_rows tbody td:first-child {
  font-weight: 700;
  background-color: #E1E1E1;
  color: #333 !important;
}
@media print, screen and (min-width: 1200px) {
  .table_rows tbody td:first-child {
    width: 300px;
  }
}
@media print, screen and (max-width: 639px) {
  .table_rows {
    display: block;
  }
  .table_rows tbody {
    display: block;
    width: 100%;
  }
  .table_rows tr {
    display: block;
    width: 100%;
  }
  .table_rows tr:first-child th, .table_rows tr:first-child td {
    border-bottom: 0;
  }
  .table_rows th, .table_rows td {
    display: block;
    width: 100%;
  }
}

.table_cols tr:first-of-type td {
  background-color: #E1E1E1;
  color: #333;
  font-weight: 700;
}

.p-contactform {
  width: 100%;
  max-width: 850px;
  margin: 50px auto;
  font-family: "Noto Sans JP", sans-serif;
  color: #333;
  border-collapse: collapse;
}

/* 表の基本デザイン */
.p-contactform table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  -webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
          box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.p-contactform th,
.p-contactform td {
  padding: 16px 20px;
  border-bottom: 1px solid #e5e5e5;
  vertical-align: middle;
}

.p-contactform th {
  width: 30%;
  background: #f9f9f9;
  font-weight: 600;
  text-align: left;
}

/* 入力フィールド */
.p-contactform input[type=text],
.p-contactform input[type=email],
.p-contactform input[type=tel],
.p-contactform textarea,
.p-contactform select {
  width: 100%;
  padding: 10px 12px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 4px;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.p-contactform input:focus,
.p-contactform textarea:focus,
.p-contactform select:focus {
  border-color: #0073aa;
  outline: none;
  -webkit-box-shadow: 0 0 5px rgba(0, 115, 170, 0.3);
          box-shadow: 0 0 5px rgba(0, 115, 170, 0.3);
}

/* テキストエリア */
.p-contactform textarea {
  height: 150px;
  resize: vertical;
}

/* 必須マーク */
.p-required_mark::after {
  content: " *";
  color: #e53935;
  font-weight: bold;
  margin-left: 3px;
}

/* ファイルアップロード */
.p-contactform input[type=file] {
  border: none;
  background: none;
  padding: 0;
}

.p-contactform .red {
  color: #e53935;
  font-size: 14px;
}

.p-contactform .p1 {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  margin-top: 5px;
}

/* 送信ボタン */
.submit_button {
  display: inline-block;
  background-color: var(--accent-color);
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  padding: 14px 40px;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  -webkit-transition: background-color 0.3s ease, -webkit-transform 0.2s ease;
  transition: background-color 0.3s ease, -webkit-transform 0.2s ease;
  transition: background-color 0.3s ease, transform 0.2s ease;
  transition: background-color 0.3s ease, transform 0.2s ease, -webkit-transform 0.2s ease;
}

.submit_button:hover {
  -webkit-filter: brightness(1.1);
          filter: brightness(1.1);
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}

.submit_button:active {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

/* 中央寄せ */
.has-text-align-center {
  text-align: center;
  margin-top: 30px;
}

/* レスポンシブ対応 */
@media screen and (max-width: 768px) {
  .p-contactform th {
    display: block;
    width: 100%;
    background: none;
    border: none;
    padding-bottom: 5px;
  }
  .p-contactform td {
    display: block;
    width: 100%;
    border: none;
    padding-top: 0;
  }
  .p-contactform table {
    -webkit-box-shadow: none;
            box-shadow: none;
  }
}
/*見出し*/
/*h1*/
body:not(.home) h1.c-entry__title {
  background-image: url(/cms/wp-content/plugins/my-snow-monkey/assets/img/bg_h1.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  padding-left: 1rem;
  position: relative;
  font-family: serif;
  color: #012B5D;
}
@media print, screen and (max-width: 1023px) {
  body:not(.home) h1.c-entry__title {
    padding: 1rem;
    font-size: 1.5rem;
  }
}

body:not(.home) .l-container .c-page-header {
  padding-top: 0;
  padding-bottom: 0;
}

body:not(.home) .l-contents__inner {
  margin-top: 1.8em;
}

/*h2*/
body:not(.voice) h2:not(.p-related-posts__title.c-entry-aside__title):not(.smb-section__title):not(.c-entry-summary__title) {
  color: #012B5D;
  font-family: serif;
  border-bottom: 1px solid #C08D4E;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
}
@media print, screen and (max-width: 1023px) {
  body:not(.voice) h2:not(.p-related-posts__title.c-entry-aside__title):not(.smb-section__title):not(.c-entry-summary__title) {
    font-size: 1.2rem;
  }
}
body:not(.voice) h2:not(.p-related-posts__title.c-entry-aside__title):not(.smb-section__title):not(.c-entry-summary__title):before {
  content: "";
  display: block;
  background-image: url(/cms/wp-content/plugins/my-snow-monkey/assets/img/img_h2.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 56px;
  height: 56px;
  top: calc(50% - 28px);
  left: 2.5rem;
}
@media print, screen and (max-width: 1023px) {
  body:not(.voice) h2:not(.p-related-posts__title.c-entry-aside__title):not(.smb-section__title):not(.c-entry-summary__title):before {
    width: 35px;
    height: 35px;
    top: calc(50% - 22px);
    left: 1rem;
  }
}
body:not(.voice) h2:not(.p-related-posts__title.c-entry-aside__title):not(.smb-section__title):not(.c-entry-summary__title):after {
  content: "";
  background-color: #C08D4E;
  /* border-bottom: 3px solid #C08D4E; */
  width: 20%;
  height: 3px;
  margin-top: 1rem;
  position: absolute;
  bottom: -2px;
  border-radius: 1.5px;
}

/*h3*/
body:not(.home) h3:not(.c-entry-summary__title) {
  color: #012B5D;
  background-color: #F8F2EC;
  padding: 0.5rem;
}

/*h4*/
body:not(.home) h4 {
  color: #012B5D;
  padding: 0.5rem;
  position: relative;
  z-index: 1;
}
@media print, screen and (max-width: 1023px) {
  body:not(.home) h4 {
    padding: 0.5rem;
  }
}
body:not(.home) h4:before {
  content: "";
  position: absolute;
  display: block;
  background-image: url(/cms/wp-content/plugins/my-snow-monkey/assets/img/img_h4.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 43px;
  height: 43px;
  top: calc(50% - 21px);
  left: -8px;
  z-index: -1;
}
@media print, screen and (max-width: 1023px) {
  body:not(.home) h4:before {
    top: calc(50% - 21px);
  }
}

.header_top_pr {
  border-bottom: 1px solid #012B5D;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
  padding-bottom: 10px;
}
@media print, screen and (max-width: 1023px) {
  .header_top_pr {
    font-size: 1.2rem;
  }
}
.header_top_pr:after {
  content: "";
  background-color: #012B5D;
  /* border-bottom: 3px solid #C08D4E; */
  width: 20%;
  height: 3px;
  margin-top: 1rem;
  position: absolute;
  bottom: -2px;
  border-radius: 1.5px;
}

.c-meta__item--author, .c-meta__item--modified {
  display: none !important;
}

.u-text_center {
  text-align: center;
}

@media print, screen and (max-width: 639px) {
  body:not(.home) .l-contents__inner {
    margin-top: 0;
    padding-top: 1rem;
  }
}

.wp-block-separator {
  border: none;
  border-top: 1px solid;
}

.p-global-nav .c-navbar__item > a {
  padding-bottom: 0;
}

@media print, screen and (max-width: 1023px) {
  .c-site-branding {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

.phone-section.is_sp {
  display: block;
  width: 120px;
}
@media print, screen and (min-width: 1024px) {
  .phone-section.is_sp {
    display: none;
  }
}

@media (max-width: 1280px) {
  .p-global-nav .c-navbar__item > a {
    padding-left: 10px;
    padding-right: 10px;
  }
}
@media (max-width: 1170px) {
  .p-global-nav .c-navbar__item > a {
    padding-left: 5px;
    padding-right: 5px;
  }
}
@media (max-width: 1162px) {
  .p-global-nav .c-navbar__item > a {
    font-size: 0.8em;
  }
}
@media (min-width: 1024px) {
  .l-1row-header__branding, .l-1row-header__content, .l-2row-header__row:first-child {
    padding-bottom: 0;
  }
}
.l-1row-header .c-row--middle {
  -webkit-box-align: end;
  -webkit-align-items: end;
      -ms-flex-align: end;
          align-items: end;
}

.header-contact {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 1rem;
  max-width: clamp(350px, 25vw, 450px);
}

@media (max-width: 1330px) {
  .header-contact {
    max-width: 300px;
  }
}
@media (max-width: 1170px) {
  .header-contact {
    max-width: 250px;
  }
}
.phone-section {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.phone-icon {
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
}

.phone-icon img {
  display: block;
  width: auto;
}

.phone-hours {
  font-size: 14px;
  color: #333;
  line-height: 1.5;
}

.button-group {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
}

.btn {
  display: block;
  border: none;
  background: none;
  padding: 0;
  cursor: pointer;
  -webkit-transition: opacity 0.3s, -webkit-transform 0.2s;
  transition: opacity 0.3s, -webkit-transform 0.2s;
  transition: opacity 0.3s, transform 0.2s;
  transition: opacity 0.3s, transform 0.2s, -webkit-transform 0.2s;
  line-height: 0;
}

.btn:hover {
  opacity: 0.9;
}

.btn img {
  display: block;
  width: auto;
}

/* 横いっぱいに広げる */
.l-2row-header .p-global-nav,
.p-header-sub-nav {
  margin-right: calc(50% - 50vw);
  margin-left: calc(50% - 50vw);
}

/* 中身をコンテナー幅に収める */
.l-2row-header .p-global-nav > *,
.p-header-sub-nav > * {
  margin: 0 auto;
  max-width: 1200px;
  padding-right: 1.8rem;
  padding-left: 1.8rem;
}

.faq .c-entry__title::before {
  content: "Q.";
  font-size: 3rem;
  font-weight: bold;
  font-family: "Arial Black";
  margin-right: 1.6rem;
  color: #349CF7;
}

.faq .c-entry__body::before {
  content: "A.";
  font-size: 3rem;
  font-weight: bold;
  font-family: "Arial Black";
  margin-right: 1.6rem;
  color: #cf2e2e;
}

.c-entry-summary--type-faq .c-entry-summary__title::before {
  content: "Q.";
  font-weight: bold;
  font-size: 2.5rem;
  font-family: "Arial Black";
  margin-right: 1.5rem;
  color: #349CF7;
}

.c-entry-summary__body .c-entry-summary__header .c-entry-summary__title {
  line-height: 1.2rem;
  font-weight: bold;
}

.l-footer {
  background-image: url(/cms/wp-content/plugins/my-snow-monkey/assets/img/bg_footer.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  color: #fff;
}
.l-footer a {
  text-decoration: none !important;
  color: #fff !important;
}
.l-footer .c-copyright--inverse {
  background-color: transparent;
}

@media print, screen and (max-width: 639px) {
  .home .l-footer .c-copyright--inverse {
    margin-bottom: 3.5rem;
  }
}

.widget.widget_nav_menu {
  font-weight: bold;
}
.widget.widget_nav_menu .child_menu {
  font-weight: normal;
  padding-left: 1rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.widget.widget_nav_menu .child_menu::before {
  content: "-";
  display: block;
}

@media print, screen and (max-width: 1023px) {
  .home a.smb-btn.smb-btn--wider {
    width: 100%;
  }
}
@media print, screen and (max-width: 1023px) {
  .home .wp-block-snow-monkey-blocks-btn.smb-btn-wrapper.smb-btn-wrapper--wider.is-style-ghost {
    width: 100%;
  }
}

.wp-block-snow-monkey-blocks-section.smb-section.smb-section--fit.top_section_float {
  position: fixed;
  z-index: 1000;
  opacity: 0;
  right: 0;
  bottom: 0;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.wp-block-snow-monkey-blocks-section.smb-section.smb-section--fit.top_section_float.is-visible {
  opacity: 1;
}
.wp-block-snow-monkey-blocks-section.smb-section.smb-section--fit.top_section_float img {
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}
.wp-block-snow-monkey-blocks-section.smb-section.smb-section--fit.top_section_float img:hover {
  -webkit-transform: translateY(-4px);
          transform: translateY(-4px);
}

.wp-block-snow-monkey-blocks-section.smb-section.smb-section--fit.top_section_float_sp {
  position: fixed;
  z-index: 1000;
  opacity: 0;
  right: 0;
  bottom: 0;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.wp-block-snow-monkey-blocks-section.smb-section.smb-section--fit.top_section_float_sp.is-visible {
  opacity: 1;
}
.wp-block-snow-monkey-blocks-section.smb-section.smb-section--fit.top_section_float_sp img {
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}
.wp-block-snow-monkey-blocks-section.smb-section.smb-section--fit.top_section_float_sp img:hover {
  -webkit-filter: brightness(1.1);
          filter: brightness(1.1);
}
.wp-block-snow-monkey-blocks-section.smb-section.smb-section--fit.top_section_float_sp figure.wp-block-image.size-full {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.section_top_about .smb-section-with-bgimage__bgimage img {
  -o-object-fit: contain;
     object-fit: contain;
}

@media (min-width: 1024px) {
  .section_top_faq .c-entries--text .c-entry-summary__body > .c-entry-summary__meta {
    display: none;
  }
}
.section_top_faq .c-entries--text .c-entries__item > a {
  padding-top: 10px;
  padding-bottom: 10px;
}
.section_top_faq .c-entries--text {
  border-top: none;
}
.section_top_faq .c-entries__item {
  border-bottom: none;
}
.section_top_faq .c-entry-summary__title {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.section_top_faq .c-entry-summary__title:before {
  content: "";
  background-image: url(/cms/wp-content/plugins/my-snow-monkey/assets/img/icon_top_faq.png);
  background-size: contain;
  background-position: center;
  width: 24px;
  height: 24px;
  margin-right: 1rem;
  background-repeat: no-repeat;
  aspect-ratio: 1/1;
}
.section_top_faq .c-entry-summary__title:after {
  content: "";
  width: 8px;
  height: 8px;
  border-top: 2px solid #D3114E;
  border-right: 2px solid #D3114E;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  margin-left: 2.5rem;
  aspect-ratio: 1/1;
}
@media print, screen and (max-width: 639px) {
  .section_top_faq .c-entry-summary__title:after {
    margin-left: 1rem;
  }
}

.section_top_news .c-entries--text2 {
  border-top: none;
}
.section_top_news .c-entries--text2 .c-entries__item {
  background-image: -webkit-repeating-linear-gradient(left, #dbdad8, #dbdad8 2px, transparent 2px, transparent 4px);
  background-image: repeating-linear-gradient(90deg, #dbdad8, #dbdad8 2px, transparent 2px, transparent 4px);
  background-position: left bottom;
  background-repeat: repeat-x;
  background-size: 100% 2px;
  border-bottom: none;
}
.section_top_news .c-entries--text2 .c-entries__item:last-child {
  background-image: none;
}
.section_top_news .c-entry-summary__meta {
  margin-top: 0 !important;
}
.section_top_news .c-entry-summary__meta .c-meta {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row;
  margin-right: 1rem;
  color: #012B5D;
}
.section_top_news .c-entry-summary__term {
  background-color: #012B5D;
  border-radius: 4px;
}
.section_top_news .c-entry-summary__body {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
@media print, screen and (max-width: 639px) {
  .section_top_news .c-entry-summary__body {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
.section_top_news .smb-recent-posts {
  background-color: #fff;
}
.section_top_news .c-entries__item > a {
  padding-top: 20px;
  padding-bottom: 20px;
}
.section_top_news span.c-entry-summary__term {
  min-width: 120px;
  text-align: center;
}

.section_top_blog {
  position: relative;
  overflow: visible;
}
.section_top_blog .smb-section-with-bgimage__bgimage img {
  border: 1px solid #DBDAD8;
  border-radius: 30px;
}
.section_top_blog::after {
  content: "";
  position: absolute;
  display: block;
  width: 140px;
  height: 140px;
  background-image: url(/cms/wp-content/plugins/my-snow-monkey/assets/img/img_top_blog_kutsushita.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  top: -30px;
  right: 0;
}
@media print, screen and (max-width: 639px) {
  .section_top_blog::after {
    width: 95px;
    height: 95px;
    top: -60px;
  }
}

@media print, screen and (max-width: 639px) {
  .wp-block-columns.column_sp-reverse {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}

@media print, screen and (max-width: 639px) {
  .section_top_pr .wp-block-column {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
}

/* スライダーのサイズ調整 */
/* スライダーを上下中央 */
.splide__slide {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center; /* 左右の中央揃え */
}

/* スライドのサイズ調整 */
.splide__slide img {
  -webkit-align-self: center;
      -ms-flex-item-align: center;
          align-self: center; /* 上下の中央揃え */
  max-height: 100%;
  max-width: 100%;
  width: auto;
}

section#thumbnail-slider {
  margin-top: 1rem;
}

@media print, screen and (max-width: 639px) {
  .splide__arrow {
    display: none !important;
  }
}

#fancybox-close:hover span, #fancybox-next:hover span, body.rtl #fancybox-prev:hover span {
  -webkit-transform: none !important;
          transform: none !important;
}

.case-image-container {
  border: 1px solid #DBDAD8;
  padding: 3rem 5rem;
  border-radius: 8px;
  margin-top: 10px !important;
}
@media print, screen and (max-width: 639px) {
  .case-image-container {
    padding: 1rem;
  }
}

.case-category-label {
  display: inline-block;
  background-color: var(--accent-color);
  color: #fff;
  padding: 5px 15px;
  border-radius: 4px;
  font-size: 0.9rem;
  font-weight: bold;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* 3カラムグリッドのスタイル */
.image-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 30px;
}

.image-grid img {
  width: 100%;
  height: auto;
  display: block;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
  .image-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
}
@media (max-width: 480px) {
  .image-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}
/* テーブルスタイル */
.overview-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin-bottom: 30px;
  border-radius: 8px;
  overflow: hidden;
  -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
          box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
  background: #fff;
  border: 1px solid #DBDAD8;
}

.overview-table th,
.overview-table td {
  padding: 16px 20px;
  text-align: left;
}
@media print, screen and (max-width: 639px) {
  .overview-table th,
  .overview-table td {
    padding: 12px 14px;
  }
}

.overview-table th {
  background-color: #fafafa;
  font-weight: 600;
  width: 30%;
  color: #1a1a1a;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  position: relative;
  border-bottom: 1px solid #DBDAD8;
  border-right: 1px solid #DBDAD8;
}
.overview-table th:last-child {
  border-bottom: none;
}
@media print, screen and (max-width: 639px) {
  .overview-table th {
    font-size: 0.85rem;
  }
}

.overview-table td {
  background: #fff;
  color: #4a4a4a;
  font-size: 0.95rem;
  line-height: 1.7;
  border-bottom: 1px solid #DBDAD8;
}
@media print, screen and (max-width: 639px) {
  .overview-table td {
    font-size: 0.85rem;
  }
}

.overview-table tr {
  border-bottom: 1px solid #f0f0f0;
}
.overview-table tr:last-child {
  border-bottom: none;
}

/* 製作のポイント */
.production-point {
  line-height: 1.8;
  border: 1px solid #DBDAD8;
  border-radius: 10px;
  padding: 20px;
}

.main-image {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 2rem;
}

.case-bottun-box.smb-flex {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}

body.voice h2:not(.p-related-posts__title.c-entry-aside__title):not(.smb-section__title):not(.c-entry-summary__title) {
  color: #012B5D;
  background-color: #fff;
  padding: 1rem;
  border-radius: 10px;
  position: relative;
}
body.voice h2:not(.p-related-posts__title.c-entry-aside__title):not(.smb-section__title):not(.c-entry-summary__title)::after {
  content: "";
  position: absolute;
  left: 5%;
  bottom: -20px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  border-top: 20px solid #fff;
}
@media print, screen and (max-width: 639px) {
  body.voice h2:not(.p-related-posts__title.c-entry-aside__title):not(.smb-section__title):not(.c-entry-summary__title)::after {
    left: 10%;
    bottom: -10px;
  }
}/*# sourceMappingURL=style.css.map */