@charset "UTF-8";
/* =========================================================
   ダスキン三吉屋 トップページ（自社サイトの私的再現）
   配色・フォント・レイアウトは実サイトの設計値に準拠
   ========================================================= */

:root {
  --yellow: #ffc000;   /* 基調カラー（ダスキンの黄） */
  --orange: #ff9c00;   /* アクセント・リンクhover */
  --brown:  #3a1717;   /* 見出しの濃茶 */
  --text:   #333;
  --line:   #ddd;
  --maxw:   1024px;
  --head-font: "FOT-セザンヌ ProN DB", "游ゴシック Medium", "Yu Gothic Medium", "Yu Gothic", YuGothic, "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, sans-serif;
  --body-font: "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", "Yu Gothic", YuGothic, "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "メイリオ", Meiryo, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--body-font);
  font-size: 14px;
  line-height: 2;
  color: var(--text);
  background: #fff;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; margin: 0; padding: 0; }
a { color: inherit; text-decoration: none; transition: .2s; }
a:hover { color: var(--orange); }

.container { width: var(--maxw); max-width: 100%; margin: 0 auto; padding: 0 20px; }

/* ---- icons (Font Awesome の代替) ---- */
.ico { font-style: normal; margin-right: 8px; }
.ico-phone::before { content: "📞"; }
.ico-mail::before  { content: "✉"; }
.ico-info::before  { content: "ℹ"; color: var(--yellow); }

/* =========================================================
   Header
   ========================================================= */
#header { padding-top: 18px; }
.h-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.h-logo { margin: 0; }
.h-logo img { width: 280px; }

.h-contact { display: flex; gap: 10px; }
.h-btn01, .h-btn02 {
  display: inline-flex;
  align-items: center;
  font-family: var(--head-font);
  font-size: 14px;
  border-radius: 4px;
  padding: 10px 18px;
  color: #fff;
}
.h-btn01 { background: var(--orange); }
.h-btn01 .ico-phone::before { content: "📞"; }
.h-btn02 { background: var(--yellow); }
.h-btn01:hover, .h-btn02:hover { color: #fff; opacity: .85; }

.h-dl {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 4px 0;
  margin: 16px auto 0;
  padding: 12px 20px;
  border: 1px solid var(--line);
  font-size: 12px;
  line-height: 1.7;
}
.h-dl dt { color: var(--brown); font-weight: bold; }
.h-dl dd { margin: 0; color: #666; }
.h-dl .link { color: var(--orange); font-weight: bold; }

/* =========================================================
   Global nav
   ========================================================= */
.g-navi { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); margin-top: 16px; }
.g-navi > ul { display: flex; justify-content: center; flex-wrap: wrap; }
.g-navi > ul > li { position: relative; }
.g-navi > ul > li > a {
  display: block;
  font-family: var(--head-font);
  font-size: 15px;
  color: var(--brown);
  padding: 16px 22px;
  border-left: 1px dotted var(--line);
}
.g-navi > ul > li:last-child > a { border-right: 1px dotted var(--line); }
.g-navi > ul > li:hover > a { color: var(--orange); }

/* dropdown */
.g-navi .dd > ul {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 230px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 8px 20px rgba(0,0,0,.08);
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: .2s;
  z-index: 50;
}
.g-navi .dd:hover > ul { opacity: 1; visibility: visible; transform: translateY(0); }
.g-navi .dd > ul li a { display: block; font-size: 13px; padding: 11px 18px; border-bottom: 1px solid #f0f0f0; }
.g-navi .dd > ul li a:hover { background: #fffbe9; color: var(--orange); }
.g-navi .no-link { cursor: default; }

/* hamburger (mobile only) */
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; padding: 10px; cursor: pointer; }
.nav-toggle span { width: 26px; height: 2px; background: var(--brown); transition: .3s; }

/* =========================================================
   Main visual
   ========================================================= */
.main-visual {
  background: url(../img/main01.jpg) no-repeat center center / cover;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 500px;
}
.main-visual .main-text { margin: 0 0 33px; width: 722px; max-width: 86%; }

/* =========================================================
   Section common
   ========================================================= */
.contents section { padding: 70px 0; }

.top-ttl {
  background: url(../img/top-ttl.png) no-repeat center bottom;
  background-size: 44px 8px;
  color: var(--brown);
  font-family: var(--head-font);
  font-size: 28px;
  font-weight: normal;
  letter-spacing: .05em;
  line-height: 1.5;
  margin: 0 0 40px;
  padding-bottom: 30px;
  text-align: center;
}

.top-btn, .l-btn {
  background: var(--yellow);
  border: 2px solid var(--yellow);
  border-radius: 20px;
  color: #fff;
  display: inline-block;
  font-family: var(--head-font);
  font-size: 15px;
  letter-spacing: .05em;
  line-height: 36px;
  height: 40px;
  position: relative;
  text-align: center;
  width: 170px;
  padding-left: 14px;
}
.top-btn::before, .l-btn::before {
  content: "›";
  font-weight: bold;
  position: absolute;
  left: 16px;
  top: -1px;
  font-size: 18px;
}
.top-btn:hover, .l-btn:hover { background: #fff; color: var(--yellow); }
.tac { text-align: center; margin: 18px 0 0; }
.sp-tac { margin: 16px 0 0; }

/* =========================================================
   sec01 News
   ========================================================= */
.sec01 { padding: 56px 0 !important; }
.sec01-inner { max-width: 880px; margin: 0 auto; }
.sec01-ttl {
  color: var(--brown);
  font-family: var(--head-font);
  font-size: 23px;
  font-weight: normal;
  letter-spacing: .025em;
  padding-bottom: 10px;
  margin: 0 0 6px;
  border-bottom: 1px solid var(--yellow);
  overflow: hidden;
}
.sec01-more {
  background: var(--yellow);
  border-radius: 13px;
  color: #fff;
  display: inline-block;
  font-family: var(--head-font);
  font-size: 13px;
  float: right;
  line-height: 23px;
  height: 25px;
  width: 90px;
  text-align: center;
}
.sec01-more:hover { color: #fff; opacity: .85; }
.sec01-list-post li {
  display: flex;
  align-items: baseline;
  gap: 18px;
  padding: 12px 4px;
  border-bottom: 1px dotted var(--line);
  flex-wrap: wrap;
}
.sec01-list-post time { color: #999; font-size: 13px; flex-shrink: 0; }
.sec01-list-post .list-txt { color: var(--text); }
.sec01-list-post .list-txt:hover { color: var(--orange); }

/* =========================================================
   Card grids (sec02 / sec04 / sec05)
   ========================================================= */
.top-card-col3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 34px; }
.top-card-col2 { display: flex; justify-content: center; }
.top-card-col2 > li { width: 640px; max-width: 100%; }

.top-card-col3 .card-img, .top-card-col2 .card-img { margin: 0; overflow: hidden; border-radius: 4px; }
.top-card-col3 .card-img img, .top-card-col2 .card-img img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; transition: .4s; }
.top-card-col3 li:hover .card-img img, .top-card-col2 li:hover .card-img img { transform: scale(1.05); }

.card-desc { padding: 18px 4px 0; text-align: center; }
.card-ttl { margin: 0 0 12px; }
.card-ttl .jp {
  display: block;
  color: var(--brown);
  font-family: var(--head-font);
  font-size: 20px;
  font-weight: normal;
  line-height: 1.5;
}
.card-ttl .en {
  display: block;
  color: var(--yellow);
  font-family: "Questrial", sans-serif;
  font-size: 11px;
  letter-spacing: .12em;
  margin-top: 4px;
}
.card-text { text-align: left; margin: 0 0 4px; }

/* =========================================================
   sec03 Support (image + desc rows)
   ========================================================= */
.sec03 { background: #fafafa; }
.sec03-01 { background: url(../img/sec03-bg01.png) no-repeat left top, url(../img/sec03-bg02.png) no-repeat right bottom; }
.sec03-box {
  display: flex;
  align-items: center;
  gap: 44px;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 6px;
  padding: 30px;
  margin-bottom: 30px;
}
.sec03-box:last-child { margin-bottom: 0; }
.sec03-box .l-img { margin: 0; flex: 0 0 46%; border-radius: 4px; overflow: hidden; }
.sec03-box .l-img img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; }
.l-desc { flex: 1; }
.l-ttl {
  color: var(--brown);
  font-family: var(--head-font);
  font-size: 22px;
  font-weight: normal;
  margin: 0 0 14px;
}
.s_logoimg img, .s_logoimg2 img { width: 200px; margin-bottom: 12px; }
.l-list { display: flex; flex-wrap: wrap; gap: 8px 10px; margin: 0 0 18px; }
.l-list li {
  background: #fffbe9;
  border: 1px solid var(--yellow);
  border-radius: 4px;
  color: var(--brown);
  font-size: 13px;
  line-height: 1.6;
  padding: 4px 12px;
}

/* =========================================================
   sec06 Recruit
   ========================================================= */
.sec06 .sec06-inner {
  display: flex;
  align-items: center;
  gap: 44px;
  background: #fffbe9;
  border-radius: 6px;
  padding: 36px;
}
.sec06 .l-img { margin: 0; flex: 0 0 44%; border-radius: 4px; overflow: hidden; }
.sec06 .l-img img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; }
.sec06 .l-text { margin: 0 0 20px; }

/* =========================================================
   sec07 Contact CTA
   ========================================================= */
.sec07 { text-align: center; }
.sec07 .mb30 { margin-bottom: 30px; }
.sec07-btn {
  border: 3px solid var(--yellow);
  border-radius: 10px;
  display: inline-block;
  width: 312px;
  max-width: 90%;
  height: 100px;
  line-height: 1.75;
  padding: 15px 0;
  position: relative;
}
.sec07-btn::before {
  content: "›";
  color: var(--yellow);
  font-weight: bold;
  font-size: 26px;
  position: absolute;
  top: calc(50% - 22px);
  left: 26px;
}
.sec07-btn .jp { display: block; color: var(--brown); font-family: var(--head-font); font-size: 21px; }
.sec07-btn .en { display: block; color: var(--yellow); font-family: "Questrial", sans-serif; font-size: 12px; letter-spacing: .12em; }
.sec07-btn:hover { background: #fffbe9; }
.sec07-btn:hover .jp { color: var(--orange); }

/* =========================================================
   Page top
   ========================================================= */
.pagetop { text-align: right; margin: 0; padding: 20px; }
.pagetop img { width: 50px; display: inline-block; }

/* =========================================================
   Footer
   ========================================================= */
.footer-01 { background: url(../img/share/bg01.jpg) repeat; padding: 50px 0; }
.f-inner { display: flex; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.mb30 { margin-bottom: 30px; }
.l-left { flex: 1; min-width: 280px; }
.f-logo { margin: 0 0 14px; }
.f-logo img { width: 300px; }
.f-text { margin: 0 0 14px; color: var(--brown); }
.f-btn {
  display: inline-flex;
  align-items: center;
  background: var(--orange);
  color: #fff;
  border-radius: 4px;
  padding: 10px 20px;
  font-family: var(--head-font);
}
.f-btn:hover { color: #fff; opacity: .85; }
.l-right { flex: 0 0 420px; max-width: 100%; }
.area-box { background: #fff; border: 1px solid var(--line); border-radius: 6px; padding: 18px 22px; }
.area-box p { margin: 0; font-size: 13px; }
.box-ttl { color: var(--brown); font-weight: bold; border-left: 4px solid var(--yellow); padding-left: 8px; margin-top: 6px !important; }
.area-box .notice { color: #888; font-size: 12px; margin-top: 8px !important; }
.mb10 { margin-bottom: 10px !important; }

.f-shoplist { border-top: 1px dotted #c9bca0; padding-top: 20px; }
.f-shoplist li { font-size: 13px; line-height: 1.9; }
.f-shoplist .bold { color: var(--brown); font-weight: bold; }
.f-shoplist .link { color: var(--orange); font-weight: bold; }

.footer-02 { background: var(--brown); padding: 30px 0; }
.f-navi { display: flex; justify-content: center; gap: 50px; flex-wrap: wrap; }
.f-navi ul li { margin-bottom: 8px; }
.f-navi ul li a { color: #e7dcdc; font-size: 13px; }
.f-navi ul li a:hover { color: var(--yellow); }
.copyright { text-align: center; color: #b29c9c; font-size: 12px; margin: 24px 0 0; }

.pc-only { display: inline; }
.sp-only { display: none; }

/* =========================================================
   Responsive  (≒ sp.css)
   ========================================================= */
@media (max-width: 1024px) {
  .h-logo img { width: 230px; }
  .f-logo img { width: 240px; }
}

@media (max-width: 880px) {
  .top-card-col3 { grid-template-columns: 1fr 1fr; gap: 26px; }
}

@media (max-width: 800px) {
  .pc-only { display: none; }
  .sp-only { display: inline; }

  /* header */
  #header { padding-top: 12px; }
  .h-contact { display: none; }
  .nav-toggle { display: flex; }
  .h-dl { display: none; }

  /* nav → drawer */
  .g-navi { margin-top: 12px; }
  .g-navi > ul { display: none; flex-direction: column; }
  .g-navi.open > ul { display: flex; }
  .g-navi > ul > li > a { border-left: 0; border-bottom: 1px solid var(--line); text-align: center; }
  .g-navi .dd > ul {
    position: static; opacity: 1; visibility: visible; transform: none;
    box-shadow: none; border: 0; min-width: 0; background: #fafafa;
  }
  .g-navi .dd > ul li a { text-align: center; }

  /* main visual */
  .main-visual { height: 320px; }
  .main-visual .main-text { margin-bottom: 16px; }

  /* sections */
  .contents section { padding: 48px 0; }
  .top-ttl { font-size: 22px; margin-bottom: 28px; padding-bottom: 22px; }

  .top-card-col3 { grid-template-columns: 1fr; gap: 30px; max-width: 420px; margin: 0 auto; }

  .sec03-box { flex-direction: column; gap: 18px; padding: 20px; }
  .sec03-box .l-img { flex: none; width: 100%; }
  .l-list { justify-content: center; }
  .s_logoimg, .s_logoimg2 { text-align: center; }
  .s_logoimg img, .s_logoimg2 img { margin: 0 auto 12px; }
  .l-ttl { text-align: center; }

  .sec06 .sec06-inner { flex-direction: column; gap: 18px; padding: 24px; text-align: center; }
  .sec06 .l-img { flex: none; width: 100%; }

  /* footer */
  .footer-01 { padding: 36px 0; }
  .f-inner { flex-direction: column; gap: 24px; }
  .l-right { flex: none; width: 100%; }
  .f-logo img { margin: 0 auto; }
  .l-left { text-align: center; }
  .f-navi { gap: 0 40px; }
  .pagetop { text-align: center; }
}

@media (max-width: 480px) {
  .card-ttl .jp { font-size: 18px; }
  .main-visual { height: 240px; }
}

/* =========================================================
   下層ページ共通（page-head / 本文パーツ / お知らせ）
   ========================================================= */
.page-head {
  background: url(../img/share/bg01.jpg) repeat;
  border-bottom: 3px solid var(--yellow);
  padding: 34px 0;
  text-align: center;
}
.breadcrumb { font-size: 12px; color: #888; margin: 0 0 10px; }
.breadcrumb a { color: #888; }
.breadcrumb a:hover { color: var(--orange); }
.breadcrumb a::after,
.breadcrumb span::before { content: "›"; margin: 0 8px; color: #bbb; }
.breadcrumb > :first-child::before { content: none; }
.breadcrumb span { color: var(--brown); }

.page-ttl { margin: 0; line-height: 1.3; }
.page-ttl .jp {
  display: block;
  color: var(--brown);
  font-family: var(--head-font);
  font-size: 30px;
  font-weight: normal;
  letter-spacing: .05em;
}
.page-ttl .en {
  display: block;
  color: var(--yellow);
  font-family: "Questrial", sans-serif;
  font-size: 12px;
  letter-spacing: .18em;
  margin-top: 4px;
}

.sec-page { padding: 60px 0 !important; }
.container-narrow { max-width: 820px; }
.page-lead { text-align: center; margin: 0 auto 44px; max-width: 780px; }
.mt40 { margin-top: 40px; }
.mb0 { margin-bottom: 0; }

/* 見出し（h3）：左に黄色のバー */
.content-ttl {
  color: var(--brown);
  font-family: var(--head-font);
  font-size: 24px;
  font-weight: normal;
  line-height: 1.5;
  border-left: 6px solid var(--yellow);
  padding-left: 14px;
  margin: 0 0 24px;
}
.content-ttl.mt { margin-top: 56px; }
.content-block { margin-bottom: 40px; }
.content-block p { margin: 0 0 1em; }

/* 画像＋説明の横並び行（下層ページ用） */
.detail-row {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 40px;
}
.detail-row:nth-child(even) { flex-direction: row-reverse; }
.detail-row .d-img { margin: 0; flex: 0 0 46%; border-radius: 6px; overflow: hidden; }
.detail-row .d-img img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.detail-row .d-body { flex: 1; }
.detail-row .d-ttl {
  color: var(--brown);
  font-family: var(--head-font);
  font-size: 20px;
  font-weight: normal;
  margin: 0 0 10px;
}

/* 定義テーブル（会社概要・特商法など） */
.def-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.def-table th, .def-table td {
  border: 1px solid var(--line);
  padding: 14px 18px;
  text-align: left;
  vertical-align: top;
  line-height: 1.8;
}
.def-table th {
  background: #fffbe9;
  color: var(--brown);
  font-weight: bold;
  white-space: nowrap;
  width: 30%;
}

/* 料金表 */
.price-table { width: 100%; border-collapse: collapse; font-size: 14px; margin-bottom: 14px; }
.price-table caption {
  text-align: left;
  color: var(--brown);
  font-family: var(--head-font);
  font-size: 18px;
  padding: 8px 0;
}
.price-table th, .price-table td { border: 1px solid var(--line); padding: 12px 16px; }
.price-table thead th { background: var(--brown); color: #fff; font-weight: normal; }
.price-table tbody th { background: #fffbe9; color: var(--brown); text-align: left; }
.price-table td { text-align: right; }
.price-table td.tal { text-align: left; }
.note { color: #888; font-size: 12px; line-height: 1.8; }

/* 箇条書き（チェック） */
.check-list li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 10px;
  line-height: 1.8;
}
.check-list li::before {
  content: "✓";
  color: var(--orange);
  font-weight: bold;
  position: absolute;
  left: 4px;
  top: 0;
}

/* お知らせ 一覧・個別 */
.news-archive { border-top: 1px solid var(--line); }
.news-archive li {
  display: flex;
  align-items: baseline;
  gap: 22px;
  padding: 18px 4px;
  border-bottom: 1px solid var(--line);
  flex-wrap: wrap;
}
.news-archive time { color: #999; font-size: 13px; flex-shrink: 0; }
.news-archive-ttl { color: var(--text); }
.news-archive-ttl:hover { color: var(--orange); }

.news-single-date { color: #999; font-size: 13px; }
.news-single-ttl {
  color: var(--brown);
  font-family: var(--head-font);
  font-size: 24px;
  font-weight: normal;
  line-height: 1.5;
  border-bottom: 1px solid var(--yellow);
  padding-bottom: 16px;
  margin: 6px 0 24px;
}
.news-single-body p { margin: 0 0 1.2em; }

.back-btn {
  display: inline-block;
  border: 2px solid var(--yellow);
  border-radius: 22px;
  color: var(--brown);
  font-family: var(--head-font);
  padding: 10px 34px;
}
.back-btn:hover { background: var(--yellow); color: #fff; }

/* お問い合わせフォーム */
.form-table { width: 100%; border-collapse: collapse; }
.form-table th, .form-table td { padding: 16px; text-align: left; vertical-align: top; border-bottom: 1px solid var(--line); }
.form-table th { width: 30%; color: var(--brown); font-weight: bold; }
.form-table .req { color: #e0403a; font-size: 12px; margin-left: 6px; }
.form-table input[type="text"],
.form-table input[type="email"],
.form-table input[type="tel"],
.form-table textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 10px 12px;
  font-family: inherit;
  font-size: 14px;
}
.form-table textarea { min-height: 140px; resize: vertical; }
.submit-btn {
  background: var(--yellow);
  border: 2px solid var(--yellow);
  border-radius: 26px;
  color: #fff;
  cursor: pointer;
  font-family: var(--head-font);
  font-size: 16px;
  padding: 14px 60px;
}
.submit-btn:hover { background: #fff; color: var(--yellow); }

@media (max-width: 800px) {
  .page-ttl .jp { font-size: 24px; }
  .sec-page { padding: 44px 0 !important; }
  .detail-row, .detail-row:nth-child(even) { flex-direction: column; gap: 18px; }
  .detail-row .d-img { flex: none; width: 100%; }
  .def-table th, .form-table th { width: auto; white-space: normal; }
  .form-table th, .form-table td { display: block; width: 100%; border-bottom: 0; padding: 8px 0; }
  .form-table td { padding-bottom: 18px; border-bottom: 1px solid var(--line); }
}
