@charset "utf-8";
/* CSS Document */

html, body {
font-family: "Noto Sans JP", "游ゴシック体", YuGothic, "Yu Gothic Medium", "メイリオ", Meiryo, Helvetica, Arial,
"ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif !important;
}

/* 削除 */
.pageHed .lg_sony > ul,
.pageHed .gNav,
.recommendScene,
.official_sns,
.following,
.recommendScene .security,
.nuroLogo,
#entryCorner,
#official_sns {
  display: none;
}

/* クッキーポリシーのみ */
.footer__main__lnk li:not(.cookiepolicy) {
  display: none;
}

/* ガタつき */
body {
  padding-top: 0 !important;
  overflow-x: hidden;
}

.recommendScene .security {
 display: none;
}

/* 調節用 */
.pageHed .lg_sony img {
  width: 7vw;
}

/*-------------------------------------------------------
 トップバナー
-------------------------------------------------------*/

/* フローティングバナー */
.telephone {
  position: fixed;
  bottom: 1vw;
  right: 0;
  z-index:9999;
}

.telephone a {
  background: #000;
  color: #fff;
  width: 17vw;
  font-size: 1vw;
  text-align: center;
  padding: 0.8vw;
  margin: 0 0 0.5vw auto;
  transition: all .2s ease;
  border-radius: 10vw 0 0 10vw;
  font-weight: 700;
}

  .telephone a:nth-of-type(1) {
    background: linear-gradient(90deg, rgb(240 43 73) 0%, rgb(240 43 73) 28%, rgb(255 129 107) 100%);
  }

.telephone a:nth-of-type(2) {
  background: linear-gradient(90deg, rgb(52 197 36) 0%, rgb(52 197 36) 28%, rgb(96 235 128) 100%);
}

.telephone a:hover {
  opacity: 0.8;
  transition: all .2s ease;
}



/* ===========================================================
　CTボタン
=========================================================== */

.ctbtn a {
  background: rgb(247,122,91);
  background: linear-gradient(90deg, rgb(240 43 73) 0%, rgb(240 43 73) 28%, rgb(255 129 107) 100%);
  color: #fff;
  width: 46vw;
  margin: 2vw auto;
  text-align: center;
  font-size: 1.4vw;
  font-weight: 700;
  padding: 1vw;
  border-radius: 100vw;
  position: relative;
  top: 0;
  box-shadow: 0 0.35vw 0 0 #9f5555;
  transition: all .2s ease;
}

.ctbtn a:after {
  content: "";
  width: 1.2vw;
  height: 0.8vw;
  background: url("/assets/img/common/arr_hoso.svg") no-repeat;
  background-size: contain;
  position: absolute;
  top: 50%;
  right: 3vw;
  transform: translateY(-50%);
}

.ctbtn a:hover {
  top: 0.35vw;
  box-shadow: none;
  transition: all .2s ease;
}



/*-------------------------------------------------------
 共通
-------------------------------------------------------*/

article section h2 {
    font-size: 2vw;
    font-weight: 700;
    text-align: center;
    line-height: 2.5vw;
    letter-spacing: 0.2vw;
    margin: 0 0 3vw;
}


/*-------------------------------------------------------
 security
-------------------------------------------------------*/

#security {
  padding: 4vw 0;
  display: flex;
  justify-content: center;
}

#security .wrapper {
  position: relative;
  /* width: 30vw; */
  margin: 0 2vw
}

#security h2 {
  text-align: left;
  margin: 0 0 2vw;
}

#security ul li {
  font-size: 1vw;
  font-weight: 700;
  margin: 0 auto 1vw;
  width: 32vw;
}

#security ul li:before {
  content: "・";
}

#security .wrapper:nth-of-type(1) figure {
  position: absolute;
  top: 3.2vw;
  right: 7.2vw;
  width: 11vw;
}

/* 2番目 */


#security .wrapper:nth-of-type(2) figure {
  position: absolute;
  top: 5.5vw;
  right: -2vw;
  width: 12vw;
}


#security .wrapper:nth-of-type(2) .caution {
  font-size: 0.8vw;
  line-height: 1vw;
  position: relative;
  padding: 0 0 0 1vw;
  display: block;
}

