@import url('https://fonts.googleapis.com/css2?family=Shippori+Mincho:wght@400;500;600;700&family=Noto+Sans+JP:wght@300;400;500&family=Cormorant+Garamond:ital,wght@0,300;0,400;1,300;1,400&display=swap');

/* ===== DESIGN TOKENS ===== */
:root {
  --sage:        #5a8a6a;
  --sage-mid:    #4a7559;
  --sage-deep:   #355a44;
  --sage-pale:   #eaf2ec;
  --sage-ultra:  #f4f9f5;
  --terr:        #c47a4a;
  --sand:        #f7f3ed;
  --sand-mid:    #ede7de;
  --cream:       #fdfaf6;
  --white:       #ffffff;
  --text:        #2e3a30;
  --text-sub:    #617065;
  --text-light:  #94a898;
  --border:      #d8e4da;
  --border-soft: rgba(90,138,106,0.15);
  --navy:        #1a2e3b;
  --radius:      2px;
  --shadow-sm:   0 2px 12px rgba(46,58,48,0.07);
  --shadow-md:   0 8px 32px rgba(46,58,48,0.10);
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

html > body {
  color: var(--text);
  background: var(--cream);
  font-family: 'Noto Sans JP', "繝偵Λ繧ｮ繝手ｧ偵ざ Pro W3", "Hiragino Kaku Gothic Pro", "繝｡繧､繝ｪ繧ｪ", Meiryo, sans-serif;
  font-weight: 300;
  letter-spacing: 0.04em;
  line-height: 1.8;
  -webkit-font-feature-settings: "palt";
  font-feature-settings: "palt";
  min-width: 1120px;
  overflow-x: hidden;
}

a {
  color: var(--sage-mid);
  text-decoration: none;
  transition: color 0.25s, opacity 0.25s;
}
a:hover { color: var(--sage-deep); text-decoration: none; opacity: 0.85; }

img { max-width: 100%; height: auto; display: block; }

/* ===== LAYOUT ===== */
#container { overflow: hidden; }
#content {
  width: 1120px;
  margin: 0 auto;
}
#main {
  width: 1120px;
  padding-bottom: 80px;
}

/* ===== HEADER ===== */
#humBtn { display: none; }

#headWrapper {
  min-width: 1120px;
  background: rgba(253,250,246,0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 200;
  box-shadow: var(--shadow-sm);
}

#top #headWrapper {
  position: sticky;
  top: 0;
  background: rgba(253,250,246,0.96);
}

#page #headWrapper,
#top.noSlide #headWrapper,
#top.fixedSlide #headWrapper {
  position: sticky;
  top: 0;
  margin: 0 auto;
  width: 100%;
  min-width: 1120px;
  background: rgba(253,250,246,0.96);
}

header {
  width: 1120px;
  margin: 0 auto;
  padding: 0 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  min-width: auto;
  position: relative;
  z-index: 1;
  box-sizing: border-box;
}

/* 繝ｭ繧ｴ */
header #siteTtl {
  font-size: 1em;
  width: auto;
  padding: 0;
  max-height: none;
  overflow: visible;
  display: flex;
  align-items: center;
}
header #siteTtl a {
  text-decoration: none;
  color: var(--sage-deep);
  font-family: 'Shippori Mincho', serif;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  display: flex;
  align-items: center;
  gap: 10px;
  text-shadow: none;
  opacity: 1;
  transition: opacity 0.2s;
}
header #siteTtl a:hover { opacity: 0.75; }
header #siteTtl a img {
  max-width: 160px;
  width: auto;
  height: 40px;
  object-fit: contain;
}
/* 繝ｭ繧ｴ蜑阪�荳ｸ縺��繝ｼ繧ｯ�育桝莨ｼ隕∫ｴ��� */
header #siteTtl a::before {
  content: '';
  width: 36px; height: 36px;
  background: var(--sage);
  border-radius: 50%;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='1.5' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 21.7C5.8 18.4 2 14.3 2 10a6 6 0 0112 0 6 6 0 0112 0c0 4.3-3.8 8.4-10 11.7z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 20px;
}

