@charset "utf-8";
/* =========================
   Global Variables
========================= */
:root {
  --site-width: 1280px;
  --wrap-padding: 24px;
  --text-dark: #312d23;
  --muted: #666;
}
/* =========================
   Reset & Base
========================= */
body {
  margin: 0;
  color: var(--text-dark);
  background-color: #ffffff;
  /* background-image: 
    linear-gradient(transparent calc(100% - 1px), #ebf0f5 50%, #ebf0f5),
    linear-gradient(90deg, transparent calc(100% - 1px), #ebf0f5 50%, #f5f7f9); */
  background-size: 15px 15px;
  background-repeat: repeat;
}
@media (hover: hover) {
  .--action_01{
    transition: transform .2s;
  }
  .--action_01:hover {
    transform: scale(1.05);
  }
}
@media (hover: none) {
  .--action_01{
    transition: transform .2s;
  }
  .--action_01:active {
    transform: scale(.9);
  }
}
.--for_sp{
  display: none;
}
.--for_pc{
  display: block;
}
@media screen and (max-width: 768px) {
.--for_sp{
  display: block;
}
.--for_sp{
  display: none;
}

}
p {
  margin: 0;
  font-size: clamp(14px, calc(100vw / 375 * 10), 16px);
}
p:not(:last-child) {
  margin: 0 0 4px;
}
.wrap {
  max-width: var(--site-width);
  margin: 0 auto;
  padding: 0 var(--wrap-padding);
}
.ems_contents {
  margin: 0 auto 50px;
  padding: 0 0 30px;
  max-width: unset;
}
.ems_top_thumbnail > li{
  background: unset;
}
/* =========================
   Hero Section
========================= */
.hero {
  padding: 48px 0;
  background: #fff8e8;
  margin-bottom: 112px;
}
.hero-inner {
  display: flex;
  align-items: center;
  gap: 40px;
  text-align: center;
}
.hero-copy {
  flex: 1;
}
.hero-media {
  flex: 1;
  text-align: right;
}
.hero-heading {
    font-size: clamp(28px, calc(100vw / 375 * 10), 38px);
    margin: 0 0 12px;
}
.lead {
    font-size: clamp(14px, calc(100vw / 375 * 10), 18px);
    color: var(--muted);
    margin: 0 0 20px;
}
@media screen and (max-width: 768px){
  .hero {
    margin-bottom: 119px;
}
}
/* =========================
   Quick Links
========================= */
.quick-links {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  max-width: 1100px;
  width: 100%;
}
.quick-links ul {
  display: flex;
  justify-content: center;
  gap: 16px;
  list-style: none;
  margin: 0;
  padding: 8px 0;
}
.quick-links a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px;
  font-size: clamp(16px, calc(100vw / 375 * 10), 20px);
  text-decoration: none;
  color: var(--text-dark);
  border-radius: 10px;
}
.quick-links img {
  width: 28px;
  height: 28px;
}
.quick-links-item {
  width: calc((100% - 16px * 2) / 3);
  border: 1px solid var(--act_color);
  border-radius: 8px;
  background: #fff;
  line-height: 1.4;
  align-content: center;
}
.quick-links-item a::after {
  content: '▼';
  position: absolute;
  top: 50%;
  right: 8px;
  transform: translateY(-50%);
  color: var(--act_color);
}
.quick-links-item a > span {
  position: relative;
  padding-left: calc((106px / 2) + 10px);
}
.quick-links-item a > span::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background: url(https://www.easy-myshop.jp/images/ai_assistant/icon_ai_assistant.png) no-repeat;
  background-size: contain;
  width: calc(106px / 2);
  height: calc(90px / 2);
}
.quick-links-item a > span > span {
  display: block;
  margin-left: -0.5em;
  font-size: 70%;
}
@media screen and (max-width: 768px){
  .quick-links ul {
    gap: 8px;
  }
  .quick-links-item {
    width: calc((100% - 8px * 2) / 3);
  }
  .quick-links a {
    text-align: center;
    padding: 8px 4px calc(8px + 18px) 4px;
  }
  .quick-links-item a > span {
    display: flex;
    flex-direction: column;
    padding-top: 34px;
    padding-left: 0;
  }
  .quick-links-item a > span::before {
    width: calc(106px / 2.8);
    height: calc(90px / 2.8);
    top: 0;
    left: 50%;
    transform: translate(-50%, 0);
  }
  .quick-links-item a > span > span {
    display: block;
    margin-left: 0;
    font-size: 7px;
  }
  .quick-links-item a::after {
    top: auto;
    bottom: 2px;
    left: 50%;
    right: auto;
    transform: translate(-50%, 0)
  }
}
/* =========================
   Feature Section
========================= */
.feature {
  padding: 56px 0;
  background: linear-gradient(oklch(1 0 0 / 0.9), oklch(1 0 0 / 0.9)),
              linear-gradient(135deg, #01a5ff, #16d2f4, #7c8cff, #fdf0ff);
}
.feature:nth-of-type(odd) {
  background: linear-gradient(oklch(1 0 0 / 0.9), oklch(1 0 0 / 0.9)),
              linear-gradient(-45deg, #01a5ff, #16d2f4, #7c8cff, #fdf0ff);
}
.feature:not(:last-of-type) {
  margin-bottom: 80px;
}
.feature-inner {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 36px;
}
.feature-media {
  max-width: 580px;
  width: 100%;
  padding: 16px 0;
  background: #ffffff;
  border-radius: 24px;
  overflow: hidden;
  text-align: center;
  box-shadow: 0px 1px 8px -2px #9db2ca;
}
.feature:not(#ai-monitor) .feature-media{
  padding: 40px 0;
}
.feature-media img {
  width: calc(600px / 1.2);
}
.feature-copy {
  flex: 1;
  margin-left: auto;
}
.feature h2 {
  font-size: clamp(18px, calc(100vw / 375 * 10), 28px);
  margin-top: 0;
  font-weight: bold;
  max-width: var(--site-width);
  margin: 0 auto 32px;
  text-align: center;
}
.feature h2::after {
  content: '';
  display: block;
  width: 100%;
  height: 2px;
  margin-top: 14px;
  background: linear-gradient(oklch(1 0 0 / 0), oklch(1 0 0 / 0)),
              linear-gradient(-135deg, #01a5ff, #16d2f4, #7C8CFF, #fc01ff);
  border-radius: 0;
}
.feature-persona-list-wrap{
  margin: 16px 0 0;
}
@media screen and (max-width: 1024px){
  .feature-media{
    width: 40%;
  }
}
@media screen and (max-width: 768px){
  .feature{
    padding: 40px 0;
  }
  .feature:not(:last-of-type) {
    margin-bottom: 48px;
}
.feature-inner {
    flex-direction: column;
}
.feature-inner {
    gap: 24px;
}
.feature-media{
  width: 100%;
}
.feature-media img {
    width: calc(600px / 2);
}
.feature h2{
  margin: 0 auto 16px;
}
}
/* =========================
   Persona Cards
========================= */
.persona-cards-hd{
  border-bottom: 1px dotted #9fb2bd;
  padding-bottom: 4px;
}
.persona-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0;
  list-style: none;
  font-size: 14px;
  justify-content: center;
  margin: 12px auto 8px auto;
}
.persona-cards .card {
  width: calc((100% - 8px * 3) / 4);
  background: #fff;
  border-radius: 4px;
  overflow: hidden;
  text-align: center;
  padding: 12px 0;
}
.persona-cards .card img {
  max-width: 80px;
  width: 100%;
}
.card-title {
  font-size: clamp(10px, calc(100vw / 375 * 10), 12px);
  font-weight: 600;
  line-height: 1.4;
}
.card-desc {
  font-size: 10px;
  color: #555;
}
/* =========================
   Feature Benefits
========================= */
.feature-benefits {
  position: relative;
  margin: calc((1.2em + 8px + 1px) + 24px) 0 0;
  padding: 16px;
  border: 1px solid #57b9fa;
  border-radius: 3px;
  background: #fff;
}
.feature-benefits h3 {
  position: absolute;
  top: calc(-1.2em - 8px - 1px);
  left: -1px;
  padding: 4px 24px;
  border-radius: 8px 8px 0 0;
  font-size: clamp(16px, calc(100vw / 375 * 10), 18px);
  font-weight: bold;
  color: #fff;
  background: linear-gradient(oklch(1 0 0 / 0.1), oklch(1 0 0 / 0.1)),
              linear-gradient(-25deg, #16d2f4, #7C8CFF, #FC01FF);
}
.feature-benefits ul {
  list-style: disc;
  padding-left: 1.2em;
  margin: 0;
}
.feature-benefits ul li {
    font-size: clamp(14px, calc(100vw / 375 * 10), 16px);
  font-weight: bold;
  line-height: 1.6;
}
.feature-benefits ul li:not(:last-of-type){
  margin-bottom: 8px;
}
@media screen and (max-width: 768px){
  .feature-benefits {
    margin: calc((1.2em + 8px + 1px) + 24px) 0 0;
    padding: 12px;
}
}