#security .wrapper:nth-of-type(2) .caution:before {
  content: "※";
  position: absolute;
  left: 0;
}




/* ===========================================================
　movie
=========================================================== */

#movie {
  width: 43vw;
  margin: 0 auto;
}


#movie .thumbnail {
    position: relative;
    cursor: pointer;
}

#movie .thumbnail:after {
    content: "";
    background: url("/faq/movie/img/icon-play.png") no-repeat;
    background-size: contain;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 5vw;
    height: 5vw;
}

#movie .txt {
    font-size: 13px;
    padding: 20px 5px;
    line-height: 22px;
}


/*　モーダル再生
------------------------*/

#movie .modal {
    display: none;
    animation: fade .3s ease;
}

@keyframes fade {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

#movie .modal.open {
    position: fixed;
    transition: all .2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 99999999999;
    animation: fade .3s ease;
}

#movie .wrapper {
    text-align: right;
}

#movie .modal iframe {
    width: 800px;
    height: 450px;
}


/* 閉じボタン */

#movie .modal .close_btn {
    color: #fff;
    font-size: 4vw;
    font-weight: 200;
    display: inline-block;
    cursor: pointer;
    opacity: 1;
    transition: all .2s ease;
}

#movie .modal .close_btn:hover {
    opacity: 0.5;
    transition: all .2s ease;
}





/* ===========================================================
　 Advance Plan
=========================================================== */

.advanceplan {
  padding: 6vw 0 2vw;
}

.advanceplan h2 {
  margin: 0 0 6vw
}

.advanceplan ul {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    width: 63vw;
  margin: 0 auto;
}

.advanceplan ul li {
    width: 30vw;
    margin: 0 0 4vw;
    background: #f8f8f8;
    border: solid 1px #efefef;
    padding: 2vw 4vw;
    position : relative;
}

.advanceplan ul li:nth-of-type(n+5) {
    margin: 0;
}


/* ポイント
------------------------*/

.advanceplan ul li .point {
    position: absolute;
    top: -2vw;
    left: 50%;
    transform: translate(-50%);
    font-weight: 700;
    line-height: 1vw;
    letter-spacing: 3px;
    color: #fff;
    background: #f07171;
    text-align: center;
    padding: 1vw 1vw;
    border-radius: 50%;
}

.advanceplan ul li .point span {
  display: block;

    letter-spacing: 1px;
    text-align: center;
}

.advanceplan ul li .point span:nth-of-type(1) {
    font-size: 0.7vw;
    font-weight: 900;
}

.advanceplan ul li .point span:nth-of-type(2) {
    font-size: 1.2vw;
    font-family: Century Gothic, sans-serif;
}

.advanceplan ul li .point:after {
    content: "";
    border: solid 0.5vw transparent;
    border-top: solid 0.8vw #f07171;
    position: absolute;
    bottom: -0.9vw;
    left: 50%;
    transform: translateX(-50%);
}


/* コンテンツ
------------------------*/

.advanceplan ul li h3 {
    font-size: 1.2vw;
    font-weight: 700;
    text-align: center;
    margin: 2vw 0;
    line-height: 1.7vw;
}

.advanceplan ul li h3 span {
  font-size: 1vw;
}

.advanceplan ul li figure {
    width: 100%;
    background: #000;
    margin: 0 0 50px;
}

.advanceplan ul li .txt {
    font-size: 0.9vw;
    padding: 0 0.5vw;
    line-height: 1.3vw;
}

.advanceplan ul li .txt.img span {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 1vw
}

.advanceplan ul li .txt.img span img {
  width: auto;
   height: 3vw;
  display: block;
  margin: 0 1vw 0 0;
}





/* ===========================================================
　floor
=========================================================== */

#floor {
  padding: 6vw 0vw 0;
}

#floor h2 {
  margin: 0 0 4vw;
}

#floor h2 span {
  display: block;
  font-size: 1vw;
}

#floor .wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60vw;
  margin: 0 auto 6vw;
}

#floor .wrapper > figure img {
  width: 20vw;
}

