@charset "utf-8";

body {
  font-family: 'ヒラギノ角ゴ ProN', 'Hiragino Kaku Gothic ProN', 'メイリオ', Meiryo, 'Yu Gothic', YuGothic, Verdana, Helvetica, 'ＭＳ Ｐゴシック', sans-serif;
}

.layout_main section:nth-of-type(n+2) {
  margin: 0 auto;
  padding: 56px 0;
}

.layout_main section:nth-child(odd) {
  background-color: #eff8ff;
}

.layout_main p {
  line-height: 1.71;
}

.column {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

@media (max-width: 599px) {
  .layout_main img {
    height: auto;
    width: 100%;
  }
}

@media (min-width: 600px) {
  .column {
    flex-direction: row;
  }

  .column > .description {
    flex-grow: 1;
  }
}

/*
  HEADLINE
 */

.headline-wrap {
  display: flex;
  flex-direction: column;
  text-align: center;
}

.headline {
  color: #333;
  font-size: 24px;
  font-weight: bold;
  line-height: 1.2;
  margin-bottom: 32px;
}

.headline::after {
  background-color: #5faff6;
  content: "";
  display: block;
  height: 3px;
  margin: 16px auto 0;
  width: 3rem;
}

.headline-upper {
  color: #333;
  font-size: 13px;
  height: 1.23;
  margin-bottom: 8px;
  order: -1;
}

@media (min-width: 600px) {
  .headline {
    font-size: 28px;
  }

  .headline::after {
    margin-top: 24px;
    width: 3.25em;
  }

  .headline-upper {
    font-size: 16px;
    height: 1.68;
  }
}

/*
  BUTTON
 */

.button {
  align-items: center;
  border-radius: 3px;
  box-sizing: border-box;
  display: inline-flex;
  font-size: 14px;
  height: 48px;
  justify-content: center;
  text-decoration: none;
  width: 176px;
}

.button:hover {
  opacity: 0.7;
}

.button.primary {
  background-color: #2c6bac;
  color: #fff;
}

.button.secondary {
  background-color: #fff;
  border: 2px solid #2c6bac;
  color: #2c6bac;
}

@media (min-width: 600px) {
  .button {
    font-size: 16px;
  }
}

/*
HERO
 */

#hero {
  margin: 0;
}

.layout_hero {
  background: url("../images/hero_img.png") no-repeat center center / cover;
  color: #1c1c1c;
  padding: 24px 0 16px;
}

.hero-inner {
  display: flex;
  justify-content: space-between;
}

/* ヒーローイメージ Webフォントバナー ここから */

.hero-banner {
  display: flex;
  align-items: center;
  text-align: center;
}

.hero-banner a {
  background: rgba(255, 255, 255, 0.7);
  display: block;
  padding: 30px 70px;
  text-decoration: none;
}

.hero-banner a:hover {
  opacity: 0.7;
}

.hero-banner .hero-banner-title {
  color: #ea4b9f;
  font-size: 30px;
}

.hero-banner .hero-banner-fonts {
  color: #1c1c1c;
  font-size: 18px;
  list-style: none;
  margin-top: 6px;
}

.hero-banner .font-shimanami {
  font-family: "Shimanami JIS2004";
  font-size: 20px;
}

.hero-banner .font-udkyokasho {
  font-family: "UDDigiKyokasho R JIS2004";
}

.hero-banner .font-hiramarugo {
  font-family: "Hiragino Maru Gothic W4 JIS2004";
}

.hero-banner .hero-banner-button {
  color: #2c6bac;
  margin-top: 10px;
}

@media (max-width: 599px) {
  .hero-inner {
    flex-direction: column;
  }

  .hero-banner {
    margin-top: 20px;
  }

  .hero-banner a {
    align-items: center;
    display: flex;
    justify-content: center;
    padding: 20px;
    width: 100%;
  }

  .hero-banner .hero-banner-fonts {
    display: none;
  }

  .hero-banner .hero-banner-button {
    margin: 0 0 0 5px;
  }
}

@media (max-width: 400px) {
  .hero-banner a {
    padding: 10px;
  }

  .hero-banner .hero-banner-title {
    font-size: 22px;
  }
}

/* ヒーローイメージ Webフォントバナー ここまで */

