@charset "UTF-8";

:root {
  --side: 286px;
  --ink: #22201d;
  --muted: #77716a;
  --line: #e5ded4;
  --bg: #fbfaf7;
  --paper: #fff;
  --soft: #f1ece4;
  --accent: #219866;
  --accent2: #b98a55;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: "Yu Mincho", "Hiragino Mincho ProN", "Noto Serif JP", serif;
  line-height: 1.9;
}

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

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

button, input, textarea, select {
  font: inherit;
}

.side-menu {
  position: fixed;
  left: 0;
  top: 0;
  width: var(--side);
  height: 100vh;
  background: #fff;
  border-right: 1px solid var(--line);
  z-index: 30;
  overflow: auto;
}

.side-menu__inner {
  min-height: 100%;
  padding: 34px 34px 24px;
  display: flex;
  flex-direction: column;
background: url("../assets/bg.jpg") center center / cover no-repeat;
}

.site-logo {
  margin: 0 0 38px;
  margin: 0 0 28px;
}
.sub-logo {
  margin: 0 0 28px;
}
.site-logo img {
  /*width: 174px;*/
}
.sub-logo img {
  width: 90%;
	margin: auto;
}

.global-nav{
	background: #fff;
	padding-left: 15px;
}

.global-nav ul, .brand-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.global-nav li {
  border-top: 1px solid var(--line);
}

.global-nav li:last-child {
  border-bottom: 1px solid var(--line);
}

.global-nav a {
  display: block;
  padding: 10px 0;
}

.global-nav span {
  display: block;
  font-size: 15px;
  letter-spacing: .08em;
}

.global-nav em {
  display: block;
  font-style: normal;
  font: 11px/1.5 Georgia, serif;
  color: var(--muted);
  letter-spacing: .08em;
}

.side-menu hr {
  width: 100%;
  border: 0;
  border-top: 1px solid var(--line);
  margin: 26px 0;
}

.brand-links li {
  margin: 0 0 11px;
}

.brand-links a {
  font-size: 13px;
  letter-spacing: .08em;
  color: #444;
}

.brand-links a:after {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-right: 1px solid #999;
  border-top: 1px solid #999;
  transform: rotate(45deg);
  margin-left: 8px;
}

.sns {
  display: flex;
  gap: 10px;
  margin: 24px 0;
}

.sns a {
  width: 30px;
  height: 30px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font: 10px Arial;
  color: var(--muted);
}

.side-footer {
  margin-top: auto;
  padding-top: 12px;
  color: var(--muted);
  font: 11px/1.8 Arial, "Noto Sans JP", sans-serif;
}

.side-footer a, .side-footer small {
  display: block;
}

.main {
  margin-left: var(--side);
  min-height: 100vh;
}

.online-badge {
  position: fixed;
  right: 5px;
  top: 5px;
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  display: grid;
  place-items: center;
  text-align: center;
  font: 12px/1.35 Arial, sans-serif;
  letter-spacing: .12em;
  z-index: 20;
  box-shadow: 0 12px 28px rgba(0, 0, 0, .15);
}

/* Home hero slider */

.hero-slider {
  position: relative;
  height: 100vh;
  min-height: 680px;
  overflow: hidden;
  background: #eee;
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.03);
  transition: opacity 1.2s ease, transform 7s ease;
}

.slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slide-copy {
  position: absolute;
  left: 7vw;
  bottom: 12vh;
  z-index: 2;
  color: #222;
  max-width: 560px;
  background: rgba(251, 250, 247, .74);
  padding: 38px 44px;
  border-left: 1px solid var(--accent);
}

.slide-copy .eyebrow, .eyebrow {
  font: 12px/1.4 Arial, sans-serif;
  letter-spacing: .28em;
  color: var(--accent);
  margin: 0 0 20px;
}

.slide-copy h2 {
  font-size: clamp(38px, 6vw, 76px);
  line-height: 1.18;
  font-weight: 400;
  margin: 0 0 24px;
  letter-spacing: .08em;
}

.slide-copy p {
  font-size: 16px;
  color: #4f4a44;
  margin: 0;
}

.slider-dots {
  position: absolute;
  right: 6vw;
  bottom: 44px;
  display: flex;
  gap: 12px;
  z-index: 5;
}

.slider-dots button {
  width: 52px;
  height: 2px;
  border: 0;
  background: rgba(255, 255, 255, .65);
  padding: 0;
  cursor: pointer;
}

.slider-dots button.is-active {
  background: var(--accent);
}

.hero-news {
  position: absolute;
  left: 7vw;
  top: 34px;
  right: 150px;
  z-index: 6;
  font: 13px/1.5 "Noto Sans JP", sans-serif;
  color: #555;
}

.hero-news a {
  display: inline-flex;
  gap: 14px;
  align-items: center;
  background: rgba(255, 255, 255, .86);
  padding: 10px 16px;
  border: 1px solid var(--line);
}

.hero-news span {
  color: var(--accent);
}

.section {
  padding: 92px 7vw;
  border-top: 1px solid var(--line);
  background: var(--bg);
}

.section:nth-of-type(even) {
  background: #fff;
  background: #ebf5ec;
}

.section-title {
  display: flex;
  gap: 18px;
  align-items: center;
  margin-bottom: 28px;
}

.icon-mark {
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 50%;
  position: relative;
  background: #fff;
}

.icon-mark:before, .icon-mark:after {
  content: "";
  position: absolute;
  background: var(--accent);
  opacity: .75;
}

.icon-mark:before {
  width: 18px;
  height: 1px;
  left: 11px;
  top: 20px;
}

.icon-mark:after {
  height: 18px;
  width: 1px;
  left: 20px;
  top: 11px;
}

.section-title h3 {
  font-size: 48px;
  font-weight: 500;
  letter-spacing: .08em;
  margin: 0;
}

.section-title em {
  display: block;
  font-style: normal;
  font: 13px/1.6 Georgia, serif;
  color: var(--muted);
  letter-spacing: .12em;
}

.lead {
  font-size: 16px;
  color: #555;
  /*max-width: 760px;*/
  margin: 0 0 30px;
}

.more {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  font-size: 13px;
  letter-spacing: .14em;
  color: var(--accent);
}

.more:after {
  content: "";
  display: block;
  width: 55px;
  height: 1px;
  background: var(--accent);
}

.two-column {
  display: grid;
  grid-template-columns: 1fr 1fr 38%;
  gap: 42px;
  align-items: start;
}

.section-text p {
  font-size: 16px;
  color: #555;
  margin: 0 0 24px;
}

.section-image img {
  height: 320px;
  width: 100%;
  object-fit: cover;
}