#floor .wrapper .pd {
  margin: 0 0 0 2vw
}

#floor .wrapper .pd li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 0 1.5vw;
}

#floor .wrapper .pd li figure {
  text-align: center;
  width: 5vw;
}

#floor .wrapper .pd li figure img {
  width: auto;
  height: 2vw;
}





#floor .wrapper .pd li .ttl {
  font-size: 1vw;
  font-weight: 700;
  text-align: left;
  width: 13vw;
  line-height: 1.2vw;
  position: relative;
}

#floor .wrapper .pd li .ttl:after {
  content: "：";
  position: absolute;
  top: 50%;
  right: 2vw;
  transform: translateY(-50%);
}

#floor .wrapper .pd li .txt {
  font-size: 1vw;
  font-weight: 500;
  width: 18vw;
  line-height: 1.3vw
}



/* ===========================================================
 keikai
=========================================================== */

#keikai {
  padding: 3vw 3vw;
}

#keikai h2 {
  margin: 0 0 4vw;
}

#keikai h2 span {
  display: block;
  font-size: 1vw;
}

#keikai ul {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 63vw;
  margin: 0 auto;
}

#keikai ul li {
  width: 18vw;
}

#keikai ul li .ttl {
  font-size: 1vw;
  font-weight: 700;
  color: #fff;
  padding: 0.8vw 0;
  text-align: center;
  background: #1a81d0;
  position: relative;
  margin: 0 0 1vw;
}

#keikai ul li .ttl:after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: solid 0.5vw transparent;
  border-top: solid 0.5vw #1a81d0;;
}

#keikai ul li:nth-of-type(2) .ttl {
  background: #ee5050;
}

#keikai ul li:nth-of-type(2)  .ttl:after {
  border-top: solid 0.5vw #ee5050;;
}


#keikai ul li .wrap .lead {
  width: 12vw;
  font-size: 0.8vw;
  line-height: 1.2vw;
  font-weight: 700;
  margin: 0 auto;
}

#keikai ul li .wrap figure {
  width: 12vw;
  margin: 0 auto;
}


/* ===========================================================
　price
=========================================================== */

.price {
  padding: 2vw 0 0;
}

#price.price {
  margin: 0
}

.price h2 {
  margin: 0 0 4vw;
}

.price .set {
  padding: 1vw 3vw 0;
  background: #fff;
  border-radius: 1vw;
  margin: 0 auto 3vw;
  width: 50vw;
}

.price .set > .ttl {
  text-align: center;
  font-size: 2vw;
  font-weight: 700;
  margin: 0 0 2vw;
  padding: 0 0 1vw;
  border-bottom: solid 1px #3e3a39;
}

.price .set .setlist {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  justify-content: center;
  margin: 0 0 1vw;
}

.price .set .setlist li {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  justify-content: space-between;
  margin: 0 1vw 1vw;
  font-weight: 700;
  font-size: 1vw;
}

.price .set .setlist li figure {
  width: auto;
  height: 3.6vw;
  display: inline-block;
  text-align: center;
}

.price .set .setlist li figure img {
  width: auto;
  height: 100%;
}


.price .set .setlist li p {
  display: inline-block;
  text-align: left;
  margin: 0 1vw;
}

.price .set .setlist li span {
  display: block;
}


/* 解サポ用 */

.price .set .setlist li.opkai a {
  color: #1a81d0;
  text-decoration: underline;
  margin: 0.5vw 0 0;
  font-size: 0.8vw;
}


.price .getugaku .keiyaku {
  color: #e48889;
  width: 15vw;
  text-align: center;
  padding: 0.8vw 0;
  font-size: 1.4vw;
  font-weight: 700;
  margin: 0 auto 1vw;
}

.price .getugaku .nijyu {
  background: #f4f4f4;
  padding: 1vw;
  text-align: center;
  font-weight: 700;
  font-size: 1.2vw;
  margin: 0 0 1vw;
}

.price .getugaku .nijyu span {
  text-decoration: line-through;
}

.price .getugaku .first {
  font-size: 1.6vw;
  font-weight: 700;
  text-align: center;
  display: inline-block;
  margin: 0 0 0 1.5vw;
}

