@charset "UTF-8";
/* メディアクエリ*/
.inner {
  padding-inline: 20px; /* 左右の余白＝padding */
}
@media screen and (min-width: 768px) {
  .inner {
    max-width: 1360px; /* pcの最大幅 */
    margin-inline: auto; /* 左右中央寄せ */
    padding-inline: 40px; /* 左右の余白＝padding */
  }
}

.sp-hidden {
  display: none;
}
@media screen and (min-width: 768px) {
  .sp-hidden {
    display: block;
  }
}

.pc-hidden {
  display: block;
}
@media screen and (min-width: 768px) {
  .pc-hidden {
    display: none;
  }
}

body {
  font-size: 16px; /* カスタム要素 */
  font-weight: 400; /* カスタム要素 */
  line-height: 1.7; /* カスタム要素 */
}

.img {
  width: 100%;
  display: block;
}

.main-fv .smb-section__inner .c-container:first-of-type {
  padding-left: 0 !important;
  padding-right: 0 !important;
  width: 100% !important;
}

.main-fv .smb-section__inner .c-container:first-child {
  padding-left: 0 !important;
  padding-right: 0 !important;
  width: 100% !important;
}

.main-fv .smb-section__inner .c-container:first-child {
  --_container-max-width: none !important;
  max-width: none;
  width: 100%;
}

.c-section:first-child {
  padding-top: 0 !important;
}

.title {
  font-family: Arial, sans-serif;
  font-size: 40px;
  font-weight: bold;
  line-height: 1.2;
  color: #000;
  margin: 0;
}

.subtitle {
  font-family: Arial, sans-serif;
  font-size: 14px;
  color: #000;
  margin-top: 8px;
  text-align: left;
}

.view-more {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  font-family: "Georgia", serif;
  font-size: 25px;
  color: #F49E13;
  text-decoration: none;
  transition: color 0.3s ease-in-out;
  font-weight: bold;
  gap: 10px;
}

.line {
  transition: all 0.3s ease-in-out;
}

.circle {
  width: 44px;
  height: 44px;
  background-color: #F49E13;
  border: 2px solid #EFF1FF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease-in-out, background-color 0.3s ease-in-out;
}

.arrow {
  font-size: 20px;
  color: #FFF9EF;
  transition: transform 0.3s ease-in-out, color 0.3s ease-in-out;
}

.view-more:hover .circle {
  transform: translateX(5px);
  background-color: #F49E13;
}

.view-more:hover .arrow {
  transform: translateX(5px);
  color: white;
}

.c-entry__header {
  display: block;
}
.c-entry__header::after {
  display: none;
}

body.page .c-entry__header {
  display: none;
}

.contact-txt {
  font-size: 50px;
  font-weight: bold;
}


@media (max-width: 768px) {
  .contact-txt {
    font-size: 1.8rem;
  }
}

/*================================================================
Chrome/Firefox/Edgeなど、各ブラウザはそれぞれデフォルトで効くCSSを持っています。
何もしないと見え方が微妙に変わるので、デフォルトのCSSをリセットして
ブラウザごとの表示の差異をなくすために書くのが「リセットCSS」です。
================================================================*/
*, ::before, ::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html, body, h1, h2, h3, h4, h5, h6, ul, ol, dl, li, dt, dd, p, div, span, img, a, table, tr, th, td {
  margin: 0;
  padding: 0;
  border: 0;
  font-weight: normal;
  font-size: 100%;
  vertical-align: baseline;
}

header, footer, nav, section, article, main, aside, figure, figcaption {
  display: block;
}

ol, ul {
  list-style: none;
  list-style-type: none;
}

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

a {
  color: inherit;
  text-decoration: none;
}

body {
  font-size: 16px; /* カスタム要素 */
  background: #fff; /* カスタム要素 */
  color: #111; /* カスタム要素 */
  line-height: 170%; /* カスタム要素 */
}

button {
  margin: 0;
  padding: 0;
  border: none;
  box-shadow: none;
  background: transparent;
  cursor: pointer;
  font: inherit;
}

input,
select,
textarea {
  font: inherit;
  color: inherit;
  vertical-align: top;
}

.l-header {
  background-color: #ffffff;
  opacity: 0.8;
}
@media screen and (max-width: 768px) {
  .l-header {
    padding-top: 0px;
  }
}

@media screen and (max-width: 768px) {
  .c-hamburger-btn {
    padding: 7px 5px;
  }
}

@media screen and (max-width: 768px) {
  .c-row__col--fit {
    background: #FFFFFF;
    border-radius: 50%;
    box-shadow: 4px 16px 40px rgba(255, 165, 79, 0.16);
    padding: 2px;
    height: 50px;
    width: 50px;
  }
}

.menu-item a span {
  position: relative;
  display: inline-block;
  font-family: "Zen Kaku Gothic Antique", serif;
  font-weight: bold;
}
.menu-item a span::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  transform-origin: center;
  width: 100%;
  height: 2px;
  background-color: #0E7DDF;
  transition: transform 0.3s ease;
}
.menu-item a span:hover::after {
  transform: translateX(-50%) scaleX(1);
}

.menu-item.menu-item-type-post_type:nth-child(1) > a {
  color: #222425;
  font-weight: bold;
}

.menu-item a:hover {
  color: #222425;
}

.p-global-nav .c-navbar__item > a {
  font-weight: bold !important;
}

.p-global-nav .c-navbar__submenu {
  background-color: #0E7DDF;
  color: black;
}

a[aria-current=page] {
  color: #0E7DDF;
  font-weight: bold;
}

.c-drawer__menu a {
  color: #FFFFFF;
  font-weight: bold;
}
.c-drawer__menu .menu-item.menu-item-type-post_type:nth-child(1) > a {
  color: #FFFFFF;
}
.c-drawer__menu .menu-item.menu-item-type-post_type:nth-child(1) > a:hover {
  color: #222425;
}

.main-fv {
  padding-top: 0;
  padding-bottom: 0;
}

.smb-spider-slider__figure-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* 重ねる文字 */
.fv-text {
  position: absolute;
  top: 70%; /* 高さを調整 */
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  text-align: center;
  font-size: 2rem;
  font-weight: bold;
  z-index: 2; /* マスクより上に配置 */
}

