@charset "UTF-8";
/*===========================
reset
===========================*/
html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite,
code, del, dfn, em, img, ins, kbd, q, samp, small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li, 
fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, 
details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
}
html {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-size: 62.5%;
  cursor: default;
  /* 1 */
  line-height: 1.5;
  /* 2 */
  -moz-tab-size: 4;
  /* 3 */
  -o-tab-size: 4;
  tab-size: 4;
  /* 3 */
  -webkit-tap-highlight-color: transparent;
  /* 4 */
  -ms-text-size-adjust: 100%;
  /* 5 */
  -webkit-text-size-adjust: 100%;
  /* 5 */
  word-break: break-word;
  /* 6 */
}
body {
  font-size: 1.6rem;
  font-family: "Hiragino Kaku Gothic ProN", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, Meiryo, sans-serif;
  line-height: 1.75;
  letter-spacing: 0.03em;
  color: #000;
  -webkit-font-smoothing: antialiased;

  counter-reset: p-set_num 0 p-method_num -1 information_num 0;;
}
main {
  display: block;
  padding-top: 63px;
}
table {
  table-layout: fixed;
  border-collapse: collapse;
  border-spacing: 0;
}
fieldset {
  border: 1px solid #a0a0a0;
  /* 1 */
  padding: 0.35em 0.75em 0.625em;
  /* 2 */
}
img {
  max-width: 100%;
  height: auto;
}
audio, canvas, iframe, img, svg, video {
  vertical-align: top;
}
address, caption, cite, code, dfn, em, strong, var {
  font-style: normal;
  font-weight: normal;
}
ol, ul {
  list-style: none;
}
caption, th {
  font-weight: normal;
  text-align: left;
}
h1, h2, h3, h4, h5, h6 {
  font-size: 100%;
  font-weight: normal;
}
area {
  border: none;
  outline: none;
}
abbr, acronym {
  border: 0;
}
* {
  box-sizing: border-box; 

  -webkit-box-sizing: border-box;
}
input, textarea {
  border: 0;
  outline: none;
  font-family: inherit;
  font-size: 100%; 
}
button {
  appearance: none;
  cursor: pointer;
  margin: 0;
  padding: 0;
  background-color: transparent;
  border: 0;
  border-radius: 0;
  outline: none;
  font: inherit; 

  -webkit-appearance: none;
  -moz-appearance: none;
}
input[type=submit], input[type=button] {
  cursor: pointer;
}
input, textarea {
}
a {
  outline: none;
  color: #000;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
figure {
  line-height: 0;
}
a:link, a:active, a:visited {
  text-decoration: none;
}
@media screen and (max-width: 1200px) {
  html {
    font-size: 0.83vw;
  }
}
@media print, screen and (min-width: 768px) {
  body {
    width: 100%;
    min-width: 1400px;
  }
  main {
    min-width: 1216px;
  }
}
@media screen and (max-width: 767px) {
  html {
    font-size: 2.4vw;
  }
  html.hidden {
    overflow: hidden;
  }
  body {
    min-width: 100vw;
    position: relative;
  }
  main{
    padding-top: 45px;
  }
}

.u-fixed{
  position: fixed;
  width: 100%;
  overflow-y: scroll;
}

/* component ------------------------*/
.c-h1{
  font-size: 34px;
  font-weight: 600;
  line-height: 1;
  margin-bottom: 25px;
}
@media screen and (max-width: 767px) {
  .c-h1{
    font-size: 22px;
    line-height: 1.5;
    margin-bottom: 15px;
  }
}

/* header ------------------------*/
header{
  width: 100%;
  position: fixed;
  top: 0;
  z-index: 10;
  transition: .4s;
  background: #FFFFFF;
}
header.scroll_active {
  top: -70px;
}
.l-header__inner {
  padding: 16px 10vw;
  border-bottom: 1px solid #DEDEDE;
  text-align: center;
}
.l-header__inner a{
  display: flex;
  justify-content: center;
}
.l-header__inner a span{
  font-size: 17px;
  line-height: 31px;
  font-weight: bold;
  display: block;
}
.l-header__inner a img{
  padding-left: 10px;
}
.l-header__button{
  width: 63px;
  height: 63px;
  position: absolute;
  background-color: #1A1A1C;
  top: 0;
  right: 0;
  cursor: pointer;
}
.l-header__button span,
.l-header__button::before,
.l-header__button::after{
  content: "";
  display: block;
  width: 35px;
  height: 3px;
  background-color: #FFFFFF;
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
}
.l-header__button::before{
  top: 30%;
}
.l-header__button span{
  top: 46%;
}
.l-header__button::after{
  top: 63%;
}
@media screen and (max-width: 767px) {
  .l-header__inner {
    padding: 7px 20px;
    text-align: right;
  }
  .l-header__inner a span{
    font-size: 12px;
    line-height: 30px;
  }
  .l-header__inner img {
    max-width: 92px;
    width: 100%;
  }
  .l-header__button{
    width: 44px;
    height: 44px;
  }
  .l-header__button span,
  .l-header__button::before,
  .l-header__button::after{
    width: 24px;
    height: 2px;
  }
}

.l-header__button.inactive {
  display: none !important;
}
/* menu ------------------------*/
.l-menu{
  position: fixed;
  z-index: 3;
  width: 100%;
  height: 0;
}
.l-menu .l-menu_bk{
  position: absolute;
  width: 100%;
  height: 120vh;
  right: -100%;
  background-color: rgba(0, 0, 0, .2);
  transition: .3s;
}
.l-menu .l-menu_bk.active{
  right: 0;
}
.l-menu .l-menu_ul{
  background-color: #FFFFFF;
  height: 120vh;
  width: 375px;
  padding: 143px 32px;
  position: absolute;
  right: -375px;
  transition: .3s;
}
.l-menu .l-menu_ul.active{
  right: 0;
}
.l-menu .l-menu_ul li{
  font-size: 18px;
  line-height: 27px;
  font-weight: bold;
  margin-bottom: 24px;
}

@media screen and (max-width: 767px) {
  .l-menu .l-menu_ul{
    width: 100%;
    right: -100%;
  } 

  .l-menu .l-menu_ul.active{
    right: 0;
  }
}

/* section ------------------------*/
.p-section__inner{
  width: 100%;
  padding: 0 8px;
  margin: 0 auto;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
@media print, screen and (min-width: 768px) {
  .p-section__inner{
    width: 1216px;
  }
}
@media screen and (max-width: 767px) {
  .p-section__inner{
    padding: 0 15px;
  }
}

/* kv ------------------------*/
.p-set__inner {
  padding-top: 10px;
  padding-bottom: 10px;
}
.p-kv__btn{
  display: block;
  max-width: 100%;
  min-width: 280px;
  width: fit-content;
  margin: 0 auto;
  border-radius: 27px;
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  padding: 19px;
  position: relative;
  background-color: #E0E0E0 !important;
  color: #8B8B8B !important;
  border-color: #E0E0E0 !important;
  transition: 0.5s;
  text-align: center;
  text-decoration:none;
}

.p-kv__btn_move_section{
  padding-right: 40px !important;
}

.p-kv__btn.active{
  display: block;
  max-width: 100%;
  min-width: 280px;
  width: fit-content;
  margin: 0 auto;
  border-radius: 27px;
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  padding: 19px;
  position: relative;
  background-color: #FFFFFF;
  color: #D9A634;
  border: 1.5px solid #D9A634;
  transition: 0.5s;
  text-align: center;
  text-decoration:none;
}
.p-kv__btn.active::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  border-right: 2px solid #D9A634;
  border-bottom: 2px solid #D9A634;
  transform: rotate(45deg);
  right: 8%;
}
.p-kv__btn_move_section::after{
  right: 0% !important;
  left: calc(100% - 30px) !important;
}

.p-kv__btn.active:hover{
  background-color: #D9A634;
  color: #FFFFFF;
}
.p-kv__btn.active:hover::after{
  border-right: 2px solid #FFFFFF;
  border-bottom: 2px solid #FFFFFF;
}
.p-kv__btn.p-kv__guide{
  background-color: #D9A634;
  color: #FFFFFF;
}
.p-kv__btn.p-kv__guide::after {
  border-right: 2px solid #FFFFFF;
  border-bottom: 2px solid #FFFFFF;
}
.p-kv__btn.p-kv__guide:hover{
  background-color: #FFFFFF;
  color: #D9A634;
}
.p-kv__btn.p-kv__guide:hover::after{
  border-right: 2px solid #D9A634;
  border-bottom: 2px solid #D9A634;
}
.p-kv__btn.p-kv__guide.application-btn{
  background-color: #E0E0E0;
  color: #8B8B8B;
  border-color: #E0E0E0;
  transition: .3s;
}
.p-kv__btn.p-kv__guide.application-btn::after{
  display: none;
}
.p-kv__btn.p-kv__guide.application-btn.active{
  background-color: #D9A634;
  color: #FFFFFF;
  border-color: #D9A634;
}
.p-kv__btn.p-kv__guide.section-btn{
  background-color: #D9A634;
  color: #FFFFFF;
  border-color: #D9A634;
}
.p-kv__btn.p-kv__guide.section-btn::after{
  display: none;
}


@media screen and (max-width: 767px) {
  .p-kv__btn {
    max-width: 100%;
    min-width: 280px;
    width: fit-content;
    font-size: 14px;
    padding: 14px;
  }
  
  h2{
    font-size: 20px;
    line-height: 30px;
    font-weight: 600;
    padding-top: 52px;
    text-align: center;
    margin-bottom: 0;
    font-family: "Hiragino Kaku Gothic ProN";
  }
}

/* point ------------------------*/
.p-point{
  min-width: 1400px;
  background-color: #f5f5f5;
  padding: 32px 0 40px;
  position: relative;
}

.p-point .p-section__inner{
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding-top: 10px;
}
.p-point__column-slick{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.p-point__box{
  width: 31.25%;
  background-color: #FFFFFF;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 18px 10px 18px 24px;
  position: relative;
  -webkit-box-pack: start !important;
  justify-content:left !important;
}
.p-point__box:nth-of-type(3){
  padding-top: 17px;
}

@media screen and (max-width: 767px) {
  .p-point{
    min-width: 100%;
    padding-bottom: 0;
  }

  .p-point .p-section__inner{
    padding: 7px 0 59px;
    position: relative;
  }
  .p-point .slick-arrow{
    display: block;
    background-color: unset;
    width: 50px;
    height: 50px;
    position: absolute;
    top: 60px;
  }
  .p-point .slick-arrow.slick-disabled,
  .p-set .slick-arrow.slick-disabled{
    display: none !important;
  }
  .p-point .prev-arrow,
  .p-set .prev-arrow{
    left: 7px;
    transform: rotate(180deg);
  }
  
  .p-point .next-arrow,
  .p-set .next-arrow{
    right: 7px;
  }
  .p-point .slick-track{
    padding-top: 20px;
  }
  .p-point__box{
    padding: 9px 12px;
    width: 310px !important;
  }
  .p-point__box:last-of-type{
    margin-right: 0;
  }
}

/* menu ------------------------*/
.p-menu {
  background-color: #f5f5f5;
  padding: 25px 0 24px;
  width: 100%;
  margin: 0 auto;
}
.p-menu .p-section__inner{
  max-width: 670px;
  padding-top: 25px;
  padding-bottom: 24px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

@media screen and (max-width: 767px) {
  .p-menu{
    padding: 20px 0;
  }
}

/* apply-------------------------*/
.p-information{
  width: 1400px;
  margin: 0 auto;
}
.p-information .p-information_box{
  border: 1px solid #dedede;
  max-height: 429px;
  width: 994px;
  margin: 0 auto 28px;
  padding: 24px 22px;
  overflow-y: scroll;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.p-information .p-information_box::-webkit-scrollbar{
  display: none;
}
.p-information .p-information_check{
  margin: 0 auto 27px;
}
.p-information .p-information_check label {
    font-size: 15px;
    line-height: 24px;
    padding: 20px;
    margin: 0 auto;
    display: table;
    cursor: pointer;
    transition: .3s;
}
.p-information .p-information_check input{
    width: 14px;
    height: 14px;
    vertical-align: middle;
    margin-top: 0;
    margin-right: 10px;
}
.p-information .p-information_check p{
  font-size: 14px;
  line-height: 28px;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  margin: auto 0;
}
.p-information .p-information_check input:hover{
  opacity: .7;
}

@media screen and (max-width: 767px) {
  .p-information{
    width: 100%;
  }
  .p-information .p-information_box{
    max-height: 530px;
  }
  .p-information .p-information_box{
    width: 100%;
    padding: 22px 19px;
  }
}

/* lineup ------------------------*/
.p-lineup{
  width: 1400px;
  margin: 0 auto;
}
.p-lineup .p-section__inner{
  padding-top: 71px;
  padding-bottom: 57px;
}
@media screen and (max-width: 767px) {
  .p-lineup{
    width: 100%;
  }
  .p-lineup .p-section__inner{
    padding-top: 0;
    padding-bottom: 41px;
  }
}

/* modal ------------------------*/
.p-modal__close{
  font-size: 24px;
  line-height: 1;
  transition: 0.3s;
  text-align: end;
}
.p-modal__close span{
  cursor: pointer;
}
.p-modal__close span:hover{
  opacity: 0.6;
}

@media screen and (max-width: 767px) {
  .p-modal__close{
    font-size: 22px;
  }
}

/* set ------------------------*/
.p-set__column-slick{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.slick-initialized .slick-slide.p-set__box{
  max-width: 376px;
  width: 100%;
  padding: 22px 0 15px;
  margin: 0 18px;
  position: relative;
}
.p-set__box > .c-column{
  width: 85%;
  margin: 0 auto;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-bottom: 9px;
}
.p-set__box .p-set_title{
  line-height: 26px;
  text-align: center;
  position: absolute;
  top: 4px;
  left: 16px;
  display: block;
  min-width: 200px;
  max-width: 100%;
  width: fit-content;
  text-align: left;
}
.p-set__box-inner{
  background-color: #F5F5F5;
  width: 100%;
  height: 100%;
  padding: 8px 20px;
}
.p-set {
  background-color: #ffffff;
  padding-top: 78px;
  padding-bottom: 25px;
}
.p-set .slick-dots{
  /* bottom: 2%; */
  bottom: 10px;
}
@media screen and (max-width: 767px) {
  .slick-initialized .slick-slide.p-set__box{
    padding-top: 18px;
  }
  .p-set {
    padding: 44px 0 0;
    min-width: 100%;
  }
  .p-set__box{
    padding: 16px 0 7px;
    align-content: flex-start;
  }
  .p-set__box:last-of-type{
    margin-right: 0;
  }
  .p-set__box > .c-column{
    padding: 0 0 6px;
  }
  .p-set__box-inner{
    width: 315px;
    padding: 8px 16px 23px;
  }
  .p-set__box .p-set_title{
    top: 4px;
    left: 44px;
    display: block;
    min-width: 100px;
    max-width: 315px;
    width: fit-content;
  }
  .p-set .slick-arrow{
    display: block;
    background-color: unset;
    width: 50px;
    height: 50px;
    position: absolute;
    /* top: 231px; */
    top: 50%;
  }
  .p-set__column-slick .slick-dots {
    /* bottom: 4.5%; */
    bottom: 20px;
  }
}

/* faq ------------------------*/
.p-faq {
  width: 1000px;
  padding: 80px 1.25em 0;
  margin: 0 auto;
}
.p-faq__lists {
  border-bottom: 1px solid #DEDEDE;
}
.p-faq__txt_wrap {
  margin: auto 0;
  width: 94%;
}
.p-faq__txt {
  width: calc(100% - 3em);
  font-size: 14px;
  font-weight: 400;
  margin: auto 0;
}
.p-faq__en {
  display: block;
  width: 6%;
  font-size: 30px;
  line-height: 1;
}
.p-faq__question {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  border-top: 1px solid #DEDEDE;
  background: #fff;
  padding: 22px 4em 22px 2em;
  cursor: pointer;
}
.p-faq__question::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 1.2em;
  width: 1.6em;
  height: 0.84em;
  background: url(/img/noifulSite/common/ico_accordion_down.svg) 0 0 no-repeat;
  background-size: 100% auto;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.p-faq__question--open::after {
  background: url(/img/noifulSite/common/ico_accordion_up.svg) 0 0 no-repeat;
  background-size: 100% auto;
}
.p-faq__answer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  position: relative;
  background: #F5F5F5;
  border-top: 1px solid #DEDEDE;
  padding: 22px 4em 22px 2em;
}
.p-faq__answer a {
  text-decoration: underline;
}
.p-faq__answer a:hover {
  text-decoration: none;
}

@media screen and (max-width: 767px) {
  .p-faq {
    width: 90%;
    padding: 0;
    display: block;
    margin-top: 52px;
  }
  .p-faq__lists {
    margin-bottom: 80px;
  }
  .p-faq__txt_wrap {
    width: 67vw;
  }
  .p-faq__question {
    padding: 20px 10vw 20px 5vw;
  }
  .p-faq__question::after {
    right: 2.5vw;
    width: 4.8vw;
    height: 2.9vw;
  }
  .p-faq__answer {
    padding: 20px 10vw 20px 5vw;
  }
  .p-faq__en {
    font-size: 24px;
    width: 1.5em;
  }
}
/*include ------------------*/
#frame {
  max-width:1200px;
  width:100%;
  margin:0 auto;
  display:block;
}
.p-note_list {
  margin-top: 34px;
}
.p-note_list li {
  font-size: 11px;
  display: inline-block;
  position: relative;
  padding-left: 25px;
}
.p-note_list li:nth-child(1) {
  margin-right: 35px;
}
.p-note_list li span {
  position: absolute;
  top: 0;
  left: 0;
}
/* クリップボード内
  .p-announce__inner {
  border: #DDDDDD solid 1px;
  margin: 5px auto 19px;
  padding: 28px 39px 23px;
}*/
.p-float__inner {
  position: fixed;
  bottom: 0;
  width: 100%;
  z-index: 10;
  background: #fff;
  box-shadow: 0px -3px 10px #0000002E;
  padding: 8px 15px;
  text-align: center;
  transition: 0.3s;
}
.p-float__inner.scroll_down {
  bottom: -80px;
}
.p-float__button::before {
  content: "";
  display: block;
  position: absolute;
  width: 28px;
  height: 28px;
  right: 255px;
  top: 10px;
  background: url(/img/noifulSite/different/icon_coin.svg) no-repeat;
  background-size: cover;
}
.p-float__button::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  border-right: 2px solid #FFFFFF;
  border-top: 2px solid #FFFFFF;
  transform: rotate(45deg);
  right: 8%;
  top: calc(50% - 6px);
}
.p-float__button.p-float__enable {
  background-color: #D9A634;
  border: 2px solid #D9A634;
  cursor: pointer;
}
.p-float__button,
.p-request__button {
  max-width: 350px;
  width: 100%;
  display: block;
  margin: 0 auto;
  border-radius: 500px;
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  padding: 17px 36px 16px 36px;
  position: relative;
  color: #FFFFFF;
  transition: 0.5s;
  text-align: center;
  text-decoration: none;
  background-color: #8B8B8B;
  border: 2px solid #8B8B8B;
  cursor: default;
}
.p-float__button#flex_button,
.p-request__button {
  background-color: #D9A634;
  border: 2px solid #D9A634;
}
.p-request__button::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  border-right: 2px solid #FFFFFF;
  border-top: 2px solid #FFFFFF;
  transform: rotate(135deg);
  right: 8%;
  top: calc(50% - 8px);
  transition: .3s;
}
.p-float__button.p-float__enable:hover {
  border: #D9A634 solid 2px;
  background: #fff;
  color: #D9A634;
}
.p-float__button.p-float__enable:hover::before {
  background-image: url(/img/noifulSite/different/icon_coin_white.svg);
}
.p-float__button.p-float__enable:hover::after {
  border-right: 2px solid #D9A634;
  border-top: 2px solid #D9A634;
}
#product_modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 20;
  overflow: auto;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
#product_modal.js-active {
  opacity: 1;
  visibility: visible;
}
#simulation_modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 20;
  overflow: auto;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