.price .getugaku .first span {
  font-family: century-gothic, Century Gothic, sans-serif;
  font-size: 2.6vw;
  letter-spacing: 0;
}

.price .getugaku .second {
  font-size: 1.6vw;
  font-weight: 700;
  text-align: center;
  margin: 0 0 2vw 1vw;
  display: inline-block;
}

.price .getugaku .second span {
  font-family: century-gothic, Century Gothic, sans-serif;
  font-size: 3vw;
  letter-spacing: 0;
}


.price .getugaku a {
  text-align: center;
  color: #1a81d0;
  text-decoration: underline;
  font-weight: 700;
  font-size: 1vw;
  margin: 0 0 2vw;
}

.price .option {
  border-top: solid 1px #ccc;
  padding: 2vw 0;
}

.price .option .ttl {
  font-size: 2vw;
  font-weight: 700;
  text-align: center;
  margin: 0 0 2vw;
}

.price .option ul {
  display: flex;
  align-items: center;
  justify-content: center;
}

.price .option ul li {
  display: flex;
  align-items: center;
  margin: 0 1vw;
}

.price .option ul li figure {
  width: 5vw;
  margin: 0 1vw 0 0;
}

.price .option ul li p {
  font-size: 1.2vw;
  font-weight: 700;
  line-height: 1.5vw;
}

.price .option ul li p a {
  color: #1a81d0;
  text-decoration: underline;
  font-weight: 700;
  font-size: 1vw;
}


.price .ctbtn a {
  background: rgb(247,122,91);
  background: linear-gradient(90deg, rgb(240 43 73) 0%, rgb(240 43 73) 28%, rgb(255 129 107) 100%);
  color: #fff;
  width: 38vw;
  margin: 1vw auto 0;
  text-align: center;
  font-size: 1.2vw;
  font-weight: 700;
  padding: 1vw;
  border-radius: 100vw;
  position: relative;
  top: 0;
  box-shadow: 0 0.35vw 0 0 #9f5555;
  transition: all .2s ease;
}

.price .ctbtn a:after {
  content: "";
  width: 1.2vw;
  height: 0.8vw;
  background: url("/assets/img/common/arr_hoso.svg") no-repeat;
  background-size: contain;
  position: absolute;
  top: 50%;
  right: 3vw;
  transform: translateY(-50%);
}

.price .ctbtn a:hover {
  top: 0.2vw;
  box-shadow: none;
  transition: all .2s ease;
}




/* ===========================================================
 flow
=========================================================== */


#flow {
  padding: 6vw 0;
  background: #d3dbe6
}

#flow h2 {
  text-decoration: none;
  font-size: 3vw;
  margin: 0 0 4vw;
}


#flow ul {
  width: 62vw;
  margin: 0 auto;
  position: relative;
  display: flex;
  justify-content: center;
}

#flow ul:after {
  content: "";
  width: 100%;
  height: 1px;
  background: #3e3a39;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  z-index: 9;
}

#flow ul li {
  background: #fff;
  border: solid 1px #3a3e39;
  margin: 0 2vw 0 0;
  padding: 1.4vw;
  position: relative;
  z-index: 999;
  width: 14vw;
}

#flow ul li:last-of-type {
  margin: 0;
}

#flow ul li .wrapper {
  text-align: center;
  position: relative;
}


#flow ul li .number {
  font-size: 3vw;
  font-family: Century Gothic, Arial;
  font-weight: 700;
  position: relative;
  right: -0.3vw;
}

#flow ul li .lead {
  font-size: 1vw;
  font-weight: 700;
  line-height: 1.4vw;
  display: flex;
  align-items: center;
  justify-content: center;
}

#flow ul li img {
  width: auto;
  height: 3vw;
  display: block;
  margin: 1.5vw auto;
}

#flow .caution {
  width: 62vw;
  margin: 2vw auto 0;
  font-size: 0.8vw;
  line-height: 1.1vw;
  position: relative;
}

#flow ul li:nth-of-type(3) .caution:before {
  content: "※";
}

#flow ul li .caution a {
  display: inline;
  color: #1a81d0;
  text-decoration: underline;
}

