    :root {
      --main: #e83e8c;
      --main-dark: #b81f6d;
      --accent: #ffb3d9;
      --accent-strong: #ff4fa3;
      --dark: #2a1f2d;
      --light: #fff2f8;
      --white: #ffffff;
      --gray: #6b5d66;
      --border: #f5c7dc;
      --shadow: rgba(184, 31, 109, 0.16);
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      font-family: "BIZ UDGothic", "Meiryo", "Yu Gothic", "Hiragino Kaku Gothic ProN", sans-serif;
      color: var(--dark);
      background: var(--white);
      line-height: 1.8;
    }

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

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

    .site-header {
      position: sticky;
      top: 0;
      z-index: 10;
      background: rgba(255, 255, 255, 0.94);
      border-bottom: 1px solid var(--border);
      backdrop-filter: blur(12px);
    }

    .header-inner {
      max-width: 1120px;
      margin: 0 auto;
      padding: 16px 20px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
    }

    .logo {
      display: flex;
      align-items: center;
      line-height: 1;
    }

    .logo-name {
      position: relative;
      margin-left: 16px;
      padding-left: 16px;
      font-weight: 700;
      font-size: 16px;
      letter-spacing: 0.05em;
      color: var(--main-dark);
    }

.logo-name img {
	height: 20px;
}

    .logo-name::before {
      content: "";
      position: absolute;
      transform: translateY(-50%);
      top: 50%;
      left: 0;
      width: 1px;
      height: 16px;
      background-color: #CCC;
    }

    .logo-img img {
      width: 140px;
    }

    .nav {
      display: flex;
      gap: 20px;
      font-size: 14px;
      font-weight: 700;
    }

    .nav a:hover {
      color: var(--main);
    }

    .hero {
      position: relative;
      overflow: hidden;
      background:
        radial-gradient(circle at 88% 18%, rgba(255, 255, 255, 0.85), transparent 22%),
        radial-gradient(circle at 12% 86%, rgba(255, 179, 217, 0.95), transparent 30%),
        /*linear-gradient(135deg, #ff4fa3 0%, #e83e8c 46%, #b81f6d 100%);*/
 		url("../images/ma_bg01.jpg") no-repeat;
     color: var(--white);
      padding: 96px 20px 88px;
    }

    .hero::after {
      content: "";
      position: absolute;
      right: -120px;
      bottom: -140px;
      width: 360px;
      height: 360px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.12);
    }

    .hero-inner {
      position: relative;
      z-index: 1;
      max-width: 1120px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1.2fr 0.8fr;
      gap: 48px;
      align-items: center;
    }

    .eyebrow {
      display: inline-block;
      margin-bottom: 16px;
      padding: 6px 14px;
      border: 1px solid rgba(255, 255, 255, 0.65);
      border-radius: 999px;
      font-size: 13px;
      letter-spacing: 0.18em;
      background: rgba(255, 255, 255, 0.12);
		backdrop-filter: blur(6px);
    }

    h1 {
      margin: 0 0 20px;
      font-size: clamp(34px, 5vw, 58px);
      line-height: 1.25;
      letter-spacing: 0.04em;
    }

    .hero p {
      margin: 0 0 28px;
      font-size: 17px;
      max-width: 690px;
    }

    .button-row {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
    }

    .button {
      display: inline-block;
      padding: 12px 22px;
      border-radius: 999px;
      font-weight: 700;
      background: var(--white);
      color: var(--main-dark);
      box-shadow: 0 12px 28px rgba(99, 20, 60, 0.2);
    }

    .button.secondary {
      background: transparent;
      color: var(--white);
      border: 1px solid rgba(255, 255, 255, 0.72);
      box-shadow: none;
		backdrop-filter: blur(6px);
    }

    .hero-card {
      background: rgba(125, 125, 125, 0.16);
      border: 1px solid rgba(255, 255, 255, 0.32);
      border-radius: 24px;
      padding: 28px;
      box-shadow: 0 20px 50px rgba(75, 12, 46, 0.18);
		backdrop-filter: blur(10px);
    }

    .hero-card strong {
      display: block;
      font-size: 28px;
      margin-bottom: 8px;
      color: #ffffff;
    }

    section {
      padding: 72px 20px;
    }

    .container {
      max-width: 1120px;
      margin: 0 auto;
    }

    .section-title {
      margin: 0 0 12px;
      font-size: 32px;
		font-weight: 700;
      line-height: 1.4;
      color: var(--gray);
    }

    .section-lead {
      margin: 0 0 36px;
      color: var(--gray);
      max-width: 800px;
    }

    .service-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
    }

    .service-card {
      border: 1px solid var(--border);
      border-radius: 20px;
      padding: 24px;
      background: linear-gradient(180deg, #ffffff 0%, #fff7fb 100%);
      box-shadow: 0 14px 34px var(--shadow);
    }

    .service-number {
      color: var(--accent-strong);
      font-size: 28px;
      font-weight: 700;
    }

    .service-card h3 {
      margin: 8px 0 10px;
      font-size: 19px;
      color: var(--dark);
    }

    .service-card p {
      margin: 0;
      font-size: 14px;
      color: var(--gray);
    }

    .bg-light {
      background:
        radial-gradient(circle at top left, rgba(255, 179, 217, 0.42), transparent 28%),
        var(--light);
    }

    .company-wrap {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 28px;
      align-items: start;
    }

    .info-table {
      width: 100%;
      border-collapse: collapse;
      background: var(--white);
      border-radius: 20px;
      overflow: hidden;
      box-shadow: 0 14px 34px var(--shadow);
    }

    .info-table th,
    .info-table td {
      padding: 18px 20px;
      border-bottom: 1px solid var(--border);
      text-align: left;
      vertical-align: top;
    }

    .info-table th {
      width: 32%;
      background: #ffe3f0;
      color: var(--main-dark);
      font-weight: 700;
    }

    .access-card {
      padding: 28px;
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 20px;
      box-shadow: 0 14px 34px var(--shadow);
    }

    .access-card h3 {
      margin: 0 0 12px;
      color: var(--main-dark);
    }

    .address-box {
      margin: 18px 0;
      padding: 18px;
      border-left: 5px solid var(--accent-strong);
      background: #fff2f8;
      border-radius: 12px;
    }

    .map-link {
      display: inline-block;
      margin-top: 8px;
      padding: 10px 16px;
      border-radius: 999px;
      background: var(--main);
      color: var(--white);
      font-weight: 700;
      font-size: 14px;
      box-shadow: 0 10px 24px rgba(232, 62, 140, 0.25);
    }

    .contact-band {
      background:
        radial-gradient(circle at top right, rgba(255, 255, 255, 0.28), transparent 26%),
        linear-gradient(135deg, #e83e8c, #b81f6d);
      color: var(--white);
      text-align: center;
    }

    .contact-band .section-title {
      color: var(--white);
    }

    .site-footer {
      padding: 28px 20px;
      background: #2a1020;
      color: #f7d7e7;
      text-align: center;
      font-size: 13px;
    }

    @media (max-width: 900px) {
      .logo-name {
        font-size: 15px;
      }

      .logo-name::before {
        height: 15px;
      }

      .logo-img img {
        width: 130px;
      }

		.hero {
			background:
			radial-gradient(circle at 88% 18%, rgba(255, 255, 255, 0.85), transparent 22%),
			radial-gradient(circle at 12% 86%, rgba(255, 179, 217, 0.95), transparent 30%),
			/*linear-gradient(135deg, #ff4fa3 0%, #e83e8c 46%, #b81f6d 100%);*/
			url("../images/ma_bg01_sp.jpg") no-repeat center bottom;
			padding: 72px 20px 64px;
			color: var(--gray);
		}

		.hero-card {
			color: var(--white);
		}
		
		 .button.secondary {
		  color: var(--gray);
		}

      .hero-inner,
      .company-wrap {
        grid-template-columns: 1fr;
      }

      .service-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 640px) {
      .header-inner {
        align-items: flex-start;
        flex-direction: column;
      }

      .logo-name {
        margin-left: 12px;
        padding-left: 12px;
        font-size: 14px;
      }

      .logo-name::before {
        height: 14px;
      }

      .logo-img img {
        width: 120px;
      }

      .nav {
        flex-wrap: wrap;
        gap: 12px;
      }

		section {
        padding: 56px 20px;
      }

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

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