#simulation_modal.js-active {
  opacity: 1;
  visibility: visible;
}
.p-product__inner {
  max-width: 740px;
  width: 100%;
  height: fit-content;
  max-height: 80%;
  display: flex;
  flex-direction: column;
  z-index: 30;
  font-family: sans-serif;
}
.p-transition-product__inner {
  max-width: 650px;
  width: 100%;
  height: fit-content;
  max-height: 80%;
  display: flex;
  flex-direction: column;
  z-index: 30;
  font-family: sans-serif;
}
.p-product__contents {
  background-color: #FFFFFF;
  border: 1px solid #000000;
  overflow-y: auto;
}
.p-simulation__contents {
  background-color: #FFFFFF;
  border: 1px solid #a9a9a9;
  overflow-y: auto;
  padding: 30px 50px 40px;
}

.p-simulation__contents .hide{
  display: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

.p-transition__contents {
  background-color: #FFFFFF;
  border: 1px solid #A9A9A9;
  overflow-y: auto;
  padding: 30px 40px 15px;
}

.p-transition__contents .hide{
  display: none !important;
  margin: 0 !important;
  padding: 0 !important;
}
.transition__button_area {
  display: flex;
  justify-content: flex-end;
}
.transition__result {
  display: block;
  font-size: 14px;
  line-height: 35px;
  background-color: #D9A634;
  color: #FFFFFF;
  border-radius: 5px;
  margin-right: 20px;
  width: 80px;
  height: 35px;
  text-align: center;
}
.transition__cancel {
  display: block;
  font-size: 14px;
  line-height: 35px;
  background-color: #FFFFFF;
  color: #696969;
  border: 1px solid #696969;
  border-radius: 5px;
  width: 100px;
  height: 35px;
  text-align: center;
}
.p-product__outer.active {
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255,255,255,.8);
  z-index: 20;
  cursor: pointer;
}
.p-transition__outer.active {
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(200,200,200,.8);
  z-index: 20;
  cursor: pointer;
}
.p-simulation__head {
  font-size: 14px;
  font-weight: bold;
  text-align: center;
  padding-bottom: 6px;
}
.p-simulation__select-inner {
  border-top: #DDDDDD 1px solid;
  border-bottom: #DDDDDD 1px solid;
}
.p-simulation__line {
  display: flex;
  padding: 12px 0;
}
.p-simulation__line + .p-simulation__line {
  border-top: #DDDDDD 1px dashed;
}
.p-simulation__product {
  width: calc((100% - 1px) / 2);
  display: flex;
}
.p-simulation__product:nth-child(odd) {
  border-right: #DDDDDD 1px dashed;
}
.p-simulation__product:nth-child(even) {
  padding-left: 25px;
}
.p-simulation__product img {
  width: 80px;
}
.p-simulation__product-text {
  font-size: 12px;
  line-height: 1.3;
  padding: 8px 0 8px 15px;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: space-between;
}
.p-simulation__label {
  background: #DDDDDD;
  border-radius: 20px;
  display: block;
  position: relative;
  width: 62px;
  height: 19px;
}
.p-simulation__label label {
  background: #000000;
  border-radius: 20px;
  color: #fff;
  position: absolute;
  width: 15px;
  height: 15px;
  line-height: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  top: calc(50% - 7.5px);
  cursor: pointer;
}
.p-simulation__label label:hover {
  opacity: 0.6;
}
.p-simulation__label label:nth-child(1) {
  left: 2px;
}
.p-simulation__label label:nth-last-child(1) {
  right: 2px;
}
.p-simulation__label p {
  text-align: center;
  line-height: 1;
  padding-top: 4px;
}
.p-simulation__label .label_multiple_disabled {
  background: #aaaaaa;
  cursor: default;
}
.p-simulation__label .label_multiple_disabled:hover {
  opacity: 1;
}
.p-simulation__select-price {
  text-align: left;
  font-size: 14px;
	line-height: 21px;
  font-weight: 700;
  padding: 24px 0 12px;
	margin: 0;
}
.p-simulation__saleinfo{
	margin: 0 0 8px;
	gap: 8px;
  display: flex;
  flex-flow: column;
}
.p-simulation__saleinfo li{
	margin: 0;
	padding: 0;
  height: 23px;
  position: relative;
}
.p-simulation__saleinfo li span{
  color: #ffffff;
	font-size: 10px;
	font-weight: 600;
	line-height: 23px;
  background-color: #d9a634;
	margin: 0;
	padding: 0 12px;
  display: inline-block;
  height: 23px;
  position: absolute;
  top: 0;
  left: 0;
}
.p-simulation__select-text {
  text-align: center;
  font-size: 16px;
  font-weight: 100;
  margin: 16px 0 28px;
}
.p-simulation__select-clear {
  text-align: center;
  font-size: 16px;
  font-weight: 400;
  padding: 4px 50px 40px;
}
.p-simulation__select-clear a {
  color: #000;
  text-decoration: underline;
  font-size: 14px;
  font-weight: bold;
}
.p-simulation__select-clear a:hover {
  opacity: 0.8;
  text-decoration: none;
}
.p-simulation__select-note {
  text-align: center;
  padding: 2px 50px 21px;
  font-size: 16px;
}
.p-simulation__select-note .p-banner__inner {
  margin-top: 0;
}
.p-simulation__select-note a {
  text-decoration: underline;
}
.p-simulation__select-note a:hover {
  text-decoration: none;
  opacity: 0.8;
}
.p-slidearea{
  padding: 0;
  border-bottom: 1px solid #DEDEDE;
}
.p-slidearea .p-announce__title span{
  font-size: 14px;
  position: relative;
  font-weight: 600;
  padding: 22px;
  display: block;
  line-height: 1;
  border-top: 1px solid #DEDEDE;
}
.p-slidearea .p-announce__title span img{
  position: absolute;
  top: 0;
  bottom: 0;
  right: 28px;
  display: block;
  width: 27px;
  height: 14px;
  margin: auto 0;
  transition: 0.5s;
}
.p-slidearea .p-announce__title span img.open{
  rotate: 180deg;
}
.p-simulation__price {
  font-size: 18px;
  font-weight: 600;
  color: #000000;
  margin-bottom: 24px;
}
.p-simulation__price.sale {
  color: #d9a634;
  margin-bottom: 0;
}
.p-simulation__price .p-simulation__discount{
  color: #f03333;
  font-size: 17px;
  font-weight: 500;
  line-height: 26px;
  margin-right: 8px;
  vertical-align: text-bottom;
  display: inline-block;
  height: 24px;
}
.p-simulation__price .p-simulation__amount {
	font-size: 26px;
	line-height: 39px;
	font-weight: 600;
	font-family: sans-serif;
  margin-right: 2px;
}
.p-simulation__price .p-simulation__beforeamount {
	color: #000000;
	font-size: 15px;
	line-height: 22.5px;
	font-weight: 400;
	text-decoration-line: line-through;
	padding-left: 6px;
}
.p-simulation__saleperiod{
	font-size: 12px;
	font-weight: 250;
	line-height: 18px;
	margin-bottom: 12px;
}

