@charset "shift_jis";

body {
  font-family: "Zen Kaku Gothic New",Arial, sans-serif;
  color: #333333;
  background-color: #ffffff;
  margin: 0;
  box-sizing: border-box;
}
img {
  width: 100%;
  height: auto;
}
.container {
  background-color: #ffffff;
  padding: 20px;
  border-radius: 5px;
}
p, table {
  font-size: 1.6rem;
}
table {
  width: 100%;
  border-collapse: collapse;
}
.box-table-border-01 {
  border: none;
}
.box-table-scroll-01 {
  margin-bottom: 30px;
}
.table-cmn-01{
  border-collapse: collapse;
}
.table-cmn-01 td{
  vertical-align: middle;
}
th, td {
  text-align: center;
  word-wrap: break-word;
}

a:hover {
  text-decoration: none;
}

ul{
  padding-left:0;
}

li{
  list-style:none;
}

/* .nw {
  display: inline-block;
} */

.vertxt {
  writing-mode: vertical-rl;
  -webkit-writing-mode: vertical-rl;
  text-orientation: upright;
  white-space: nowrap;
  line-height: 1.2;
  margin: 0 auto;
}

.box-charge-table .tdpd {
  padding: 12px 1rem !important;
}

@media screen and (max-width: 768px) {
  .box-table-scroll-01 .box-table-scroll-in {
    width: 840px;
  }
  .box-charge-table .vertxt-wrapper {
    max-width: 58px !important;
  }
}

.spBr {
  display: none;
}
.pcBr {
  display: block;
}

.spTable {
  display: none;
}
.pcTable {
  display: table;
}

@media screen and (max-width: 768px) {
  .spBr {
    display: block;
  }
  .pcBr {
    display: none;
  }
  .spTable {
    display: table;
  }
  .pcTable {
    display: none;
  }
}

.bg-black {
  background-color: #333333;
}
.bg-green {
  background-color: #dee448;
}
.bg-yellow {
  background-color: #dee448;
}
.bg-ltYellow {
  background-color: #f8fada;
}
.bg-blue {
  background-color: #a1deed;
}
.bg-ltBlue {
  background-color: #f8fada;
}
.bg-gray {
  background-color: #f5f5f5;
}

.fs-12 {
  font-size: 1.2rem !important;
}
.fs-13 {
  font-size: 1.3rem !important;
}
.fs-18 {
  font-size: 1.8rem !important;
}
.fs-20 {
  font-size: 2rem !important;
}
.fs-26 {
  font-size: 2.6rem !important;
}

@media screen and (max-width: 768px) {
  .spWid13 {
    width: 13.5%;
  }
  .spWid19 {
    width: 19.5%;
  }
  .spWid26 {
    width: 26.2%;
  }
  .spFs-14 {
  font-size: 1.4rem !important;
  }
  .spFs-16 {
  font-size: 1.6rem !important;
  }
  .spFs-20 {
  font-size: 2rem !important;
  }
}

.txtB {
  font-weight: 600;
}
.txt-left {
  text-align: left;
}

.lp-footer {
  background-color: #fff !important;
  margin-bottom: 100px;
}

.more-btn {
  display: flex;
  background-color: #e1e1e1;
  color: #333;
  padding: 5px 1.2em;
  max-width: 210px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 1.6rem;
  position: relative;
  transition: background-color 0.3s ease;
  justify-content: center;
  margin: 40px auto 0 auto;
}

.more-btn::after {
  content: "";
  display: block;
  margin-top: 10px;
  width: 10px;
  height: 10px;
  border: 0;
  border-bottom: solid 2px #333;
  border-right: solid 2px #333;
  transform: rotate(-45deg);
  position: absolute;
  top: 22%;
  right: 12%;
  transform: translateY(-50%) rotate(-45deg);
}

.more-btn:hover {
  text-decoration: none;
  background-color: cacaca;
}

@media screen and (max-width: 768px) {
  .more-btn {
    padding: 5px 1.2em;
    max-width: 210px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.6rem;
    position: relative;
    justify-content: center;
    margin: 30px auto 0 auto;
  }

  .more-btn::after {
    content: "";
    display: block;
    margin-top: 10px;
    width: 10px;
    height: 10px;
    border: 0;
    border-bottom: solid 2px #333;
    border-right: solid 2px #333;
    transform: rotate(-45deg);
    position: absolute;
    top: 22%;
    right: 12%;
    transform: translateY(-50%) rotate(-45deg);
  }

  .more-btn:hover {
    text-decoration: none;
    background-color: cacaca;
  }
  .spMt-0 {
    margin-top: 0 !important;
  }
  .box-table-scroll-01 {
    margin-top: 20px;
  }
}

/* Menu */
.hamburger-container {
  position: relative;
}

.hamburger-btn {
  display: block;
  position: fixed;
  top: 20px;
  right: 20px;
  width: 70px;
  height: 70px;
  gap: 1px;
  padding: 21px 18px;
  background-color: #e7f86a;
  border: 3px solid #333;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  z-index: 1001;
  cursor: pointer;
  transition: background-color 0.3s;
}

.hamburger-btn span {
  display: block;
  width: 28px;
  height: 3px;
  background: #333;
  border-radius: 2px;
  transition: all 0.3s ease;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.hamburger-btn span:nth-child(1) {
  top: 21px;
}
.hamburger-btn span:nth-child(2) {
  top: 31px;
}
.hamburger-btn span:nth-child(3) {
  top: 41px;
}

.hamburger-btn:hover {
  background-color: #dee448;
  text-decoration: none;
}


.hamburger-btn.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 10px);
  left: 19px;
  width: 34px;
}

.hamburger-btn.open span:nth-child(2) {
  opacity: 0;
}

.hamburger-btn.open span:nth-child(3) {
  transform: rotate(-45deg) translate(4px, -9px);
  left: 19px;
  width: 34px;
}


