@charset "UTF-8";
/*
    Template: swell
    Theme Name: SWELL CHILD
    Theme URI: https://swell-theme.com/
    Description: SWELLの子テーマ
    Version: 1.0.0
    Author: LOOS WEB STUDIO
    Author URI: https://loos-web-studio.com/

    License: GNU General Public License
    License URI: http://www.gnu.org/licenses/gpl.html
*/
/*
    フレーズ
*/
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;700&display=swap");
/*
    header
*/
.c-gnav .menu-item a .ttl {
  font-size: 15px;
}

.lead-section-wrapper {
  font-family: "Noto Sans JP", sans-serif;
  padding: 60px 20px;
  text-align: center;
}

.lead-main-phrase {
  font-size: 28px;
  font-weight: 700;
  color: #333;
  line-height: 1.6;
  letter-spacing: 1.5px;
  margin: 0;
}

.lead-divider {
  width: 80px;
  height: 2px;
  background-color: #3498db;
  border: none;
  margin: 25px auto !important;
}

.lead-sub-phrase {
  font-size: 17px;
  color: #555;
  line-height: 1.8;
  max-width: 600px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .lead-section-wrapper {
    padding: 40px 20px;
  }
  .lead-main-phrase {
    font-size: 22px;
    letter-spacing: 1px;
  }
  .lead-sub-phrase {
    font-size: 15px;
  }
}
/*
    事業内容
*/
.biz-section-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px 20px;
}

.biz-section-title {
  text-align: center;
  font-size: 28px;
  margin-bottom: 40px;
  font-weight: bold;
}

.biz-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.biz-card {
  background-color: #ffffff;
  border: 1px solid #e9e9e9;
  border-radius: 8px;
  text-align: center;
  padding: 24px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.biz-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.biz-card-img-container {
  width: 100%;
  padding-top: 66.66%; /* 画像のアスペクト比を3:2に保つ */
  position: relative;
  border-radius: 6px;
  overflow: hidden; /* 角丸を画像に適用 */
}

.biz-card-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.biz-card-title {
  font-size: 20px;
  font-weight: bold;
  margin-top: 20px;
  margin-bottom: 10px;
  color: #333;
}

.biz-card-text {
  font-size: 15px;
  line-height: 1.7;
  color: #555;
  flex-grow: 1; /* テキストエリアを伸ばしてボタンの位置を揃える */
  margin-bottom: 20px;
}

.biz-card-btn {
  display: inline-block;
  padding: 12px 24px;
  border: 2px solid #007bff;
  color: #007bff;
  background-color: #fff;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s, color 0.3s;
}

.biz-card-btn:hover {
  background-color: #007bff; /* ホバー時に背景色を変更 */
  color: #fff; /* ホバー時に文字色を変更 */
}

/* スマートフォン表示用のスタイル (768px以下で適用) */
@media (max-width: 768px) {
  .biz-section-title {
    font-size: 22px;
  }
  .biz-grid {
    grid-template-columns: 1fr; /* カードを縦に1列にする */
    gap: 25px;
  }
  .biz-card {
    padding: 20px;
  }
  .biz-card-title {
    font-size: 18px;
  }
  .biz-card-text {
    font-size: 14px;
  }
}
/* PC表示用のスタイル */
.biz-section-container {
  max-width: 1100px;
  /* SWELLのコンテンツ幅に合わせる */
  margin: 0 auto;
  padding: 40px 20px;
}

.biz-section-title {
  text-align: center;
  font-size: 28px;
  /* 見出しのフォントサイズ */
  margin-bottom: 40px;
  font-weight: bold;
}

.biz-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  /* 横に2つのカードを並べる */
  gap: 30px;
  /* カード間の余白 */
}

.biz-card {
  background-color: #ffffff;
  border: 1px solid #e9e9e9;
  border-radius: 8px;
  /* カードの角丸 */
  text-align: center;
  padding: 24px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  /* カードに影をつける */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  /* ホバー時のアニメーション */
  display: flex;
  flex-direction: column;
  /* カード内の要素を縦に並べる */
}
.biz-card:hover {
  transform: translateY(-5px);
  /* ホバー時に少し浮き上がる */
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.biz-card-img-container {
  width: 100%;
  padding-top: 66.66%;
  /* 画像のアスペクト比を3:2に保つ */
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  /* 角丸を画像に適用 */
}

.biz-card-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  /* 画像をコンテナに合わせてトリミング */
}

.biz-card-title {
  font-size: 20px;
  font-weight: bold;
  margin-top: 20px;
  margin-bottom: 10px;
  color: #333;
}

.biz-card-text {
  font-size: 15px;
  line-height: 1.7;
  color: #555;
  flex-grow: 1;
  /* テキストエリアを伸ばしてボタンの位置を揃える */
  margin-bottom: 20px;
}

