* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Yu Gothic", "Hiragino Kaku Gothic ProN", "Meiryo", sans-serif;
  color: #333;
}

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

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

.container {
  width: min(1180px, 92%);
  margin: 0 auto;
}

.topbar {
  padding: 10px 0;
  font-size: 14px;
  border-bottom: 1px solid #cfcfcf;
}

.topbar .container {
  display: flex;
  justify-content: flex-end;
}

.site-header {
  background: #ffffff;
  padding: 18px 0 10px;
}

.header-inner {
  display: flex;
  justify-content: flex-end;
  width: min(1180px, 92%);
  margin:0 auto;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: 200px;
}

.accent {
  color: #b50043;
}

.hero-copy {
  background: #b50043;
  color: #fff;
  padding: 38px 0 34px;
}

.hero-copy h1 {
  margin: 0 0 10px;
  font-size: 48px;
  font-weight: 800;
}

.hero-copy p {
  margin: 0;
  font-size: 26px;
  font-weight: 400;
}

.hero-image-section {
  padding: 12px 0 10px;
  margin-bottom: 60px;
}

.hero-image {
  width: 100%;
  aspect-ratio: 16 / 5.2;
  object-fit: cover;
}

.main-content {
  padding: 0 0 34px;
}

.column {
  display: flex;
  margin-bottom:50px;
}

.info-card {
  background: #b50043;
  color: #fff;
  padding: 24px 28px;
  min-height: 200px;
  box-shadow: 4px 4px 0 #a9a9a9;
  width: 55%;
}

.info-card h2 {
  margin: 0 0 10px;
  font-size: 36px;
  line-height: 1.2;
}

.info-sub {
  display: inline-block;
  margin-bottom: 18px;
  padding-bottom: 6px;
  border-bottom: 2px solid #fff;
  font-size: 22px;
  font-weight: 400;
}

.info-card p {
  margin: 0;
  font-size: 22px;
  font-weight: 400;
}

.icon-row {
  width: 45%;
  padding:20px;
}

.icon-panel {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 18px;
  min-height: 170px;
  padding: 12px;
}

.icon-panel.large {
  min-height: 220px;
}

.icon-box {
  font-size: clamp(42px, 5vw, 88px);
  color: #b50043;
  font-weight: 800;
  line-height: 1;
}

.icon-box.xl {
  font-size: clamp(66px, 8vw, 150px);
}

.about-section {
  padding: 8px 0 12px;
}

.section-title {
  margin: 0 0 8px;
  font-size: clamp(28px, 3vw, 48px);
  font-weight: 800;
}

.section-line {
  height: 4px;
  background: #b50043;
  margin-bottom: 10px;
}

.section-description {
  margin: 0;
  font-size: 15px;
  color: #444;
}

.profile-bg {
  background: #cfcfcf;
  padding: 38px 0 56px;
}

.profile-card {
  width: min(820px, 94%);
  margin: 50px auto 0;
  background: #fff;
  border-radius: 8px;
  padding: 28px 34px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.profile-card h3 {
  margin: 0 0 18px;
  color: #b50043;
  font-size: 28px;
}

.profile-list {
  margin: 0;
}

.profile-list > div {
  display: grid;
  grid-template-columns: 170px 1fr;
  gap: 12px;
  padding: 4px 0;
}

.profile-list dt {
  font-weight: 700;
}

.profile-list dd {
  margin: 0;
  color: #333;
}

.profile-note {
  margin-top: 20px;
  padding-top: 18px;
  border-top: 2px solid #b50043;
}

.profile-note small {
  display: block;
  margin-top: 10px;
  color: #666;
}

.profile-note small a {
  color: #b50043;
}

.footer-brand {
  background: #f5f5f5;
  padding: 26px 0 18px;
  text-align: center;
}

.footer-brand-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-logo .logo-text {
  font-size: 54px;
}

.footer-logo .logo-mark {
  width: 28px;
  height: 28px;
  border-width: 6px;
}

.footer-domain {
  margin-top: 20px;
  font-size: 14px;
  color: #666;
}


@media (max-width: 430px) {
.cards-layout {
  grid-template-columns: 1fr;
}

.logo-text {
  font-size: 46px;
}

.profile-list > div {
  grid-template-columns: 1fr;
  gap: 4px;
}

.column {
  flex-wrap: wrap;
}

.info-card {
  width: 100%;
}

.icon-row {
  width: 100%;
}

.order_1 {
  order: 2;
}

.order_2 {
  order: 1;
}

.hero-copy {
  padding: 28px 0 24px;
}

.info-card {
  min-height: auto;
  padding: 20px;
}

.profile-note span {
  display: block;
}

.footer-inner {
  flex-direction: column;
  align-items: flex-start;
}









}