@charset "utf-8";

:root {
  --text: #3c2d1f;
  --price-red: #ef2b17;
  --cta-red: #e5160d;
  --cta-red-deep: #c90e07;
  --navy: #15345f;
  --page-width: min(1000px, calc(100vw - 32px));
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Noto Sans JP", sans-serif;
  color: var(--text);
  background: #fffeef;
}

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

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

.page-shell {
  width: var(--page-width);
  margin: 0 auto;
  padding: 0 0 80px;
}

#header {
  position: relative;
  z-index: 9999;
  width: min(1000px, calc(100vw - 32px));
  margin: 0 auto 2%;
  padding-top: 2%;
  color: #635049;
}

#header ul { margin: 0; padding: 0; list-style: none; }
#header h1 { margin: 0; font-size: .8em; font-weight: 400; }
#header .h_cont { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 2%; }
#header .h_logo img { width: 202px; padding-bottom: 4px; }
#header .h_logo span { display: block; }
#header .drawer-toggle, #header .h_search { display: none; }
#header .navi { margin-bottom: 2%; }
#header .gnav01 { position: fixed; right: 0; padding: 10px; border-radius: 5px 0 0 5px; background: #f8bb02; }
#header .gnav01 li { padding: 10% 0; border-bottom: 1px solid #e0a800; }
#header .gnav01 li:first-child { padding-top: 0; }
#header .gnav01 li:last-child { padding-bottom: 0; border-bottom: 0; }
#header .gnav01 span { display: none; }
#header .gnav01 img { border-radius: 5px; }
#header .gnav02 { display: flex; justify-content: space-between; }
#header .gnav02 li { width: calc(99% / 6); padding: 0 1%; border-right: 1px solid #e3dfb9; text-align: center; }
#header .gnav02 li:first-child { border-left: 1px solid #e3dfb9; }
#header .gnav02 a { display: block; padding-bottom: 2px; color: #635049; font-size: .9em; }
#header .gnav02 a:hover { border-radius: 5px; background: #efeee0; }
#header .gnav02 span { display: block; color: #c4c1a7; font-size: .7em; }

.hero {
  padding: 0;
  border: 0;
  background: transparent;
}

.hero--spaced {
  margin-top: 40px;
}

.hero__banner {
  display: block;
  width: 100%;
  margin-top: 0;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.hero__banner img {
  width: 100%;
  max-width: none;
  height: auto;
}

.sections {
  display: grid;
  gap: 42px;
  width: 100%;
  min-width: 0;
  max-width: 100%;
  margin-top: 32px;
}

.sale-section {
  width: 100%;
  min-width: 0;
  max-width: 100%;
  padding: 0;
}

.sale-section__title {
  display: grid;
  justify-items: center;
  gap: 14px;
  margin: 120px 0 40px;
  color: #4d2d14;
  font-size: clamp(34px, 4.2vw, 58px);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: 0.04em;
  text-align: center;
}

.sale-section__title::after {
  content: "";
  width: min(320px, 58vw);
  height: 9px;
  border-radius: 999px;
  background:
    repeating-linear-gradient(-60deg, #ff8e2c 0 4px, transparent 4px 8px),
    linear-gradient(180deg, rgba(255, 163, 72, 0.22) 0%, rgba(255, 143, 30, 0.4) 100%);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  min-width: 0;
  max-width: 100%;
}

.product-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  max-width: 100%;
  height: 100%;
  overflow: hidden;
  border: 2px solid #efd58e;
  border-radius: 30px;
  background: #fffdf8;
  box-shadow: 0 18px 36px rgba(92, 58, 16, 0.12);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.product-card--discount {
  border-color: #efc760;
  box-shadow:
    0 20px 40px rgba(92, 58, 16, 0.14),
    0 0 0 4px rgba(255, 245, 212, 0.72);
}

.product-card:hover {
  transform: translateY(-5px);
  border-color: #e3b847;
  box-shadow: 0 26px 46px rgba(92, 58, 16, 0.18);
}

.product-card__image {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  padding: 16px 16px 12px;
  background: linear-gradient(180deg, #fffefb 0%, #fff6e8 100%);
}

.product-card__image--placeholder {
  padding: 20px;
  background: linear-gradient(180deg, #fff7e7 0%, #ffe5aa 100%);
}

.product-card__image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 20px;
}

.product-card__image-note {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  border: 2px dashed rgba(176, 112, 25, 0.34);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.58);
  color: #9a6420;
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 700;
  letter-spacing: 0.08em;
}

.product-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  min-width: 0;
  gap: 13px;
  padding: 20px;
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.34), transparent 28%),
    linear-gradient(180deg, #ffca27 0%, #f5b112 100%);
  text-align: left;
}

