@charset "utf-8";
/* CSS Document */

@import url("header.css");
@import url("option.css");
@import url("modaal.css");

/*----------------------------------------
  コンテンツ共通
----------------------------------------*/

body {
  position: relative;
  overflow-x: hidden;
}

figcaption {
  margin-top: 10px;
  line-height: 1.2;
  font-size: 0.9em;
  text-align: center;
}

/* テキスト関連 */
.textCenter {
  text-align: center !important;
}
.textLeft {
  text-align: left !important;
}
.textRight {
  text-align: right !important;
}
.textLarge {
  font-size: 1.5em;
}
.textSmall {
  font-size: 0.85em;
}
.textSmall02 {
  font-size: 0.7em;
}
.bold {
  font-weight: bold;
}
.normal {
  font-weight: normal;
}
.mincho {
  font-family: '源ノ明朝', '游明朝 Regular', 'source-han-serif-japanese', "Sawarabi Mincho", serif!important;
}
.underline {
  text-decoration: underline;
}
.word-break-all {
  word-break: break-all;
}
.vertical-top {
  vertical-align: top;
}
.lh-narrow {
  line-height: 1.4;
}

/* 文字色 */
.color-red {
  color: #e60012;
}
.color-black {
  color: #333;
}
.color-gray {
  color: #8a8a8a;
}
.color-white {
  color: #FFF;
}
.color-navy {
  color: #161b3f;
}
.color-orange {
  color: #fc674b;
}
.color-green{
  color: #1DAA70;
}