#flow ul li .caution a:hover {
  text-decoration: none;
}






/* ===========================================================
 qa
=========================================================== */

#qa {
  padding: 2vw 0 6vw;
}

#qa h2 {
  font-size: 2vw;
  font-weight: 700;
  letter-spacing: 0.3vw;
  text-align: center;
  margin: 0 0 4vw;
}

#qa ul {
  width: 60vw;
  margin: 0 auto;
}

#qa ul li {
  border-top: dotted 1px #ccc;
  font-size: 1.1vw;
}

#qa ul li:last-of-type {
  border-bottom: dotted 1px #ccc;
}

#qa ul li input {
  display: none;
}

#qa ul li .acd-label {
  font-weight: 700;
  display: block;
  position: relative;
  padding: 2vw 0 2vw 3vw;
  transition: all .2s ease;
}

#qa ul li .acd-label:hover {
  opacity: 0.8;
  transition: all .2s ease;
}

#qa ul li .acd-label:after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 1vw;
  transform: translateY(-50%);
  font-size: 1.6vw;
}

#qa ul li input:checked + .acd-label:after {
  content: "－";
  right: 0.8vw;
  top: 52%;


}


#qa ul li .acd-label:before {
  content: "";
  background: url("/lp/trial_remoteconnect/img/ico-q.svg") no-repeat;
  background-size: contain;
  width: 2vw;
  height: 2vw;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

#qa ul li .acd-content {
  font-size: 0.9vw;
  line-height: 1.4vw;
  position: relative;
  padding: 0 0 0 3vw;
  margin: 0 0 2vw;
  display: none;
}

#qa ul li .acd-content a {
  display: inline;
  color: #618fda;
  text-decoration: underline;
}

#qa ul li .acd-content a:hover {
  text-decoration: none;
}

#qa ul li .acd-content:before {
  content: "";
  background: url("/lp/trial_remoteconnect/img/ico-a.svg") no-repeat;
  background-size: contain;
  width: 2vw;



  height: 2vw;
  position: absolute;
  top: 0;
  left: 0;
}





/* ===========================================================
 entry（別ページ）
=========================================================== */

/* price側
--------------------------------*/

.price.entry .ttl span {
  display: block;
  margin: 0 0 1vw;
  font-size: 1.6vw;
}

/* 損保用規約 */
.entryForm .d_kiyaku {
  background: #f4f4f4;
  width: 50vw;
  border-radius: 1vw;
  margin: 2vw auto 4vw;
  padding: 2vw;
  font-size: 0.9vw;
  line-height: 1.4vw;
  text-align: left;
}

.entryForm .d_kiyaku a {
  color: #618fda;
  text-decoration: underline;
}

.entryForm .d_kiyaku a:hover {
  text-decoration: none;
}

/* オプション側
--------------------------------*/

#entry h2 {
  margin: 0 auto 4vw;
  padding: 0 0 2vw;
  font-size: 3vw;
  text-align: center;
  border-bottom: solid 1px #3e3a39;
  width: 50vw;
  text-decoration: none;
}

#entry h2 span {
    margin: 0 0 0 1vw;
  font-size: 2.8vw
}

#entry .option > .ttl {
  font-size: 2vw;
  text-align: center;
  color: #3e3a39;
  font-weight: 700;
  margin: 0 auto;
  padding: 0 0 0.8vw;
  width: 20vw;
}

#entry .option > .lead {
  text-align: center;
  font-weight: 400;
  font-size: 1.2vw
}


/* -----------------------------
 オプション選択
----------------------------- */

#entry .option .flex {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  
}

#entry .option .wrapper {
  background: #fff;
  width: 50vw;
  margin: 4vw 0 4vw;
  border-radius: 1vw;
  text-align: center;
}

#entry .option .wrapper label {
  display: block;
  text-align: left;
}

#entry .option .wrapper label .lb_ttl {
  position: relative;
  font-size: 1.8vw;
  font-weight: 700;
  padding: 0 0 0 3.8vw;
  margin: 0 0 2vw;
  white-space: nowrap;
  cursor: pointer;
  display: inline-block;
}

