@charset "UTF-8";
/*==========================================================
  フローティング、ハンバーガーメニュー
==========================================================*/
.float-area{
  display: none;
  font-family: "Noto Sans JP", serif, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, sans-serif;
}

.float-area.is-show {
  display: block;
  position: fixed;
  bottom: 0;
  width: 100%;
  z-index: 100;
  pointer-events: none;
}
html:has(.hamburger-area.is-open) .float-area.is-show {
  pointer-events: auto;
}
.hamburger-area.is-open .hamburger-overlay,

.float-area.is-show a,
.float-area.is-show button {
  pointer-events: auto;
}

/* ページトップボタン */
.btn-pagetop {
  right: 40px;
  bottom: 16px;
}
@media screen and (min-width: 768px) and (max-width: 840px) {
  .pc .btn-pagetop {
    right: 40px;
    bottom: 180px;
  }
}
@media screen and (min-width: 360px) and (max-width: 767px) {
  .btn-pagetop {
    right: 13px;
    bottom: 140px;
  }
}
@media screen and (max-width: 360px) {
  .btn-pagetop {
    right: 13px;
    bottom: 170px;
  }
}

/*ハンバーガーメニュー*/
.hamburger-area{
  text-align: right;
}

.hamburger-overlay{
  display: none;
}

.hamburger-content{
  display: none;
}

.hamburger-area.is-open .hamburger-overlay{
  display: block;
  position: fixed;
  width: 100vw;
  height: 100vh;
  background: rgba(46, 46, 46, 0.6);
  top: 0;
  left: 0;
  z-index: 10000;
}

.hamburger-area.is-open .hamburger-content{
  display: block;
}

.hamburger-menu-area{
  position: fixed;
  background-repeat: no-repeat;
  background-size: cover;
  text-align: left;
  z-index: 10001;
}

