:root {
  /*font-family*/
  --ff-round: "M PLUS Rounded 1c", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  --ff-kosugi: "Kosugi Maru", "M PLUS Rounded 1c", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  --ff-rock: "RocknRoll One", "M PLUS Rounded 1c", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  --ff-yomogi: "Yomogi", "Kosugi Maru", "M PLUS Rounded 1c", "Hiragino Kaku Gothic ProN", Meiryo, cursive;

  /*color btn用*/
  --btn-gray: #aaa;
  --btn-gray-dark: #888;
  --btn-pink: #ff789f;
  --btn-pink-dark: #cc6986;
  --btn-cyan: #56c7d6;
  --btn-cyan-dark: #459fab;

  /*fixed用高さ調整*/
  --footer-regist-height: 140px;
}

/* girls_seo_base_style.css */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html,
body {
  margin: 0;
  padding: 0;
  font-family: var(--ff-round);
  line-height: 1.5;
}
body {
  padding-bottom: var(--footer-regist-height);
}
img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}
.wrapper {
  position: relative;
  overflow-x: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
.contents_wrap {
  flex: 1;
}

/*Header*/
.site-header {
  position: relative;
  width: 100%;
  height: 65px;
  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: 960px) {
  .nav-pc {
    display: flex;
    gap: 20px;
  }
  .nav-sp {
    display: none;
  }
}
@media screen and (max-width: 959px) {
  .nav-pc {
    display: none;
  }
  .nav-sp {
    display: block;
  }
}
/* sp/pcでデザイン変更 ここまで */

.logo-top {
  display: flex;
  justify-content: center;
  align-items: center;
}
img.logo {
  width: 70px;
  height: auto;
}
.logo-text {
  all: unset;
  display: block;
  margin: 0 10px;
  flex: 1;
  font-size: clamp(12px, 3.5vw, 16px);
  line-height: 1em;
}

/* 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: 65px;
  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: block;
}
.nav-menu ul {
  list-style: none;
  height: calc(100% - 70px);
  overflow: hidden;
  overflow-y: scroll;
  box-shadow: inset 0px -8px 4px -8px #000, inset 0px 6px 3px -6px #000;
  margin-bottom: 20px;
}
.nav-menu ul li {
  position: relative;
  border-bottom: 1px #333 solid;
}
.nav-menu ul li:last-child {
  border-bottom: none;
}
.nav-menu li a {
  padding: 12px 0.5em;
  text-decoration: none;
  display: flex;
  color: #333;
  font-size: clamp(14px, 4vw, 18px);
  text-shadow: 1px 1px 1px #fff;
}
.nav-menu 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 .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;
}

/*header-contactPhone*/
.contactPhone {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
}
.contactPhone .text {
  font-size: clamp(12px, 1.4vw, 14px);
}
.contactMail {
  display: flex;
  justify-content: center;
  align-items: center;
}

/*footer-Contents*/
.footer-contents {
  background-color: #979797;
  background-image: url("../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-discription {
  display: flex;
  align-items: flex-start;
  margin-bottom: 16px;
}
.footer-discription .footer_logo {
  width: 80px;
  height: auto;
  filter: drop-shadow(2px 2px 1px #fff);
}
.footer-discription .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;
}

/*bottom-links*/
.internal-links {
  background: #fef2f5;
  padding: 2em 0;
}
.internal-links-title {
  font-size: clamp(18px, 4vw, 20px);
  text-align: center;
  color: var(--cl-pink-deep);
  font-weight: bold;
}
.internal-links ul {
  list-style: none;
  width: min(100%, 960px);
  padding: 30px 16px 20px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  gap: 10px;
}
.internal-links .list-item {
  flex-grow: 1;
  width: max(230px, calc(50% - 6px));
  padding: 1em;
  background: rgb(255 255 255 / 75%);
  border-radius: 10px;
  box-shadow: 0 4px 6px 2px rgba(227, 186, 203, 0.4);
}
.internal-links .list-item a {
  text-decoration: none;
  display: flex;
  gap: 10px;
  text-shadow: 0 0 1px rgb(0 0 0 / 20%);
}
.internal-links .list-item-image {
  flex-shrink: 0;
  width: min(33%, 120px);
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 0 20px;
  box-shadow: 3px 4px 0px 0px #f72685;
}
.internal-links .list-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.internal-links .list-item-intro {
  flex: 1;
}
.internal-links .list-item-intro .list-item-title {
  margin: 0 0 0.5em;
  font-size: 1em;
  font-weight: bold;
  line-height: 1.3;
  color: var(--cl-pink-deep);
  font-size: clamp(12px, 3.5vw, 14px);
}
.internal-links .list-item-intro .list-item-title span {
  display: block;
  font-size: 88%;
}
.internal-links .list-item-intro .list-item-text {
  margin: 0;
  font-size: clamp(11px, 3.3vw, 13px);
  color: #555;
}

/*fixed-Regist*/
.fixed-footer-regist {
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.6s ease;

  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  min-height: var(--footer-regist-height);
  z-index: 1000;
  text-align: center;
  box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.15);
  background: url(../ViComm/woman/Image/A001/bg/bg_wetSnow.png), var(--cl-pink-deep);
  background-blend-mode: overlay;
  background-size: 20px, cover;
  background-position: center;
  background-repeat: repeat, no-repeat;
}
.fixed-footer-regist.is-shown {
  visibility: visible;
  opacity: 1;
}
.fixed-footer-regist .container {
  width: min(100%, 960px);
  padding: 1em;
  margin: 0 auto;
}
.register-text-main {
  font-family: var(--ff-kosugi);
  font-size: clamp(16px, 5.3vw, 24px);
  color: #fff;
  font-weight: bold;
  text-shadow: 2px 2px 4px rgb(0 0 0 / 80%);
  min-height: 1.2em;
}
.register-text-sub {
  font-family: var(--ff-yomogi);
  font-size: clamp(10px, 3vw, 14px);
  color: #fff;
  font-weight: bold;
  text-shadow: 2px 2px 4px rgb(0 0 0 / 50%);
  min-height: 1.2em;
}
.cta-buttons {
  margin-top: 1em;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
.cta-buttons a {
  text-decoration: none;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: max(230px, 50%);
  background: #fff;
  color: #e91e63;
  font-weight: bold;
  font-size: 14px;
  padding: 0.7em 1.5em;
  border-radius: 999px;
  min-height: 44px;
  line-height: 1.2;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
  transition: background 0.2s ease, color 0.2s ease;
}
.cta-buttons a:hover {
  background: #fce4ec;
  color: #c2185b;
}

/*top-toc*/
.toc {
  max-height: 300px;
  overflow: hidden;
  position: relative;
  transition: max-height 0.4s ease;

  width: min(calc(100% - 50px), 960px);
  background: url(../ViComm/woman/Image/A001/bg/bg_stripeDark.png), rgba(215, 215, 215, 0.05);
  background-blend-mode: multiply;
  background-size: 100px, cover;
  background-position: center;
  background-repeat: repeat, no-repeat;
  padding: clamp(2em, 8.3vw, 4em) 1.2em clamp(3.8em, 16vw, 5em);
  margin: 20px auto;
  border-top: 1px #ccc solid;
  border-bottom: 1px #ccc solid;
}
.toc.is-expanded {
  max-height: none;
  overflow: visible;
}
.toc .toc-title {
  font-family: var(--ff-kosugi);
  font-size: clamp(16px, 3.3vw, 20px);
  color: #333;
  font-weight: bold;
  text-shadow: 2px 2px 4px rgb(255 255 255 / 80%);
  text-align: center;
  margin-bottom: 1.2em;
}
.toc .toc-inner {
}
.toc .toc-list {
  list-style: none;
}
.toc .toc-item {
  margin: 0.3em 0;
  font-size: clamp(12.8px, 3.5vw, 14px);
}
.toc .toc-item:last-of-type {
  margin-bottom: 0;
}
.toc .toc-item.toc-h2 {
  margin-top: 0.8em;
}
.toc .toc-item.toc-h3 {
  padding-left: 1em;
  font-size: 90%;
  color: #666;
}
.toc .toc-item a {
  text-decoration: none;
  color: #333;
  text-shadow: 2px 2px 2px rgb(209 209 209 / 80%);
}
.toc .toc-item a:hover {
  text-decoration: underline;
  color: #d81b60;
}
/*tocのぼかし*/
.toc-fade {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(to bottom, transparent, #fff);
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 1;
}
.toc.is-expanded .toc-fade {
  opacity: 0;
  visibility: hidden;
}
/* moreボタン */
.toc-more {
  position: absolute;
  left: 50%;
  bottom: 30px;
  transform: translate(-50%, 50%);
  display: block;
  width: fit-content;
  padding: 1em 2em;
  font-size: 14px;
  font-weight: bold;
  color: #ff5e93;
  background: rgb(255 255 255 / 70%);
  border: 1px rgb(255 94 147 / 50%) solid;
  border-radius: 100px;
  cursor: pointer;
  z-index: 10;
}