.biz-card-btn {
  display: inline-block;
  padding: 12px 24px;
  border: 2px solid #007bff;
  /* ボタンの枠線 */
  color: #007bff;
  /* ボタンの文字色 */
  background-color: #fff;
  border-radius: 50px;
  /* ボタンを角丸にする */
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s, color 0.3s;
}
.biz-card-btn:hover {
  background-color: #007bff;
  /* ホバー時に背景色を変更 */
  color: #fff;
  /* ホバー時に文字色を変更 */
}

/* スマートフォン表示用のスタイル (768px以下で適用) */
@media (max-width: 768px) {
  .biz-section-title {
    font-size: 22px;
  }
  .biz-grid {
    grid-template-columns: 1fr;
    /* カードを縦に1列にする */
    gap: 25px;
  }
  .biz-card {
    padding: 20px;
  }
  .biz-card-title {
    font-size: 18px;
  }
  .biz-card-text {
    font-size: 14px;
  }
}
/*
    私たちについて
*/
/* 全体のコンテナ */
.about-us-container {
  font-family: "Noto Sans JP", sans-serif;
  max-width: 800px;
  /* 文章の最大幅 */
  margin: 40px auto;
  /* 上下の余白と中央揃え */
  padding: 20px;
}

/* メインタイトル */
.about-us-title {
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  color: #2c3e50;
  /* 濃いグレー */
  margin: 0;
  line-height: 1.3;
}

/* サブタイトル (About Us) */
.about-us-subtitle {
  display: block;
  font-size: 16px;
  font-weight: 400;
  color: #95a5a6;
  /* 薄いグレー */
  letter-spacing: 2px;
  margin-top: 8px;
  text-transform: uppercase;
}

/* キャッチフレーズ */
.about-us-catchphrase {
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  color: #3498db;
  /* アクセントカラー（青） */
  margin: 25px 0 40px;
  padding-bottom: 20px;
  border-bottom: 2px solid #ecf0f1;
  /* 薄い区切り線 */
}

/* 本文テキスト */
.about-us-body p {
  font-size: 16px;
  line-height: 2;
  /* 行間を広めに設定 */
  color: #34495e;
  /* 少し柔らかい黒 */
  text-align: left;
  margin-bottom: 1.5em;
}

/* 事業の核となる「想い」を引用で強調 */
.about-us-quote {
  background-color: #f8f9fa;
  border-left: 5px solid #3498db;
  /* アクセントカラーの左線 */
  margin: 40px 0;
  padding: 25px 30px;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.8;
  color: #2c3e50;
}
.about-us-quote span {
  font-weight: 400;
  /* 通常の太さ */
}

/* 父と息子の専門性を並べて表示するエリア */
.about-us-pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
  margin: 40px 0;
}

/* 各専門性カード */
.about-us-pillar-card {
  background-color: #fff;
  border: 1px solid #ecf0f1;
  border-radius: 8px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.04);
}
.about-us-pillar-card .icon {
  width: 50px;
  height: 50px;
  margin: 0 auto 15px;
  color: #3498db;
  /* アイコンの色 */
}
.about-us-pillar-card h4 {
  font-size: 16px;
  font-weight: 700;
  color: #2c3e50;
  margin: 0;
}

/* スマートフォン表示の調整 (768px以下) */
@media (max-width: 768px) {
  .about-us-title {
    font-size: 26px;
  }
  .about-us-catchphrase {
    font-size: 18px;
  }
  .about-us-body p,
  .about-us-quote {
    font-size: 15px;
  }
  .about-us-pillars {
    grid-template-columns: 1fr;
    /* 縦に1列にする */
  }
}
/*
　　実績・お客様の声
*/
/* セクション全体のラッパー */
.works-section-wrapper {
  font-family: "Noto Sans JP", sans-serif;
  background-color: #f9fafb;
  /* 背景色 */
  padding: 60px 20px;
}

/* セクションタイトル */
.works-section-title {
  text-align: center;
  font-size: 28px;
  font-weight: 700;
  color: #1f2937;
  /* 濃いグレー */
  margin-bottom: 15px;
}

.works-section-subtitle {
  text-align: center;
  font-size: 16px;
  color: #6b7280;
  /* グレー */
  margin-bottom: 50px;
}

/* 実績グリッド */
.works-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  /* 横に2つ並べる */
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
}

/* 各事業ごとのコラム */
.work-column h3 {
  font-size: 22px;
  font-weight: 700;
  color: #3498db;
  /* アクセントカラー（青） */
  margin-bottom: 25px;
  padding-bottom: 10px;
  border-bottom: 2px solid #e5e7eb;
}