/* 繝倥ャ繝繝ｼ繝翫ン�亥承荳翫�蟆上＆縺�Μ繝ｳ繧ｯ�� */
#headWrapper .headNav {
  position: static;
  width: auto;
  padding: 0;
  text-align: right;
  display: flex;
  align-items: center;
  gap: 0;
}
#headWrapper .headNav li {
  display: inline-block;
  margin-right: 0;
  max-width: none;
  line-height: 1;
}
#headWrapper .headNav li::before { display: none; }
#headWrapper .headNav li a {
  text-decoration: none;
  color: var(--text-sub);
  font-size: 0.75rem;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  letter-spacing: 0.1em;
  padding: 6px 14px;
  display: block;
  text-shadow: none;
  transition: color 0.2s;
}
#headWrapper .headNav li a:hover { color: var(--sage); }

/* ===== MAIN NAVIGATION ===== */
.navWrapper {
  background: var(--sage-deep);
}
nav, #mainNav { }
#mainNav .inner {
  width: 1120px;
  margin: 0 auto;
  padding: 0;
}
#page #mainNav .inner,
.noSlide #mainNav .inner {
  padding-bottom: 0;
}

nav ul { display: flex; flex-wrap: wrap; align-items: center; padding: 0; list-style: none; }

nav ul li.parent {
  display: inline-block;
  position: relative;
  margin: 0;
  text-shadow: none;
}
nav ul li.parent::before { display: none; }

nav ul li.parent > a {
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  display: block;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  padding: 14px 20px;
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
}
nav ul li.parent > a:hover,
nav ul li.parent:hover > a {
  background: rgba(255,255,255,0.1);
  color: var(--white);
  opacity: 1;
  position: relative;
  z-index: 10;
}

/* 繝峨Ο繝��繝繧ｦ繝ｳ */
nav .child {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  width: 220px;
  padding: 0;
  display: none;
  z-index: 300;
  text-shadow: none;
  background: var(--white);
  box-shadow: var(--shadow-md);
  border-top: 2px solid var(--sage);
}
nav ul li.parent:hover .child { display: block; }
nav .child li {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  transition: background 0.2s;
}
nav .child li:hover { background: var(--sage-ultra); }
nav .child li a {
  color: var(--text);
  font-size: 0.8rem;
  text-decoration: none;
  display: block;
  padding: 14px 20px;
  line-height: 1.5;
  transition: color 0.2s;
}
nav .child li a:hover { color: var(--sage-deep); opacity: 1; }
nav .child li:last-child { border-bottom: none; }

/* ===== SNS ===== */
#sns {
  position: fixed;
  height: auto;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  margin: 0;
  z-index: 9999;
}
#sns ul li { width: 40px; margin-bottom: 10px; }
#sns ul li a {
  display: block;
  width: 100%;
  transition: opacity 0.2s;
  border-radius: 50%;
  overflow: hidden;
}
#sns ul li a:hover { opacity: 0.7; }
#sns ul li a img { width: 100%; }

/* ===== PAGE TITLE ===== */
.pageTtl {
  background: var(--sage-deep);
  border-bottom: none;
  padding: 60px 0 52px;
  width: 100%;
  margin: 0 auto 0;
  position: relative;
  overflow: hidden;
}
.pageTtl::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 75% 30%, rgba(63,160,144,0.15) 0%, transparent 55%);
  pointer-events: none;
}
.pageTtl h2 {
  font-family: 'Shippori Mincho', serif;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
  color: var(--white);
  letter-spacing: 0.08em;
  position: relative; z-index: 1;
}

/* ===== BREADCRUMB ===== */
#pnkz {
  text-align: left;
  width: 1120px;
  margin: 20px auto 40px;
  font-size: 0.75rem;
  color: var(--text-light);
  letter-spacing: 0.1em;
}
#pnkz li {
  letter-spacing: 0;
  display: inline-block;
  color: var(--text-light);
}
#pnkz li::after { content: "窶ｺ"; margin: 0 8px; opacity: 0.5; }
#pnkz li:last-child::after { display: none; }
#pnkz li a { color: var(--text-light); text-decoration: none; }
#pnkz li a:hover { color: var(--sage); }

