@charset "UTF-8";
/*
 * Breakpoints: 681px / 901px / 1121px
 */

/* ===== MOBILE BASE (0–680px) ===== */
:root {
  --navy: #002b55;
  --deep: #001a35;
  --blue: #0068b7;
  --sky: #10aee5;
  --cyan: #39c9ee;
  --pale: #eaf8fd;
  --ice: #f5fbfe;
  --yellow: #ffdf32;
  --coral: #ff684f;
  --white: #fff;
  --ink: #0f2940;
  --muted: #5c7183;
  --line: #cfe1eb;
  --container: 1180px;
  --shadow: 0 26px 70px rgb(0 43 85 / 14%);
  --radius-lg: 32px;
  --radius-md: 20px;
  --ease: cubic-bezier(.22, 1, .36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
  font-size: 16px;
  line-height: 1.8;
  letter-spacing: .035em;
  -webkit-font-smoothing: antialiased;

  padding-bottom: 64px;
  font-size: 15px;  
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
summary {
  font: inherit;
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 999;
  padding: 10px 16px;
  color: var(--white);
  background: var(--deep);
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  /* width: min(calc(100% - 48px), var(--container)); */
  width: min(calc(100% - 32px), var(--container));
  margin-inline: auto;
}
.section {
  /* padding: 120px 0; 
  padding: 72px 0;*/
  /* padding: 90px 0; */
  padding: 52px 0 60px;
}
.section-kicker {
  margin: 0 0 18px;
  color: var(--blue);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .2em;
  line-height: 1.4;
  text-align:center;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-height: 64px;
  padding: 16px 25px 16px 30px;
  border: 2px solid transparent;
  border-radius: 8px;
  font-weight: 800;
  line-height: 1.35;
  box-shadow: 0 12px 30px rgb(0 43 85 / 14%);
  transition: transform .25s var(--ease), box-shadow .25s ease, background-color .25s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 18px 38px rgb(0 43 85 / 24%);
}

.button-primary {
  color: var(--white);
  background: var(--blue);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: #00569a;
}

.button-coral {
  color: var(--white);
  background: var(--coral);
}

.button-coral:hover,
.button-coral:focus-visible {
  background: #e94f39;
}

.button-wide {
  width: 100%;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 0;
  border-bottom: 2px solid currentColor;
  color: var(--blue);
  font-weight: 800;
  line-height: 1.3;
  transition: gap .25s ease, color .25s ease;
}

.text-link:hover,
.text-link:focus-visible {
  padding: 16px 0 8px;
  color: var(--coral);
}
.txtL{text-align:left;}
.txtR{text-align:right;}
.txtC{text-align:center;}
.fontS{font-size:.75em;}
.mt0{margin-top:0;}
.mt5{margin-top:5px;}
.mb0{margin-bottom:0;}
.mb5{margin-bottom:5px;}
@media (max-width: 680px) {
  .forPC,.forTB,.hiddenSP{
    display:none;
  }
}

/*___________________ヘッダー*/
.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 100;
  height: 64px;
  border-bottom: 1px solid transparent;
  background: rgb(255 255 255 / 94%);
  backdrop-filter: blur(16px);
  transition: height .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.site-header.is-scrolled {
  box-shadow: 0 8px 28px rgb(0 43 85 / 8%);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  /* width: min(calc(100% - 48px), 1360px); */
  width: min(calc(100% - 32px), var(--container));
  height: 100%;
  margin-inline: auto;
}
.brand {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-shrink: 0;
}
.brand img {
  width: 68px;
  height: auto;
}
/* .brand span {
  padding-left: 18px;
  border-left: 1px solid var(--line);
  color: var(--navy);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .08em;
} */
.hero {
  position: relative;
  overflow: hidden;
  padding-top: 66px;
  background: radial-gradient(circle at 3% 18%, rgb(57 201 238 / 22%) 0 7%, transparent 7.2%),
    linear-gradient(125deg, #effbff 0 58%, #d8f4fc 58% 100%);
}
.hero::before {
  position: absolute;
  top: 150px;
  left: -100px;
  width: 320px;
  height: 320px;
  border: 1px solid rgb(0 104 183 / 14%);
  border-radius: 50%;
  content: "";
  box-shadow: 0 0 0 42px rgb(0 104 183 / 3%), 0 0 0 96px rgb(0 104 183 / 3%);
}
.hero-noise {
  position: absolute;
  inset: 0;
  opacity: .3;
  background-image: radial-gradient(rgb(0 104 183 / 28%) .7px, transparent .7px);
  background-size: 18px 18px;
  mask-image: linear-gradient(90deg, transparent, black 75%, transparent);
  pointer-events: none;
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap:32px;
  align-items: center;
  padding:24px 0 40px;
}
.hero-copy {
  position: relative;
  z-index: 2;
}
.hero h1 {
  font-size: min(4vw,18px);
}
.hero h2 {
  margin: 0;
  color: var(--deep);
  font-size: min(12vw, 41px);
  font-weight: 900;
  letter-spacing: -.065em;
  line-height: 1.16;
}
.hero h2 em {
  position: relative;
  color: var(--blue);
  font-style: normal;
  z-index: 1;
}
.hero h2 em::after {
  content: "";
  position: absolute;
  right: -4px;
  bottom: -.04em;
  left: -4px;
  z-index: -1;
  height: .4em;
  background: var(--yellow);
  transform: rotate(-1.2deg) scaleX(0);
  transform-origin: left center;
  transition: transform .7s var(--ease);
  transition-delay: .4s;
}
.hero-lead {
  font-weight: 900;
  font-size: 15px;
  line-height: 1.85;
}
.hero-lead p {
  margin-bottom: 0;
}
.hero-lead h3 {
  margin: 0;
  line-height: 1;
}
.hero-lead h3 strong {
  color: var(--coral);
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(38px, 5vw, 60px);
  letter-spacing: -.05em;
  line-height: 1;
}
.hero-actions {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 14px;
  max-width:21em;
  margin-top:24px;
}
.hero-actions .text-link {
  align-self: flex-start;
}
.hero-assurances {
  /* display: grid;
  grid-template-columns: 1fr;
  grid-column: 1 / -1;
  gap: 8px; */
}
.hero-assurances ul {
  /* display: flex;
  flex-wrap: wrap;
  gap:10px 22px; */
  padding: 0;
  margin: 0;
  list-style: none;
  color: var(--navy);
  font-weight: 800;
  font-size:14px;
  text-align:center;
  /* font-size: min(2vw,24px); */
}
.hero-assurances ul li {
  display:inline-block;
  position: relative;
  z-index: 1;
  padding: .2em 1em;
  margin:5px auto;
}
.hero-assurances ul li::after {
  content: "";
  position: absolute;
  right: 0;
  left: 0;
  bottom: 0;
  z-index: -1;
  height: 2em;
  background: var(--yellow);
  transform: rotate(-1.2deg) scaleX(0);
  transform-origin: left center;
  transition: transform .7s var(--ease);
  transition-delay: .4s;
}
.hero-assurances span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.2em;
  height: 1.2em;
  border-radius: 50%;
  color: var(--white);
  background: var(--sky);
  font-size: .8em;
}
.hero-visual {
  position: relative;
}
.mv-slider {
  position: relative;
}
.mv-slider-viewport {
  position: relative;
  display: flex;
  overflow: hidden;
  aspect-ratio: 856 / 470;
  box-shadow: var(--shadow);
}
.mv-slide {
  position: relative;
  flex: 0 0 100%;
  min-width: 100%;
  pointer-events: none;
  transform: translateX(var(--mv-translate, 0%));
  transition: transform .65s var(--ease);
}
.mv-slide.is-active {
  z-index: 2;
  pointer-events: auto;
}
.mv-video-wrap {
  height: 100%;
  overflow: hidden;
  border:8px solid var(--white);
}
.mv-video-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
}
.mv-type {
  position: absolute;
  bottom: 18px;
  left: 18px;
  z-index: 3;
  padding: 7px 10px;
  border-radius: 4px;
  color: var(--white);
  background: rgb(0 26 53 / 78%);
  font-family: Arial, Helvetica, sans-serif;
  font-size: .75em;
  font-weight: 900;
  letter-spacing: .18em;
}
.mv-controls {
  position: relative;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 16px;
  padding-right: 0;
}
.mv-arrow {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgb(0 43 85 / 20%);
  border-radius: 50%;
  color: var(--navy);
  background: var(--white);
  cursor: pointer;
  transition: color .2s ease, background-color .2s ease, transform .2s var(--ease);
}
.mv-arrow:hover,
.mv-arrow:focus-visible {
  color: var(--white);
  background: var(--blue);
  transform: translateY(-2px);
}
.mv-dots {
  display: flex;
  gap: 7px;
}
.mv-dots button {
  width: 18px;
  height: 4px;
  padding: 0;
  border: 0;
  border-radius: 99px;
  background: rgb(0 43 85 / 22%);
  cursor: pointer;
  transition: width .25s ease, background-color .25s ease;
}
.mv-dots button.is-active {
  width: 30px;
  background: var(--blue);
}
.mv-count {
  display: flex;
  gap: 5px;
  align-items: baseline;
  margin: 0 6px;
  color: var(--muted);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 10px;
  font-weight: 800;
}
.mv-count span:first-child {
  color: var(--navy);
  font-size: 16px;
}
.hero-wani {
  position: absolute;
  right:-10px;
  top:10px;
  z-index: 3;
  width:min(25vw,130px);
  filter: drop-shadow(0 18px 18px rgb(0 43 85 / 20%));
  transform: rotate(-5deg);
  animation: wani-float 4s ease-in-out infinite;
}


/*___________________nav*/
.shortcut-bar {
  position: relative;
  z-index: 4;
  color: var(--white);
  background: var(--navy);
  overflow: hidden;
}
.shortcut-nav {
  display: flex;
  flex-wrap:wrap;
  /* grid-template-columns: repeat(6, minmax(90px, 1fr)) minmax(160px, 1.35fr); */
  width: 100%;
  min-height: 74px;
  /* padding-inline: 16px; */
  /* overflow-x: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--sky) var(--navy); */
}
.shortcut-nav a {
  display: flex;
  width:33.333333%;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  /* flex: 0 0 126px; 
  gap: 3px;*/
  min-height: 74px;
  border-left: 1px solid rgb(255 255 255 / 14%);
  border-bottom: 1px solid rgb(255 255 255 / 14%);
  color: #d8eaf5;
  font-size:13px;
  font-weight: 800;
  line-height: 1.35;
  text-align: center;
  transition: color .2s ease, background-color .2s ease;
}
.shortcut-nav a:hover,
.shortcut-nav a:focus-visible {
  color: var(--white);
  background: rgb(255 255 255 / 9%);
}
.shortcut-nav small {
  color: var(--cyan);
  font-family: Arial, Helvetica, sans-serif;
  font-size: .75em;
  font-weight: 900;
  letter-spacing: .12em;
}
.shortcut-nav .shortcut-contact {
  flex-direction: row;
  flex-basis: 168px;
  gap:8px;
  padding-inline: 18px;
  border-left-color: transparent;
  color: var(--white);
  background: var(--coral);
  /* font-size: 13px; */
}
.shortcut-nav .shortcut-contact:hover,
.shortcut-nav .shortcut-contact:focus-visible {
  background: #e94f39;
}
@media (max-width: 680px) {
  .shortcut-nav .shortcut-contact {
    display:none;
  }
  .mobile-contact {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 99;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    height: 64px;
    color: var(--white);
    background: var(--coral);
    box-shadow: 0 -6px 24px rgb(0 43 85 / 18%);
    font-size: 1.2em;
    font-weight: 900;
  }
}


/*___________________お知らせ*/
.announcement {
  background: var(--white);
}

.announcement-heading {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  gap: 2px 18px;
  margin-bottom: 20px;
}
.announcement-heading .section-kicker {
  margin-bottom: 8px;
  font-size: .75em;
  grid-column: 1 / -1;
  margin: 0;
}
.announcement-heading h2 {
  margin: 0;
  color: var(--navy);
  font-size: 25px;
  letter-spacing: -.03em;
}
.announcement-heading > p:last-child {
  margin:8px 0 0;
  color: var(--muted);
  font-size: 13px;
}
.information-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
.information-contact {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 118px;
  align-items:flex-start;
  min-height: 310px;
  overflow: hidden;
  padding: 27px 22px;
  border-radius: 10px 32px 10px 32px;
  color: var(--white);
  background: linear-gradient(145deg, var(--blue), var(--navy));
  box-shadow: var(--shadow);
  isolation: isolate;
}
.information-contact::before {
  position: absolute;
  top: -88px;
  right: -58px;
  z-index: -1;
  width: 270px;
  height: 270px;
  border: 44px solid rgb(57 201 238 / 22%);
  border-radius: 50%;
  content: "";
}

.information-contact img {
  position: absolute;
  right: -6px;
  bottom: -30px;
  width: 165px;
  height: auto;
  filter: drop-shadow(0 15px 18px rgb(0 26 53 / 28%));
  transition: transform .35s var(--ease);
}

.information-contact:hover img,
.information-contact:focus-visible img {
  transform: translateY(-7px) rotate(-2deg);
}

.information-contact > span {
  position: relative;
  z-index: 1;
  display: block;
}


.information-contact small {
  display: block;
  color: var(--yellow);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .15em;
}

.information-contact strong {
  display: block;
  margin-top: 8px;
  font-size: 21px;
  line-height: 1.45;
}

.information-contact em {
  display: block;
  margin-top: 25px;
  padding-top: 14px;
  border-top: 1px solid rgb(255 255 255 / 30%);
  font-size: 12px;
  font-style: normal;
  font-weight: 800;
}
.news-board {
  padding: 21px 18px 16px;
  border: 1px solid var(--line);
  border-top: 4px solid var(--sky);
  border-radius: 10px;
  background: var(--white);
  box-shadow: 0 12px 36px rgb(0 43 85 / 8%);
}
.news-board-title {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 15px;
  border-bottom: 1px solid var(--line);
}
.news-board-title > span {
  color: var(--sky);
  font-size: 11px;
}
.news-board-title h3 {
  margin: 0;
  color: var(--blue);
  font-size: 17px;
}
.news-board ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.news-board li {
  display:flex;
  flex-wrap:wrap;
  /* grid-template-columns: 82px 1fr;
  gap: 5px 9px; */
  align-items: center;
  padding: 13px 0;
  border-bottom: 1px solid #e9f1f5;
  font-size: 12px;
  line-height: 1.45;
}
.news-board time {
  width:6.5em;
  margin-bottom:5px;
  color: var(--muted);
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 700;
}
.news-board li > span {
  width:9em;
  margin-bottom:5px;
  padding: 4px 7px;
  border-radius: 3px;
  color: var(--blue);
  background: var(--pale);
  font-size: .75em;
  font-weight: 800;
  text-align: center;
}
.news-board li a {
  width:100%;
  font-weight: 700;
}
.news-board > p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: .75em;
}