/* 実績例カード */
.work-case-card {
  background-color: #ffffff;
  border-radius: 8px;
  padding: 25px;
  margin-bottom: 25px;
  border: 1px solid #e5e7eb;
}
.work-case-card h4 {
  font-size: 18px;
  font-weight: 700;
  color: #374151;
  margin-top: 0;
  margin-bottom: 10px;
}
.work-case-card p {
  font-size: 15px;
  line-height: 1.8;
  color: #4b5563;
  margin: 0;
}

/* お客様の声カード */
.testimonial-card {
  background-color: #ffffff;
  border-radius: 8px;
  padding: 30px;
  position: relative;
  border-top: 4px solid #3498db;
  /* 上部にアクセントカラーの線 */
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}
.testimonial-card .icon-quote {
  position: absolute;
  top: 15px;
  left: 25px;
  width: 30px;
  height: 30px;
  color: #d1d5db;
  opacity: 0.8;
}

.testimonial-card-text {
  font-size: 16px;
  line-height: 1.9;
  color: #374151;
  margin-top: 20px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  margin-top: 25px;
}
.testimonial-author img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  margin-right: 15px;
}

.testimonial-author-name {
  font-size: 15px;
  font-weight: 700;
  color: #1f2937;
}

/* スマートフォン表示の調整 */
@media (max-width: 768px) {
  .works-section-wrapper {
    padding: 40px 15px;
  }
  .works-grid {
    grid-template-columns: 1fr;
    /* 縦に1列にする */
  }
  .works-section-title {
    font-size: 24px;
  }
  .work-column h3 {
    font-size: 20px;
  }
}
/*
    Access
*/
/* セクション全体のラッパー */
.access-section-wrapper-v2 {
  font-family: "Noto Sans JP", sans-serif;
  padding: 80px 20px;
  background-color: #f8f9fa;
  /* 背景を少しグレーに */
}

.access-container-v2 {
  max-width: 1100px;
  margin: 0 auto;
}

/* セクションタイトル */
.access-section-title-v2 {
  text-align: center;
  font-size: 30px;
  font-weight: 700;
  color: #2c3e50;
  /* 落ち着いた色合いの黒 */
  margin-bottom: 15px;
}

.access-section-subtitle-v2 {
  text-align: center;
  font-size: 16px;
  color: #7f8c8d;
  margin-bottom: 60px;
}

/* 情報とマップを並べるグリッド */
.access-grid-v2 {
  display: block;
  /* 変更: 高さを揃えるためにstretchに */
  align-items: stretch;
}

/* 左カラム：情報エリア */
.access-info-panel {
  background-color: #ffffff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.07);
  display: flex;
  /* 内部要素をflexで管理 */
  flex-direction: column;
  /* 縦方向に並べる */
}
.access-info-panel h3 {
  font-size: 24px;
  font-weight: 700;
  color: #2c3e50;
  margin-top: 0;
  margin-bottom: 30px;
}

.access-info-list {
  list-style: none;
  padding: 0;
  margin: 0;
  flex-grow: 1;
  /* リストエリアを伸ばす */
}
.access-info-list li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 25px;
}

.info-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  margin-right: 20px;
  color: #3498db;
  /* アイコンの色 */
  margin-top: 4px;
}

.info-text-content .label {
  display: block;
  font-weight: 700;
  font-size: 14px;
  color: #7f8c8d;
  margin-bottom: 4px;
}
.info-text-content .value {
  font-size: 16px;
  color: #34495e;
  line-height: 1.7;
}
.info-text-content a {
  color: #34495e;
  text-decoration: none;
  transition: color 0.3s;
}
.info-text-content a:hover {
  color: #3498db;
}

/* スマートフォン表示の調整 (820px以下) */
@media (max-width: 820px) {
  .access-section-wrapper-v2 {
    padding: 60px 15px;
  }
  .access-section-title-v2 {
    font-size: 26px;
  }
  .access-info-panel {
    padding: 30px;
  }
}
/*
    page_jewelry
*/
/* カスタムボタンのスタイル */
.custom-contact-button {
  /* 背景と文字色 */
  background-color: #3b82f6; /* 青色 (Tailwindのblue-500) */
  color: white;
  /* サイズと余白 */
  padding: 0.75rem 1.5rem; /* 上下12px, 左右24px */
  /* 文字のスタイル */
  font-size: 1rem; /* 16px */
  font-weight: 700; /* 太字 */
  text-align: center;
  /* 角の丸みと枠線 */
  border-radius: 0.375rem; /* 6px */
  border: none;
  /* マウスカーソルの形 */
  cursor: pointer;
  /* aタグの下線を消す */
  text-decoration: none;
  /* ホバー時のアニメーション */
  transition: background-color 0.3s ease-in-out, transform 0.1s ease-in-out;
  /* 影 */
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
}
.custom-contact-button:hover {
  /* ボタンにマウスを乗せた時のスタイル */
  background-color: #2563eb; /* 少し濃い青 (Tailwindのblue-600) */
}
.custom-contact-button:active {
  /* ボタンをクリックした時のスタイル */
  transform: translateY(1px); /* 少し下に沈むように見せる */
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

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

/*
    contact
*/
/******************************/
/** コンタクトフォームの装飾 **/
/******************************/
/* フォーム全体 */
#cf7-area {
  width: 100%;
  margin: 0 auto;
  font-family: "游ゴシック", "ヒラギノ角ゴ ProN", "メイリオ", "MS PGothic", sans-serif;
}