/* ===== SLIDE / MAIN IMAGE ===== */
.mainSlideIn {
  width: 100%;
  min-width: 1120px;
  overflow: hidden;
  height: 540px;
  margin: 0 auto 0;
  position: relative;
}
.mainSlideIn .mainSlideWrap {
  width: 1680px;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
#mainSlide li {
  height: 540px !important;
  position: relative;
  overflow: hidden;
}
#mainSlide li::before {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  background: rgba(46,58,48,0.25);
  z-index: 1;
}
#mainSlide li img {
  position: absolute;
  left: 0;
  width: 1680px;
  height: auto;
}
.mainSlideIn .bx-wrapper { margin-bottom: 0; overflow: hidden; }
.bx-wrapper .bx-pager { bottom: 20px !important; }
.bx-wrapper .bx-pager.bx-default-pager a {
  background: rgba(255,255,255,0.4);
  text-indent: -9999px;
  display: block;
  width: 8px; height: 8px;
  margin: 0 5px;
  outline: 0;
  border-radius: 50%;
}
.bx-wrapper .bx-pager.bx-default-pager a:hover,
.bx-wrapper .bx-pager.bx-default-pager a.active {
  background: var(--white);
  opacity: 1;
}

/* lead text over slide */
#leadTxt {
  z-index: 2;
  line-height: 1.7;
  font-size: 1.8rem;
  font-family: 'Shippori Mincho', serif;
  font-weight: 700;
  text-align: center;
  position: absolute;
  color: var(--white);
  text-shadow: 0 2px 20px rgba(46,58,48,0.4);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  max-width: 800px;
  letter-spacing: 0.06em;
  padding: 0;
  min-width: auto;
}
#leadTxt a { color: inherit; }

/* main image (no slide) */
.mainImgIn { max-width: 1120px; margin: 0 auto; }
.mainImgIn .inner {
  border-bottom: 1px solid var(--border);
  display: table;
  width: 100%;
  max-width: 1120px;
  padding: 52px 0 56px;
  table-layout: fixed;
  margin: 0 auto 48px;
}
.mainImgIn .inner #mainImg {
  width: 340px;
  display: table-cell;
  vertical-align: middle;
  text-align: center;
}
.mainImgIn .inner #leadTxt {
  display: table-cell;
  vertical-align: middle;
  padding-left: 48px;
  font-weight: 400;
  line-height: 2.1;
  font-size: 0.95rem;
  position: static;
  color: var(--text-sub);
  text-shadow: none;
  text-align: left;
  transform: none;
  width: auto;
  max-width: none;
  font-family: 'Noto Sans JP', sans-serif;
}

/* ===== NEWS ===== */
#news {
  position: relative;
  max-width: 1120px;
  margin: 0 auto 60px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 40px;
}
#news .contTtl {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.35em;
  font-style: italic;
  color: var(--sage);
  position: absolute;
  left: 0;
  top: 2px;
  z-index: 2;
}
#news ul li {
  padding: 0 120px 20px 220px;
  position: relative;
  font-size: 0.9rem;
  line-height: 2;
  max-width: 1120px;
  color: var(--text-sub);
}
#news ul .day {
  display: block;
  position: absolute;
  left: 120px;
  font-size: 0.85rem;
  font-weight: 500;
  font-family: 'Cormorant Garamond', serif;
  color: var(--text-light);
  letter-spacing: 0.12em;
  top: 2px;
}
#news .bx-wrapper {
  border-bottom: none;
  position: relative;
  margin-bottom: 0;
  overflow: hidden;
}
#news .bx-wrapper::before,
#news .bx-wrapper::after { display: none; }
#news .bx-controls::before { display: none; }
#news .bx-viewport { width: 100%; }
#news .bx-controls-direction {
  position: absolute;
  top: 0;
  right: 0;
  width: 90px;
  height: 30px;
  z-index: 5;
}
#news .bx-controls-direction .bx-prev,
#news .bx-controls-direction .bx-next {
  width: 44px;
  height: 30px;
  border: 1px solid var(--border);
  background: var(--white);
  display: inline-block;
  position: relative;
  transition: background 0.2s;
  cursor: pointer;
}
#news .bx-controls-direction .bx-prev { border-radius: 20px 0 0 20px; }
#news .bx-controls-direction .bx-next { border-radius: 0 20px 20px 0; margin-left: -1px; }
#news .bx-controls-direction .bx-prev::before,
#news .bx-controls-direction .bx-next::before {
  content: '';
  width: 0; height: 0;
  border-style: solid;
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}
#news .bx-controls-direction .bx-prev::before { border-width: 5px 7px 5px 0; border-color: transparent var(--text-light) transparent transparent; }
#news .bx-controls-direction .bx-next::before { border-width: 5px 0 5px 7px; border-color: transparent transparent transparent var(--text-light); }
#news .bx-controls-direction .bx-prev:hover,
#news .bx-controls-direction .bx-next:hover { background: var(--sage-pale); }
#news .bx-pager { display: none; }