.color-grd-orange {
  font-weight: bold;
  display: inline-block;
  background: -webkit-linear-gradient(left,#f28e26 40%,#fd644f);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
}

.color-grd-green{
  font-weight: bold;
  display: inline-block;
  background: -webkit-linear-gradient(left,#2fb383 34%,#18a86b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
}

.color-grd-gold{
  font-weight: bold;
  display: inline-block;
  background: -webkit-linear-gradient(left,#e0ce8f,#ece6bc,#e0ce8f,#ece6bc,#e0ce8f);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
}

/* 背景色 */

.bg-white {
  background: #FFF;
}
.bg-gray {
  background: #f2f2f2;
}
.bg-navy {
  background: #161b3f;
}
.bg-orange {
  background: #fd644f;
}
.bg-shadow {
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}
.bg-shadow2 {
  box-shadow: 0 0px 20px rgba(135, 135, 135, 0.3);
}
.bg-shadow3 {
  box-shadow: 3px 7px 14px rgba(45, 178, 129, 0.4);
}
.bg-shadow4 {
  box-shadow: 3px 7px 14px rgba(255, 105, 0, 0.4);
}
.bg-grd-orange {
  background: linear-gradient(to left,#f28e26,#fd644f);
  background: -moz-linear-gradient(left, #f28e26, #fd644f);
  background: -webkit-linear-gradient(left, #f28e26, #fd644f);
}
.bg-grd-green {
  background: linear-gradient(to left,#2fb383,#18a86b);
  background: -moz-linear-gradient(left, #2fb383,#18a86b);
  background: -webkit-linear-gradient(left,#2fb383,#18a86b);
}

/* ボーダー */
.border {
  border: solid 1px #DDD;
}
.border-bottom {
  border-bottom: solid 1px #DDD;
}
.border-top {
  border-top: solid 1px #DDD;
}
.br30px {
  border-radius: 30px;
}
.br15px {
  border-radius: 15px;
}

.l-secCont__box.dummy {
  background: #f5f5f5;
  padding: 2em;
}
.l-secCont__box.dummy p {
  color: #999;
}

.textCut {
  display: inline-block;
  padding: 2px 7px;
}
.textCut p {
  color: #fff;
}

.bg-red.textCut {
  background: #e60012;
}
.bg-green02.textCut {
  background: #00a381;
}
.bg-pink02.textCut {
  background: #e597b2;
}

/* 横幅 */
.w100 {
  width: 100% !important;
}
.w50 {
  width: 50% !important;
}

/* その他 */
.block {
  display: block !important;
}
.inline-block {
  display: inline-block;
}
.jc-center {
  justify-content: center;
}
.display-none {
  display: none !important;
}


@media print,
screen and (min-width: 769px) {
  body {
    min-width: 1200px;
  }
  .sp {
    display: none;
  }
  .textMid {
    font-size: 1.2em;
  }
  a[href^="tel:"] {
    pointer-events: none;
    color: inherit !important;
    text-decoration: none !important;
  }
  .jc-center-pc {
    justify-content: center;
  }
  .w-auto-pc {
    width: auto !important;
  }
  .textSmall-pc {
    font-size: 0.9em;
  }
  .inline-block-pc {
    display: inline-block;
  }
}

@media screen and (max-width:768px) {
  .pc {
    display: none;
  }
  .textLarge {
    font-size: 1.3em;
  }
  .textLeft-sp {
    text-align: left !important;
  }
  .textCenter-sp {
    text-align: center !important;
  }
  .textMid {
    font-size: 1.15em;
  }
  img.border-radius {
    border-radius: 8px;
  }
  .w50-sp {
    width: 50% !important;
    margin: 0 auto;
  }
  .w-auto-sp {
    width: auto !important;
  }
  .textSmall-sp {
    font-size: 0.9em;
  }
  .inline-block-sp {
    display: inline-block;
  }
}

/*----------------------------------------
  Layout
----------------------------------------*/
.l-secCont {
  width: 100%;
  margin-bottom: 100px;
  overflow-x: hidden;
  overflow-y: hidden;
}
.l-secCont__box {
  margin-bottom: 60px;
}
.l-inner {
  position: relative;
  z-index: 1;
  width: 98%;
  margin: auto;
  max-width: 1200px;
}
.l-secCont:last-of-type,
.l-secCont__box:last-of-type,
.l-secCont__box__box:last-of-type {
  margin-bottom: 0;
}
.l-secCont ul li {
  margin-bottom: 0.5em;
}
.l-secCont ul li:last-child {
  margin-bottom: 0;
}
.l-secCont li {
  margin-bottom: 0.5em;
}
@media screen and (max-width:768px){
  .l-secCont {
    margin-bottom: 45px;
  }
  .l-secCont__box {
    margin-bottom: 30px;
  }
}
/*padding*/
.pd5 {
  padding: 5px;
}
.pd10 {
  padding: 10px;
}
.pd15 {
  padding: 15px;
}
.pd20 {
  padding: 20px !important;
}
.pd30 {
  padding: 30px;
}

@media screen and (min-width:769px) {
  .pd10-pc {
    padding: 10px;
  }
  .pd15-pc {
    padding: 15px;
  }
  .pd20-pc {
    padding: 20px;
  }
  .pd30-pc {
    padding: 30px;
  }
}

@media screen and (max-width:768px) {
  .pd0-sp {
    padding: 0;
  }
  .pd10-sp {
    padding: 10px;
  }
  .pd15-sp {
    padding: 15px;
  }
  .pd20-sp {
    padding: 20px;
  }
  .pd30-sp {
    padding: 30px;
  }
}


/* カラム */
.l-colWrap {
  display: flex;
  flex-wrap: wrap;
}
.l-colWrap.align-end {
  align-items: end;
}
.l-colWrap.align-center {
  align-items: center;
}
.l-colWrap .col-item {
  position: relative;
}
.l-colWrap .col-item figure img {
  width: 100%;
}

/*flexアイテム下寄せ*/
.l-colWrap.end {
  align-items: flex-end;
}

/*画像+テキスト*/
.l-flexBox {
  display: flex;
  flex-wrap: wrap;
}

/*アイテムを上下中央寄せにしたいとき*/
.l-flexBox.align-center {
  align-items: center;
}

/*アイテムをベースラインに合わせたいとき*/
.l-flexBox.align-base {
  align-items: baseline;
}

/*アイテムを下寄せにしたいとき*/
.l-flexBox.flex-end {
  align-items: flex-end;
}

/*4:6*/
.l-flexBox.ratio4-6 .l-flexBox__imgSpc,
.l-flexBox.ratio4-6 .l-flexBox__spc01 {
  width: 40%;
}

.l-flexBox.ratio4-6 .l-flexBox__textSpc,
.l-flexBox.ratio4-6 .l-flexBox__spc02 {
  width: 60%;
}

/*5:5*/
.l-flexBox.ratio5-5 {
  justify-content: space-between;
}
.l-flexBox.ratio5-5 .l-flexBox__imgSpc,
.l-flexBox.ratio5-5 .l-flexBox__spc01,
.l-flexBox.ratio5-5 .l-flexBox__textSpc,
.l-flexBox.ratio5-5 .l-flexBox__spc02 {
  width: 48%;
}
.l-flexBox.ratio5-5 .l-flexBox__textSpc,
.l-flexBox.ratio5-5 .l-flexBox__spc02 {
  padding-left: 0;
}

/*3:7*/
.l-flexBox.ratio3-7 .l-flexBox__imgSpc,
.l-flexBox.ratio3-7 .l-flexBox__spc01 {
  width: 30%;
}
.l-flexBox.ratio3-7 .l-flexBox__textSpc,
.l-flexBox.ratio3-7 .l-flexBox__spc02 {
  width: 70%;
}

/*2:8*/
.l-flexBox.ratio2-8 .l-flexBox__imgSpc,
.l-flexBox.ratio2-8 .l-flexBox__spc01 {
  width: 20%;
}
.l-flexBox.ratio2-8 .l-flexBox__textSpc,
.l-flexBox.ratio2-8 .l-flexBox__spc02 {
  width: 80%;
}

/*1:9*/
.l-flexBox.ratio1-9 .l-flexBox__imgSpc,
.l-flexBox.ratio1-9 .l-flexBox__spc01 {
  width: 10%;
}
.l-flexBox.ratio1-9 .l-flexBox__textSpc,
.l-flexBox.ratio1-9 .l-flexBox__spc02 {
  width: 90%;
}

/*7:3*/
.l-flexBox.ratio7-3 .l-flexBox__imgSpc,
.l-flexBox.ratio7-3 .l-flexBox__spc01 {
  width: 70%;
}
.l-flexBox.ratio7-3 .l-flexBox__textSpc,
.l-flexBox.ratio7-3 .l-flexBox__spc02 {
  width: 30%;
}

/*8:2*/
.l-flexBox.ratio8-2 .l-flexBox__imgSpc,
.l-flexBox.ratio8-2 .l-flexBox__spc01 {
  width: 80%;
}
.l-flexBox.ratio8-2 .l-flexBox__textSpc,
.l-flexBox.ratio8-2 .l-flexBox__spc02 {
  width: 20%;
}

/*6:4*/
.l-flexBox.ratio6-4 .l-flexBox__imgSpc,
.l-flexBox.ratio6-4 .l-flexBox__spc01 {
  width: 60%;
}
.l-flexBox.ratio6-4 .l-flexBox__textSpc,
.l-flexBox.ratio6-4 .l-flexBox__spc02 {
  width: 40%;
}
/*3:5*/
.l-flexBox.ratio3-5 .l-flexBox__imgSpc{
  width: 30%;
}
.l-flexBox.ratio3-5 .l-flexBox__textSpc{
  width: 50%;
}

@media print,screen and (min-width: 1231px) {
  .l-mainContainer main {
    width: 900px;
  }
}

@media print,screen and (max-width: 1230px) {
  .l-inner,
  .l-mainContainer {
    padding: 0 15px;
  }
  .l-mainContainer main {
    width: 870px;
    margin-right: 50px;
  }
}

@media print,screen and (min-width: 769px) {
  .l-mainContainer {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    margin-top: 50px;
  }
  .l-mainContainer.max100 {
    max-width: 100%;
  }
  .l-mainContainer main {
    margin-right: 50px;
  }
  .l-mainContainer.page-col-1 main {
    width: 100%;
    margin: 0;
  }
  .l-inner {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
  }
  .l-inner.small {
    max-width: 1000px;
  }
  .l-secCont__box,
  .l-secCont__box__box {
    margin-bottom: 50px;
  }
  .l-secCont .l-colWrap.size-small .c-item-vis__ttl {
    font-size: 14px;
  }
  .l-secCont .l-colWrap.size-small .col-item p {
    font-size: 14px;
  }

  /* カラム */
  .l-colWrap .col-item {
    margin-bottom: 50px;
  }
  .l-colWrap.item2 .col-item {
    width: 49%;
    margin-right: 2%;
  }
  .l-colWrap.item3 .col-item {
    width: 32%;
    margin-right: 2%;
  }
  .l-colWrap.item4 .col-item {
    width: 23.5%;
    margin-right: 2%;
  }
  .l-colWrap.item5 .col-item {
    width: 18.4%;
    margin-right: 2%;
  }
  .l-colWrap.item6 .col-item {
    width: 15%;
    margin-right: 2%;
  }
  .l-colWrap.item7 .col-item {
    width: 12.5%;
    margin-right: 2%;
  }
  .l-colWrap.item2 .col-item:nth-child(2n),
  .l-colWrap.item3 .col-item:nth-child(3n),
  .l-colWrap.item4 .col-item:nth-child(4n),
  .l-colWrap.item5 .col-item:nth-child(5n),
  .l-colWrap.item6 .col-item:nth-child(6n),
  .l-colWrap.item7 .col-item:nth-child(7n),
  .l-colWrap .col-item:last-child {
    margin-right: 0;
  }

  /*カラムの片方がテキスト*/
  .l-colWrap.item2 .col-item.col-item__text {
    height: 100%;
  }

  /* .l-floatBox */
  .l-floatBox__imgSpc {
    float: right;
    width: 30%;
    margin: 0 0 30px 30px;
  }
  .l-floatBox.reverse .l-floatBox__imgSpc {
    float: left;
    margin: 0 30px 30px 0;
  }

  /*画像+テキスト*/
  .l-flexBox .l-flexBox__textSpc,
  .l-flexBox .l-flexBox__spc02 {
    padding-left: 2em;
  }
  .l-flexBox.reverse .l-flexBox__textSpc,
  .l-flexBox.reverse .l-flexBox__spc02 {
    padding-left: 0;
    padding-right: 2em;
  }
  .l-flexBox.reverse .l-flexBox__imgSpc,
  .l-flexBox.reverse .l-flexBox__spc02 {
    order: 2;
  }
  .l-flexBox .l-flexBox__imgSpc img {
    width: 100%;
  }
}

@media screen and (max-width:768px) {
  .l-mainContainer {
    padding: 0 15px 0;
  }
  .l-mainContainer main {
    width: 100%;
    margin-right: 0;
  }
  .l-mainContainer .l-inner {
    padding: 0;
  }
  .l-mainContainer.page-col-1.max100 {
    padding: 0;
  }
  .l-inner {
    padding: 0 15px;
  }
  .l-mainContainer.page-col-1 .l-inner {
    padding: 0;
  }
  .l-mainContainer.page-col-1.max100 .l-inner {
    padding: 15px;
  }
  .l-secCont,
  .l-secCont__box,
  .l-secCont__box__box {
    margin-bottom: 30px;
  }
  .l-secCont ul.item1-sp li {
    width: 100%;
    margin-right: 0 !important;
  }
  .l-floatBox {
    display: flex;
    flex-wrap: wrap;
  }
  .l-floatBox__imgSpc,
  .l-floatBox__textSpc {
    width: 100%;
  }
  .l-floatBox__imgSpc {
    order: 2;
  }
  .l-floatBox__textSpc {
    margin-bottom: 30px;
  }
  .l-floatBox.order-change .l-floatBox__imgSpc {
    order: 1;
    margin-bottom: 30px;
  }
  .l-floatBox.order-change .l-floatBox__textSpc {
    order: 2;
    margin-bottom: 0;
  }

  /* カラム */
  .l-colWrap.item1-sp .col-item {
    width: 100%;
  }
  .l-colWrap.item2-sp .col-item {
    width: 48%;
    margin-right: 4%;
    margin-bottom: 4%;
  }
  .l-colWrap.item2-sp .col-item:last-child {
    margin-bottom: 4%;
  }
  .l-colWrap.item3-sp .col-item {
    width: 32%;
    margin-right: 2%;
    margin-bottom: 4%;
  }
  .l-colWrap.item2-sp .col-item:nth-child(2n) {
    margin-right: 0;
  }
  .l-colWrap.item3-sp .col-item:nth-child(3n) {
    margin-right: 0;
  }
  .l-colWrap .col-item {
    width: 100%;
    margin-bottom: 30px;
  }
  .l-colWrap .col-item p {
    line-height: 1.5;
  }
  .l-colWrap .col-item:last-child {
    margin-bottom: 0;
  }

  /*画像+テキスト*/
  .l-flexBox {
    flex-wrap: wrap;
  }
  .l-flexBox .l-flexBox__imgSpc,
  .l-flexBox .l-flexBox__spc01 {
    width: 100% !important;
    margin: 0 0 30px 0;
  }
  .l-flexBox .l-flexBox__textSpc,
  .l-flexBox .l-flexBox__spc02 {
    width: 100% !important;
  }
  .l-flexBox.reverse-sp .l-flexBox__imgSpc {
    order: 2;
    margin-bottom: 0 !important;
    margin-top: 30px !important;
  }

  /*spでもflex継承する場合*/
  .flex-sp.l-flexBox .l-flexBox__imgSpc {
    padding-right: 12px;
  }

  /*4:6*/
  .flex-sp.l-flexBox.ratio4-6 .l-flexBox__imgSpc,
  .flex-sp.l-flexBox.ratio4-6 .l-flexBox__spc01 {
    width: 30% !important;
  }
  .flex-sp.l-flexBox.ratio4-6 .l-flexBox__textSpc,
  .flex-sp.l-flexBox.ratio4-6 .l-flexBox__spc02 {
    width: 70% !important;
  }

  /*5:5*/
  .flex-sp.l-flexBox.ratio5-5 {
    justify-content: space-between !important;
  }
  .flex-sp.l-flexBox.ratio5-5 .l-flexBox__imgSpc,
  .flex-sp.l-flexBox.ratio5-5 .l-flexBox__spc01,
  .flex-sp.l-flexBox.ratio5-5 .l-flexBox__textSpc,
  .flex-sp.l-flexBox.ratio5-5 .l-flexBox__spc02 {
    width: 48% !important;
    padding-right: 0 !important;
  }
  .flex-sp.l-flexBox.ratio5-5 .l-flexBox__textSpc,
  .flex-sp.l-flexBox.ratio5-5 .l-flexBox__spc02 {
    padding-left: 0 !important;
  }

  /*3:7*/
  .flex-sp.l-flexBox.ratio3-7 .l-flexBox__imgSpc,
  .flex-sp.l-flexBox.ratio3-7 .l-flexBox__spc01 {
    width: 30% !important;
  }
  .flex-sp.l-flexBox.ratio3-7 .l-flexBox__textSpc,
  .flex-sp.l-flexBox.ratio3-7 .l-flexBox__spc02 {
    width: 70% !important;
  }

  /*2:8*/
  .flex-sp.l-flexBox.ratio2-8 .l-flexBox__imgSpc,
  .flex-sp.l-flexBox.ratio2-8 .l-flexBox__spc01 {
    width: 30% !important;
  }
  .flex-sp.l-flexBox.ratio2-8 .l-flexBox__textSpc,
  .flex-sp.l-flexBox.ratio2-8 .l-flexBox__spc02 {
    width: 70% !important;
  }

  /*1:9*/
  .flex-sp.l-flexBox.ratio1-9 .l-flexBox__imgSpc,
  .flex-sp.l-flexBox.ratio1-9 .l-flexBox__spc01 {
    width: 30% !important;
  }
  .flex-sp.l-flexBox.ratio1-9 .l-flexBox__textSpc,
  .flex-sp.l-flexBox.ratio1-9 .l-flexBox__spc02 {
    width: 70% !important;
  }

  /*7:3*/
  .flex-sp.l-flexBox.ratio7-3 .l-flexBox__imgSpc,
  .flex-sp.l-flexBox.ratio7-3 .l-flexBox__spc01 {
    width: 70% !important;
  }
  .flex-sp.l-flexBox.ratio7-3 .l-flexBox__textSpc,
  .flex-sp.l-flexBox.ratio7-3 .l-flexBox__spc02 {
    width: 30% !important;
  }

  /*6:4*/
  .flex-sp.l-flexBox.ratio6-4 .l-flexBox__imgSpc,
  .flex-sp.l-flexBox.ratio6-4 .l-flexBox__spc01 {
    width: 60% !important;
  }
  .flex-sp.l-flexBox.ratio6-4 .l-flexBox__textSpc,
  .flex-sp.l-flexBox.ratio6-4 .l-flexBox__spc02 {
    width: 40% !important;
  }

}

/*youtubeの埋め込み*/
.l-youtubeWrap {
  width: auto;
  /*動画の横幅*/
  margin: 0 auto;
}
.l-youtubeWrap__inner {
  position: relative;
  padding-bottom: calc(315 / 560 * 100%);
}
.l-youtubeWrap iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}


.l-secCont.bg-gray {
  padding: 50px 0;
}
@media screen and (max-width:768px) {
.l-secCont.bg-gray {
  padding: 30px 0 50px 0;
}
}
/*----------------------------------------
  リンク
----------------------------------------*/
/* テキストリンク */
a.txt {
  color: #161b3f;
  text-decoration: underline;
}
a.txt:hover {
  text-decoration: none;
  opacity: 1;
}

/*----------------------------------------
  Component
----------------------------------------*/

/*セクションタイトル*/
.c-secTtl {
  position: relative;
  margin-bottom: 60px;
  text-align: center;
  padding-top: 60px;
}
.c-secTtl * {
  font-weight: 900!important;
}
.c-secTtl p{
  display: block;
  position: absolute;
  z-index: -1;
  font-size: 6em;
  color: #e6e6e6;
  top: 0px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  font-family: 'Montserrat', sans-serif;
}
.c-secTtl h2{
  font-size: 3em;
  line-height: 1.3;
  font-family: 'M PLUS 1p',"メイリオ",Meiryo,"ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro",Osaka,"ＭＳ Ｐゴシック","MS PGothic",sans-serif!important;
  background: -webkit-linear-gradient(left,#f28e26 30%,#fd644f);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
  display: inline-block;
}
.c-secTtl h2 .small {
}

.c-secTtl.gold p {
  display: inline-block;
  background: -webkit-linear-gradient(left,#e0ce8f,#ece6bc,#e0ce8f,#ece6bc,#e0ce8f);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.c-secTtl.green h2{
  background: -webkit-linear-gradient(left,#2fb383 34%,#18a86b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

@media screen and (max-width:768px){
  .c-secTtl {
    margin-bottom: 30px;
    padding-top: 40px;
  }
  .c-secTtl p {
    font-size: 3.05em;
    top: 10px;
  }
  .c-secTtl h2 .small {
    font-size: 70%;
  }
  .c-secTtl h2 {
    font-size: 1.75em;
  }
}

/*見出し*/
.c-ttlh3 {
  font-size: 2em;
  font-weight: 600;
  margin-bottom: 1.1em;
}
.c-ttlh3 .sub-ttl,.c-ttlh3-2 .sub-ttl {
  display: block;
  color: #fc674b;
  font-size: .7em;
}

.c-ttlh3 .sub-ttl {
  margin-bottom: 10px;
}

.c-ttlh3-2,.c-bdSpc {
  text-align: center;
  padding: 18px 15px 15px 15px;
  border-top: 2px solid #e6e6e6;
  border-bottom: 2px solid #e6e6e6;
  margin-bottom: 30px;
}
.c-ttlh3-3 .ttl {
  line-height: 1.3;
}
.c-ttlh3-2 *{
  font-weight: 600;
}
.c-ttlh3-2 .ttl,.c-ttlh3-3 .ttl {
  font-size: 2em;
}
.c-ttlh3-3 {
  text-align: center;
  margin-bottom: 40px;
}
.c-ttlh3-3 .ttl{
  font-weight: bold;
  margin-bottom: 20px;
}
.c-ttlh3-3 .c-bdSpc p {
  font-size: 1.15em;
}

@media screen and (max-width:768px) {
  .c-ttlh3,.c-ttlh3-2 .ttl,.c-ttlh3-3 .ttl  {
    font-size: 1.45em;
  }
  .c-ttlh3-3 .c-bdSpc p {
    font-size: 1em;
    text-align: left;
  }
}
.c-ttlh4 {
  font-size: 1.3em;
  font-weight: 600;
  position: relative;
  padding-left: 2.6em;
  margin-top: .3em;
  margin-bottom: 30px;
}
.c-ttlh4::before {
  content: "";
  position: absolute;
  background-image: url(../images/ico-ttlh4.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: left bottom;
  display: inline-block;
  width: 2em;
  height: 2em;
  left: 0;
  top: -.3em;
}
.c-ttlh4 .en {
 font-size: .7em;
 display: inline-block;
 margin-left: 1.6em;
 font-weight: normal;
 letter-spacing: .3em;
}
@media screen and (max-width:768px) {
  .c-ttlh4 {
    font-size: 1.2em;
  }
}
.c-ttlObi {
  background: #f2f2f2;
  width: 100%;
  padding: 30px 15px;
  position: relative;
  min-height: 130px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin-bottom: 100px;
}
.c-ttlObi .ttl {
  background: -webkit-linear-gradient(left,#f28e26 40%,#fd644f);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
  display: inline-block;
  font-family: 'M PLUS 1p',"メイリオ",Meiryo,"ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro",Osaka,"ＭＳ Ｐゴシック","MS PGothic",sans-serif!important;
  font-weight: 800;
  font-size: 3em;
  width: 100%;
  line-height: 1.5;
}
.c-ttlObi .ttl .strong {
  font-size: 1.3em;
}
.c-ttlObi::before {
  position: absolute;
  display: inline-block;
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 50px 150px 0 150px;
  border-color: #f2f2f2 transparent transparent transparent;
  bottom: -50px;
}
@media screen and (max-width:768px) {
  .c-ttlObi .ttl {
    font-size: 1.85em;
  }
}
/*申し込みボタン*/
.entry-btn {
  width: 100%;
  max-width: 900px;
  margin: 40px auto;
  border-radius: 30px;
  transition: .3s;
}
.entry-btn a {
  display: block;
  text-align: center;
  padding: 18px 15px 15px 15px;
}

.entry-btn a p {
  font-size: 2.5em;
  color: #fff;
  font-weight: 600;
  line-height: 1.3;
}
.entry-btn a .small {
  display: block;
  font-size: .75em;
  margin-bottom: 5px;
}
.entry-btn:hover  {
  border-radius: 3px;
  transition: .3s;
}


@media screen and (max-width:768px){
  .entry-btn {
    border-radius: 10px;
  }
  .entry-btn a  {
    padding: 18px 10px 15px 10px;
  }
  .entry-btn a p {
    font-size: 2em;
  }
  .entry-btn a .small {
    font-size: .6em;
  }
}


/*----------------------------------------
  header
----------------------------------------*/
.lp-header {
  position: absolute;
  background-color: rgba(0,0,0,0)!important;
  width: 100%;
  padding-top: 15px;
  z-index: 10;
}
.hd-inner {
  width: 95%;
  margin: auto;
  display: flex;
  justify-content:space-between;
  align-items: center;
}

/*申し込みボタン*/
.entry-btn-hd {
  border-radius: 10px;
  position: relative;
  margin-top: 30px;
}
.entry-btn-hd a {
  min-width: 220px;
  display: block;
  text-align: center;
  padding: 12px 15px 10px 15px;
}

.entry-btn-hd a {
  font-size: min(1.4vw,28px);
  color: #fff;
  font-weight: 600;
  line-height: 1.5;
}

.entry-btn-hd::after {
  content: "";
  position: absolute;
  right: 25px;
  top: 38%;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  display: block;
  width: 12px;
  height: 12px;
  border-top: solid 3px #fff;
  border-right: solid 3px #fff;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.lp-header .logo {
  max-width: 180px;
  width: 10vw;
  position: absolute;
  right: 2vw;
  top: 2vw;
}

@media screen and (max-width:768px){
  .lp-header {
    padding-top: 5px;
  }
  .entry-btn-hd a {
    font-size: .8em;
    min-width: 160px;
    padding: 10px 24px 8px 15px;
    line-height: 1.3;
    min-width: min-content;
  }
  .entry-btn-hd {
    position: absolute;
    top: -10px;
    right: 5%;
  }

  .entry-btn-hd::after {
    right: 12px;
    width: 6px;
    height: 6px;
    border-top: solid 2px #fff;
    border-right: solid 2px #fff;
  }
  .lp-header .logo {
    max-width: 110px;
  }
  .lp-header .logo img {
    vertical-align: middle;
  }
}

/*----------------------------------------
  #TOP
----------------------------------------*/
#TOP * {
  color: #fff;
}

#TOP img {
  backface-visibility: hidden;
}
#TOP.l-secCont {
  margin-bottom: 0px;
}
#TOP {
  background: url(../images/bg-top.jpg)top center / cover no-repeat;
  /* 背景をぼかす */
  color: ffffff;
  position: relative;
  z-index: 0;
  overflow: hidden;
}

#TOP:before {
  content: '';
  background: inherit;
  -webkit-filter: blur(30px);
  -moz-filter: blur(30px);
  -o-filter: blur(30px);
  -ms-filter: blur(30px);
  filter: blur(30px);
  position: absolute;
  top: -30px;
  left: -30px;
  right: -30px;
  bottom: -30px;
  z-index: -1;
}
#TOP .contentWrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-content: center;
  text-align: center;
  background: url(../images/bg-top.png)center center / contain no-repeat;
}
#TOP .mainTtl,#TOP .iconWrap {
  width: 100%;
  max-width: 960px;
  margin-right: auto;
  margin-left: auto;
}
#TOP .mainTtl {
  width: 100%;
  margin-bottom: 50px;
}
#TOP .mainTtl .main-ttl1 {
  width: 100%;
  margin: 0 auto;
  max-width: 500px;
}
#TOP .mainTtl .main-ttl2 {
  margin: auto;
}
#TOP .subTtl {
  margin: 0 auto 30px auto;
  width: 100%;
}

@media screen and (min-width:769px){
  #TOP {
    min-height: 900px;
  }
  #TOP .contentWrap  {
    height: 900px;
  }
#TOP .subTtl img {
  /* max-width: 600px; */
  margin: auto;
}
}

