:root {
  --blue: #073b91;
  --blue-2: #0d4aa4;
  --navy: #08378f;
  --sky: #bfe8f5;
  --sky-deep: #aee0ef;
  --orange: #ff9200;
  --orange-dark: #ed8400;
  --gray: #eeeeee;
  --text: #333333;
  --bg-shift: 0px;
  --bg-soft-shift: 0px;
  --parallax-y: 0px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, sans-serif;
  font-size: 16px;
  line-height: 1.75;
  background: #fff;
}

.overflow-wrapper {
  overflow-x: hidden;
  width: 100%;
  position: relative;
}

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

[data-scroll-section] {
  --bg-shift: 0px;
  --bg-soft-shift: 0px;
}

.motion-ready [data-reveal] {
  opacity: 0;
  transform: translate3d(0, 28px, 0);
  transition:
    opacity .7s cubic-bezier(.2, .7, .2, 1),
    transform .7s cubic-bezier(.2, .7, .2, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

.motion-ready [data-reveal="left"] {
  transform: translate3d(-28px, 0, 0);
}

.motion-ready [data-reveal="right"] {
  transform: translate3d(28px, 0, 0);
}

.motion-ready [data-reveal].is-visible {
  opacity: 1;
  transform: none;
  will-change: auto;
}

.merit-card:nth-child(2),
.flow-card:nth-child(2),
.faq-item:nth-child(2),
.contact-button {
  --reveal-delay: 90ms;
}

.merit-card:nth-child(3),
.flow-card:nth-child(3),
.faq-item:nth-child(3) {
  --reveal-delay: 160ms;
}

.flow-card:nth-child(4),
.faq-item:nth-child(4) {
  --reveal-delay: 230ms;
}

.flow-card:nth-child(5),
.faq-item:nth-child(5) {
  --reveal-delay: 300ms;
}

.section-inner,
.header-inner,
.footer-inner {
  width: min(1790px, calc(100% - 96px));
  margin: 0 auto;
  position: relative;
}

.section-title {
  margin: 0;
  color: var(--blue);
  font-size: clamp(34px, 3vw, 55px);
  font-weight: 700;
  line-height: 1.45;
  text-align: center;
}

.section-title.slash {
  position: relative;
  display: block;
  text-align: center;
  padding: 0 120px;
}

.section-title.slash::before,
.section-title.slash::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 4px;
  height: 96px;
  background: var(--blue);
  transform-origin: center;
}

.section-title.slash::before {
  transform: translateY(-50%) rotate(-24deg);
  left: clamp(120px, 22vw, 400px);
}

.section-title.slash::after {
  transform: translateY(-50%) rotate(24deg);
  right: clamp(120px, 22vw, 400px);
}

.section-title em {
  display: inline-block;
  vertical-align: middle;
  line-height: 1;
}

.section-title.white {
  color: #fff;
}

.section-title.white::before,
.section-title.white::after {
  background: #fff;
}

/* Header */
.site-header {
  position: relative;
  z-index: 10;
}

.header-inner {
  min-height: 128px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 35px 0 12px;
}

.header-logo {
  display: inline-block;
  width: min(440px, 33vw);
  line-height: 1;
}

.logo-image {
  display: block;
  max-width: 100%;
  height: auto;
}

.logo-service {
  width: 60%;
}

.header-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 20px;
  color: #333333;
}

#hero-title img{
	width:100%;
}

.powered {
  margin: 0;
  font-size: clamp(13px, 1.2vw, 20px);
	color:#0f2260;
}

.global-nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0;
  font-size: clamp(16px, 1.35vw, 24px);
  font-weight: 500;
  letter-spacing: 0;
}

.global-nav a {
  padding: 0 50px;
  border-right: 2px solid #333333;
  line-height: 1;
}

.global-nav a:last-child {
  border-right: 0;
  padding-right: 0;
}