/* ===== ARTICLE BOX ===== */
.articleBox {
  border-bottom: 1px solid var(--border);
  padding-bottom: 72px;
  margin-bottom: 72px;
  position: relative;
}
.articleBox:last-child { border-bottom: none; margin-bottom: 0; }
.articleIn .articleBox:last-child { margin-bottom: 0; border-bottom: none; }

/* 繧ｻ繧ｯ繧ｷ繝ｧ繝ｳ隕句�縺� */
.articleBox .contTtl,
.articleBox h3,
#main .articleBox h3 {
  font-family: 'Shippori Mincho', serif;
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--sage-deep);
  line-height: 1.5;
  margin-bottom: 28px;
  padding-left: 18px;
  border-left: 4px solid var(--sage);
  position: relative;
}
.articleBox .contTtl::before,
.articleBox h3::before {
  content: '';
  position: absolute;
  left: -4px; top: 0; bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--sage), var(--sage-pale));
}

/* 繝�く繧ｹ繝医お繝ｪ繧｢ */
.articleBox .txtArea {
  font-size: 0.95rem;
  line-height: 2.2;
  text-align: left;
  color: var(--text-sub);
  width: 100%;
}
.articleBox .txtArea strong { font-weight: 600; color: var(--sage-deep); }
.articleBox.noImg .txtArea { width: auto; float: none; }

/* 逕ｻ蜒上お繝ｪ繧｢ */
.articleBox .imgArea {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  margin: 32px 0 0;
}
.articleBox .imgArea figure {
  width: 100%;
  max-width: 320px;
  margin-bottom: 0;
}
.articleBox .imgArea figure img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}
.articleBox .imgArea figure figcaption {
  font-size: 0.8rem;
  line-height: 1.8;
  margin-top: 10px;
  color: var(--text-light);
  letter-spacing: 0.05em;
}

/* div莉･螟悶�譛蛻昴�蟄� */
.articleBox .clearfix > div:first-child { margin-bottom: 32px; }

/* 繧ｳ繝ｳ繝�Φ繝��縺ｮ逕ｻ蜒擾ｼ亥腰菴難ｼ� */
#main .articleBox img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  max-width: 100%;
}

/* ===== TABLE ===== */
#main .articleBox table {
  width: 100%;
  font-size: 0.9rem;
  margin-top: 32px;
  border-collapse: collapse;
}
.articleBox table,
.articleBox table td,
.articleBox table th {
  border: 1px solid var(--border);
}
.articleBox table td,
.articleBox table th {
  text-align: left;
  padding: 12px 16px;
  line-height: 1.7;
}
.articleBox table th {
  background: var(--sage-pale);
  font-weight: 600;
  color: var(--sage-deep);
  letter-spacing: 0.05em;
}
.articleBox table tr:nth-child(even) td { background: var(--sand); }