.side-menu {
  position: fixed;
  top: 0;
  /* right: 0; */
  right: -50%;
  width: 50%;
  max-width: 585px;
  height: 100%;
  background-color: #a1deed;
  box-shadow: -2px 0 5px rgba(0,0,0,0.2);
  transition: right 0.3s ease;
  z-index: 1000;
  padding: 2rem;
}

.side-menu ul {
  list-style: none;
  padding: 0;
  margin-top: 100px;
}
.side-menu li {
  max-width: 500px;
}

.side-menu ul li {
  margin: 20px auto;
}

.side-menu ul li a {
  text-decoration: none;
  color: #333;
  font-size: 16px;
}

.menu-btn {
  display: flex;
  flex-direction: row;
  gap: 2rem;
  width: 100%;
  align-items: center;
  background-color: #ffffff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  padding: 10px 2rem;
  border-radius: 8px;
  text-decoration: none;
  color: #333;
  font-size: 1.8rem;
  font-weight: 600;
  transition: background-color 0.3s;
  position: relative;
}

.menu-btn:hover {
  background-color: #dee448;
  text-decoration: none;
}

.menu-btn img {
  width: 67px;
  height: auto;
}

.menu-btn {
  position: relative;
}

.menu-btn::after {
  position: absolute;
  content: "";
  display: block;
  margin-top: 10px;
  width: 10px;
  height: 10px;
  border: 0;
  border-bottom: solid 2px #333;
  border-right: solid 2px #333;
  top: 30%;
  right: 3rem;
  transform: rotate(45deg) translateY(-50%);
}

.top-button {
  margin: 30px auto 0 auto;
  text-align: left;
  max-width: 500px;
}

/* .top-button:hover {
  transform: translateY(-3px);
} */

.top-link {
  display: inline-block;
  padding: 10px 20px 10px 40px;
  color: #333333;
  text-decoration: none;

  font-weight: 600;
  gap: 1rem;
  position: relative;
}

.top-link::before {
  display: flex;
  color: #333333;
  text-decoration: none;
  font-weight: 600;

  content: "";
  display: block;
  width: 10px;
  height: 10px;
  border: 0;
  border-top: solid 2px #333;
  border-right: solid 2px #333;
  transform: rotate(-45deg) translateY(-50%);
  position: absolute;
  top: 24px;
  left: 15px;
}

.top-link__underline {
  position: relative;
  display: inline-block;
  overflow: hidden;
}

.top-link__underline::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  height: 1px;
  width: 100%;
  background-color: #333;
  transition: width 0.4s ease;
}

/* ホバー時に underline を左から右に消す */
.top-button:hover .top-link__underline::after {
  width: 0;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5); /* 半透明の黒 */
  z-index: 999; /* メニューより下、他の要素より上 */
  display: none; /* 初期状態は非表示 */
}

@media screen and (max-width: 768px) {
  .side-menu {
    right: -100%;
    width: 100%;
    max-width: 87%;
    padding: 1rem;
  }
  .side-menu ul li a {
    text-align: start;
  }
  .menu-btn {
    padding: 5px 1rem 5px 0.5rem;
    border-radius: 60px;
    gap: 1rem;
  }
  .hamburger-btn {
    width: 60px;
    height: 60px;
    top: 2%;
    right: 2%;
    padding: 17px 15px;
  }

  .hamburger-btn span {
    width: 26px;
  }
  .hamburger-btn span:nth-child(1) {
    top: 16px;
  }
  .hamburger-btn span:nth-child(2) {
    top: 26px;
  }
  .hamburger-btn span:nth-child(3) {
    top: 36px;
  }

  .hamburger-btn.open span:nth-child(1) {
    left: 15px;
    width: 32px;
  }
  .hamburger-btn.open span:nth-child(3) {
    left: 15px;
    width: 32px;
  }

  .menu-btn::after {
    margin-top: 10px;
    width: 10px;
    height: 10px;
    border: 0;
    border-bottom: solid 2px #333;
    border-right: solid 2px #333;
    top: 30%;
    right: 2.3rem;
    transform: rotate(45deg) translateY(-50%);
  }
}

/* .top-link:hover {
  background-color: #005A9E;
} */

/* Menu */


.cashingHowto01_MV {
  text-align: center;
  height: auto;
}

.cashingHowto01_MV__bg {
  background-image: url('/resource201801/service/cashing_howto/img/MV_bg_01_pc.png');
  background-size: cover;
  background-position: center;
  width: 100%;
  padding: 30px 0;
}

.cashingHowto01_MV__wrapper {
  display: inline-block;
  text-align: center;
}

.spMV {
  display: none;
}
.pcMV {
  display: block;
}

@media screen and (max-width: 768px) {
  .spMV {
    display: block;
  }
  .pcMV {
    display: none;
  }
  .cashingHowto01_MV__bg {
    background-image: none;
    background-color: #a1deed;
    width: 100%;
    padding: 0 0 30px 0;
  }
}



.title-img {
  max-width: 970px;
  width: 100%;
  height: auto;
  margin: 3rem 0;
  display: block;
}

.section-nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 970px;
  margin: 20px 0;
}

.nav-btn {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 15.4vw;
  max-width: 180px;
  align-items: center;
  background-color: #ffffff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  padding: 20px 0.7em;
  border-radius: 8px;
  text-decoration: none;
  color: #333;
  font-size: 1.8rem;
  font-weight: 600;
  transition: background-color 0.3s;
  position: relative;
}

.nav-btn img {
  width: 84px;
  height: auto;
  margin-left: 10px;
  margin-bottom: 10px;
}

.nav-btn {
  position: relative;
}

.nav-btn::after {
  content: "";
  display: block;
  margin-top: 10px;
  width: 12px;
  height: 12px;
  border: 0;
  border-bottom: solid 2px #333;
  border-right: solid 2px #333;
  transform: rotate(45deg);
}

.nav-btn:hover {
  background-color: #dee448;
  text-decoration: none;
}