/*___________________メディアパワー*/
.media-power {
  position: relative;
  overflow: hidden;
  background: var(--ice);
}

.media-power::before {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgb(0 104 183 / 8%) 1px, transparent 1px);
  background-size: 22px 22px;
  content: "";
  mask-image: linear-gradient(90deg, transparent, #000 55%, transparent);
}

.media-power-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}
.media-power-copy h2{
  margin: 0;
  color: var(--navy);
  font-size: clamp(38px, 5vw, 66px);
  line-height: 1.18;
  font-size: 37px;
  text-align:center;
}
.media-power-copy > p:nth-of-type(2) {
  margin: 24px 0 0;
  color: var(--muted);
}


.power-stats {
  margin: 34px 0 0;
  grid-template-columns: 1fr;
}
.power-stats > div {
  display: inline-block;
}
.power-stats dt {
  font-weight: 800;
}
.power-stats dd {
  margin: 0 2em 0 0;
  color: var(--navy);
  font-size: min(4.6vw,18px);
  font-weight: 900;
  white-space: nowrap;
  line-height: 1.2;
}
.power-stats strong {
  color: var(--coral);
  font-family: Arial, Helvetica, sans-serif;
  font-size: min(13vw,50px);
}


/*___________________種類*/
.sales-cm-types {
  background: var(--white);
}
.sheet-heading {
  /* max-width: 780px; */
  margin: 0 auto;
  text-align: center;
}