/* profile / map / form 繝��繝悶Ν */
#main.form table,
#main.profile table,
#main.map table {
  border-bottom: 1px solid var(--border);
  width: 100%;
  font-size: 0.9rem;
  margin-bottom: 56px;
  border-collapse: collapse;
}
#main.form table th,
#main.form table td,
#main.profile table th,
#main.profile table td,
#main.map table th,
#main.map table td {
  vertical-align: middle;
  text-align: left;
  border-top: 1px solid var(--border);
  padding: 20px 18px;
}
#main.form table th,
#main.profile table th,
#main.map table th {
  font-weight: 600;
  color: var(--sage-deep);
  background: var(--sage-pale);
  min-width: 180px;
}

/* ===== CONTACT BUTTON ===== */
.contactBtn {
  margin: 0 auto 60px;
  padding: 32px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  text-align: center;
}
.contactBtn a {
  width: 380px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--sage);
  text-decoration: none;
  text-align: center;
  color: var(--white);
  height: 80px;
  font-size: 1.1rem;
  font-family: 'Shippori Mincho', serif;
  font-weight: 600;
  letter-spacing: 0.12em;
  border-radius: var(--radius);
  position: relative;
  transition: all 0.3s;
  box-shadow: 0 4px 16px rgba(74,117,89,0.2);
}
.contactBtn a::before {
  content: 'Contact Us';
  position: absolute;
  bottom: 10px;
  left: 0; right: 0;
  font-size: 0.65rem;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 400;
  letter-spacing: 0.3em;
  color: rgba(255,255,255,0.65);
}
.contactBtn a:hover {
  background: var(--sage-deep);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(74,117,89,0.28);
  opacity: 1;
}

/* ===== BOTTOM (繧ｵ繧､繝峨ヰ繝ｼ逧�↑繧ｨ繝ｪ繧｢) ===== */
#bottom {
  background: var(--sage-deep);
  padding: 72px 0 40px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0;
  margin-top: 0;
  position: relative;
  width: 100%;
}
/* 閭梧勹繧貞�蟷�↓ */
#bottom::before,
#bottom::after {
  content: '';
  display: block;
  position: absolute;
  height: 100%;
  background: var(--sage-deep);
  width: 100vw;
  top: 0;
  z-index: 0;
}
#bottom::before { right: 1120px; }
#bottom::after  { left: 1120px; }

#bottom > div {
  width: calc(100% / 3 - 16px);
  margin-bottom: 48px;
  margin-right: 24px;
  min-height: 300px;
  position: relative;
  z-index: 1;
}
#bottom > div:last-child { margin-right: 0; }

.side-area {
  margin-bottom: 0; margin-right: 0;
  width: 100%;
  padding-bottom: 0;
  background: transparent;
  position: relative; z-index: 1;
}
.side-area::before, .side-area::after { display: none; }

#bottom > div .inner {
  background: rgba(255,255,255,0.06);
  height: calc(100% - 52px);
  border: 1px solid rgba(255,255,255,0.08);
}

/* bottom 繧ｻ繧ｯ繧ｷ繝ｧ繝ｳ繧ｿ繧､繝医Ν */
#bottom .bottomTtl {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.4em;
  font-style: italic;
  color: var(--sage-pale);
  text-align: center;
  height: 48px;
  line-height: 48px;
  border-bottom: none;
  opacity: 0.75;
}

/* bottomCont 繝翫ン */
#bottom #bottomCont { line-height: 1; }
#bottom #bottomCont ul li {
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
#bottom #bottomCont ul li a {
  display: block;
  text-decoration: none;
  padding: 18px 16px;
  position: relative;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.06em;
  transition: background 0.2s, color 0.2s;
}
#bottom #bottomCont ul li a::after {
  content: '';
  position: absolute;
  right: 16px; top: 50%;
  transform: translateY(-50%);
  width: 0; height: 0;
  border-style: solid;
  border-width: 4px 0 4px 6px;
  border-color: transparent transparent transparent rgba(255,255,255,0.4);
}
#bottom #bottomCont ul li a:hover {
  background: rgba(255,255,255,0.08);
  color: var(--white);
  opacity: 1;
}
#bottom #bottomCont ul li:first-child { border-top: 1px solid rgba(255,255,255,0.08); }
#bottom #bottomCont .inner {
  padding: 0 0;
  display: flex;
  flex-flow: column;
  justify-content: center;
}