@media screen and (max-width: 768px) {

  .section-nav {
    flex-direction: column;
    padding: 10px 2rem;
  }

  .nav-btn {
    display: flex;
    flex-direction: row;
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
    align-items: center;
    background-color: #ffffff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    text-decoration: none;
    color: #333;
    font-size: 1.8rem;
    font-weight: 600;
    transition: background-color 0.3s;
    position: relative;
    text-align: start;
    justify-content: flex-start;
    padding: 5px 1rem 5px;
    border-radius: 60px;
    gap: 1rem;
    font-size: 1.6rem;
  }

  .nav-btn img {
    width: 67px;
    height: auto;
    margin: 0;
  }

  .nav-btn::after {
    position: absolute;
    content: "";
    display: block;
    margin-top: 10px;
    width: 10px;
    height: 10px;
    border: 0;
    border-bottom: solid 2px #333;
    border-right: solid 2px #333;
    top: 30%;
    right: 2.3rem;
    transform: rotate(45deg) translateY(-50%);
  }
}



/* section */
.content-section {
  position: relative;
  background-color: #ffffff;
  padding: 4em 3em;
  margin: 20rem auto;
  max-width: 960px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.content-section:first-of-type {
  margin-top: 10rem;
}

.content-section__txt {
  font-size: 2rem;
  font-weight: 600;
  margin-top: 40px;
}

.content-section__icon {
  position: absolute;
  width: 100%;
  max-width: 106px;
  height: auto;
  top: -3.5em;
  transform: translateX(-30%);
}

.content-section__title {
  padding: 0 2rem;
  border-bottom: 1px solid #333333;
  margin-top: 2rem;
}
.content-section__title h2{
  font-size: 3.6rem;
  font-weight: 600;
  padding-bottom: 10px;
}
.content-section__title--pcimg {
  display: block;
  max-width: 650px;
  margin: 3rem auto 0 auto;
}
.content-section__title--spimg {
  display: none;
}

.content-section p {
  line-height: 1.6;
}
.content-section__shadow {
  position: absolute;
  width: 100%;
  max-width: 1100px;
  height: auto;
  bottom: -4.5em;
  transform: translateX(-50%);
  z-index: -1;
}
.content-section::after {
  position: absolute;
  content: '';
  background-image: url(/resource201801/service/cashing_howto/img/shadow.png);
  background-repeat: no-repeat;
  background-size: contain;
  width: calc(100vw - 100px);
  max-width: 1100px;
  height: 120px;
  bottom: -5em;
  transform: translateX(-50%);
  z-index: -1;
}

@media screen and (max-width: 768px) {
  .content-section {
    padding: 30px 1rem;
    margin: 15rem auto;
    border-radius: 5px;
  }

  .content-section:first-of-type {
    margin-top: 10rem;
  }

  .content-section__txt {
    padding: 0 1rem;
    font-size: 1.6rem;
    margin-top: 30px;
    text-align: left;
  }

  .content-section__icon {
    max-width: 90px;
    top: -3.5em;
    transform: translateX(-38%);
  }

  .content-section__title {
    padding: 0;
    margin-top: 3rem;
  }
  .content-section__title h2{
    font-size: 2.4rem;
  }
  .content-section__title--pcimg{
    display: none;
  }
  .content-section__title--spimg{
    display: block;
    max-width: 500px;
    margin: 1rem auto 0 auto;
  }

  .content-section p {
    line-height: 1.6;
  }
  .contents-main {
    padding: 2rem;
  }
  .content-section::after {
    width: calc(110vw - 80px);
    height: 120px;
    bottom: -9em;
    z-index: -1;
  }
}

@media screen and (min-width: 769px){
  #mv,
  .contents-main,
  .accordion-section{
    min-width: 960px;
  }
}

/* section */

/* section1 */
.payment-info__exp {
  font-size: 2.6rem;
  font-weight: 600;
  margin-top: 1.5em;
}

.payment-info table {
  width: 100%;
  margin-top: 1.5em;
  border-collapse: separate;
  border-spacing: 0px 10px;
}

.payment-info table td{
  padding: 1.5rem;
  height: 150px;
}

.payment-info table td p{
  font-size: 2.2rem;
  font-weight: 600;
}

.payment-info .bg-black {
  background-color: #333333;
  color: #fff;
}

.moneyImg-01{
  max-width: 67px;
}
.moneyImg-02,
.moneyImg-03 {
  max-width: 76px;
}

.payment-info .table-border {
  border-right: 1.5px dashed #ccc;
}
.payment-info .bg-green {
  background-color: #dee448;
}

.payment-info tr {
  margin-top: 5px;
}
.payment-info th {
  border-radius: 5px;
  padding: 0.5em;
  margin-right: 1px;
  text-align: center;
  font-size: 1.8rem;
  font-weight: 600;
}
.payment-info td {
  padding: 0.5em;
  text-align: center;
}

.payment-info .explanation {
  margin-top: 1em;
  padding-left: 1.2em;
}

.payment-info .explanation li {
  margin-bottom: 0.5em;
}

.payment-info .disclaimer p{
  font-size: 1.3rem;
  margin-top: 1em;
  text-align: start;
}

.paymentTable img{
  display: block;
}

.moneyTable {
  vertical-align: top;
  position: relative;
  text-align: center;
  overflow: hidden;
}

.moneyArrow {
  overflow: visible;
  position: relative;
}

.moneyArrow::after {
  position: absolute;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: top center;
  font-size: 1.6rem;
  font-weight: 600;
  color: #333;
  bottom: 0;
  left: 0;
  z-index: 1;
}

.moneyArrow--01::after {
  width: 100%;
  content: '1回でお支払い';
  background-image: url(/resource201801/service/cashing_howto/img/tableArrow_01.png);
  height: 35px;
  padding-top: 25px;
}

.moneyArrow--02::after {
  width: 300%;
  content: 'お支払いする月を先延ばしにできる';
  text-align: right;
  background-image: url(/resource201801/service/cashing_howto/img/tableArrow_02.png);
  height: 30px;
  padding-top: 38px;
}

.moneyArrow--03::after {
  width: 300%;
  content: 'お支払い回数を自分で選べる';
  background-image: url(/resource201801/service/cashing_howto/img/tableArrow_03.png);
  height: 35px;
  padding-top: 25px;
}

.moneyArrow--04::after {
  width: 300%;
  content: '毎月のお支払い額を一定にできる';
  background-image: url(/resource201801/service/cashing_howto/img/tableArrow_03.png);
  height: 35px;
  padding-top: 25px;
}

@media screen and (max-width: 768px) {
  #section1 table{
    table-layout: fixed;
  }
  .payment-info__exp {
    font-size: 1.8rem;
    margin-top: 1em;
  }

  .payment-info table {
    width: 100%;
    margin-top: 1em;
    border-collapse: separate;
    border-spacing: 0px 10px;
    font-size: 1.6rem;
  }

  .payment-info table td{
    padding: 1rem 0.3rem;
    height: 11em;
  }

  .payment-info table td p{
    font-size: 2.2rem;
  }

  .payment-info .bg-black {
    background-color: #333333;
    color: #fff;
  }
  .moneyImg-01{
    max-width: 35px;
  }
  .moneyImg-02,
  .moneyImg-03 {
    max-width: 40px;
  }

  .payment-info .table-border {
    border-right: 1.5px dashed #ccc;
  }
  .payment-info .bg-green {
    background-color: #dee448;
  }

  .payment-info tr {
    margin-top: 5px;
  }
  .payment-info th {
    border-radius: 5px;
    padding: 0.3em;
    margin-right: 1px;
    text-align: center;
    font-size: 1.8rem;
    font-weight: 600;
  }
  .payment-info td {
    padding: 0.3em;
    text-align: center;
  }

  .payment-info .explanation {
    margin-top: 1em;
    padding-left: 1.2em;
  }

  .payment-info .explanation li {
    margin-bottom: 0.5em;
  }

  .payment-info .disclaimer p{
    font-size: 1.3rem;
    margin-top: 0.5em;
    text-align: start;
  }

  .paymentTable {
    padding: 1.5rem 1rem 1.5rem 1.2rem !important;
    width: 50px;
    position: relative;
  }
  .paymentTable p{
    line-height: 1.5;
  }

  .paymentTable p {
    writing-mode: vertical-rl;
    text-orientation: upright;
    font-size: 1.5rem !important;
  }

  .paymentTable img{
    display: none;
  }

  .paymentTable::after {
    position: absolute;
    content: '';
    width: 190px;
    height: 30px;
    bottom: 0;
    right: -180px;
    background-repeat: no-repeat;
    background-size: contain;
    z-index: 1;
  }

  .paymentTable--01::after {
    background-image: url(/resource201801/service/cashing_howto/img/payment_sp_01.png);
  }

  .paymentTable--02::after {
    background-image: url(/resource201801/service/cashing_howto/img/payment_sp_02.png);
  }

  .paymentTable--03::after {
    background-image: url(/resource201801/service/cashing_howto/img/payment_sp_03.png);
  }

  .moneyArrow::after {
    font-size: 1.3rem !important;
  }

  .moneyArrow--01::after {
    height: 70px;
    padding-top: 20px;
  }

  .moneyArrow--02::after {
    text-align: center;
    height: 71px;

    padding-top: 26px;
  }

  .moneyArrow--03::after {
    height: 70px;
    padding-top: 15px;
  }

  .moneyArrow--04::after {
    height: 70px;
    padding-top: 15px;
  }

}

