@charset "utf-8";
/* *************************
** 基本
************************* */
:root {
    --fixHeader: 103px;
    --fixHeaderMaxWidth: 1200px;
    /* transition: all ease-in-out 5s; */
}
@media screen and (max-width: 767px) {
    :root {
        --fixHeader: 57px;
        --fixHeaderMaxWidth: 100vw;
    }
}
html {
    scroll-behavior: smooth;
}
body {
    padding-top: var(--fixHeader);
    scroll-behavior: smooth;
    scroll-padding-top: var(--fixHeader);
}
section {
    scroll-padding-top: var(--fixHeader);
    scroll-margin-top: var(--fixHeader);
}
.view_pc { display: initial; }
.view_sp { display: none; }
@media screen and (max-width: 767px) {
    .view_pc { display: none; }
    .view_sp { display: initial; }
}
/* *************************
** CTAボタン
************************* */
#js_ctaBtn {
    background: #00000055;
    bottom: -100px;
    opacity: 0;
    padding: .5em 0;
    position: fixed;
    text-align: center;
    transition: all ease-in-out 1s;
    width: 100%;
    z-index: 999;
}
#js_ctaBtn.fixCtaBtn {
    bottom: 0;
    opacity: 1;
}
@media screen and (max-width: 767px) {
    #js_ctaBtn {
        padding: 0;
    }
}



/* *************************
** CPNバナー
************************* */
.text-red{
      color: #e60000;
      font-weight: bold;
      padding: 2px 5px;
      font-size: 1.2rem;
}
.campaign__wrap{
    display: flex;
}
  @media screen and (max-width: 767px) {
      .text-red{
        padding: 5px;
        font-size: 0.8rem;
  }
}



/* *************************
**   SP-scroll 
************************* */
@media screen and (max-width: 768px) {
  .sp-scroll {
    padding-bottom: 16px;
    overflow-x: auto;
    position: relative;
  }
  .sp-scroll::before {
    content: "";
    position: absolute;
    width: 100px;
    height: 100px;
    background-image: url("/2024renew_assets/imgs/common/icon_scroll_hint.png");
    /* /htdocs/company/lp/stock/lp05/img/icon_scroll_hint.png */
    background-size: contain;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    opacity: var(--scroll-hint-opacity);
    transition: opacity 0.3s ease;
  }
  .sp-scroll img {
    max-width: none;
 
  }
}
/* 打ち消し */
@media screen and (max-width: 768px) {
    #page-container #block01 .images .sp-scroll img {
         width: 600px;
    }
}


/* *************************
** 色々調整
************************* */

.campaign__bnr {
  display: flex;
  gap: 40px;
  margin: 0 auto;
  max-width: 1100px;
}
.campaign__bnr button:hover {
    cursor: pointer;
}
@media screen and (max-width: 767px) {
  .campaign__bnr {
    flex-flow: column;
    padding-right: 5px;
    padding-left: 5px;
  }
}
.campaign__bnr img {
  width: 100%;
}


/* *************************
** モーダル
************************* */
@media screen and (max-width: 768px) {

}

		
/* モーダル内ポップタイトル */
  .modal-heading--pop {
    font-weight: bold;
    text-align: center;
    margin-bottom: 10px;
  }
  .modal-heading--pop span::before { 
    transform: rotate(-24deg); 
    left: -8px;
  } 
  .modal-heading--pop span::after { 
    transform: rotate(24deg); 
    right: -8px;
  } 
  .modal-heading--pop span {
    display: inline-flex;
    justify-content: center;
    align-items: center; /* 縦中央揃え /
    gap: 0.6em; / 文字との間隔（古い環境は後述のmarginで代替） */
    line-height: 1.2;
  }

  .modal-heading--pop span::before,
  .modal-heading--pop span::after {
    content: "";
    display: block; /* フレックスアイテム化  */
    width: 2px;
    height: 1.8em; 
    background: currentColor;
    transform-origin: center;
    position: relative;
  }
@media screen and (min-width: 768px) {
    .modal-heading--pop {
      font-size: 18px;
    }
  .modal-heading--pop span::before { 
    left: -14px;
  } 
  .modal-heading--pop span::after { 
    right: -14px;
  }
}

@media screen and (max-width: 767px) {
  .modal-heading--pop {
    font-size: 14px;
    font-size: 14px;
  }
  .modal-heading--pop span{
    width: 90%;
  }
  #page-container .modalClose {
      top: calc(15vh - calc(20 * (100vw / 375)));
  }
}



.mgt-1em {
  margin-top: 1em;
}
.mgt-2em {
  margin-top: 2em;
}
.mgt-0 {
  margin-top: 0 !important;
}
.mgb-0 {
  margin-bottom: 0 !important;
}
.border-dotted {
  border-top: 1px dotted #333;
}
.u-text-red {
    color: #d80c18;
}


/* *************************
** fix:account_fixBtn
************************* */

.account_fixBtn {
    align-items: center;
    background: #00000055;
    display: flex;
    height: fit-content;
    justify-content: center;
}
.account_fixBtn.visible {
    opacity: 1;
}
.account_fixBtn a {
    align-items: center;
    background-color: #f00;
    border-radius: 5em;
    border: 1px solid #f00;
    color: #fff;
    font-size: 2em;
    padding: .75em 2em .75em 6em;
    position: relative;
    text-decoration: none;
    font-family: "Noto Sans JP", sans-serif;
    font-weight: bold;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    white-space: nowrap;
}
.account_fixBtn a:hover {
    opacity: 1;
}
.icon_arrow::after {
    content: "";
    background: #fff;
    clip-path: polygon(0 0, 100% 50%, 0 100%);
    height: 1em;
    width: 0.75em;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translate(-50%, -50%);
}
.fixBtn-txt01 {
    display: inline-flex;
    font-size: 0.55em;
    text-align: center;
    line-height: 1.25em;
    background: #fff;
    color: #000;
    height: calc(100% - 4px);
    position: absolute;
    left: 2px;
    top: 2px;
    align-items: center;
    border-radius: 5em 0 0 5em;
    padding: 0 0.5em 0 1em;
}
.fixBtn-txt02 {
    white-space: nowrap;
}
@media (min-width: 768px) {
    .account_fixBtn a.pc-view {
        display: flex;
    }
}
@media (max-width: 768px) {
    footer {
    }
    .account_fixBtn {
    }
    .account_fixBtn a {
        font-size: 1.5em;
    }
    .fixBtn-txt02 {
        font-size: .9em;
        line-height: 1.2em;
    }
    .fixBtn-txt01 {
    font-size: 0.65em;
}
}
@media screen and (max-width: 750px) {
    .account_fixBtn {
        padding: 0 0;
        max-height: 8em;
    }
    .account_fixBtn a {
        transform: scale(0.7);
    }
    .account_fixBtn a.sp-view {
        display: flex;
    }
}