/* CSS Document */
img {
  /* ウィンドウサイズに応じて画像を拡縮 */
  vertical-align: middle;
  max-width: 100%;
  width: auto;
  height: auto;
}
body {
  color: #000;
  /* お好みで */
  -webkit-text-size-adjust: 100%;
  /* 横向きにしたときにフォントサイズが変わらないように */
  line-height: 1.5em;
}
.wrapper {
  /* この要素で画面最大幅を限定します。 */
  max-width: 1000px;
  box-sizing: border-box;
  margin: 0 auto;
}

@media screen and (max-width: 1000px) {
.wrapper {
  margin: 0 0.5rem;
}
}
/***************************
 ** flexible boxと子要素の関係
 * flexible box仕様には3段階あります。box,flexbox,flex
 * ブラウザによって実装段階がそれぞれ異なるので、注意すること
 *
 * 横並びのboxなのでクラス名を「flex_row」に変更
 */
.flex_row {
  /* flexible boxの使用宣言（box,flexbox,flex） */
  display: -webkit-box;    /*--- Androidブラウザ用 ---*/
  display: -ms-flexbox;    /*--- ie10 ---*/
  display: -webkit-flex;    /*--- mac old safari ---*/
  display: flex;
  /* flexアイテムの横方向の位置揃え */
  -webkit-box-pack: justify;    /*--- Androidブラウザ ---*/
  -ms-flex-pack: justify;    /*--- ie10 ---*/
  -webkit-justify-content: space-between;    /*--- mac old safari ---*/
  justify-content: space-between;
  /* flexアイテムの縦方向の整列 */
  -webkit-box-align: stretch;    /*--- Androidブラウザ ---*/
  -ms-flex-align: stretch;    /*--- ie10 ---*/
  -webkit-align-items: stretch;    /*--- mac old safari ---*/
  align-items: stretch;
  /* flexアイテムの並び方向 */
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;    /*--- Androidブラウザ 2つに分かれている ---*/
  -ms-flex-direction: row;    /*--- ie10 ---*/
  -webkit-flex-direction: row;    /*--- mac old safari ---*/
  flex-direction: row;
  /* flexアイテムを複数行にするかどうか */
    /* box仕様のbox-linesに当たるが、androidブラウザは未対応 */
    /* wrapさせたい場合はandroid4DefaultBrowser.cssにて対応すること */
  -ms-flex-wrap: nowrap;    /*--- ie10 ---*/
  -webkit-flex-wrap: nowrap;    /*--- mac old safari ---*/
  flex-wrap: nowrap;
}
.flex_row>* {
  /**** flexible box関連指定 ****/
    /* flexアイテムの伸縮、アイテム幅の指定 */
  -webkit-box-flex: 0.1;    /*--- Androidブラウザ 要素がはみ出す場合があることへの対処 ---*/
  -ms-flex: 1 0 auto;    /*--- ie10 ---*/
  -webkit-flex: 1 0 auto;    /* mac old safari */
  flex: 0 1 auto;    /*--- flex-grow,flex-shrink,flex-basis ---*/
  /* 並び順の指定 */
  -webkit-box-ordinal-group: 1;    /*--- Androidブラウザ ---*/
  -ms-flex-order: 0;    /*--- ie10 ---*/
  -webkit-order: 0;    /*--- mac old safari ---*/
  order: 0;
}