.p-simulation__couponkinds{
	padding: 0;
	padding-left: 12px;
	padding-right: 32px;
	display: inline-block;
	height: 23px;
	background-color: #f5f5f5;
	border-radius: 4px;
	font-size: 10px;
	line-height: 23px;
	font-weight: 600;
	position: relative;
}
.p-simulation__couponkinds span{
	display: block;
	width: 9px;
	height: 9px;
	position: absolute;
	top: 0;
	right: 13.5px;
	bottom: 0;
	margin: auto 0;
}
.p-simulation__couponkinds span::before,
.p-simulation__couponkinds span::after{
	content: "";
	display: block;
	width: 12px;
	height: 1px;
	background-color: #000000;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	margin: auto;
}
.p-simulation__couponkinds span::before{
	transform: rotate(45deg);
}
.p-simulation__couponkinds span::after{
	transform: rotate(-45deg);
}
.p-simulation__coupon{
  padding: 24px 0 32px;
	margin: 24px 0 0;
  display: flex;
	flex-wrap: wrap;
  border-top: 1px solid #dddddd;
  position: relative;
}
.p-simulation__coupon .p-simulation__coupon_box{
  display: block;
  width: 23px;
  height: 23px;
  position: absolute;
  top: 30px;
  left: 270px;
  cursor: pointer;
}
.p-simulation__coupon .p-simulation__coupon_box.noncoupon::before,
.p-simulation__coupon .p-simulation__coupon_box.noncoupon::after {
  content: "";
  height: 1px;
  width: 20px;
  background-color: #888888;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  z-index: 1;
}
.p-simulation__coupon .p-simulation__coupon_box.noncoupon::before{
  rotate: 45deg;
}
.p-simulation__coupon .p-simulation__coupon_box.noncoupon::after {
  rotate: -45deg;
}
.p-simulation__coupon .p-simulation__coupon_input {
  display: block;
  width: 300px;
  height: 34px;
  box-sizing: border-box;
  border: 1px solid #DDDDDD;
  border-radius: 4px;
  line-height: 32px;
  padding-left: 16px;
  font-size: 12px;
  font-weight: 200;
  font-family: sans-serif;
  margin-right: 12px;
  position: relative;
}
.p-simulation__coupon .p-simulation__coupon_input.noncoupon {
  border-color: #f03333;
}
.p-simulation__coupon .p-simulation__noncoupon{
  display: none;
}
.p-simulation__coupon .p-simulation__noncoupon.noncoupon {
  display: block;
  color: #f03333;
  font-size: 12px;
  line-height: 18px;
  width: 100%;
  padding-top: 10px;
}
.p-simulation__coupon .p-simulation__coupon_button {
  font-size: 14px;
  font-weight: 500;
  font-family: sans-serif;
  line-height: 32px;
  color: #888888;
  display: block;
  width: 68px;
  height: 34px;
  border: 1px solid #888888;
  border-radius: 4px;
  transition: .3s;
}
.p-simulation__coupon .p-simulation__coupon_button.move {
  color: #D9A634;
  border-color: #D9A634;
}
.p-simulation__coupon .p-simulation__coupon_info{
	padding-top: 16px;
	width: 100%;
	font-size: 12px;
	font-weight: 700;
	line-height: 18px;
	padding-left: 26px;
	position: relative;
}
.p-simulation__coupon .p-simulation__coupon_info span{
	display: block;
	width: 18px;
	height: 18px;
	border-radius: 100%;
	background-color: #d9a634;
	position: absolute;
	border: 0px solid red;
	left: 0;
	bottom: 0;
}
.p-simulation__coupon .p-simulation__coupon_info span::after{
	content: "";
	display: block;
	width: 5px;
	height: 9px;
	border-right: 2px solid #ffffff;
	border-bottom: 2px solid #ffffff;
	transform: rotate(45deg);
	position: absolute;
	top: 2px;
	left: 5px;
}
.p-simulation__coupon .p-simulation__couponImg{
  width: 100%;
}
.p-simulation__coupon .p-simulation__coupon_img{
	padding-top: 24px;
	width: 100%;
}
.p-simulation__coupon .p-simulation__coupon_img picture{
	display: block;
	width: 100%;

}
.p-simulation__coupon .p-simulation__coupon_img picture img{
	display: block;
	width: 100%;
}
.p-simulation__coupon .p-simulation__coupon_img figcaption{
	padding-left: 12px;
	font-size: 12px;
	font-weight: 200;
	line-height: 18px;
}
.p-simulation__gray {
  background: #F5F5F5;
  margin: 0 50px 30px;
  padding: 18px 25px 20px;
}
.p-simulation__gray p {
  font-size: 12px;
  padding-bottom: 14px;
}
.p-simulation__copy {
  max-width: 280px;
  width: 100%;
  display: block;
  border-radius: 27px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  padding: 19px 19px 19px 45px;
  margin: 0 auto;
  position: relative;
  color: #FFFFFF;
  background-color: #000000;
  transition: 0.5s;
  text-align: center;
  text-decoration: none;
}
.p-simulation__copy::before {
  content: "";
  display: block;
  width: 14px;
  height: 17px;
  position: absolute;
  top: 17px;
  left: 30px;
  background: url(/img/noifulSite/common/icon_copy.svg) no-repeat;
  background-size: cover;
}
.p-simulation__copy:hover {
  background-color: #8B8B8B;
}
.p-simulation__fixed {
  position: sticky;
  bottom: 0;
  box-shadow: 0px 0px 8px #0000002E;
  background: #fff;
  padding: 8px;
}
.p-simulation__fixed .p-method__btn {
  max-width: 350px;
  padding: 19px 19px 19px 42px;
}
.p-simulation__fixed .p-method__btn::before {
  left: 113px;
}
.l-display__pc {
  display: block !important;
}
.l-display__sp {
  display: none !important;
}
.p-simulation__service-inner {
  width: calc(100% - 100px);
  margin: 0 auto;
  background: #F5F5F5;
}
.p-simulation__service-inner + .p-simulation__service-inner {
  margin-top: 20px;
}
.p-simulation__service-title {
  background: #000000;
  color: #FFFFFF;
  font-size: 15px;
  text-align: center;
  padding: 9px 0 10px;
  line-height: 1;
}
.p-simulation__inquiry-inner {
  display: flex;
  padding: 20px 30px 0;
  flex-wrap: wrap;
  justify-content: space-between;
}
.p-simulation__inquiry-inner:last-of-type {
  padding-bottom: 28px;
}
.p-simulation__inquiry-bold{
  font-size: 15px;
  font-weight: 600;
  text-align: center;
  margin: 0 auto 6px;
  width: 100%;
}
.p-simulation__inquiry-normal{
  font-size: 14px;
  font-weight: 300;
  text-align: center;
  margin: 0 auto;
}
.p-simulation__inquiry-content {
  width: calc(50% - 10px);
  text-align: center;
}
.p-simulation__inquiry-lead {
  font-size: 14px;
  margin-bottom: 10px;
}
.p-simulation__inquiry-button {
  display: block;
  width: 100%;
  background: #D9A634;
  color: #FFFFFF;
  border-radius: 1000px;
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  padding: 15px 30px 16px;
  border: 2px solid #D9A634;
  cursor: pointer;
  position: relative;
}
.p-simulation__inquiry-button:after {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  border-right: 2px solid #FFFFFF;
  border-top: 2px solid #FFFFFF;
  transform: rotate(45deg);
  right: 8%;
  top: calc(50% - 6px);
}
.p-simulation__inquiry-button:hover {
  background: #FFFFFF;
  color: #D9A634;
}
.p-simulation__inquiry-button:hover:after {
  border-right: 2px solid #D9A634;
  border-top: 2px solid #D9A634;
}
.p-simulation__inquiry-tel {
  border: #D9A634 solid 2px;
  border-radius: 4px;
  background: #FFFFFF;
  color: #D9A634;
  font-size: 10px;
  font-weight: 400;
  line-height: 1.4;
  padding: 3px 0 4px;
}
.p-simulation__inquiry-tel span {
  font-size: 18px;
  font-weight: bold;
}
.p-simulation__inquiry-text {
  font-size: 9px;
  font-weight: 300;
  margin-top: 6px;
}
.p-simulation__inquiry-note {
  width: 100%;
  text-align: center;
  font-size: 12px;
  margin-top: 15px;
}
.p-simulation__inquiry-terms {
  font-size: 12px;
  margin: 14px auto 0;
}
.p-simulation__inquiry-terms a {
  font-size: 12px;
  text-decoration: underline;
  cursor: pointer;
}
.p-simulation__inquiry-terms a + a {
  margin-left: 16px;
}
.p-simulation__inquiry-terms a:hover {
  opacity: 0.8;
  text-decoration: none;
}