.hero-label {
  align-items: center;
  background-color: #fff;
  border-radius: 2rem;
  color: #47a9ff;
  display: flex;
  font-size: 16px;
  height: 34px;
  justify-content: center;
  margin-bottom: 16px;
  width: 250px;
}

.hero-title {
  display: flex;
  margin-bottom: 24px;
}

.hero-title > span {
  font-size: 28px;
  flex-grow: 1;
}

.hero-free {
  align-items: center;
  background-color: #ea4b9f;
  border-radius: 50%;
  color: #fff;
  display: inline-flex;
  height: 43px;
  justify-content: center;
  margin-right: 16px;
  width: 43px;
}

@media (min-width: 600px) {
  .layout_hero {
    box-sizing: border-box;
    height: 310px;
    padding: 50px 0 60px;
  }

  .hero-label {
    font-size: 20px;
    height: 40px;
    margin-bottom: 34px;
    width: 320px;
  }

  .hero-title {
    align-items: center;
  }

  .hero-title > span {
    font-size: 32px;
  }

  .hero-free {
    font-size: 20px;
    font-weight: normal;
    height: 64px;
    margin-right: 12px;
    width: 64px;
  }

  .hero-description {
    font-size: 15px;
    margin-left: 76px;
  }
}

/*
  ANCHOR LINK
 */

.layout_menu {
  background-color: #144166;
}

.anchor-link {
  align-items: center;
  box-sizing: border-box;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  list-style: none;
  padding: 21px 30px 0;
}

.anchor-link a {
  color: #fff;
  font-size: 16px;
  line-height: 1.5;
  text-decoration: none;
}

.anchor-link a:hover {
  opacity: 0.7;
}

@media (max-width: 599px) {
  .anchor-link li {
    margin-bottom: 21px;
  }

  .anchor-link li::before {
    background-color: #fff;
    content: "";
    display: inline-block;
    height: 16px;
    margin: 0 16px;
    vertical-align: middle;
    width: 1px;
  }

  .anchor-link li:first-child::before {
    content: none;
  }
}

@media (min-width: 600px) {
  .anchor-link {
    justify-content: space-around;
    height: 48px;
    margin: 0 auto;
    padding: 0 50px;
    width: 960px;
  }

  .anchor-link a {
    font-size: 18px;
    line-height: 1.33;
  }
}

/*
  news
 */
#news .description,.copyright {
  text-align: center;
}

.news-details-link {
  color: #2c6bac;
  font-size: 16px;
  font-weight: bold;
  text-decoration: none;
}

.news-details {
  margin-top: 48px;
  text-align: center;
}

@media (max-width: 599px) {
  #news .description,.copyright {
    text-align: left;
  }
}

/*
  ABOUT
 */

.example-image {
  height: 147px;
  position: relative;
}

.example-image .example {
  align-items: center;
  display: flex;
  flex-direction: column;
  opacity: 0;
  position: absolute;
  width: 100%;
}

.example-image .example span {
  font-size: 128px;
  line-height: 1;
}

.example-image .example.reiwa {
  animation: fadeIn 28s infinite;
}

.example-image .example.reiwa span {
  font-family: Ryumin Regular KL;
  min-height: 140px;
}

.example-image .example.heisei {
  animation: fadeIn 28s infinite 7s;
}

.example-image .example.heisei span {
  font-family: Maru Folk Regular;
  min-height: 148px;
}

.example-image .example.syouwa {
  animation: fadeIn 28s infinite 14s;
}

.example-image .example.syouwa span {
  font-family: Cinema Letter;
  min-height: 145px;
}

.example-image .example.meiji {
  animation: fadeIn 28s infinite 21s;
}

.example-image .example.meiji span {
  font-family: "Reisho 101";
  min-height: 140px;
}

.example-image .example figcaption {
  font-size: 12px;
}

.layout_about .note {
  display: block;
  font-size: 13px;
  margin: 24px 0 0;
}

.typeaquare {
  background-color: #e7f1fc;
  margin: 40px 0 0;
  padding: 24px 16px;
}

.typeaquare-headline {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 17px;
}

.typeaquare-logo {
  background-color: #fff;
  margin-top: 24px;
  text-align: center;
}