.hamburger-open-toggle{
  border-radius: 50%;
  background: #E30039;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

.hamburger-menu-area .hamburger-menu-lists{
  display: flex;
  flex-direction: column;
  row-gap: 25px;
}

.hamburger-menu-area .hamburger-link{
  font-size: 1.8rem;
  font-weight: 600;
  color: #ffffff;
  text-decoration: none;
  display: flex;
  align-items: center;
  letter-spacing: 3.78px;
}

.hamburger-open-toggle:hover,
.hamburger-menu-area .hamburger-link:hover{
  opacity: 0.5;
}

.hamburger-menu-area .hamburger-link::before{
  content: '';
  background: url(/support/cs/images/ico_arrow_cicle_white.svg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  width: 18px;
  height: 18px;
  margin-right: 10px;
  pointer-events: none;
}

.hamburger-open-toggle .bur{
  position: relative;
}

.hamburger-open-toggle .bur::before,
.hamburger-open-toggle .bur::after {
  position: absolute;
}

.hamburger-open-toggle .bur,
.hamburger-open-toggle .bur::before,
.hamburger-open-toggle .bur::after {
  display: block;
  border-radius: 3px;
  background: #ffffff;
}

.hamburger-close-toggle {
  display: block;
  position: relative;
  width: 24px;
  height: 24px;
  margin-left: auto;
}


.hamburger-close-toggle::before,
.hamburger-close-toggle::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 2px;
  height: 32px;
  background: #ffffff;
  border-radius: 3px;
}

.hamburger-close-toggle::before {
  transform: translate(-50%,-50%) rotate(45deg);
}

.hamburger-close-toggle::after {
  transform: translate(-50%,-50%) rotate(-45deg);
}

.hamburger-detail{
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  height:calc(100% - 30px);
}

.idea-txt{
  display: flex;
  align-items: center;
  font-size: 1.6rem;
  font-weight: 500;
  color: #ffffff;
  line-height: 112.5%;
  letter-spacing: 3.36px;
}

.idea-txt::before{
  content: "";
  display: flex;
  background: url(/support/cs/images/ico_float_idea_voice.svg) no-repeat center center;
  background-size: 100%;
}

.idea-btn-area .idea-btn {
  background-color: #ffffff;
  color: #cc0033;
  font-weight: 500;
  text-decoration: none;
  display: block;
  border-radius: 69.452px;
  font-size: 2.2rem;
  font-weight: 500;
  line-height: 1.04;
  padding: 14px 46px;
  max-width: 200px;
  width: 100%;
  letter-spacing: 2.42px;
  position: relative;
}
.idea-btn-area .idea-btn::before {
  position: absolute;
  content: "";
  top: calc(50% - 6.5px);
  right: 25px;
  width: 15px;
  height: 15px;
  background: url(/support/cs/images/ico_arrow_red.svg) no-repeat center bottom / contain;
}

.idea-btn-area .idea-btn:hover{
  background: #2E2E2E;
  color: #FFF;
}
.idea-btn-area .idea-btn:hover::before{
  background-image: url(/support/cs/images/ico_arrow_white.svg);
}

@media screen and (min-width: 768px) {
  .hamburger-open-toggle{
    width: 80px;
    height: 80px;
    margin-bottom: 12px;
    margin-right: 22px;
  }
  .hamburger-menu-area{
    width: 483px;
    height: 100vh;
    background-image: url(/support/cs/images/bg_hamburger_pc.svg);
    animation: fadeInFromRight 1.5s ease-in-out forwards;
    padding-left: 110px;
    padding-top: 40px;
    padding-right: 40px;
    top:0;
    right: 0;
  }

  .hamburger-menu-area .hamburger-lead-ttl{
    margin-top: 96px;
    margin-bottom: 40px;
  }
  .hamburger-menu-area .hamburger-menu-lists{
    column-gap: 25px;
  }
  .hamburger-menu-area .hamburger-link::before{
    width: 21px;
    height: 21px;
    margin-right: 10px;
    pointer-events: none;
  }
  .hamburger-open-toggle .bur,
  .hamburger-open-toggle .bur::before,
  .hamburger-open-toggle .bur::after {
    width: 32px;
    height: 2px;
  }
  .hamburger-open-toggle .bur::before,
  .hamburger-open-toggle .bur::after{
    content: "";
  }
  .hamburger-open-toggle .bur::before{
    top: -6px;
  }
  .hamburger-open-toggle .bur::after{
    top: 6px;
  }
  .idea-btn-area{
    margin-top: 42px;
  }
  .idea-txt::before{
    width: 38px;
    height: 28px;
    margin-right: 4px;
  }
}

@media screen and (max-width: 767px) {
  .hamburger-open-toggle{
    width: 50px;
    height: 50px;
    margin-bottom: 10px;
    margin-right: 10px;
  }
  .hamburger-open-toggle .bur,
  .hamburger-open-toggle .bur::before,
  .hamburger-open-toggle .bur::after {
    width: 20px;
    height: 1px;
  }
  .hamburger-open-toggle .bur::before,
  .hamburger-open-toggle .bur::after{
    content: "";
  }
  .hamburger-open-toggle .bur::before{
    top: -4px;
  }
  .hamburger-open-toggle .bur::after{
    top: 4px;
  }
  .hamburger-menu-area{
    width: 100%;
    height: 76.304vh;
    background-image: url(/support/cs/images/bg_hamburger_smt.svg);
    bottom: 0;
    left: 0;
    padding-top: 18vw;
    padding-left: 16vw;
    padding-right: 8vw;
    animation: fadeInFromBottom 1.5s ease-in-out forwards;
  }

  .hamburger-close-toggle {
    top: 4vw;
  }
  .hamburger-menu{
    margin-bottom: 4vw;
  }
  .hamburger-menu-area .hamburger-link::before{
    width: 5.6vw;
    height: 5.6vw;
    margin-right: 2vw;
    pointer-events: none;
  }
  .idea-btn-area .idea-txt{
    margin-bottom: 4vw;
  }
  .idea-txt::before{
    width: 10.134vw;
    height: 7.2vw;
    margin-right: 1.0666vw;
  }
}

  @keyframes fadeInFromRight {
    from {
      opacity: 0;
      transform: translateX(100px);
    }
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }

    @keyframes fadeInFromBottom {
    from {
      opacity: 0;
      transform: translateY(100px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

/*float idea btn*/
.float-idea{
  background: #E30039;
  padding: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.float-idea .float-idea-txt{
  margin-bottom: 0;
  font-weight: 500;
  color: #ffffff;
  text-align: left;
  letter-spacing: 5.04px;
}

.float-idea .float-idea-txt::before{
  content: "";
  display: inline-block;
  background: url(/support/cs/images/ico_float_idea_voice.svg) no-repeat center center;
  background-size: 100%;
}

.float-idea .float-idea-btn{
  position: relative;
  background-color: #ffffff;
  color: #cc0033;
  font-weight: 500;
  text-decoration: none;
  display: block;
  letter-spacing: 0.16px;
}
.float-idea .float-idea-btn::before {
  position: absolute;
  content: "";
  top: calc(50% - 7.5px);
  right: 20px;
  width: 15px;
  height: 15px;
  background: url(/support/cs/images/ico_arrow_red.svg) no-repeat center bottom / contain;
}

.float-idea .float-idea-btn:hover{
  background: #2E2E2E;
  color: #FFF;
}
.float-idea .float-idea-btn:hover::before{
  background-image: url(/support/cs/images/ico_arrow_white.svg);
}


@media screen and (min-width: 768px) {
  .float-idea .float-idea-txt{
    font-size: 2.4rem;
    display: flex;
    align-items: center;
    margin-right: 15px;
  }
  .float-idea .float-idea-txt::before{
    width: 38px;
    height: 28px;
    margin-right: 8px;
  }
  .float-idea .float-idea-btn{
    font-size: 2.4rem;
    padding: 10px 56px 10px 35px;
    border-radius: 66.356px;
  }
}

@media screen and (max-width: 767px) {
  .float-idea .float-idea-txt{
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.6rem;
    margin-right: 10px;
  }
  .float-idea .float-idea-txt::before{
    width: 38px;
    height: 28px;
    margin-right: 4px;
  }
  .float-idea .float-idea-btn{
    font-size: 1.5rem;
    padding: 10px 30px 10px 25px;
    border-radius: 66.356px;
  }
  .float-idea .float-idea-btn::before {
    right: 10px;
  }
}

/*return top button*/
@media screen and (max-width: 767px) {
  html:has(.float-area:not(.is-show)) .btn-pagetop {
    bottom: 10px;
  }
}