@media screen and (max-width: 736px) {
/***************************
 * スマホの場合にどうするかを記載するので接頭辞として、「sp_」を追加
 */
.sp_flex_col {
  /* flexアイテムの並び方向 */
  -webkit-box-orient: vertical;    /*--- Androidブラウザ 2つに分かれている ---*/
  -ms-flex-direction: column;    /*--- ie10 ---*/
  -webkit-flex-direction: column;    /*--- mac old safari ---*/
  flex-direction: column;
}
.sp_flex_col>* {
  width: 100%;
}
.sp_flex_row {
  /* flexible boxの使用宣言（box,flexbox,flex） */
  display: -webkit-box;    /*--- Androidブラウザ用 ---*/
  display: -ms-flexbox;    /*--- ie10 ---*/
  display: -webkit-flex;    /*--- mac old safari ---*/
  display: flex;
  /* flexアイテムの横方向の位置揃え */
  -webkit-box-pack: justify;    /*--- Androidブラウザ ---*/
  -ms-flex-pack: justify;    /*--- ie10 ---*/
  -webkit-justify-content: space-between;    /*--- mac old safari ---*/
  justify-content: space-between;
  /* flexアイテムの縦方向の整列 */
  -webkit-box-align: stretch;    /*--- Androidブラウザ ---*/
  -ms-flex-align: stretch;    /*--- ie10 ---*/
  -webkit-align-items: stretch;    /*--- mac old safari ---*/
  align-items: stretch;
  /* flexアイテムの並び方向 */
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;    /*--- Androidブラウザ 2つに分かれている ---*/
  -ms-flex-direction: row;    /*--- ie10 ---*/
  -webkit-flex-direction: row;    /*--- mac old safari ---*/
  flex-direction: row;
  /* flexアイテムを複数行にするかどうか */
    /* box仕様のbox-linesに当たるが、androidブラウザは未対応 */
    /* wrapさせたい場合はandroid4DefaultBrowser.cssにて対応すること */
  -ms-flex-wrap: nowrap;    /*--- ie10 ---*/
  -webkit-flex-wrap: nowrap;    /*--- mac old safari ---*/
  flex-wrap: nowrap;
}
.sp_flex_row>* {
  /**** flexible box関連指定 ****/
    /* flexアイテムの伸縮、アイテム幅の指定 */
  -webkit-box-flex: 0.1;    /*--- Androidブラウザ 要素がはみ出す場合があることへの対処 ---*/
  -ms-flex: 1 0 auto;    /*--- ie10 ---*/
  -webkit-flex: 1 0 auto;    /* mac old safari */
  flex: 0 1 auto;    /*--- flex-grow,flex-shrink,flex-basis ---*/
  /* 並び順の指定 */
  -webkit-box-ordinal-group: 1;    /*--- Androidブラウザ ---*/
  -ms-flex-order: 0;    /*--- ie10 ---*/
  -webkit-order: 0;    /*--- mac old safari ---*/
  order: 0;
}
}
/***************************
 ** 共通要素
 */
a {
  color: #007c92;
}
.btn01 {
  padding: 0.3em 4em;
  border-radius: 8px;
  background-color: #a69425;
  font-size: 250%;
  line-height: 1.2;
  color: #fff;
  text-decoration: none;
  margin: 4rem 0 4rem;
  display: inline-block;
  box-sizing: border-box;
}
.btn02 {
  color: #FFF;
  font-size: 162.5%;
  display: inline-block;
  background-color: #444;
  border: solid #444 2px;
  text-decoration: none;
  padding: 1.3rem 6em;
  position: relative;
  transition: all 0.5s ease;
  line-height: 1.2;
}
.btn02:hover {
  background-color: #fff;
  color: #444;
}
.btn03 {
  color: #FFF;
  font-size: 225%;
  font-weight: bold;
  display: inline-block;
  background-color: #444;
  border: solid #444 2px;
  text-decoration: none;
  padding: 1.8rem 2em;
  position: relative;
  transition: all 0.5s ease;
  line-height: 1.2;
}
.btn03:hover {
  background-color: #fff;
  color: #444;
}
.btn_box {
  text-align: center;
}
.txt_link01 {
  font-size: 175%;
  line-height: 1.5;
}
.txt_link02 {
  color: #007c92;
}
.only_sp {
  display: none;
}
  .only_big_sp{
    display: none;
  }