#TOP .iconWrap {
  width: 100%;
  display: flex;
  justify-content: center;
}
#TOP .iconWrap .item {
  text-align: center;
  margin-right: 1em;
}
#TOP .iconWrap .img {
  margin-bottom: -5px;
  max-width: 135px;
}
#TOP .iconWrap .item:last-child {
  margin-right: 0;
}


@media screen and (max-width:768px){
  #TOP {
    background: url(../images/bg-top.jpg)top center / cover no-repeat;
    height: auto;
  }
  #TOP .contentWrap {
    height: auto;
    padding-top: 64px;
    padding-bottom: 50px;
    background: none;
  }
  #TOP .sp-mainImg {
    position: relative;
  }
  #TOP .sp-mainImg .main-ttl1 {
    position: absolute;
    bottom: -7px;
    padding: 0 10px;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    width: 100%;
  }
  #TOP .main-ttl2 {
    background: rgba(0, 0, 0, 0.4);
    padding: 30px 10px;
    margin-bottom: 30px;
  }
  #TOP .subTtl {
    margin-bottom: 30px;
    position: relative;
    padding: 0 20px;
    width: 100%;
  }
  #TOP .iconWrap {
    flex-wrap: wrap;
  }
  #TOP .iconWrap .item {
    width: 32%;
    margin-right: 1%;
    margin-bottom: 10px;
  }
  #TOP .iconWrap .item:last-child {
    margin-right: inherit;
  }
  #TOP .iconWrap .item:nth-child(3n) {
    margin-right: 0;
  }
}