.product-card--discount .product-card__body {
  display: grid;
  grid-template-columns: max-content minmax(0, 1fr);
  grid-template-rows: auto auto auto 1fr auto;
  column-gap: 16px;
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.44), transparent 28%),
    linear-gradient(180deg, #ffcb26 0%, #f1ad0b 100%);
}

.product-card__badges {
  order: 1;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: flex-start;
  gap: 10px;
}

.product-card--discount .product-card__badges {
  grid-column: 1;
  grid-row: 4;
  align-self: end;
  max-width: 190px;
  margin-top: auto;
}

.product-card__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 10px 20px;
  border: 2px solid rgba(255, 255, 255, 0.92);
  border-radius: 999px;
  background: rgba(255, 251, 240, 0.92);
  color: #915112;
  font-size: 18px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.02em;
  box-shadow: 0 6px 14px rgba(137, 80, 7, 0.08);
}

.product-card__badge--fresh,
.product-card__badge--limited {
  width: 88px;
  min-height: 98px;
  padding: 10px 8px;
  border-color: #fff;
  border-radius: 18px;
  background: #fff;
  color: var(--price-red);
  font-size: 23px;
  line-height: 1.18;
  text-align: center;
}

.product-card__badge--shipping {
  width: 88px;
  min-width: 88px;
  min-height: 98px;
  padding: 10px 8px;
  border-color: #fff;
  border-radius: 18px;
  color: var(--price-red);
  background: #fff;
  font-size: 20px;
  line-height: 1.2;
  text-align: center;
}

/* 「本州限定送料無料」は、白い送料無料ボックスの対象外。 */
.product-card__badge--shipping-limited-area {
  width: auto;
  min-width: 0;
  min-height: 48px;
  padding: 10px 18px;
  border-color: rgba(255, 255, 255, 0.92);
  border-radius: 999px;
  background: rgba(255, 245, 212, 0.96);
  color: #915112;
  font-size: 16px;
}

.product-card__badge--sale {
  width: 88px;
  min-height: 98px;
  padding: 10px 5px;
  border-radius: 18px;
  color: #fff;
  background: linear-gradient(180deg, #ff7865 0%, #ee1f12 100%);
  border-color: rgba(255, 255, 255, 0.76);
  font-family: "DIN Alternate", "DIN Condensed", "Arial Narrow", Arial, sans-serif;
  font-size: 28px;
  line-height: 0.94;
  text-align: center;
  box-shadow: 0 12px 22px rgba(208, 33, 18, 0.18);
}

.product-card__badge--sale small {
  display: block;
  margin-bottom: 5px;
  font-size: 15px;
  line-height: 1;
}

.product-card__badges--tiered {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  width: 190px;
}

.product-card__badges--tiered .product-card__badge--sale {
  flex-direction: column;
  width: 100%;
  min-height: 118px;
  font-size: 34px;
}

.product-card__badges--tiered .product-card__badge--sale small {
  white-space: nowrap;
}

.product-card__name {
  order: 2;
  margin: 0;
  color: var(--navy);
  font-size: clamp(19px, 1.85vw, 25px);
  font-weight: 900;
  line-height: 1.32;
  letter-spacing: 0;
  text-align: center;
  text-wrap: balance;
}

.product-card--discount .product-card__name,
.product-card--discount .product-card__labels,
.product-card--discount .product-card__description,
.product-card--discount .product-card__cta {
  grid-column: 1 / -1;
}

.product-card--discount .product-card__name {
  grid-row: 1;
}

.product-card__body > .product-card__name:first-child {
  margin-top: 64px;
}

.product-card__description {
  order: 3;
  margin: 0;
  min-height: 3.4em;
  color: rgba(46, 32, 15, 0.82);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.65;
  text-align: center;
}

.product-card--discount .product-card__description {
  grid-row: 3;
}

.product-card__labels {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin: -2px 0 0;
}

.product-card--discount .product-card__labels {
  grid-row: 2;
}

.product-card__label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 5px 14px;
  border: 1px solid rgba(122, 69, 11, 0.22);
  border-radius: 999px;
  background: rgba(255, 250, 232, 0.82);
  color: #71400f;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.2;
}