.ttl01 {
  font-size: 218.75%;
  line-height: 1.3;
  color: #fff;
  background-color: #007c92;
  text-align: center;
  padding: 1em 0;
  margin: 2rem 0;
}
.ttl02 {
  font-size: 200%;
  font-family: "游明朝", YuMincho, "Hiragino Mincho ProN", "Hiragino Mincho Pro", "ＭＳ 明朝", serif;
  line-height: 1.5;
  padding: 1rem 0;
}
.ttl02 .e01 {
  font-weight: bold;
  font-size: 112.5%;
  color: #007c92;
}
.ttl02 sup {
  font-size: 50%;
  vertical-align: top;
}
.with_icon_check {
  padding-left: 60px;
}
.with_icon_check::before {
  content: '';
  display: inline-block;
  margin-left: -60px;
  margin-right: 10px;
  background: url(../img/pc/icon_check.png) no-repeat center center;
  width: 50px;
  height: 51px;
}
.ttl03 {
  font-size: 437.5%;
  color: #fff;
  font-weight: bold;
  font-family: "游明朝", YuMincho, "Hiragino Mincho ProN", "Hiragino Mincho Pro", "ＭＳ 明朝", serif;
  text-align: center;
  line-height: 1.3;
}
.ttl03 .e01 {
  font-size: 105.7%;
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
}
.ttl03 sub {
  font-size: 42.86%;
  vertical-align: baseline;
}
.ttl04 {
  font-size: 162.5%;
  background-color: #f4efe4;
  line-height: 1.5;
  margin: 2rem 0;
  padding: 0.2em 0.5em;
}
.ttl05 {
  font-size: 450%;
  color: #444;
  text-align: center;
  font-weight: 700;
  font-family: "游明朝", YuMincho, "Hiragino Mincho ProN", "Hiragino Mincho Pro", "ＭＳ 明朝", serif;
  line-height: 1.2;
}
.ttl05 .e01 {
  display: block;
  font-size: 28.57%;
}
.ttl06 {
  font-family: "游明朝", YuMincho, "Hiragino Mincho ProN", "Hiragino Mincho Pro", "ＭＳ 明朝", serif;
  font-size: 125%;
  color: #444;
  line-height: 1.3;
}
.ttl07 {
  font-family: "游明朝", YuMincho, "Hiragino Mincho ProN", "Hiragino Mincho Pro", "ＭＳ 明朝", serif;
  font-size: 237.5%;
  color: #444;
  text-align: center;
  line-height: 1.5;
}
.ttl08 {
  padding: 0 1rem;
  font-family: "游明朝", YuMincho, "Hiragino Mincho ProN", "Hiragino Mincho Pro", "ＭＳ 明朝", serif;
  font-size: 150%;
  font-weight: bold;
}
.ttl09 {
  font-size: 156.25%;
  margin-top: 1.5rem;
  padding: 1rem 0;
  color: #444;
  font-weight: bold;
  text-align: center;
  line-height: 1.5;
}
.ttl10 {
  font-weight: bold;
  color: #444;
}
.description01 {
  font-size: 150%;
  line-height: 2;
  text-align: center;
}
.emp01 {
  font-size: 125%;
  border-bottom: #fff799 16px solid;
  line-height: 0.2;
  display: inline-block;
}
.emp02 {
  font-size: 115%;
  font-weight: bold;
}
.emp03 {
  font-weight: bold;
}
.box01 {
  border: 1px #c6ae77 solid;
  border-radius: 10px;
  padding: 0.1em 0.5em;
}
.box01 a {
  text-decoration: none;
  color: #000;
}
.box02 {
  background-color: #efe9d3;
  border-radius: 10px;
  font-weight: bold;
  text-align: center;
  color: #836b35;
}
.box03 {
  background-color: #efe9d3;
  border-radius: 10px;
  font-weight: bold;
  text-align: center;
  color: #836b35;
  border: #c6ae77 1px solid;
}
.box03 a {
  color: #836b35;
}
.masonry01 {
  -ms-flex-wrap: wrap;    /*--- ie10 ---*/
  -webkit-flex-wrap: wrap;    /*--- mac old safari ---*/
  flex-wrap: wrap;
}
.masonry01>* {
  width: 33%;
  height: 3.5em;
  /* flexible boxの使用宣言（box,flexbox,flex） */
  display: -webkit-box;    /*--- Androidブラウザ用 ---*/
  display: -ms-flexbox;    /*--- ie10 ---*/
  display: -webkit-flex;    /*--- mac old safari ---*/
  display: flex;
  /* flexアイテムの横方向の位置揃え */
  -webkit-box-pack: center;    /*--- Androidブラウザ ---*/
  -ms-flex-pack: center;    /*--- ie10 ---*/
  -webkit-justify-content: center;    /*--- mac old safari ---*/
  justify-content: center;
  /* flexアイテムの縦方向の整列 */
  -webkit-box-align: center;    /*--- Androidブラウザ ---*/
  -ms-flex-align: center;    /*--- ie10 ---*/
  -webkit-align-items: center;    /*--- mac old safari ---*/
  align-items: center;
  margin-bottom: 10px;
}
.note01 {
  font-size: 87.5%;
}
.img_box {
  text-align: center;
}

