@charset "UTF-8";
/*****************************************
* 基本ファイル - Mac管理セキュリティLP
* Based on mac-subscription LP design
* Colors:
*   Main: #5ECAA1
*   Dark: #008C8B
*   MDM:  #78B8D4
*   IdP:  #F0A050
*   EDR:  #8DAAB8
*****************************************/

/*! sanitize.css v4.0.0 | CC0 License | github.com/10up/sanitize.css */
article, aside, details, figcaption, figure, footer, header, main, menu, nav, section, summary {
  display: block;
}
audio, canvas, progress, video {
  display: inline-block;
}
audio:not([controls]) {
  display: none;
  height: 0;
}
template, [hidden] {
  display: none;
}
*, ::before, ::after {
  background-repeat: no-repeat;
  box-sizing: inherit;
}
::before, ::after {
  text-decoration: inherit;
  vertical-align: inherit;
}
html {
  box-sizing: border-box;
  cursor: default;
  font-family: sans-serif;
  line-height: 1.5;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}
body {
  margin: 0;
}
code, kbd, pre, samp {
  font-family: monospace, monospace;
  font-size: 1em;
}
hr {
  height: 0;
  overflow: visible;
}
nav ol, nav ul {
  list-style: none;
}
abbr[title] {
  border-bottom: 1px dotted;
  text-decoration: none;
}
b, strong {
  font-weight: inherit;
}
b, strong {
  font-weight: 700;
}
dfn {
  font-style: italic;
}
mark {
  background-color: #ff0;
  color: #000;
}
progress {
  vertical-align: baseline;
}
small {
  font-size: 83.3333%;
}
sub, sup {
  font-size: 83.3333%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
sub {
  bottom: -0.25em;
}
sup {
  top: -0.5em;
}
::selection {
  background-color: #5ECAA1;
  color: #fff;
  text-shadow: none;
}
audio, canvas, iframe, img, svg, video {
  vertical-align: middle;
}
img {
  border-style: none;
}
svg {
  fill: currentColor;
}
svg:not(:root) {
  overflow: hidden;
}
a {
  background-color: transparent;
  -webkit-text-decoration-skip: objects;
}
:hover {
  outline-width: 0;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
input, select, textarea {
  background-color: transparent;
  border-style: none;
  color: inherit;
  font-size: 1em;
  margin: 0;
}
button, input {
  overflow: visible;
}
button, select {
  text-transform: none;
}
button, html [type=button], [type=reset], [type=submit] {
  -webkit-appearance: button;
}
::-moz-focus-inner {
  border-style: none;
  padding: 0;
}
:-moz-focusring {
  outline: 1px dotted ButtonText;
}
fieldset {
  border: 1px solid silver;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}
legend {
  display: table;
  max-width: 100%;
  padding: 0;
  white-space: normal;
}
textarea {
  overflow: auto;
  resize: vertical;
}
[type=checkbox], [type=radio] {
  padding: 0;
}
::-webkit-inner-spin-button, ::-webkit-outer-spin-button {
  height: auto;
}
[type=search] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}
::-webkit-search-cancel-button, ::-webkit-search-decoration {
  -webkit-appearance: none;
}
::-webkit-input-placeholder {
  color: inherit;
  opacity: 0.54;
}
::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}
[aria-busy=true] {
  cursor: progress;
}
[aria-controls] {
  cursor: pointer;
}
[aria-disabled] {
  cursor: default;
}
a, area, button, input, label, select, textarea, [tabindex] {
  -ms-touch-action: manipulation;
  touch-action: manipulation;
}
[hidden][aria-hidden=false] {
  clip: rect(0, 0, 0, 0);
  display: inherit;
  position: absolute;
}
[hidden][aria-hidden=false]:focus {
  clip: auto;
}
* {
  padding: 0;
  margin: 0;
}
ul li, ol li {
  list-style: none;
}
address {
  font-style: normal;
}
button {
  cursor: pointer;
}
h1, h2, h3, h4, h5, h6, button, input, label, textarea, select {
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
}

/*====================================
 Animations
====================================*/
@keyframes fadeInAnime {
  0% { opacity: 0; }
  100% { opacity: 1; }
}
.js-scrollAnime-fadeIn {
  opacity: 0;
}
.js-scrollAnime-fadeIn.is-animated {
  animation-name: fadeInAnime;
  animation-fill-mode: forwards;
  animation-duration: 600ms;
  animation-iteration-count: 1;
  animation-timing-function: ease-out;
  animation-delay: 0;
  animation-direction: normal;
}

@keyframes fadeInUpAnime {
  0% { opacity: 0; transform: translateY(100px); }
  100% { opacity: 1; transform: translateY(0); }
}
.js-scrollAnime-fadeInUp {
  opacity: 0;
}
.js-scrollAnime-fadeInUp.is-animated {
  animation-name: fadeInUpAnime;
  animation-fill-mode: forwards;
  animation-duration: 600ms;
  animation-iteration-count: 1;
  animation-timing-function: ease-out;
  animation-delay: 0;
  animation-direction: normal;
}

@keyframes fadeInLeftRightAnime {
  0% { opacity: 0; transform: translateX(-100px); }
  100% { opacity: 1; transform: translateX(0); }
}
.js-scrollAnime-fadeInLeftRight {
  opacity: 0;
}
.js-scrollAnime-fadeInLeftRight.is-animated {
  animation-name: fadeInLeftRightAnime;
  animation-fill-mode: forwards;
  animation-duration: 600ms;
  animation-iteration-count: 1;
  animation-timing-function: ease-out;
}

@keyframes fadeInRightLeftAnime {
  0% { opacity: 0; transform: translateX(100px); }
  100% { opacity: 1; transform: translateX(0); }
}
.js-scrollAnime-fadeInRightLeft {
  opacity: 0;
}
.js-scrollAnime-fadeInRightLeft.is-animated {
  animation-name: fadeInRightLeftAnime;
  animation-fill-mode: forwards;
  animation-duration: 600ms;
  animation-iteration-count: 1;
  animation-timing-function: ease-out;
}

