@charset "UTF-8";
img {
  max-width: 100%;
}

/* flexbox
=========================================== */
.flexbox {
  display: -webkit-box;
  display: -ms-box;
  display: -webkit-flexbox;
  display: -moz-flexbox;
  display: -ms-flexbox;
  display: -moz-flex;
  display: -ms-flex;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media only screen and (max-width: 767px) {
  .flexbox {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

@media only screen and (max-width: 767px) {
  .spFlexRow {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
}
.flexbox.flex-between {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.flexbox.reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
@media only screen and (max-width: 767px) {
  .flexbox.reverse {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.flex-conteiner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

/* セクションごとの設定
=========================================== */
.main_img {
  max-width: 300px;
}

.text_ph .flex_text {
  width: 70%;
}
@media only screen and (max-width: 767px) {
  .text_ph .flex_text {
    width: 100%;
  }
}
.text_ph .flex_ph {
  width: 28%;
}
@media only screen and (max-width: 767px) {
  .text_ph .flex_ph {
    width: 80%;
    margin: 20px auto;
    text-align: center;
  }
}
.text_ph .flex_text2 {
  width: 50%;
}
@media only screen and (max-width: 767px) {
  .text_ph .flex_text2 {
    width: 100%;
  }
}
.text_ph .flex_ph2 {
  width: 48%;
}
@media only screen and (max-width: 767px) {
  .text_ph .flex_ph2 {
    width: 100%;
    margin: 20px auto;
    text-align: center;
  }
}

/* 料金
=========================================== */
.priceCont table td {
  text-align: right;
}

/* 組み合わせセクション
=========================================== */
.lip_set .detaillink {
  text-align: right;
}