@media screen and (max-width: 1000px) {
.ttl03 {
  font-size: 350%;
}
}

@media screen and (max-width: 736px) {
.only_sp {
  display: block;
}
  .only_big_sp{
    display: block;
  }
.only_pc {
  display: none;
}
.btn01 {
  padding: 0.3em 3em;
  display: block;
  background-color: #ff0000;
  font-size: 150%;
  margin: 2rem 1rem 2rem;
}
.btn02 {
  color: #FFF;
  font-size: 100%;
  display: inline-block;
  background-color: #444;
  padding: 1.3rem 2em;
}
.btn03 {
  font-size: 100%;
  padding: 1.8rem 2em;
}
.txt_link01 {
  font-size: 100%;
  line-height: 1.5;
}
.ttl01 {
  font-size: 130%;
  line-height: 1.3;
  color: #fff;
  background-color: #007c92;
  text-align: center;
  padding: 0.5em 0;
  margin-bottom: 1rem;
}
.description01 {
  font-size: 80%;
  line-height: 2;
  text-align: center;
}
.emp02 {
  font-size: 100%;
}
.ttl02 {
  font-size: 125%;
}
.ttl03 {
  font-size: 160%;
}
.ttl04 {
  font-size: 120%;
  margin: 1rem 0;
}
.ttl05 {
  font-size: 300%;
}
.ttl05 .e01 {
  display: block;
  font-size: 28.57%;
}
.ttl07 {
  font-size: 100%;
}
.ttl09 {
  font-size: 100%;
}
.with_icon_check {
  padding-left: 30px;
}
.with_icon_check::before {
  margin-left: -30px;
  margin-right: 5px;
  background-size: contain;
  width: 25px;
  height: 25px;
}
.only_small_sp {
  display: none;
}
}

@media screen and (max-width: 350px) {
.only_small_sp {
  display: block;
}
  .only_big_sp{
    display: none;
  }
}
/***************************
 ** header
 */
header {
  padding: 0.5rem 0;
}
header .sns_area .flex_row {
  /* flexアイテムの横方向の位置揃え */
  -webkit-box-pack: end;    /*--- Androidブラウザ ---*/
  -ms-flex-pack: end;    /*--- ie10 ---*/
  -webkit-justify-content: flex-end;    /*--- mac old safari ---*/
  justify-content: flex-end;
}
header .sns_area {
  margin: 0.5rem 0;
}
header .sns_area .flex_row li {
  margin: 0 0.2rem;
}
header .site_description {
  font-size: 81.25%;
  line-height: 1.2;
}

@media screen and (max-width: 736px) {
header .site_id {
  width: 35%;
}
header .desc {
  font-size: 80%;
  width: 60%;
}
}
/***************************
 ** #main
 */
main {
  display: block;/* for ie10 */
}
/***************************
 ** .fv
 */
.fv {
  text-align: center;
}
.fv .kv {
  background: url(../img/pc/fv_bg.jpg) center top no-repeat;
  padding: 1rem 0;
  margin: 0 0 2rem;
}
.fv .heading01 {
  font-size: 250%;
  color: #c6ae77;
  font-weight: bold;
  line-height: 1.3;
  display: inline-block;
  margin-bottom: -1.5rem
}
.fv .heading01>.note01 {
  display: block;
  text-align: right;
  font-weight: normal;
  font-size: 50%;
}
.fv .heading02 {
  font-size: 175%;
  line-height: 1.5;
  margin-bottom: 1rem;
}
.fv .box01 {
  display: inline-block;
}
.fv .btn01 {
  margin-top: 1.5rem;
}

@media screen and (max-width: 736px) {
.fv .kv {
  background: url(../img/sp/fv_bg.jpg) center top no-repeat;
  background-size: cover;
}
.fv .kv img {
  max-width: 70%;
}
.fv .heading01 {
  font-size: 130%;
  margin: 0 0.5rem;
}
.fv .heading02 {
  font-size: 100%;
}
}
/***************************
 ** .sec01
 */