/* 重ねる文字 */
.fv-sub-text {
  position: absolute;
  top: 75%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  text-align: center;
  font-size: 1rem;
  z-index: 2; /* マスクより上に配置 */
}

.container {
  position: relative;
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
}
.logo {
  position: absolute;
  z-index: 3;
  opacity: 1;
  animation: fadeOutLogo 0.8s ease 1.5s forwards;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.logo img {
  max-width: 200px;
  height: auto;
}

.gradient-bg {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.4;
  background: linear-gradient(45deg, #0E7DDF, #CAE7FF, #DCEEFF);
  transform: translateY(100%);
  z-index: 1;
  animation: rollUp 1.2s ease 1.5s forwards;
}

.main-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  z-index: 2;
  animation: fadeInImage 1.5s ease 2.7s forwards;
}

.fv2-content {
  z-index: 4;
  opacity: 0;
  width: 100%;
  align-items: center; /* 横方向の中央配置 */
  padding: 20px;
  animation: fadeInContent 1s ease 3s forwards;
}

/* タイトルとサブタイトルのスタイル */
.main-title {
  font-family: "Raleway", serif;
  color: #222425;
  font-size: min(5.5555555556vw, 80px);
  line-height: calc(min(5.5555555556vw, 80px) * 1.1);
  font-weight: 600;
  margin-bottom: 1.25vw;
}
@media screen and (max-width: 768px) {
  .main-title {
    line-height: 1.3;
  }
}

.sub-title {
  font-family: "Zen Kaku Gothic Antique", serif;
  margin-bottom: 2rem;
  letter-spacing: 0.05em;
  color: #222425;
  font-size: min(1.3888888889vw, 20px);
  font-weight: bold;
  line-height: 1.5277777778vw;
}

.scroll-hint {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%) !important;
  z-index: 4;
  opacity: 0;
  animation: fadeInContent 1s ease 4s forwards;
}

.scroll-hint::before {
  content: "";
  display: block;
  width: 1px;
  height: 80px;
  background: #fff;
  margin: 0 auto 10px;
  animation: scrollLine 1.5s ease-in-out infinite;
}

.scroll-text {
  font-size: 0.9rem;
  letter-spacing: 0.2em;
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  .scroll-text {
    font-size: 0.7rem;
  }
}

@keyframes rollUp {
  0% {
    transform: translateY(100%);
  }
  100% {
    transform: translateY(0%);
  }
}
@keyframes fadeInImage {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 0.4;
  }
}
@keyframes fadeInContent {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes scrollLine {
  0% {
    height: 0;
    opacity: 0;
  }
  50% {
    height: 80px;
    opacity: 1;
  }
  100% {
    height: 0;
    opacity: 0;
  }
}
@media (max-width: 767px) {
  @keyframes scrollLine {
    0% {
      height: 0;
      opacity: 0;
    }
    40% {
      height: 50px;
      opacity: 1;
    }
    60% {
      height: 50px;
      opacity: 1;
    }
    100% {
      height: 0;
      opacity: 0;
    }
  }
}
@media (max-width: 768px) {
  .main-title {
    font-size: 1.5rem;
	margin-top:-160px;
  }
  .sub-title {
    font-size: 0.7rem;
  }
}
.bg_text {
  position: absolute;
  display: inline-block;
  white-space: nowrap;
  min-width: 400%;
  left: 45%;
  top: 65%;
  transform: translate(-50%, -50%);
  font-size: 110px;
  color: rgb(226, 235, 241);
  opacity: 1;
  z-index: -1;
  animation: scrollText 70s linear infinite;
  font-family: "Raleway", serif;
}
@media screen and (max-width: 768px) {
  .bg_text {
    font-size: 80px;
  }
}

@keyframes scrollText {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-100%);
  }
}
.f--logo {
  font-family: "Raleway", serif;
}

@media screen and (max-width: 768px) {
  .main-msg {
    min-height: 700px !important;
  }
}

.about-message-right {
  padding-top: 20px;
}

.about-message-box {
  text-align: center;
}

.about-title {
  position: relative;
  display: inline-block;
  padding: 0 55px;
  font-size: 40px;
  font-weight: bold;
  color: #F49E13;
}
@media screen and (max-width: 768px) {
  .about-title {
    font-size: 40px;
  }
}

.about-message {
  font-size: 25px;
  margin-top: 10px;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .about-message {
    font-size: 20px;
  }
}

.about-title:before, .about-title:after {
  content: "";
  position: absolute;
  top: 50%;
  display: inline-block;
  width: 45px;
  height: 2px;
  background-color: #F49E13;
}

.about-title:before {
  left: 0;
}

.about-title:after {
  right: 0;
}

@media screen and (max-width: 768px) {
  .page-id-108 .smb-section__title {
    font-size: 27px;
  }
}

@media screen and (max-width: 768px) {
  .page-id-108 .smb-section-break-the-grid__figure {
    margin-top: 20px;
  }
}

/* 全体のコンテナ */
.service-proposal-3 {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 20px;
}

/* 各サービス項目 */
.service-proposal-3__item {
  display: flex;
  align-items: center;
  background: #f8f9fa;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease-in-out;
}

.service-proposal-3__item:hover {
  transform: translateY(-5px);
}

/* テキスト部分 */
.service-proposal-3__text {
  flex: 1;
  padding: 20px;
}

/* 番号 */
.service-proposal-3__number {
  font-size: 18px;
  color: #F49E13;
  font-weight: bold;
  display: block;
  margin-bottom: 5px;
}

/* タイトル */
.service-proposal-3__title {
  font-size: 22px;
  font-weight: bold;
  color: #333;
  margin-bottom: 10px;
}

/* 説明文 */
.service-proposal-3__description {
  font-size: 16px;
  color: #555;
  line-height: 1.5;
}

/* 画像部分 */
.service-proposal-3__image {
  flex: 0 0 200px;
  text-align: center;
}

.service-proposal-3__image img {
  max-width: 100%;
  border-radius: 8px;
}

/* ホバー時のモディファイア */
.service-proposal-3__item--hover:hover {
  transform: translateY(-5px);
}