/* First view */
.hero {
  position: relative;
  z-index: 1;
  min-height: 1200px;
  overflow: hidden;
  /* background: linear-gradient(155deg, #d7f4fb 0%, var(--sky) 48%, var(--sky-deep) 100%);
  background-size: 150% 150%;
  background-position: center calc(50% + var(--bg-soft-shift));
  clip-path: polygon(0 20%, 100% 0, 100% 80%, 0 100%); */
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(155deg, #d7f4fb 0%, var(--sky) 48%, var(--sky-deep) 100%);
  background-size: 150% 150%;
  background-position: center calc(50% + var(--bg-soft-shift));
  clip-path: polygon(0 20%, 100% 0, 100% 80%, 0 100%);
}

.hero-inner {
  width: min(1790px, calc(100% - 96px));
  min-height: 990px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.hero-copy {
  position: absolute;
  top: 300px;
  left: 68px;
  width: 720px;
  color: var(--blue);
}

.hero-label {
  display: inline-block;
  margin: 0 0 22px;
  padding: 13px 42px 17px;
  border-radius: 999px;
  color: #fff;
  background: var(--orange);
  font-size: clamp(34px, 4vw, 66px);
  font-weight: 700;
  line-height: 1.05;
}

.hero h1 {
  margin: 0 0 30px;
  color: #fff;
  -webkit-text-stroke: 3px var(--blue);
  text-shadow: 5px 5px 0 rgba(255, 255, 255, .7);
  font-size: clamp(47px, 5vw, 86px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0;
}

.hero h1 span {
  color: var(--blue);
  -webkit-text-stroke: 0;
  text-shadow: none;
}

.hero-circles {
  display: flex;
  gap: 70px;
  margin-left: 42px;
}

.hero-circles p {
  width: 260px;
  height: 260px;
  margin: 0;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--blue);
  background: #fff;
  font-size: 33px;
  font-weight: 700;
  line-height: 1.6;
  text-align: center;
}

.hero-sub {
  margin: 10px 0 0;
  color: var(--blue);
  font-size: clamp(26px, 2.6vw, 42px);
  font-weight: 700;
  line-height: 1.25;
}

.hero-sub span{
  font-size: clamp(24px, 2vw, 36px);
  font-weight: 500;
}

.hero-visual {
  position: absolute;
  inset: 0;
  color: var(--blue);
}

.illust-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.hero-illustration {
  position: absolute;
  top: 150px;
  right: 50px;
  width: 990px;
  height: 800px;
  object-fit: contain;
  transform: translate3d(0, var(--parallax-y), 0);
  will-change: transform;
}

.side-illust .illust-img,
.support-illust .illust-img,
.flag-illust .illust-img,
.flow-side .illust-img,
.faq-person .illust-img {
  transform: translate3d(0, var(--parallax-y), 0);
  transition: transform .16s linear;
  will-change: transform;
}

/* CTA Wrapper and Button */
.cta-wrapper {
  position: relative;
  z-index: 100;
  width: min(1790px, calc(100% - 96px));
  margin: 0 auto;
}

.hero-cta {
  position: absolute;
  right: -120px;
  top: -250px;
  min-width: 620px;
  padding: 26px 48px 26px;
  border-radius: 23px 0 0 23px;
  color: #fff;
  background: var(--orange);
  font-size: clamp(27px, 2.7vw, 44px);
  font-weight: 700;
  line-height: 1;
  text-align: center;
  box-shadow: 0 7px 0 rgba(216, 120, 0, .22);
  z-index: 1;
}

.hero-cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: calc(100% - 2px);
  width: 100vw;
  height: 100%;
  background: var(--orange);
  box-shadow: 0 7px 0 rgba(216, 120, 0, .22);
  z-index: -1;
}

.hero-cta::after {
  content: "▶";
  display: inline-grid;
  width: 42px;
  height: 42px;
  margin-left: 18px;
  place-items: center;
  border-radius: 50%;
  color: var(--orange);
  background: #fff;
  font-size: 21px;
  vertical-align: middle;
}

/* Checklist */
.check-section {
  position: relative;
  margin-top: -185px;
  padding: 282px 0 210px;
  overflow: hidden;
  background: #fff;
}

.check-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: -10%;
  width: 122%;
  height: 100%;
  background-image:
    linear-gradient(
      to bottom left,
      transparent 0%,
      transparent 47%,
      rgba(230, 230, 230, .82) 35%,
      rgba(230, 230, 230, .82) 65%,
      transparent 53%,
      transparent 100%
    );
  background-size: 160% 160%;
  background-position: 0 -950px;
  background-repeat: no-repeat;
  pointer-events: none;
  transform: translate3d(0, var(--bg-shift), 0);
  transition: transform .16s linear;
  will-change: transform;
}

.check-inner {
  z-index: 1;
}

.check-card {
  width: min(1030px, 100%);
  margin: 78px auto 0;
  padding: 72px 82px 72px 92px;
  border: 3px solid var(--blue);
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 2px 0 rgba(7, 59, 145, .15);
}

.check-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 57px;
}

.check-list li + li {
  margin-top: 31px;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 27px;
  height: 27px;
  border: 3px solid var(--blue);
  background: #fff;
}

.check-list li::after {
 content: "";
  position: absolute;
  left: 7px;
  top: 4px;
  width: 26px;
  height: 14px;
  border-left: 6px solid #ef1d1d;
  border-bottom: 6px solid #ef1d1d;
  transform: rotate(-45deg);
}

.check-list strong {
  display: block;
  color: var(--blue);
  font-size: clamp(20px, 1.65vw, 30px);
  font-weight: 700;
  line-height: 1.35;
}

.check-list span {
  display: block;
  margin-top: 7px;
  color: #333333;
  font-size: clamp(13px, 1vw, 18px);
  line-height: 1.7;
}

.check-message {
  margin: 66px 0 0;
  color: var(--orange);
  font-size: clamp(30px, 3vw, 52px);
  font-weight: 700;
  line-height: 1.45;
  text-align: center;
}

.orange-triangle {
  display: block;
  width: 0;
  height: 0;
  margin: 22px auto 0;
  border-left: 60px solid transparent;
  border-right: 60px solid transparent;
  border-top: 70px solid var(--orange);
}

.side-illust {
  position: absolute;
  pointer-events: none;
}

.doc-woman {
  left: -20px;
  top: -100px;
  width: 400px;
  height: 430px;
}

.worried-people {
  left: 0;
  bottom: 205px;
  width: 450px;
  height: 450px;
}

.office-man {
  right: -80px;
  top: 400px;
  width: 400px;
  height: 400px;
}

/* Merits */
.merit-section {
  position: relative;
  margin-top: -125px;
  padding: 195px 0 270px;
  overflow: hidden;
}

.merit-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(145deg, var(--navy) 0%, #0b4d9c 58%, #062f7b 100%);
  background-size: 150% 150%;
  background-position: center calc(50% + var(--bg-soft-shift));
  clip-path: polygon(0 9%, 100% 0, 100% 86%, 0 100%);
}

.merit-inner {
  z-index: 1;
}

.merit-section .section-title em {
  margin: 0 14px;
  font-size: 1.85em;
  font-style: normal;
  line-height: .55;
}

.support-illust {
position: absolute;
  right: -280px;
  top: -150px;
  width: 400px;
  height: 400px;
}

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

.merit-card {
  position: relative;
  min-height: 410px;
  padding: 50px 52px 48px;
  border-radius: 10px;
  color: var(--blue);
  background: #fff;
  text-align: center;
}

.merit-card::before {
  content: "";
  position: absolute;
  top: -56px;
  left: 50%;
  width: 260px;
  height: 112px;
  border-radius: 260px 260px 0 0;
  background: #fff;
  transform: translateX(-50%);
}