.product-card__pricing {
  order: 4;
  display: grid;
  gap: 6px;
  margin-top: auto;
  padding-top: 2px;
}

.product-card--discount .product-card__pricing {
  grid-column: 2;
  grid-row: 4;
  align-self: end;
  width: 100%;
  min-width: 0;
}

.product-card__price-line {
  display: flex;
  flex-wrap: nowrap;
  align-items: flex-end;
  justify-content: flex-end;
  gap: 6px;
  width: 100%;
  min-height: 72px;
  margin: 0;
}

.product-card__price-before {
  display: inline-flex;
  align-items: baseline;
  gap: 5px;
  margin-right: auto;
  white-space: nowrap;
}

.product-card--discount .product-card__price-line {
  display: grid;
  align-items: end;
  justify-items: end;
  gap: 7px;
  min-height: auto;
}

.product-card--discount .product-card__price-before {
  justify-content: flex-end;
  margin-right: 0;
}

.product-card__price-before-label {
  color: rgba(99, 62, 16, 0.82);
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.02em;
}

.product-card__price-before-value {
  color: rgba(99, 62, 16, 0.9);
  font-family: "DIN Alternate", "DIN Condensed", "Arial Narrow", Arial, sans-serif;
  font-size: clamp(24px, 2vw, 30px);
  font-weight: 900;
  font-variant-numeric: tabular-nums;
  line-height: 1;
  text-decoration: line-through;
  text-decoration-color: rgba(164, 63, 21, 0.78);
  text-decoration-thickness: 3px;
}

.product-card__price-before-tax {
  color: rgba(99, 62, 16, 0.82);
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
}

.product-card__price-current {
  display: inline-flex;
  align-items: flex-end;
  justify-content: flex-end;
  gap: 6px;
  margin-left: auto;
  white-space: nowrap;
}

.product-card--discount .product-card__price-current {
  margin-left: 0;
}

.product-card__price-after {
  display: inline-flex;
  align-items: flex-end;
  color: var(--price-red);
  font-family: "DIN Alternate", "DIN Condensed", "Arial Narrow", Arial, sans-serif;
  font-size: clamp(46px, 4.2vw, 62px);
  font-weight: 900;
  font-variant-numeric: tabular-nums;
  line-height: 0.86;
  letter-spacing: -0.04em;
  text-shadow: 0 2px 0 rgba(255, 255, 255, 0.18);
  white-space: nowrap;
}

.product-card__price-tax {
  padding-bottom: 3px;
  color: rgba(78, 49, 18, 0.92);
  font-size: 19px;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
  text-align: right;
}

.product-card__cta {
  order: 5;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 60px;
  margin-top: 2px;
  padding: 14px 18px;
  border-radius: 18px;
  background: linear-gradient(180deg, var(--cta-red) 0%, var(--cta-red-deep) 100%);
  color: #fff;
  font-size: clamp(20px, 2vw, 24px);
  font-weight: 900;
  letter-spacing: 0.04em;
  box-shadow: 0 14px 24px rgba(180, 25, 10, 0.18);
}