/* メインセクション */
.service-proposal-6 {
  position: relative;
  color: #555;
  padding: 80px 20px;
  text-align: center;
  overflow: hidden;
}

/* 疑似要素で大きな数字を表示 */
.service-proposal-6::before {
  content: "01";
  position: absolute;
  top: 15%;
  left: 20%;
  transform: translateX(-50%);
  font-size: 120px;
  font-weight: bold;
  color: #F49E13; /* 半透明の白 */
  z-index: 0;
}

/* 疑似要素で大きな数字を表示 */
.number-2::before {
  content: "02";
}

/* 疑似要素で大きな数字を表示 */
.number-3::before {
  content: "03";
}

/* コンテンツ全体 */
.service-proposal-6__content {
  position: relative;
  z-index: 1;
}

/* メインタイトル */
.service-proposal-6__title {
  font-size: 30px;
  font-weight: bold;
  margin-bottom: 15px;
}

/* 説明テキスト */
.service-proposal-6__description {
  font-size: 16px;
  line-height: 1.6;
  text-align: left;
}

/* 強調テキスト */
.service-proposal-6__description--highlight {
  color: #FFC107; /* 黄色 */
  font-weight: bold;
}

/* スマホ用のスタイル（768px以下） */
@media screen and (max-width: 768px) {
  .service-proposal-3 {
    padding: 0px; /* 余白を少し減らす */
    gap: 15px; /* 項目間のスペースを調整 */
  }
  .service-proposal-3__item {
    flex-direction: column; /* 縦並びにする */
    text-align: center; /* 文字を中央揃え */
    padding: 15px; /* 内側の余白を調整 */
  }
  .service-proposal-3__text {
    padding: 15px; /* テキストの余白を調整 */
  }
  .service-proposal-3__number {
    font-size: 16px; /* 番号のフォントサイズを少し縮小 */
  }
  .service-proposal-3__title {
    font-size: 20px; /* タイトルのフォントサイズを少し縮小 */
    margin-bottom: 8px; /* 余白を微調整 */
  }
  .service-proposal-3__description {
    font-size: 14px; /* 説明文のフォントサイズを少し縮小 */
    line-height: 1.6; /* 行間を広げて可読性を向上 */
  }
  .service-proposal-3__image {
    flex: 0 0 auto;
    margin-top: 10px; /* 画像とテキストの間の余白を調整 */
  }
  .service-proposal-3__image img {
    max-width: 100%; /* 画像サイズを調整（100%→80%） */
    border-radius: 8px;
  }
  /* ホバーアニメーションをモバイルでは無効化 */
  .service-proposal-3__item:hover {
    transform: none;
  }
  .service-proposal-6 {
    padding: 50px 15px 5px; /* 余白を調整 */
  }
  .service-proposal-6::before {
    font-size: 50px; /* 数字のサイズを縮小 */
    top: 10%; /* 位置を少し上に調整 */
    left: 10%; /* 左端に寄せる */
  }
  .service-proposal-6__title {
    font-size: 24px; /* タイトルのフォントサイズを調整 */
    margin-bottom: 10px; /* 余白を微調整 */
  }
  .service-proposal-6__description {
    font-size: 14px; /* 説明テキストのフォントサイズを調整 */
    line-height: 1.5; /* 読みやすく行間を調整 */
    text-align: center; /* スマホでは中央揃え */
  }
  .service-proposal-6__description--highlight {
    font-size: 14px; /* 強調テキストのサイズも調整 */
  }
  .service-column-reverse {
    flex-direction: column-reverse;
  }
}
.split-feature {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 900px;
  margin: auto;
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

.split-feature-content {
  width: 50%;
  padding-right: 20px;
}

.split-feature-number {
  background: #F49E13;
  color: white;
  padding: 5px 15px;
  font-weight: bold;
  border-radius: 20px;
  display: inline-block;
}

.split-feature-title {
  margin-top: 10px;
  font-size: 20px;
  font-weight: bold;
}

.split-feature-text {
  font-size: 16px;
}

.split-feature-image {
  width: 50%;
}

.split-feature-image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

.feature-center {
  width: 50%;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 767px) {
  .split-feature {
    flex-direction: column; /* スマホでは縦並び */
    text-align: center; /* テキストを中央揃え */
    padding: 15px; /* 余白を調整 */
  }
  .split-feature-content {
    width: 100%; /* 幅を100%に */
    padding-right: 0; /* 右の余白をなくす */
    padding-bottom: 15px; /* テキストと画像の間に余白を追加 */
  }
  .split-feature-number {
    font-size: 14px; /* 番号のフォントサイズを調整 */
    padding: 5px 12px; /* 余白を調整 */
  }
  .split-feature-title {
    font-size: 18px; /* タイトルのフォントサイズを調整 */
    margin-top: 8px; /* 余白を微調整 */
  }
  .split-feature-text {
    font-size: 14px; /* 説明文のフォントサイズを調整 */
    line-height: 1.6; /* 可読性向上のため行間を広げる */
  }
  .split-feature-image {
    width: 100%; /* 画像の幅を100%に */
  }
  .split-feature-image img {
    width: 100%; /* 画像を親要素の幅いっぱいに */
    height: auto;
    border-radius: 10px;
  }
  .feature-center {
    width: 100%;
  }
}
.cp_card05 {
  display: block;
  text-decoration: none;
  color: inherit;
  position: relative;
  overflow: hidden;
  min-height: 330px;
  border-radius: 3px;
  background: url(img/AdobeStock_472157263.jpeg) center/cover no-repeat;
  background-color: #ffffff;
  -webkit-box-shadow: 0 3px 7px -3px rgba(0, 0, 0, 0.3);
  box-shadow: 0 3px 7px -3px rgba(0, 0, 0, 0.3);
}

.cp_card05-2 {
  background: url(img/AdobeStock_558237102.jpeg) center/cover no-repeat;
}

.cp_card05 .description {
  position: absolute;
  bottom: 0;
  width: 100%;
  color: #ffffff;
  background: rgba(0, 0, 0, 0.4);
  transform: translateY(0); /* テキストを常に表示 */
  /* animation-delay プロパティを削除または 0s に設定 */
}
@media screen and (max-width: 768px) {
  .cp_card05 .description {
    bottom: -50px;
  }
}

.cp_card05 .description .content {
  position: relative;
  z-index: 1;
  padding: 1em;
  text-align: left;
}

.cp_card05 .description .author {
  font-size: 12px;
}

.cp_card05 .description h3 {
  font-size: 1.4em;
  margin-top: 10px;
}

.cp_card05 .description h3 a {
  color: #ffffff;
  text-decoration: none;
}

.cp_card05 .description .text {
  height: 3em;
  margin: 0;
}

.cp_card05 .description .button {
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  position: relative;
  display: block;
  width: 100px;
  text-align: center;
  color: #ffffff;
  text-decoration: none;
  margin-left: auto;
}

.cp_card05 .description .button::after {
  position: absolute;
  top: 50%;
  right: -10px;
  font-family: FontAwesome;
  content: "\f061";
  transition: all 0.3s;
  transform: translate(0, -50%);
  opacity: 0;
}

.cp_card05 .description .button:hover::after {
  transform: translate(5px, -50%);
  opacity: 1;
}

.cp_card05 .meta {
  float: right;
  margin: 0;
  padding: 0;
  list-style-type: none;
}

.cp_card05 .meta::before,
.cp_card05 .meta::after {
  display: table;
  content: "";
}

.cp_card05 .meta::after {
  clear: both;
}

.cp_card05 .meta li {
  position: relative;
  display: inline-block;
  margin: 0 5px;
}

.cp_card05 .meta a {
  color: #ffffff;
  text-decoration: none;
}

.cp_card05 .meta span {
  font-size: 10px;
  position: absolute;
  top: 0;
  left: 50%;
  transition: all 0.3s;
  transform: translate(-50%, 0);
  opacity: 0;
}

@media (max-width: 767px) {
  .cp_card05 .description .content {
    padding: 0.8em; /* スマホ用に少し余白を小さく */
  }
  .cp_card05 .description h3 {
    font-size: 1.2em; /* タイトルのフォントサイズを少し小さく */
    margin-top: 8px;
  }
  .cp_card05 .description .text {
    height: auto; /* 高さを自動調整 */
    font-size: 14px;
  }
  .cp_card05 .description .button {
    font-size: 14px;
    bottom: 50px; /* 指定の位置を適用 */
  }
  .cp_card05 .description .button::after {
    right: -8px; /* アイコンの位置を微調整 */
  }
  .cp_card05 .description .button:hover::after {
    transform: translate(3px, -50%);
  }
}
@media screen and (max-width: 480px) {
  .cp_card05 .description .text {
    height: 6em;
  }
}
@media screen and (max-width: 768px) {
  .case__mv {
    min-height: 300px !important;
  }
}

.p-comments,
.p-trackbacks {
  display: none;
}

.c-entry-summary__term {
  width: 100px;
  text-align: center;
  background-color: #0E7DDF;
  color: #FFFFFF;
}

@keyframes horizontal-animation {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
.slider-container {
  display: flex;
}

.slider-wrapper {
  display: flex;
  animation: horizontal-animation 30s linear infinite;
}

.slide {
  width: 200px;
  margin-right: 20px;
}
@media screen and (max-width: 768px) {
  .slide {
    width: 150px;
    margin-right: 10px;
  }
}

.slide img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}

/* セクション全体のレイアウト */
.contact-contents-3 {
  display: flex;
  justify-content: space-between; /* 横並び & 均等配置 */
  align-items: center;
  padding: 40px 0px 0 0;
}

/* ボタン */
.contact-contents-3__button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100px;
  height: 100px;
  border-radius: 8px;
  border: 1px solid #0E7DDF;
  text-decoration: none;
  transition: background 0.3s ease-in-out, filter 0.3s ease-in-out;
  background: rgba(131, 199, 254, 0.431372549);
}

