@charset "utf-8";

/*--------------------------------------
              share css
--------------------------------------*/
* {
  position: relative;
}

#container {
  width: 100%;
  height: 100%;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

img {
  pointer-events: none;
  vertical-align: top;
}

.none {
  display: none !important;
}

a {
  display: block;
}

.sp {
  display: none !important;
}

.pc {
  display: block;
}

.red {
  color: #BC2020;
  font-weight: bold;
}

.min-sp {
  display: none;
}

/* html.fixed,
body.fixed {
  overflow: hidden;
  touch-action: none;
}

#container.fixed {
  overflow: hidden;
} */


@media screen and (max-width:768px) {

  .sp {
    display: block !important;
  }

  .pc {
    display: none !important;
  }

  body.fixed {
    position: fixed;
    width: 100%;
    overflow: hidden;
  }

}

/* ローディング画像のスタイル */
.loading {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  /* 中央揃え */
  z-index: 1000;
  /* マスクより前に表示 */
}

/* マスクのスタイル */
.loading-mask {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.5);
  /* 半透明の白背景 */
  z-index: 999;
  /* ローディングより後ろに表示 */
}

/* 透明なマスク(通信中のクリック防止に利用) */
.clear-mask {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0);
  /* 透明の背景 */
  z-index: 1000;
  /* ヘッダーや交換所ボタンより前に表示 */
}


/*--------------------------------------
              header css
--------------------------------------*/
header {
  width: 100%;
  background-color: rgb(251, 249, 249);
  z-index: 999;
  top: 0;
  left: 0;
  position: fixed;
}

header h1 {
  font-size: 40px;
  line-height: 22px;
  color: #fff;
  font-weight: bold;
}

header h1 span {
  color: #fff;
}

header a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: all .3s;
}

header .struc-tag a.active {
  background: rgba(255, 228, 255, 0.8);
}

header .struc-tag a.active:hover {
  background: rgba(255, 228, 255, 0.8);
}

header .struc-tag a.help:hover {
  background: rgba(238, 229, 154, 0.8);
}

.display-point {
  position: relative;
}

.display-point::after {
  content: "pt";
  font-size: 12px;
}

@media screen and (max-width:640px) {
  header h1 {
    font-size: 20px;
    line-height: 16px;
  }

  .min-sp {
    display: block;
  }
}

/*　上に上がる動き　*/

#page-link.UpMove {
  animation: UpAnime 0.5s forwards;
}

@keyframes UpAnime {
  from {
    opacity: 1;
    transform: translateY(0);
  }

  to {
    opacity: 0;
    transform: translateY(-100px);
  }
}

/*　下に下がる動き　*/

#page-link.DownMove {
  animation: DownAnime 0.5s forwards;
}