.merit-no {
  position: absolute;
  z-index: 1;
  top: -39px;
  left: 0;
  right: 0;
  margin: 0;
  font-size: 23px;
  font-weight: 800;
  line-height: 1;
}

.merit-no strong {
  display: inline-block;
  margin-left: 5px;
  font-size: 53px;
  line-height: .75;
}

.line-icon {
  position: relative;
  width: 180px;
  height: 135px;
  margin: 0 auto 20px;
  color: var(--blue);
}

.line-icon img{
  position: relative;
  width: 180px;
  height: 135px;
  margin: 0 auto 35px;
  color: var(--blue);
}

.data-icon {
  border-radius: 50%;
}

.merit-card h3 {
  margin: 0 0 22px;
  color: var(--blue);
  font-size: clamp(22px, 1.8vw, 34px);
  font-weight: 700;
  line-height: 1.35;
}

.merit-card p:last-child {
  margin: 0;
  color: #333333;
  font-size: clamp(16px, 1.2vw, 22px);
  line-height: 1.65;
}

.flag-illust {
  position: absolute;
  left: -220px;
  bottom: -150px;
  width: 520px;
  height: 450px;
}

/* Flow */
.flow-section {
  position: relative;
  margin-top: -165px;
  padding: 246px 0 190px;
  overflow: hidden;
  background: #fff;
}

.flow-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(
          35deg,
      transparent 0%,
      transparent 50%,
      rgba(228, 228, 228, .82) 35%,
      rgba(228, 228, 228, .82) 65%,
      transparent 50%,
      transparent 100%
    );
  background-size: 180% 180%;
  background-repeat: no-repeat;
  background-position: 0 100px;
  transform: translate3d(0, var(--bg-soft-shift), 0);
  transition: transform .16s linear;
  will-change: transform;
}

.flow-inner {
  z-index: 1;
}

.flow-list {
  width: min(1320px, 100%);
  margin: 74px auto 0;
  padding: 0;
  list-style: none;
}

.flow-card {
  position: relative;
  z-index: 1;
  min-height: 180px;
  display: grid;
  grid-template-columns: 150px 550px 1fr;
  align-items: center;
  gap: 34px;
  margin: 0 0 52px;
  padding: 34px 42px 34px 48px;
  border: 4px solid var(--blue);
  border-radius: 12px;
  background: #fff;
}

.flow-card:nth-child(1) {
  z-index: 5;
}

.flow-card:nth-child(2) {
  z-index: 4;
}

.flow-card:nth-child(3) {
  z-index: 3;
}

.flow-card:nth-child(4) {
  z-index: 2;
}

.flow-card:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -73px;
  width: 0;
  height: 0;
  border-left: 62px solid transparent;
  border-right: 62px solid transparent;
  border-top: 72px solid var(--blue);
  transform: translateX(-50%);
  z-index: 10;
  pointer-events: none;
}

.step-box {
  width: 138px;
  height: 138px;
  display: grid;
  place-items: center;
  align-content: center;
  color: #fff;
  background: var(--blue);
  line-height: 1;
}

.step-box span {
  font-size: 24px;
  font-weight: 600;
}

.step-box strong {
  margin-top: 10px;
  font-size: 60px;
  letter-spacing: 3px;
}

.flow-icon {
  min-height: 140px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 34px;
  color: var(--blue);
}

.flow-icon img {
  position: relative;
  z-index: 1;
  width: 100%;
}



.flow-text {
  position: relative;
  align-self: stretch;
  display: flex;
  align-items: center;
}

.flow-text p:not(.role) {
  margin: 0;
  font-size: clamp(18px, 1.3vw, 25px);
  font-weight: 500;
  line-height: 1.7;
}

.role {
  position: absolute;
  top: -34px;
  right: -42px;
  min-width: 260px;
  margin: 0;
  padding: 8px 24px 10px 38px;
  color: #fff;
  background: #18a8c6;
  font-size: 21px;
  font-weight: 700;
  line-height: 1;
  text-align: right;
  clip-path: polygon(22px 0, 100% 0, 100% 100%, 0 100%);
}

.role.axi-to-clinic {
  background: var(--blue);
}

.role.clinic {
  min-width: 185px;
  background: #079b9a;
}

.flow-text .flow-note {
  margin-top: 30px;
}

.flow-side {
  position: absolute;
  pointer-events: none;
}

.side-left {
  left: -84px;
  top: 760px;
  width: 300px;
  height: 300px;
}

.side-right-top {
  right: -150px;
  top: 390px;
  width: 350px;
  height: 300px;
}

.side-right-bottom {
  right: -150px;
  bottom: 70px;
  width: 350px;
  height: 350px;
}

/* FAQ */
.faq-section {
  position: relative;
  padding: 100px 0 116px;
  overflow: hidden;
  background: linear-gradient(180deg, #d8f5fb 0%, var(--sky) 56%, #c9edf7 100%);
  background-size: 100% 140%;
  background-position: center calc(50% + var(--bg-soft-shift));
}

.faq-inner {
  z-index: 1;
}

.faq-bg {
  position: absolute;
  left: 0;
  top: -100px;
  margin: 0;
  color: rgba(7, 59, 145, .15);
  font-size: 126px;
  font-weight: 500;
  line-height: 1;
}

.faq-list {
  width: min(1320px, calc(100% - 430px));
  margin: 72px auto 0;
}

.faq-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  background: #fff;
}

.faq-item + .faq-item {
  margin-top: 26px;
}