/*====================================
 Common
====================================*/
:root {
  --leading-trim: calc((1em - 1lh) / 2);
}
* {
  overflow-wrap: break-word;
  word-wrap: break-word;
}
html {
  scrollbar-width: none;
  -ms-overflow-style: none;
  scroll-behavior: smooth;
}
html::-webkit-scrollbar {
  display: none;
}
body {
  min-width: 320px;
  background: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(15px, 1.1713030747vw, 16px);
  font-weight: 400;
  line-height: calc(29 / 16);
  letter-spacing: calc(0 * 0.001em);
  color: #282828;
  transition: ease-out 0.3s;
  transition-property: opacity;
  z-index: 1;
}
input, textarea {
  font-family: inherit;
}
body figure {
  margin: 0;
}
img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  image-rendering: crisp-edges;
}
a {
  cursor: pointer;
  text-decoration: none;
  font-size: inherit;
  font-weight: inherit;
  color: inherit;
}
a:hover {
  text-decoration: none;
}
a:not([class]) {
  text-decoration: none;
  color: #5ECAA1;
}
a:not([class]):hover {
  text-decoration: underline;
}
img, a, button, select {
  transition: ease-out 0.3s;
  transition-property: all;
}
ul {
  list-style-type: none;
}

/*====================================
 Header
====================================*/
.l-header {
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 1000;
}
.l-header__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: min(1.2445095168vw, 17px) min(1.4641288433vw, 20px) min(1.2445095168vw, 17px) min(2.9282576867vw, 40px);
}
.l-header__headLeft {
  display: flex;
  gap: min(3.4407027818vw, 47px);
  align-items: center;
}
.l-header__logoMac {
  display: block;
}
.l-header__logoMac img {
  width: auto;
  height: 33px;
}
.l-header__headRight {
  flex: 0 0 auto;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
}
.l-header__headRight .c-btn.--mail,
.l-header__headRight .c-btn.--download {
  flex: 0 0 auto;
  width: min(100%, 200px);
  padding: 12px;
  font-size: 14px;
}
.l-header__headRight .c-btn.--download {
  width: min(100%, 220px);
}
.l-header__nav {
  height: 48px;
  border-top: 1px solid #ECECEC;
  border-bottom: 1px solid #ECECEC;
}

/*====================================
 Drawer
====================================*/
.c-drawerBtn {
  display: none;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  border: none;
  border-radius: 0;
  background: #5ECAA1;
  font-size: 1rem;
  color: #fff;
  text-align: center;
  top: 0;
  right: 0;
  z-index: 10005;
  transition: ease-out 0.3s;
  transition-property: background;
}
.c-drawerBtn__border {
  width: 24px;
  height: 1px;
  background: #FFF;
  position: relative;
  transition: ease-out 0.3s;
  transition-property: background;
}
.c-drawerBtn__border::before, .c-drawerBtn__border::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: #FFF;
  transition: ease-out 0.3s;
  transition-property: margin, transform;
}
.c-drawerBtn__border::before {
  margin-top: -7px;
}
.c-drawerBtn__border::after {
  margin-top: 14px;
}
.c-drawerBtn.is-open .c-drawerBtn__border {
  background: transparent;
}
.c-drawerBtn.is-open .c-drawerBtn__border::before {
  margin: 0;
  transform: rotate(-30deg) translate(0px, 0px);
}
.c-drawerBtn.is-open .c-drawerBtn__border::after {
  margin: 0;
  transform: rotate(30deg) translate(0px, 0px);
}
body.is-loaded .c-drawerBtn {
  position: fixed;
}
.l-drawer {
  display: none;
  width: 100vw;
  height: min(var(--js-viewHeight), 100vh);
  height: 100dvh;
  background: rgba(255, 255, 255, 0.95);
  font-size: inherit;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 10001;
  transform: scaleX(0);
  transform-origin: top right;
  transition: opacity 0.3s;
  transition-property: transform;
}
.l-drawer.is-closed {
  opacity: 0;
  pointer-events: none;
  transform: scaleX(0);
  transform-origin: top right;
}
.l-drawer.is-open {
  opacity: 1;
  pointer-events: inherit;
  transform: scaleX(1);
  transform-origin: top right;
}
.l-drawer__inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 100px 1rem 50px;
  opacity: 0;
  transition: ease-out 0.3s;
  transition-property: opacity;
  transition-delay: 0.2s;
}
.l-drawer.is-open .l-drawer__inner {
  overflow-y: scroll;
  opacity: 1;
}
.l-drawer__nav {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.4444444444;
}
.l-drawer__btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  width: min(100%, 340px);
  margin: 2em auto 0;
}

/*====================================
 Navigation
====================================*/
.l-nav {
  height: 100%;
}
.l-nav__list {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  gap: 30px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1.5;
}
.l-nav__listItem {
  height: 100%;
}
.l-nav__listItem > a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: fit-content;
  height: 100%;
  position: relative;
  color: #282828;
}
.l-nav__listItem > a::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  margin-top: 3px;
  background: #5ECAA1;
  transform: scale(0);
  transform-origin: right center;
  transition: ease-out 0.3s;
  transition-property: transform;
}
.l-nav__listItem > a:hover, .l-nav__listItem > a.is-current {
  text-decoration: none;
  color: #282828;
}
.l-nav__listItem > a:hover::after, .l-nav__listItem > a.is-current::after {
  transform: scale(1);
  transform-origin: left center;
}