/* .payment-info .fs-26 {
  font-size: 2.6rem;
} */
/* section1 */

/* section2 */
.payment-method {
  /* padding: 20px; */
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  margin-top: 50px;
  font-size: 1.6rem;
  line-height: 1.8;
}

.payment-method h3 {
  border-radius: 8px 8px 0 0;
  background-color: #dee448;
  padding: 15px 2rem;
  font-size: 2.4rem;
  font-weight: 600;
  color: #333;
}

.payment-method__wrapper {
  padding: 20px 4rem;
  background-color: #f5f5f5;
}

.payment-method__wrapper__maintxt {
  font-size: 2.2rem;
  font-weight: 600;

  text-decoration: underline;
  text-decoration-color: #dee448;
  text-decoration-thickness: 8px;
  text-underline-offset: 1px;

}

.payment-method__container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 20px;
}
.recommendImg_pc {
  display: block;
  max-width: 110px;
}
.recommendImg_sp {
  display: none;
}

.payment-method ul {
  list-style: none;
  padding-left: 0;
}

.payment-method li {
  display: flex;
  align-items: center;
  border-bottom: 1px solid #333;
  padding: 7px 0;
}

.check-icon {
  width: 32px;
  height: auto;
  margin-right: 10px;
  margin-top: 4px;
}

.payment-method__container p {
  font-size: 2rem;
}

.recommended {
  background-color: #d3ecf2;
  width: 100%;
  padding: 10px 2em;
  margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 10px;
  gap: 2rem;
}

.recommended__title {
  display: flex;
  align-items: center;
  width: 20%;
  gap: 2rem;
  font-weight: 600;
}
.recommended__people {
  display: flex;
  align-items: center;
  width: 80%;
  justify-content: space-between;
}

.recommended__txt {
  display: flex;
  align-items: center;
  gap: 3rem;
}

.recommended__txt--left {
  font-size: 1.6rem;
  flex-grow: 1;
}

.recommended__txt--right {
  font-size: 1.8rem;
  text-align: left;
}

.recommended img {
  max-width: 81px;
  width: auto;
}

/* .recommended__arrow-pc {
  display: block;
} */
.recommended__arrow-sp {
  display: none;
}
/*
.recommended__txt img {
  width: 100%;
  max-width: 18px;
  height: auto;
} */

