@charset "UTF-8";

#box1 img,
#box2 img {
  width: 100%;
  vertical-align: bottom;
}

#box1 .inner,
#box2 .inner {
  margin-bottom: 15px;
}

#box2 .ctaBtn {
  display: block;
  box-sizing: border-box;
  width: 80%;
  max-width: 300px;
  margin: 0 auto 15px;
  border: none;
  border-radius: 10em;
  background: linear-gradient(to right,
      rgba(151, 200, 240, 0.7),
      rgba(33, 116, 240, 0.7));
  text-decoration: none;
  line-height: 1;
  cursor: pointer;
}

#box2 .ctaBtn a {
  display: block;
  box-sizing: border-box;
  width: 100%;
  padding: 10px;
  font-weight: bold;
  text-align: center;
  color: #fff;
}

/* ==========================================================
	PC閲覧用 481px以上
========================================================== */
@media screen and (min-width: 481px) {
  .title h2 {
    font-size: 0.9em;
  }

  #box1 img,
  #box2 img {
    width: 240px;
    float: right;
    margin: 0 0 20px 20px;
  }
}

/* ==========================================================
	SP閲覧用 480px以下
========================================================== */
@media screen and (max-width: 480px) {

  #box1 .inner,
  #box2 .inner {
    display: flex;
    justify-content: center;
    flex-direction: column;
  }

  #box1 p,
  #box2 p {
    margin-top: 10px;
    padding-bottom: 10px;
  }

  #box1 img,
  #box2 img {
    width: 100%;
  }
}