/* ボタンのアイコン */
.contact-contents-3__button-icon {
  font-size: 20px;
  color: #0E7DDF;
  font-weight: bold;
}

/* ホバー時のアニメーション */
.contact-contents-3__button:hover {
  background: #0E7DDF;
}

.contact-contents-3__button:hover .contact-contents-3__button-icon {
  color: #ffffff;
}

/* 追加部分のスタイル */
.contact-contents-3__info {
  display: flex;
  align-items: center;
}

.contact-contents-3__info-text {
  margin-right: 20px; /* ボタンとの間隔を設定 */
  font-size: 25px; /* テキストのサイズ */
  font-weight: bold; /* フォントの太さ */
}

/* タイトルテキスト */
.contact-txt {
  font-size: 40px;
  font-weight: bold;
}

@media (max-width: 767px) {
  .contact-contents-3 {
    flex-direction: column; /* スマホでは縦並びに */
    text-align: center; /* テキストを中央揃え */
    align-items: flex-start; /* 左揃え */
  }
  .contact-contents-3__info {
    display: flex;
    justify-content: space-between;
    align-items: center; /* 真ん中配置 */
    width: 100%; /* 幅を100%に */
    margin-top: 20px; /* ボタンとの間隔を確保 */
  }
  .contact-contents-3__info-text {
    margin-right: 0; /* 横の間隔をなくす */
    margin-bottom: 20px; /* 下に少し余白をつける */
    font-size: 20px; /* フォントサイズを調整 */
  }
  .contact-contents-3__button {
    width: 80px; /* ボタンのサイズを調整 */
    height: 80px;
  }
  .contact-contents-3__button-icon {
    font-size: 18px; /* アイコンのサイズを調整 */
  }
}
body.page-id-101 .wp-block-snow-monkey-blocks-section.smb-section.smb-section--fit:has(#contact) {
  padding-top: 0;
  margin-top: 0;
}

.company-info {
  margin-left: auto;
  margin-right: auto;
}

.about-gallery-pic img {
  height: 430px;
  object-fit: cover;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .about-gallery-pic img {
    height: 330px;
    object-fit: cover;
    width: 100% !important;
  }
}

.l-footer {
  border-top: none;
}

.footer-proposal-6__tel {
  color: #000;
  display: block;
  margin-top: 5px;
}