@media screen and (max-width: 768px) {
  .payment-method {
    margin-top: 30px;
    font-size: 1.6rem;
  }

  .payment-method h3 {
    padding: 10px 1rem;
    font-size: 2rem;
  }

  .payment-method__wrapper {
    padding: 20px 2.5rem;
  }

  .payment-method__contents {
    padding: 0 1rem;
  }

  .payment-method__wrapper__maintxt {
    font-size: 1.6rem;
    text-decoration-thickness: 6px;
    text-underline-offset: 1px;
    margin-top: 10px;
  }

  .payment-method__container {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
  }

  .recommendImg_pc {
    display: none;
  }
  .recommendImg_sp {
    display: block;
    max-width: 350px;
  }

  .payment-method ul {
    list-style: none;
    padding-left: 0;
  }

  .payment-method li {
    align-items: start;
    padding: 5px 0;
  }

  .check-icon {
    width: 28px;
    height: auto;
    margin-right: 10px;
    margin-top: 2px;
  }

  .payment-method__container p {
    font-size: 1.6rem;
    text-align: start;
  }

  .recommended {
    flex-direction: column;
    width: 100%;
    padding: 15px 1em;
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 5px;
    gap: 1rem;
  }

  .recommended__title {
    flex-direction: column;
    width: 100%;
    gap: 0;
  }

  .recommended__people {
    width: 100%;
    gap: 0.5rem;
    justify-content: center;
  }

  .recommended__arrow-pc {
    display: none;
  }
  .recommended__arrow-sp {
    display: block;
  }
  .recommended__title img{
    width: 100%;
    max-width: 350px !important;
  }

  .recommended__txt {
    display: flex;
    align-items: center;
    gap: 3rem;
  }

  .recommended__txt--left {
    font-size: 1.6rem;
    flex-grow: 1;
  }

  .recommended__txt--right {
    font-size: 1.8rem;
    text-align: left;
  }

  .recommended__people p{
    font-size: 1.4rem;
  }

  .recommended__people img {
    max-width: 70px;
  }

  .recommended__txt img {
    width: 100%;
    max-width: 18px;
    height: auto;
  }
}

/* カルーセル */
@media screen and (max-width: 768px) {
  .carousel-wrapper {
    position: relative;
    width: 100%;
  }

  .payment-info__block {
    margin-bottom: 30px;
  }

  .payment-carousel::-webkit-scrollbar {
    display: none;
  }
  .payment-carousel {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 16px;
    scroll-behavior: smooth;
    /* -ms-overflow-style: none;
    scrollbar-width: none; */
  }

  .payment-info__block {
    width: 100%;
    flex-shrink: 0;
    scroll-snap-align: start;
  }

  .carousel-btn {
    position: absolute;
    top: 45%;
    transform: translateY(-50%);
    z-index: 10;
    background-color: #26518c;
    color: white;
    border: none;
    padding: 30px 1.5rem;
    cursor: pointer;
    font-size: 18px;
  }

  .prev {
    border-radius: 0 5px 5px 0;
  }
  .next {
    border-radius: 5px 0 0 5px;
  }

  .prev::before,
  .next::before{
    content: '';
    display: block;
    /* margin-top: 10px; */
    width: 10px;
    height: 10px;
    border: 0;
    border-bottom: solid 2px #fff;
    border-right: solid 2px #fff;
  }

  .prev::before {
    position: absolute;
    top: 41%;
    left: 40%;
    transform: rotate(135deg);
  }
  .next::before {
    position: absolute;
    transform: rotate(-45deg);
    top: 41%;
    right: 40%;
  }

  .carousel-btn.prev {
    left: 0;
  }

  .carousel-btn.next {
    right: 0;
  }

  .carousel-indicator {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 12px;
  }

  .carousel-dot {
    display: inline-block;
    width: 70px;
    height: 10px;
    background-color: #d4dce8;
    transition: background-color 0.3s ease;
  }

  .carousel-dot.active {
    background-color: #3a6196;
  }

}

/* section2 */
/* section3 */
.payment-change ul {
  display: flex;
  justify-content: center;
  margin-top: 40px;
  gap: 2rem;
}

.payment-change li {
  display: flex;
  flex-direction: column;
  width: 30.7%;
  max-width: 270px;
}

.change__peyment {
  padding: 20px 2rem;
  background-color: #a1deed;
  border-radius: 8px 8px 0 0;
  font-size: 2rem;
  font-weight: 600;
}

.change__txt {
  padding: 25px 2.5rem;
  background-color: #e7f86a;
  border-radius: 0 0 8px 8px;
  font-size: 1.8rem;
  flex-grow: 1;
  text-align: left;
}

.change__txt span {
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: #fff;
  text-decoration-thickness: 7px;
  text-underline-offset: 1px;
}

@media screen and (max-width: 768px) {
  .payment-change ul {
    flex-direction: column;
    justify-content: center;
    margin-top: 40px;
    gap: 2rem;
  }

  .payment-change li {
    display: flex;
    flex-direction: row;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
  }

  .change__peyment {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px 1.5rem;
    background-color: #a1deed;
    border-radius: 5px 0 0 5px;
    font-size: 1.6rem;
    font-weight: 600;
    width: 35%;
  }

  .change__txt {
    padding: 15px 1.5rem;
    background-color: #e7f86a;
    border-radius: 0 5px 5px 0;
    font-size: 1.6rem;
    flex-grow: 1;
    width: 75%;
    text-align: left;
  }

  .change__txt span {
    font-weight: 600;
    text-decoration: underline;
    text-decoration-color: #fff;
    text-decoration-thickness: 5px;
    text-underline-offset: 1px;
  }
}
/* section3 */
/* section4 */
.payment-revo__txt {
  margin-top: 40px;
}
.payment-revo__txt p{
  margin-top: 10px;
  font-size: 2rem;
  font-weight: 600;
}

.payment-revo__txt--big {
  font-size: 3.6rem !important;
}

.revomerit {
  position: relative;
}
.revomerit__titleImg{
  position: absolute;
  max-width: 445px;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
}

.revomerit__list {
  display: flex;
  background-color: #a1deed;
  padding: 80px 1rem 1rem 1rem !important;
  border-radius: 10px;
  justify-content: center;
  gap: 1rem;
  margin-top: 80px;
}

.revomerit__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  /* gap: 20px; */
  background-color: #e7f86a;
  border-radius: 10px;
  padding: 20px 2rem;
  width: 31.7%;
}

.revomerit__head {
  height: 170px;
}

