@charset "utf-8";

/* reset.css */

/*
  Josh's Custom CSS Reset
  https://www.joshwcomeau.com/css/custom-css-reset/
*/
html,body{height:100%}body{line-height:1.5;-webkit-font-smoothing:antialiased}img,picture,video,canvas,svg{display:block;max-width:100%}input,button,textarea,select{font:inherit}p,h1,h2,h3,h4,h5,h6{overflow-wrap:break-word}#root,#__next{isolation:isolate}


/* variables */
:root {
  --color-primary: #E60000;
  --color-secondary: #876528;
  --color-tertiary: #FAF6EF;

  --bg-benefit: linear-gradient(to left, 0% rgba(135, 101, 40, 0.9) , 50% rgba(135, 101, 40, 0.75), 100% rgba(135, 101, 40, 0.9));

  --color-gray: #333333;
  --color-gray2: #5A5A5A;
  --color-gray3: #8D8D8D;
  --color-gray4: #DDDDDD;
  --color-gray5: #F6F6F6;
  --color-pink: #FFE9E5;
  --color-white: #FFFFFF;

  --font-goshic: "Hiragino Kaku Gothic ProN", sans-serif;

  --width-content: 130rem;
  --width-inner: 68.4rem;
  
}

html {
  font-size: 62.5%;
}

body {
  font-size: 1.6rem;

  line-height: 1.8;
  margin:0;
  overflow: auto;
}

ol, ul {
  list-style: none;
}

.list-wrap {
    list-style:  none;  
    margin:  0;         
    padding: 0;        
}
 
 
.list:before {
    content:  "";     
    width:  10px;               
    height:  10px;             
    display:  inline-block;    
    background-color:#876528;  
    list-style: square;        
    position:  relative;        
    top: -1px;                  
    margin-right: 5px;          
}

a {
  color: inherit;
	text-decoration: none;
}


@media (min-width: 769px) {
  a,[role="button"] {
    transition: all 0.2s ease;
  }
  a.btn::after {
    transition: all 0.2s ease;
  }
  a:not(.btn):hover {
    text-decoration: none;
    opacity: 0.8;
  }
  [role="button"]:hover {
    opacity: 0.8;
  }
  a.btn:hover {
    opacity: 0.8;
  }
  a.btn:hover::after {
    -webkit-transform: translate3d(4px, -50%, 0);
    -moz-transform: translate3d(4px, -50%, 0);
    transform: translate3d(4px, -50%, 0);
  }
  [role="button"] {
    cursor: pointer;
  }

  footer {
    padding-bottom: 8rem;
  }
}

/* helper */
@media (max-width: 768px) {
  .-pc { display: none!important; }
  .-ta-l-sp { text-align: left!important; }
  .-ta-c-sp { text-align: center!important; }
  .-ta-r-sp { text-align: right!important; }
}
@media (min-width: 769px) {
  .-sp { display: none!important; }
}



/* layout */

.l-container {
  max-width: var(--width-content);
  padding: 0 2rem;
  margin: 0 auto;
}
.l-inner {
  max-width: var(--width-inner);
  margin: 0 auto;
}

/* header */
.local-header-container {
  background: var(--color-gray);
  padding: 1.5rem;
}
  .local-header-container > h1 {
  max-width: var(--width-content);
    margin: 0 auto;
  }

/* section */
.section-container {
  padding: 8rem 0;
}
.section-container#performance {
  background: var(--color-white);
}

/* hdg, text */
.hdg-2 {
  font-size: 3.6rem;
  text-align: center;
}
.hdg-2 span{
  border-bottom: 0.3rem solid #876528;
}
.heading03{
  justify-content: center;
}
.box__heading{
  text-align: center;
  font-weight: bold;
}
.performance-content-1 .box__heading{
  margin-bottom: 0;
}
.box__heading-sub{
  text-align: center;
  font-weight: bold;
  color: #8d8d8d;
}
.performance-content-1 .box__heading-sub{
  margin-bottom: 2rem;
}
.text-m {
  font-size: 1.8rem;
  line-height: 2;
  text-align: center;
  margin-top: 2rem;
}