/* blog */
#bottom #blog { line-height: 1.4; }
#bottom #blog .inner { padding: 24px 20px 20px; position: relative; }
#bottom #blog dl { height: 200px; overflow-y: scroll; padding-bottom: 48px; -webkit-overflow-scrolling: touch; }
#bottom #blog dl dt {
  margin-bottom: 4px;
  padding: 16px 0 0;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-light);
  font-family: 'Cormorant Garamond', serif;
  letter-spacing: 0.1em;
}
#bottom #blog dl dt:first-child { padding-top: 0; }
#bottom #blog dl dd {
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding: 0 0 16px;
  font-size: 0.85rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.7);
}
#bottom #blog .inner::before {
  content: '';
  display: block;
  position: absolute;
  bottom: 48px; left: 0; right: 0;
  height: 56px;
  background: linear-gradient(to bottom, rgba(22,46,36,0), rgba(22,46,36,0.9) 80%);
  z-index: 1;
}
#bottom #blog .btn {
  position: relative; z-index: 2;
  width: 120px; margin: -14px auto -18px;
}
#bottom #blog .btn a {
  display: block;
  text-decoration: none;
  color: var(--sage-deep);
  font-weight: 600;
  background: var(--sage-pale);
  text-align: center;
  font-size: 0.8rem;
  line-height: 32px;
  border-radius: 16px;
  transition: background 0.2s;
}
#bottom #blog .btn a:hover { background: var(--white); opacity: 1; }

/* mobile QR */
#bottom #mobile figure { padding: 32px 0 0; text-align: center; }
#bottom #mobile figure img { width: 90px; height: 90px; border: 1px solid rgba(255,255,255,0.15); margin: 0 auto; }
#bottom #mobile figure figcaption {
  font-size: 0.75rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 20px;
  color: rgba(255,255,255,0.55);
  text-align: left;
  line-height: 2;
  padding-top: 20px;
}
#bottom #mobile .inner { padding: 0 20px; }

/* ===== PAGE TOP ===== */
#pageTop {
  position: fixed;
  z-index: 1000;
  right: 28px;
  bottom: 28px;
  width: 52px; height: 52px;
  border-radius: 50%;
  display: none;
}
#pageTop a {
  display: block;
  width: 52px; height: 52px;
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
  border-radius: 50%;
  background: var(--sage);
  position: relative;
  transition: all 0.2s;
  box-shadow: 0 4px 16px rgba(74,117,89,0.3);
}
#pageTop a:hover { background: var(--sage-deep); opacity: 1; }
#pageTop a::before {
  content: '';
  width: 0; height: 0;
  border-style: solid;
  border-width: 0 6px 10px 6px;
  border-color: transparent transparent var(--white) transparent;
  display: block;
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -60%);
}

/* ===== FOOTER ===== */
footer {
  max-width: 1120px;
  width: 100%;
  margin: 0 auto;
  background: transparent;
}
footer .copy {
  width: 100%;
  text-align: center;
  line-height: 1.5;
  padding: 40px 0;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.15em;
  background: var(--sage-deep);
}

/* free / foot / bottom area */
.freeArea,
#foot-area,
#bottom-area { line-height: 2.1; }