/*====================================
 Main
====================================*/
.l-main {
  max-width: 100%;
  min-height: var(--js-viewHeight);
  position: relative;
  z-index: 1;
}
.l-main__contents {
  scroll-margin-top: calc(var(--js-headerHeight) + 0em);
}
/* 下のブロックを上に重ねて角丸部分に白が出ないように（重なり多め） */
.l-main__contents:has(.l-bg) + .l-main__contents:has(.l-bg):not(.--mt0) {
  margin-top: -100px;
}
.l-main__contents:has(.l-bg.--arrowDown)::after {
  content: "";
  display: block;
  margin: 0 auto;
  width: 5em;
  height: 2.5em;
  clip-path: polygon(50% 100%, 0 0, 100% 0);
  background: #F4F4F4;
}

.l-bg {
  padding: 5.9375em 0 7em;
  border-radius: 4em;
}
.l-bg.--gray {
  background: #F4F4F4;
}
.l-bg.--primary {
  border-radius: 4em 4em 0 0;
  background: linear-gradient(160deg, #5ECAA1 0%, #3ab08a 40%, #008C8B 100%);
  padding-top: 7em;
  padding-bottom: 14em;
}
.l-bg.--black {
  padding: 6em 0 6em;
  border-radius: 4em 4em 0 0;
  background: #282828;
  color: #fff;
}
.l-bg.--mdm-bg {
  background: #F4F9FC; /* rgba(120,184,212,0.08) on white に相当 */
}
.l-bg.--idp-bg {
  background: #FEF7F1; /* rgba(240,160,80,0.08) on white に相当 */
}
.l-bg.--edr-bg {
  background: #F6F8F9; /* rgba(141,170,184,0.08) on white に相当 */
}

/*====================================
 Footer
====================================*/
.p-contact {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  padding: 0 0 8em;
}
.p-contact .c-headingEnJa:not(:last-child) {
  margin-bottom: 0;
}
.c-contact {
  width: min(100%, 712px);
}
.c-contact__lead {
  text-align: center;
}
.c-contact__btn {
  display: flex;
  gap: 32px;
}
.c-contact__btn .c-btn {
  width: min(100%, 340px);
  margin: 24px auto 0;
}
.c-copyright {
  padding: 1em 1rem;
  font-size: 0.875em;
  font-weight: 400;
  line-height: 1.5;
  text-align: center;
}

/*====================================
 Versatility / Common Components
====================================*/
.l-inner {
  width: min(100% - 2rem, 1084px);
  margin: 0 auto;
}
.l-inner.--narrow {
  width: min(100% - 2rem, 896px);
}

.c-note {
  display: flex;
  align-items: flex-start;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.7857142857;
  color: rgba(40, 40, 40, 0.7);
}
.c-note::before {
  content: "※";
  display: block;
}

.c-headingEnJa {
  font-size: clamp(26px, 2.9282576867vw, 40px);
  font-weight: 600;
  letter-spacing: 0.03em;
  line-height: 1.6;
}
.c-headingEnJa:not(:last-child) {
  margin-bottom: 1.2em;
}
.c-headingEnJa__en {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 0.5em;
  font-family: "Jost", sans-serif;
  font-size: max(10px, 0.5em);
  font-weight: 500;
  letter-spacing: 0;
}
.c-headingEnJa__en::before {
  content: "";
  display: block;
  width: 12px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background: #5ECAA1;
}
.c-headingEnJa__en.--noto {
  margin-bottom: 0.75em;
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(10px, 0.4090909091em, 18px);
  font-weight: 600;
  letter-spacing: 0;
}
h2 .c-headingEnJa__en {
  font-family: "Noto Sans JP", sans-serif;
}
.c-headingEnJa__ja > span {
  background: transparent;
  color: inherit;
}
.c-headingEnJa__ja > span.c-headingEnJa__jaPlain {
  background: transparent;
  color: inherit;
}
.c-headingEnJa__ja > span.c-headingEnJa__jaHighlight {
  background: #5ECAA1;
  color: #fff;
}
.c-headingEnJa__brandFont {
  font-family: "Google Sans", sans-serif;
  font-size: 1.2em;
  font-weight: 700;
}
.c-headingEnJa__brandFont.--tight {
  font-size: 1.28em;
  letter-spacing: -0.02em;
  margin-right: 0.1em;
}
.p-section .c-headingEnJa__ja > span {
  background: transparent;
  color: inherit;
}
.p-section .c-headingEnJa__ja > span.c-headingEnJa__jaHighlight {
  background: #5ECAA1;
  color: #fff;
}
.c-headingEnJa__jaHighlight {
  background: #5ECAA1;
  color: #fff;
}

/* Section-specific heading colors (MDM, IdP, EDR) */
#mdm .c-headingEnJa__en::before {
  background: #78B8D4;
}
#mdm .c-headingEnJa__ja > span.c-headingEnJa__jaHighlight {
  background: #78B8D4;
  color: #fff;
}
#idp .c-headingEnJa__en::before {
  background: #F0A050;
}
#idp .c-headingEnJa__ja > span.c-headingEnJa__jaHighlight {
  background: #F0A050;
  color: #fff;
}
#edr .c-headingEnJa__en::before {
  background: #8DAAB8;
}
#edr .c-headingEnJa__ja > span.c-headingEnJa__jaHighlight {
  background: #8DAAB8;
  color: #fff;
}