.sheet-heading > p:last-child {
  margin: 18px 0 0;
  color: var(--muted);
}
.sheet-heading h2{
  margin: 0;
  color: var(--navy);
  font-size: clamp(37px, 5vw, 66px);
  line-height: 1.18;
}

.type-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top:24px;
}
.type-card {
  position: relative;
  overflow: hidden;
  padding: 37px 25px 32px;
  border-radius: 14px 44px 14px 44px;
  box-shadow: 0 18px 50px rgb(0 43 85 / 9%);
  color: var(--navy);
  background: linear-gradient(145deg, var(--yellow),#ffce32);
}
.type-card::after {
  position: absolute;
  right: -62px;
  bottom: -72px;
  width: 190px;
  height: 190px;
  border: 30px solid rgb(255 255 255 / 13%);
  border-radius: 50%;
  content: "";
}

.type-card > p:first-of-type {
  margin: 18px 0 3px;
  font-size: 12px;
  font-weight: 800;
}

.type-card h3 {
  margin: 0;
  font-size: clamp(34px, 4vw, 48px);
  letter-spacing: -.05em;
}

.type-card > p:nth-of-type(2) {
  max-width: 440px;
  margin: 24px 0 0;
  color: inherit;
  opacity: .86;
}
.type-card > strong {
  display: inline-block;
  margin-top: 26px;
  padding: 8px 13px;
  border-radius: 4px;
  color: var(--yellow);
  background: var(--blue);
  font-size: 13px;
}

/*___________________活用事例*/
.sales-usecases {
  color: var(--white);
  background: var(--navy);
}
.sales-usecases .section-kicker {
  color: var(--cyan);
}
.sales-usecases .sheet-heading h2 {
  color: var(--white);
}
.sales-usecases .sheet-heading > p:last-child {
  color: #c4deeb;
}
.sales-usecase-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  margin-top:24px;
}
.sales-usecase {
  position: relative;
  /* padding: 3em 27px; */
  padding:0 27px 22px;
  border: 1px solid rgb(255 255 255 / 18%);
  border-radius: 28px;
  background: rgb(255 255 255 / 8%);
  transition: transform .3s var(--ease), background-color .3s ease;
}
.sales-usecase:hover {
  background: rgb(255 255 255 / 13%);
  transform: translateY(-6px);
}
.sales-usecase h3 {
  margin:22px 0 12px;
  font-size: 25px;
  color: var(--yellow);
}
.sales-usecase p {
  margin: 0;
  color: #c7e0eb;
  font-size: 13px;
}