.revomerit__item img {
  max-width: 100px;
}

.revomerit__caption {
  margin-top: 20px;
  font-size: 2rem;
  font-weight: 600;
}

.revomerit__caption--mt40 {
  margin-top: 40px;
}

.revomerit__txt {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #333;
  text-align: start;
}

@media screen and (max-width: 768px) {
  .payment-revo__txt {
    margin-top: 40px;
    padding: 0 1rem;
  }
  .payment-revo__txt p{
    margin-top: 10px;
    font-size: 1.6rem;
  }

  .payment-revo__txt--big {
    font-size: 3.6rem !important;
  }

  .payment-revo__txt--left {
    text-align: left;
  }

  .revomerit {
    position: relative;
  }
  .revomerit__titleImg {
    width: 90%;
    min-width: 300px;
    max-width: 400px;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
  }

  .revomerit__list {
    flex-direction: column;
    padding: 60px 1rem 1rem 1rem !important;
    border-radius: 5px;
    justify-content: center;
    gap: 1rem;
    max-width: 450px;
    margin: 80px auto 0 auto;
  }

  .revomerit__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 5px;
    padding: 20px 2rem;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
  }

  .revomerit__head {
    height: auto;
  }

  .revomerit__item img {
    max-width: 100px;
  }

  .revomerit__caption {
    margin-top: 10px;
    font-size: 2rem;
    font-weight: 600;
  }

  .revomerit__caption--mt40 {
    margin-top: 10px;
  }

  .revomerit__txt {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #333;
    text-align: start;
  }
}

/* section4 */
/* section5 */
.cashing-explain__container {
  margin-top: 60px;
}
.cashing-explain__container h3 {
  font-size: 2.4rem;
  font-weight: 600;
}

.service__list {
  margin-top: 30px;
}

.service__item {
  display: flex;
  margin-top: 10px;
}

.service__item--head {
  padding: 20px 2rem;
  background-color: #e7f86a;
  border-radius: 8px 0 0 8px;
  font-size: 2rem;
  font-weight: 600;
  width: 37.6%;
}

.service__item--head img {
  max-width: 56px;
}
.service__item--head p {
  font-size: 1.6rem;
}
.service__item--notion {
  font-size: 1.3rem;
}

.service__item--txt {
  padding: 20px 2rem;
  background-color: #a1deed;
 border-radius: 0 8px 8px 0;
  flex-grow: 1;
  width: 62.4%;
  text-align: start;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.repayment__list {
  display: flex;
  justify-content: center;
  margin-top: 30px;
  gap: 2rem;
}

.repayment__item {
  display: flex;
  flex-direction: column;
  width: 50%;
}

.repayment__head {
  padding: 20px 2rem;
  background-color: #ccebf9;
  border-radius: 8px 8px 0 0;
  font-size: 2rem;
  font-weight: 600;
}

.cashing_revoImg {
  max-width: 122px;
}
.cashing_Img {
  max-width: 65px;
}

.repayment__txt {
  padding: 25px 2.5rem;
  background-color: #f5f5f5;
  border-radius: 0 0 8px 8px;
  font-size: 1.8rem;
  flex-grow: 1;
  text-align: start;
}

.risoku {
  padding: 20px 2rem;
  margin-top: 40px;
  border-radius: 10px;
  border: 10px solid #ebf7fd;
}

.risoku__head {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  align-items: flex-end;
}

.risoku__head img {
  max-width: 280px;
  height: auto;
}

.risoku__txt--qestion {
  font-size: 2rem;
  font-weight: 600;
  padding: 7px 1rem;
  background-color: #e7f86a;
  max-width: 220px;
  margin: 0 auto;
}

.risoku__txt--answer {
  font-size: 1.8rem;
  margin-top: 20px;
}

.risoku__txt--answer span {
  font-size: 2.4rem;
  font-weight: 600;
  position: relative;
  z-index: 1;
}

.risoku__txt--answer span::after {
  content: "";
  position: absolute;
  background-color:#dee448;
  bottom: -1px;
  width: 100%;
  height: 8px;
  transform: translateX(-50%);
  left: 50%;
  z-index: -1;
}

.risoku__notion {
  font-size: 1.3rem;
  text-align: start;
  margin-top: 20px;
  padding: 10px 0 0 0;
  border-top: 1px solid #333333;
}

@media screen and (max-width: 768px) {
  .cashing-explain__container {
    margin-top: 30px;
  }
  .cashing-explain__container h3 {
    font-size: 2.4rem;
    font-weight: 600;
  }

  .service__list {
    margin: 10px auto 0 auto;
    max-width: 450px;
  }

  .service__item {
    flex-direction: column;
    margin-top: 20px;
  }
  .service__item:first-of-type {
    margin-top: 0;
  }

  .service__item--head {
    padding: 15px 1rem;
    border-radius: 5px 5px 0 0;
    width: 100%;
    display: flex;
    gap: 1rem;
    align-items: center;
  }

  .service__item--head img {
    max-width: 50px;
  }
  .service__item--head p {
    font-size: 1.8rem;
  }
  .service__item--notion {
    font-size: 1.3rem;
  }

  .service__item--txt {
    padding: 20px 2rem;
    background-color: #a1deed;
    border-radius: 0 0 5px 5px;
    flex-grow: 1;
    width: 100%;
    text-align: start;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .repayment__list {
    flex-direction: column;
    justify-content: center;
    margin: 10px auto 0 auto;
    gap: 2rem;
    max-width: 450px;
  }

  .repayment__item {
    display: flex;
    flex-direction: column;
    width: 100%;
  }

  .repayment__head {
    padding: 20px 2rem;
    background-color: #ccebf9;
    border-radius: 5px 5px 0 0;
    font-size: 2rem;
    font-weight: 600;
  }

  .cashing_revoImg {
    max-width: 122px;
  }
  .cashing_Img {
    max-width: 65px;
  }

  .repayment__txt {
    padding: 25px 2.5rem;
    background-color: #f5f5f5;
    border-radius: 0 0 5px 5px;
    font-size: 1.6rem;
    flex-grow: 1;
    text-align: start;
  }

  .risoku {
    padding: 20px 2rem;
    margin-top: 40px;
    border-radius: 10px;
    border: 10px solid #ebf7fd;
  }

  .risoku__head {
    flex-direction: column;
    gap: 2rem;
    align-items: center;
  }

  .risoku__head img {
    max-width: 280px;
    height: auto;
  }

  .risoku__txt--qestion {
    font-size: 2rem;
    font-weight: 600;
    padding: 7px 1rem;
    background-color: #e7f86a;
    max-width: 220px;
    margin: 0 auto;
  }


  .risoku__txt--answer span::after {
    height: 8px;
  }

  .risoku__notion {
    font-size: 1.3rem;
    text-align: start;
    margin-top: 20px;
    padding: 10px 0 0 0;
    border-top: 1px solid #333333;
  }
  .risoku__head {
    flex-direction: column;
    gap: 2rem;
    align-items: center;
  }
}

/* section5 */

/* アコーディオン共通 */
.accordion-section {
  background-color: #e0e6e9;
}

.accordion-section h2{
  font-size: 3.6rem;
  font-weight: 600;
}

.accordion,
.mod-accordion {
  text-align: left;
}

.accordion-wrapper {
  max-width: 960px;
  margin: 0 auto;
  padding: 10rem 3rem;
  border-radius: 10px;
}

.mod-accordion {
  border: none;
}

.mod-accordion .btn-accord-ctr:after {
  background: url(/resource201801/service/cashing_howto/img/ico_accord_open_01.png) no-repeat;
  background-size: contain !important;
  width: 28px;
  height: 28px;
}

.mod-accordion.is-open > .btn-accord-ctr:after {
  background: url(/resource201801/service/cashing_howto/img/ico_accord_close_01.png) no-repeat;
  background-size: contain !important;
  margin-top: -10px;
}

.accordion-toggle {
  width: 100%;
  text-align: left;
  padding: 3rem;
  font-size: 2rem;
  font-weight: bold;
  border: none;
  background-color: #f9f9f9;
  cursor: pointer;
  transition: background-color 0.3s;
  margin-top: 4rem;
}

.accordion-content,
.box-accord-content {
  max-width: 100%;
  padding: 3rem !important;
  border-top: 3px solid #e7f86a;
  background-color: #f9f9f9;
}

.accordion-content h3,
.box-accord-content h3 {
  position: relative;
  display: block;
  margin: 2.5em 0 1em 0;
  font-size: 2rem;
  font-weight: 600;
}

.accordion-content h3::after,
.box-accord-content h3::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 100%;
  height: 1px;
  background-image: linear-gradient(to right, #7fcdef 50%, #e7f86a 50%);
}

#accordion th,
#accordion td {
  border: 1px solid #7fcdef;
  padding: 12px 1.2rem;
}

#accordion .bg-blue,
#accordion th {
  background-color: #e0edf0;
}