#entry .option .wrapper label .txt {
  font-size: 1.2vw;
  line-height: 1.8vw;
  margin: 0 0 2vw;
  padding: 0 0 2vw;
  border-bottom: solid 1px #ccc;
  text-align: left;
}

#entry .option .wrapper label .caution .lead {
  font-size: 0.9vw;
  font-weight: 400;
  text-align: left;
  line-height: 1.3vw;
}


#entry .option .wrapper .ttl {
  font-size: 1.6vw;
  font-weight: 700;
  color: #f04b4b;
  text-align: center;
  margin: 0 0 2vw 2vw;
  white-space: nowrap;
  display: inline-block;
}

#entry .option .wrapper .ttl sup {
  font-size: 0.8vw;
  position: relative;
  top: -0.7vw;
}

#entry .option .wrapper .ttl span {
  font-size: 1.6vw;

  color: #3e3a39;
  margin: 0 1vw 0 0
}


label .caution a {
  font-size: 1vw;
  color: #1a81d0;
  text-decoration: underline;
  text-align: right;
  margin: 1.5vw 0 0;
}



/* チェック制御
------------------------*/

/* デフォルト */
#entry .option .wrapper label .lb_ttl:before {
    content: "";
    width: 2.5vw;
    height: 2.5vw;
    background: #d6d6d6;
    border-radius: 3px;
    transition: all .2s ease;
    position: absolute;



    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

/* チェック */

#entry .option .wrapper input[type="checkbox"] {
  display: none;
}

#entry .option .wrapper input[type="checkbox"]:checked + label .lb_ttl:before {
    background: #f56739;
    transition: all .2s ease;
}

#entry .option .wrapper input[type="checkbox"]:checked + label .lb_ttl:after {
    content: "";
    width: 0.6vw;
    height: 1.3vw;
    border-bottom: solid 0.35vw #fff;
    border-right: solid 0.35vw #fff;
    position: absolute;
    top: 40%;
    left: 0.8vw;
    transform: translateY(-50%) rotate(45deg);
    z-index: 99;
}




/* ===========================================================
 entryForm（別ページ）
=========================================================== */

.entryForm {
	background: #fff;
	padding: 0 6vw 0;
	text-align: center;
	color: #3e3a39
}


/* --------------------------------------
 規約
-------------------------------------- */

.entryForm .explan_pdf ul {
  background: #fff;
  padding: 1vw 0;
  margin: 0 auto;
  width: 50vw;
}
  
.entryForm .explan_pdf ul li {
  font-size: 1.1vw;
  margin: 0 0 0.3vw;
  color: #3e3a39;
  font-weight: 400;
  text-align: left;
  width: auto;
  line-height: 1.8vw;
}


/* --------------------------------------
 同意・申込
-------------------------------------- */


.entryForm .apply button  {
  background: rgb(247,122,91);
  background: linear-gradient(90deg, rgb(240 43 73) 0%, rgb(240 43 73) 28%, rgb(255 129 107) 100%) !important;
  color: #fff;
  width: 40vw;
  margin: 0 auto 4vw;
  text-align: center;
  font-size: 1.5vw;
  font-weight: 700;
  padding: 1vw;
  border-radius: 100vw;
  position: relative;
  top: 0;
  box-shadow: 0 0.3vw 0 0 #9f5555;;
  transition: all .2s ease;
}

.entryForm .apply button:before {
  content: "";
  width: 1.6vw;
  height: 1vw;
  background: url("/assets/img/common/arr_hoso.svg") no-repeat;
  background-size: contain;
  position: absolute;
  top: 50%;
  right: 3vw;
  transform: translateY(-50%);
}

.entryForm .apply button:hover {
  top: 0.35vw;
  box-shadow: none;
  transition: all .2s ease;
}


/* ===========================================================
 商品紹介ページはこちら
=========================================================== */
.back {
  background: #fff;
  width: 30vw;
  margin: 0 auto 2vw;
  padding: 1vw 0;
  text-align: center;
  color: #3e3a39;
  border: solid 1px #3e3a39;
  font-size: 1.2vw;
  position: relative;
  border-radius: 0.8vw;
  display: block !important;
  text-decoration: none !important;
}