.faq-item summary {
  position: relative;
  margin: 0;
  padding: 25px 90px 25px 50px;
  color: var(--blue);
  font-size: clamp(21px, 1.6vw, 30px);
  font-weight: 700;
  line-height: 1.45;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: flex-start;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary span,
.faq-item p span {
  color: var(--blue);
  font-weight: 700;
}

.faq-item summary span {
  display: inline-block;
  flex-shrink: 0;
  margin-right: 12px;
}

.faq-item summary::after {
  content: "";
  position: absolute;
  right: 30px;
  top: 15px;
  width: 36px;
  height: 36px;
  border-right: 6px solid var(--blue);
  border-bottom: 6px solid var(--blue);
  transform: rotate(45deg);
  transition: transform .2s ease, top .2s ease;
}

.faq-item[open] summary::after {
  top: 40px;
  transform: rotate(225deg);
}

.faq-item summary:focus-visible {
  outline: 4px solid rgba(7, 59, 145, .35);
  outline-offset: -4px;
}

.faq-item p {
  margin: 0;
  padding: 20px 60px 30px;
  color: #333333;
  background: #f5f5f5;
  font-size: clamp(16px, 1.2vw, 21px);
  line-height: 1.8;
  display: flex;
  align-items: flex-start;
}

.faq-item p span {
  display: inline-block;
  margin-right: 18px;
  color: var(--orange);
  font-size: 28px;
  flex-shrink: 0;
  transform: translateY(-10px);
}

.faq-person {
  position: absolute;
  pointer-events: none;
}

.faq-left {
  left: 100px;
  top: 50px;
  width: 150px;
  height: 250px;
}

.faq-bottom {
  left: 8px;
  bottom: -100px;
  width: 210px;
  height: 270px;
}

.faq-right {
  right: -100px;
  top: 325px;
  width: 300px;
  height: 300px;
}

.side-illust .illust-img,
.support-illust .illust-img,
.flag-illust .illust-img,
.flow-side .illust-img,
.faq-person .illust-img {
  filter: drop-shadow(0 12px 14px rgba(18, 55, 90, .08));
}

/* Contact */
.contact-section {
  position: relative;
  padding: 92px 0 118px;
  overflow: hidden;
  color: #fff;
  background: linear-gradient(135deg, var(--orange) 0%, #ffa72d 52%, #f08200 100%);
  background-size: 150% 150%;
  background-position: center calc(50% + var(--bg-soft-shift));
}

.contact-bg {
  position: absolute;
  top: -150px;
  right: 0;
  margin: 0;
  color: rgba(255, 255, 255, .28);
  font-size: 124px;
  font-weight: 500;
  line-height: 1;
}

.contact-inner {
  z-index: 1;
}

.contact-section h2 {
  margin: 100px 0 30px;
  font-size: clamp(34px, 3.2vw, 58px);
  font-weight: 700;
  line-height: 1.45;
  text-align: center;
}

.contact-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 62px;
  width: min(1720px, 100%);
  margin: 0 auto;
  align-items: start;
}

.tel-box {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  column-gap: 20px;
}

.tel-box p {
  grid-column: 1 / -1;
  margin: 0 0 26px;
  padding: 21px 24px;
  border-radius: 22px;
  color: var(--blue);
  background: #fff;
  font-size: clamp(25px, 2.1vw, 39px);
  font-weight: 700;
  line-height: 1;
  text-align: center;
}

.tel-box a {
  position: relative;
  padding-left: 70px;
  color: #fff;
  font-size: clamp(31px, 3vw, 55px);
  font-weight: 700;
  line-height: 1.05;
}

.tel-box a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
  width: 54px;
  height: 54px;
  border-radius: 8px;
background-image: url(images/tel_icon.png);	
}



.tel-box span {
  color: #fff9ed;
  font-size: clamp(15px, 1.3vw, 22px);
  font-weight: 500;
}

.contact-button {
  display: block;
  min-height: 126px;
  padding: 26px 38px;
  border-radius: 20px;
  color: #fff;
  background: var(--blue);
  font-size: clamp(24px, 2vw, 36px);
  font-weight: 700;
  line-height: 1.45;
  text-align: center;
  box-shadow: 0 8px 0 rgba(0, 0, 0, .12);
}

.contact-button strong {
  font-size: 1.5em;
}

/* Footer */
.site-footer {
  background: #fff;
}

.footer-inner {
  min-height: 210px;
  display: grid;
  grid-template-columns: 1.45fr .55fr .75fr;
  gap: 84px;
  align-items: center;
  padding: 36px 0;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 68px;
  color: var(--blue);
}

.logo-axi {
  width: min(250px, 27vw);
  flex: 0 0 auto;
}

.footer-brand p:last-child {
  margin: 0;
  font-size: clamp(27px, 2.2vw, 36px);
  font-weight: 700;
  line-height: 1.5;
}

.footer-brand span {
  display: block;
  color: var(--blue);
  font-size: .55em;
  font-weight: 700;
}

.footer-links {
  display: grid;
  gap: 12px;
  color: #333333;
  font-size: clamp(16px, 1.25vw, 23px);
  line-height: 1.3;
}

.copyright {
  margin: 0;
  padding: 21px 24px;
  color: #fff;
  background: #333;
  font-size: 16px;
  text-align: center;
}


/* Navigation toggle */
.nav-toggle,
.hamburger {
  display: none;
}

@media (min-width: 1181px) and (max-width: 1500px) {
  .hero {
    min-height: 1020px;
  }

  .hero-inner {
    min-height: 900px;
  }

  .hero-copy {
    top: 285px;
    left: 40px;
    width: 560px;
  }

  .hero h1 {
    margin-bottom: 48px;
  }

  .hero-circles {
    gap: 34px;
    margin-left: 22px;
  }

  .hero-circles p {
    width: 176px;
    height: 176px;
    font-size: 24px;
  }

  .hero-illustration {
    top: 160px;
    right: -70px;
    width: min(760px, 50vw);
    height: 650px;
  }

  .hero-cta {
    right: -78px;
    top: -210px;
    min-width: 540px;
  }
}