.product-card--discount .product-card__cta {
  grid-row: 5;
}

#footer {
  width: 100%;
  margin: 0 auto;
  padding-top: 40px;
  background: url(https://bushu38.com/images/index/bg.png) no-repeat bottom / 100% #fffeef;
  color: #5e4941;
}

#footer .f_cont {
  display: flex;
  justify-content: space-between;
  width: min(1000px, calc(100vw - 32px));
  margin: 0 auto 5%;
  letter-spacing: .7px;
  line-height: 1.4;
}

#footer .f_infobox { width: 50%; padding: 15px; border-radius: 10px; background: #fff; }
#footer .f_infobox h2 { margin: 0 0 3%; }
#footer .f_infobox h2 img { width: 100%; }
#footer .f_infobox h2 span { display: none; }
#footer .f_infobox > div { margin: 0 0 3%; padding: 0 5px; font-size: 13px; }
#footer .f_infobox > div:last-child { margin-bottom: 0; }
#footer .f_infobox p { margin: 0 0 3%; }
#footer .f_infobox dl { margin: 0 0 10px; }
#footer .f_infobox dt { display: inline-block; margin-bottom: 2%; border-bottom: 1px solid #dfddca; font-size: 1.1em; font-weight: 600; }
#footer .f_infobox dd { margin: 0 0 7px; }
#footer .f_cont01 dd { padding-left: 1em; text-indent: -1em; }
#footer .f_infobox dd img { display: inline-block; margin: 3% 0 0 -2%; }
#footer .f_infobox .attention { padding: 2%; background: #f5f5f5; color: #ce061d; }
#footer .f_infobox dd span { display: inline-block; padding: 0 3px; border-radius: 5px; background: #efeee7; }
#footer .copy { width: min(1000px, calc(100vw - 32px)); margin: 0 auto; padding: 0 10px 10px 0; text-align: right; }
#footer .copy img { display: inline-block; width: 220px; }
#footer .copy small { display: block; font-size: 12px; text-align: right; }

@media (max-width: 960px) {
}

