/* 登録前ページ用レイアウト微調整スタイル */
.has-fixed-header-space {
  margin-top: 46px;
}

/*footerコンテンツ pc*/
.footer-pc .inner {
  width: 932px;
  margin: 0 auto;
  padding: 50px 0 100px;
  display: flex;
  gap: 40px;
}
.footer-pc .footer_logo {
  width: 125px;
  /*元cssリセット*/
  float: none;
}
.footer-pc .footer_logo a {
  display: flex;
}
.footer-pc .footer_logo img {
  width: 100%;
  height: auto;
}

.footer-pc .globalNav {
  width: calc(100% - 125px);
  /*元cssリセット*/
  float: none;
  padding: 0;
}
.footer-pc .footer_discription {
  padding: 0;
}
.footer-pc .navList {
  overflow: auto;
  padding: 20px 0;
}
.navList-article {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  padding: 0 1.5em 1.8em;
}
.navList-article li {
  position: relative;
  padding: 0 2em 0 1.8em;
  line-height: 1.8;
}
.navList-article li:before {
  position: absolute;
  content: "◆";
  color: #ffc8cd;
  font-size: 13px;
  left: 0;
}
.navList-article a {
  color: #fff;
  font-size: 13px;
}

/*footerコンテンツ*/
.footer-contents {
  background: #b2b2b2;
  margin-bottom: 1.71em;
}
.footer-contents .container {
  padding: 5px;
}
.footer-contents .container > nav:not(:last-child) {
  margin-bottom: 1.71em;
}
.footer-contents ul {
  list-style: none;
}

.footer-contents .links-main {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
[class^="links-"] li,
.links-article li.js-accordion > .toggle-article-items > li {
  width: 100%;
  height: 36px;
  background: #fff;
  padding-inline: 0.71em;
  display: flex;
  align-items: center;
}
[class^="links-"] li a {
  text-decoration: none;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 6px;
  line-height: 1;
}
.links-main li a {
  color: #ff949d;
}
.links-main li .icon-linkItem {
  width: 20px;
  height: 20px;
}

.footer-contents .links-article,
.links-article li.js-accordion > .toggle-article-items {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.links-article li a,
.links-article li.js-accordion > .toggle-article-items > li a {
  color: #17b29e;
}

.links-article li.js-accordion {
  all: unset;
}
.links-article li.js-accordion > .toggle-article-list {
  all: unset;
  width: 100%;
  height: 36px;
  padding-inline: 0.71em;
  color: #17b29e;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-size: 14px;
  position: relative;

  box-sizing: border-box;
  margin-block: 0 2px;
}
.links-article li.js-accordion > .toggle-article-list::before {
  content: "";
  display: block;
  position: absolute;
  right: 1em;
  top: 50%;
  width: 1em;
  height: 1px;
  background-color: #17b29e;
  transform: translateY(-50%);
}
.links-article li.js-accordion > .toggle-article-list::after {
  content: "";
  display: block;
  position: absolute;
  right: 1em;
  top: 50%;
  width: 1em;
  height: 1px;
  background-color: #17b29e;
  transform: translateY(-50%) rotate(90deg);
  transform-origin: center;
  transition: transform 0.2s ease;
}
.links-article li.js-accordion > .toggle-article-list[aria-expanded="true"]::after {
  transform: translateY(-50%) rotate(180deg);
}

.links-article li.js-accordion > .toggle-article-items {
  gap: 2px;
}
.links-article li.js-accordion > .js-toggle-article-items[hidden] {
  display: none;
}
.links-article li.js-accordion > .toggle-article-items > li a {
  text-indent: 1em;
}

.footer-contents .links-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}
.links-legal li {
  flex-basis: calc(50% - 2px);
}
.links-legal li a {
  color: #888;
  justify-content: center;
}

/*footer フロートbtn*/
.area-fixedBtn {
  display: contents;
}
.float_btn {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  transition: 0.3s ease all;
  transform: translateY(100%);
}
.float_btn.is-show {
  transform: translateY(0);
}
.float_btn a {
  width: 100%;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #6ebd36;
  border-radius: 30px;
  border-bottom: 8px solid #3f6e1e;
  font-size: 20px;
  font-weight: bold;
  color: #fff;
  text-decoration: none;
}
.float_btn_inner {
  padding: 10px;
}

/*topへ戻るボタン pc*/
.fixedBtn-pc .btn-toTop {
  position: fixed;
  bottom: 3%;
  right: 3%;
  z-index: 999;
}
.fixedBtn-pc .btn-toTop img {
  width: 40px;
  height: 40px;
  opacity: 0.7;
  transition: all 0.15s ease-in-out;
}
/*topへ戻るボタン sp*/
.fixedBtn-sp .btn-toTop {
  position: fixed;
  bottom: 1.5em;
  right: 1em;
  z-index: 999;
}
.fixedBtn-sp .btn-toTop img {
  width: 40px;
  height: 40px;
}