.logo-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  margin-top: 34px;
}

.logo-list a {
  background: #fff;
  padding: 10px;
  display: grid;
  place-items: center;
}

.logo-list img {
  width: 100%;
  object-fit: cover;
}

.news-list {
  border-top: 1px solid var(--line);
  margin-bottom: 28px;
}

.news-list a, .news-row {
  display: grid;
  grid-template-columns: 110px 120px 1fr;
  gap: 20px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
}

.news-list span, .news-row span {
  color: var(--accent);
}

.category-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
  font: 13px/1 "Noto Sans JP", sans-serif;
}

.category-tabs li, .category-tabs button {
  border: 1px solid var(--line);
  background: #fff;
  padding: 10px 17px;
  cursor: pointer;
  color: #333;
}

.category-tabs button.is-active {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

.card-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.card-links a {
  display: block;
  background: #fff;
  border: 1px solid var(--line);
  padding: 38px;
}

.card-links span {
  display: block;
  font-size: 24px;
  letter-spacing: .1em;
}

.card-links em {
  display: block;
  font: 13px Georgia, serif;
  color: var(--muted);
  margin: 8px 0 30px;
}

.card-links b {
  font-weight: 400;
  color: var(--accent);
  font-size: 13px;
}

.company-card-section {
  background: #fff;
  position: relative;
  overflow: hidden;
  padding-top: 70px;
  padding-bottom: 88px;
}

.company-card-section:before {
  content: "";
  position: absolute;
  inset: -120px;
  background: linear-gradient(45deg, transparent 0 47%, rgba(141, 31, 31, .045) 47% 48%, transparent 48% 100%), linear-gradient(-45deg, transparent 0 47%, rgba(141, 31, 31, .035) 47% 48%, transparent 48% 100%);
  background-size: 260px 260px;
  opacity: .9;
  pointer-events: none;
}

.company-home-card {
  position: relative;
  z-index: 1;
  display: block;
  max-width: 760px;
}

.company-home-card figure {
  margin: 0 0 30px;
  overflow: hidden;
  background: var(--soft);
}

.company-home-card img {
  width: 100%;
  height: 310px;
  object-fit: cover;
  transition: transform .6s ease;
}

.company-home-card:hover img {
  transform: scale(1.035);
}

.company-home-card__body {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: start;
  column-gap: 24px;
}

.company-home-card__body h3 {
  font-size: 34px;
  font-weight: 400;
  letter-spacing: .12em;
  margin: 0;
  line-height: 1.3;
}

.company-home-card__body em {
  font-style: normal;
  font: 20px/1.6 Georgia, "Times New Roman", serif;
  letter-spacing: .08em;
  color: #222;
  margin-top: 5px;
}

.company-home-card__body span {
  grid-column: 1/-1;
  margin-top: 54px;
  display: inline-flex;
  align-items: center;
  gap: 18px;
  font-size: 17px;
  letter-spacing: .12em;
}

.company-home-card__body span:after {
  content: "";
  width: 64px;
  height: 1px;
  background: #222;
  display: block;
}

.company-home-card__body span:before {
  content: "";
  order: 2;
  width: 10px;
  height: 10px;
  border-top: 1px solid #222;
  border-right: 1px solid #222;
  transform: rotate(45deg);
  margin-left: -31px;
}

.company-block {
  background: #fff;
  text-align: left;
}

.company-block h3 {
  font-size: 24px;
  font-weight: 400;
  letter-spacing: .14em;
}

.company-block h4 {
  font-weight: 400;
  letter-spacing: .12em;
  margin-top: 32px;
}

.contact-button {
  display: inline-block;
  margin-top: 20px;
  border: 1px solid var(--accent);
  color: var(--accent);
  padding: 12px 34px;
  letter-spacing: .12em;
}

/* Pages */

.page-main {
  background: #fff;
}

.page-title {
  padding: 90px 7vw 34px;
  background: #fff;
}

.page-title__inner {
  display: flex;
  align-items: center;
  gap: 18px;
}

.page-title h2 {
  font-size: 34px;
  font-weight: 400;
  letter-spacing: .12em;
  margin: 0;
}

.page-title em {
  display: block;
  font-style: normal;
  font: 13px/1.5 Georgia, serif;
  color: var(--muted);
  letter-spacing: .14em;
}

.page-visual {
  padding: 0 7vw 72px;
  background: #fff;
}

.visual-pair {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 22px;
}

.visual-pair img {
  height: 420px;
  width: 100%;
  object-fit: cover;
}

.visual-pair img:nth-child(2) {
  margin-top: 70px;
}

.intro-text {
  padding: 0 7vw 84px;
  background: #fff;
}

.intro-text p {
  font-size: 17px;
  color: #4c4741;
  max-width: 900px;
}

.story-section {
  padding: 82px 7vw;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 42% 1fr;
  gap: 7vw;
  align-items: center;
  background: #fff;
}

.story-section:nth-child(even) {
  background: var(--bg);
}

.story-section.reverse {
  grid-template-columns: 1fr 42%;
}

.story-section.reverse .story-image {
  order: 2;
}

.story-image img {
  height: 360px;
  width: 100%;
  object-fit: cover;
}

.story-text h3 {
  font-size: 29px;
  font-weight: 400;
  letter-spacing: .08em;
  margin: 0 0 22px;
}

.story-text p {
  color: #555;
  margin: 0;
}

.process {
  padding: 90px 7vw;
  background: var(--bg);
  border-top: 1px solid var(--line);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: var(--line);
  margin-top: 34px;
}

.process-item {
  background: #fff;
  padding: 24px 18px;
  min-height: 210px;
}

.process-item small {
  display: block;
  color: var(--accent);
  font: 12px Arial;
  letter-spacing: .14em;
  margin-bottom: 14px;
}

.process-item h4 {
  font-size: 18px;
  font-weight: 400;
  margin: 0 0 12px;
}

.process-item p {
  font-size: 13px;
  color: #666;
  margin: 0;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.7;
}

.message-block {
  display: grid;
  grid-template-columns: 36% 1fr;
  gap: 6vw;
  align-items: center;
  padding: 92px 7vw;
  background: #fff;
  border-top: 1px solid var(--line);
}

.message-block img {
  height: 430px;
  width: 100%;
  object-fit: cover;
}

.message-block h3 {
  font-size: 32px;
  font-weight: 400;
  letter-spacing: .08em;
  margin: 0 0 22px;
}

.signature {
  margin-top: 22px;
  text-align: right;
  color: #555;
}

.news-page {
  padding: 82px 7vw 100px;
  background: #fff;
}

.news-toolbar {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: flex-start;
  margin-bottom: 20px;
}

.admin-link {
  font: 13px/1 "Noto Sans JP", sans-serif;
  border: 1px solid var(--accent);
  color: var(--accent);
  padding: 11px 18px;
}

.pagination {
  display: flex;
  gap: 8px;
  margin-top: 34px;
}

.pagination a {
  width: 36px;
  height: 36px;
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  font-family: Arial;
}

.pagination a.current {
  background: var(--accent);
  color: #fff;
}

.empty-news {
  padding: 28px;
  border: 1px solid var(--line);
  color: #777;
  background: var(--bg);
}

.company-mission {
  padding: 0 7vw 86px;
  background: #fff;
}

.mission-box {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 48px 0;
}

.mission-box h3 {
  font-size: 30px;
  font-weight: 400;
  letter-spacing: .08em;
  color: var(--accent);
  margin: 0 0 18px;
}

.mission-box p {
  max-width: 820px;
  color: #555;
}

.company-table-section {
  padding: 86px 7vw;
  background: var(--bg);
  border-top: 1px solid var(--line);
}

.company-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
}