/* Buttons */
.c-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: min(100%, 340px);
  padding: 1.25em;
  border: 1px solid #282828;
  border-radius: 3em;
  background: #282828;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1em;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.25;
  color: #fff;
  position: relative;
  z-index: 1;
  transition: ease-out 0.3s;
  transition-property: background, color;
}
.c-btn:hover {
  background: #fff;
  color: #282828;
}
.c-btn.--white {
  border-color: #fff;
  background: #fff;
  color: #282828;
}
.c-btn.--white:hover {
  background: #282828;
  color: #fff;
}
.c-btn.--mail > span {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
.c-btn.--mail > span::before {
  content: "";
  display: block;
  width: 1em;
  aspect-ratio: 16/12;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16.066' height='12.853'%3E%3Cpath d='M14.46 0H1.607a1.6 1.6 0 00-1.6 1.607L0 11.246a1.611 1.611 0 001.607 1.607H14.46a1.611 1.611 0 001.607-1.607V1.607A1.611 1.611 0 0014.46 0zm0 3.213L8.033 7.23 1.607 3.213V1.607l6.427 4.017 6.426-4.017z' fill='%23fff'/%3E%3C/svg%3E") center no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16.066' height='12.853'%3E%3Cpath d='M14.46 0H1.607a1.6 1.6 0 00-1.6 1.607L0 11.246a1.611 1.611 0 001.607 1.607H14.46a1.611 1.611 0 001.607-1.607V1.607A1.611 1.611 0 0014.46 0zm0 3.213L8.033 7.23 1.607 3.213V1.607l6.427 4.017 6.426-4.017z' fill='%23fff'/%3E%3C/svg%3E") center no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
  background-color: #fff;
}
.c-btn.--mail.--white > span::before {
  background-color: #282828;
}
.c-btn.--mail:hover > span::before {
  background-color: #282828;
}
.c-btn.--mail.--white:hover > span::before {
  background-color: #fff;
}
.c-btn.--download {
  border-color: #5ECAA1;
  background-color: #5ECAA1;
}
.c-btn.--download > span {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
.c-btn.--download > span::before {
  content: "";
  display: block;
  width: 0.9em;
  aspect-ratio: 1/1;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M21 15v4a2 2 0 01-2 2H5a2 2 0 01-2-2v-4'/%3E%3Cpolyline points='7 10 12 15 17 10'/%3E%3Cline x1='12' y1='15' x2='12' y2='3'/%3E%3C/svg%3E") center no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M21 15v4a2 2 0 01-2 2H5a2 2 0 01-2-2v-4'/%3E%3Cpolyline points='7 10 12 15 17 10'/%3E%3Cline x1='12' y1='15' x2='12' y2='3'/%3E%3C/svg%3E") center no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
  background-color: #fff;
}
.c-btn.--download:hover {
  background-color: #fff;
  color: #5ECAA1;
}
.c-btn.--download:hover > span::before {
  background-color: #5ECAA1;
}
.c-btn.--download.--white {
  border-color: #fff;
  background: #fff;
  color: #008C8B;
}
.c-btn.--download.--white > span::before {
  background-color: #008C8B;
}
.c-btn.--download.--white:hover {
  background: #008C8B;
  border-color: #008C8B;
  color: #fff;
}
.c-btn.--download.--white:hover > span::before {
  background-color: #fff;
}
/* Card List */
.c-cardList {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2em;
}
.c-cardList.--timing {
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25em;
}
.c-cardList__item {
  padding: 1.75em 2em 1.9375em;
  border-radius: 1.5em;
  background: #fff;
  overflow: hidden;
}

/* Sub Heading（Macサブスクのc-problem__title相当） */
.c-subHeading {
  font-size: clamp(20px, 2.0497803807vw, 28px);
  font-weight: 600;
  letter-spacing: 0.03em;
  line-height: 1.6;
  margin-top: 3em;
  margin-bottom: 1.2em;
  text-align: center;
}

/*====================================
 KV / Hero
====================================*/
.c-kv {
  overflow: hidden;
}
.c-kv__inner {
  min-height: min(35.6515373353vw, 487px);
  padding: min(4.0995607613vw, 56px) 0 min(5.270863836vw, 76px);
  position: relative;
  z-index: 1;
}
.c-kv__body {
  width: min(57.1033210332%, 619px);
  position: relative;
  z-index: 2;
}
.c-kv__body .c-headingEnJa {
  font-size: clamp(26px, 3.2210834553vw, 44px);
  line-height: 1.5909090909;
  letter-spacing: 0;
}
.c-kv__body .c-headingEnJa__ja {
  font-feature-settings: "palt";
  letter-spacing: 0.06em;
}
.c-kv__summary {
  margin-top: 0.7em;
  width: min(84.9757673667%, 526px);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.8;
}
.c-kv__btn {
  display: flex;
  gap: 10px;
  margin-top: 2.3em;
}
.c-kv__btn .c-btn {
  width: min(100%, 270px);
}
.c-kv__note {
  margin-top: 1.7em;
  font-size: 0.875em;
  font-weight: 400;
  letter-spacing: 0;
}
.c-kv__note .c-note {
  color: inherit;
}
.c-kv__img {
  display: block;
  width: min(52.0295202952%, 564px);
  position: absolute;
  top: min(3.6603221083vw, 50px);
  right: min(-3.513909224vw, -48px);
  z-index: -1;
}

/*====================================
 Timing Section (Mac運用の見直し)
====================================*/
.p-timing__lead {
  text-align: left;
  font-size: clamp(26px, 2.9282576867vw, 40px);
  font-weight: 600;
  line-height: 1.6;
  margin-bottom: 2.5em;
}
.p-timing__lead .c-headingEnJa__jaHighlight {
  padding: 0 0.15em;
}
.p-timing .c-cardList {
  margin-top: 2em;
}
.p-timing__note {
  margin-top: 2em;
  text-align: center;
  font-size: 1.125em;
  font-weight: 600;
}
.p-timing .c-note {
  margin-top: 0.5em;
  justify-content: center;
}

.c-timing {
  text-align: center;
}
.c-timing__img {
  display: block;
  width: min(100%, 120px);
  margin: 0 auto 1em;
}
.c-timing__title {
  font-size: clamp(20px, 2.0497803807vw, 28px);
  font-weight: 600;
  letter-spacing: 0.03em;
  line-height: 1.6;
  margin-bottom: 0.8em;
  text-align: left;
}
.c-timing__summary {
  font-size: 14px;
  line-height: 1.8;
  text-align: left;
}
.c-timing__summary strong {
  box-shadow: 0 -6px rgba(94, 202, 161, 0.3) inset;
}

/* ウィンドウが大きいとき：見出しは幅いっぱい、画像は右下 */
@media screen and (min-width: 769px) {
  .c-timing {
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-rows: auto 1fr;
    gap: 0.5em 1.5em;
    text-align: left;
    align-items: start;
  }
  .c-timing__img {
    grid-column: 2;
    grid-row: 2;
    margin: 0;
    width: 120px;
    align-self: end;
  }
  .c-timing__title {
    grid-column: 1 / -1;
    grid-row: 1;
    margin-bottom: 0;
  }
  .c-timing__summary {
    grid-column: 1;
    grid-row: 2;
  }
}

/*====================================
 3 Pillars (Mac運用の3つの軸)
====================================*/
.c-solution {
  padding: 0 1rem;
  margin: 2em auto 1em;
  font-size: clamp(28px, 3.2210834553vw, 44px);
  font-weight: 600;
  letter-spacing: 0.03em;
  line-height: 1.35;
  text-align: center;
}
.c-solution > span {
  background: #5ECAA1;
  color: #fff;
}

.p-pillars__noteBlock {
  text-align: center;
  margin-bottom: 2em;
}
.p-pillars__noteBlock .p-timing__note {
  margin-top: 0;
}
.p-pillars__noteBlock .c-note {
  justify-content: center;
  margin-top: 0.5em;
}

/* Plan Table (pricing-table style) */
.c-planTable {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto 1fr;
  gap: 0;
  border-radius: 1.5em;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.15), 0 2px 10px rgba(0, 0, 0, 0.08);
}
.c-planTable__col {
  background: #fff;
  display: grid;
  grid-row: span 3;
  grid-template-rows: subgrid;
}
.c-planTable__col:not(:last-child) {
  border-right: 1px solid #E8E8E8;
}
.c-planTable__header {
  padding: 2em 1.5em 1.5em;
  text-align: center;
  color: #fff;
}
.c-planTable__col.--mdm .c-planTable__header {
  background: #78B8D4;
}
.c-planTable__col.--idp .c-planTable__header {
  background: #F0A050;
}
.c-planTable__col.--edr .c-planTable__header {
  background: #8DAAB8;
}
.c-planTable__subtitle {
  font-size: clamp(13px, 1.1vw, 15px);
  font-weight: 500;
  letter-spacing: 0.03em;
  line-height: 1.4;
  opacity: 0.9;
}
.c-planTable__name {
  font-family: "Google Sans", sans-serif;
  font-size: clamp(32px, 3.5vw, 48px);
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.2;
  margin-top: 0.15em;
}
.c-planTable__body {
  grid-row: span 2;
  display: grid;
  grid-template-rows: subgrid;
}
.c-planTable__desc {
  font-size: clamp(20px, 2.0497803807vw, 28px);
  font-weight: 600;
  line-height: 1.8;
  letter-spacing: 0;
  padding: 1.2em 1.5em 1em;
  margin: 0;
  border-bottom: 1px solid #E8E8E8;
  display: flex;
  align-items: center;
}
.c-planTable__features {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 0.5em 2em 2.5em;
}
.c-planTable__features li {
  font-size: 15px;
  font-weight: 500;
  line-height: 1.5;
  padding: 0.7em 0 0.7em 1.8em;
  position: relative;
  border-bottom: 1px solid #F0F0F0;
}
.c-planTable__features li:last-child {
  border-bottom: none;
}
.c-planTable__features li::before {
  content: "";
  display: block;
  width: 18px;
  height: 18px;
  position: absolute;
  top: 0.75em;
  left: 0;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
}
.c-planTable__col.--mdm .c-planTable__features li::before {
  background-color: #78B8D4;
}
.c-planTable__col.--idp .c-planTable__features li::before {
  background-color: #F0A050;
}
.c-planTable__col.--edr .c-planTable__features li::before {
  background-color: #8DAAB8;
}

/*====================================
 About Too（Macサブスク同様：p-contact + c-contact）
====================================*/
.c-img {
  display: block;
  margin: 0 auto;
}
#about .p-contact .c-headingEnJa__en::before {
  background: #5ECAA1;
}
#about .c-img--aboutLogo img {
  filter: brightness(0) invert(1);
  max-width: 60%;
  padding: 30px 0;
  width: auto;
  height: auto;
  display: block;
  margin: 0 auto;
}
/*====================================
 Section Common (MDM, IdP, EDR)
====================================*/
.p-section {
  padding: 0 0 3em;
}
.p-section__lead {
  font-size: clamp(16px, 1.3176144609vw, 18px);
  font-weight: 500;
  line-height: 1.8;
  margin-bottom: 0.5em;
}
.p-section__lead strong {
  font-weight: 700;
}
.p-section__text {
  line-height: 1.8;
  margin-bottom: 1em;
}
.p-section > .c-note {
  justify-content: center;
  text-align: center;
  margin-bottom: 2em;
}
.p-section__flowImg {
  display: block;
  width: min(100%, 900px);
  margin: 2em auto;
}
.p-section__ctaText {
  margin-top: 3em;
  margin-bottom: 1em;
  text-align: center;
  font-size: 1.125em;
  font-weight: 600;
}
.p-section__dlText {
  margin-top: 2em;
  margin-bottom: 1em;
  text-align: center;
  font-size: 1em;
  font-weight: 500;
}
.p-section .c-btn {
  margin: 0 auto;
}