.footer-proposal-6__menu-item a {
  border-bottom: 1px solid #0E7DDF;
  padding-bottom: 3px;
}
.footer-proposal-6__menu-item a:hover {
  opacity: 0.7;
  color: #0E7DDF;
}

.footer-contact-menu {
  border-bottom: 1px solid #F49E13;
}
.footer-contact-menu:hover {
  opacity: 0.7;
  color: #F49E13;
}

.l-footer-widget-area {
  background-color: #CAE7FF;
}

.footer-proposal-6 {
  padding: 30px 5%;
}

.footer-proposal-6__container {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-proposal-6__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
}

.footer-proposal-6__left {
  display: flex;
  flex-direction: column;
  align-items: baseline;
  width: 30%;
}

.footer-proposal-6__logo {
  max-height: 30px;
  margin-bottom: 10px;
}

.footer-proposal-6__social {
  display: flex;
  gap: 15px;
}

.footer-proposal-6__social-link {
  color: #000;
  font-size: 1.5rem;
  text-decoration: none;
}

.footer-proposal-6__social-link:hover {
  opacity: 0.7;
}

.footer-proposal-6__nav {
  flex: 1;
  text-align: right;
}

.footer-proposal-6__menu {
  list-style: none;
  padding: 0;
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.footer-proposal-6__menu-item {
  display: inline-block;
}

.footer-proposal-6__menu-group {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

.footer-proposal-6__tel {
  color: #000;
}

.footer-proposal-6__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.footer-proposal-6__copyright {
  font-size: 0.8rem;
}

.footer-proposal-6__policy {
  display: flex;
  gap: 15px;
}

.footer-proposal-6__policy-link {
  color: #000;
  text-decoration: none;
  font-size: 0.9rem;
}

.footer-proposal-6__policy-link:hover {
  text-decoration: underline;
}

.c-copyright {
  display: none;
}

@media (max-width: 767px) {
  .footer-proposal-6 {
    padding: 20px 3%; /* 余白を調整 */
  }
  .footer-proposal-6__container {
    gap: 15px; /* セクション間の間隔を少し狭める */
  }
  .footer-proposal-6__top {
    flex-direction: column; /* 縦並びに */
    align-items: center; /* センター寄せ */
    text-align: center; /* テキストを中央揃え */
  }
  .footer-proposal-6__left {
    width: 100%; /* 幅を100%に */
    align-items: center; /* 中央配置 */
  }
  .footer-proposal-6__logo {
    max-height: 25px; /* ロゴのサイズを少し小さく */
    margin-bottom: 8px; /* 下の余白を調整 */
  }
  .footer-proposal-6__social {
    justify-content: center; /* ソーシャルアイコンを中央揃え */
  }
  .footer-proposal-6__nav {
    flex: unset;
    width: 100%;
    text-align: center; /* メニューを中央揃え */
  }
  .footer-proposal-6__menu {
    justify-content: center; /* メニュー項目を中央揃え */
    gap: 10px; /* メニュー間の間隔を調整 */
    flex-wrap: wrap;
  }
  .footer-proposal-6__menu-group {
    align-items: center; /* グループ内を中央揃え */
  }
  .footer-proposal-6__bottom {
    flex-direction: column; /* 縦並びに */
    text-align: center;
    gap: 10px; /* 間隔を確保 */
  }
  .footer-proposal-6__policy {
    justify-content: center; /* プライバシーポリシーを中央揃え */
  }
  .c-copyright {
    display: block; /* モバイルでは表示 */
    text-align: center;
    font-size: 0.8rem;
  }
  .footer-proposal-6__policy-link {
    font-size: 0.6rem;
  }
}
/*デザインcss↓*/
.box_con02 {
  max-width: 900px;
  margin: 0 auto;
}

@media only screen and (max-width: 768px) {
  .box_con02 {
    width: 95%;
  }
}
.box_con02 form {
  width: 100%;
}

.box_con02 form table {
  width: 100%;
}

.box_con02 form table tr {
  position: relative;
}

.box_con02 form table tr:first-child td:before {
  content: "";
  position: absolute;
  width: 100%;
  left: 0;
  top: 0;
  height: 1px;
  border-bottom: solid 1px #ccc;
}

@media only screen and (max-width: 768px) {
  .box_con02 form table tr:first-child td:before {
    display: none;
  }
}
.box_con02 form table tr th {
  width: 30%;
  text-align: left;
  font-weight: normal;
  padding: 1em;
  background: #FFF9EF;
  position: relative;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

@media only screen and (max-width: 768px) {
  .box_con02 form table tr th {
    text-align: center;
    width: 100%;
    display: block;
    padding: 0.8em 0.2em;
  }
}
.box_con02 form table tr th span {
  background: #F49E13;
  padding: 0.3em;
  color: #fff;
  margin-left: 0.5em;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.box_con02 form table tr th:after {
  content: "";
  position: absolute;
  width: 100%;
  left: 0;
  bottom: 0;
  height: 1px;
  border-bottom: solid 1px #ccc;
}

.box_con02 form table tr td {
  position: relative;
  padding: 1em 0.5em;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

@media only screen and (max-width: 768px) {
  .box_con02 form table tr td {
    padding: 1.5em 0.5em;
    display: block;
    width: 100%;
  }
}
.box_con02 form table tr td:after {
  content: "";
  position: absolute;
  width: 100%;
  left: 0;
  bottom: 0;
  height: 1px;
  border-bottom: solid 1px #ccc;
}

.box_con02 form table tr .box_br {
  display: block;
}

.box_con02 form table tr select, .box_con02 form table tr textarea, .box_con02 form table tr .wide {
  width: 100%;
  height: 3em;
  padding: 0.5em;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border: 1px solid grey;
}

.box_con02 form table tr textarea {
  height: 10em;
}

/*プライバシーのデザインcss↓*/
.con_pri {
  max-width: 700px;
  margin: 0 auto;
}

@media only screen and (max-width: 768px) {
  .con_pri {
    width: 95%;
  }
}
.con_pri .box_pri {
  height: 300px;
  overflow-y: scroll;
  border: 1px solid #ccc;
  background: #f7f7f7;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin-top: 20px;
  padding: 20px 55px;
}

@media only screen and (max-width: 768px) {
  .con_pri .box_pri {
    margin-top: 4%;
    padding: 3%;
  }
}
@media only screen and (min-width: 769px) and (max-width: 1024px) {
  .con_pri .box_pri {
    padding: 4%;
  }
}
.con_pri .box_pri .box_tori {
  text-align: left;
  margin-top: 40px;
}

@media only screen and (max-width: 768px) {
  .con_pri .box_pri .box_tori {
    margin-top: 4%;
  }
}
.con_pri .box_pri .box_tori h4 {
  font-weight: normal;
  margin-bottom: 30px;
}

@media only screen and (max-width: 768px) {
  .con_pri .box_pri .box_tori h4 {
    margin-bottom: 4%;
  }
}
.con_pri .box_pri .box_tori .txt {
  padding: 0 20px;
  font-size: 12px;
}

@media only screen and (max-width: 768px) {
  .con_pri .box_pri .box_tori .txt {
    padding: 0;
  }
}
.con_pri .box_pri .box_num {
  margin-top: 30px;
}

@media only screen and (max-width: 768px) {
  .con_pri .box_pri .box_num {
    margin-top: 5%;
  }
}
.con_pri .box_pri .box_num h4 {
  font-weight: normal;
}

.con_pri .box_pri .box_num .txt {
  padding: 10px 0 0 20px;
  font-size: 12px;
}

@media only screen and (max-width: 768px) {
  .con_pri .box_pri .box_num .txt {
    padding: 3% 0 0 3%;
  }
}
.box_check {
  text-align: center;
  margin: 1em auto;
}

.box_check label {
  display: inline-block;
}

.box_check label span {
  margin-left: 0.3em;
}

.btn {
  text-align: center;
}

.btn input {
  display: inline-block;
  background: #0E7DDF;
  padding: 0.5em 4em;
  color: #ffffff;
  text-decoration: none;
  cursor: pointer;
  border: none;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}

.btn input:hover {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=70);
  opacity: 0.7;
}

.form-group-contents {
  display: block;
  margin: 0 auto;
  max-width: 1000px;
  width: 100%;
}

.form-group {
  display: flex;
  max-width: 800px;
  width: 100%;
  margin: 20px auto;
  align-items: center;
  gap: 80px;
}
@media screen and (max-width: 768px) {
  .form-group {
    display: block;
  }
}
.form-group label {
  font-weight: bold;
  margin-bottom: 8px;
}
.form-group .form-label {
  min-width: 200px;
  font-weight: bold;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .form-group .form-label {
    margin-bottom: 6px;
  }
}
.form-group .contact-input,
.form-group .contact-textarea {
  width: 560px;
  padding: 10px;
  border: 1px solid #ccc;
  background-color: #f5f3f3;
}
.form-group .contact-textarea {
  height: 150px;
}

.wpcf7-form-control.wpcf7-checkbox.wpcf7-validates-as-required.contact-form {
  margin-left: -20px;
  display: flex;
  padding-top: 10px;
}
@media screen and (max-width: 768px) {
  .wpcf7-form-control.wpcf7-checkbox.wpcf7-validates-as-required.contact-form {
    flex-direction: column;
  }
}

.form-group--submit {
  display: flex;
  justify-content: center;
}

.form-group--submit .form-field {
  display: block;
  text-align: center;
}

.wpcf7-form-control.wpcf7-submit.has-spinner.submit-btn {
  background-color: #0E7DDF;
  max-width: 160px;
  width: 100%;
  margin: 20px auto;
  display: inline-block;
  cursor: pointer;
}

.form-group--textarea {
  align-items: baseline;
}
.form-group--textarea .form-label p {
  padding-top: 10px;
}

/* チェックボックスを丸くするカスタムCSS */
input[type=checkbox] {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 20px;
  height: 20px;
  border: 2px solid #999;
  border-radius: 50%;
  background-color: #fff;
  position: relative;
  cursor: pointer;
  vertical-align: middle;
  margin-right: 6px; /* ラベルとの間に余白 */
  transition: 0.2s;
}

input[type=checkbox]:checked::after {
  content: "";
  position: absolute;
  top: 4px;
  left: 4px;
  width: 8px;
  height: 8px;
  background-color: black;
  border-radius: 50%;
}

.wpcf7-list-item {
  display: inline-flex;
  align-items: center;
}

.wpcf7-list-item-label {
  align-items: center;
}

.view-more {
  display: inline-block;
  width: 190px;
  padding: 14px 10px 14px 14px;
  background-color: #0E7DDF;
  color: #FFFFFF;
  position: relative;
  font-size: 18px;
  transition: 0.3s;
}
.view-more:hover {
  text-decoration: none;
  background-color: #19B0ED;
}
.view-more:hover::before {
  width: 0;
}
.view-more:hover::after {
  height: 0;
}
.view-more::before {
  content: "";
  position: absolute;
  bottom: -7px;
  right: -7px;
  width: 100%;
  height: 2px;
  background-color: #0E7DDF;
  transition: 0.2s ease 0s;
}
.view-more::after {
  content: "";
  position: absolute;
  top: 7px;
  right: -7px;
  width: 2px;
  height: 100%;
  background-color: #0E7DDF;
  transition: 0.2s ease 0.2s;
}

.view-more-wrapper {
  display: flex;
  justify-content: right;
}

.form-group--privacy {
  max-width: 300px;
}
.form-group--privacy p {
  margin-left: -20px;
}

.wpcf7 form.invalid .wpcf7-response-output {
  border-color: #0E7DDF;
}

.privacy-company-info {
  margin-top: 30px;
}

.form-group-required {
  color: #FFFFFF;
  background-color: #19B0ED;
  padding: 4px 8px;
  text-align: center;
  margin-right: 16px;
  width: 50px;
}

.form-label-no-required {
  padding-left: 66px;
}
@media screen and (max-width: 768px) {
  .form-label-no-required {
    padding-left: 0;
  }
}

.wp-block-search__inside-wrapper, .wp-block-search__input {
  background-color: #F5F5F5;
}

.wp-block-search__inside-wrapper {
  border: 1px solid #262626;
}

.section-title {
  font-size: 24px;
  text-align: center;
  font-weight: bold;
}

.post-page-title {
  font-size: 36px;
  position: relative;
  line-height: 1.3;
}
.post-page-title::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  left: 0;
  background-color: #0E7DDF;
  bottom: -10px;
}

.c-entry-summary__title {
  color: black;
}

.tax-profession__title {
  margin-top: 100px;
  text-align: center;
  font-size: 2rem;
}

.c-entry__header {
  margin-top: 20px;
  position: relative;
}
.c-entry__header::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 1px;
  background-color: black;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.tax-profession .c-entry__header,
.tax-profession .entry-header {
  display: block;
  font-size: 28px;
  font-weight: bold;
  margin-top: 40px;
}

.c-entry {
  margin: 0px auto;
}

.archive .c-entry {
  max-width: 1280px;
}

.l-contents__sidebar,
#contents_sidebar,
aside[role=complementary] {
  display: none !important;
  width: 0 !important;
  padding: 0 !important;
  margin: 0 !important;
}

.business-tax-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 100px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 40px 0;
}
@media screen and (max-width: 768px) {
  .business-tax-list {
    grid-template-columns: repeat(2, 1fr);
    padding: 0;
    gap: 50px;
  }
}

.business-tax-list li {
  margin: 10px 0;
  line-height: 1.6;
  align-content: center;
}
.business-tax-list li span.term-name {
  display: block;
  border-bottom: 1px solid #0E7DDF;
  font-size: 1rem;
  font-weight: bold;
}
.business-tax-list li span.term-slug {
  display: block;
  font-size: 0.9rem;
  color: #666;
}

.c-entry-summary__meta {
  display: none;
}

@media screen and (max-width: 768px) {
  .wp-block-group.is-content-justification-center.is-nowrap.is-layout-flex.wp-container-core-group-is-layout-23441af8.wp-block-group-is-layout-flex {
    flex-direction: column;
  }
}

.c-entries {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
  padding: 0 20px;
}
@media screen and (max-width: 768px) {
  .c-entries {
    grid-template-columns: 1fr;
    padding: 0;
  }
}

.c-entries__item {
  max-width: 380px;
  width: 100%;
  margin: 0 auto;
}

.original-subtitle {
  background-color: #19B0ED;
  color: #FFFFFF;
  text-align: center;
  padding: 16px 24px;
  max-width: 980px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .original-subtitle {
    font-size: 18px;
    padding: 10px;
  }
}

.smb-section--fit {
  padding-bottom: 40px;
}

.title p {
  text-align: center;
  margin: 60px 0 0 0;
}

@media (max-width: 768px) {
  .title {
    font-size: 1.8rem;
  }
}


.original-title {
  padding-bottom: 40px;
}

.original-contents-customize {
  text-align: center;
  margin: 20px 0;
  padding: 50px 0;
}

.original-contents-customize-title {
  font-weight: bold;
  font-size: 40px;
}

/*
.c-entries--rich-media {
    --entries--item-width: calc(100% / 3) !important;
  }
 */
body.page-id-511 .wp-block-snow-monkey-blocks-section.smb-section.smb-section--fit {
  padding-top: 20px;
}

.original-section {
  position: relative;
}
.original-section::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 1px;
  background-color: black;
  top: -40px;
}
.original-section::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 1px;
  background-color: black;
  bottom: -60px;
}