.company-table th, .company-table td {
  border-top: 1px solid var(--line);
  padding: 22px;
  text-align: left;
  vertical-align: top;
}

.company-table tr:last-child th, .company-table tr:last-child td {
  border-bottom: 1px solid var(--line);
}

.company-table th {
  width: 220px;
  font-weight: 400;
  color: #6a6258;
  background: #fbfaf7;
}

.initiative-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 28px;
}

.initiative {
  background: #fff;
  border: 1px solid var(--line);
  padding: 26px;
}

.initiative h4 {
  font-weight: 400;
  font-size: 20px;
  margin: 0 0 10px;
}

.initiative p {
  font-size: 14px;
  color: #666;
  margin: 0;
  font-family: "Noto Sans JP", sans-serif;
}

.simple-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.simple-grid article {
  background: #fff;
  border: 1px solid var(--line);
  padding: 18px;
}

.simple-grid img {
  height: 190px;
  width: 100%;
  object-fit: cover;
  margin-bottom: 18px;
}

.simple-grid h4 {
  font-weight: 400;
  font-size: 19px;
  margin: 0 0 8px;
}

.simple-grid p {
  color: #666;
  margin: 0;
}

/* Admin */

.admin-main {
  margin-left: var(--side);
  min-height: 100vh;
  background: #fff;
}

.admin-wrap {
  padding: 70px 7vw 100px;
}

.admin-wrap h2 {
  font-size: 34px;
  font-weight: 400;
  letter-spacing: .08em;
  margin: 0 0 26px;
}

.admin-layout {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 36px;
}

.admin-panel {
  border: 1px solid var(--line);
  background: var(--bg);
  padding: 24px;
}

.admin-panel label {
  display: block;
  font: 13px/1.5 "Noto Sans JP", sans-serif;
  margin: 0 0 14px;
  color: #444;
}

.admin-panel input, .admin-panel select, .admin-panel textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: #fff;
  padding: 11px 12px;
  margin-top: 6px;
}

.admin-panel textarea {
  min-height: 170px;
  resize: vertical;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.admin-btn {
  border: 1px solid var(--accent);
  background: var(--accent);
  color: #fff;
  padding: 10px 16px;
  cursor: pointer;
}

.admin-btn.secondary {
  background: #fff;
  color: var(--accent);
}

.admin-btn.danger {
  border-color: #555;
  background: #555;
}

.admin-list {
  border-top: 1px solid var(--line);
}

.admin-item {
  display: grid;
  grid-template-columns: 100px 100px 1fr 120px;
  gap: 14px;
  align-items: center;
  border-bottom: 1px solid var(--line);
  padding: 14px 0;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 13px;
}

.admin-actions {
  display: flex;
  gap: 8px;
}

.mini-btn {
  border: 1px solid var(--line);
  background: #fff;
  padding: 5px 9px;
  cursor: pointer;
}

.mini-btn.delete {
  color: #a00;
}

.admin-note {
  font-size: 13px;
  color: #777;
  font-family: "Noto Sans JP", sans-serif;
}

.menu-toggle, .overlay {
  display: none;
}

@media(max-width:1100px) {
.process-grid {
  grid-template-columns: repeat(2, 1fr);
}

.admin-layout {
  grid-template-columns: 1fr;
}

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

@media(max-width:980px) {
:root {
  --side: 300px;
}

.main, .admin-main {
  margin-left: 0;
}

.side-menu {
  transform: translateX(-100%);
  transition: .35s ease;
}

.side-menu.is-open {
  transform: translateX(0);
}

.menu-toggle {
  display: grid;
  position: fixed;
  right: 8px;
  top: 8px;
  width: 52px;
  height: 52px;
  border: 0;
  background: #fff;
  z-index: 60;
  place-items: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, .12);
}

.menu-toggle span {
  width: 24px;
  height: 1px;
  background: #222;
  display: block;
  margin: 3px 0;
}

.overlay {
  display: block;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .35);
  opacity: 0;
  pointer-events: none;
  transition: .3s;
  z-index: 25;
}

.overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}

.online-badge {
  right: 74px;
  top: 8px;
  width: 58px;
  height: 58px;
  font-size: 9px;
}

.hero-slider {
  height: 66vh;
  min-height: 500px;
}

.slide-copy {
  left: 24px;
  right: 24px;
  bottom: 70px;
  padding: 28px;
}

.hero-news {
  left: 24px;
  right: 24px;
  top: 86px;
}

.section {
  padding: 64px 24px;
}

.two-column {
  grid-template-columns: 1fr;
  gap: 28px;
}

.logo-list {
  grid-template-columns: 1fr 1fr;
}

.news-list a, .news-row {
  grid-template-columns: 1fr;
  gap: 4px;
}

.card-links {
  grid-template-columns: 1fr;
}

.page-title, .page-visual, .intro-text, .story-section, .process, .message-block, .news-page, .company-mission, .company-table-section, .admin-wrap {
  padding-left: 24px;
  padding-right: 24px;
}

.visual-pair, .story-section, .story-section.reverse, .message-block {
  grid-template-columns: 1fr;
}

.story-section.reverse .story-image {
  order: 0;
}

.visual-pair img:nth-child(2) {
  margin-top: 0;
}

.process-grid, .initiative-grid, .simple-grid {
  grid-template-columns: 1fr;
}

.company-table th, .company-table td {
  display: block;
  width: 100%;
}

.company-table th {
  border-bottom: 0;
}

.admin-item {
  grid-template-columns: 1fr;
}

.admin-actions {
  justify-content: flex-start;
}
}