#accordion table {
  margin-top: 2rem;
  overflow-x: auto;
  text-align: center;
}
.accordion th,
.accordion .bg-blue {
  background-color: #e0edf0;
}

.accordion-notion {
  font-size: 1.3rem;
  margin-top: 20px;
}

.accordion-notion--conatiner {
  margin-top: 20px;
}
.accordion-notion--conatiner p,
.notion-box p{
  font-size: 1.3rem;
}

#accordion p,
#accordion th,
#accordion td {
  color: #666;
}

#accordion th,
.table-heading {
  font-weight: 600;
  background-color: #e0edf0;
}
.table-heading--gray {
  font-weight: 600;
  background-color: #e8eaeb;
}

#accordion .cash-explain {
  color: #333
}
#accordion .wid6{
    width:6.9%;
}
.wid7 {
    width: 7% !important;
  }
#accordion .wid9 {
    width: 9.4%;
  }
#accordion .wid10 {
    width: 10.3%;
  }
#accordion .wid11 {
    width: 11.7%;
  }
#accordion .wid14 {
    width: 14%;
  }
#accordion .wid15 {
    width: 15.3%;
  }
#accordion .wid16 {
    width: 16.5%;
  }
#accordion .wid17 {
    width: 17.6%;
  }
#accordion .wid22 {
    width: 22.5%;
  }
#accordion .wid27 {
    width: 27%;
  }
#accordion .wid28 {
    width: 28%;
  }
  #accordion .wid29 {
    width: 28%;
  }
#accordion .wid30 {
    width: 30.6%;
  }
#accordion .wid33 {
  width: 33%;
}
#accordion .wid34 {
    width: 34%;
  }
  #accordion .wid35 {
    width: 35%;
  }
#accordion .wid36 {
    width: 36.5%;
  }
#accordion .wid50 {
    width: 50%;
  }
  #accordion .wid58 {
    width: 58%;
  }
#accordion .wid66 {
    width: 66%;
  }
#accordion .plr-tr1 th, #accordion .plr-tr1 td{
  padding-left: 1rem;
  padding-right: 1rem;
}
.accordion-multiTxt {
  margin-top: 20px;
}

@media screen and (max-width: 768px) {
  .accordion-section {
    padding: 0 15px;
  }

  .accordion-section h2{
    font-size: 2.6rem;
  }

  .accordion,
  .mod-accordion {
    text-align: left;
  }

  .accordion-wrapper {
    max-width: 100%;
    max-width: 970px;
    padding: 6rem 0;
    border-radius: 10px;
  }

  .mod-accordion {
    border: none;
  }

  .mod-accordion .btn-accord-ctr:after {
    width: 20px;
    height: 20px;
    top: 45%;
    right: 1rem;
  }

  .mod-accordion.is-open > .btn-accord-ctr:after {
    margin-top: -10px;
  }

  .accordion-toggle {
    width: 100%;
    text-align: left;
    padding: 20px 3rem 20px 1.5rem;
    font-size: 1.6rem;
    margin-top: 4rem;
  }

  .accordion-content,
  .box-accord-content {
    max-width: 100%;
    padding: 2.5rem 2rem !important;
  }

  .accordion-content h3,
  .box-accord-content h3 {
    margin: 2em 0 1em 0;
    font-size: 2rem;
  }

  #accordion p,
  #accordion th,
  #accordion td {
    font-size: 1.4rem;
  }

  #accordion th,
  #accordion td {
    padding: 10px 1rem;
  }

  #accordion table {
    margin-top: 2rem;
    overflow-x: auto;
    text-align: center;
  }
  .accordion th,
  .accordion .bg-blue {
    background-color: #e0edf0;
  }

  .accordion-multiTxt {
    margin-top: 20px;
  }

  .notion-box {
    margin-top: 10px;
  }
}