.back:before {
  content: "";
  width: 1.4vw;
  height: 0.8vw;
  background: url(/assets/img/common/arr_hoso_black.svg) no-repeat;
  background-size: contain;
  position: absolute;
  top: 50%;
  left: 2vw;
  transform: translateY(-50%) rotate(180deg);
}

.back:hover {
	background: #f4f4f4;
	transition: all .2s ease;
}







/* ===========================================================
 telentry(電話)
=========================================================== */

.telentry {
  border-top: solid 1px #ccc;
  padding: 4vw 0 3vw;
  background: #f4f4f4;
  position: relative;
}

.telentry h2 {
  margin: 0 0 2vw;
  font-size: 2vw;
  text-align: center;
}


.telentry .entarea {
  width: 60vw;
  background: #fff;
  margin: 0 auto 2vw;
  border-radius: 0.5vw;
  box-shadow: 0 3px 8px -2px #999;
  position: relative;
  padding: 4vw 0;
  display: flex;
  justify-content: center;
}




.telentry .entarea .manomaent {
  background: #f4f4f4;
  border: solid 1px #e9e9e9;
  padding: 0 3vw;
  text-align: center;
  font-size: 1.4vw;
  font-weight: 700;
  margin: 0 2vw 0 0;
  letter-spacing: 0.1vw;
  display: flex;
  flex-flow: column nowrap;
  align-items: center;
  justify-content: center;
}

.telentry .entarea .manomaent span {
  display: block;
  font-size: 1vw;
  margin: 0.4vw 0 0;
  letter-spacing: 0;
}

.telentry .entarea .manomatel {
  width: 32vw;
  font-size: 1vw;

  line-height: 1.4vw;
}


.telentry .entarea .manomatel a {
  font-size: 3vw;
  font-weight: 700;
  font-family: "Arial", sans-serif;
  letter-spacing: 0.2vw;
  display: block;
  margin: 0 0 1.2vw;
  color: #0c0c0c;
}

.telentry .entarea .manomatel a:hover {
  color: #0c0c0c !important;
}


.telentry .contact a {
  background: rgb(52 197 36);
  background: linear-gradient(90deg, rgb(52 197 36) 0%, rgb(52 197 36) 28%, rgb(96 235 128) 100%);
  color: #fff;
  width: 30vw;
  margin: 2vw auto;
  text-align: center;
  font-size: 1.2vw;
  font-weight: 700;
  padding: 1vw;
  border-radius: 100vw;
  position: relative;
  top: 0;
  box-shadow: 0 0.25vw 0 0 #5c9565;
  transition: all .2s ease;
}

.telentry .contact a:after {
  content: "";
  width: 1.4vw;
  height: 0.8vw;
  background: url("/assets/img/common/arr_hoso.svg") no-repeat;
  background-size: contain;
  position: absolute;
  top: 50%;
  right: 2vw;

  transform: translateY(-50%);
}

.telentry .contact a:hover {
  top: 0.35vw;
  box-shadow: none;
  transition: all .2s ease;
}


.telentry .contact .txt {
  font-size: 1.1vw;
  text-align: center;
  line-height: 1.8vw;
  margin: 0 0 2vw;
  letter-spacing: 0.05vw
}


/* --------------------------------------
 modal(料金)
-------------------------------------- */


.modal_wrapper_in {
  margin: 7vh 0;
  padding: 3vw;
}


#insede {
  width: 50vw;
  margin: 0 auto;
}


/* 表
---------------- */


#insede .campaign_table {
    width: 100%;
    border-top: solid 1px #cacaca;
    border-left: solid 1px #cacaca;
    margin: 0 0 2vw;
}

#insede .campaign_table th {
    background: #f0f7ff;
    text-align: center;
    padding: 0.7vw;
    border-right: solid 1px #cacaca;
    border-bottom: solid 1px #cacaca;
    font-size: 0.8vw;
    vertical-align: middle;
    white-space: nowrap;
}