/* ===== FORM ===== */
#main.form .txtBox,
#main.profile .txtBox,
#main.map .txtBox {
  font-size: 0.9rem; line-height: 2.2; margin-bottom: 56px;
}
#main.form .txtBox p,
#main.profile .txtBox p,
#main.map .txtBox p { margin-bottom: 24px; }
#main.form .requiredMark { color: #c0392b; }
#main.form table th { min-width: 180px; }
#main.form table td { height: 72px; }
#main.form .inputArea {
  background: var(--sand);
  line-height: 1;
  border-radius: var(--radius);
  width: 860px;
  border: 1px solid var(--border);
  transition: border-color 0.2s;
}
#main.form .inputArea:focus-within { border-color: var(--sage); }
#main.form .inputArea.short { width: 200px; display: inline-block; }
#main.form .inputArea input,
#main.form .inputArea textarea {
  width: 100%; padding: 10px 14px;
  font-family: inherit; font-size: 0.9rem;
  background: transparent; border: none;
  color: var(--text);
}
#main.form .inputArea input:focus,
#main.form .inputArea textarea:focus,
#main.form .inputArea button:focus { outline: none; }
#main.form .inputArea textarea { width: 100%; height: 180px; padding: 12px 14px; line-height: 1.6; }
#main.form table { border-bottom: none; }
#main.form #submit td { text-align: center; padding-top: 36px; }
#main.form #submit input {
  display: inline-block;
  width: 220px; text-align: center;
  color: var(--white); font-weight: 600;
  border-radius: var(--radius);
  line-height: 1; padding: 16px 0;
  cursor: pointer; margin: 0 10px;
  font-size: 0.95rem; font-family: inherit;
  transition: all 0.2s; border: none;
}
#main.form #submit input.submitBtn { background: var(--sage); }
#main.form #submit input.submitBtn:hover { background: var(--sage-deep); }
#main.form #submit input.resetBtn { background: var(--text-light); }
#main.form #submit input.resetBtn:hover { background: #7a8f80; }

/* MAP */
#main.map #frame { margin-bottom: 56px; height: 460px; }
#main.map #frame iframe { width: 100%; height: 100%; border: none; }