/*----------------------------------------
  #CAMPAIGN
----------------------------------------*/

#CAMPAIGN {
  background: #F4F9F8;
}

@media screen and (min-width:769px){
  #CAMPAIGN.l-secCont{
    padding-top: 60px;
  }
}
@media screen and (max-width:768px){
  #CAMPAIGN,#TRIAL {
    background: url(../images/bg-01.jpg)bottom center / 170% repeat-y;
  }
  #CAMPAIGN.l-secCont{
    padding-top: 30px;
  }
}

/*----------------------------------------
  #ABOUT
----------------------------------------*/
#ABOUT .tokucho .col-item {
  padding: 30px;
  min-height: 220px;
  border-radius: 15px;
  background: linear-gradient(135deg, rgba(242,142,38, 0.85), rgba(255, 110, 80, 0.85) ) ,url(../images/store1.jpg);
  background-size: cover;
  background-position: top center!important;
}
#ABOUT .tokucho .col-item.tokucho1 {
  background: linear-gradient(135deg, rgba(242,142,38, 0.85), rgba(253,100,79, 0.85) ),url(../images/tokucho-img-1.jpg);
}
#ABOUT .tokucho .col-item.tokucho2 {
  background: linear-gradient(135deg, rgba(242,142,38, 0.85), rgba(253,100,79, 0.85) ) ,url(../images/tokucho-img-2.jpg);
  background-position: left center!important;
}
#ABOUT .tokucho .col-item.tokucho3 {
  background: linear-gradient(135deg, rgba(242,142,38, 0.85), rgba(253,100,79, 0.85) ) ,url(../images/tokucho-img-3.jpg);
  background-position: center 25%!important;
}
#ABOUT .tokucho .col-item.tokucho4 {
  background: linear-gradient(135deg, rgba(242,142,38, 0.85), rgba(253,100,79, 0.85) ) ,url(../images/tokucho-img-4.jpg);
}
#ABOUT .tokucho .col-item.tokucho5 {
  background: linear-gradient(135deg, rgba(242,142,38, 0.85), rgba(253,100,79, 0.85) ) ,url(../images/tokucho-img-5.jpg);
  background-position: center 20%!important;
}
#ABOUT .tokucho .col-item.tokucho6 {
  background: linear-gradient(135deg, rgba(242,142,38, 0.85), rgba(253,100,79, 0.85) ) ,url(../images/tokucho-img-6.jpg);
}
#ABOUT .tokucho .col-item * {
  color: #fff;
}
#ABOUT .tokucho .ttl {
  text-align: center;
}

