/*お問い合わせ*/

#wrap {
  width:75%;
  margin-right:auto;
  margin-left:auto;
}

/*パンくずリスト*/

.fs-c-breadcrumb__list {
  display:none;
}
.fs-c-breadcrumb__list:first-child {
  display:block;
}
.fs-c-breadcrumb__list--subgroup:nth-child(2) {
  display:block;
}

/*ショッピングローン*/

.navi0 {
  display: inline-block; 
  padding:  0px;
}

.navi1 {
  background-image: url(https://goldplaza.itembox.design/item/bt1.gif?t=20241217111216);
  background-repeat: no-repeat;
  background-position: left;
  width : 220px;
  height : 65px;
  text-align: center;
  line-height:65px;
  color: #000000;
  font-size: 14px;
}

.link1 {
  background-image: url(https://goldplaza.itembox.design/item/link2.gif?t=20241217111216);
  background-repeat: no-repeat;
  background-position: left;
  width : 280px;
  height : 65px;
  text-align: center;
  line-height:65px;
  color: #000000;
  font-size: 18px;
  margin: 5px
}

.tbl-r01 {
  display: inline-block;
  text-align: left;
  font-size: 14px;
  color: #000000;
}

.tbl-r02 {
  display: inline-block;
  text-align: left;
  font-size: 14px;
  color: #000000;
  width: 750px;
  margin-left: auto;
  margin-right: auto;
}

.tbl-r03 {
  width: 77%;
  margin-left: auto;
  margin-right: auto;
}

.tbl-r03 th,
.tbl-r03 td {
  border: solid 1px #ccc;
  padding: 10px 0px;
  color: #000000;
  font-size: 14px;
  text-align: center;
}

.box {
  display: inline-block; 
  padding: 0px;    
}

.rei {
  background-color: #000000;
  width: 280px;
  height: 220px;
  text-align: center;
  color: #ffffff;
  font-size: 16px;
  padding: 20px 5px 20px 5px;
}

/*ショッピングガイド*/

.arrow01 {
    position: relative;
    padding-left: 22px;
}
.arrow01::before {
    position: absolute;
    content: '';
    width: 16px;
    height: 16px;
    background: #697b91;
    border-radius: 50%;
    top: 50%;
    left: 0;
    margin-top: -7px;
}
.arrow01::after {
    position: absolute;
    content: '';
    width: 0;
    height: 0;
    border: solid 4px transparent;
    border-left: solid 6px #fff;
    top: 50%;
    left:6px;
    margin-top: -3px;
}
.back1 {
  background-image: url(https://goldplaza.itembox.design/item/bk3.jpg?t=20241217111216);
  background-repeat: no-repeat;
  background-position: left;
  width : 220px;
  height : 30px;
  text-align: center;
  line-height: 30px;
  color: #000000;
  font-size: 12px;
}

/*========= 上部固定させるためのCSS ===============*/

#header{
  position: fixed;/*fixedを設定して固定*/
  top: 0px;
  left: 0px;
  height: 60px;/*高さ指定*/
  width:100%;/*横幅指定*/
  z-index: 999;/*最前面へ*/
}

/*fixedでブロックがなくなるのではじめの要素のトップに余白を持たせる*/
section#area-1{
  padding-top:100px;
}

/*==スルロールメニューふわっと出現させるためのCSS*/

/*　上に上がる動き　*/

#header.UpMove{
  position: fixed;
  width:100%;
  animation: UpAnime 0.5s forwards;
}

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

/*　下に下がる動き　*/

#header.DownMove{
  position: fixed;
  width:100%;
  animation: DownAnime 0.5s forwards;
}
@keyframes DownAnime{
  from {
    opacity: 0;
  transform: translateY(-100px);
  }
  to {
    opacity: 1;
  transform: translateY(0);
  }
}

/*========= パソコンとスマホで表示内容を切り替えるためのCSS(ローン) ===============*/

.for-pc { display:block; }
.for-sp { display:none; }

@media only screen and (max-width : 767px){
  .for-pc { display:none; }
  .for-sp { display:block; }
}