/* ===== RESPONSIVE (Mobile) ===== */
@media screen and (max-width: 768px) {
  html > body { width: 100%; min-width: auto; }
  #content { width: 100%; }
  #main { width: 100%; float: none; padding: 0 24px 60px; }

  /* 繝上Φ繝舌�繧ｬ繝ｼ繝懊ち繝ｳ */
  #humBtn,
  #humBtn span {
    display: inline-block;
    transition: all 0.3s;
    box-sizing: border-box;
  }
  #humBtn {
    position: fixed;
    top: 20px; right: 20px;
    width: 38px; height: 24px;
    z-index: 9999;
  }
  #humBtn span {
    position: absolute;
    left: 0; width: 100%; height: 2px;
    background: var(--sage-deep);
    border-radius: 2px;
  }
  #humBtn span:nth-of-type(1) { top: 0; }
  #humBtn span:nth-of-type(2) { top: 11px; }
  #humBtn span:nth-of-type(3) { bottom: 0; }
  #humBtn.active span:nth-of-type(1) { transform: translateY(11px) rotate(-45deg); }
  #humBtn.active span:nth-of-type(2) { opacity: 0; }
  #humBtn.active span:nth-of-type(3) { transform: translateY(-11px) rotate(45deg); }

  #headWrapper { min-width: auto; width: 100%; }
  header { width: 100%; padding: 0 16px; height: 64px; }
  header #siteTtl a { font-size: 0.9rem; }
  header #siteTtl a img { height: 32px; }

  /* 繝｢繝舌う繝ｫ繝翫ン */
  #headWrapper .navWrapper {
    background: var(--white);
    width: 280px;
    padding: 80px 0 60px;
    position: fixed;
    top: 0; right: -280px;
    z-index: 9998;
    height: 100vh;
    transition: right 0.3s;
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
    box-shadow: -4px 0 20px rgba(46,58,48,0.15);
  }
  #headWrapper.active .navWrapper { right: 0; }
  #mainNav .inner { width: 100%; padding: 0 16px; }
  nav ul { flex-direction: column; }
  nav ul li.parent { display: block; margin: 0 0 4px; }
  nav ul li.parent > a { color: var(--text); padding: 12px 16px; border-radius: var(--radius); }
  nav ul li.parent > a:hover { background: var(--sage-pale); color: var(--sage-deep); }
  nav .child {
    display: block !important;
    position: static;
    width: 100%;
    box-shadow: none;
    border-top: none;
    border-left: 2px solid var(--border);
    margin: 4px 0 4px 16px;
    padding: 4px 0;
    background: transparent;
  }
  nav .child li { background: transparent; border-bottom: none; }
  nav .child li a { padding: 8px 12px; font-size: 0.8rem; color: var(--text-sub); }
  nav .child li:hover { background: transparent; }

  #headWrapper .headNav { position: static; width: 100%; padding: 0 0 16px; }
  #headWrapper .headNav li { display: block; border-top: 1px solid var(--border); }
  #headWrapper .headNav li:last-child { border-bottom: 1px solid var(--border); }
  #headWrapper .headNav li a { padding: 14px 16px; display: block; color: var(--text); }
  #headWrapper .headNav li::before { display: none; }

  #sns { position: static; padding: 16px; }
  #sns ul { display: flex; }
  #sns ul li { margin: 0 0 0 12px; width: 36px; }
  #sns ul li:first-child { margin-left: 0; }

  /* 繧ｹ繝ｩ繧､繝� */
  .mainSlideIn { min-width: auto; width: 100%; height: 60vw; }
  .mainSlideIn .mainSlideWrap { width: 240vw; }
  #mainSlide li { height: 60vw !important; }
  #leadTxt { font-size: 1.2rem; width: 90%; }

  /* 繝壹�繧ｸ繧ｿ繧､繝医Ν */
  .pageTtl { padding: 40px 0 36px; width: 100%; }
  .pageTtl h2 { font-size: 1.4rem; padding: 0 20px; }
  #pnkz { width: 100%; padding: 0 20px; margin-bottom: 24px; }

  /* 繝九Η繝ｼ繧ｹ */
  #news { width: calc(100% - 40px); margin: 0 auto 40px; }
  #news .contTtl { position: static; margin-bottom: 10px; }
  #news ul li { padding: 0; }
  #news ul .day { position: static; font-size: 0.8rem; margin-bottom: -2px; }
  #news .bx-wrapper { padding-bottom: 16px; margin-bottom: 40px; }

  /* 繧ｳ繝ｳ繝�Φ繝� */
  .articleBox { padding-bottom: 44px; margin-bottom: 44px; }
  .articleBox .contTtl, .articleBox h3 { font-size: 1.1rem; }
  .articleBox .imgArea { justify-content: space-between; }
  .articleBox .imgArea figure { width: calc(50% - 10px); max-width: none; }

  /* 繧ｳ繝ｳ繧ｿ繧ｯ繝医�繧ｿ繝ｳ */
  .contactBtn a { width: calc(100% - 40px); }

  /* bottom */
  #bottom { padding: 44px 20px 28px; }
  #bottom > div { width: calc(50% - 12px); margin-right: 20px; min-height: auto; }
  #bottom > div:nth-child(2n) { margin-right: 0; }
  .side-area { padding: 0 0 40px; }

  /* 繝輔か繝ｼ繝� */
  #main.form .inputArea { width: 100%; }
  #main.form table th { display: block; width: 100%; padding-bottom: 4px; }
  #main.form table td { display: block; border-top: none; padding-top: 4px; height: auto; }
  #main.form #submit td input:first-child { margin-bottom: 16px; }

  /* 繝槭ャ繝� */
  #main.map #frame { height: 280px; }
}

@media screen and (max-width: 570px) {
  #bottom > div { width: 100%; margin-right: 0; min-height: auto; margin-bottom: 28px; }
  #bottom #mobile { display: none; }
}

@media screen and (max-width: 480px) {
  header { padding: 0 12px; }
  #main { padding: 0 16px 48px; }
  .articleBox .imgArea figure { width: 100%; max-width: none; }
  .contactBtn a { font-size: 1rem; }
  footer .copy { padding: 36px 16px; }
  #pnkz { padding: 0 16px; }
}

/* ===== UTILITY ===== */
.clearfix::after { content: ''; display: table; clear: both; }

/* ===== SCROLLBAR (WebKit) ===== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--sand); }
::-webkit-scrollbar-thumb { background: var(--sage-pale); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--sage); }

/* ===== SELECTION ===== */
::selection { background: var(--sage-pale); color: var(--sage-deep); }