/*___________________料金プラン*/
.annual-plan-copy h2{
  margin: 0;
  color: var(--navy);
  font-size: clamp(37px, 5vw, 66px);
  line-height: 1.18;
  text-align:center;
}
.annual-plan {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #f3fbfe, #dff6fd);
}
.annual-plan::after {
  position: absolute;
  right: -140px;
  bottom: -260px;
  width: 560px;
  height: 560px;
  border: 85px solid rgb(16 174 229 / 9%);
  border-radius: 50%;
  content: "";
}
.annual-plan-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap:24px;
  align-items: center;
}
.plan-limited {
  display: inline-block;
  margin-top:24px;
  padding: 6px 12px;
  border-radius: 4px;
  color: var(--navy);
  background: var(--yellow);
  font-size:.875em;
  font-weight: 900;
}
.annual-plan-copy h3 {
  margin: 14px 0 0;
  color: var(--navy);
  font-size: 28px;
}
.annual-plan-copy > p:nth-of-type(2) {
  margin: 18px 0 0;
  color: var(--muted);
}
.annual-plan-copy ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin:16px 0 0;
  padding: 0;
  list-style: none;
}
.annual-plan-copy li {
  padding: 7px 13px;
  border: 1px solid #aadbea;
  border-radius: 999px;
  color: var(--blue);
  background: var(--white);
  font-size: 11px;
  font-weight: 800;
}
.annual-price-card {
  padding: 35px 20px 28px;
  border-radius: 16px 50px 16px 50px;
  background: var(--white);
  box-shadow: var(--shadow);
  text-align: center;
}
.annual-price-card > p {
  margin: 0;
  font-weight: 900;
}
.annual-price-card > div {
  display: flex;
  align-items: baseline;
  justify-content: center;
  line-height: 1;
}
.annual-price-card strong {
  color: var(--coral);
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(51px, 7vw, 88px);
  letter-spacing: -.065em;
}
.annual-price-card > div span {
  color: var(--navy);
  font-size: 21px;
  font-weight: 900;
}
.annual-price-card > div span small {
  font-size: 12px;
}
.annual-price-card > small {
  display: block;
  margin-top: 12px;
  color: var(--muted);
  font-size: .875em;
}
.annual-price-card .button {
  margin-top: 28px;
}
/*___________________制作事例*/