@keyframes DownAnime {
  from {
    opacity: 0;
    transform: translateY(-100px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

#page-link.fixed {
  animation: initial !important;
}

.nav-container .logo-link {
  display: flex;
  flex-direction: row;
  height: auto;
  transition: all .2s;
}

.nav-container .logo-link:hover {
  filter: contrast(150%);
}

.logo-area {
  position: absolute;
  bottom: 34px;
  left: 50%;
  transform: translate(-50%, 0%);
  filter: drop-shadow(0px 1px 11px rgb(255, 255, 255));
}

.logo-area img {
  margin: 0 auto;
  max-width: 400px;
  width: 100%;
  height: auto;
}

/*　ハンバーガーメニュー　*/
.menubtn {
  width: 32px;
  height: 44px;
  border-radius: 26px;
  z-index: 999999;
  cursor: pointer;
  position: relative;
  margin-left: 24px;
}

/*ボタン内側*/
.menubtn span {
  display: inline-block;
  transition: all .4s;
  position: absolute;
  left: 0px;
  height: 4px;
  border-radius: 2px;
  background: #D9D9D9;
  width: 100%;
}

.menubtn span:nth-of-type(1) {
  top: 10px;
}

.menubtn span:nth-of-type(2) {
  top: 20px;
}

.menubtn span:nth-of-type(3) {
  top: 30px;
}

/*activeクラスが付与されると線が回転して×に*/

.menubtn.active span:nth-of-type(1) {
  top: 15px;
  left: 0px;
  transform: translateY(6px) rotate(-45deg);
  width: 100%;
}

.menubtn.active span:nth-of-type(2) {
  opacity: 0;
  /*真ん中の線は透過*/
}

.menubtn.active span:nth-of-type(3) {
  top: 27px;
  left: 0px;
  transform: translateY(-6px) rotate(45deg);
  width: 100%;
}

.sp-menu {
  position: relative;
  height: 100%;
  width: 100%;
}

.menu-wrap {
  background-color: #fff;
  position: absolute;
  top: 76px;
  right: 75px;
  width: 380px;
  z-index: 9;
  overflow-y: auto;
  overscroll-behavior-y: contain;
  /* スクロール可能な要素に付与する必要有り */
  display: none;
  border-radius: 2px;
}

.modal-list li {
  cursor: pointer;
  background-color: #fff;

}

.modal-list li a {
  font-size: 24px;
  height: 73px;
}

.modal-list li:hover {
  background-color: #f1efef;
}

/*　ログインボタン　*/

.loginbtn {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #750000;
  border-radius: 3px;
  transition-duration: .4s;
}

.loginbtn a {
  width: 160px;
  height: 44px;
  font-size: 24px;
  color: #fff;
  font-weight: 500;
  position: relative;
}

.loginbtn a::after {
  content: "";
  position: absolute;
  background: url(../img/img_login.png);
  background-size: cover;
  width: 16px;
  height: 38px;
  right: 4px;
  transform: scale(-1.0);
}

.loginbtn a::before {
  content: "";
  position: absolute;
  background: url(../img/img_login.png);
  background-size: cover;
  width: 16px;
  height: 38px;
  left: 4px;
}

.loginbtn:hover {
  filter: brightness(1.2);
}

@media screen and (max-width:768px) {

  .menubtn {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .menubtn.active span:nth-of-type(1) {
    background: #fff;
  }

  .menubtn.active span:nth-of-type(3) {
    background: #fff;
  }


  .sp-menu {
    display: block;
  }

  .menu-wrap {
    background-color: #dfe1e6;
    padding: 66px 13% 21px;
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    height: 100dvh;
    min-height: 100vh;
    width: 100%;
    z-index: 9;
    overflow-y: auto;
    overscroll-behavior-y: contain;
    /* スクロール可能な要素に付与する必要有り */
    display: none;
  }

  .inner-top {
    padding: 0 21px;
  }

  .top-txt {
    padding: 25px 0px;
  }

  .top-txt h2 {
    font-size: 15px;
    color: rgb(255 14 160);
    line-height: 30px;
    text-align: center;
  }

  .top-logo img {
    width: 100px;
  }

  .modal-list li a {
    font-size: 16px;
  }

  .loginbtn a {
    width: 130px;
    height: 36px;
    font-size: 20px;
  }

  .loginbtn a::before {
    width: 13px;
    height: 30px;
  }

  .loginbtn a::after {
    width: 13px;
    height: 30px;
  }

  .display-point::after {
    font-size: 10px;
  }

    .modal-list li a {
    cursor: pointer;
    margin-bottom: 32px;
    height: 50px;
  }


}

@media screen and (max-width:600px) {
  .nav-container .logo-link {
    flex-direction: column;
  }

  .loginbtn a {
    font-size: 12px;
    width: 81px;
    height: 22px;
  }

  .loginbtn a::before {
    width: 7px;
    height: 20px;
  }

  .loginbtn a::after {
    width: 7px;
    height: 20px;
  }
}


/*--------------------------------------
             head-menu
--------------------------------------*/
.top-logo img {
  width: 144px;
  height: auto;
  padding-bottom: 6px;
}

.top-logo {
  margin-right: 0px;
}

.logotxt {
  white-space: nowrap;
  font-size: 24px;
  font-weight: bold;
  color: #fff;
}

.logotxt img {
  width: 160px;
  height: auto;
}

nav {
  margin: 0 auto;
}

.menu {
  background: url(../img/menu_pattern.png) left top 0 repeat-x;
  width: 100%;
  margin: 0 auto;
  padding: 0px 0px;
  position: fixed;
  z-index: 10;
}

.nav-container {
  max-width: 1440px;
  height: 99px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-top: 4px;
  padding-left: 5rem;
  padding-right: 5rem;
}

.nav-wrap {
  max-width: 1280px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.pc-nav-container {
  width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.struc-tag {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin: 0 auto;
  text-align: center;
}

.webpoint {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  width: 100%;
}

.txt-webpoint {
  white-space: nowrap;
  background: url(../img/bg_point.png) no-repeat;
  background-size: contain;
  width: 100%;
  max-width: 309px;
  height: 47px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  gap: 24px;
}

.txt-webpoint p:nth-child(1) {
  font-size: 16px;
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  color: #ffffff;
}

.point-ttl {
  display: flex;
  align-items: center;
  gap: 0.2rem;
}

.point-ttl img {
  width: 20px;
  height: auto;
}

.txt-webpoint p:nth-child(2) {
  font-size: 18px;
  color: #fff;
  font-weight: 400;
}

@media screen and (max-width:1024px) {
  .txt-webpoint p {
    font-size: 20px;
  }
}


@media screen and (max-width:768px) {
  .top-logo img {
    width: 100px;
    height: auto;
  }

  .top-logo {
    margin-right: 0px;
  }

  .logotxt img {
    width: 96px;
  }

  .struc-tag {}

  .nav-container {
    height: 73px;
    padding: 10px 17px;
    align-items: flex-start;
  }

  .menubtn {
    margin-left: 1vw;
  }

  .txt-webpoint p:nth-child(1) {
    font-size: 12px;
  }

  .txt-webpoint p:nth-child(2) {
    font-size: 13px;
  }

  .struc-tag li {
    padding: 4px 4px;

  }

  .top-logo img {
    padding-bottom: 0px;
  }

  .txt-webpoint {
    max-width: 205px;
    gap: 0px;
    height: 35px;
    background-size: 100% 35px;
  }

  .menu {
    background-size: contain;
  }

}

@media screen and (max-width:600px) {
  .logotxt {
    margin-top: -6px;
  }

  .nav-container {
    height: 73px;
    padding: 0px 17px;
    align-items: flex-start;
  }

  .logotxt img {
    width: 72px;
  }
}

@media screen and (max-width:374px) {
  .top-logo img {
    width: 68px;
  }

  .logotxt img {
    width: 50px;
  }


}

.help {
  border: 2px solid #fff;
  border-radius: 50%;
  background-color: #293f9e;
  color: #fff;
  width: 24px;
  height: 24px;
  font-weight: bold;
  font-size: 14px;
  position: absolute;
  right: 0;
  top: 0;
}

@media screen and (max-width: 800px) {
  .help {
    width: 18px;
    height: 18px;
    font-size: 10px;
  }
}

@media screen and (max-width: 768px) {

  .help {
    right: 9px;
    top: -3px;
  }

  .txt-webpoint {
    margin-right: 16px;
  }
}

@media screen and (max-width: 350px) {

  .help {
    right: 5px;
  }

}

/*--------------------------------------
              footer css
--------------------------------------*/

.footer {
  bottom: 0;
  width: 100%;
  height: auto;
  margin-top: 0px;
  margin-bottom: 0px;
  background-color: #000;
  padding: 10px 0px 10px 0px;
  z-index: 1;
}

.footer .footer_wrap {
  width: auto;
  max-width: 100%;
  margin: 0 auto;
  background-color: #000;
  color: #fff;
}

.information1 {
  height: auto;
  background-color: #000;
  text-align: center;
  color: #fff;
}

.information1 img {
  display: inline-block;
}

.information1 p {
  color: #fff;
}

.information1 li {
  color: #fff;
}

.kinran_app_icon {
  height: auto;
  margin-bottom: 10px;
  width: 60%;
  max-width: 60px;
}

.information2 {
  text-align: center;
}

ul.footer_info_title {
  list-style: none;
  margin-left: 0px;
  text-align: left;
  display: inline-block;
}

li.footer_info_title {
  display: -webkit-box;
  display: -moz-box;
  display: -o-box;
  display: -ms-box;
  display: box;
  margin: 2px 0px 2px 0px;
  -webkit-box-align: center;
  -moz-box-align: center;
  -o-box-align: center;
  -ms-box-align: center;
  box-align: center;
}

.footer_info_title p {
  font-size: 13px;
}

.information2 img {
  margin-top: 2px;
  margin-right: 8px;
  margin-left: 5px;
  margin-bottom: 2px;
  height: 20px;
  width: auto;
}

.line2 {
  background: linear-gradient(90deg, #c9a060, #e3cd9a) fixed;
  height: 3px;
  width: 100%;
  margin-top: 5px;
  margin-right: 0px;
  margin-left: 0px;
  margin-bottom: 5px;
  vertical-align: bottom;
}

.copy_footer {
  text-align: center;
  background-color: #000;
}

.container .copyright {
  padding: 5px 0px 5px 0px;
  background-color: #000;
  width: auto;
}

.container .copyright p {
  color: #fff;
  margin-right: 0px;
  display: inline-block;
  font-size: 12px;
  margin-top: 10px;
}

.container .copyright_sp {
  background-color: #000;
  text-align: center;
}

.copyright_sp_p {
  text-align: left;
  padding: 0px 0px 0px 0px;
  width: auto;
  display: inline-block;
}

.copyright_sp_p p {
  font-size: 2vw;
  margin: 0px 0px 2px 0px;
  color: #fff;
}

.appbanner {
  text-align: center;
  width: 100%;
  margin-top: 16px;
}

#app_w {
  display: flex;
  text-align: center;
  justify-content: center;
}

.appbanner .image {
  margin: 0 auto;
}

.appbanner .image a {
  margin: 0 5px;
}

.appbanner .image img {
  text-align: center;
  display: table-cell;
  vertical-align: middle;
  width: 100%;
  height: auto;
  margin: 0px;
  padding: 0 2px;
}

.footer-link {
  margin: 32px 0px;
}

.footer-link-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px 44px;
  width: 100%;
  max-width: 410px;
  margin: 0 auto;
}

.footer-link-container a {
  font-size: 15px;
  font-weight: bold;
  color: #fff;
  display: inline-block;
  padding-bottom: 2px;
  position: relative;
}

.container.copy_footer.pc {
  margin: 8px 0 32px 0;
}

#footerArea {
  position: relative;
  color: #ffffff;
  width: 100%;
}

.triangle {
  background: #ffffff;
  width: 9px;
  height: 11px;
  position: absolute;
  top: 8px;
  left: -16px;
}

/* 右向き ▶︎ */
.right {
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}


@media screen and (max-width:768px) {
  .footer-link-container {
    gap: 16px 20px;
    max-width: 377px;
    padding: 0px 17px 0 30px;
  }

  .appbanner .image {
    width: 70%;
  }

  .footer_info_title p {
    font-size: 11px;
  }

  .footer-link-container a {
    font-size: 12px;
  }

  .triangle {
    width: 7px;
    height: 9px;
    top: 8px;
    left: -8px;
  }
}