#modal{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 20;
  overflow: auto;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
#modal.js-active {
  opacity: 1;
  visibility: visible;
}

#transition-popup{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 20;
  overflow: auto;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
#transition-popup.js-active {
  opacity: 1;
  visibility: visible;
}

@media screen and (max-width: 767px) {
  .l-display__pc {
      display: none !important;
  }
  .l-display__sp {
      display: block !important;
  }
  .p-product__inner {
    padding: 0 15px;
  }
  .p-transition-product__inner {
    padding: 0 15px;
  }
  .p-modal__close span:hover {
    opacity: 1;
  }
  .p-float__button.p-float__enable:hover {
    background-color: #D9A634;
    border: 2px solid #D9A634;
    color: #fff;
  }
  .p-float__button.p-float__enable:hover::before {
    background-image: url(/img/noifulSite/different/icon_coin.svg);
  }
  .p-float__button.p-float__enable:hover::after {
    border-right: 2px solid #FFFFFF;
    border-top: 2px solid #FFFFFF;
  }
  .p-float__button.p-float__enable:active {
    border: #D9A634 solid 2px;
    background: #fff;
    color: #D9A634;
  }
  .p-float__button.p-float__enable:active::before {
    background-image: url(/img/noifulSite/different/icon_coin_white.svg);
  }
  .p-float__button.p-float__enable:active::after {
    border-right: 2px solid #D9A634;
    border-top: 2px solid #D9A634;
  }
  .p-simulation__contents {
    padding: 18px 15px 40px;
  }
  .p-transition__contents {
    padding: 18px 15px 15px;
  }
  .p-simulation__head {
    text-align: left;
    line-height: 21px;
  }
  .p-simulation__line {
    flex-direction: column;
    padding: 0;
  }
  .p-simulation__line + .p-simulation__line {
    border-top: #DDDDDD 1px dashed;
  }
  .p-simulation__product {
    width: 100%;
    padding: 8px 0;
  }
  .p-simulation__product:nth-child(odd) {
    border-right: none;
  }
  .p-simulation__product:nth-child(even) {
    padding-left: 0;
  }
  .p-simulation__product + .p-simulation__product {
    border-top: #DDDDDD 1px dashed;
  }
  .p-simulation__product img {
    width: 60px;
  }
  .p-simulation__product-text {
    width: 100%;
    flex-direction: initial;
    align-items: center;  
  }
  .p-simulation__select-price {
    padding: 24px 0 0;
  }
  .p-simulation__saleinfo{
    padding-top: 12px;
  }
  .p-simulation__select-text {
    font-size: 12px;
    margin-bottom: 24px;
  }
  .p-simulation__select-clear {
    padding: 0 15px 18px;
  }
  .p-simulation__select-note {
    text-align: left;
    padding: 2px 15px 21px;
    font-size: 12px;
  }
  .p-simulation__price {
    font-size: 15px;
  }
  .p-simulation__amount {
    font-size: 22px;
  }
  .p-simulation__coupon{
    display: flex;
  }
  .p-simulation__coupon .p-simulation__coupon_input{
    width: 74.6%;
    margin-right: 3.8%;
  }
  .p-simulation__coupon .p-simulation__coupon_button{
    width: 21.5%;
  }
  .p-simulation__coupon .p-simulation__coupon_box{
    left: 60%;
  }
  .p-simulation__gray {
    margin: 0 15px 30px;
    padding: 16px 15px;
  }
  .p-simulation__gray p {
    font-size: 11px;
    text-align: center;
    padding-bottom: 8px;
  }
  .p-simulation__label label:hover {
    opacity: 1;
  }
  .p-simulation__copy {
    max-width: 225px;
    font-size: 12px;
  }
  .p-simulation__copy:hover {
    background-color: #000000;
  }
  .p-simulation__fixed .p-method__btn {
    max-width: 315px;
    padding: 14px 14px 14px 37px;
  }
  .p-simulation__fixed .p-method__btn:hover {
    background-color: #D9A634;
    color: #fff;
  }
  .p-simulation__fixed .p-method__btn::before {
    right: 64%;
    left: initial;
  }
  .p-simulation__fixed .p-method__btn:hover::before {
    background-image: url(/img/noifulSite/different/icon_mail_white.svg);
  }
  .p-simulation__fixed .p-method__btn:hover::after {
    border-right: 2px solid #FFFFFF;
    border-top: 2px solid #FFFFFF;
  }
  .p-note_list li{
    line-height: 17px;
  }
  .p-note_list li:nth-child(1) {
    margin-right: 0;
  }
  /* クリップボード内
  .p-announce__inner {
    padding: 24px 20px 20px;
    margin: -15px auto 20px;
  }*/
  .p-simulation__service-inner {
    width: calc(100% - 30px);
  }
  .p-simulation__service-title {
    font-size: 14px;
    padding: 8px 0 8px;
  }
  .p-simulation__inquiry-content {
    width: 100%;
  }
  .p-simulation__inquiry-inner {
    padding: 13px 15px 0;
  }
  .p-simulation__inquiry-inner:last-of-type {
    padding-bottom: 28px;
  }
  .p-simulation__inquiry-bold{
    font-size: 14px;
  }
  .p-simulation__inquiry-normal{
    font-size: 14px;
    font-weight: 300;
    text-align: left;
  }
  .p-simulation__inquiry-lead {
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 5px;
  }
  .p-simulation__inquiry-button {
    font-size: 14px;
    padding: 13px 30px;
    margin-bottom: 14px;
  }
  .p-simulation__inquiry-button:hover {
    color: #FFFFFF;
    background: #D9A634;
  }
  .p-simulation__inquiry-button:hover:after {
    border-right: 2px solid #FFFFFF;
    border-top: 2px solid #FFFFFF;
  }
  .p-simulation__inquiry-tel {
    border-radius: 300px;
    position: relative;
  }
  .p-simulation__inquiry-tel:after {
    content: "";
    position: absolute;
    width: 10px;
    height: 10px;
    border-right: 2px solid #D9A634;
    border-top: 2px solid #D9A634;
    transform: rotate(45deg);
    right: 8%;
    top: calc(50% - 6px);
  }
  .p-simulation__inquiry-tel span {
    font-size: 17px;
  }
  .p-simulation__inquiry-note {
    text-align: revert;
  }
}