.production {
  background: var(--white);
}
.production-lead{
  margin-top:32px;
  text-align:center;
  font-weight:900;
}
.production-lead p{
  line-height:1.5;
}
.production-lead strong{
  position:relative;
  color: var(--coral);
  font-size: 29px;
}
.production-lead strong::after{
  content: "";
  position: absolute;
  right: -4px;
  bottom: -.04em;
  left: -4px;
  z-index: -1;
  height: .4em;
  background: var(--yellow);
  transform: rotate(-1.2deg) scaleX(0);
  transform-origin: left center;
  transition: transform .7s var(--ease);
  transition-delay: .4s;
}
.production-plan {
  margin-top:32px;
  padding: 30px 20px 24px;
  border: 1px solid var(--line);
  border-radius: 12px 32px 12px 32px;
  box-shadow: 0 20px 60px rgb(0 43 85 / 9%);
}
.production-plan + .production-plan {
  margin-top:24px;
}
.production-plan-heading {
  display: grid;
  grid-template-columns: 1fr;
  gap:16px;
  align-items: end;
  margin-bottom:16px;
}

.production-plan-heading > div > span {
  display: inline-block;
  padding: 2px 10px;
  border-radius: 3px;
  color: var(--white);
  background: var(--blue);
  font-size:.875em;
  font-weight: 900;
}
.production-plan-heading h3 {
  margin: 8px 0 0;
  color: var(--navy);
  font-size: 27px;
}