@media (max-width: 768px) {
  #header { width: 100%; margin: 10% 0 0; padding: 0; }
  #header .h_cont { position: fixed; top: 0; z-index: 999999; display: table; width: 100%; margin: 0; padding: 3% 2% 1.5%; border-bottom: 2px solid #f7aa00; background: rgba(255,255,255,.95); }
  #header .h_logo { display: table-cell; width: 44%; padding-left: 30%; }
  #header .h_logo span { display: none; }
  #header .h_info { display: table-cell; width: 20%; text-align: right; }
  #header .h_info img { display: inline-block; width: 30%; padding-bottom: 3px; }
  #header .drawer-hamburger { position: fixed; top: 0; left: 0; z-index: 99999999; display: block; width: 40px; margin: 2.5% 0 0 3%; padding: 3%; border: 0; background: transparent; cursor: pointer; }
  #header .drawer-hamburger-icon, #header .drawer-hamburger-icon::before, #header .drawer-hamburger-icon::after { display: block; width: 100%; height: 3px; background: #f7aa00; transition: all .6s cubic-bezier(.19,1,.22,1); }
  #header .drawer-hamburger-icon { position: relative; }
  #header .drawer-hamburger-icon::before, #header .drawer-hamburger-icon::after { position: absolute; left: 0; content: ""; }
  #header .drawer-hamburger-icon::before { top: -10px; }
  #header .drawer-hamburger-icon::after { top: 10px; }
  .drawer-open #header .drawer-hamburger-icon { background: transparent; }
  .drawer-open #header .drawer-hamburger-icon::before { top: 0; transform: rotate(45deg); }
  .drawer-open #header .drawer-hamburger-icon::after { top: 0; transform: rotate(-45deg); }
  #header .drawer-nav { position: fixed; top: -100%; left: 0; z-index: 999; overflow-y: auto; width: 100%; max-height: 100%; background: #fbfaee; transition: top .6s cubic-bezier(.19,1,.22,1); }
  .drawer-open #header .drawer-nav { top: 0; height: 100%; }
  #header .h_search { display: block; margin-top: 16%; padding: 0 3%; }
  #header .h_search form { display: flex; }
  #header .searchbox, #header .search_btn { height: 55px; border: 1px solid #e0e0e0; border-radius: 0; appearance: none; }
  #header .searchbox { width: 82%; padding-left: 14px; border-right: 0; font-size: 22px; }
  #header .search_btn { width: 18%; background: url(https://bushu38.com/images/index/icon_search.png) no-repeat center / 23% #ffdf2b; }
  #header .drawer-menu { min-height: 100%; padding-bottom: 5%; }
  #header .drawer-menu img { display: none; }
  #header .gnav01 { position: static; display: flex; flex-wrap: wrap; margin-top: 2%; padding: 0 3% 1%; background: #fbfaee; text-align: center; }
  #header .gnav01 li { width: 49%; margin: 0 2% 2% 0; padding: 0; border: 0; }
  #header .gnav01 li:nth-child(odd) { margin-right: 0; }
  #header .gnav01 li:first-child, #header .gnav01 li:last-child { display: none; }
  #header .gnav01 a { display: block; padding: 6% 2%; border-radius: 6px; background: linear-gradient(to right,#ffbe7b,#ffca33); color: #fff; }
  #header .gnav01 span { display: block; }
  #header .gnav02 { display: block; margin: 0 3% 3%; border: 1px solid #ebe6da; border-radius: 6px; background: #fff; }
  #header .gnav02 li, #header .gnav02 li:first-child { width: 100%; padding: 0; border: 0; }
  #header .gnav02 a { margin: 0 3%; padding: 3% 0; border-bottom: 1px solid #ebe6da; background: #fff; font-size: 1.2em; }
  #header .gnav02 li:last-child a { border-bottom: 0; }
  #header .gnav02 span { color: #e2cf9d; }
  #footer { padding-top: 0; background-image: none; }
  #footer .f_cont { display: block; width: 100%; margin: 0 0 3%; }
  #footer .f_infobox { width: 100%; padding: 0; border-radius: 0; }
  #footer .f_infobox h2 { position: relative; margin: 0; padding: 2%; border-bottom: 1px solid #c4e0da; background: #dbeeea; cursor: pointer; }
  #footer .f_infobox h2:focus-visible { outline: 3px solid #f7aa00; outline-offset: -3px; }
  #footer .f_infobox h2 img { display: none; }
  #footer .f_infobox h2 span { display: block; padding-left: 5%; font-size: 1.1em; }
  #footer .f_infobox h2 span::before { position: absolute; left: 3%; color: #729f96; content: "●"; font-size: .65em; line-height: 1.8; }
  #footer .f_infobox h2 span::after { position: absolute; right: 3%; content: "›"; font-size: 1.4em; line-height: .8; transform: rotate(90deg); transition: transform .2s ease; }
  #footer .f_infobox h2.active span::after { transform: rotate(-90deg); }
  #footer .f_infobox > div { display: none; margin: 0; padding: 3% 3% 1%; font-size: 1em; }
  #footer .f_infobox > div.is-open { display: block; }
  #footer .copy { width: 100%; padding: 2% 0; text-align: center; }
  #footer .copy img { width: 180px; }
  #footer .copy small { text-align: center; }
}