/* footer ------------------*/
.l-footer {
  border-top: 1px solid #DEDEDE;
  padding: 62px 0 100px;
}
.l-footer-btm {
  text-align: center;
}
.l-footer-btm__logo {
  text-align: center;
}
.l-footer-btm__txt {
  text-align: center;
  font-size: 1.4rem;
  line-height: 1;
  margin: 1.3em 0 1em;
}
.l-footer-btm__lists {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  list-style: none;
  padding: 0;
  margin: 4.25em 0 2.5em;
}
.l-footer-btm__list {
  width: 1.125em;
  line-height: 1;
}
.l-footer-btm__list + .l-footer-btm__list {
  margin-left: 1em;
}
.l-footer-btm__list a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
}
.l-footer-btm__list img {
  width: 100%;
  height: auto;
}
.l-footer-btm__menus {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  list-style: none;
  margin: 5em 0 0;
  padding: 0;
}
.l-footer-btm__menu {
  font-size: 1.4rem;
}
.l-footer-btm__menu + .l-footer-btm__menu {
  margin-left: 2em;
}
.l-footer-btm__menu a:hover {
  opacity: 0.6;
  text-decoration: none;
}
.l-footer-btm__copy {
  margin: 1.375em 0 0;
}
@media screen and (max-width: 767px) {
  .l-footer {
    padding: 12vw 0 80px;
  }
  .l-footer-btm {
    padding: 0;
  }
  .l-footer-btm__lists {
    margin: 11.6vw 0 5.8vw;
  }
  .l-footer-btm__menus {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-top: 14.5vw;
  }
  .l-footer-btm__menu + .l-footer-btm__menu {
    margin-left: 1em;
  }
  .l-footer-btm__menu {
    line-height: 2.5;
    margin: 0 1em;
  }
  .l-footer-btm__copy {
    margin: 6.7vw 0 0;
  }
}
.path-wrap {
  width: 100%;
  padding: 0 15px;
  background: #f5f5f5;
}
#path {
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px 0 6px;
  display: flex;
  align-items: center;
  font-size: 12px;
}
#path a {
  text-decoration: underline;
  flex-shrink: 0;
}
#path a:hover {
  text-decoration: none;
}
.path__arw {
  width: 7px;
  height: 10px;
  margin: 0 15px;
  background: url(/img/noifulSite/common/icn_path_arw.png) center / contain no-repeat;
  display: block;
}
@media screen and (max-width: 767px) {
  .path-wrap {
    padding: 0;
  }
  #path { 
    width: 100%;
    padding: 3.2vw 6.667vw 2.8vw;
    font-size: 3.2vw;
    overflow-x: scroll;
  }
  #path span, .path__arw, #path strong {
    flex-shrink: 0;
  }
}