.production-plan-heading > div > p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 13px;
}
.production-plan-heading > p {
  margin: 0;
  white-space: nowrap;
  font-weight: 900;
}
.production-plan-heading > p small {
}
.production-plan-heading > p strong {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 41px;
  letter-spacing: -.05em;
  line-height: 1.05;
  color: var(--coral);
}
.production-plan-heading > p span {
  font-size:.875em;
  padding-left:.4em;
}
.production-gallery {
  /* display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
  margin-top: 34px; */
}
/* .production-gallery figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: var(--navy);
}
.production-gallery img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  transition: transform .5s var(--ease);
}
.production-gallery figure:hover img {
  transform: scale(1.04);
}
.production-gallery figcaption {
  position: absolute;
  right: 8px;
  bottom: 8px;
  padding: 4px 8px;
  border-radius: 3px;
  color: var(--white);
  background: rgb(0 43 85 / 82%);
  font-size: .75em;
  font-weight: 800;
} */
.production-plan-original {
  border-color: #9bddec;
  background: var(--ice);
}
.production-movie {
  display: grid;
  grid-template-columns: 1fr;
  gap:16px;
  align-items: center;
}
.production-movie iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
}
.production-movie p {
  margin: 0;
  color: var(--blue);
  font-size: 13px;
  font-weight: 800;
}
.preview-image {
  background-color: white;
  /* プレビュー背景のチェック模様をCSSで表示する */
  background-image: 
      linear-gradient(45deg, #d3d3d3 25%, transparent 25%, transparent 75%, #d3d3d3 75%),
      linear-gradient(45deg, #d3d3d3 25%, transparent 25%, transparent 75%, #d3d3d3 75%);
  background-position: 0 0, 8px 8px;
  background-size: 16px 16px;
}

/*___________________お問い合わせ*/
.sales-contact {
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), var(--navy));
}
.sales-contact h2 {
  margin: 0;
  color: var(--white);
  font-size: min(7.2vw,50px);
  line-height: 1.18;
  text-align:center;
}
.sales-contact-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap:24px;
  align-items: center;
}
.sales-contact .section-kicker {
  color: var(--yellow);
}
.sales-contact-inner > div:first-child > p:last-child {
  margin: 24px 0 0;
  color: #c8e7f3;
}
.sales-contact-actions {
  display: grid;
  gap: 12px;
}
.sales-sheet-button {
  border-color: rgb(255 255 255 / 36%);
  color: var(--white);
  background: rgb(255 255 255 / 10%);
}
.sales-sheet-button:hover,
.sales-sheet-button:focus-visible {
  background: rgb(255 255 255 / 17%);
}
.sales-contact-actions small {
  display: block;
  margin-top: 4px;
  color: #b7d9e7;
  font-size: .75em;
  line-height: 1.7;
}