/* 行ブロック */
.cf7-item {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 12px;
  margin: 0 0 1.75em;
  flex-wrap: wrap; /* 狭い幅での折り返し */
}

/* 質問(見出し)側 */
.cf7-q {
  flex: 0 0 30%;
  max-width: 30%;
  margin: 0 0 0 10px;
}

/* 回答(入力)側 */
.cf7-a {
  flex: 1 1 0%;
  max-width: 60%;
  min-width: 240px;
}

/* 見出し */
.form-heading {
  width: 100%;
  background-color: #191970;
  border-left: 1em solid #6495ed;
  border-radius: 2px;
  color: #ffffff;
  font-weight: bold;
  padding: 1em 0.8em;
  margin: 0 0 2em;
}

.form-heading p {
  margin: 0;
}

/* 各項目共通（入力UI） */
#cf7-area label {
  font-weight: bold;
}

/* 半角の引用符で統一 & 幅は可変 */
#cf7-area input[type=text],
#cf7-area input[type=email],
#cf7-area input[type=tel],
#cf7-area input[type=url],
#cf7-area select,
#cf7-area textarea {
  background: #f0f8ff;
  width: 100%;
  max-width: 100%;
  margin-left: 10px;
  box-sizing: border-box; /* 枠線/パディング込みで100%に */
  padding: 0.625em 0.75em;
  font-size: 16px; /* iOSのズーム回避 */
}

/* フォーカス */
#cf7-area input[type=text]:focus,
#cf7-area input[type=email]:focus,
#cf7-area input[type=tel]:focus,
#cf7-area input[type=url]:focus,
#cf7-area select:focus,
#cf7-area textarea:focus {
  background: #ffe4e1;
  border: 2px solid #ff1493;
  outline: 0;
}

/* チェックボックス/ラジオ */
#cf7-area input[type=checkbox],
#cf7-area input[type=radio] {
  -webkit-appearance: auto;
     -moz-appearance: auto;
          appearance: auto;
}

/* チェック項目は1行ずつ（必要に応じてinlineにも可） */
#cf7-area .wpcf7-list-item {
  display: block;
}

/* テキストエリア */
#cf7-area textarea {
  height: 200px;
  padding: 0.625em 0.4375em;
}

/* 個人情報同意など */
.cf7-accept-check {
  text-align: center;
  margin: 50px auto;
}

/* 送信ボタンの外側 */
.cf7-submit,
.cf7-btn {
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
  text-align: center;
}

/* 送信ボタン */
#cf7-area input[type=submit] {
  display: block;
  width: 100%;
  background-color: #191970;
  color: #ffffff;
  border-radius: 5px;
  font-size: 1.2em;
  padding: 1em 10px;
  border: 2px solid transparent;
  box-sizing: border-box;
}

#cf7-area input[type=submit]:hover {
  background-color: #ffffff;
  border-color: #191970;
  color: #191970;
}

/* 必須ラベル */
.cf7-req {
  font-size: 0.8em;
  padding: 4px 6px;
  background: #eb2a2a;
  color: #ffffff;
  margin-left: 10px;
  display: inline-block;
}

/* レスポンシブ */
@media screen and (max-width: 1024px) {
  .cf7-q {
    flex-basis: 35%;
    max-width: 35%;
  }
  .cf7-a {
    max-width: 60%;
  }
}
@media screen and (max-width: 768px) {
  .cf7-item {
    display: block;
  }
  #cf7-area label {
    display: block;
    margin: 0 0 10px;
  }
  .cf7-q {
    width: 100%;
    max-width: 100%;
    margin: 0 0 6px;
  }
  .cf7-a {
    width: 100%;
    max-width: 100%;
  }
  #cf7-area input[type=text],
  #cf7-area input[type=email],
  #cf7-area input[type=tel],
  #cf7-area input[type=url],
  #cf7-area select,
  #cf7-area textarea {
    margin-left: 0; /* 端末幅でのはみ出し防止 */
  }
  .cf7-submit,
  .cf7-btn {
    width: 100%;
    max-width: 100%;
  }
  .cf7-req {
    margin-left: 6px;
  }
}/*# sourceMappingURL=style.css.map */