@media screen and (max-width:768px) {
}


/*----------------------------------------
  #METHOD
----------------------------------------*/
#METHOD {
  background: url(../images/bg-01.jpg) top center / contain repeat-y;
}
@media screen and (min-width:769px){
  #METHOD.l-secCont {
    padding-top: 60px;
    padding-bottom: 60px;
    margin-bottom: 0;
  }
}
#METHOD .txtSpc {
  position: relative;
}
#METHOD .txtSpc .p-bg {
  width: 100%;
  height: 90%;
  position: absolute;
  z-index: -10;
  top: 20%;
  left: 10%;
}
@media screen and (max-width:768px){
  #METHOD {
    background: url(../images/bg-01.jpg) top center / 170% repeat-y;
  }
  #METHOD.l-secCont {
    padding-top: 30px;
    padding-bottom: 40px;
    margin-bottom: 0;
  }
  #METHOD .txtSpc .p-bg {
    top: 15%;
    left: 5%;
  }
}


/*----------------------------------------
  #REASON
----------------------------------------*/
#REASON .c-ttlObi {
  margin-bottom: 150px;
}
.p-itemBox {
  position: relative;
  padding: 50px 30px;
  margin-bottom: 110px;
}
.p-itemBox .ttl {
  position: absolute;
  font-weight: bold;
  top: -44px;
}
.p-itemBox .ttl h3 {
  font-size: 3.8em;
}