#appliance-selection-error {
  position: relative;
	background: rgba(180,180,180,.5);
	width: 100%; 
	height: 300px; 
	top: 0; 
	left: 0; 
	z-index: 0;
  /* position: fixed;
	background: rgba(180,180,180,.5);
	width: 100%; 
	height: 500px; 
	top: 0; 
	left: 0; 
	z-index: 1000; */
}

.sample-popup-content {
	/* ポップアップ本体 */
	display: inline-block;
	position: absolute;
	width: 40%;
	z-index: 1;
	background: #fff;
	padding: 2%;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
  text-align: center;
  font-family: -apple-system, BlinkMacSystemFont, 
    "Hiragino Kaku Gothic ProN", 
    "Hiragino Sans", 
    "游ゴシック Medium", 
    "Yu Gothic Medium", 
    "游ゴシック", 
    "Yu Gothic", 
    "Roboto", 
    "メイリオ", 
    "Meiryo", 
    sans-serif !important;
	/* display: inline-block;
	position: fixed;
	width: 40%;
	z-index: 1100;
	background: #fff;
	padding: 2%;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
  text-align: center;
  font-family: -apple-system, BlinkMacSystemFont, 
    "Hiragino Kaku Gothic ProN", 
    "Hiragino Sans", 
    "游ゴシック Medium", 
    "Yu Gothic Medium", 
    "游ゴシック", 
    "Yu Gothic", 
    "Roboto", 
    "メイリオ", 
    "Meiryo", 
    sans-serif !important; */
}