/*___________________お問い合わせ*/
.site-footer {
  padding:40px 0;
  background: var(--white);
}
.footer-inner {
}
.footer-inner > p {
  margin: 0;
  color: var(--muted);
  font-size: 10px;
  text-align:center;
}
.footer-brand {
  display:block;
  width:76px;
  margin:0 auto;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content:center;
  gap: 12px 20px;
  margin:16px auto;
  font-size:.75em;
  font-weight: 700;
}
.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--blue);
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .75s var(--ease), transform .75s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== TABLET / SMALL DESKTOP (681px+) ===== */
@media (min-width: 901px) and (max-width: 900px){
  .forSP,.forPC,.hiddenTB{
    display:none;
  }
}
@media (min-width: 681px) {
  body {
    font-size: 16px;
    padding-bottom: revert;
  }
  .container {
    width: min(calc(100% - 48px), var(--container));
  }
  .section {
    padding: 96px 0 128px;
  }
  .site-header {
    height: 84px;
  }
  .site-header.is-scrolled {
    height: 70px;
  }
  .header-inner {
    width: min(calc(100% - 48px), 1360px);
  }
  .brand img {
    width: 82px;
  }
  .brand span {
    display: revert;
  }
  .hero {
    padding-top: 84px;
  }
  .hero-grid {
    gap:72px;
    /* min-height: 710px; */
    padding-top:72px;
    padding-bottom:72px;
  }
  .hero h2{
    font-size: min(6vw, 72px);
  }
  .hero-lead {
    font-size: revert;
    line-height: revert;
  }
  .hero-actions {
    max-width:none;
    align-items: center;
    gap: 30px;
    flex-direction: revert;
  }
  .hero-assurances {
    display: revert;
    grid-template-columns: revert;
    gap: revert;
  }

  /* .hero-visual {
    padding-bottom: 135px;
  } */

  .mv-video-wrap {
    border-width:16px;
  }
  .mv-controls {
    justify-content: flex-end;
    gap: 12px;
    margin-top: 20px;
    padding-right: 18px;
  }
  .mv-arrow {
    width: 42px;
    height: 42px;
  }
  .mv-dots button {
    width: 24px;
  }
  .mv-dots button.is-active {
    width: 42px;
  }
  .hero-wani {
    right: 16px;
    width: 125px;
  }
  .hero-assurances ul {
    font-size: min(2vw, 24px);
  }
  .hero-assurances ul li{
    margin:0 1em;
  }
  .shortcut-bar {
    overflow: revert;
  }
  .shortcut-nav {
    /* display: grid;
    min-height: 88px;
    border-right: 1px solid rgb(255 255 255 / 14%);
    width: revert;
    overflow-x: revert;
    padding-inline: revert;
    scrollbar-width: revert;
    scrollbar-color: revert; */
    display: grid;
    grid-template-columns: repeat(6, minmax(90px, 1fr)) minmax(160px, 1.35fr);
    min-height: 88px;
    border-right: 1px solid rgb(255 255 255 / 14%);
  }
  .shortcut-nav a{
    width:100%;
  }
/* 
  .shortcut-nav a {
    font-size: min(1.5vw,14px);
    flex: revert;
    min-height: revert;
    border-bottom: revert;
  }
  .shortcut-nav .shortcut-contact {
    flex-basis: revert;
    padding-inline: revert;
  } */
  .announcement-heading .section-kicker{
    text-align:left;
  }
  /* .announcement {
    padding: 72px 0 84px;
  } */

  .announcement-heading {
    margin-bottom: 26px;
    grid-template-columns: auto 1fr;
  }
  .footer-inner {
    display:flex;
    flex-wrap:wrap;
    justify-content:space-between;
    align-items:center;
    
  }
  .footer-brand{
    margin:0 auto 16px 0;
  }
  .footer-links {
    text-align:right;
    margin:0 0 16px auto;

  }
  .footer-inner > p{
    width:100%;
    text-align:right;
  }
  .mobile-contact {
    display: none;
  }
  .hero-actions .text-link {
    align-self: revert;
  }
  .announcement-heading > p:last-child {
    margin-top: revert;
  }
  .news-board {
    padding: 25px 28px 19px;
  }
  .news-board li {
    display:grid;
    grid-template-columns:5.5em 6.5em 1fr;
    gap: 12px;
  }
  .news-board li a {
    width:auto;
  }
  .information-grid{
    gap:40px
  }
  .information-contact {
    min-height: 285px;
    padding: 32px;
  }
  .information-contact strong {
    font-size: 24px;
  }
  .media-power-copy .section-kicker{
    text-align:left;
  }
  .media-power-copy h2 {
    font-size: clamp(38px, 5vw, 66px);
    text-align:left;
  }
  .sheet-heading h2 {
    font-size: clamp(38px, 5vw, 66px);
  }
  .annual-plan-copy h2 {
    font-size: clamp(38px, 5vw, 66px);
    text-align:left;
  }
  .plan-limited{
    margin-top:48px;
  }
  .annual-plan-copy .section-kicker{
    text-align:left;
  }
  .sales-contact h2 {
    font-size:clamp(35px, 3.5vw, 50px);
    text-align:left;
  }
  .sales-contact .section-kicker{
    text-align:left;
  }
  .sales-contact-inner > div:first-child > p:last-child{
    margin-top:48px;
  }
  .power-stats {
    grid-template-columns: revert;
  }
  .power-visual li {
    min-width: 74px;
    padding: 7px 10px;
    font-size: 10px;
  }
  .type-grid {
    grid-template-columns: repeat(2, 1fr);
    gap:40px;
    margin-top:48px;
  }
  .type-card {
    padding: 50px 46px 42px;
  }
  .sales-usecase-grid {
    grid-template-columns: repeat(2, 1fr);
    gap:24px;
    margin-top:48px;
  }
  .sales-usecase {
    padding:1.5em 27px 3em;
    /* min-height: 14em; */
  }
  .sales-usecase h3 {
    margin-top: revert;
  }
  .annual-price-card {
    padding: 44px 42px 36px;
  }
  .annual-price-card strong {
    font-size: clamp(54px, 7vw, 88px);
  }
  .production-plan {
    margin-top: 48px;
    padding: 48px;
    border-radius: 16px 48px 16px 48px;
  }
  .production-plan-heading {
    /* gap: 44px; */
  }
  .production-plan-heading h3 {
    font-size: 31px;
  }
  .production-plan-heading > p strong {
    font-size: 49px;
  }
  .production-gallery {
    grid-template-columns: repeat(3, 1fr);
  }
  .sales-contact {
    padding-bottom:90px;
  }
  .power-visual {
    min-height: 500px;
    border-radius: revert;
  }
}