@media (max-width: 599px) {
  .example-image {
    margin-top: 36px;
  }

  .typeaquare-logo img {
    width: 80%;
  }
}

@media (min-width: 600px) {
  .layout_about .headline {
    margin-bottom: 21px;
  }

  .layout_about .column > .image {
    width: 296px;
  }

  .layout_about .description {
    margin: 12px 51px 0 0;
    width: 600px;
  }

  .typeaquare {
    align-items: flex-start;
    padding: 24px;
  }

  .typeaquare-headline {
    font-size: 18px;
    margin: 0;
  }

  .typeaquare-description {
    display: flex;
    flex-direction: column;
    height: 125px;
    justify-content: space-between;
    width: 576px;
  }

  .typeaquare-logo {
    margin: 0 0 0 40px;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }

  5% {
    opacity: 1;
  }

  20% {
    opacity: 1;
  }

  25% {
    opacity: 0;
  }
}

/*
  Font
 */

.layout_font .lead {
  text-align: center;
}

.font-example-block {
  background-color: #fff;
  box-shadow: 0 0 8px #d2deef;
  margin: 24px 0;
  padding: 20px 24px 15px;
  text-align: center;
}

.font-example-block .font-example {
  height: 115px;
}

.font-example-block .font-example::after {
  background-color: #c3c3c3;
  content: "";
  display: block;
  height: 1px;
  margin: 15px 0;
}

.styled-font {
  align-items: center;
  display: inline-flex;
  font-size: 26px;
  height: 84px;
  transform: translateY(0);

  /* サンプルテキストの書体 */
  font-family: Ryumin Regular KL, Ryumin Medium KL, Midashi Min MA31, A1 Mincho, Shin Go Regular, Shin Go Medium, Gothic MB101 Bold, Midashi Go MB31, NOW-GM, "Jun 201", "Jun 501", Shin Maru Go Regular, Folk Regular, Folk Medium, Maru Folk Regular, Maru Folk Medium, Kakumin Regular, Kaimin Sora Bold, Cinema Letter, Talking, Haruhi Gakuen, Suzumushi, GSanSerif-B, Shin Maru Go Futoline, Sei Kaisho CB1, "Reisho 101", UD Shin Go Regular, UD Shin Go Medium, UD Shin Go Conde90 L, UD Shin Go Conde90 M, Shimanami JIS2004, UDDigiKyokasho R JIS2004, Hiragino Maru Gothic W4 JIS2004;
}

.styled-font.hidden {
  transform: translateY(15px);
  opacity: 0;
}

.styled-font.animate {
  transition: all 800ms;
}

.font-button-block {
  margin-bottom: 40px;
}

.font-button {
  align-items: flex-end;
  display: flex;
  flex-wrap: wrap;
  list-style: none;
}

.font-button-item {
  align-items: center;
  background-color: #fff;
  border: 1px solid #cecece;
  border-radius: 3px;
  box-sizing: border-box;
  color: #568cc5;
  cursor: pointer;
  display: flex;
  height: 44px;
  justify-content: center;
  position: relative;
  width: 176px;
}

.font-button-item:hover {
  box-shadow: 0 0 0 2px #cecece inset;
}

.font-button-item.active {
  background-color: #2c6bac;
  border: 1px solid #2c6bac;
  box-shadow: none;
  color: #fff;
}

.font-button-item.new-font {
  margin-top: 20px;
}

.new-font::before {
  align-items: center;
  background: #ea4b9f;
  border-radius: 50%;
  content: 'New';
  color: #fff;
  display: inline-flex;
  font-size: 10px;
  position: absolute;
  top: -20px;
  left: -5px;
  padding: 5px;
  height: 1.3rem;
  justify-content: center;
  text-align: center;
  width: 1.3rem;
}

@media (max-width: 599px) {
  .font-button-block {
    overflow-x: scroll;
    width: 100%;
  }

  .font-button {
    margin-bottom: 32px;

    /* ボタン幅 * 横に並ぶボタンの数 + ボタン間のスペース * (横に並ぶボタンの数 - 1) */
    width: calc(218px * 10 + 8px * 9);
  }

  .font-button-item {
    font-size: 15px;
    margin: 0 8px 0 0;
    width: 218px;
  }

  .font-button-item:nth-child(10n) {
    margin-right: 0;
  }

  .font-button-item:nth-child(n+11) {
    margin-top: 16px;
    text-align: center;
  }

  .new-font::before {
    left: 0;
  }

  .font-button-block::-webkit-scrollbar {
    height: 8px;
  }

  .font-button-block::-webkit-scrollbar-track {
    background: #e2e2e2;
    border: none;
    border-radius: 10px;
  }

  .font-button-block::-webkit-scrollbar-thumb {
    background: #9a9a9a;
    border-radius: 10px;
    box-shadow: none;
  }
}