@media screen and (max-width: 767px) {
.sample-popup-content {
	/* ポップアップ本体 */
	display: inline-block;
	position: absolute;
	width: 75%;
	z-index: 1;
	background: #fff;
	padding: 2%;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
  text-align: center;
  font-family: -apple-system, BlinkMacSystemFont, 
    "Hiragino Kaku Gothic ProN", 
    "Hiragino Sans", 
    "游ゴシック Medium", 
    "Yu Gothic Medium", 
    "游ゴシック", 
    "Yu Gothic", 
    "Roboto", 
    "メイリオ", 
    "Meiryo", 
    sans-serif !important;
  }
}

.superscript{
  font-size: 10px;
  vertical-align: top;
  display: inline-block;
  transform-origin: top left;
  transform: scale(0.7);
}

.p-information .button-message {
    font-size: 14px;
    line-height: 24px;
    text-align: center;
    margin-bottom: 20px;
    margin-top: 20px;
}

.l-header-right-btn {
  position: fixed;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width:fit-content;
  z-index: 10;
  display: block;
  transition: 0.3s;
}

.l-header-right-btn__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-flow: column;
  flex-flow: column;
  background: #000;
  font-size: 1.4rem;
  border-top-left-radius: 10px !important;
  border-bottom-left-radius: 10px !important;
  padding: 15px 15px;
  -webkit-transition: background 0.4s;
  transition: background 0.4s;
  letter-spacing: 0.12em;
  border-radius: 0;
}