/* Feature Cards */
.c-featureCardList {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2em;
  margin-bottom: 2em;
}
.c-featureCard {
  background: #fff;
  border-radius: 1.5em;
  padding: 2em 1.5em;
  text-align: center;
}
.c-featureCard__img {
  display: block;
  width: min(100%, 100px);
  margin: 0 auto 1em;
}
.c-featureCard__title {
  font-size: clamp(20px, 2.0497803807vw, 28px);
  font-weight: 600;
  letter-spacing: 0.03em;
  line-height: 1.6;
  margin-bottom: 0.5em;
}
.c-featureCard__text {
  font-size: 14px;
  line-height: 1.8;
  text-align: left;
}
.c-featureCard__note {
  margin-top: 0.5em;
  font-size: 12px;
  line-height: 1.6;
  color: rgba(40, 40, 40, 0.6);
  text-align: left;
}

/* Accordion */
.c-accordion {
  margin: 2em 0;
  border-radius: 1em;
  overflow: hidden;
  background: #fff;
  border: 1px solid #E0E0E0;
}
.c-accordion__title {
  display: flex;
  align-items: center;
  gap: 1em;
  padding: 1.2em 1.5em;
  font-size: clamp(18px, 1.7595818815vw, 24px);
  font-weight: 600;
  line-height: 1.6;
  cursor: pointer;
  position: relative;
  transition: background 0.3s ease-out;
}
.c-accordion__titleText {
  flex: 1;
  min-width: 0;
  padding-right: 3em;
}
.c-accordion__titleLabel {
  display: inline-block;
  padding: 0.15em 0.6em;
  background: rgba(94, 202, 161, 0.25);
  border-radius: 0.25em;
  margin-right: 0.35em;
}
.c-accordion__titleUnderline {
  text-decoration: none;
  box-shadow: 0 -6px rgba(94, 202, 161, 0.3) inset;
}
.c-accordion__title:hover {
  background: rgba(94, 202, 161, 0.05);
}
.c-accordion__title::after {
  content: "+";
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  font-size: 1.85em;
  font-weight: 700;
  line-height: 1;
  color: #5ECAA1;
  position: absolute;
  top: 50%;
  right: 1.5em;
  transform: translateY(-50%);
  transition: color 0.3s ease-out;
}
.c-accordion__title.is-open::after {
  content: "−";
}
.c-accordion__body {
  display: none;
  padding: 2em 1.5em 1.5em;
}
.c-accordion__body.is-open {
  display: block;
}
.c-accordion__content p {
  line-height: 1.8;
  margin-bottom: 1em;
}
.c-accordion__content p:last-child {
  margin-bottom: 0;
}
.c-accordion__subtitle {
  font-size: clamp(15px, 1.1713030747vw, 16px);
  font-weight: 600;
  margin-top: 1.5em;
  margin-bottom: 0.5em;
}
.c-accordion__subtitle:first-child {
  margin-top: 0;
}
.c-accordion__content strong {
  font-weight: 700;
  color: #008C8B;
}