@media (max-width: 350px) {
  .font-example-block {
    padding: 20px 20px 15px;
  }

  .styled-font {
    font-size: 24px;
    height: 80px;
  }
}

@media (min-width: 600px) {
  .layout_font {
    background: url(../images/naga.png) no-repeat top center #eff8ff;
  }

  .font-button-block {
    margin-bottom: 56px;
  }

  .font-example-block .font-example {
    height: 86px;
  }

  .font-example-block .font-example::after {
    margin: 15px 96px;
  }

  .styled-font {
    font-size: 40px;
    height: 55px;
  }

  .font-button {
    justify-content: flex-start;
  }

  .font-button-item {
    margin-right: 20px;
  }

  .font-button-item:nth-child(5n) {
    margin-right: 0;
  }

  .font-button-item:nth-child(n+6) {
    margin-top: 16px;
  }
}

/*
  CSSと組み合わせた表現例
 */

.layout_combined-example {
  background-color: #fff;
  padding: 24px;
}

.combined-example-headline {
  font-size: 16px;
  margin-bottom: 24px;
  text-align: center;
}

@media (min-width: 600px) {
  .layout_combined-example {
    background-color: #fff;
    padding: 40px 30px;
  }

  .combined-example-headline {
    font-size: 24px;
  }
}

/*
 　メリット・デメリット
 */

.layout_merit-demerit .headline::after {
  content: none;
}

.layout_merit-demerit .merit,
.layout_merit-demerit .demerit {
  display: flex;
  flex-direction: column;
}

.merit-demerit-headline {
  font-size: 16px;
}

.merit-demerit-headline::after {
  background-color: #5faff6;
  content: "";
  display: block;
  height: 3px;
  margin: 16px 0;
  width: 2em;
}

@media (max-width: 599px) {
  .layout_merit-demerit .merit,
  .layout_merit-demerit .demerit {
    margin-bottom: 32px;
  }

  .merit-demerit-img {
    margin: 0 auto;
    width: 256px;
  }
}

@media (min-width: 600px) {
  .layout_merit-demerit .headline-wrap {
    text-align: left;
  }

  .layout_merit-demerit .text {
    width: 636px;
  }

  .layout_merit-demerit .merit {
    width: 287px;
  }

  .layout_merit-demerit .demerit {
    width: 324px;
  }
}

/*
  ご利用方法
 */

.how-to_wp,
.how-to_css {
  display: flex;
  flex-direction: column;
}

.how-to_img {
  border: 1px solid #bfc2c4;
  margin-bottom: 16px;
  order: -1;
}

.how-to_img:hover {
  opacity: 0.7;
}

.how-to_headline {
  margin-bottom: 16px;
}

.how-to-button {
  margin-top: 24px;
  text-align: center;
}

.how-to-button .button {
  height: 44px;
  width: 200px;
}

.how-to_wp {
  margin-bottom: 56px;
}

@media (min-width: 600px) {
  .how-to_wp,
  .how-to_css {
    margin: 0;
    width: 462px;
  }

  .how-to_headline {
    font-size: 18px;
  }

  .how-to-button .button {
    width: 240px;
  }
}

/*
  仕様について
 */

.spec-table {
  border-collapse: collapse;
}

.spec-table th,
.spec-table td {
  border: 1px solid #ccc;
  padding: 8px;
}

.spec-table th {
  background-color: #e5e5e5;
  font-weight: normal;
  text-align: left;
  word-break: keep-all;
}

.spec-table td {
  background-color: #fff;
}

.spec-table .list {
  margin-left: 16px;
}

.spec-table .em {
  color: #ea4b9f;
}

.spec-table .add-col {
  width: 155px;
  background-color: #ededed;
  font-size: 0.8rem;
}