.sec01 .description01 {
  margin-bottom: 2rem;
}
.sec01 .box02 {
  font-size: 150%;
  line-height: 1.3;
}
.sec01 .block01 {
  height: 400px;
}
.sec01 .block01.ptn01 {
  background: url(../img/pc/sec01_bg01.jpg) center top;
}
.sec01 .block01.ptn02 {
  background: url(../img/pc/sec01_bg02.jpg) center top;
}
.sec01 .block01.ptn03 {
  background: url(../img/pc/sec01_bg03.jpg) center top;
}
.sec01 .block01.ptn04 {
  background: url(../img/pc/sec01_bg04.jpg) center top;
}
.sec01 .block01.type01 .wrapper>* {
  width: 45%;
  margin-left: 55%;
}
.sec01 .block01.type02 .wrapper>* {
  width: 45%;
  margin-right: 55%;
}
.sec01 .block01 .heading03 {
  padding: 2rem 0;
}
.sec01 .block01 .wrapper {
  padding-bottom: 2rem;
}
.sec01 .link_box {
  text-align: center;
  margin: 1rem 0;
}
.sec01 .btn01 {
  margin-top: 2rem;
}
.sec01 .example01 {
  background-color: #89c3eb;
  padding: 2rem 0 2rem;
}
.sec01 .example01 .ttl03 {
  position: relative;
}
.sec01 .example01 .ttl03 .prefix {
  display: inline-block;
  margin: -1em 0 0 -2em;
  font-size: 48.57%;
  vertical-align: middle;
  background: url(../img/pc/sec01_bg05.png) center center no-repeat;
  background-size: contain;
  height: 103px;
  width: 163px;
  line-height: 100px;
}
.sec01 .example01 .example_items {
  margin: 2rem 1rem;
  box-sizing: border-box;
}
.sec01 .example01 .heading04 {
  text-align: center;
}
.sec01 .example01 .heading05 {
  background-color: #fff;
  border-radius: 10px;
  font-size: 125%;
  text-align: center;
  padding: 0.5rem 0;
  line-height: 1.5;
  position: relative;
  margin-bottom: 20px;
}
.sec01 .example01 .heading05::after {
  content: '';
  position: absolute;
  bottom: -20px;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 0;
  height: 0;
  border-right: 12px solid transparent;
  border-top: 20px solid #FFFFFF;
  border-left: 12px solid transparent;
}
.sec01 .example01 .heading05 .case {
  display: block;
  color: #007c92;
}
.sec01 .example01 .desc {
  color: #fff;
}
.sec01 .example01 .price {
  display: table;
  width: 100%;
}
.sec01 .example01 .price>* {
  display: table-cell;
}
.sec01 .example01 .price dt {
  text-align: left;
  color: #fff;
}
.sec01 .example01 .price dd {
  text-align: right;
  font-weight: bold;
  color: #ffff66;
}
.sec01 .example01 .price .num {
  font-size: 150%;
}
.sec01 .img_box.ptn01 {
  margin-top: -0.5rem;
  margin-bottom: 1rem;
}
.sec01 .more {
  text-align: center;
}
.sec01 .more .heading01 {
  font-family: "游明朝", YuMincho, "Hiragino Mincho ProN", "Hiragino Mincho Pro", "ＭＳ 明朝", serif;
  color: #fff;
  font-size: 312.5%;
  font-weight: bold;
  position: relative;
  z-index: 1;
  line-height: 1;
  margin-top: -0.5em;
  margin-bottom: 4rem;
}
.sec01 .more .heading01::before {
  position: absolute;
  z-index: -1;
  content: '';
  left: 0;
  right: 0;
  width: 0;
  height: 0;
  bottom: -0.9em;
  margin: 0 auto;
  border-right: 4em solid transparent;
  border-top: 2em solid #65c0bb;
  border-left: 4em solid transparent;
}

@media screen and (max-width: 1000px) {
.sec01 .example01 .ttl03 .prefix {
  margin: 0;
}
.sec01 .example01 .example_items .item {
  margin: 0 0.1rem;
  box-sizing: border-box;
}
}