.original-btn {
  background-color: #0E7DDF;
  color: #FFFFFF;
  max-width: 330px;
  width: 100%;
  padding: 17px;
  text-align: center;
  align-items: center;
  display: inline-block;
  margin: 40px auto;
  font-size: 24px;
  transition: 0.3s;
  position: relative;
}
.original-btn:hover {
  text-decoration: none;
  background-color: #19B0ED;
}
.original-btn:hover::before {
  width: 0;
}
.original-btn:hover::after {
  height: 0;
}
.original-btn::before {
  content: "";
  position: absolute;
  bottom: -7px;
  right: -7px;
  width: 100%;
  height: 2px;
  background-color: #0E7DDF;
  transition: 0.2s ease 0s;
}
.original-btn::after {
  content: "";
  position: absolute;
  top: 7px;
  right: -7px;
  width: 2px;
  height: 100%;
  background-color: #0E7DDF;
  transition: 0.2s ease 0.2s;
}

br.sp-only {
  display: none;
}
@media screen and (max-width: 768px) {
  br.sp-only {
    display: inline;
  }
}

.works-page-section-title {
  font-size: 24px;
  font-weight: bold;
  text-align: center;
}

/*body.page-id-111 .l-article-top-widget-area {
    display: none !important;
  }
  body.page-id-511 .l-article-top-widget-area {
    display: none !important;
  }*/