.layout_spec .note {
  font-size: 13px;
}

.layout_spec .note {
  font-size: 13px;
}

.spec-setting {
  text-align: center;
}

.spec-setting .new {
  margin: 56px 0 40px;
}

.spec-button {
  margin-top: 17px;
}

.spec-button .button {
  width: 100%;
}

@media (min-width: 600px) {
  .spec-table {
    margin: 0 auto;
    width: 820px;
  }

  .spec-table + .note-wrap {
    margin: 8px auto 0;
    width: 820px;
  }

  .spec-table th,
  .spec-table td {
    border: 1px solid #ccc;
    padding: 16px 24px;
  }

  .spec-table .em {
    font-size: 18px;
  }

  .spec-setting {
    background-color: #e7f1fc;
    margin-top: 56px;
    padding: 40px 88px;
  }

  .spec-setting .new,
  .spec-setting .existing {
    margin: 0;
    width: 352px;
  }
}

/*
　よくある質問
 */

.faq .q {
  color: #2a6bac;
  font-weight: bold;
  margin-bottom: 16px;
}

.faq .a {
  margin-bottom: 32px;
}

.faq .q,
.faq .a {
  display: flex;
  justify-content: space-between;
}

.faq .text {
  width: calc(100% - 20px - 16px);
}

.faq .icon {
  align-items: center;
  border-radius: 50%;
  color: #fff;
  display: flex;
  font-weight: bold;
  height: 20px;
  justify-content: center;
  padding: 2px;
  width: 20px;
}

.faq .q .icon {
  background-color: #2c6bac;
}

.faq .a .icon {
  background-color: #ea4b9f;
}

.faq-support {
  margin-top: 48px;
  text-align: center;
}

.faq-button .button {
  height: 44px;
  margin-top: 16px;
  width: 200px;
}

.layout_main .copyright {
  margin: 16px auto;
}

@media (min-width: 600px) {
  .faq {
    margin: 0 auto;
    width: 568px;
  }

  .faq .q {
    font-size: 16px;
  }

  .faq .a {
    margin-bottom: 36px;
  }

  .faq-support {
    margin-top: 40px;
  }

  .faq-button .button {
    width: 240px;
  }
}

/* -----------------------------------------------
 css表現サンプル
 https://rs.sakura.ad.jp/lp/dakara-sakura/を流用
----------------------------------------------- */

.sec04-sample-block {
  width: 100%;
  height: 150px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-bottom: 5px;
}

.sec04-sample {
  list-style: none;
}

.sec04-sample li {
  margin-bottom: 24px;
}

.sec04-sample-block01 {
  background: #e74c3c;
  font-family: A1 Mincho;
}

.sec04-sample-block02 {
  background: #000;
  font-family: Gothic MB101 Bold;
}

.sec04-sample-block03 {
  background: #2955a5;
  font-family: NOW-GM;
}

.text-longshadow {
  color: #fff;
  font-size: 22px;
  font-weight: bold;
  line-height: 1.5;
  text-align: center;
  text-shadow: 1px 1px rgba(123, 25, 15, 0.5), 2px 2px rgba(129, 28, 18, 0.51), 3px 3px rgba(135, 31, 20, 0.52), 4px 4px rgba(140, 33, 22, 0.53), 5px 5px rgba(145, 36, 24, 0.54), 6px 6px rgba(150, 38, 26, 0.55), 7px 7px rgba(154, 40, 28, 0.56), 8px 8px rgba(158, 42, 30, 0.57), 9px 9px rgba(162, 44, 31, 0.58), 10px 10px rgba(166, 45, 33, 0.59), 11px 11px rgba(169, 47, 34, 0.6), 12px 12px rgba(173, 48, 36, 0.61), 13px 13px rgba(176, 50, 37, 0.62);
}

.plate > div {
  margin-bottom: 7px;
}

.shadow {
  color: #fff;
  font-weight: bold;
  text-shadow: -3px -3px 0 #222, 3px -3px 0 #222, -3px 3px 0 #222, 3px 3px 0 #222, 4px 4px 0 #fff, 5px 5px 0 #fff, 6px 6px 0 #fff, 7px 7px 0 #fff;
  line-height: 0.8em;
  letter-spacing: 0.1em;
  transform: scaleY(0.7);
  -webkit-transform: scaleY(0.7);
  -moz-transform: scaleY(0.7);
  margin: 0;
  text-align: center;
}