.p-itemBox .ttl::before {
  content: "●●●";
  display: inline-block;
  position: absolute;
  color: #e6e6e6;
  font-size: 3.8em;
  font-weight: 700;
  top: -40px;
  font-family: 'Montserrat', sans-serif;
}
.p-itemBox .ttl.dtl1::before {
  content: "TRAINNING";
}
.p-itemBox .ttl.dtl2::before {
  content: "STRETCH";
}
.p-itemBox .ttl.dtl3::before {
  content: "MEDICELL";
}

@media screen and (max-width:768px){
  .p-itemBox .ttl {
    left: 15px;
    top: -40px;
  }
  .p-itemBox .ttl::before {
    font-size: 3.2em;
    top: -32px;
  }
}



/*----------------------------------------
  #COURSE
----------------------------------------*/


/* タブの切り替え */
.c-tabContent .tab-hide {
  display: none;
}
.c-tabArea {
  margin: 0 0 40px 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
}
.c-tabArea li {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #161b3f;
  cursor: pointer;
  padding: 0.5em 2em;
  color: #fff;
  width: 31%;
  min-width: 31%;
  min-height: 3.5em;
  font-weight: bold;
  font-size: 1.2em;
  margin-bottom: 15px!important;
}
.c-tabArea li:hover {
  opacity: 0.7;
}
.c-tabArea li.select {
  opacity: 1;
  background: linear-gradient(to left,#f28e26,#fd644f);
  background: -moz-linear-gradient(left, #f28e26, #fd644f);
  background: -webkit-linear-gradient(left, #f28e26, #fd644f);
}
.c-tabContent__item_Wrap {
  background: #fff;
  padding: 30px;
}



@media screen and (min-width:769px){
  .c-tabArea.jc-initial {
    justify-content: initial;
  }
  .c-tabArea.jc-initial li {
    margin-right: 1%;
  }
  .c-tabArea.item4 li{
    width: 48%;
  }
}
@media screen and (max-width:768px) {
  .c-tabArea {
    margin: 0 0 30px 0;
    justify-content: initial;
  }
  .c-tabArea li {
    width: 48%;
    font-size: 12px;
    padding: 2px 5px;
    margin: 0 2% 2% 0 !important;
  }
  .c-tabContent__item_Wrap {
    padding: 30px 14px;
  }
}

/* コースの構成 */

.p-kosei-item {
  padding: 25px;
  background: #f2f2f2;
}
.p-kosei-item .icon,.p-kosei-item .ttl {
  text-align: center;
}
.p-kosei-item .ttl {
  font-size: 1.1em;
  font-weight: bold;
}

@media screen and (max-width:768px) {
  .p-kosei-item {
    padding: 20px 15px;
  }
}

/*----------------------------------------
  #COST
----------------------------------------*/
.c-tabContent__item_Wrap.border {
  border: 2px solid #e6e6e6;
}

.cost0yen-box {
  border-radius: 30px;
  margin-bottom: 30px;
  padding: 30px;
  text-align: center;
}
.cost0yen-box .text1 {
  font-size: 1.7em;
  font-weight: bold;
  margin-bottom: 10px;
}
.cost0yen-box .text2 {
  font-size: 1.3em;
  font-weight: bold;
  color: #fff;
  background: #bc1316;
  padding: 5px;
  max-width: 950px;
  margin: 0 auto 10px auto;
}

@media screen and (max-width:768px) {
  .cost0yen-box {
    padding: 30px 15px;
  }
  .cost0yen-box .text1, .cost0yen-box .text2 {
    font-size: 1.2em;
    line-height: 1.5;
  }
  .cost0yen-box .text2 {
    line-height: 1.4;

  }
}
.priceWrap {
  max-width: 960px;
  margin: auto;
}
.priceWrap h2 {
  font-weight: bold;
}
.priceWrap .price-block .pinside20 {
  padding: 10px;
}
@media screen and (max-width:768px) {
  .priceWrap table th,.priceWrap table td {
    font-size: .85em;
  }
}


/*----------------------------------------
  #VOICE
----------------------------------------*/
#VOICE {
  margin-bottom: 0;
}
#VOICE .voiceWrap {
}

#VOICE .voice-item {
  background: #fff;
  padding: 30px 20px 20px 20px;
  border-radius: 15px;
  min-height: 350px;
  position: relative;
  margin-top: 30px;
}
#VOICE .voice-item .ttlNo {
  font-size: 3.4em;
  position: absolute;
  top: -38px;
}
#VOICE .voice-item .ttl {
  font-size: 1.4em;
  margin-bottom: 15px;
}

