@charset "UTF-8";

.container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.item {
   display: block;
  margin: 0 auto;
  max-width: 100%;
  height: auto;
}

.btnf {
  display: inline-block;
  margin: 30px;
  width: 350px;
  height: 60px;
  padding: 0 20px;
  border-radius: 30px;
  background-color: red;
  color: #fff;
  text-decoration: none;
  text-align: center;
  font-size: 23px;
  font-weight: bold;
  line-height: 60px; /* heightと同じ値に設定 */
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

@media (max-width: 480px) {
  .btnf {
	font-size: 15px; /* 追加 */
    display: block;
    margin: 20px auto;
    width: 100%;
    max-width: 250px;
    height: auto;
    padding: 10px;
    border-radius: 40px;
    background-color: red;
    color: white;
    text-align: center;
    text-decoration: none;
    box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.3);
    white-space: normal;
  }
}

img {
  max-width: 100%;
  height: auto;
}

/* スマホ用 */
@media screen and (max-width: 480px) {
  .image {
    background-image: url("/images/ribbon01_sp.png");
    /* 画像のスタイルを指定 */
  }
}

/* PC用 */
@media screen and (min-width: 768px) {
  .image {
    background-image: url("/images/ribbon01.png");
    /* 画像のスタイルを指定 */
  }
}

/* スマホ用 */
@media screen and (max-width: 480px) {
  .image02 {
    background-image: url("/images/fare_specialprice02_sp.png");
    /* 画像のスタイルを指定 */
  }
}

/* PC用 */
@media screen and (min-width: 768px) {
  .image02 {
    background-image: url("/images/fare_specialprice02.png");
    /* 画像のスタイルを指定 */
  }
}

/* スマホ用 */
@media screen and (max-width: 480px) {
  .image03 {
    background-image: url("/images/kino_shield_koka_sp.png");
    /* 画像のスタイルを指定 */
  }
}

/* PC用 */
@media screen and (min-width: 768px) {
  .image03 {
    background-image: url("/images/kino_shield_koka.png");
    /* 画像のスタイルを指定 */
  }
}