@charset "utf-8";
html {
  scroll-behavior: smooth;
  font-size: 16px;
  color: #333;
  --color-sydarkgreen: #2fc5c8;
  --color-sylightgreen: #eaf9fa;
  --color-syred: #f3270f;
  --color-sylightred: #fff0ed;
  --color-sypink: #ffc5bb;
  --color-sygrey: #5d5a5a;
  --color-sygreen: #6dd2d3;
  --color-grey-50: #f5f5f5;
  --color-grey-150: #d9d9d9;
  --color-grey-400: #999;
  --color-grey-800: #333;
  --heading-xl: 2.5rem;
  --heading-l: 2.25rem;
  --heading-m: 2rem;
  --heading-s: 1.75rem;
  --heading-xs: 1.5rem;
  --heading-xxs: 1.25rem;
  --font-body-l: 1.125rem;
  --font-body-m: 1rem;
  --font-body-s: 0.875rem;
  --font-body-xs: 0.75rem;
  --filter-syred: brightness(0) saturate(100%) invert(24%) sepia(92%) saturate(4005%) hue-rotate(355deg) brightness(95%) contrast(99%);
  --filter-sydarkgreen: brightness(0) saturate(100%) invert(93%) sepia(68%) saturate(3007%) hue-rotate(130deg) brightness(82%) contrast(88%);
  --filter-sylightred: brightness(0) saturate(100%) invert(96%) sepia(34%) saturate(4624%) hue-rotate(291deg) brightness(134%) contrast(105%);
  --filter-sylightgreen: brightness(0) saturate(100%) invert(100%) sepia(7%) saturate(5266%) hue-rotate(143deg) brightness(103%) contrast(98%);
  --filter-white: brightness(0) saturate(100%) invert(99%) sepia(0%) saturate(5688%) hue-rotate(233deg) brightness(120%) contrast(100%);
  --filter-sygrey: brightness(0) saturate(100%) invert(32%) sepia(19%) saturate(17%) hue-rotate(31deg) brightness(100%) contrast(87%);
  --filter-grey-50: brightness(0) saturate(100%) invert(100%) sepia(4%) saturate(485%) hue-rotate(192deg) brightness(119%) contrast(92%);
  --filter-grey-150: brightness(0) saturate(100%) invert(90%) sepia(0%) saturate(4546%) hue-rotate(360deg) brightness(133%) contrast(70%);
  --filter-grey-800: brightness(0) saturate(100%) invert(13%) sepia(0%) saturate(2764%) hue-rotate(183deg) brightness(77%) contrast(74%);
  --filter-grey-400: brightness(0) saturate(100%) invert(64%) sepia(1%) saturate(0%) hue-rotate(185deg) brightness(95%) contrast(91%);
}
body {
  background: #fff;
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
}
a {
  color: var(--color-syred, #f3270f);
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}
.line .bar {
  display: block;
  position: fixed;
  z-index: 9999;
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
.line .top, .line .bottom {
  width: 100vw;
  height: 0.75rem;
  background-color: #f3270f;
}
.line .left, .line .right {
  width: 0.75rem;
  height: 100vh;
}
.line .left {
  background-color: #6dd2d3;
}
.line .right {
  background-color: #ffc5bb;
}
.line .top {
  top: 0;
  left: 0;
}
.line .bottom {
  bottom: 0;
  left: 0;
}
.line .left {
  top: 0;
  left: 0;
}
.line .right {
  top: 0;
  right: 0;
}
.close-text {
  font-size: clamp(1rem, 0.114rem + 1.848vw, 1.5rem);
  font-weight: bold;
}
.close-text a {
  background: #f3270f;
  color: #fff;
  text-decoration: none;
  padding: 16px 48px;
  border-radius: 200px;
  border: 4px solid #fff;
  box-shadow: 0 0 16px #e1e1e1;
  transition: all cubic-bezier(0.68, -0.55, 0.27, 1.55) .4s;
  display: inline-block;
}
.close-text a:hover {
  scale: 1.05;
}
.award_image {
  max-width: 100%;
  text-align: center;
  margin: 0 auto;
  border: 16px solid #f5f5f5;
  overflow: auto;
  aspect-ratio: 16 / 9;
  border-radius: 16px;
}
.sec .container {
  padding: 60px;
}
@media screen and (max-width: 767px) {
  .sec .container {
    padding: 40px 16px;
  }
}
.sec:nth-of-type(odd) {
  background: #f5f5f5;
}
.title-02 {
  padding-bottom: 1em;
  margin-bottom: 1em;
  position: relative;
  text-align: center;
}
.title-02::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 3em;
  height: 4px;
  background: red;
}
.title-03 {
  text-align: left;
  font-size: var(--FontSize-heading-xs, 24px);
  line-height: 1.5;
  font-weight: bold;
  margin-top: 60px;
  padding: 8px 16px;
  background: var(--Color-Grey-50, #F5F5F5);
  border-radius: 8px;
}
.sec:nth-of-type(odd) .title-03 {
  background: #fff;
}
.lead-text {
  font-size: calc((16 / 16) * 1rem);
  text-align: center;
}
.lead-text + .lead-text {
  padding-top: 24px;
}
.article {
  text-align: left;
  font-size: calc((16 / 16) * 1rem);
}
.article p + p {
  margin-top: 20px;
}
.article.cta * {
  text-align: center;
}
header {
  position: sticky;
  width: 100%;
  left: 0;
  top: 0;
  z-index: 999;
  background: #f3270f;
  box-sizing: border-box;
  overflow: hidden
}
header ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin: .75rem 1.5rem;
}
header a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  font-size: 1rem;
  white-space: nowrap;
  padding: 1rem 1.5rem;
  display: block;
}
header a:hover {
  text-decoration: underline;
}
@media screen and (max-width: 767px) {
  header nav {
    overflow-x: scroll
  }
  header ul {
    justify-content: flex-start;
    margin: 0 2rem;
  }
  header a {
    padding: 0.875rem 1rem;
  }
}
footer .container {
  padding: 4rem 1.5rem;
  border-top: 1px solid #d9d9d9;
}
footer .footer-flex-box {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  align-items: stretch;
  justify-content: space-between;
  margin-bottom: 2rem;
}
footer .footer-flex-box .footer-flex-item {
  border: 1px solid #D9D9D9;
  text-decoration: none;
  color: var(--color-sygrey, #5d5a5a);
  border-radius: 1.5rem;
  overflow: hidden;
  cursor: pointer;
  transition: all cubic-bezier(0.38, 0.33, 0.23, 0.99) 0.4s;
  padding: 1rem 3rem 1rem 1.5rem;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  font-size: clamp(1rem, 0.646rem + 0.739vw, 1.2rem);
  font-weight: bold;
  position: relative;
}
footer .footer-flex-box .footer-flex-item:hover {
  box-shadow: 0px 0px 1rem 0px rgba(0, 0, 0, 0.08);
}
footer .footer-flex-box .footer-flex-item::after {
  content: " ";
  display: inline-block;
  width: 17px;
  height: 17px;
  color: #333;
  margin-top: -2px;
  background: url(/common/img/arrow-right.svg);
  background-size: 17px 17px;
  position: absolute;
  top: 50%;
  right: 16px;
  transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  footer .footer-flex-box {
    grid-template-columns: repeat(1, 1fr);
  }
}
#hero {
  background: #fff0ed url(/lp/synergy/email_awards/img/hero-bg2-pc.png) no-repeat center bottom / cover;
  padding-top: 2%;
  padding-bottom: 3%;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
    #hero {
        background: #fff0ed url(/lp/synergy/email_awards/img/hero-bg2-sp.png) no-repeat center bottom -2.5rem / cover;
        padding-top: 1.75rem;
        padding-left: 1rem;
        padding-right: 1rem;
		padding-bottom: 5rem;
    }
}
#hero .logo {
	width: 390px;
}
#hero .row {
	margin-top: 40px;
}
@media screen and (max-width: 767px) {
#hero .row {
	margin-top: 16px;
}
#hero .row li + li {
	margin-top: 8px;
}
#hero h1 {
	margin-bottom: 10px;
}
}
.study .list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2.5rem;
}
#seminar .list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}
#blog .list {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}
@media screen and (max-width: 767px) {
  .study .list {
    padding: 1rem 1.5rem;
    margin-bottom: 1rem;
    grid-template-columns: repeat(1, 1fr) !important;
  }
}
.study .list > .item {
  border: 1px solid #D9D9D9;
  text-decoration: none;
}
#seminar .list > .item {
  display: flex;
  flex-direction: column;
  border-radius: 1.5rem;
  overflow: hidden;
  cursor: pointer;
  transition: all cubic-bezier(0.38, 0.33, 0.23, 0.99) 0.4s;
}
@media screen and (max-width: 767px) {
  .study .list > .item {
    box-shadow: 0px 0px 1rem 0px rgba(0, 0, 0, 0.08);
    width: calc(100vw - 5rem);
  }
}
.study .list > .item:hover {
  box-shadow: 0px 0px 1rem 0px rgba(0, 0, 0, 0.08);
}
.study .list > .item > .description {
  background-color: white;
  padding: 1rem 1.5rem 1.5rem 1.5rem;
  display: flex;
  flex-grow: 1;
  flex-direction: column;
  justify-content: space-between;
  row-gap: 0.5rem;
}
@media screen and (max-width: 767px) {
  .study .list > .item > .description {
    padding: 1rem 1rem 1.5rem 1rem;
  }
}
.study .list > .item > .description > .texts {
  display: flex;
  flex-grow: 1;
  flex-direction: column;
  gap: 0.5rem;
  color: var(--color-sygrey, #5d5a5a);
  font-size: var(--font-body-s, 0.875rem);
  font-weight: 400;
  line-height: 175%;
}
#winner .list > .item {
  display: flex;
  flex-direction: column;
  border-radius: 1.5rem;
  overflow: hidden;
  cursor: pointer;
  transition: all cubic-bezier(0.38, 0.33, 0.23, 0.99) 0.4s;
}
#winner .list > .item > .description > .texts > span {
  color: var(--color-grey-800, #333);
  font-size: var(--font-body-m, 1rem);
  font-weight: 700;
  line-height: 175%;
}
#winner .list > .item > .description > .labels {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
}
#winner .list > .item > .description > .labels > p {
  text-align: center;
  padding: 0.125rem 1rem;
  border-radius: 10rem;
  font-size: var(--font-body-s, 0.875rem);
  font-weight: 700;
  line-height: 175%;
}
#winner .list > .item > .description > .labels > .date {
  color: white;
  background: var(--color-sydarkgreen, #2fc5c8);
}
#winner .list > .item > .description > .labels > .application {
  color: white;
  background: var(--color-syred, #f3270f);
}
#winner .list > .item > .description > .tags {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem;
  flex-wrap: nowrap;
  background: #fff7e2;
  color: #a97a38;
  border-radius: 8px;
}
#winner .list > .item > .description > .tags::before {
  content: "";
  display: inline-block;
  background-image: url("/lp/synergy/email_awards/img/ico_crown.png");
  background-size: 24px 24px;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}