/* Product Cards */
.c-productArea {
  background: #fff;
  border-radius: 1em;
  padding: 2em;
  margin-top: 2em;
}
.c-productArea .c-productGroup {
  margin-top: 2em;
}
.c-productArea .c-productGroup:first-child {
  margin-top: 0;
}
.c-productArea > .c-productGroup__label {
  margin-bottom: 1em;
}
.c-productArea .c-productList {
  background: none;
  padding: 0;
  margin-top: 0;
}
.c-productArea .c-productList:not(:last-child) {
  margin-bottom: 0;
}
.c-productCard--support {
  padding: 0;
  margin-top: 0.5em;
}
.c-productCard--support .c-productCard__link {
  padding: 0;
}

.c-productGroup {
  margin-top: 2em;
}
.c-productGroup__label {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 0.3em 1.5em;
  border-radius: 0.4em;
  font-size: 1em;
  font-weight: 600;
  color: #fff;
  margin-bottom: 1em;
}
.c-productGroup__label.--mdm {
  background: #78B8D4;
}
.c-productGroup__label.--idp {
  background: #F0A050;
}
.c-productGroup__label.--edr {
  background: #8DAAB8;
}
.c-productGroup__label.--support {
  background: #4a4a4a;
}

.c-productList {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2em 2.5em;
  background: #fff;
  border-radius: 1em;
  padding: 2em;
  list-style: none;
  margin: 0;
}
.c-productList.--single {
  grid-template-columns: 1fr;
  gap: 0;
}
.c-productList.--triple {
  grid-template-columns: repeat(3, 1fr);
  gap: 2em 2em;
}
.c-productCard {
  padding: 0;
  border: none;
  background: none;
}
.c-productList.--single .c-productCard:not(:last-child) {
  padding-bottom: 2em;
  margin-bottom: 2em;
  border-bottom: none;
}
.c-productCard__link {
  display: block;
  padding: 0;
  height: 100%;
}
a.c-productCard__link:hover .c-productCard__features {
  color: #008C8B;
}
.c-productCard__name {
  font-size: clamp(18px, 1.6094420601vw, 22px);
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: 1.4;
  margin-bottom: 0.75em;
  color: #282828;
  display: inline-block;
  position: relative;
  text-decoration: none;
}
.c-productCard__name::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  margin-top: 3px;
  background: #5ECAA1;
  transform: scaleX(0);
  transform-origin: right center;
  transition: ease-out 0.3s;
  transition-property: transform;
}
a.c-productCard__link:hover .c-productCard__name::after {
  transform: scaleX(1);
  transform-origin: left center;
}
.c-productCard__img {
  display: block;
  height: 40px;
  margin-bottom: 1em;
}
.c-productCard__img img {
  height: 100%;
  width: auto;
}
.c-productCard__text {
  font-size: 14px;
  line-height: 1.7;
}
.c-productCard__features {
  font-size: 14px;
  line-height: 1.7;
  list-style: none;
  padding-left: 0;
  margin: 0;
  transition: color 0.3s ease-out;
}
.c-productCard__features li {
  padding-left: 1.2em;
  position: relative;
}
.c-productCard__features li::before {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  position: absolute;
  top: 0.55em;
  left: 0;
  background: #008C8B;
}
.l-bg.--mdm-bg .c-productCard__features li::before {
  background: #78B8D4;
}
.l-bg.--idp-bg .c-productCard__features li::before {
  background: #F0A050;
}
.l-bg.--edr-bg .c-productCard__features li::before {
  background: #8DAAB8;
}
.c-productCard__name small {
  font-weight: 400;
  font-size: 0.9em;
}
.c-productCard__extIcon {
  display: inline-block;
  width: 0.7em;
  height: 0.7em;
  margin-left: 0.25em;
  background: url("../img/arrow-up-right-from-square-solid.svg") center / contain no-repeat;
  opacity: 0.5;
}