@media(max-width:560px) {
.side-menu__inner {
  padding: 28px;
}

.site-logo img {
  width: 150px;
}

.slide-copy h2 {
  font-size: 34px;
}

.slide-copy {
  background: rgba(251, 250, 247, .88);
}

.section-title h3, .page-title h2 {
  font-size: 24px;
}

.visual-pair img, .story-image img, .message-block img {
  height: 260px;
}

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

.logo-list {
  grid-template-columns: 1fr 1fr;
}
}

@media(max-width:980px) {
.company-home-card {
  max-width: 100%;
}

.company-home-card img {
  height: 260px;
}

.company-home-card__body {
  grid-template-columns: 1fr;
}

.company-home-card__body em {
  margin-top: 8px;
}

.company-home-card__body span {
  margin-top: 32px;
}
}

@media(max-width:560px) {
.company-home-card__body h3 {
  font-size: 28px;
}

.company-home-card__body em {
  font-size: 16px;
}

.company-home-card img {
  height: 220px;
}
}

/* 20260708 requested updates */

.mobile-logo {
  display: none;
}

.news-detail {
  max-width: 900px;
  border-top: 1px solid var(--line);
  padding-top: 28px;
}

.news-detail__meta {
  display: flex;
  gap: 18px;
  font-family: "Noto Sans JP", sans-serif;
  color: var(--muted);
  margin: 0 0 14px;
}

.news-detail__meta span {
  color: var(--accent);
}

.news-detail h3 {
  font-size: 30px;
  font-weight: 400;
  letter-spacing: .06em;
  margin: 0 0 22px;
}

.news-detail img {
  width: 100%;
  max-height: 430px;
  object-fit: cover;
  margin: 0 0 28px;
  background: var(--soft);
}

.news-detail__body {
  font-family: "Noto Sans JP", sans-serif;
  color: #4f4a44;
  line-height: 2;
  margin-bottom: 32px;
  white-space: normal;
}

.pagination button {
  width: 36px;
  height: 36px;
  border: 1px solid var(--line);
  background: #fff;
  display: grid;
  place-items: center;
  font-family: Arial;
  cursor: pointer;
}

.pagination button.current {
  background: var(--accent);
  color: #fff;
}

@media(max-width:980px) {
.mobile-logo {
  display: block;
  position: fixed;
  left: 18px;
  top: 18px;
  z-index: 58;
  background: rgba(255, 255, 255, .92);
  padding: 8px 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, .10);
  transition: opacity .25s ease, visibility .25s ease;
}

.mobile-logo img {
  width: 132px;
  height: auto;
}

.mobile-logo.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.hero-slider + .news-section {
  border-top: 0;
}

.news-detail h3 {
  font-size: 24px;
}

.news-toolbar {
  display: block;
}

.admin-link {
  display: inline-block;
  margin-top: 10px;
}
}

@media(max-width:560px) {
.mobile-logo img {
  width: 118px;
}

.mobile-logo {
  left: 5px;
  top: 8px;
}

.news-detail img {
  max-height: 260px;
}
}

/* Contact form */

.contact-section {
  background: #fff;
}

.contact-layout {
  display: grid;
  grid-template-columns: 36% 1fr;
  gap: 56px;
  align-items: start;
}

.contact-intro h3 {
  font-size: 28px;
  font-weight: 400;
  letter-spacing: .08em;
  margin: 0 0 20px;
}

.contact-note {
  font: 13px/1.8 "Noto Sans JP", sans-serif;
  color: var(--muted);
  margin-top: 18px;
}

.contact-form {
  border: 1px solid var(--line);
  background: var(--bg);
  padding: 32px;
  font-family: "Noto Sans JP", sans-serif;
}

.contact-form label {
  display: block;
  font-size: 14px;
  color: #333;
  margin: 0 0 18px;
}

.contact-form label span {
  display: inline-block;
  margin-left: 10px;
  padding: 2px 8px;
  background: var(--accent);
  color: #fff;
  font-size: 11px;
  line-height: 1.4;
}

.contact-form input, .contact-form select, .contact-form textarea {
  width: 100%;
  margin-top: 8px;
  border: 1px solid var(--line);
  background: #fff;
  padding: 12px 14px;
  border-radius: 0;
  color: #222;
}

.contact-form textarea {
  min-height: 180px;
  resize: vertical;
}

.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus {
  outline: 1px solid var(--accent);
  border-color: var(--accent);
}

.contact-submit {
  margin-top: 8px;
  width: 100%;
  border: 1px solid var(--accent);
  background: var(--accent);
  color: #fff;
  padding: 14px 18px;
  letter-spacing: .16em;
  cursor: pointer;
  transition: .25s ease;
}

.contact-submit:hover {
  background: #fff;
  color: var(--accent);
}

@media(max-width:980px) {
.contact-layout {
  grid-template-columns: 1fr;
  gap: 28px;
}

.contact-form {
  padding: 24px;
}
}

/* ===== Hover animations added 2026-07-08 ===== */

a, button {
  transition: color .28s ease, background-color .28s ease, border-color .28s ease, opacity .28s ease, transform .28s ease, box-shadow .28s ease;
}

a:hover {
  color: var(--accent);
}

.side-menu a:hover, .footer a:hover {
  transform: translateX(6px);
  opacity: .78;
}

.logo-list a:hover, .card-links a:hover, .news-list a:hover, .hero-news a:hover, .admin-link:hover, .category-tabs button:hover, .pagination a:hover, .pagination button:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, .08);
  border-color: var(--accent);
}

.news-list a:hover, .news-row:hover {
  background: rgba(154, 116, 74, .055);
  padding-left: 12px;
  padding-right: 12px;
}

.more, .card-links b, .hero-news a {
  position: relative;
  overflow: hidden;
}

.more:after {
  width: 64px;
  transform-origin: left center;
  transition: width .34s ease, transform .34s ease, background-color .34s ease;
}

.more:before {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  transform: rotate(45deg);
  order: 3;
  margin-left: -26px;
  transition: transform .34s ease, margin-left .34s ease;
}

.more:hover {
  gap: 22px;
  transform: translateX(4px);
}

.more:hover:after {
  width: 82px;
}

.more:hover:before {
  margin-left: -20px;
  transform: translateX(8px) rotate(45deg);
}

.card-links b:after, .admin-link:after {
  content: "";
  display: inline-block;
  width: 42px;
  height: 1px;
  background: currentColor;
  margin-left: 12px;
  vertical-align: middle;
  transition: width .32s ease, transform .32s ease;
}

.card-links a:hover b:after, .admin-link:hover:after {
  width: 60px;
  transform: translateX(6px);
}