@media screen and (max-width: 736px) {
.sec01 .box02 {
  font-size: 80%;
  line-height: 1.3;
}
.sec01 .block01 .heading03 {
  padding: 1rem 0;
}
.sec01 .block01.type01 .wrapper>* {
  width: 100%;
  margin-left: 0;
}
.sec01 .block01.type02 .wrapper>* {
  width: 100%;
  margin-right: 0;
}
.sec01 .block01 {
  height: auto;
}
.sec01 .block01.ptn01 {
  background: none;
}
.sec01 .block01.ptn02 {
  background: none;
}
.sec01 .block01.ptn03 {
  background: none;
}
.sec01 .block01.ptn04 {
  background: none;
}
.sec01 .example01 {
  padding: 1rem 0 0.5rem;
}
.sec01 .example01 .ttl03 .prefix {
  height: 51px;
  width: 81px;
  line-height: 51px;
}
.sec01 .example01 .heading05 {
  font-size: 78%;
}
.sec01 .example01 .example_items {
  margin: 1rem 0;
}
.sec01 .example01 .desc {
  font-size: 78%;
  line-height: 1.3;
}
.sec01 .example01 .price {
  display: block;
  width: 100%;
}
.sec01 .example01 .price>* {
  display: block;
}
.sec01 .example01 .price dt {
  text-align: left;
  color: #fff;
  font-size: 78%;
  line-height: 1.3;
}
.sec01 .example01 .price dd {
  text-align: left;
  font-weight: bold;
  color: #ffff66;
  font-size: 78%;
  line-height: 1.3;
}
.sec01 .example01 .price .num {
  font-size: 100%;
}
.sec01 .example01 .price .unit {
  font-size: 100%;
}
.sec01 .more .heading01 {
  font-size: 120%;
  margin-bottom: 2rem;
}
}
/***************************
 ** .sec02
 */
.sec02 .masonry01>* {
  width: 24%;
}
.sec02 .masonry01 {
  margin-bottom: 1rem;
}
.sec02 .img_box {
  text-align: center;
}
.sec02 .btn01 {
  margin-bottom: 3rem;
}

@media screen and (max-width: 736px) {
.sec02 .masonry01>* {
  width: 32%;
  font-size: 80%;
  line-height: 1.3;
}
.sec02 .btn01 {
  margin-bottom: 2rem;
}
}
/***************************
 ** .sec03
 */
.sec03 .masonry01>* {
  width: 24%;
}

@media screen and (max-width: 736px) {
.sec03 .masonry01>* {
  width: 32%;
  font-size: 80%;
  line-height: 1.3;
  margin-right: 1%;
}
.sec03 .masonry01>*:nth-child(3n) {
  margin-right: 0;
}
.sec03 .masonry01 {
  /* flexアイテムの横方向の位置揃え */
  -webkit-box-pack: start;    /*--- Androidブラウザ ---*/
  -ms-flex-pack: start;    /*--- ie10 ---*/
  -webkit-justify-content: flex-start;    /*--- mac old safari ---*/
  justify-content: flex-start;
}
}
/***************************
 ** .sec04
 */
.sec04 .flex_row {
  margin: 0 0 2rem;
}
.sec04 .flex_row>* {
  width: 50%;
  max-width: 480px;
}
.sec04 .flex_row .block01 p {
  margin: 0 0 2rem 3.5rem;
}
.sec04 .flex_row .block01 .heading01 {
  margin-bottom: 2rem;
}
.sec04 .btn01 {
  margin-top: 2rem;
  margin-bottom: 3rem;
}

@media screen and (max-width: 1000px) {
.sec04 .flex_row>* {
  width: 48%;
}
.sec04 .flex_row .block01 {
  padding: 0 0.5rem;
}
.sec04 .btn01 {
  margin-top: 2rem;
  margin-bottom: 2rem;
}
}

@media screen and (max-width: 736px) {
.sec04 .flex_row>* {
  width: 100%;
  max-width: initial;
  box-sizing: border-box;
}
.sec04 .flex_row {
  margin-bottom: 0.5rem;
}
.sec04 .flex_row .block01 .heading01 {
  margin-bottom: 0.5rem;
}
.sec04 .flex_row .block01 p {
  margin-bottom: 1rem;
}
}
/***************************
 ** .sec05
 */