.l-header-right-btn__link:hover {
  text-decoration: none;
  background: #8B8B8B;
  padding: 15px 15px;
}

@media screen and (max-width: 767.9px) {
  .l-header-right-btn__link {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row;
    flex-flow: row;
    width: 100%;
    max-height: 100%;
    padding: 15px 15px;
  }
  .l-header-right-btn__link:hover {
    background: #000;
    border: 1px solid #000;
    padding: 15px 15px;
  }
}

.l-header-right-btn__txt {
  font-size: 1.4rem;
  color: #fff;
  -ms-writing-mode: tb-rl;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  font-weight: bold;
}

.l-header-left-btn {
  position: fixed;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width:fit-content;
  z-index: 10;
  display: block;
  transition: 0.3s;
}

.l-header-left-btn__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-flow: column;
  flex-flow: column;
  background: #000;
  font-size: 1.4rem;
  border-top-right-radius: 10px !important;
  border-bottom-right-radius: 10px !important;
  padding: 15px 15px;
  -webkit-transition: background 0.4s;
  transition: background 0.4s;
  letter-spacing: 0.12em;
  border-radius: 0;

}

.l-header-left-btn__link:hover {
  text-decoration: none;
  background: #8B8B8B;
  padding: 15px 15px;
}

@media screen and (max-width: 767.9px) {
  .l-header-left-btn__link {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row;
    flex-flow: row;
    width: 100%;
    max-height: 100%;
    padding: 15px 15px;
  }
  .l-header-left-btn__link:hover {
    background: #000;
    border: 1px solid #000;
    padding: 15px 15px;
  }
}

.l-header-left-btn__txt {
  font-size: 1.4rem;
  color: #fff;
  -ms-writing-mode: tb-rl;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  font-weight: bold;
}

.l-header-right-btn__link.p-float__button::before {
  display: none;
}
.l-header-right-btn__link.p-float__button::after {
  display: none;
}
.l-header-left-btn__link.p-float__button::before {
  display: none;
}
.l-header-left-btn__link.p-float__button::after {
  display: none;
}

.l-header-right-btn.scroll_down {
  right: -200px;
}

.l-header-left-btn.scroll_down {
  left: -200px;
}

.l-header-right-btn__link.p-float__button {
  color: #FFFFFF;
  background-color: #8B8B8B;
  border: 2px solid #8B8B8B;
  padding: 15px 15px;
}

.l-header-left-btn__link.p-float__button {
  color: #FFFFFF;
  background-color: #8B8B8B;
  border: 2px solid #8B8B8B;
  padding: 15px 15px;
}

.p-set__counter {
    display: flex
;
    color: #000000;
    justify-content: center;
    margin-bottom: 40px;
}

.p-set__counter li {
    color: #ffffff;
    font-size: 18px;
    font-weight: bold;
    line-height: 32px;
    text-align: center;
    display: block;
    width: 32px;
    height: 32px;
    background-color: #8b8b8b;
    transition: .7s;
    border-radius: 50%;
    position: relative;
    cursor: pointer;
}

.p-set__counter li:not(:first-of-type)::before {
    content: "";
    display: block;
    height: 3px;
    width: 67px;
    background-color: #8b8b8b;
    position: absolute;
    top: 0;
    left: -67px;
    bottom: 0;
    margin: auto 0;
    transition: .5s;
}

.p-set__counter li.activate, .p-set__counter li.activate::before {
    background-color: #000000;
}

.p-set__counter li:not(:first-of-type) {
    margin-left: 67px;
}

@media screen and (max-width: 767.9px) {
  .p-set__counter {
      margin-bottom: 26px;
  }
  .p-set__counter li {
    width: 25px;
    height: 25px;
    font-size: 14px;
    line-height: 26px;
  }
  .p-set__counter li:not(:first-of-type) {
    margin-left: 45px;
  }
  .p-set__counter li:not(:first-of-type)::before {
    width: 45px;
    left: -45px;
  }
}

.p-simulation__service-inner--label{
  text-align: left;
  display: block;
  padding-left: 20px;
  margin: 0 auto 8px;
  font-size: 16px;
  font-family: -apple-system, BlinkMacSystemFont, "Hiragino Kaku Gothic ProN", "Hiragino Sans", "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "Roboto", "メイリオ", "Meiryo", sans-serif;
  line-height: 1.5;
}

.p-simulation__service-inner--label a {
    font-weight: 700;
    font-size: 16px;
    padding-left: 0;
    position: relative;
    cursor: pointer;
    text-decoration-line: underline;
}

.p-simulation__service-inner--label a.checked::before {
    color: #fff;
    background-color: #D9A634;
}

.p-simulation__service-inner--label a::before{
  content: "\2713";
  font-size: 12px;
  color: #fff;
  font-weight: 700;
  text-align: center;
  display: block;
  height: 16px;
  width: 16px;
  background-color: #e0e0e0;
  border-radius: 3px;
  position: absolute;
  top: 0;
  left: -20px;
  bottom: 0;
  margin: auto 0;
}
.p-simulation__service-inner--label a.checked::before{
  color: #fff;
  background-color: #D9A634;
}

.p-simulation__service-inner--label::after{
  content: "[必須]";
  color: #FF0000;
  font-weight: 700;
  padding-left: 5px;
}

.p-simulation__service-inner--button{
  display: block;
  width: 280px;
  height: 52px;
  margin: 0 auto 21px;
  background-color: #E0E0E0;
  border-radius: 26px;
  color: #8B8B8B;
  font-size: 14px;
  line-height: 52px;
  font-weight: 700;
  text-decoration-line: none;
  transition: .3s;
  text-align: center;
}

.p-simulation__contents .p-simulation__service-inner--button.active{
  color: #ffffff;
  background-color: #D9A634;
}

#simulation_modal .p-simulation__contents a:hover {
    opacity: 0.8;
    text-decoration: none;
}