/* ===== DESKTOP (901px+) ===== */
@media (min-width: 901px) {
  .forSP,.forTB,.hiddenPC{
    display:none;
  }
  .section {
    padding: 120px 0;
  }
  .hero-grid {
    grid-template-columns: .91fr 1.09fr;
    gap: 38px;
    padding-top: 56px;
    padding-bottom: 56px;
  }
  .hero-visual {
    padding-top: 72px;
    width: revert;
    margin-inline: revert;
    padding-bottom: revert;
    transform: revert;
  }
  .hero-wani {
    right: 20px;
    width: 130px;
    bottom: revert;
  }
  .hero-assurances {
    display: grid;
    grid-template-columns: 1fr;
    grid-column: 1 / -1;
    gap: 8px;
  }
  .information-grid {
    grid-template-columns: minmax(0, 1.25fr) minmax(340px, .75fr);
  }
  .information-contact {
    min-height: 330px;
  }
  .media-power-grid {
    grid-template-columns: .82fr 1.18fr;
    gap: 40px;
  }
  .sales-usecase-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .sales-usecase:nth-child(even) {
      transform: translateY(32px);

  }
  .annual-plan-inner {
    grid-template-columns: 1fr 1fr;
    gap: 80px;
  }
  .production-plan + .production-plan{
    margin-top:48px;
  }
  .production-plan{
    display:grid;
    grid-template-columns:auto 640px;
    gap:40px;
    align-items:center;
  }
  .production-plan-heading {
    /* grid-template-columns: 1fr auto; */
  }
  .production-gallery{
  }
  .production-plan-heading > p {
    text-align: right;
  }
  /* .production-plan-heading > p > * {
    display: block;
  } */
  /* .production-movie {
    grid-template-columns: minmax(0, 1.2fr) minmax(260px, .8fr);
  } */
  
  .sales-contact-inner {
    grid-template-columns: 1fr .75fr;
    gap: 90px;
  }
  .power-visual {
    min-height: revert;
  }
}

/* ===== WIDE DESKTOP (1121px+) ===== */
@media (min-width: 1121px) {
  .hero-grid {
    gap: 64px;
  }
  .hero-wani {
    right: -40px;
    width: 135px;
  }
}
@keyframes wani-float {
  0%, 100% { transform: translateY(0) rotate(-5deg); }
  50% { transform: translateY(-10px) rotate(-2deg); }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* ===== 蛍光ペンアニメーション ===== */
.hero h2 em.is-marker-visible::after,
.hero-assurances ul li.is-marker-visible::after,
.production-lead strong.is-marker-visible::after {
  transform: rotate(-1.2deg) scaleX(1);
}

/* 3項目は少しずつ線を引く */
.hero-assurances ul li:nth-child(1)::after {
  transition-delay: .4s;
}
.hero-assurances ul li:nth-child(2)::after {
  transition-delay: .55s;
}
.hero-assurances ul li:nth-child(3)::after {
  transition-delay: .7s;
}

@media (prefers-reduced-motion: reduce) {
  .hero h2 em::after,
  .hero-assurances ul li::after,
  .production-lead strong::after {
    transform: rotate(-1.2deg) scaleX(1);
    transition: none;
  }
}
