@charset "utf-8";

/*---------------------------------------------------------
body
---------------------------------------------------------*/
body {
  font-size: 1.8rem;
  line-height: 1.8;
}

@media (max-width: 768px) {
  
  body {
    font-size: 3.90625vw;
  }
  
  img {
    width: 100%;
  }    
  
}

/*ユーティリティ
--------------------------------------------------*/
.pc {
  display: block;
}

.sp {
  display: none;
}

@media (max-width: 768px) {
  
  .pc {
    display: none;
  }
  
  .sp {
    display: block;
  }
  
}

/*コンテナ
--------------------------------------------------*/
.container {
  overflow: hidden;
}

.content {
  margin: 0 auto;
  padding: 0;
}

.contWp {
  color: #3c3c3c;
  width: 1000px;
  margin: 0 auto;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

@media (max-width: 768px) {
  
  .contWp {
    width: 92%;
  }
  
}

/*画像ボックス
--------------------------------------------------*/
figure {
  margin-bottom: 30px;
}

figure img {
  display: block;
  margin: auto;
}

figure figcaption {
  font-size: 2rem;
}

@media (max-width: 768px) {

  figure {
    margin-bottom: 3.90625vw;
  }
  
  figure img {
    width: 80%;
  }

  figure figcaption {
    font-size: 3.3854166667vw;
  }
  
}


/*---------------------------------------------------------
キービジュアル
---------------------------------------------------------*/
.kv {
  width: 1200px;
  height: 290px;
  margin: 0 auto 10px;
  background: url("../img/kv_pc.png") no-repeat;
  background-size: contain;
  position: relative;
}

h1 {
  font-size: 7rem;
  font-weight: bold;
  line-height: 1.2;
  color: #fff;
}

h1 > span {
  font-size: 7rem;
}

.subTtl {
  padding: 11px 20px 10px;
  text-align: center;
  color: #C86432;
  background-color: #fff;
  position: absolute;
  bottom: -76px;
  left: 0px;
  width: auto;
}

.date {
  text-align: right;
}

@media screen and (min-width: 769px) {
  
  h1 {
    position: absolute;
    top: 20px;
    left: 120px;
  }  
  
  .subTtl {
    white-space: nowrap;
    line-height: 1;
    font-size: 3.2rem !important;
  }  
  
  .mainTtl .small_text {
    font-size: 4.5rem;
  }
  
  .small_text {
    font-size: 3.2rem;
  }
  
  .space {
    padding-left: 2em;
  }  

}

@media (max-width: 768px) {
  
  .kv {
    width: 100%;
    height: 63.197916666699996vw;
    margin-bottom: 1.3037809648vw;
    background: url("../img/kv_sp.png") no-repeat;
    background-size: contain;
  }
  
  .kv h1 {
    font-size: 8.3333333333vw;
    top: 2.6041666667vw;
    left: 2.6041666667vw;
  }

  .kv h1 > span {
    /*font-size: 5.9895833333vw;*/
  }

  .mainTtl {
    display: inline-block;
    position: absolute;
    right: 8%;
    top: 4%;
    line-height: 1.3;
    width: auto;
    font-size: 8vw;
  }
  
  .subTtl {
    display: block;
    padding: 0;
    font-size: 5.4vw;
    text-align: center;
    color: #fff;
    background-color: transparent;
    position: absolute;
    left: auto;
    right: 8%;
    bottom: 5.5%;
  }
  
  .yellow {
    font-size: 8.3333333333vw;
  }  

  .shadow {
    text-shadow: 0px 0px 10px #FF6432,
      0px 0px 10px #FF6432,
      0px 0px 10px #FF6432,
      0px 0px 10px #FF6432,
      0px 0px 10px #FF6432;
  }  

  .mainTtl .small_text {
    font-size: 6vw;
  }
  
  .subTtl .small_text {
    /*font-size: 4.6875vw;*/
  }
  
  .small_text.exception {
    font-size: 8vw;
  }

}


/*---------------------------------------------------------
リード
---------------------------------------------------------*/
.leadArea {
  margin-bottom: 60px;
}

.leadArea > p {
  width: 850px;
  margin: 0 auto 60px;
}

.leadArea .ToC {
  width: 700px;
  margin: auto;
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1.5;
}

.leadArea .ToC > ul,
.leadArea .ToC > div {
  padding: 16px 40px;
  background-color: #FFEFEA;
  border: solid 3px #FF6432;
}

.leadArea .ToC ul li a {
  display: block;
  padding: 7px 0;
}

.leadArea .ToC ul li a span {
  display: inline-block;
  position: relative;
}

.leadArea .ToC ul li a span::before {
  position: absolute;
  content: "";
  border-radius: 50%;
  background: #C86432;
  width: 18px;
  height: 18px;
  right: -30px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.leadArea .ToC ul li a span::after {
  position: absolute;
  content: "";
  border-top-width: 2px;
  border-right-width: 2px;
  border-top-style: solid;
  border-right-style: solid;
  border-color: #fff;
  width: 8px;
  height: 8px;
  right: -24px;
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(45deg);
  transform: translateY(-50%) rotate(45deg);
}

.leadArea .ToC > div {
  border-radius: 20px 20px 0 0;
}

.leadArea .ToC > div > p {
  margin-bottom: 10px;
}

.leadArea .ToC > div > ul {
  counter-reset: item;
}

.leadArea .ToC > div > ul li {
  color: #C86432;
  position: relative;
}

.leadArea .ToC > div > ul li a {
  color: #C86432;
}

.leadArea .ToC > ul {
  border-top-width: 0;
  border-radius: 0 0 20px 20px;
}

@media (max-width: 768px) {
  
  .leadArea {
    margin-bottom: 7.8125vw;
  }
  
  .leadArea > p {
    width: 100%;
    margin: 0 auto 7.8125vw;
  }
  
  .leadArea .ToC {
    width: 100%;
    font-size: 3.90625vw;
    line-height: 1.8;
  }
  
  .leadArea .ToC > ul, .leadArea .ToC > div {
    padding: 5.2083333333vw;
    border-width: 0;
  }
  
  .leadArea .ToC ul li a {
    padding: 1.3020833333vw 0;
  }
  
  .leadArea .ToC ul li a span {
    position: relative;
  }
  
  .leadArea .ToC ul li a span::before {
    position: absolute;
    content: "";
    border-radius: 50%;
    background: #C86432;
    width: 3.90625vw;
    height: 3.90625vw;
    right: -5.7291666667vw;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
  }
  
  .leadArea .ToC ul li a span::after {
    position: absolute;
    content: "";
    border-top-width: 0.5208333333vw;
    border-right-width: 0.5208333333vw;
    border-top-style: solid;
    border-right-style: solid;
    border-color: #fff;
    width: 1.5625vw;
    height: 1.5625vw;
    right: -4.296875vw;
    top: 50%;
    -webkit-transform: translateY(-50%) rotate(45deg);
    transform: translateY(-50%) rotate(45deg);
  }
  
  .leadArea .ToC > div {
    margin-bottom: 1.3020833333vw;
  }
  
  .leadArea .ToC > div > p {
    margin-bottom: 2.6041666667vw;
  }
  
  .leadArea .ToC > div > ul > li {
    padding-left: 6.5104166667vw;
  }
  
  .leadArea .ToC > div > ul > li::before {
    top: 1.3020833333vw;
  }
  
}


/*---------------------------------------------------------
テキスト
---------------------------------------------------------*/
p {
  margin-bottom: 30px;
}

.yellow {
  color: #ff0;
}

.red {
  color: #F0193C;
}

.marker {
  background:
    -webkit-gradient(linear, left top, left bottom,
    color-stop(60%, transparent),
    color-stop(60%, #ffe492));
  background: linear-gradient(transparent 60%, #ffe492 60%);
}

.notes {
  font-size: 1.6rem;
  text-indent: -1em;
  padding-left: 1em;
  display: block;
}

.txtLead {
  font-size: 2.4rem;
  font-weight: bold;
  color: #C86432;
}

@media (max-width: 768px) {
  
  p {
    margin-bottom: 7.8125vw;
  }
  
  .notes {
    font-size: 3.3854166667vw;
  }
  
  .txtLead {
    font-size: 4.4270833333vw;
  }  
  
}


/*---------------------------------------------------------
記事内のアイテム
---------------------------------------------------------*/
article,
section {
  margin-bottom: 100px;
}

@media (max-width: 768px) {
  
  article,
  section {
    margin-bottom: 10.4166666667vw;
  }
  
}

/*見出し 大
--------------------------------------------------*/
.secTtl {
  width: 1000px;
  height: 99px;
  margin-bottom: 40px;
  background: url("../img/ttlBg_01_pc.png") no-repeat;
  background-size: contain;
  position: relative;
}

.secTtl span {
  display: block;
  width: 100%;
  text-align: center;
  font-size: 3.2rem;
  font-weight: bold;
  color: #fff;
  position: absolute;
  left: 50%;
  bottom: 10px;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

@media (max-width: 768px) {

  .secTtl {
    width: 100%;
    height: 26.0416666667vw;
    margin-bottom: 7.8125vw;
    background: url("../img/ttlBg_01_sp.png") no-repeat;
    background-size: contain;
  }

  .secTtl span {
    font-size: 5.2083333333vw;
    line-height: 1.5;
    bottom: 2.6041666667vw;
  }

  .secTtl02 {
    height: 19.53125vw;
    background: url("../img/ttlBg_01small_sp.png") no-repeat;
    background-size: contain;
  }

  .secTtl02 span {
    bottom: 3.125vw;
  }
  
}

/*見出し 中
--------------------------------------------------*/
.dtlTtl {
  margin: 60px auto 30px;
  font-size: 2.6rem;
  font-weight: bold;
  border-bottom: 5px solid #C86432;
  color: #C86432;
  position: relative;
}

@media (max-width: 768px) {

  .dtlTtl {
    margin: 10.4166666667vw auto 3.90625vw;
    font-size: 4.9479166667vw;
  }

  .dtlTtl span {
    margin: 0 5.2083333333vw 0 1.3020833333vw;
    padding: 0 2.0833333333vw;
  }
    
}

/*イントロ
--------------------------------------------------*/
.intro {
  margin-top: 100px;
  padding: 40px 80px;
  background-image: url("../img/bg_intro.png");
}

.txtLead {
  margin-bottom: 30px;
  line-height: 1.5;
  text-align: center;
  color: #3c3c3c;
}

article .intro .pit-price,
section .intro .pit-price {
  margin-bottom: 40px;
  padding: 10px 0;
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
}
article .intro .pit-price p,
section .intro .pit-price p {
  margin-bottom: 0;
  text-align: center;
}
article .intro .pit-price .txt-link,
section .intro .pit-price .txt-link {
  margin: 0 auto 4px;
}

.btnLink:nth-last-child(4),
.btnLink:nth-last-child(3) {
  margin-bottom: 20px;
}

.btnLink:nth-last-child(2) {
  margin-bottom: 60px;
}

.bgGray {
  padding: 30px 80px;
  background-color: #f4f4f4;
}

.bgGray .grayTtl {
  margin-bottom: 10px;
  font-size: 2.4rem;
  font-weight: bold;
  color: #C86432;
}

.bgGray p:last-child {
  margin-bottom: 0;
}

.btnLink {
  text-align: center;
  margin-bottom: 0;
}

.btnLink a {
  display: block;
  width: 460px;
  margin: 0 auto;
  padding: 14px 14px 14px 0;
  font-size: 1.8rem;
  color: #ed1a3a;
  font-weight: bold;
  background-color: #fff;
  border: 3px solid #ed1a3a;
  border-radius: 8px;
}

.btnLink.simpleLink a {
  display: inline-block;
  width: auto;
  margin: 0 auto;
  padding-bottom: 0;
  background-color: transparent;
  border: none;
  border-bottom: 3px solid #ed1a3a;
  border-radius: 0;
  padding-right: 30px;
  padding-left: 10px;
  font-size: 2.2rem;
}

.btnLink a span {
  position: relative;
}

.btnLink a span::before {
  position: absolute;
  content: "";
  border-radius: 50%;
  background: #ed1a3a;
  width: 18px;
  height: 18px;
  right: -28px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.btnLink a span::after {
  position: absolute;
  content: "";
  border-top-width: 2px;
  border-right-width: 2px;
  border-top-style: solid;
  border-right-style: solid;
  border-color: #fff;
  width: 8px;
  height: 8px;
  right: -22px;
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(45deg);
  transform: translateY(-50%) rotate(45deg);
}

article .txt-link,
section .txt-link {
  margin: 60px auto;
  text-align: center;
}
article .txt-link a,
section .txt-link a {
  padding-right: 34px;
  font-size: 2.2rem;
  color: #ed1a3a;
  font-weight: bold;
  border-bottom: 2px solid #ed1a3a;
}
article .txt-link a span,
section .txt-link a span {
  position: relative;
}
article .txt-link a span::before,
section .txt-link a span::before {
  position: absolute;
  content: "";
  border-radius: 50%;
  background: #ed1a3a;
  width: 18px;
  height: 18px;
  right: -28px;
  top: 50%;
  -webkit-transform: translateY(-44%);
          transform: translateY(-44%);
}
article .txt-link a span::after,
section .txt-link a span::after {
  position: absolute;
  content: "";
  border-top-width: 2px;
  border-right-width: 2px;
  border-top-style: solid;
  border-right-style: solid;
  border-color: #fff;
  width: 8px;
  height: 8px;
  right: -22px;
  top: 50%;
  -webkit-transform: translateY(-37%) rotate(45deg);
          transform: translateY(-37%) rotate(45deg);
}

@media (max-width: 768px) {

  .intro {
    margin-top: 13.0208333333vw;
    padding: 5.2083333333vw 5.2083333333vw 7.8125vw;
  }

  .intro .txtLead {
    margin-bottom: 3.90625vw;
    font-size: 3.90625vw;
  }

    article .intro .pit-price,
  section .intro .pit-price {
      margin-bottom: 7.8125vw;
      padding: 2.6041666667vw 0;
      border-top-width: 0.2604166667vw;
      border-bottom-width: 0.2604166667vw;
    }
    article .intro .pit-price .txt-link,
  section .intro .pit-price .txt-link {
      margin: 0 auto 1.3020833333vw;
    }

  .intro .btnLink:nth-last-child(4),
  .intro .btnLink:nth-last-child(3) {
    margin-bottom: 2.6041666667vw;
  }

  .intro .btnLink:nth-last-child(2) {
    margin-bottom: 7.8125vw;
  }

  .bgGray {
    padding: 2.6041666667vw 5.5vw;
  }

  .bgGray .grayTtl {
    margin: 0 auto 1.3020833333vw;
    font-size: 4.4270833333vw;
    font-weight: bold;
  }

  .btnLink a {
    width: 78.125vw;
    margin: 0 auto;
    padding: 3.3854166667vw 3.3854166667vw 3.3854166667vw 0;
    font-size: 3.90625vw;
  }

  .btnLink a span::before {
    position: absolute;
    content: "";
    border-radius: 50%;
    background: #ed1a3a;
    width: 3.90625vw;
    height: 3.90625vw;
    right: -5.3385416667vw;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
  }

  .btnLink a span::after {
    position: absolute;
    content: "";
    border-top-width: 0.5208333333vw;
    border-right-width: 0.5208333333vw;
    border-top-style: solid;
    border-right-style: solid;
    border-color: #fff;
    width: 1.5625vw;
    height: 1.5625vw;
    right: -3.90625vw;
    top: 50%;
    -webkit-transform: translateY(-50%) rotate(45deg);
    transform: translateY(-50%) rotate(45deg);
  }
  
    article .txt-link,
  section .txt-link {
      margin: 7.8125vw auto;
    }
    article .txt-link a,
  section .txt-link a {
      padding-right: 5.46875vw;
      font-size: 4.1666666667vw;
      line-height: 1.8;
    }
    article .txt-link a span::before,
  section .txt-link a span::before {
      position: absolute;
      content: "";
      border-radius: 50%;
      background: #ed1a3a;
      width: 3.90625vw;
      height: 3.90625vw;
      right: -5.3385416667vw;
      top: 50%;
      -webkit-transform: translateY(-44%);
              transform: translateY(-44%);
    }
    article .txt-link a span::after,
  section .txt-link a span::after {
      position: absolute;
      content: "";
      border-top-width: 0.5208333333vw;
      border-right-width: 0.5208333333vw;
      border-top-style: solid;
      border-right-style: solid;
      border-color: #fff;
      width: 1.5625vw;
      height: 1.5625vw;
      right: -3.90625vw;
      top: 50%;
      -webkit-transform: translateY(-37%) rotate(45deg);
              transform: translateY(-37%) rotate(45deg);
    }
    article .txt-link.txtLink-spH a span::before,
  section .txt-link.txtLink-spH a span::before {
      -webkit-transform: translateY(50%);
              transform: translateY(50%);
    }
    article .txt-link.txtLink-spH a span::after,
  section .txt-link.txtLink-spH a span::after {
      -webkit-transform: translateY(200%) rotate(45deg);
              transform: translateY(200%) rotate(45deg);
    }
}


/*---------------------------------------------------------
よくある質問
---------------------------------------------------------*/
.faq {
  margin-bottom: 10px;
}

.faq h2 {
  margin-bottom: 40px;
  padding-bottom: 10px;
  text-align: center;
  font-size: 3rem;
  font-weight: bold;
  color: #C86432;
  border-bottom: 5px solid #C86432;
}

.faq > div {
  margin-bottom: 40px;
}

.faq > div p,
.faq > div h3 {
  margin-bottom: 0;
  padding: 10px 0 10px 60px;
}

.faq > div h3 {
  font-size: 2.4rem;
  font-weight: bold;
  background: url("../img/icon_que.png") no-repeat;
  background-size: 45px auto;
  background-position: top 6px left 0;
  border-bottom-width: 0;
}

.faq > div p {
  background: url("../img/icon_ans.png") no-repeat;
  background-size: 45px auto;
  background-position: top 6px left 0;
}
.faq .intro {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .faq {
    margin-bottom: 1.3037809648vw;
  }
  
  .faq h2 {
    margin-bottom: 7.8125vw;
    padding-bottom: 1.3020833333vw;
    font-size: 4.9479166667vw;
    border-width: 3px;
  }
  
  .faq > div {
    margin-bottom: 7.8125vw;
  }
  
  .faq > div p,
  .faq > div h3 {
    padding: 1.3020833333vw 0 1.3020833333vw 7.8125vw;
    background-position: top 1.8229166667vw left 0;
  }
  
  .faq > div h3 {
    font-size: 4.1666666667vw;
    background-size: 6.5104166667vw auto;
  }
  
  .faq > div p {
    background-size: 6.5104166667vw auto;
  }
  
}

.date-02 {
  margin-bottom: 100px;
  text-align: center;
}
@media (max-width: 768px) {
  .date-02 {
    margin-bottom: 10.4302477184vw;
  }

}
/*---------------------------------------------------------
例外
---------------------------------------------------------*/

/*アプリダウンロード
--------------------------------------------------*/
.download_app {
  display: block;
  border: 3px solid #3c3c3c;
  background-color: #fff;
  width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.download_app_title {
  display: block;
  background-color: #3c3c3c;
  text-align: center;
  font-weight: bold;
  color: #fff;
  width: 100.4%;
  margin-left: -0.2%;
  font-size: 2.4rem;
  padding: .4% 0;
}

.download_app_info {
  display: block;
  padding: 4% 5%;
  margin-top: -0.2%;
}

.download_app_info ul {
  display: flex;
  justify-content: center;
}

.download_app_info ul li {
  display: flex;
  align-items: center;
}

.download_app_info ul li:first-child {
  margin-right: 5%;
}

.download_app_info ul li figure {
  margin-bottom: 0;
}

.download_app_info ul li span:first-child {
  display: block;
  margin-right: 5%;
}

.btn_appstore,
.btn_googleplay {
  width: 161px;
}

.qr_appstore,
.qr_googleplay {
  width: 80px;
}

@media (max-width: 768px) {
  
  .download_app {
    border: 3px solid #000;
    width: auto;
  }
  
  .download_app_title {
    background-color: #000;
    font-size: 1.8rem;
    margin-top: -0.5%;
    background-image: url("../img/app_jms_icon.png");
    background-repeat: no-repeat;
    background-size: auto 90%;
    background-position: left 3px center;
    border-bottom: 3px solid #3c3c3c;
    padding-left: 5%;
  }  
  
  .btn_appstore,
  .btn_googleplay {
    width: 100%;
    margin-right: 0 !important;
  }  
  
  .btn_appstore img,
  .btn_googleplay img {
    width: 100% !important;
  }

}

/*ピックアップインフォ
--------------------------------------------------*/
.picuptxt {
  display: block;
  text-indent: -1em;
  font-size: 2.4rem;
  font-weight: bold;
  margin-top: 30px;
  margin-bottom: 30px;
  margin-left: 1em;
}

.picuptxt h3 {
  padding-left: 1.3em;
  display: contents;
}

.picuptxt h3::before {
  content: "■";
  color: #FF6432;
}

@media screen and (min-width: 769px) {
  
  .picuptxt .price {
    font-size: 3rem;
  }
  
  .btnLink.simpleLink {
    margin-bottom: 4.5% !important;
  }  
  
  .intro .picuptxt .price {
    margin-left: 1em;
  }  

}

@media (max-width: 768px) {

  .picuptxt {
    font-size: 2rem;
    line-height: 1.4;
  }

  .picuptxt .price {
    font-weight: bold;
    display: inline-block;
    margin-left: 2.5em;
    margin-top: 10px;
  }
  
  .picuptxt small {
     font-size: 1.3rem;
  }

  .btnLink.simpleLink {
    margin-bottom: 8% !important;
  }  

}