#seminar .list > .item > .description > .tags {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  border-top: 1px solid #d9d9d9;
  padding-top: 1rem;
  flex-wrap: wrap;
}
#seminar .list > .item > .description > .tags > .tag {
  color: var(--color-sygrey, #5d5a5a);
  padding: 0.25rem 0.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10rem;
  border: 1px solid var(--color-grey-150, #d9d9d9);
  font-size: var(--font-body-xs, 0.75rem);
  font-weight: 700;
  margin-right: 0;
}
#seminar .list > .item > .description > .tags > .tag.beginner {
  width: 0.875rem;
  height: 0.875rem;
  border-color: #2FC5C8;
  padding: 0.3125rem;
  flex: 0 0 auto;
  background-image: url("data:image/svg+xml,%3Csvg%20width%3D%2212%22%20height%3D%2214%22%20viewBox%3D%220%200%2012%2014%22%20fill%3D%22none%22%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%3E%3Cpath%20d%3D%22M11.3125%208.79085C11.3125%209.09536%2011.2364%209.3745%2011.0892%209.62825C10.9419%209.88201%2010.749%2010.1002%2010.5105%2010.2728L6.58154%2013.0743C6.34296%2013.2418%206.08915%2013.323%205.80996%2013.323C5.53077%2013.323%205.27697%2013.2418%205.03839%2013.0743L1.12468%2010.3033C0.881028%2010.1256%200.683058%209.90739%200.530774%209.64348C0.388642%209.38465%200.3125%209.10044%200.3125%208.79085V1.22886C0.3125%200.802547%200.500317%200.482811%200.870876%200.27473C1.24143%200.066648%201.61199%200.0818734%201.96732%200.315331L5.67291%202.69051C5.71859%202.71588%205.80996%202.77678%205.80996%202.77678C5.80996%202.77678%205.90641%202.72096%205.94702%202.69051L9.6526%200.315331C10.013%200.0767983%2010.3785%200.0615728%2010.749%200.27473C11.1196%200.482811%2011.3074%200.802547%2011.3074%201.22886V8.79085H11.3125ZM5.76428%203.94915C5.76428%203.94915%205.33788%203.68016%205.13484%203.55328C5.13484%203.55328%202.34803%201.76683%201.4191%201.17303C1.40387%201.16288%201.37849%201.15273%201.36326%201.15273C1.34296%201.15273%201.32773%201.17303%201.32773%201.19333C1.32773%201.24916%201.32773%208.79593%201.32773%208.79593C1.32773%208.92788%201.35819%209.03954%201.4191%209.15119C1.49524%209.28822%201.59676%209.3948%201.72367%209.48615L5.62722%2012.2521C5.70336%2012.3079%205.76428%2012.3485%205.76428%2012.3485V3.94915Z%22%20fill%3D%22%232FC5C8%22/%3E%3C/svg%3E");
  background-size: 0.875rem 0.875rem;
  background-repeat: no-repeat;
  background-position: center;
}
#seminar .list > .item > .description > .tags > .tag.marketing {
  border-color: #99CE91;
}
#seminar .list > .item > .description > .tags > .tag.training {
  border-color: #FAB9D5;
}
#seminar .list > .item > .description > .tags > .tag.community {
  border-color: #FFDB7F;
}
#seminar .list > .item > .description > .texts > span {
  color: var(--color-grey-800, #333);
  font-size: var(--font-body-m, 1rem);
  font-weight: 700;
  line-height: 175%;
}
#seminar .list > .item > .description > .labels {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
}
#seminar .list > .item > .description > .labels > p {
  text-align: center;
  padding: 0.125rem 1rem;
  border-radius: 10rem;
  font-size: var(--font-body-s, 0.875rem);
  font-weight: 700;
  line-height: 175%;
}
#seminar .list > .item > .description > .labels > .date {
  color: white;
  background: var(--color-sydarkgreen, #2fc5c8);
}
#seminar .list > .item > .description > .labels > .application {
  color: white;
  background: var(--color-syred, #f3270f);
}
#document .list > .item {
  background-color: white;
  display: flex;
  flex-direction: column;
  border-radius: 1.5rem;
  overflow: hidden;
  transition: all cubic-bezier(0.38, 0.33, 0.23, 0.99) 0.4s;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  #document .list > .item {
    box-shadow: 0px 0px 1rem 0px rgba(0, 0, 0, 0.08);
    width: 100%;
  }
}
#document .list > .item:hover {
  box-shadow: 0px 0px 1rem 0px rgba(0, 0, 0, 0.08);
  z-index: 2;
}
#document .list > .item > .image {
  padding: 1.5rem 2rem;
}
#document .list > .item > .description {
  padding: 0 1.5rem 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  #document .list > .item > .description {
    height: auto;
    padding: 0 1rem 1.5rem 1rem;
  }
}
#document .list > .item > .description > .title {
  display: flex;
  justify-content: center;
  align-items: center;
}
#document .list > .item > .description > .title > p {
  margin: auto;
  color: var(--color-syred, #f3270f);
  text-align: center;
  font-size: var(--font-body-m, 1rem);
  font-weight: 700;
  line-height: 175%;
}
@media screen and (max-width: 767px) {
  #document .list > .item > .description > .title > p {
    margin: 0 auto 0 auto;
  }
}
#document .list > .item > .description > .detail {
  color: var(--color-sygrey, #5d5a5a);
  font-size: var(--font-body-s, 0.875rem);
  line-height: 175%;
}
@media screen and (max-width: 767px) {
  #document .list > .item > .description > .detail {
    height: auto;
  }
}
#blog .list > .item {
  display: grid;
  grid-template-columns: 3fr 7fr;
  border-radius: 1.5rem;
  overflow: hidden;
  background-color: white;
  border-radius: 1.5rem;
  transition: all cubic-bezier(0.38, 0.33, 0.23, 0.99) 0.4s;
}
@media screen and (max-width: 767px) {
  #blog .list > .item {
    box-shadow: 0px 0px 1rem 0px rgba(0, 0, 0, 0.08);
    width: calc(100vw - 5rem);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
}
#blog .list > .item:hover {
  box-shadow: 0px 0px 1rem 0px rgba(0, 0, 0, 0.08);
}
#blog .list > .item > .image > img {
  width: 100%;
}
#blog .list > .item > .description {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
  padding: 2rem;
  text-align: left;
}
@media screen and (max-width: 767px) {
  #blog .list > .item > .description {
    padding: 1.5rem 1rem;
    flex-grow: 1;
    justify-content: space-between;
  }
}
#blog .list > .item > .description > div > .date {
  color: var(--color-sygrey, #5d5a5a);
  font-size: var(--font-body-m, 1rem);
  font-style: normal;
  font-weight: 700;
  line-height: 150%;
  margin-bottom: 0.5rem;
}
#blog .list > .item > .description > div > .title {
  color: var(--color-grey-800, #333);
  font-size: var(--font-body-l,1.125rem);
  font-weight: 700;
  line-height: 175%;
  margin-bottom: 1rem;
}
#blog .list > .item > .description > .tags {
  display: flex;
  gap: 0.625rem;
}
@media screen and (max-width: 767px) {
  #blog .list > .item > .description > .tags {
    flex-direction: column;
  }
}
#blog .list > .item > .description > .tags > .tag {
  display: flex;
  gap: 0.625rem;
}
#blog .list > .item > .description > .tags > .tag > p {
  color: var(--color-sygrey, #5d5a5a);
  padding: 0.25rem 0.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10rem;
  font-size: var(--font-body-xs, 0.75rem);
  border: 1px solid var(--color-grey-400, #d9d9d9);
  margin-right: 0;
}
#blog .list > .item > .description > .tags > .author {
  color: var(--color-sygrey, #5d5a5a);
  font-size: var(--font-body-xs, 0.75rem);
  line-height: 150%;
  margin-right: 0;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
#blog .list > .item > .description > .tags > .author > img {
  width: 1rem;
  height: 1rem;
}

.sy-showcase-list {
	display: flex;
	align-items: stretch;
	justify-content: center;
}
.sy-showcase-item {
	color: var(--Color-Grey-800, #333);
	text-decoration: none;
	background: var(--Color-SyLightGreen, #EAF9FA);
	border-radius: 24px;
	overflow: hidden;
	border: 1px solid var(--Color-Grey-150, #D9D9D9);
	display: flex;
	flex-direction: column;
	width: 100%;
}
.sy-showcase-img {
	background: var(--Color-White, #FFF);
	margin-bottom: 20px;
}
.sy-showcase-img img {
	height: 160px;
	margin: 16px 0;
	object-fit: contain;
}
.sy-showcase-item:hover {
	box-shadow: 0px 0px 16px 0px rgba(0, 0, 0, 0.08);
	text-decoration: none;
}
.sy-showcase-text {
	font-weight: 700;
	line-height: 175%;
	letter-spacing: 0.32px;
	margin-bottom: 20px;
}
.sy-showcase-industry {
	margin-bottom: 8px;
}
.sy-showcase-industry span {
	    color: var(--Color-SyGrey, #5D5A5A);
    padding: 0.25rem 0.5rem;
    border-radius: 10rem;
    border: 1px solid var(--Color-Grey-150, #D9D9D9);
    font-size: var(--FontSize-body-xs, 12px);
	margin-bottom: 8px;
}
.sy-showcase-industry span + span {
	margin-left: 8px;
}
.sy-showcase-company {
	display: inline-block;
	color: var(--Color-SyDarkGreen, #2FC5C8);
	text-align: center;
	font-size: var(--FontSize-body-s, 14px);
	font-style: normal;
	background: var(--Color-White, #FFF);
	border-radius: 10rem;
    font-weight: 700;
    line-height: 150%;
    padding: 0.5rem 1rem;
}
.sy-showcase-detail {
	display: flex;
	flex-direction: column;
	padding: 0 24px 24px;
	justify-content: space-between;
	align-items: center;
	height: 100%;
	box-sizing: border-box;
}
@media screen and (max-width:767px) {
	.sy-showcase-list + .sy-showcase-list {
		margin-top: 32px;
	}
	
}