/* Responsive: Tablet */
@media (max-width: 1180px) {
  .section-inner,
  .header-inner,
  .footer-inner,
  .hero-inner {
    width: min(100% - 48px, 1024px);
  }

  .cta-wrapper {
    width: min(100% - 48px, 1024px);
  }

  .site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: transparent; /* ここも初期状態を透明に変更 */
  }

  .header-inner {
    min-height: 94px;
    align-items: center;
    padding: 22px 0;
  }

  .header-logo {
    width: min(360px, 48vw);
  }

  .logo-service {
    width: 60%;
  }

  .header-right {
    position: static;
    flex-direction: row;
    align-items: center;
    gap: 18px;
  }

  .powered {
    font-size: 14px;
    margin-right: 6px;
  }

  .hamburger {
    position: relative;
    z-index: 1002;
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    border: 0 solid var(--blue);
    border-radius: 12px;
    background: #fff;
    cursor: pointer;
  }

  .hamburger span {
    position: absolute;
    width: 40px;
    height: 4px;
    border-radius: 999px;
    background: var(--blue);
    transition: transform .25s ease, opacity .2s ease, top .25s ease;
  }

  .hamburger span:nth-child(1) { top: 10px; }
  .hamburger span:nth-child(2) { top: 24px; }
  .hamburger span:nth-child(3) { top: 37px; }

  .nav-toggle:checked + .hamburger span:nth-child(1) {
    top: 25px;
    transform: rotate(45deg);
  }

  .nav-toggle:checked + .hamburger span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle:checked + .hamburger span:nth-child(3) {
    top: 25px;
    transform: rotate(-45deg);
  }

  .global-nav {
    position: absolute;
    top: calc(100% - 8px);
    right: 24px;
    z-index: 1001;
    width: min(360px, calc(100vw - 48px));
    display: grid;
    gap: 0;
    padding: 12px;
    border: 2px solid rgba(7, 59, 145, .14);
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 18px 35px rgba(7, 59, 145, .18);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity .25s ease, transform .25s ease;
  }

  .nav-toggle:checked ~ .global-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .global-nav a {
    display: block;
    padding: 16px 18px;
    border-right: 0;
    border-bottom: 1px solid #e3edf7;
    color: var(--blue);
    font-size: 16px;
    font-weight: 700;
    line-height: 1.4;
  }

  .global-nav a:last-child {
    border-bottom: 0;
    padding-right: 18px;
  }

  .hero {
    margin-top: 100px;
    min-height: 700px;
  }

  .hero::before {
    clip-path: polygon(0 8%, 100% 0, 100% 86%, 0 100%);
  }

  .hero-inner {
    min-height: 700px;
  }

  .hero-copy {
    top: 180px;
    left: 0;
    width: 52%;
  }

  .hero h1 {
    margin-bottom: 10px;
  }

  .hero-circles {
    gap: 30px;
    margin-left: 45px;
  }

  .hero-circles p {
    width: 170px;
    height: 170px;
    font-size: 24px;
  }

  .hero-illustration {
top: 30px;
    right: -140px;
    width: 690px;
    height: 420px;
  }

  .check-section {
    margin-top: -145px;
    padding: 230px 0 160px;
  }

  .check-card {
    width: min(860px, 100%);
    padding: 54px 56px;
  }

  .worried-people, .office-man, .flag-illust, .side-left, .side-right-bottom, .faq-left, .faq-bottom {
    display: none !important;
  }

  .doc-woman { left: -20px; top: -150px; transform: scale(0.65); transform-origin: top left; opacity: 1; z-index: -1; }
  .support-illust { right: -50px; top: -160px; transform: scale(0.65); transform-origin: top right; opacity: 1; z-index: -1; }
  .side-right-top { right: 0; top: -150px; transform: scale(0.65); transform-origin: top right; opacity: 1; z-index: -1; }
  .faq-right { right: 50px; top: -70px; transform: scale(0.65); transform-origin: top right; opacity: 1; z-index: -1; }

  .merit-section {
    padding: 170px 0 220px;
  }

  .merit-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
  }

  .merit-card {
    min-height: 360px;
    padding: 20px 24px 20px;
  }

  .line-icon {
    transform: scale(.82);
    margin-bottom: 5px;
  }

  .flow-list {
    width: min(920px, 100%);
  }

  .flow-card {
    grid-template-columns: 120px 300px 1fr;
    gap: 22px;
    padding: 30px 30px;
  }

  .step-box {
    width: 112px;
    height: 112px;
  }

  .step-box strong {
    font-size: 48px;
  }

  .flow-icon {
    transform: scale(.8);
    transform-origin: center;
    width: 140%;
    margin-left: -80px;
  }

  .flow-icon::after {
    display: none;
  }

  .role {
    top: -34px;
    right: -30px;
    min-width: 220px;
    font-size: 17px;
  }

  .faq-list {
    width: min(880px, 100%);
  }

  .contact-actions {
    grid-template-columns: 1fr;
    width: min(820px, 100%);
    gap: 42px;
  }

  .tel-box p {
    font-size: clamp(28px, 2.5vw, 42px);
  }

  .tel-box a {
    font-size: clamp(34px, 3vw, 52px);
  }

  .tel-box span {
    font-size: clamp(24px, 2vw, 24px);
  }
	
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 28px;
    align-items: start;
  }

  .footer-brand {
    gap: 36px;
  }
}