/* Support Card */
.c-supportCard {
  background: #fff;
  border-radius: 1em;
  overflow: hidden;
  border: 1px solid #E8E8E8;
  transition: box-shadow 0.3s ease-out;
}
.c-supportCard:hover {
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}
.c-supportCard__link {
  display: block;
  padding: 1.5em;
}
a.c-supportCard__link:hover {
  opacity: 0.8;
}
.c-supportCard__title {
  font-size: clamp(16px, 1.3176144609vw, 18px);
  font-weight: 600;
  margin-bottom: 0.8em;
}
.c-supportCard__title small {
  font-weight: 400;
}
.c-supportCard__features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5em 1.5em;
  font-size: 14px;
}
.c-supportCard__features li {
  padding-left: 1em;
  position: relative;
}
.c-supportCard__features li::before {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #5ECAA1;
  position: absolute;
  top: 0.65em;
  left: 0;
}

/*====================================
 Other Support
====================================*/
.p-other__lead {
  margin-bottom: 1.5em;
  line-height: 1.8;
}
.c-serviceList {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2em;
}
.c-productArea .c-serviceList {
  margin-top: 0;
  padding: 0;
  background: none;
}
.c-productArea .c-serviceCard {
  background: none;
  border-radius: 0;
  overflow: visible;
  box-shadow: none;
}
.c-productArea .c-serviceCard:hover {
  box-shadow: none;
}
.c-serviceCard {
  background: #fff;
  border-radius: 1.5em;
  overflow: hidden;
  transition: box-shadow 0.3s ease-out;
}
.c-serviceCard:hover {
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}
.c-serviceCard__link {
  display: block;
  height: 100%;
  color: inherit;
  text-decoration: none;
}
a.c-serviceCard__link:hover .c-serviceCard__text {
  color: #008C8B;
}
.c-serviceCard__title {
  display: inline-block;
  position: relative;
  text-decoration: none;
}
.c-serviceCard__title::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  margin-top: 3px;
  background: #5ECAA1;
  transform: scaleX(0);
  transform-origin: right center;
  transition: ease-out 0.3s;
  transition-property: transform;
}
a.c-serviceCard__link:hover .c-serviceCard__title::after {
  transform: scaleX(1);
  transform-origin: left center;
}
.c-serviceCard__img {
  display: block;
  width: 100%;
  overflow: hidden;
  padding: 0 1.5em 1.5em;
}
.c-serviceCard__img img {
  width: 100%;
  height: auto;
  display: block;
  vertical-align: top;
  object-fit: contain;
  object-position: center;
}
.c-serviceCard__img--half {
  max-width: 52%;
  margin-left: auto;
  margin-right: auto;
}
.c-serviceCard__img--logoSize {
  width: auto;
  padding: 0;
  margin-bottom: 1em;
}
.c-serviceCard__img--logoSize img {
  width: auto;
  height: 48px;
  max-width: 100%;
}
.c-serviceCard__imgTextRow {
  overflow: auto;
}
.c-serviceCard__imgTextRow .c-serviceCard__img--half {
  float: right;
  margin-left: 1.5em;
  margin-bottom: 0.2em;
  width: 34%;
  max-width: 280px;
  padding: 0;
}
@media screen and (max-width: 768px) {
  .c-serviceCard__imgTextRow .c-serviceCard__img--half {
    float: none;
    width: 72%;
    margin-left: auto;
    margin-right: auto;
    display: block;
  }
}
.c-serviceCard__body {
  padding: 1.5em;
}
.c-serviceCard__title {
  font-size: clamp(18px, 1.6094420601vw, 22px);
  font-weight: 600;
  margin-bottom: 0.5em;
}
.c-serviceCard__text {
  font-size: 14px;
  line-height: 1.8;
  transition: color 0.3s ease-out;
}

/*====================================
 Proposal Section
====================================*/
.p-proposal {
  padding: 5em 0 6em;
}
.c-proposalList {
  display: flex;
  flex-direction: column;
  gap: 2em;
}
.c-proposalCard {
  background: #F4F4F4;
  border-radius: 1.5em;
  padding: 2em 2.5em;
}
.c-proposalCard__question {
  font-size: clamp(20px, 2.0497803807vw, 28px);
  font-weight: 600;
  letter-spacing: 0.03em;
  line-height: 1.6;
  margin-bottom: 1em;
}
.c-proposalCard__labels {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5em;
  margin-bottom: 1em;
}
.c-label {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 0.3em 1em;
  border-radius: 0.4em;
  font-size: 17px;
  font-weight: 600;
  color: #fff;
}
.c-label.--mdm {
  background: #78B8D4;
}
.c-label.--idp {
  background: #F0A050;
}
.c-label.--edr {
  background: #8DAAB8;
}
.c-label.--support {
  background: #4a4a4a;
}
.c-proposalCard__answer {
  padding-top: 1em;
  line-height: 1.8;
}
.c-proposalCard__answerLabel {
  font-size: 14px;
  font-weight: 600;
  color: #5ECAA1;
  margin-bottom: 0.3em;
}

/* 幅が広いとき：ラベルとご提案例を横並び・左右同幅（左やや広め）・縦中央揃え */
@media screen and (min-width: 769px) {
  .c-proposalCard__row {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 2em;
  }
  .c-proposalCard__row .c-proposalCard__labels {
    flex: 0 0 300px;
    max-width: 300px;
    margin-bottom: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5em;
  }
  .c-proposalCard__row .c-proposalCard__answer {
    flex: 1 1 0;
    min-width: 0;
    padding-top: 0;
  }
}