/* button */
.btn {
  border: 0.2rem solid var(--color-primary);
  border-radius: 0.3rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  font-size: 1.8rem;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
  padding: 1rem 3rem 1rem 2rem;
  position: relative;
  max-width: 36.4rem;
}
.btn:after {
  content: '';
  position: absolute;
  top: 50%;
  right: 0.6rem;
  border-width: 0.6rem 0 0.6rem 0.5rem;
  border-style: solid;
  -webkit-transform: translate3d(0, -50%, 0);
  -moz-transform: translate3d(0, -50%, 0);
  transform: translate3d(0, -50%, 0);
}
.btn > div {
  flex: 1 1 100%;
}
.btn.-primary {
  background: var(--color-white);
  color: var(--color-primary);
}
.btn.-secondary {
  background: var(--color-primary);
  color: var(--color-white);
  margin-bottom: 2rem;
}
.btn.-primary .nega {
  background: var(--color-primary);
  color: var(--color-white);
  display: inline-block;
  line-height: 1;
  padding: 0.4rem;
  margin: 0 0.4rem;
}
.btn.-secondary .nega {
  background: var(--color-white);
  color: var(--color-primary);
  display: inline-block;
  line-height: 1;
  padding: 0.4rem;
  margin: 0 0.4rem;
}
.btn.-primary::after {
  border-color: transparent var(--color-primary);
}
.btn.-secondary::after {
  border-color: transparent var(--color-white);
}

/* box */
.box{
  margin-top: 2rem;
  padding: 0;
  background-color: #ffffff;
  box-sizing: inherit;
}

/* list-order */
.list-order{
  width: fit-content;
  margin: 20px auto 0;
  padding: 20px;
  border: 1px solid #333333;
}
.list-order__list:last-child{
  margin-bottom: 0;
}
.list-order__list::before{
  color: #333333;
}

/* performance */
.performance-content-1,
.performance-content-2,
.performance-content-3{
  margin: 6rem 0;
}
.box-image img{
  margin: 0 auto;
}
/*.performance-content-1 .modal-box .box-image img{
  max-width: 720px;
}*/
.box-toggle{
  margin-top: 2rem;
}
.text-toggle-button{
  font-size: 1.8rem;
  width: fit-content;
  margin: 0 auto;
}
.text-toggle-panel{
  font-size: 1.6rem;
  max-width: 860px;
  margin: 0 auto;
  padding: 2rem;
  background: #f7f7f7;
}
.performance-content-1 .modal-box .text-toggle-panel{
  max-width: 720px;
}


/* fixed-btn-wrap */
.fixed-btn-wrap {
  background: var(--color-white);
  padding: 1.2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 9;
}
.fixed-btn-wrap .btn {
  margin: 0 1rem;
}

/* footer */
.footer-account{
	display:none;
}
.local-footer {
  background: var(--color-gray2);
  color: var(--color-white);
  padding: 5rem 0;
}
.local-footer-hdg {
  font-size: 2rem;
  font-weight: bold;
}
.local-footer-hdg img {
  display: inline-block;
  margin: 0 0.5rem 0 0;
  vertical-align: middle;
}
.local-footer-text {
  font-size: 1.4rem;
  margin: 1rem 0 0;
}

/* modal */
.modal-open{
  margin-top: 2rem;
  text-align: center;
}
.modal-open-button{
  cursor: pointer;
  background: #876528;
  border: 1px solid #876528;
  color: #ffffff;
  padding: 1rem 1.2rem;
  transition: all 0.2s ease;
}
.modal-open-button:hover{
  background: #ffffff;
  color: #876528;
}
.overlay{
  background: var(--color-gray);
  opacity: 0.8;
  position: fixed;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  display: none;
  z-index: 0;
}
.overlay.open{
  display: block;
  z-index: 1;
}
.modal-box{
  position: fixed;
  inset: 0;
  margin: 7rem;
  display: none;
  z-index: 0;
}
.modal-box.open{
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
}
.modal-box__inner {
  background: var(--color-white);
  font-size: 1rem;
  line-height: 1.8;
  padding: 3rem 1rem 2rem;
  margin: 0 auto;
  position: relative;
  overflow-y: auto;
  max-height: 90%;
  max-width: 1200px
}
.modal-close {
  background: url('/products/wrap/mirai_value/img/performance_img-icon-cancel.svg') no-repeat top left/25px;
  width: 25px;
  height: 25px;
  position: absolute;
  right: 15px;
  top: 15px;
  border: none;
  margin-left: auto;
  overflow: hidden;
  cursor: pointer;
}
.modal-box .box__heading-sub{
  font-size: 1.6rem;
}