/* Responsive: Smartphone */
@media (max-width: 720px) {
  body {
    font-size: 15px;
	margin-top: 80px;
  }

  .section-inner,
  .header-inner,
  .footer-inner,
  .hero-inner {
    width: calc(100% - 28px);
  }

  .cta-wrapper {
    width: calc(100% - 28px);
  }

  .section-title {
    font-size: 26px;
    line-height: 1.45;
  }

  .section-title.slash {
    gap: 14px;
  }

  .section-title.slash::before,
  .section-title.slash::after {
    width: 3px;
    height: 52px;
  }

  .header-inner {
    min-height: 76px;
    padding: 14px 0;
  }

  .header-logo {
    width: min(250px, 62vw);
  }

  .logo-service {
    width: 60%;
  }

  .powered {
    display: none;
  }

  .hamburger {
    width: 48px;
    height: 48px;
    border-radius: 10px;
  }

  .global-nav {
    top: calc(100% - 4px);
    right: 14px;
    width: calc(100vw - 28px);
    border-radius: 14px;
  }

  .global-nav a {
    padding: 15px 16px;
    font-size: 15px;
  }

  .hero {
    margin-top: 0px; /* ←ここを追加してタブレットの100pxを打ち消す */
    min-height: 700px;
  }

  .hero::before {
    clip-path: polygon(0 3%, 100% 0, 100% 92%, 0 100%);
  }

  .hero-inner {
    min-height: 700px;
  }

  .hero-copy {
    top: 240px;
    left: 0;
    width: 100%;
    text-align: left;
  }

  .hero h1 {
    width: min(430px, 92vw);
    margin: 0 0 15px;
  }

  .hero-circles {
    gap: 14px;
    margin-left: 0;
  }

  .hero-circles p {
    width: 180px;
    height: 130px;
    font-size: 24px;
  }

  .hero-sub {
    margin-top: 18px;
    font-size: 34px;
  }

  .hero-sub span {
    font-size: 28px;
  }

  .hero-illustration {
    top: 500px;
    right: 55%;
    width: 520px;
    height: 360px;
    transform: translateX(54%) translate3d(0, var(--parallax-y), 0);
  }

  .check-section {
    margin-top: -88px;
    padding: 130px 0 105px;
  }

  .check-section::before,
  .flow-section::before {
    background-size: 260% 260%;
  }

  .check-card {
    margin-top: 38px;
    padding: 30px 20px 32px;
    border-width: 2px;
  }

  .check-list li {
    padding-left: 40px;
  }

  .check-list li + li {
    margin-top: 24px;
  }

  .check-list li::before {
    width: 23px;
    height: 23px;
  }

  .check-list li::after {
	  border-left: 6px solid #ef1d1d;
left: 5px;
    top: 8px;
    width: 15px;
    height: 10px;
    border-left-width: 6px;
    border-bottom-width: 6px;
  }

  .check-list strong {
    font-size: 18px;
  }

  .check-list span {
    font-size: 13px;
  }

  .check-message {
    margin-top: 44px;
    font-size: 26px;
  }

  .orange-triangle {
    border-left-width: 40px;
    border-right-width: 40px;
    border-top-width: 46px;
  }

  .side-illust,
  .support-illust,
  .flow-side,
  .faq-person,
  .flag-illust {
    display: none;
  }

  .doc-woman { display: block; left: -50px; top: -120px; transform: scale(0.45); transform-origin: top left; opacity: 1; z-index: -1; }
  .support-illust { display: block; right: -30px;top: -120px; transform: scale(0.45); transform-origin: top right; opacity: 1; z-index: -1; }
  .side-right-top { display: block; right: -10px; top: -110px; transform: scale(0.45); transform-origin: top right; opacity: 1; z-index: -1; }
  .faq-right { display: block; right: -20px; top: -70px; transform: scale(0.45); transform-origin: top right; opacity: 1; z-index: -1; }

  .merit-section {
    margin-top: -92px;
    padding: 132px 0 132px;
  }

  .merit-section::before {
    clip-path: polygon(0 5%, 100% 0, 100% 94%, 0 100%);
  }

  .merit-section .section-title em {
    margin: 0 6px;
  }

  .merit-grid {
    grid-template-columns: 1fr;
    gap: 70px;
    margin-top: 78px;
  }

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

  .merit-card::before {
    width: 210px;
    height: 96px;
    top: -48px;
  }

  .merit-card h3 {
    font-size: 24px;
  }

  .merit-card p:last-child {
    font-size: 15px;
  }

  .line-icon {
    transform: scale(.78);
    margin-bottom: 0;
  }

  .flow-section {
    margin-top: -100px;
    padding: 150px 0 84px;
  }

  .flow-list {
    margin-top: 42px;
  }

  .flow-card {
    grid-template-columns: 1fr;
    gap: 20px;
    min-height: auto;
    margin-bottom: 46px;
    padding: 24px 18px 34px;
    border-width: 3px;
  }

  .flow-card:not(:last-child)::after {
    bottom: -30px;
    border-left-width: 30px;
    border-right-width: 30px;
    border-top-width: 30px;
  }

  .step-box {
    width: 102px;
    height: 102px;
  }

  .step-box span {
    font-size: 19px;
  }

  .step-box strong {
    font-size: 42px;
  }

  .flow-icon {
    min-height: 118px;
    justify-content: flex-start;
    transform: scale(0.8);
    transform-origin: center;
    width: 147%;
  }

  .flow-text {
    display: block;
  }

  .flow-text p:not(.role) {
    font-size: 16px;
  }

  .role {
    position: static;
    width: max-content;
    min-width: auto;
    max-width: 100%;
    margin: 0 0 12px auto;
    padding: 8px 18px 9px 28px;
    font-size: 14px;
  }

  .faq-section {
    padding: 74px 0 78px;
  }

  .faq-bg,
  .contact-bg {
    font-size: 72px;
  }

  .faq-bg {
    top: -80px;
  }

  .faq-list {
    margin-top: 38px;
  }

  .faq-item + .faq-item {
    margin-top: 18px;
  }

  .faq-item summary {
    padding: 18px 54px 18px 18px;
    font-size: 17px;
  }

  .faq-item summary span {
    margin-right: 8px;
  }

  .faq-item summary::after {
    right: 22px;
    top: 23px;
    width: 20px;
    height: 20px;
    border-width: 4px;
  }

  .faq-item[open] summary::after {
    top: 29px;
  }

  .faq-item p {
    padding: 22px 20px 26px;
    font-size: 14px;
  }

  .faq-item p span {
    margin-right: 8px;
    font-size: 23px;
  }

  .contact-section {
    padding: 0 0 50px;
  }

  .contact-bg {
    top: -80px;
    right: 10px;
  }

  .contact-section h2 {
    margin-bottom: 34px;
    font-size: 26px;
  }

  .contact-actions {
    gap: 28px;
  }

  .tel-box {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .tel-box p {
    margin-bottom: 8px;
    padding: 17px 18px;
    border-radius: 16px;
    font-size: 22px;
  }

  .tel-box a {
    padding-left: 54px;
    font-size: 33px;
  }

  .tel-box a::before {
    width: 54px;
    height: 54px;
  }

.tel-box a::after {
    left: 8px;
    top: 12px;
    width: 20px;
    height: 14px;
    border-left-width: 6px;
    border-bottom-width: 6px;
  }

  .tel-box span {
    font-size: 18px;
    margin-left: 60px;
  }

  .contact-button {
    min-height: auto;
    padding: 22px 18px;
    border-radius: 16px;
    font-size: 18px;
  }

  .footer-inner {
    gap: 24px;
    padding: 30px 0;
  }

  .footer-brand {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .logo-axi {
    width: 150px;
  }

  .footer-brand p:last-child {
    font-size: 24px;
  }

  .footer-links {
    gap: 10px;
    font-size: 15px;
  }

  .copyright {
    padding: 20px 20px 70px;
    font-size: 12px;
  }
}

#merit {
  position: relative;
  z-index: 100;
  overflow: visible;
}

#merit .inner,
#merit .container,
#merit .wrap {
  overflow: visible;
}