/* アコーディオン共通 */

/* accordion04 */
.cashing-notion {
  background-color: #e0edf0;
  color: #666;
  text-align: center;
  padding: 10px 2rem;
  margin: 1em 0 2em 0 !important;
}
#accordion04 h3::after {
  content: none;
}
.cashing-info__wrapper h3 {
  font-size: 1.8rem;
  background-color: #e0edf0;
  border:1px solid #7fcdef;
  padding: 10px 2rem;
}

.cashing-info__tel span {
  font-size: 2rem;
  font-weight: 600;
}

.cashing-info__container--mt {
  margin-top: 40px;
}
.cashing-info a {
  color: #666;
  text-decoration: underline 1px solid #666;
}

#accordion04 .table-heading--gray {
  font-weight: 600;
  background-color: #e8eaeb;
}

#accordion04 .point {
  margin-top: 20px;
  display: flex;
  align-items: center;
}

#accordion04 .point::before {
  content: '';
  object-fit: contain;
  display: block;
  width: 16px;
  height: 16px;
  background-color: #a1deed;
  flex-shrink: 0;
  margin-right: 5px;
  border-radius: 50%;
}

#accordion04 .point--adjust {
  align-items: start;
}
#accordion04 .point--adjust::before {
  margin-top: 5px;
}

#accordion04 .notion-box {
  margin: 10px 0 0 21px;
}

.registration {
  color: #333;
}

.callcenter {
  padding: 20px 2rem;
  border: 1px solid #333;
  margin-top: 40px;
}
.callcenter h3 {
  color: #009cc4;
  font-size: 2.4rem;
  font-weight: 600;
}

.callcenter__txt {
  font-size: 1.5rem;
  margin-top: 5px;
}
.callcenter img {
  max-width: 28px;
  height: auto;
}

.callcenter__list {
  display: flex;
  justify-content: center;
  margin-top: 10px;
}

.callcenter__item {
  display: flex;
  align-items: center;
  padding: 5px 2rem ;
  gap: 1rem;
}
.callcenter__item p{
  color: #333 !important;
  font-size: 2rem;
  font-weight: 600;
}
.callcenter__item:nth-of-type(2) {
  border-right: 1px solid #333;
  border-left: 1px solid #333;
}

.callcenter__tel {
  font-size: 2.6rem !important;
}

.callcenter__info {
  display: flex;
  align-items: center;
  gap: 5px;
}

@media screen and (max-width: 768px) {
  .callcenter__list {
    flex-direction: column;
    margin-top: 10px;
  }
    .callcenter {
    padding: 20px 2rem;
    border: 1px solid #333;
    margin-top: 40px;
  }
  .callcenter h3 {
    color: #009cc4;
    font-size: 2.4rem;
    font-weight: 600;
  }

  .callcenter__txt {
    font-size: 1.5rem;
    margin-top: 5px;
  }
  .callcenter img {
    max-width: 28px;
    height: auto;
  }

  .callcenter__list {
    display: inline-flex;
    justify-content: center;
    margin-top: 10px;
  }

  .callcenter__item {
    display: flex;
    align-items: center;
    padding: 0;
    margin-top: 5px;
    gap: 1rem;
    border-bottom: 1px solid #333;
  }
  .callcenter__item p{
    font-size: 2rem;
    font-weight: 600;
  }
  .callcenter__item:nth-of-type(2) {
    border-right: none;
    border-left: none;
  }

  .callcenter__tel {
    font-size: 2.6rem !important;
  }

  .callcenter__info {
    display: flex;
    align-items: center;
    gap: 5px;
  }
}
/* accordion04 */

/* fixed-button-area */
.fixed-button-area {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  border-top: 1px solid #26518c;
  background-color: rgba(231, 248, 106, 0.8); /* 背景色は必要に応じて調整 */
  padding: 18px 1.8rem;
  box-shadow: 0 5px 5px rgba(0, 0, 0, 0.1); /* 上部に影をつけて浮かせる */
  z-index: 1000; /* 他の要素より前面に表示 */
}

.fixed-button {
  display: inline-block;
  width: 50%;
  max-width: 800px;
  background-color: #26518c;
  color: #fff;
  border: none;
  padding: 15px;
  font-size: 2.4rem;
  font-weight: 600;
  border-radius: 5px;
  box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  position: relative;
  transition: background-color 0.3s;
}

.fixed-button::after {
  position: absolute;
  content: "";
  display: block;
  margin-top: 12px;
  width: 12px;
  height: 12px;
  border: 0;
  border-bottom: solid 2px #fff;
  border-right: solid 2px #fff;
  top: 30%;
  right: 3rem;
  transform: rotate(-45deg) translateY(-50%);
}

.fixed-button span {
  font-size: 2rem;
}

.fixed-button:hover {
  background-color: #0e2f5c;
}

@media screen and (max-width: 768px) {
  .fixed-button {
    width: 100%;
    max-width: 800px;
    color: #fff;
    border: none;
    padding: 15px;
    font-size: 2rem;
  }

  .fixed-button::after {
    margin-top: 11px;
    width: 12px;
    height: 12px;
    border: 0;
    border-bottom: solid 2px #fff;
    border-right: solid 2px #fff;
    top: 30%;
    right: 3rem;
    transform: rotate(-45deg) translateY(-50%);
  }

  .fixed-button span {
    font-size: 1.6rem;
  }
}
/* fixed-button-area */