.p-proposal__bottom {
  margin-top: 3em;
  text-align: center;
}
.p-proposal__bottomText {
  font-size: clamp(18px, 1.7595818815vw, 24px);
  margin-bottom: 0.5em;
}
.p-proposal__bottomText strong {
  font-weight: 700;
}
.p-proposal__bottomNote {
  display: inline-block;
  margin-top: 1em;
  text-align: left;
  max-width: 100%;
}
.p-proposal__bottomNote .p-proposal__subLink {
  margin-top: 0;
  padding-left: 1.2em;
  position: relative;
}
.p-proposal__bottomNote .p-proposal__subLink::before {
  content: "※";
  position: absolute;
  left: 0;
}
.p-proposal__subLink {
  margin-top: 1em;
  font-size: 14px;
}
.p-proposal__subLink a {
  color: #5ECAA1;
  text-decoration: underline;
}
.p-proposal__subLink a:hover {
  text-decoration: none;
}

/*====================================
 Utility
====================================*/
.u-sp {
  display: none;
}
.u-dib {
  display: inline-block;
}
.u-anchorLink {
  scroll-margin-top: calc(var(--js-headerHeight) + 0em);
}
.u-ls-tight {
  letter-spacing: -0.03em;
}
/*====================================
 Responsive: max-width 1100px
====================================*/
@media screen and (max-width:1100px) {
  .l-header {
    height: 50px;
  }
  .l-header__head {
    height: 100%;
    padding-right: calc(50px + 1em);
    border-bottom: 1px solid #ECECEC;
  }
  .l-header__headLeft {
    gap: min(5vw, 28px);
  }
  .l-header__logo {
    display: flex;
    align-items: center;
  }
  .l-header__logo img {
    height: 26px;
    width: auto;
    display: block;
  }
  .l-header__logoMac {
    display: flex;
    align-items: center;
  }
  .l-header__logoMac img {
    height: 25px;
    width: auto;
    display: block;
  }
  .l-header__headRight {
    display: none;
  }
  .l-header__nav {
    display: none;
  }
  .c-drawerBtn {
    display: flex;
  }
  .l-drawer {
    display: block;
  }
  .l-header .l-nav {
    display: none;
  }
  .l-nav__list {
    flex-direction: column;
    gap: 20px;
    font-size: inherit;
    font-weight: inherit;
  }
  .u-pc {
    display: none;
  }
  .u-sp {
    display: inline-block;
  }
  .c-planTable {
    display: flex;
    flex-direction: column;
    border-radius: 1.5em;
  }
  .c-planTable__col {
    display: flex;
    flex-direction: column;
  }
  .c-planTable__body {
    display: flex;
    flex-direction: column;
  }
  .c-planTable__col:not(:last-child) {
    border-right: none;
    border-bottom: 1px solid #E8E8E8;
  }
  .c-featureCardList {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  }
  .c-productList.--triple {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  }
}

/*====================================
 Responsive: max-width 900px
====================================*/
@media screen and (max-width:900px) {
  .c-cardList.--timing {
    grid-template-columns: repeat(2, 1fr);
  }
  .c-timing__titleBr {
    display: none;
  }
  .p-contact {
    flex-direction: column;
    align-items: center;
  }
  .p-contact .c-headingEnJa__en {
    justify-content: center;
  }
  #about .p-contact .c-headingEnJa__ja {
    display: flex;
    justify-content: center;
    width: 100%;
  }
  #about .p-contact .c-headingEnJa__ja .c-img img {
    max-width: 45% !important;
    display: block;
    margin-left: auto;
    margin-right: auto;
  }
  .c-contact {
    text-align: center;
  }
  #about .c-contact p {
    text-align: left;
  }
  .c-contact__lead {
    text-align: left;
  }
  .c-contact__btn {
    flex-wrap: wrap;
    gap: 10px;
  }
  .c-kv__btn {
    flex-wrap: wrap;
  }
  .c-serviceList {
    grid-template-columns: 1fr;
  }
  .c-productList {
    grid-template-columns: 1fr;
  }
  .c-productList.--triple {
    grid-template-columns: 1fr;
  }
}

/*====================================
 Responsive: max-width 768px
====================================*/
@media screen and (max-width:768px) {
  .u-br-wide {
    display: none;
  }
  .c-kv__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .c-kv__body {
    width: 100%;
    text-align: center;
  }
  .c-kv__body .c-headingEnJa__en {
    justify-content: center;
  }
  .c-kv__summary {
    margin: 0.7em auto 0;
  }
  .c-kv__btn {
    justify-content: center;
  }
  .c-kv__note .c-note {
    justify-content: center;
  }
  .c-kv__img {
    width: 80%;
    margin-top: 2em;
    position: relative;
    top: auto;
    right: auto;
  }
  .p-timing__note {
    text-align: left;
  }
  .p-timing .c-note {
    justify-content: flex-start;
  }
  .p-section > .c-note {
    justify-content: flex-start;
    text-align: left;
  }
  .p-pillars__noteBlock {
    text-align: left;
  }
  .p-pillars__noteBlock .c-note {
    justify-content: flex-start;
  }
  .c-planTable__name {
    font-size: clamp(28px, 5vw, 36px);
  }
  .c-featureCardList {
    grid-template-columns: 1fr;
  }
  .c-proposalCard {
    padding: 1.5em;
  }
  .c-accordion__titleText {
    padding-right: 1.5em;
  }
  .c-accordion__title::after {
    right: 0.5em;
  }
  .c-serviceCard__img--half {
    max-width: 72%;
  }
}

/*====================================
 Responsive: max-width 576px
====================================*/
@media screen and (max-width:576px) {
  .c-cardList {
    grid-template-columns: repeat(1, 1fr);
  }
  .c-cardList.--timing {
    grid-template-columns: repeat(1, 1fr);
  }
  .l-bg {
    border-radius: 2em;
  }
  .l-bg.--primary {
    border-radius: 2em 2em 0 0;
  }
  .l-bg.--black {
    border-radius: 2em 2em 0 0;
  }
}