.hero-news a:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform .32s ease;
}

.hero-news a:hover:after {
  transform: scaleX(1);
}

.online-badge:hover, .menu-toggle:hover, .admin-btn:hover, .mini-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, .10);
}

.admin-btn:hover {
  filter: brightness(1.04);
}

@media (hover:none) {
a:hover, button:hover, .more:hover {
  transform: none;
  box-shadow: none;
}

.side-menu a:hover, .footer a:hover {
  transform: none;
}
}

/* Refined arrow motion inspired by Chugai Toen: thin line + small arrow head, no bulky icon */

.more, .company-home-card__body span, .card-links b, .admin-link {
  overflow: visible;
}

.more {
  gap: 18px;
  transition: color .28s ease, transform .28s ease;
}

.more:after {
  width: 64px !important;
  height: 1px;
  background: currentColor;
  transform: translateX(0) scaleX(1);
  transform-origin: left center;
  transition: transform .38s cubic-bezier(.22, .61, .36, 1), width .38s cubic-bezier(.22, .61, .36, 1);
}

.more:before {
  content: "";
  order: 4;
  width: 8px;
  height: 8px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  transform: translateX(-28px) rotate(45deg);
  margin-left: 0;
  transition: transform .38s cubic-bezier(.22, .61, .36, 1);
}

.more:hover {
  gap: 18px;
  color: var(--accent);
  transform: translateX(0);
}

.more:hover:after {
  width: 82px !important;
  transform: translateX(10px) scaleX(1);
}

.more:hover:before {
  margin-left: 0;
  transform: translateX(-6px) rotate(45deg);
}

.company-home-card__body span {
  position: relative;
  width: max-content;
  max-width: 100%;
  gap: 20px;
  transition: color .32s ease, transform .32s ease !important;
}

.company-home-card__body span:after {
  width: 68px !important;
  height: 1px;
  background: currentColor !important;
  transform: translateX(0) scaleX(1) !important;
  transform-origin: left center;
  transition: width .42s cubic-bezier(.22, .61, .36, 1), transform .42s cubic-bezier(.22, .61, .36, 1), background .32s ease !important;
}

.company-home-card__body span:before {
  width: 9px;
  height: 9px;
  border-top: 1px solid currentColor !important;
  border-right: 1px solid currentColor !important;
  margin-left: 0 !important;
  transform: translateX(-31px) rotate(45deg) !important;
  transition: transform .42s cubic-bezier(.22, .61, .36, 1), border-color .32s ease !important;
}

.company-home-card:hover .company-home-card__body span {
  color: var(--accent);
  transform: translateX(0) !important;
}

.company-home-card:hover .company-home-card__body span:after {
  width: 92px !important;
  transform: translateX(12px) scaleX(1) !important;
}

.company-home-card:hover .company-home-card__body span:before {
  transform: translateX(-2px) rotate(45deg) !important;
}

.card-links b:after, .admin-link:after {
  width: 46px;
  background: currentColor;
  transform: translateX(0);
}

.card-links a:hover b:after, .admin-link:hover:after {
  width: 64px;
  transform: translateX(8px);
}

/* Source page content replacements 2026-07-08 */

.about-source, .about-pride, .wholesale-source, .faq-section {
  padding: 72px 7vw;
  background: #fff;
  border-top: 1px solid var(--line);
}

.source-hero {
  display: grid;
  grid-template-columns: 1fr 38%;
  gap: 54px;
  align-items: center;
}

.source-hero h3, .about-pride h3, .wholesale-hero h3, .wholesale-contact h3, .faq-section h3 {
  font-size: 28px;
  font-weight: 400;
  letter-spacing: .09em;
  line-height: 1.55;
  margin: 0 0 22px;
}

.source-hero p, .about-pride p, .wholesale-source p, .faq-section p {
  font-family: "Noto Sans JP", sans-serif;
  color: #555;
  line-height: 2;
}

.source-hero figure {
  margin: 0;
  background: var(--soft);
  padding: 24px;
}

.source-hero img {
  width: 100%;
  height: 320px;
  object-fit: contain;
}

.source-company {
  display: grid;
  grid-template-columns: 180px 1fr;
  margin-top: 48px;
  border-top: 1px solid var(--line);
}

.source-company dt, .source-company dd {
  border-bottom: 1px solid var(--line);
  padding: 16px 18px;
  margin: 0;
  font-family: "Noto Sans JP", sans-serif;
}

.source-company dt {
  background: var(--bg);
  color: #555;
}

.quality-grid, .wholesale-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  margin-top: 34px;
}

.quality-grid article, .wholesale-grid article {
  background: #fff;
  padding: 26px;
  min-height: 210px;
}

.quality-grid h5, .wholesale-grid h4, .faq-list h4 {
  font-size: 18px;
  font-weight: 400;
  letter-spacing: .08em;
  margin: 0 0 12px;
}

.wholesale-source {
  display: grid;
  grid-template-columns: 1fr 34%;
  gap: 54px;
  align-items: start;
}

.wholesale-contact {
  background: var(--bg);
  border: 1px solid var(--line);
  padding: 34px;
  position: sticky;
  top: 30px;
}

.faq-list {
  display: grid;
  gap: 18px;
  margin-top: 28px;
}

.faq-list article {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 8px 18px;
  border: 1px solid var(--line);
  background: #fff;
  padding: 24px;
}

.faq-list span {
  font: 18px Georgia, serif;
  color: var(--accent);
}

.panda-title {
  background: linear-gradient(180deg, #fbfaf7 0%, #fff 100%);
}

.panda-guide {
  padding: 20px 7vw 100px;
  background: #fff;
}

.panda-card {
  display: grid;
  grid-template-columns: minmax(280px, 1.05fr) minmax(280px, .95fr);
  gap: 54px;
  align-items: center;
  padding: 64px 0;
  border-bottom: 1px solid var(--line);
}

.panda-card.reverse figure {
  order: 2;
}

.panda-card.reverse .panda-text {
  order: 1;
}

.panda-card figure {
  margin: 0;
  overflow: hidden;
  border-radius: 22px;
  background: #f4f0ea;
  box-shadow: 0 18px 40px rgba(0, 0, 0, .08);
}

.panda-card img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
  transition: transform .7s ease;
}

.panda-card:hover img {
  transform: scale(1.045);
}

.panda-en {
  font: italic 18px/1.6 Georgia, serif;
  color: var(--accent);
  letter-spacing: .04em;
  margin: 0 0 10px;
}

.panda-text h3 {
  font-size: 36px;
  font-weight: 400;
  line-height: 1.45;
  letter-spacing: .08em;
  margin: 0 0 18px;
  color: #222;
}