.sec05 p, .sec05 table {
  font-size: 125%;
  line-height: 1.5;
  margin: 1rem 0;
}
.sec05 .flow {
  /* flexアイテムの横方向の位置揃え */
  -webkit-box-pack: center;    /*--- Androidブラウザ ---*/
  -ms-flex-pack: center;    /*--- ie10 ---*/
  -webkit-justify-content: center;    /*--- mac old safari ---*/
  justify-content: center;
  margin-bottom: 2rem;
}
.sec05 .flow .step {
  position: relative;
  padding-left: 50px;
}
.sec05 .flow .step::after {
  content: '';
  display: block;
  position: absolute;
  bottom: 0;
  left: 100%;
  margin-left: 20px;
  background: url(../img/pc/arrow.gif) center center no-repeat;
  width: 15px;
  height: 62px;
}
.sec05 .flow .step:last-child::after {
  display: none;
}
.sec05 .flow .name {
  margin: 1rem 0 0;
  text-align: center;
  font-size: 150%;
  font-family: "游明朝", YuMincho, "Hiragino Mincho ProN", "Hiragino Mincho Pro", "ＭＳ 明朝", serif;
}
.sec05 .flow_tbl th.ptn01 {
  background-color: #eeeeee;
}
.sec05 .flow_tbl th.ptn02 {
  background-color: #f4efe4;
}
.sec05 .flow_tbl th.ptn03 {
  background-color: #caefed;
}
.sec05 .flow_tbl {
  border-collapse: separate;
  border-spacing: 0.4rem 0.4rem;
}
.sec05 .flow_tbl th {
  width: 6em;
}
.sec05 .flow_tbl th, .sec05 .flow_tbl td {
  padding: 0.2rem 0.4rem;
}
.sec05 .img_box.ptn01 {
  float: right;
  margin: 0 0 1rem 1rem;
}
.sec05::after {
  display: table;
  content: '';
  clear: both;
}

@media screen and (max-width: 736px) {
.sec05 p, .sec05 table {
  font-size: 100%;
  line-height: 1.5;
  margin: 1rem 0;
}
.sec05 .flow {
  margin-bottom: 1rem;
}
.sec05 .flow .step {
  padding-left: 0;
  padding-bottom: 30px;
}
.sec05 .flow .step>.img_box {
  width: 30%;
  padding: 0 5%;
  box-sizing: border-box;
}
.sec05 .flow .step>.name {
  width: 60%;
  text-align: left;
  margin: 2rem 0;
}
.sec05 .flow .step::after {
  content: '';
  display: block;
  position: absolute;
  bottom: 15px;
  left: 0;
  right: 0;
  margin: 0 auto;
  background: url(../img/sp/arrow_sp.gif) center center no-repeat;
  width: 62px;
  height: 15px;
}
.sec05 .flow_tbl {
  border-spacing: 0.1rem 0.1rem;
}
.sec05 .flow_tbl th {
  width: 4em;
}
.sec05 .flow_tbl .price {
  width: 5em;
}
.sec05 .img_box.ptn01 {
  float: none;
  margin: 0;
}
}
/***************************
 ** .faq
 */
.qa .qa_box {
  padding-top: 120px;
}
.qa .qa_box .qa_item {
  border: solid #444 4px;
  width: 32%;
  padding: 0.5rem;
  box-sizing: border-box;
}
.qa .qa_box .qa_item .img_box {
  margin-top: -120px;
}
.qa .qa_box .q_item {
  margin-top: 60px;
  position: relative;
  border-top: 2px #444 solid;
  padding: 0.5rem 0;
  min-height: 3em;
  box-sizing: content-box;
}
.qa .qa_box .q_item::before {
  content: '';
  display: block;
  position: absolute;
  top: -60px;
  height: 51px;
  width: 123px;
  background: url(../img/pc/q.gif) left top no-repeat;
}
.qa .qa_box .a_item {
  position: relative;
  margin-top: 60px;
  font-size: 87.5%;
  color: #444;
}
.qa .qa_box .a_item::before {
  content: '';
  display: block;
  position: absolute;
  top: -60px;
  height: 43px;
  width: 123px;
  background: url(../img/pc/a.gif) left top no-repeat;
}
.qa .btn_box {
  margin: 2rem 0;
  text-align: center;
}

