:root {
  --screen-max-width:1600px;
  --section-inner-width:1080px;
}

.header-section {
  height: 200px;
  background-color: #D9E6F2;
  display: flex;
  align-items: center;
  justify-content: center;
}

.header-section h2{
  font-size: 2rem;
}

/* action */

.action {
  max-width:var(--section-inner-width);
  margin:auto;
  padding: 110px 0 90px;
}
.action .item {
  display:flex;
  flex-direction:row;
  justify-content:space-between;
}
.action .item .content {
  width:calc(55% - 40px);
}

.action .img-column .item .content {
  width: 100%;
}

.action .item .content .title {
  font-size: 1.75rem;
  font-weight:500;
  margin-bottom:27px;
  display: flex;
  flex-direction: row;
  align-items: center;
  position: relative;
  padding-right: 50px;
  flex-wrap: wrap;
  white-space: nowrap;
  max-width: 300px;
}
.action .item .content .title::after {
  content: 'New';
  font-size: 0.75rem;
  display: flex;
  background: #E24719;
  color: #fff;
  border-radius: 15px;
  margin-left: 60px;
  height: 24px;
  width: 40px;
  align-items: center;
  justify-content: center;
  line-height: 0.13rem;
  position: absolute;
  right: 0;
}
.action .item .content p {
  font-size: 1.5rem;
  margin-bottom:38px;
  font-weight: 400;
}
.action .item .content h5 {
  font-size: 1.125rem;
  font-weight:700;
  background:#2699D5;
  color:#fff;
  padding:5px 20px;
  border-radius:20px;
  display:inline-block;
  margin-bottom:16px;
}
.action .item .content ul li {
  margin-bottom:24px;
  line-height:24px;
  font-weight: 400;
}
.action .item .content ul li:last-of-type {
  margin-bottom:0;
}
.action .item .content ul li span {
  font-size: 0.5rem;
}

.action .item .img {
  width:45%;
}

/* full-example */

.full-example {
  max-width:var(--section-inner-width);
  margin:auto;
  padding: 0 0 80px 0;
}
.full-example .title br{
  display: none;
}
.full-example .title {
  margin-bottom: 70px;
  font-size: 1.75rem;
}
.full-example .examples {
  display: flex;
  flex-wrap: wrap;
  justify-content: start;
}
.full-example .item {
  width: 330px;
  margin-right: 45px;
  margin-bottom: 50px;
}
.full-example .item .img-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  background: #fff;
  padding: 35px 5px;
  margin-bottom: 20px;
  border: solid #e3e2e2 1px;
  border-radius: 6px;
  min-width: 200px;
  height: 200px;
}
.full-example .item:last-child {
  margin-right: 0;
}
.full-example .item .img-container img {
  width: 107px;
}
.full-example .item .description{
  display: block;
  margin: 35px 0 20px;
  font-size: 1.5rem;
  text-align: center;
}
.full-example .item .sub-description{
  text-align: center;
}

.header-section, .notify-section, .full-example-section {
  padding: 0 15px;
}

@media screen and (max-width:768px) {
  body {
      padding:0;
      background-image:url(../img/hero-bg-top.png), url(../img/hero-bg-bottom.png);
      background-size:700px, 700px;
      background-position:right top, left bottom;
      background-repeat:no-repeat, no-repeat;
      background-attachment:fixed;
  }
  .header-pc {
      display:none;
  }
  .header-sp {
      display:flex;
  }

  .header-section {
    height: 150px;
    justify-content: start;
  }

  .action {
    padding: 50px 0;
  }

  .action .item .content {
    margin-bottom: 20px;
  }

  .action .item .content .title {
    font-size: 1.5rem;
  }

  .action .item .content ul li span {
    font-size: 0.5rem;
  }

  .action .item .content p {
    font-size: 1.2rem;
  }

  .action .item .img {
    width: 100%;
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
  }

  .action .item.swap-direction {
      flex-direction: column;
  }

  .action .item.swap-direction .content{
      width: 100%;
  }
  .action .item .content h5 {
    font-size: 0.875rem;
    justify-content: center;
    text-align: center;
  }
  
  .full-example {
    padding: 50px 0;
  }

  .full-example .examples {
    flex-wrap: wrap;
    justify-content: center;
  }

  .full-example .title br {
    display: block;
  }

  .full-example .title {
    margin-bottom: 30px;
    font-size: 1.5rem;
    text-align: center;
  }

  .full-example .examples .item {
    margin: 0 0 20px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 10px;
    min-width: 200px;
  }

  .full-example .item .img-container {
    min-width: unset;
    padding: 25px 5px;
  }

  .full-example .examples .item .description {
    margin: 15px 0 20px;
    font-size: 1.2rem;
  }

  .full-example .examples .item .sub-description {
    margin: 10px 0 25px 0;
    text-align: center;
  }
}