.panda-name {
  font-weight: 700;
  color: #333;
  margin: 0 0 18px;
  font-family: "Noto Sans JP", sans-serif;
}

.panda-text p {
  font-family: "Noto Sans JP", sans-serif;
  line-height: 2;
  color: #555;
}

@media(max-width:980px) {
.about-source, .about-pride, .wholesale-source, .faq-section {
  padding: 56px 24px;
}

.source-hero, .wholesale-source {
  grid-template-columns: 1fr;
}

.quality-grid, .wholesale-grid {
  grid-template-columns: 1fr;
}

.source-company {
  grid-template-columns: 1fr;
}

.source-company dt {
  border-bottom: 0;
}

.wholesale-contact {
  position: static;
}

.panda-guide {
  padding-left: 24px;
  padding-right: 24px;
}

.panda-card, .panda-card.reverse {
  grid-template-columns: 1fr;
  gap: 28px;
  padding: 46px 0;
}

.panda-card.reverse figure, .panda-card.reverse .panda-text {
  order: initial;
}

.panda-card img {
  height: 320px;
}

.panda-text h3 {
  font-size: 28px;
}
}

/* About page image additions */

.about-title-img {
  width: 220px;
  margin: 22px 0 0 60px;
  opacity: .9;
}

.source-hero figure {
  overflow: hidden;
  padding: 0;
}

.source-hero img {
  height: 360px;
  object-fit: cover;
  transition: transform .6s ease;
}

.source-hero figure:hover img {
  transform: scale(1.035);
}

.about-feature-title {
  width: 240px;
  margin: 0 0 20px;
}

.about-factory-photo {
  margin: 28px 0 10px;
  overflow: hidden;
  background: var(--soft);
}

.about-factory-photo img {
  width: 100%;
  height: 360px;
  object-fit: cover;
}

@media(max-width:980px) {
.about-title-img {
  width: 170px;
  margin-left: 0;
}

.source-hero img, .about-factory-photo img {
  height: 260px;
}

.about-feature-title {
  width: 190px;
}
}

.features-heading {
  text-align: center;
  margin: 0 0 54px;
}

.features-heading p {
  margin: 0 0 10px;
  font: 22px/1.2 Arial, "Noto Sans JP", sans-serif;
  letter-spacing: .18em;
  color: #24a36c;
}

.features-heading span {
  display: block;
  width: 42px;
  height: 4px;
  background: #24a36c;
  margin: 0 auto 18px;
}

.features-heading h3 {
  margin: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 42px;
  line-height: 1.35;
  font-weight: 500;
  letter-spacing: .14em;
  color: #111;
}

@media(max-width:980px) {
.features-heading {
  margin-bottom: 38px;
}

.features-heading p {
  font-size: 18px;
}

.features-heading h3 {
  font-size: 32px;
}
}

@media(max-width:560px) {
.features-heading {
  margin-bottom: 30px;
}

.features-heading p {
  font-size: 15px;
}

.features-heading span {
  width: 34px;
  height: 3px;
  margin-bottom: 12px;
}

.features-heading h3 {
  font-size: 25px;
  letter-spacing: .08em;
}
}

/* About strength cards - reference style */

.about-strength-section {
  background: #fff;
  padding: 82px 7vw 96px;
  border-top: 1px solid var(--line);
}

.about-strength-section > .eyebrow {
  margin-bottom: 8px;
}

.about-strength-section > h3 {
  font-size: 34px;
  font-weight: 700;
  letter-spacing: .08em;
  line-height: 1.5;
  margin: 0 0 18px;
}

.about-strength-section > p {
  max-width: 980px;
  font-family: "Noto Sans JP", sans-serif;
  color: #555;
  line-height: 2;
  margin: 0 0 52px;
}

.strength-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 64px 70px;
}

.strength-card {
  position: relative;
}

.strength-card figure {
  position: relative;
  margin: 0 0 28px;
  border: 3px solid var(--accent);
  background: #fff;
}

.strength-card--orange figure {
  border-color: var(--accent);
}

.strength-card figure img {
  width: 100%;
  height: 330px;
  object-fit: cover;
}

.strength-card figcaption {
  position: absolute;
  left: 0;
  bottom: 0;
  min-width: 150px;
 
  background: var(--accent);
  color: #fff;
  text-align: center;
  font-weight: 700;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 24px;
  letter-spacing: .05em;
}


.strength-badge {
  position: absolute;
  left: -13px;
  top: -13px;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  z-index: 2;
  display: grid;
  place-items: center;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 23px;
  letter-spacing: .04em;
  box-shadow: 0 8px 18px rgba(242, 5, 70, .18);
}



.strength-card h4 {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 21px;
  line-height: 1.75;
  font-weight: 800;
  margin: 0 0 20px;
  color: #111;
}

.strength-card p {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  line-height: 2;
  color: #333;
  margin: 0;
}

.strength-card:hover figure img {
  transform: scale(1.03);
}

.strength-card figure {
  overflow: hidden;
}

.strength-card figure img {
  transition: transform .55s ease;
}

@media(max-width:980px) {
.about-strength-section {
  padding: 60px 24px;
}

.strength-card-grid {
  grid-template-columns: 1fr;
  gap: 48px;
}

.strength-card figure img {
  height: 300px;
}

.strength-badge {
  width: 68px;
  height: 68px;
  font-size: 19px;
  left: -10px;
  top: -14px;
}

.strength-card h4 {
  font-size: 19px;
}

.strength-card figcaption {
  min-width: 128px;
  font-size: 16px;
  padding: 11px 22px;
}
}

@media(max-width:560px) {
.strength-card figure img {
  height: 230px;
}

.strength-card-grid {
  gap: 42px;
}

.strength-card h4 {
  font-size: 17px;
}

.strength-card p {
  font-size: 14px;
}

.strength-badge {
  width: 58px;
  height: 58px;
  font-size: 17px;
}
}

/* PRIDE block - added local adjustment */

.pride-box {
  border: 1.5px solid #25a26d;
  border-radius: 32px;
  padding: 78px 7%;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(260px, .9fr) 160px;
  gap: 56px;
  align-items: center;
  margin: 0 0 76px;
  background: #fff;
}

.pride-box__text p {
  margin: 0 0 18px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  line-height: 2.05;
  color: #111;
  font-weight: 600;
}

.pride-box__text p:last-child {
  margin-bottom: 0;
}

.pride-box__text strong {
  color: #21a66c;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.pride-box__image {
  margin: 0;
}

.pride-box__image img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.pride-box__title {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
}