@media (max-width: 720px) {
  .page-shell {
    width: min(100vw - 20px, 1000px);
    padding: 0 0 64px;
  }

  .hero {
    padding: 0;
    width: 100vw;
    margin-right: calc(50% - 50vw);
    margin-left: calc(50% - 50vw);
    border-radius: 0;
  }

  .product-grid {
    grid-template-columns: 1fr;
  }

  .product-card__body {
    padding: 18px 16px;
  }

  .product-card__image-note {
    font-size: 18px;
  }

  .product-card__name {
    font-size: 19px;
  }

  .product-card__body > .product-card__name:first-child {
    margin-top: 58px;
  }

  .product-card__description {
    font-size: 14px;
  }

  .product-card__badge {
    min-height: 42px;
    padding: 8px 16px;
    font-size: 15px;
  }

  .product-card__badge--sale,
  .product-card__badge--limited,
  .product-card__badge--shipping {
    width: 86px;
    min-width: 86px;
    min-height: 96px;
    padding: 8px 5px;
    border-radius: 16px;
    font-size: 24px;
  }

  .product-card__badge--shipping {
    font-size: 18px;
  }

  .product-card__badge--shipping-limited-area {
    width: auto;
    min-width: 0;
    min-height: 42px;
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 14px;
  }

  .product-card__badges--tiered .product-card__badge--sale {
    width: 100%;
    min-height: 108px;
    font-size: 30px;
  }

  .sale-section__title {
    gap: 12px;
    margin-bottom: 22px;
    font-size: 32px;
    margin-top: 40px;
  }

  .product-card__pricing {
    padding-top: 4px;
  }

  .product-card__price-line {
    gap: 8px;
    min-height: 64px;
  }

  .product-card--discount .product-card__price-line {
    gap: 6px;
    min-height: auto;
  }

  .product-card__price-before-label {
    font-size: 13px;
  }

  .product-card__price-before-value {
    font-size: 22px;
  }

  .product-card__price-before-tax {
    font-size: 13px;
  }

  .product-card__price-after {
    font-size: 40px;
  }

  .product-card__price-tax {
    font-size: 18px;
  }

  .product-card__cta {
    min-height: 56px;
    font-size: 20px;
  }
}

@media (max-width: 440px) {
  .product-card--discount .product-card__body {
    grid-template-columns: 140px minmax(0, 1fr);
    column-gap: 6px;
  }

  .product-card--discount .product-card__badges {
    max-width: 140px;
    gap: 6px;
  }

  .product-card__badges--tiered {
    width: 140px;
  }

  .product-card__badge--sale,
  .product-card__badge--limited,
  .product-card__badge--shipping {
    width: 67px;
    min-width: 67px;
    min-height: 88px;
    font-size: 16px;
  }

  .product-card__badge--sale,
  .product-card__badge--limited {
    width: 67px;
    min-width: 67px;
    min-height: 88px;
    font-size: 21px;
  }

  .product-card__badges--tiered .product-card__badge--sale {
    min-height: 96px;
    font-size: 24px;
  }

  .product-card__badge--sale small {
    font-size: 12px;
  }

  .product-card__price-after {
    font-size: 31px;
  }

  .product-card__price-tax {
    padding-bottom: 2px;
    font-size: 14px;
  }

  .product-card__price-before-label,
  .product-card__price-before-tax {
    font-size: 9px;
  }

  .product-card__price-before-value {
    font-size: 18px;
  }

  .product-card__price-before,
  .product-card__price-current {
    gap: 4px;
  }
}

@media (max-width: 480px) {
  #header { margin-top: 15%; }
  #header .h_logo img { width: 100%; }
  #header .drawer-hamburger { width: 30px; margin-top: 3%; }
  #header .drawer-hamburger-icon::before { top: -9px; }
  #header .drawer-hamburger-icon::after { top: 9px; }
  #header .h_search { margin-top: 17%; }
  #header .searchbox, #header .search_btn { height: 40px; font-size: 13px; }
  #header .searchbox { padding-left: 7px; }
  #header .search_btn { background-size: 36%; }
  #header .gnav01 a, #header .gnav02 a { font-size: .8em; }
  #header .gnav02 { margin-bottom: 5%; }
  #footer .f_infobox h2 { padding: 3%; }
  #footer .f_infobox h2 span { padding-left: 6%; font-size: .9em; }
  #footer .f_infobox > div { font-size: .8em; }
  #footer .copy { padding: 3% 0; }
  #footer .copy img { width: 130px; margin-bottom: 2%; }
  #footer .copy small { font-size: .7em; }
}