/* thumbnail */
.thumbnail{
  display: flex;
  justify-content: center;
  margin: 1.4rem auto 1rem;
}
.thumbnail-link{
  border-left: 1px solid #000000;
  border-top: 1px solid #000000;
  border-bottom: 1px solid #000000;
  display: inline-block;
  width: 100px;
  padding: 0.5rem 0.6rem;
  text-align: center;
  background-color: #ffffff;
}
.thumbnail li:nth-of-type(5) .thumbnail-link{
  border-right: 1px solid #000000;
}
.thumbnail-link.show{
  color: #ffffff;
  background-color: #000000;
}

.note-text-graph{
  text-align: center;
}
.note-text-graph::before{
  position: inherit;
}

/* box-border__heading--caution */
.box-border__heading--caution{
  padding-right: 1.3rem;
}
.box-border__heading--caution.text-toggle-button::before{
  top: 0.2em;
}
.box-border__heading--caution.text-toggle-button::after{
  position: absolute;
  top: 0.6em;
  right: 0;
}

/* sp layout */
@media (max-width: 768px) {

  /* header */
  .local-header-container > h1 {
    text-align: center;
  }
  .local-header-container > h1 img{
    display: inline-block;
  }

  /* section */
  .section-container {
    padding: 4rem 0;
  }

  /* hdg, text */
  .hdg-2 {
    font-size: 2.8rem;
  text-align: center;
  }
  .performance-content-1 .box__heading{
    margin-bottom: 0;
  }
  .performance-content-1 .box__heading-sub{
    margin-bottom: 1.5rem;
  }
  .text-m {
    text-align: left;
    font-size: 1.4rem;
  }

  /* box */
  .box{
    margin-top: 1rem;
    padding: 0;
    background-color: #ffffff;
  }
  
/* list-order */
.list-order{
  width: fit-content;
  margin: 2rem auto 0;
  padding: 1.4rem;
}

  /* performance */
  .performance-content-1,
  .performance-content-2,
  .performance-content-3{
    display: block;
    margin: 0 0 4rem;
  }
  .box-toggle{
    margin-top: 1rem;
  }
  .text-toggle-button{
    font-size: 1.6rem;
  }
  .text-toggle-panel{
    width: auto;
    font-size: 1.4rem;
    padding: 1.2rem;
  }

/* fixed-btn-wrap */
  .fixed-btn-wrap .btn {
    display: block;
    flex: 1 1 50%;
    text-align: left;
    font-size: 1.2rem;
    padding: 0.5rem 0.5rem 0.5rem 0.8rem;
    margin: 0 2rem 0 0px;
    max-width: none;
  }
  
/* modal */
  .modal-box{
    margin: 8rem 2rem;
  }
  .modal-close {
    background: url('/common/img/gray/ico_cancel.svg') no-repeat top left/2rem;
    width: 2rem;
    height: 2rem;
    right: 1rem;
    top: 1rem;
  }

/* footer */
  .local-footer {
    padding: 4rem 0;
  }
  footer {
    padding-bottom: 5.8rem;
  }

/* thumbnail */
  .thumbnail-link{
    font-size: 1.4rem;
    width: auto;
    padding: 0.2rem 0.3rem;
  }

.note-text-graph{
  text-align: left;
}
.note-text-graph::before{
  position: absolute;
}

}


@media (min-width: 769px) {

/* パンくず */
  .pkz {
    min-width: 1024px;
    max-width: 1400px;
    margin: 20px auto;
    padding: 0 50px;
  }
}