@media screen and (max-width:768px) {
  #VOICE .voice-item .ttlNo {
    top: -30px;
  }
  #VOICE .voice-item {
    padding: 30px 15px;
    min-height: min-content;
  }
}
/*----------------------------------------
  #TRAINER
----------------------------------------*/

#TRAINER {
  background: url(../images/bg-01.jpg) top center / cover repeat-y;
}
@media screen and (min-width:769px){
  #TRAINER.l-secCont {
    padding-top: 60px;
    padding-bottom: 60px;
    margin-bottom: 0;
  }
}
@media screen and (max-width:768px){
  #TRAINER {
    background: url(../images/bg-01.jpg) top center / 170% repeat-y;
  }
  #TRAINER.l-secCont {
    padding-top: 30px;
    padding-bottom: 40px;
    margin-bottom: 0;
  }
}
#TRAINER .staff-image {
  text-align: center;
}
#TRAINER .staff-image img{
  border-radius: 15px;
}


/*----------------------------------------
  #STORE
----------------------------------------*/



/*----------------------------------------
  #RESERVATION
----------------------------------------*/
.formWrap {
  max-width: 1000px;
  margin: auto;
}
button, input, select, textarea {
  max-width: 100%;
}

/*----------------------------------------
  キャンペーン内容の詳細
----------------------------------------*/
/* .camp .c-tabArea {
  justify-content: space-between;
}

.camp .c-tabArea li {
  text-align: center;
  width: 48%;
}
.camp .c-tabContent__item {
  padding: 15px;
  width: 100%;
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.2);
}
@media screen and (max-width:768px) {
  .camp .c-tabArea li {
    width: 100%;
  }

} */
.campBox {
  padding: 30px;
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.2);
  background: #fff;
  margin-bottom: 50px;
}
.campBox h2 {
  margin-bottom: 10px;
  font-weight: bold;
  font-size: 1.5em;
}

@media only screen and (max-width : 768px) {
  .campBox {
    padding: 20px;
  }
}

/*--------------------------------
 14. dl table css
---------------------------------*/
.tbdl dl {
  display: table;
  width: 100%;
  margin-bottom: 10px;
}

.tbdl dl dt {
  display: table-cell;
  width: 21%;
  vertical-align: top;
  padding: 10px 20px;
  background: #f4f1ec;
}

.tbdl dl dd {
  display: table-cell;
  vertical-align: top;
  width: 79%;
  /*! border-left: 1px solid #dddddd; */
  padding: 10px 20px;
}

@media only screen and (max-width : 768px) {

  .tbdl dl dt,
  .tbdl dl dd {
    border: none;
    width: 100%;
    display: block;
  }
}




/*----------------------------------------
  .lp-footer
----------------------------------------*/
.lp-footer {
  background: #f2f2f2;
  margin-top: 40px;
  padding: 15px;
}

/*----------------------------------------
  #page-top
----------------------------------------*/
#page-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 100;
  width: 60px;
  height: 60px;
}
#page-top a {
  display: flex;
  padding: 15px 15px;
  height: 100%;
  align-items: center;
  border-radius: 100%;
  font-size: 28px;
  justify-content: center;
  color: #FFF;
  box-shadow: 0 2px 2px rgba(0, 0, 0, 0.3);
}
#page-top a:hover {
  background: #c4480f;
  opacity: 1;
}

@media screen and (max-width:768px) {
  #page-top {
    bottom: 8px;
    right: 8px;
    width: 45px;
    height: 45px;
    border-radius: 100%;
  }
}

/*----------------------------------------
  #ローディング
----------------------------------------*/

.loader-wrap {
	position: fixed;
	display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background: #fff;
    z-index: 9999;
}

.loader,
.loader:before,
.loader:after {
  background: #ddd;
  -webkit-animation: load1 1s infinite ease-in-out;
  animation: load1 1s infinite ease-in-out;
  width: 1em;
  height: 4em;
}
.loader {
  color: #ddd;
  text-indent: -9999em;
  margin: 88px auto;
  position: relative;
  font-size: 11px;
  -webkit-transform: translateZ(0);
  -ms-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-animation-delay: -0.16s;
  animation-delay: -0.16s;
}
.loader:before,
.loader:after {
  position: absolute;
  top: 0;
  content: '';
}
.loader:before {
  left: -1.5em;
  -webkit-animation-delay: -0.32s;
  animation-delay: -0.32s;
}
.loader:after {
  left: 1.5em;
}
@-webkit-keyframes load1 {
  0%,
  80%,
  100% {
    box-shadow: 0 0;
    height: 4em;
  }
  40% {
    box-shadow: 0 -2em;
    height: 5em;
  }
}
@keyframes load1 {
  0%,
  80%,
  100% {
    box-shadow: 0 0;
    height: 4em;
  }
  40% {
    box-shadow: 0 -2em;
    height: 5em;
  }
}