.smb-taxonomy-terms__list {
  display: flex;
  gap: 60px;
  border-bottom: 1px solid #009CDB;
}

.smb-tabs__tab[aria-selected=true] {
  --smb-tabs--tab-border-color:#0000;
}

.smb-tab-panel {
  border-right: none;
  border-bottom: none;
  border-left: none;
}
@media screen and (max-width: 768px) {
  .smb-tab-panel {
    padding: 40px 0;
  }
}

.smb-tabs__tab[aria-selected=true] {
  border-bottom: 1px solid #009CDB !important;
}

body.page-id-111 .wp-block-snow-monkey-blocks-container.smb-container.c-container {
  padding: 0;
}/*# sourceMappingURL=style.css.map */

/* 横並び用ラッパー：右寄せ＆間隔 */
.view-more-container {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 20px;
  margin-top: 20px;
  flex-wrap: nowrap;
}

/* 共通ボタンスタイル */
.view-more-wrapper a {
  box-sizing: border-box;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "Georgia", serif;
  font-weight: bold;
  text-decoration: none;
  border-radius: 4px;
  line-height: 1;
  white-space: nowrap;
  position: relative;
  z-index: 0;
  transition: all 0.3s ease-in-out;
  height: 52px;            /* ✅ 高さを統一 */
  font-size: 18px;         /* ✅ フォント18pxで固定 */
}

/* --- VIEW MOREボタン --- */
.view-more1 {
  width: 190px;
  padding: 0 18px;
  background-color: #0E7DDF;
  color: #FFFFFF;
  text-align: center;
}
.view-more1:hover {
  background-color: #19B0ED;
  text-decoration: none;
}