.script {
  color: #fff;
  text-align: center;
  font-size: 15px;
  position: relative;
  margin: 0;
  z-index: 2;
}

.script span {
  padding: 0 0.5em;
  z-index: 2;
  background: #000;
}

.script::before {
  content: "";
  display: block;
  position: absolute;
  z-index: -1;
  top: 50%;
  width: 100%;
  border-bottom: 1px solid #fff;
}

.text1, .text2, .text3 {
  font-size: 25px;
}

.isometric-text {
  -webkit-transform: scale(0.5, 0.5);
  transform: scale(0.5, 0.5);
  position: relative;
  top: 3px;
  left: -145px;
}

.isometric-text div {
  font-size: 70px;
  position: relative;
  top: -30px;
  left: 100px;
  color: rgba(0, 0, 0, 0);
  -webkit-transform: skew(63deg, -26.6deg);
  transform: skew(63deg, -26.6deg);
  text-shadow: 0 0 3px rgba(0, 0, 128, 0.25);
  z-index: 50;
}

.isometric-text div::after {
  content: "ISOMETRIC TEXT";
  position: absolute;
  top: 36px;
  left: 78px;
  color: white;
  -webkit-transform: skew(-63deg) scale(1, 0.5);
  transform: skew(-63deg) scale(1, 0.5);
  text-shadow: -1px -1px 1px #aaa, -2px -2px 1px #999, -3px -3px 1px #888, -4px -4px 1px #777, -5px -5px 1px #666, -6px -6px 1px #555, -7px -7px 5px rgba(0, 0, 128, 0.75);
  z-index: 100;
}

.isometric-text span {
  display: block;
  width: 700px;
  height: 200px;
  position: absolute;
  top: calc(180px * 0.7);
  left: calc(430px * 0.9);
  font: 9px/19px 'ArchitectsDaughterRegular';
  color: rgba(255, 255, 255, 0.35);
  text-align: center;
  -webkit-transform: skew(63deg, -26.6deg);
  transform: skew(63deg, -26.6deg);
  z-index: 50;
}

@media (min-width: 600px) {
  .sec04-sample-block {
    height: 195px;
    margin-bottom: 16px;
  }

  .sec04-sample {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: stretch;
  }

  .sec04-sample li {
    width: 285px;
    margin-bottom: 0;
  }

  .sec04-sample li img {
    margin-bottom: 16px;
  }

  .sec04-sample li p {
    font-size: 14px;
    letter-spacing: 0.6px;
  }

  .sec04-sample-title {
    font-size: 15px;
    letter-spacing: 1.2px;
    margin-bottom: 10px;
    line-height: 1.5;
  }

  .text-longshadow {
    font-size: 23px;
  }

  .text-longshadow span {
    font-size: 19px;
  }
}

/* --------------------
IE11 hack
スペースの調整
-------------------- */
@media all and (-ms-high-contrast: none) {
  .hero-label {
    padding-top: 7px;
  }

  .hero-free {
    box-sizing: border-box;
    padding-top: 7px;
  }

  .hero-title > span {
    margin-top: 7px;
  }

  .anchor-link a {
    display: inline-block;
    margin-top: 6px;
  }

  .button {
    padding-top: 6px;
  }

  .font-button-item {
    padding-top: 5px;
  }

  .example-image .example span {
    height: 135px;
    line-height: 99px;
  }
}

/*  サイトコンテストのcta追加 */
.sitecontest-cta-wrap {
  display: flex;
  align-items: center;
  max-width: 680px;
  margin: 0 auto;
}

.sitecontest-cta-wrap img {
  max-width: 230px;
  margin: 16px 24px;
  box-shadow: 1px 1px 2px #dcdcdc;
}

.sitecontest-cta-wrap p {
  vertical-align: middle;
}

.sitecontest-cta-button {
  text-align: center;
  padding-top: 16px;
}

@media (max-width: 599px) {
  .sitecontest-cta-wrap {
    display: contents;
  }

  .sitecontest-cta-wrap img {
    margin: 0 auto;
    display: block;
    margin-bottom: 16px;
  }
}