#merit img[src*="merit-flag.png"] {
  position: relative;
  top: 200px;
  z-index: 9999;
}

#flow {
  position: relative;
  z-index: 1;
}

.merit-section .section-title {
  white-space: nowrap;
}

.merit-section .section-title em {
  display: inline-block;
  margin: 0 14px;
  font-size: 1.85em;
  font-style: normal;
  line-height: 1;
  vertical-align: 0.01em;
}

.role {
  overflow: hidden;
  border-radius: 0 8px 0 0;
  clip-path: polygon(0px 0, 100% 0, 100% 100%, 40px 100%);
}

@media (max-width: 1180px) {
  .section-title.slash {
    padding: 0 72px;
  }

  .section-title.slash::before {
    left: 18px;
  }

  .section-title.slash::after {
    right: 18px;
  }

  .merit-section .section-title {
    font-size: clamp(30px, 4vw, 46px);
  }

  .role {
    top: -31px;
    right: -30px;
    min-width: 220px;
    padding: 9px 22px 10px 50px;
    border-radius: 0 8px 0 0;
    font-size: 17px;
    text-align: right;
    white-space: nowrap;
    clip-path: polygon(-1px 0, 100% 0, 100% 100%, 30px 100%);
  }

  .tel-box a {
    position: relative;
    padding-left: 70px;
    color: #fff;
    font-size: clamp(31px, 3vw, 55px);
    font-weight: 700;
    line-height: 1.8;
  }
}

@media (max-width: 720px) {
  .section-title.slash {
    padding: 0 34px;
  }

  .section-title.slash::before,
  .section-title.slash::after {
    width: 3px;
    height: 52px;
  }

  .section-title.slash::before {
    left: 6px;
  }

  .section-title.slash::after {
    right: 6px;
  }

  .merit-section .section-title {
    font-size: clamp(21px, 6.2vw, 26px);
    white-space: nowrap;
  }

  .merit-section .section-title em {
    margin: 0 4px;
    font-size: 1.55em;
    line-height: 1;
    vertical-align: 0.02em;
    padding-left: 20px;
  }

  .role {
    position: absolute;
    top: -364px;
    right: -18px;
    width: auto;
    max-width: calc(100% - 18px);
    min-width: 0;
    margin: 0;
    padding: 8px 16px 9px 50px;
    border-radius: 0 8px 0 0;
    font-size: 20px;
    line-height: 1.1;
    text-align: right;
    white-space: nowrap;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 40px 100%);
  }

  .flow-card:nth-child(n+4) .role {
    top: -402px;
  }

  .flow-icon::after {
    content: "";
    width: 0;
    height: 0;
    border-top: 0px solid transparent;
    border-bottom: 0px solid transparent;
    border-left: 0px solid var(--blue);
    order: 2;
  }
  .flow-card {
    padding-top: 42px;
    overflow: visible;
  }
}

.br-sp, .br-tb {
    display: none;
}

@media (max-width: 600px) {
    .br-sp {
        display: inline;
    }
}

@media (min-width: 601px) and (max-width: 1180px) {
    .br-tb {
        display: inline;
    }
}