@media screen and (max-width: 736px) {
.qa .qa_box .qa_item {
  width: 100%;
  margin-bottom: 120px;
}
.qa .qa_box .qa_item:last-child {
  margin-bottom: 1rem;
}
.qa .qa_box .q_item {
  min-height: initial;
}
}
/***************************
 ** .plan
 */
.plan_box {
  border: solid #444 2px;
  text-align: center;
  color: #444;
  margin: 3rem 0;
  position: relative;
  padding: 4rem 0 3rem;
}
.plan_box .ttl08 {
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  top: -0.5em;
  background-color: #fff;
  width: 8em;
}
.membership {
  width: 33%;
  padding: 1rem;
  box-sizing: border-box;
}
.membership .name01 {
  border-top: 4px #444 solid;
  ;
}
.membership .name01 img {
  margin-top: -25px;
}
.membership .name02, .membership .price {
  font-family: "游明朝", YuMincho, "Hiragino Mincho ProN", "Hiragino Mincho Pro", "ＭＳ 明朝", serif;
  font-size: 150%;
  font-weight: bold;
  text-align: center;
  margin: 0 0 15px;
  line-height: 1.5;
}
.membership.ptn01 .name02, .membership.ptn01 .price {
  color: #AFAFAF;
}
.membership.ptn01 .price {
  border-color: #AFAFAF;
}
.membership.ptn02 .name02, .membership.ptn02 .price {
  color: #C7AF73;
}
.membership.ptn02 .price {
  border-color: #C7AF73;
}
.membership.ptn03 .name02 .membership.ptn03 .price {
  color: #0F0F0F;
}
.membership.ptn03 .price {
  border-color: #0F0F0F;
}
.membership .price {
  border: solid #0F0F0F 1px;
  padding: 0.3rem;
}
.membership .desc01 {
  margin-bottom: 1rem;
}
.membership .desc02 {
  border-bottom: solid #444 3px;
  background: #F6F6F6;
  padding: 20px 30px;
  font-size: 112.5%;
}

@media screen and (max-width: 736px) {
.membership {
  width: 100%;
  margin: 0 0 1rem;
}
.plan_box {
  padding: 2rem 0 1rem;
}
.membership .desc02 {
  padding: 20px 10px;
}
}
/***************************
 ** .cv
 */
.cv {
  text-align: center;
  background-color: #FAFDF7;
  padding: 2rem 0;
}

@media screen and (max-width: 736px) {
.cv {
  padding: 1rem 0;
}
}
/***************************
 ** .media_link_box
 */
.media_link_box .media_link_item {
  display: inline-block;
  margin: 0.5rem 0.2rem;
}

@media screen and (max-width: 736px) {
.media_link_box .media_link_item {
  max-width: 30%;
  margin: 2% 1%;
}
}
/***************************
 ** #footer
 */
footer {
  border-top: 3px solid #444444;
  text-align: center;
  padding-top: 3rem;
  color: #444;
}
footer a {
  color: #444;
}
footer .ttl10 {
  margin: 1rem 0;
}
footer .link_box {
  margin: 1.5rem 0;
}
footer .sns_area .flex_row {
  margin: 1rem 0;
  /* flexアイテムの横方向の位置揃え */
  -webkit-box-pack: center;    /*--- Androidブラウザ ---*/
  -ms-flex-pack: center;    /*--- ie10 ---*/
  -webkit-justify-content: center;    /*--- mac old safari ---*/
  justify-content: center;
}
footer .sns_area .flex_row>* {
  margin: 0 0.2rem;
}
footer .footer_nav {
  border-top: #444 solid 1px;
  border-bottom: #444 solid 1px;
  padding: 1.3rem 0;
}
footer .footer_nav li {
  display: inline;
  padding: 0 0.8rem;
  ;
  border-right: solid #444 1px;
}
footer .footer_nav li:last-child {
  border-right: none;
}
footer .footer_nav02 {
  padding: 1.3rem 0;
  font-size: 87.5%;
}
footer .footer_nav02 li {
  display: inline;
  padding: 0 0.5rem;
}
footer .copyright {
  font-size: 75%;
}

@media screen and (max-width: 736px) {
footer {
  padding-top: 1rem;
}
}
/***************************
 ** #rev_top
 */
.rev_top {
  position: fixed;
  width: 10%;
  max-width: 60px;
  bottom: 20px;
  right: 20px;
  text-decoration: none;
}