#insede .campaign_table td {
    border-right: solid 1px #cacaca;
    border-bottom: solid 1px #cacaca;
    text-align: center;
    padding: 0.5vw;
    font-size: 0.8vw;
    vertical-align: middle;
}
#insede .campaign_table .total td {
 font-size: 1.1vw;
 padding: 1vw;
 font-weight: 700;
}

#insede .campaign_table td:nth-of-type(1) {
  text-align: left;
  padding: 1vw 1vw 1vw 1.5vw;
}

#insede .campaign_table tr:nth-of-type(2) td:nth-of-type(1) p {
  font-size: 1vw;
  font-weight: 700;
  margin: 1vw 0 1.5vw;
  line-height: 1.5vw;
}

#insede .campaign_table tr:nth-of-type(2) td:nth-of-type(1) ul {
  display: flex;
  flex-flow: row wrap;
  position: relative;
  left: -0.8vw
}

#insede .campaign_table tr:nth-of-type(2) td:nth-of-type(1) ul li {
  display: flex;
  align-items: center;
  width: 12.5vw;
  margin: 0 1vw 1vw 0

}

#insede .campaign_table tr:nth-of-type(2) td:nth-of-type(1) ul li span {
  margin: 0 0 0 auto;
}

#insede .campaign_table tr:nth-of-type(2) td:nth-of-type(1) ul li figure {
  width: 3vw;
  text-align: center;
}

#insede .campaign_table tr:nth-of-type(2) td:nth-of-type(1) ul li figure img {
  height: 1.4vw;
  display: inline !important;
  margin: 0;
}



#insede .campaign_table .txt {
  line-height: 1.1vw;
}

#insede .campaign_table .txt span {
  display: block;
  font-size: 0.7vw;
}

#insede .campaign_table sup {
  position: relative;
  font-size: 0.6vw;
  top: -0.2vw;
}

#insede .campaign_table td img {
  width: auto;
  height: 2vw;
  display: inline-block;
  vertical-align: middle;
  margin: 0 1vw 0 0;
}

#insede .campaign_table td .tax {
  font-size: 0.7vw;

}

#insede .campaign_table td ul li {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  width: 13vw;
  margin: 0 0 1vw;
}

#insede .caution {
  margin: 0 0 3vw;
}

#insede .caution li {
  font-size: 0.7vw;
  margin: 0 0 1vw;
  line-height: 1vw;
}





#insede .ttl {
  font-size: 32px;
  text-align: center;
  margin: 0 0 50px;
}

#insede .insede_fee {
  margin: 0 0 50px;
}


#insede .insede_fee .subttl {
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 13px;
  padding: 0 0 0 3px;
}

#insede .insede_fee table {
  width: 100%;
  border-bottom: solid 1px #ccc;
  border-right: solid 1px #ccc !important;
  margin: 20px 0 10px;
}

#insede .insede_fee table th,
#insede .insede_fee table td {

  border-top: solid 1px #ccc;
  border-left: solid 1px #ccc;
  padding: 15px 20px;
  font-size: 14px;
  letter-spacing: 0;
  white-space: nowrap;
}

#insede .insede_fee table th:last-of-type,
#insede .insede_fee table td:last-of-type {
  border-right: solid 1px #ccc;
}

#insede .insede_fee table th {
  background: #e4e4e4;
  white-space: normal;
  vertical-align: middle;
  line-height: 16px
}

#insede .insede_fee table th:nth-of-type(n+2) {
  text-align: center;
}

#insede .insede_fee table td span {
  font-size: 12px;
}

#insede .insede_fee table td.bdnone {
  border-left: none;
}

#insede .insede_fee table sup {
  font-size: 10px;
  font-weight: 700;
  position: relative;
  top: -4px;
  margin: 0 0 0 3px;
}

#insede .insede_fee .caution {
  font-size: 12px;
  line-height: 20px;
}

#insede .insede_fee .tanka td {
  text-align: center;
}



/* -----------------------------
 電話モーダル
----------------------------- */

#telMo {
  width: 50vw;
}

#telMo .telentry {
  background: #fff;
  padding: 1vw 0;
  margin: 0;
  border: none;
}

#telMo .telentry .entarea {
  width: 50vw;
  margin: 0 auto 2vw;
  padding: 3vw;
}




