@charset "UTF-8";

/***************************************************
▼適用
_page_header04.html
_page_footer_menu04.html
***************************************************/
:root {
  /*color btn用*/
  --btn-gray: #aaa;
  --btn-gray-dark: #888;
  --btn-pink: #ff789f;
  --btn-pink-dark: #cc6986;
  --btn-cyan: #56c7d6;
  --btn-cyan-dark: #459fab;

  /*Header、Footer高さ*/
  --header-regist-height: 60px;
  --footer-regist-height: 70px;
}

/***** Header *****/
.site-header {
  position: relative;
  width: 100%;
  height: var(--header-regist-height);
  padding: 10px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #ccc;
}
/*--- sp/pcでデザイン変更 ---*/
@media screen and (min-width: 961px) {
  .nav-pc,
  .nav-primary {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    flex: 1;
    gap: 20px;
  }
  .nav-sp,
  .nav-drawer {
    display: none;
  }
  .pc-br {
    display: block;
  }
  .sp-br {
    display: none;
  }
  .topBanner {
    padding-top: 0;
  }
}
@media screen and (max-width: 960px) {
  .site-header {
    position: fixed;
    top: 0;
    z-index: 1000;
  }
  .nav-pc,
  .nav-primary {
    display: none;
  }
  .nav-sp,
  .nav-drawer {
    display: block;
  }
  .pc-br {
    display: none;
  }
  .sp-br {
    display: block;
  }
  .sp-pd_t {
    padding-block-start: 0;
  }

  main {
    padding-top: var(--header-regist-height);
  }
}
/*--- sp/pcでデザイン変更 ここまで ---*/

.logo-wrap {
  display: flex;
  align-items: center;
  flex: 1;
}
.logo-top {
  display: flex;
  justify-content: center;
  align-items: center;
}
img.logo {
  width: 70px;
  height: auto;
}
.logo-text {
  all: unset;
  flex: 1;
  display: block;
  margin-inline: 5px;
  font-size: clamp(10px, 1.3vw, 13px);
  line-height: 1.1;
  text-align: left;
  color: #2e2e2e;
}

/***** Header - links *****/
.links-headerNav {
  display: flex;
  justify-content: center;
  align-items: center;
  list-style: none;
  flex: 1;
  text-align: center;
}
.links-headerNav li {
  flex: 0 1 163px;
  display: flex;
  border-right: 1px #eee solid;
  height: 100%;
  justify-content: center;
  align-items: center;
}
.links-headerNav li:first-child {
  border-left: 1px #eee solid;
}
.links-headerNav li a {
  text-decoration: none;
  color: #2e2e2e;
  line-height: 1.1;
  font-size: 14px;
}
.links-headerRegist {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 8px;
}
.links-headerRegist [class^="login-"] {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 1 140px;
  height: 45px;
  background: #ff008b;
  border-radius: 30px;
  transition: 0.5s;
  font-size: clamp(12px, 1.3vw, 14px);
  line-height: 1.2;
  text-decoration: none;
  color: #fff;
  padding: 0.3em;
}
.links-headerRegist .login-user {
  background: #1c8aff;
}

/***** Header > menuButton *****/
.menuToggle {
  width: 45px;
  height: 45px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1001;
}
.menuToggle .button-inner {
  position: relative;
  width: 30px;
  height: 22px;
}
.menuToggle .button-inner span {
  display: block;
  width: 100%;
  height: 3px;
  background: #333;
  position: absolute;
  left: 0;
  transition: 0.3s ease;
}
.menuToggle .button-inner span:nth-child(1) {
  top: 0;
}
.menuToggle .button-inner span:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}
.menuToggle .button-inner span:nth-child(3) {
  bottom: 0;
}
.menuToggle.is-open .button-inner span:nth-child(1) {
  transform: rotate(45deg);
  top: 10px;
}
.menuToggle.is-open .button-inner span:nth-child(2) {
  opacity: 0;
}
.menuToggle.is-open .button-inner span:nth-child(3) {
  transform: rotate(-45deg);
  bottom: 9px;
}

/***** Header > menuContents *****/
.nav-menu {
  display: none;
  position: absolute;
  width: min(90vw, 380px);
  max-height: 80vh;
  top: var(--header-regist-height);
  right: 0;
  background: rgba(255, 255, 255, 0.9);
  padding: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(1px);
  z-index: 9999;
}
.nav-menu.is-open {
  display: flex;
  flex-direction: column;
}
.nav-menu-inner {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
}
.nav-menu ul.mainlist {
  list-style: none;
  height: calc(100% - 70px);
  overflow-y: scroll;
  box-shadow:
    inset 0px -8px 4px -8px #000,
    inset 0px 6px 3px -6px #000;
  margin-bottom: 20px;
}
.nav-menu ul.mainlist li {
  position: relative;
  border-bottom: 1px #333 solid;
}
.nav-menu ul.mainlist li:last-child {
  border-bottom: none;
}
.nav-menu ul.mainlist li a {
  padding: 12px 0.5em;
  text-decoration: none;
  display: flex;
  color: #333;
  font-size: clamp(14px, 1.6vw, 16px);
  text-shadow: 1px 1px 1px #fff;
}
.nav-menu ul.mainlist li a:after {
  content: "";
  position: absolute;
  width: 1em;
  height: 1em;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  background: url(/User/ViComm/woman/Image/A001/svg/ico/ico_arrow_right_gray.svg);
  background-size: contain;
  pointer-events: none;
}
.nav-menu ul.sublist {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 20px;
}
.nav-menu ul.sublist a {
  padding: 0.6em 0.3em;
  text-decoration: none;
  display: flex;
  color: #333;
  font-size: clamp(12px, 3.4vw, 14px);
  text-shadow: 1px 1px 1px #fff;
}