/*----------------------------------------
@media screen and (min-width:769px){}
@media screen and (max-width:768px){}
----------------------------------------*/

/*VOICE*/

.p-voice {
  background-color: #f2f2f2;
  padding: 25px;
  display: flex;
  flex-direction: column;
  border-radius: 10px;
}

.p-voice__title {
  font-size: 18px;
  font-weight: bold;
  color: #18A780;
}

.p-voice__text {
  margin-top: 10px;
  margin-bottom: 10px;
}

.p-voice__name {
  text-align: right;
  margin-top: auto;
}

.p-voice__name::before {
  content: "";
  display: block;
  background: #84b9ab;
  width: 100%;
  height: 1px;
  margin-bottom: 10px;
}

.p-lpTop {
  width: 100%;
  background-image: url(../images/main-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  z-index: 0;
}

.p-liTop__inner {
  padding: 3vw;
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
  position: relative;
}

.p-lpTop__title {
  font-family: 'Montserrat', sans-serif;
  font-weight: bold;
  color: #fd644f;
  font-size: min(5.4vw,88px);
  line-height: 1.6;
}

.p-lpTop__shop {
  font-weight: bold;
  color: #fd644f;
  font-size: min(2.2vw,40px);
}

.p-lpTop__feature {
  display: flex;
}

.p-lpTop__feature li {
  font-size: min(1.6vw,28px);
  background: linear-gradient(to left,#f28e26,#fd644f);
  padding: .2em 1em;
  color: #fff;
  font-weight: bold;
  margin-top: 30px;
}

.p-lpTop__feature li + li {
  margin-left: 1vw;
}

.p-lpTop__copyBox {
  display: inline-block;
  position: relative;
  margin-top: 2vw;
}

.p-lpTop__balloonBox {
  position: absolute;
  top: 0;
  z-index: 1;
}

.p-lpTop__balloon {
  position: relative;
  display: inline-block;
  padding: .2em 1em;
  background-color: #fff;
  color: #fd644f;
  border-radius: 10px;
  font-weight: bold;
  font-size: min(1.6vw,28px);
  box-shadow: 0 3px 5px rgba(0, 0, 0, 0.1);
}

.p-lpTop__balloon::before {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -15px;
  border: 15px solid transparent;
  border-top: 15px solid #fff;
}

.p-lpTop__copy {
  position: relative;
  z-index: 0;
  margin-top: 2.4vw;
}

.p-lpTop__copy p {
  color: #fff;
  font-weight: bold;
  font-size: min(2.8vw,48px);
  padding: .8em;
  padding-right: 8vw;
}

.p-lpTop__copy p::after {
  content: "";
  display: block;
  background-color: #f28e26;
  position: absolute;
  width: 100%;
  height: 100%;
  transform:skewX(30deg) translateX(-8vw);
  opacity: .5;
  z-index: -1;
  top: 0;
}

.p-lpTop__person {
  position: absolute;
  z-index: -2;
  top: 0;
  height: 100%;
  overflow: hidden;
}

.p-lpTop__person--01 {
  left: 40%;
  padding: 1vw;
}

.p-lpTop__person--01 img {
  width: 36vw;
  max-width: 600px;
}

.p-lpTop__person--02 {
  left: 22%;
  padding-top: 5vw;
}

.p-lpTop__person--02 img {
  width: 34vw;
  max-width: 560px;
}

.p-lpTop__camp {
  position: absolute;
  right: 2vw;
  bottom: 2vw;
  width: 24%;
}

.p-lpTop__campBox {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  padding: 18px;
}

.p-lpTop__campTitle {
  position: relative;
  text-align: center;

}

.p-lpTop__campTitle h2 {
  background: -webkit-linear-gradient(left,#f28e26 30%,#fd644f);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: 'Montserrat', sans-serif !important;
  font-weight: bold;
  font-size: min(3.4vw,60px);
  position: absolute;
  top: -4.5vw;
  left: 0;
  right: 0;
  margin: auto;
}

.p-lpTop__campTitle p {
  font-weight: bold;
  font-size: min(1.2vw,28px);
  margin-top: 1.4vw;
}

.p-lpTop__banner {
  
}

@media screen and (max-width:768px){
  .lp-header .logo {
    width: 15vw;
    right: unset;
    left: 5%;
  }
  .p-lpTop {
    background-image: url(../images/main-bg-sp.jpg);
  }
  .p-liTop__inner {
    padding: 5%;
    padding-top: 80px;
  }
  .p-lpTop__title {
    font-size: 9vw;
  }
  .p-lpTop__feature {
    display: inline-block;
    text-align: center;
  }
  .p-lpTop__feature li {
    font-size: 18px;
    margin-left: 0;
  }
  .p-lpTop__feature li + li {
    margin-left: 0;
    margin-top: 10px;
  }

  .p-lpTop__shop {
    font-size: 16px;
  }

  .p-lpTop__copyBox {
    display: block;
  }

  .p-lpTop__copy {
    margin-top: 40px;
  }

  .p-lpTop__copy p {
    font-size: 20px;
    text-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  }

  .p-lpTop__copy p::after {
    width: 300px;
    transform: skewX(30deg) translateX(-80px);
  }

  .p-lpTop__balloonBox {
    top: -28px;
  }

  .p-lpTop__balloon {
    font-size: 16px;
  }

  .p-lpTop__balloon::before {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -15px;
    border: 10px solid transparent;
    border-top: 10px solid #fff;
  }

  .p-lpTop__camp {
    position: static;
    width: 100%;
  }
  
  .p-lpTop__campBox {
    margin-top: 30px;
  }
  
  .p-lpTop__person--01 {
    left: unset;
    right: -4vw;
    top: 80px;
  }

  .p-lpTop__person--01 img {
    width: 48vw;
  }

  .p-lpTop__person--02 {
    left: unset;
    right: 10%;
    top: 56vw;
  }

  .p-lpTop__person--02 img {
    width: 52vw;
  }

  .p-lpTop__campTitle h2 {
    font-size: 28px;
    position: static;
    line-height: 1;
  }
  .p-lpTop__campTitle p {
    font-size: 18px;
    margin-bottom: 10px;
  }
}