@media (max-width: 1180px) {
  .merit-card::before {
    content: "";
    position: absolute;
    top: -56px;
    left: 50%;
    width: 150px;
    height: 112px;
    border-radius: 260px 260px 0 0;
    background: #fff;
    transform: translateX(-50%);
  }
	
  .merit-no strong {
    display: inline-block;
    margin-left: 5px;
    font-size: 30px;
    line-height: 1.5;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .motion-ready [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .side-illust .illust-img,
  .support-illust .illust-img,
  .flag-illust .illust-img,
  .flow-side .illust-img,
  .faq-person .illust-img,
  .page-top-btn {
    transition: none !important;
  }
}

.page-top-btn {
  position: fixed;
  bottom: 40px;
  right: 40px;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  box-shadow: 0 4px 12px rgba(237, 132, 0, 0.3);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s, background 0.3s;
}

.page-top-btn.is-active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.page-top-btn:hover {
  background: var(--orange-dark);
  transform: translateY(-5px);
}

@media (max-width: 720px) {
  .page-top-btn {
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
  }
  .page-top-btn svg {
    width: 24px;
    height: 24px;
  }
}


/* ====================================================
   追加・上書き：ヘッダーの固定化とレイアウト崩れ防止
==================================================== */

/* ヘッダーを固定し、初期状態は背景透明・影なしに設定 */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: transparent;
  box-shadow: none;
  z-index: 1000;
  transition: background 0.3s ease, box-shadow 0.3s ease; /* スムーズな切り替え */
}

/* スクロール時に付与されるクラスで背景白と影を表示 */
.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

/* ヘッダーが浮いた分、コンテンツが上にズレるのを防ぐ余白（不要なため0に） */
body {
  padding-top: 0; 
}

/* ページ内リンク（アンカー）で飛んだ際、ヘッダーに隠れないようにする */
[id] {
  scroll-margin-top: 160px;
}

/* ====================================================
   追加・上書き：CTAボタンの右下固定化（サイズ約2倍）
==================================================== */

.cta-wrapper {
  position: fixed;
  bottom: 120px; /* ページトップボタンの上に配置 */
  right: 0;
  width: auto; 
  z-index: 9998;
  margin: 0;
}

/* ボタン自体のサイズと装飾を調整 */
.hero-cta {
position: relative;
  display: flex;
  align-items: center;
  right: 0;
  top: 120px;
  min-width: auto;
  padding: 18px 32px 18px 40px;
  border-radius: 30px 0 0 0px;
  font-size: clamp(20px, 2.2vw, 28px);
  box-shadow: 0 6px 20px rgba(216, 120, 0, 0.35);
}

/* 元の「背景が右に突き抜ける装飾」を非表示に */
.hero-cta::before {
  display: none;
}

/* ボタンの横の矢印装飾サイズも拡張 */
.hero-cta::after {
  width: 60px;
  height: 60px;
  margin-left: 20px;
  font-size: 30px;
}

/* ====================================================
   追加・上書き：レスポンシブ時の調整
==================================================== */

@media (max-width: 1180px) {
  body {
    padding-top: 0;
  }
  .site-header {
    position: fixed; /* タブレットの sticky を上書き */
    background: transparent; /* ここも初期状態を透明に変更 */
  }
  [id] {
    scroll-margin-top: 120px;
  }
  .cta-wrapper {
    bottom: 100px;
    width: auto;
  }
  .hero-cta {
right: 0;
    top: 110px;
    font-size: 25px;
    padding: 10px 20px 20px 30px;
  }
  .hero-cta::after {
    width: 50px;
    height: 50px;
    margin-left: 20px;
    font-size: 26px;
  }
}

@media (max-width: 720px) {
  body {
    padding-top: 0;
  }
  [id] {
    scroll-margin-top: 90px;
  }
  .cta-wrapper {
    bottom: 85px; /* スマホ用ページトップボタンの上に配置 */
    width: auto;
  }
  .hero-cta {
right: 0;
    top: 85px;
    padding: 10px 10px 15px 15px;
    font-size: 16px;
    border-radius: 20px 0 0 0px;
  }
  .hero-cta::after {
    width: 30px;
    height: 30px;
    margin-left: 12px;
    font-size: 16px;
  }
	.overflow-wrapper {
  margin-top: 0px;
}
}
/* ==========================================
   1. PC表示での調整（デフォルト）
   ========================================== */
.hero-illustration {
  position: absolute;
  object-fit: contain;
  will-change: transform;
  
  /* 【画像切り替え】PC用の画像パス */
  content: url("images/hero-illustration-pc.png");

  /* 【サイズ調整】 */
  width: 990px;  /* 画像の横幅 */
  height: 800px; /* 画像の高さ */

  /* 【位置調整】 */
  top: 150px;    /* 上からの位置 */
  right: 50px;   /* 右からの位置 */
  
  /* パララックス効果用の記述（変更しないでください） */
  transform: translate3d(0, var(--parallax-y), 0);
}

/* ==========================================
   2. タブレット表示での調整（画面幅 1180px 以下）
   ========================================== */
@media (max-width: 1180px) {
  .hero-illustration {
    /* 【画像切り替え】タブレット用の画像パス */
    content: url("images/hero-illustration-tablet.png");

    /* 【サイズ調整】 */
    width: 690px;  /* 画像の横幅 */
    height: 580px; /* 画像の高さ */

    /* 【位置調整】 */
    top: 30px;     /* 上からの位置 */
    right: -120px; /* 右からの位置 */
  }
}

/* ==========================================
   3. スマートフォン表示での調整（画面幅 720px 以下）
   ========================================== */
@media (max-width: 720px) {
  .hero-illustration {
    /* 【画像切り替え】スマートフォン用の画像パス */
    content: url("images/hero-illustration-sp.png");

    /* 【サイズ調整】 */
    width: 400px;  /* 画像の横幅 */
    height: 200px; /* 画像の高さ */

    /* 【位置調整】 */
    top: 20px;     /* 上からの位置 */
    right: 55%;    /* 右からの位置（中央付近に寄せるための基準値） */
    
    /* 【注意】スマホ版は要素を中央配置するために translateX(54%) が入っています。
       左右の位置を微調整する場合は、上記の「right: ~%」の数値を変更するか、
       中央配置をリセットして自由に配置したい場合は、下記のコメントアウトのように書き換えてください。
    */
    transform: translateX(54%) translate3d(0, var(--parallax-y), 0);
  }
}

/* PCとスマホのみ改行（タブレットでは改行しない） */
@media (min-width: 721px) and (max-width: 1180px) {
    .br-pc-sp {
        display: none;
    }
}

/* 「株式会社」だけを70%に縮小する設定 */
.footer-brand .corp-text {
  display: inline;      /* すでにある span のブロック要素化を打ち消し、横並びにする */
  color: inherit;       /* すでにある span の色指定を打ち消し、元の文字色にする */
  font-size: 0.7em;     /* 文字サイズを70%にする（70%でも可） */
  font-weight: inherit; /* 太さを「アクシー」に合わせる */
}