.pride-box__title span {
  font: 22px/1.2 Arial, "Noto Sans JP", sans-serif;
  color: #24a36c;
  letter-spacing: .03em;
}

.pride-box__title h3 {
  margin: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 800;
  font-size: 30px;
  line-height: 1.2;
  letter-spacing: .08em;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  color: #000;
}

@media(max-width:1100px) {
.pride-box {
  grid-template-columns: 1fr;
  gap: 30px;
  padding: 46px 34px;
  border-radius: 24px;
}

.pride-box__title {
  justify-content: flex-start;
  text-align: left;
  gap: 20px;
}

.pride-box__title h3 {
  writing-mode: horizontal-tb;
  font-size: 26px;
  line-height: 1.5;
}

.pride-box__image img {
  height: 280px;
}
}

@media(max-width:560px) {
.pride-box {
  padding: 30px 20px;
  margin-bottom: 48px;
  border-radius: 20px;
}

.pride-box__text p {
  font-size: 14px;
  line-height: 1.9;
}

.pride-box__image img {
  height: 210px;
}

.pride-box__title {
  display: block;
}

.pride-box__title span {
  display: block;
  margin-bottom: 8px;
  font-size: 18px;
}

.pride-box__title h3 {
  font-size: 22px;
}
}

/* ===== Retail stores section added ===== */

.retail-section {
  padding: 86px 7vw;
  background: #fff;
  border-top: 1px solid var(--line);
}

.retail-section .section-title {
  justify-content: flex-start;
}

.retail-lead {
  /*max-width: 820px;*/
  margin: 0 0 34px;
  color: #555;
  font-size: 16px;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.9;
}

.retail-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.retail-card {
  background: #fff;
  border: 1px solid var(--line);
  overflow: hidden;
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}

.retail-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, .08);
  border-color: var(--accent);
}

.retail-card figure {
  margin: 0;
  background: var(--soft);
  overflow: hidden;
}

.retail-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: transform .55s ease;
}

.retail-card:hover img {
  transform: scale(1.045);
}

.retail-card__body {
  padding: 20px 22px 24px;
}

.retail-card__body h4 {
  font-size: 19px;
  font-weight: 400;
  letter-spacing: .08em;
  margin: 0 0 8px;
}

.retail-card__body p {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  line-height: 1.8;
  color: #666;
  margin: 0;
}

@media(max-width:980px) {
.retail-section {
  padding: 64px 24px;
}

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

.retail-card img {
  height: 200px;
}
}

@media(max-width:560px) {
.retail-grid {
  grid-template-columns: 1fr;
}

.retail-card img {
  height: 220px;
}
}

/* SNS official color icon buttons */

.sns.social-icons {
  gap: 10px;
  align-items: center;
}

.sns.social-icons a {
  position: relative;
  width: 34px;
  height: 34px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #fff;
  text-decoration: none;
  overflow: hidden;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease, background .25s ease;
}

.sns.social-icons a:hover {
  transform: translateY(-3px);
  border-color: var(--accent);
  background: #fff;
  box-shadow: 0 8px 18px rgba(0, 0, 0, .10);
}

.sns.social-icons svg, .sns.social-icons img {
  width: 20px;
  height: 20px;
  display: block;
  object-fit: contain;
  transition: transform .25s ease;
}

.sns.social-icons a:hover svg, .sns.social-icons a:hover img {
  transform: scale(1.08);
}

.sns-line svg {
  width: 22px;
  height: 22px;
}

.sns-x svg {
  width: 17px;
  height: 17px;
}

.sns-instagram img {
  width: 20px;
  height: 20px;
  border-radius: 5px;
}

/* home company / bulk order cards refined */

.company-card-section {
  padding: 90px 7vw 104px;
  background: #fff;
  position: relative;
  overflow: hidden;
}

.company-card-section:before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(45deg, transparent 0 48%, rgba(141, 31, 31, .035) 48% 49%, transparent 49% 100%), linear-gradient(-45deg, transparent 0 48%, rgba(141, 31, 31, .026) 48% 49%, transparent 49% 100%);
  background-size: 280px 280px;
  background-size: 80px 80px;
  pointer-events: none;
}

.home-link-heading {
  position: relative;
  z-index: 1;
  text-align: center;
  margin: 0 auto 44px;
}

.home-link-heading p {
  margin: 0 0 10px;
  font: 14px/1.4 Georgia, "Times New Roman", serif;
  letter-spacing: .28em;
  color: var(--accent);
}

.home-link-heading p:after {
  content: "";
  display: block;
  width: 38px;
  height: 1px;
  background: var(--accent);
  margin: 12px auto 0;
}

.home-link-heading h3 {
  margin: 0;
  font-size: 34px;
  font-weight: 400;
  letter-spacing: .12em;
}

.company-home-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 34px;
  max-width: 1180px;
  margin: 0 auto;
}

.company-home-card {
  max-width: none;
  display: grid;
  grid-template-columns: 46% 1fr;
  align-items: stretch;
  background: rgba(255, 255, 255, .92);
  border: 1px solid var(--line);
  box-shadow: 0 18px 44px rgba(60, 40, 25, .07);
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}

.company-home-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 60px rgba(60, 40, 25, .12);
  border-color: rgba(141, 31, 31, .22);
}

.company-home-card figure {
  margin: 0;
  overflow: hidden;
  background: var(--soft);
 
}

.company-home-card img {
  width: 100%;
  height: 100%;
  /*min-height: 230px;*/
  object-fit: cover;
  transition: transform .65s ease;
}

.company-home-card:hover img {
  transform: scale(1.045);
}

.company-home-card__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 38px 36px;
  min-height: 230px;
}

.company-home-card__body p {
  margin: 0 0 12px;
  font: 13px/1.4 Georgia, "Times New Roman", serif;
  color: var(--accent);
  letter-spacing: .24em;
}

.company-home-card__body h3 {
  margin: 0;
  font-size: 28px;
  font-weight: 400;
  letter-spacing: .12em;
  line-height: 1.45;
}

.company-home-card__body em {
  display: none;
}

.company-home-card__body span {
  margin-top: 30px;
  display: inline-flex;
  align-items: center;
  gap: 20px;
  font-size: 15px;
  letter-spacing: .12em;
}

.company-home-card__body span:after {
  content: "";
  width: 58px;
  height: 1px;
  background: #222;
  transition: width .32s ease, background .32s ease;
}

.company-home-card__body span:before {
  content: "";
  order: 2;
  width: 9px;
  height: 9px;
  border-top: 1px solid #222;
  border-right: 1px solid #222;
  transform: rotate(45deg);
  margin-left: -31px;
  transition: margin-left .32s ease, border-color .32s ease;
}