.nav-menu .entryBtn {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
}
.nav-menu .entryBtn [class*="button-"] {
  text-decoration: none;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  width: calc(50% - 10px);
  height: 50px;
  font-family: var(--ff-rock);
  color: #fff;
  background: var(--btn-gray);
  border-bottom: 3px var(--btn-gray-dark) solid;
  border-radius: 5px;
  box-shadow: 2px 3px 4px -1px rgb(0 0 0 / 60%);
}
.nav-menu .entryBtn .button-login {
  background: var(--btn-pink);
  border-bottom-color: var(--btn-pink-dark);
}
.nav-menu .entryBtn .button-regist {
  background: var(--btn-cyan);
  border-bottom: 3px var(--btn-cyan-dark) solid;
}

/***** footer-Contents *****/
.footer-contents {
  background-color: #979797;
  background-image: url("/User/ViComm/woman/Image/A001/bg/bg_softNoise.png");
  background-repeat: repeat;
  background-size: auto;
}
.footer-contents .container {
  width: min(100%, 960px);
  padding: 20px 16px;
  margin: 0 auto;
}
.footer-description {
  display: flex;
  align-items: flex-start;
  margin-bottom: 16px;
}
.footer-description .footer_logo {
  width: 80px;
  height: auto;
  filter: drop-shadow(2px 2px 1px #fff);
}
.footer-description .text {
  font-size: clamp(12px, 3.3vw, 14px);
  line-height: 1.6;
  color: #fff;
  flex: 1;
}
/*--- sp/pcでデザイン変更 ---*/
@media screen and (min-width: 768px) {
  .footer-description-pc {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  .footer-description-pc {
    display: none;
  }
}
/*--- sp/pcでデザイン変更 ここまで ---*/

.footer-contItem {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 16px 0;
}
.footer-contItem li {
  flex: 1 1 fit-content;
  min-width: 140px;
}
.footer-contItem a {
  display: block;
  padding: 8px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 4px;
  text-align: center;
  font-size: clamp(12px, 3.5vw, 14px);
  color: #fff;
  font-weight: bold;
  text-decoration: none;
}

/***footer Meta***/
.footer-meta {
  padding: 20px 15px 25px;
  background: #444;
  color: #ccc;
}
.footer-meta .copyright {
  font-size: 14px;
  text-align: center;
  line-height: 1.4;
  margin-bottom: 10px;
}
.footer-meta .copyright span {
  margin: 0 4px;
}
.footer-meta .copyright a {
  color: #ff6699;
}
.footer-meta .license {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-meta .license p {
  font-size: clamp(10px, 3.3vw, 12px);
  line-height: 1.4;
  letter-spacing: 0.02em;
}

/*footerコンテンツ pc*/
.footer-pc .inner {
  width: 932px;
  margin: 0 auto;
  padding: 50px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}
.footer-pc .footer_logo {
  width: 125px;
  /*元cssリセット*/
  float: none;
}
.footer-pc .footer_logo a {
  display: flex;
}
.footer-pc .footer_logo img {
  width: 125px;
  max-width: 125px;
  height: auto;
}

.footer-pc .globalNav {
  width: calc(100% - 125px - 40px);
  /*元cssリセット*/
  float: none;
  padding: 0;
}
.footer-pc .footer_description {
  /*元cssリセット*/
  padding: 0;
}
.footer-pc .navList {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7em;
  /*元cssリセット*/
  overflow: auto;
  padding: 20px 0;
}
.footer-pc .navList li {
  display: block;
}
.footer-pc .navList li:not(:last-child):after {
  content: "|";
  padding-inline: 0.7em 0;
  color: #ccc;
}

.footer-pc .navList-article {
  width: 100%;
}
.footer-pc .links-article {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 50px 15px;
}
.footer-pc .links-article li.js-accordion {
  width: calc((100% - (15px * 2)) / 3);
}
.footer-pc .links-article li.js-accordion > .toggle-article-list {
  all: unset;
  width: 100%;
  height: 36px;
  padding-inline: 0.2em;
  color: #fff;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-size: 14px;
  position: relative;

  border-bottom: 2px #fff solid;
  box-sizing: border-box;
  margin-block: 0 20px;
}
.footer-pc .links-article li.js-accordion > .toggle-article-list::before {
  content: "";
  display: block;
  position: absolute;
  right: 1em;
  top: 50%;
  width: 1em;
  height: 2px;
  background-color: #fff;
  transform: translateY(-50%);
}
.footer-pc .links-article li.js-accordion > .toggle-article-list::after {
  content: "";
  display: block;
  position: absolute;
  right: 1em;
  top: 50%;
  width: 1em;
  height: 2px;
  background-color: #fff;
  transform: translateY(-50%) rotate(90deg);
  transform-origin: center;
  transition: transform 0.2s ease;
}
.footer-pc .links-article li.js-accordion > .toggle-article-list[aria-expanded="true"]::after {
  transform: translateY(-50%) rotate(180deg);
}

.footer-pc .links-article li.js-accordion > .toggle-article-items {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.footer-pc .links-article li.js-accordion > .js-toggle-article-items[hidden] {
  display: none;
}
.footer-pc .links-article li.js-accordion > .toggle-article-items > li {
  width: 100%;
  min-height: 30px;
  display: flex;
  align-items: center;
  border-bottom: 1px #fff solid;
  margin-block-end: 20px;
}
.footer-pc .links-article li.js-accordion > .toggle-article-items > li a {
  font-size: 14px;
  color: #fff;
  padding-inline-start: 1em;
}

/*コピーライト pc*/
.footer-pc .copyright {
  width: 100%;
  margin: 0;
  padding: 0;
}

/*footerコンテンツ sp*/
.footer-sp .footer-contents {
  background: #b2b2b2;
  margin-bottom: 1.71em;
}
.footer-sp .footer-contents .container {
  padding: 5px;
}
.footer-sp .footer-contents .container > nav:not(:last-child) {
  margin-bottom: 1.71em;
}
.footer-sp .footer-contents ul {
  list-style: none;
}

.footer-sp .footer-contents .links-main {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.footer-sp [class^="links-"] li,
.footer-sp .links-article li.js-accordion > .toggle-article-items > li {
  width: 100%;
  height: 36px;
  background: #fff;
  padding-inline: 0.71em;
  display: flex;
  align-items: center;
}
.footer-sp [class^="links-"] li a {
  text-decoration: none;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 6px;
  line-height: 1;
}
.footer-sp .links-main li a {
  color: #ff949d;
}
.footer-sp .links-main li .icon-linkItem {
  width: 20px;
  height: 20px;
}

.footer-sp .footer-contents .links-article,
.footer-sp .links-article li.js-accordion > .toggle-article-items {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.footer-sp .links-article li a,
.footer-sp .links-article li.js-accordion > .toggle-article-items > li a {
  color: #17b29e;
}

.footer-sp .links-article li.js-accordion {
  all: unset;
}
.footer-sp .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;
}
.footer-sp .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%);
}
.footer-sp .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;
}
.footer-sp .links-article li.js-accordion > .toggle-article-list[aria-expanded="true"]::after {
  transform: translateY(-50%) rotate(180deg);
}

.footer-sp .links-article li.js-accordion > .toggle-article-items {
  gap: 2px;
}
.footer-sp .links-article li.js-accordion > .js-toggle-article-items[hidden] {
  display: none;
}
.footer-sp .links-article li.js-accordion > .toggle-article-items > li a {
  text-indent: 1em;
}

.footer-sp .footer-contents .links-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}
.footer-sp .links-legal li {
  flex-basis: calc(50% - 2px);
}
.footer-sp .links-legal li a {
  color: #888;
  justify-content: center;
}

/*footerライセンスなど sp*/
.footer-sp .footer-legal {
  width: 100%;
  margin: 0;
  padding-block: 1em 8em;
  background: #000;
  font-size: 12px;
  color: #fff;
  text-align: center;
}
.footer-sp .footer-legal > *:not(:last-child) {
  margin-block-end: 1em;
}
.footer-sp .footer-legal .legal-intro {
  font-size: 1em;
  margin-block-end: 0.5em;
}
.footer-sp .footer-legal .legal-age,
.footer-sp .footer-legal .legal-license {
  font-size: 1em;
  color: #fff;
}
.footer-sp .footer-legal .legal-site,
.footer-sp .footer-legal .legal-site a {
  font-size: 1em;
  color: #d5365b;
}

/*footer フロートbtn sp*/
.area-fixedBtn {
  display: contents;
}
.fixedBtn-sp .float_btn {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  transition: 0.3s ease all;
  transform: translateY(100%);
}
.fixedBtn-sp .float_btn.is-show {
  transform: translateY(0);
}
.fixedBtn-sp .float_btn a {
  width: 100%;
  max-width: calc(680px - 2em);
  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;

  margin-inline: auto;
}
.fixedBtn-sp .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: 143px;
  height: 63px;
  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;
}