/* 装飾（枠のアニメーション） */
.view-more1::before,
.view-more1::after,{
  content: "";
  position: absolute;
  right: -7px;
  background-color: #0E7DDF;
  transition: width 0.2s ease, height 0.2s ease;
  z-index: -1;
  pointer-events: none;
}

/* VIEW MOREの枠 */
.view-more1::before {
  bottom: -7px;
  width: 100%;
  height: 2px;
}
.view-more1::after {
  top: 7px;
  width: 2px;
  height: 100%;
}
.view-more1:hover::before { width: 0; }
.view-more1:hover::after  { height: 0; }

/* ============================= */
/* ▼ タブレット・スマホ対応（768px以下）*/
/* ============================= */
@media screen and (max-width: 768px) {
  .view-more-container {
    flex-direction: column;  /* ✅ 縦並び */
    align-items: center;     /* ✅ 中央寄せ */
    gap: 12px;
    margin-top: 16px;
    text-align: center;
  }

  .view-more-wrapper p {
    font-size: 14px;
    margin: 0;
  }

  .view-more-wrapper a {
    width: 100%;             /* ✅ 中央寄せ + 幅可変 */
    max-width: 280px;       /* デザイン崩れ防止 */
    text-align: center;
    font-size: 13px;
    height: 46px;
  }

  /* ✅ PC用テキストを非表示 */
  .text-pc {
    display: none;
  }

  /* ✅ SP用テキストを表示 */
  .text-sp {
    display: block;
	font-weight:bold;
  }
}

/* ============================= */
/* ▼ PC表示用（769px以上）*/
/* ============================= */
@media screen and (min-width: 769px) {
  .text-pc {
    display: block;
  }
  .text-sp {
    display: none;
  }
}

@media (max-width: 430px) {
  .c-entry-summary__figure img {
    object-fit: contain !important;   /* 切らない */
    object-position: center center !important;
    background: #fff;                  /* 余白の下地（任意） */
  }
}

@media (max-width: 768px) {
  .smb-tabs__tabs .smb-tabs__tab-wrapper {
    position: relative; /* 相対位置を基準にする */
  }

  /* 最初のタブ以外に ＞ を表示 */
  .smb-tabs__tabs .smb-tabs__tab-wrapper:not(:first-child)::before {
    content: "\003E"; /* > */
    position: absolute;
    left: -0.6em; /* ここで間隔を調整 */
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.2em;
    color: #0E7DDF;
    pointer-events: none;
  }
}


.c-entry-summary__title {
    font-weight: bold;
    font-size: 15px;
}






/* ========= 検索フォーム / 共通 ========= */
.business-tax-search {
  --bt-radius: 12px;
  --bt-gap: 10px;
  --bt-pad: 12px 14px;
  --bt-font: clamp(14px, 1.6vw, 16px);
  --bt-border: 1px solid #e5e7eb;   /* #e5e7eb = gray-200 */
  --bt-border-focus: 2px solid #2563eb; /* #2563eb = blue-600 */
  --bt-bg: #ffffff;
  --bt-bg-alt: #f9fafb;             /* gray-50 */
  --bt-text: #111827;               /* gray-900 */
  --bt-text-weak: #6b7280;          /* gray-500 */
  --bt-shadow: 0 4px 14px rgba(0, 0, 0, .07);

  width: 100%;
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: var(--bt-gap);
  align-items: center;
  margin: 16px 0 20px;
  font-size: var(--bt-font);
}

/* モバイルは縦積み */
@media (max-width: 640px) {
  .business-tax-search {
    grid-template-columns: 1fr;
  }
}

/* ========= 入力欄 ========= */
.business-tax-search input[type="search"] {
  appearance: none;
  width: 100%;
  padding: var(--bt-pad);
  border: var(--bt-border);
  border-radius: var(--bt-radius);
  background: var(--bt-bg);
  color: var(--bt-text);
  box-shadow: none;
  transition: box-shadow .2s, border-color .2s, background-color .2s;
  background-image:
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><circle cx='11' cy='11' r='8'/><line x1='21' y1='21' x2='16.65' y2='16.65'/></svg>");
  background-repeat: no-repeat;
  background-position: 12px 50%;
  padding-left: 42px; /* アイコン分 */
}

/* placeholder */
.business-tax-search input[type="search"]::placeholder {
  color: var(--bt-text-weak);
  opacity: .9;
}

/* フォーカス */
.business-tax-search input[type="search"]:focus {
  outline: none;
  border: var(--bt-border-focus);
  box-shadow: var(--bt-shadow);
}

/* ========= ボタン ========= */
.business-tax-search button[type="submit"] {
  appearance: none;
  padding: var(--bt-pad);
  border-radius: var(--bt-radius);
  border: 0;
  background: #2563eb;   /* blue-600 */
  color: #fff;
  font-weight: 700;
  cursor: pointer;
  transition: transform .02s ease, filter .2s ease, box-shadow .2s;
  box-shadow: 0 6px 16px rgba(37, 99, 235, .22);
  white-space: nowrap;
}
.business-tax-search button[type="submit"]:hover {
  filter: brightness(1.05);
}
.business-tax-search button[type="submit"]:active {
  transform: translateY(1px);
}
.business-tax-search button[type="submit"]:disabled {
  opacity: .6;
  cursor: not-allowed;
  box-shadow: none;
}

/* ========= クリア（リンクを“ゴーストボタン”風に） ========= */
.business-tax-search .business-tax-reset {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--bt-pad);
  border-radius: var(--bt-radius);
  border: var(--bt-border);
  background: var(--bt-bg-alt);
  color: var(--bt-text-weak);
  text-decoration: none;
  transition: background-color .2s, color .2s, box-shadow .2s, border-color .2s;
  white-space: nowrap;
}
.business-tax-search .business-tax-reset:hover {
  background: #eef2ff;       /* indigo-50 */
  color: #374151;            /* gray-700 */
  border-color: #c7d2fe;     /* indigo-200 */
  box-shadow: 0 4px 14px rgba(99, 102, 241, .18);
}