.company-home-card:hover .company-home-card__body span {
  color: var(--accent);
}

.company-home-card:hover .company-home-card__body span:after {
  width: 74px;
  background: var(--accent);
}

.company-home-card:hover .company-home-card__body span:before {
  border-color: var(--accent);
  margin-left: -27px;
}

@media(max-width:1100px) {
.company-home-grid {
  grid-template-columns: 1fr;
  max-width: 760px;
}
}

@media(max-width:680px) {
.company-card-section {
  padding: 64px 24px 78px;
}

.home-link-heading {
  margin-bottom: 30px;
  text-align: left;
}

.home-link-heading p:after {
  margin-left: 0;
}

.home-link-heading h3 {
  font-size: 26px;
}

.company-home-card {
  grid-template-columns: 1fr;
}

.company-home-card figure, .company-home-card img {
  /*min-height: 220px;
  height: 220px;*/
}

.company-home-card__body {
  padding: 28px 24px;
  min-height: auto;
}

.company-home-card__body h3 {
  font-size: 24px;
}
}

/* Contact security fields */

.hp-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.contact-form .form-help {
  font-size: 12px;
  color: var(--muted);
  font-family: "Noto Sans JP", sans-serif;
}

/* Extracted from inline <style> blocks */

/* from index.html */



/* Home hero slider */

.company-home-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
  max-width: 1120px;
}

.company-home-card {
  position: relative;
  z-index: 1;
  display: block;
  max-width: none;
}

.company-home-card__body span {
  grid-column: 1/-1;
  margin-top: 54px;
  display: inline-flex;
  align-items: center;
  gap: 18px;
  font-size: 17px;
  letter-spacing: .12em;
  transition: transform .35s ease, color .35s ease;
}

.company-home-card__body span:after {
  content: "";
  width: 64px;
  height: 1px;
  background: #222;
  display: block;
  transition: width .35s ease, transform .35s ease, background .35s ease;
}

.company-home-card__body span:before {
  content: "";
  order: 2;
  width: 10px;
  height: 10px;
  border-top: 1px solid #222;
  border-right: 1px solid #222;
  transform: rotate(45deg);
  margin-left: -31px;
  transition: transform .35s ease, border-color .35s ease;
}

.company-home-card:hover .company-home-card__body span {
  color: var(--accent);
  transform: translateX(6px);
}

.company-home-card:hover .company-home-card__body span:after {
  width: 86px;
  background: var(--accent);
  transform: translateX(8px);
}

.company-home-card:hover .company-home-card__body span:before {
  border-color: var(--accent);
  transform: translateX(16px) rotate(45deg);
}

/* Pages */

/* Admin */

@media(max-width:980px) {
.company-home-grid {
  grid-template-columns: 1fr;
  gap: 28px;
}
}

/* 20260708 requested updates */

/* ===== Hover animations added 2026-07-08 ===== */

/* Refined arrow motion inspired by Chugai Toen: thin line + small arrow head, no bulky icon */

/* ===== Retail stores section added ===== */

/* SNS official color icon buttons */

/* from about.html */

/* Home hero slider */

/* Pages */

/* Admin */

/* 20260708 requested updates */

/* ===== Hover animations added 2026-07-08 ===== */

/* SNS official color icon buttons */

/* from contact.html */

/* Home hero slider */

/* Pages */

/* Admin */

/* 20260708 requested updates */

/* Contact form */

/* ===== Hover animations added 2026-07-08 ===== */

/* SNS official color icon buttons */

/* from products.html */

/* Home hero slider */

/* Pages */

/* Admin */

/* 20260708 requested updates */

/* ===== Hover animations added 2026-07-08 ===== */

/* SNS official color icon buttons */

/* from news-admin.php */

.login-wrap {
  min-height: 100vh;
  display: grid;
  place-items: center;
  background: #fbfaf7;
  padding: 24px;
}

.login-box {
  width: min(420px, 100%);
  background: #fff;
  border: 1px solid #e5ded4;
  padding: 34px;
}

.login-box h1 {
  font-size: 28px;
  font-weight: 400;
  letter-spacing: .08em;
  margin: 0 0 22px;
}

.login-box label {
  display: block;
  margin: 0 0 14px;
  font-family: "Noto Sans JP", sans-serif;
}

.login-box input {
  width: 100%;
  border: 1px solid #e5ded4;
  padding: 12px;
  margin-top: 6px;
}

.login-box button {
  width: 100%;
  border: 0;
  background: #8d1f1f;
  color: #fff;
  padding: 13px;
  margin-top: 10px;
  cursor: pointer;
}

.login-error {
  color: #a00;
  font-family: "Noto Sans JP", sans-serif;
}

.admin-logout {
  display: inline-block;
  margin: 0 0 18px;
  color: #8d1f1f;
  border: 1px solid #8d1f1f;
  padding: 8px 14px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 13px;
}

/* from siire.html */

/* Privacy page */
.privacy-section {
  max-width: 1080px;
  margin: 0 auto;
  padding: 48px 6vw 96px;
}
.privacy-card {
  background: #fff;
  border-radius: 28px;
  padding: clamp(28px, 5vw, 64px);
  box-shadow: 0 18px 45px rgba(42, 70, 58, .08);
}
.privacy-card article {
  padding: 28px 0;
  border-bottom: 1px solid rgba(42, 70, 58, .12);
}
.privacy-card article:first-child {
  padding-top: 0;
}
.privacy-card article:last-child {
  padding-bottom: 0;
  border-bottom: none;
}
.privacy-card h3 {
  position: relative;
  margin: 0 0 16px;
  padding-left: 22px;
  color: #2d5a43;
  font-size: clamp(20px, 2.3vw, 28px);
  line-height: 1.45;
  letter-spacing: .04em;
}
.privacy-card h3:before {
  content: "";
  position: absolute;
  left: 0;
  top: .55em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #6dbb7b;
}
.privacy-card p {
  margin: 0 0 12px;
  line-height: 2;
  color: #42524a;
}
.privacy-card p:last-child {
  margin-bottom: 0;
}
.privacy-card ul {
  margin: 14px 0 0;
  padding-left: 1.3em;
  color: #42524a;
  line-height: 1.9;
}
.privacy-card li + li {
  margin-top: 6px;
}
.privacy-card a {
  color: #2d8f55;
  text-decoration: underline;
  text-underline-offset: 4px;
}
@media (max-width: 768px) {
  .privacy-section {
    padding: 32px 18px 72px;
  }
  .privacy-card {
    border-radius: 22px;
  }
  .privacy-card article {
    padding: 22px 0;
  }
}
