@charset "UTF-8";
/**
* Foundation
* ========================== */
/* 
 ==================================
 変数
 ================================== 
*/
/*  primaryColor  */
/*  lineColor  */
/*  secondryColor  */
/*  tertiaryColor  */
/*  Noto Sans JP  */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP&display=swap");
/*  Noto serif JP  */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP&family=Noto+Serif+JP&display=swap");
/*  Mrs Sheppards  */
@import url("https://fonts.googleapis.com/css2?family=Mrs+Sheppards&family=Noto+Sans+JP&display=swap");
/*  Oooh Baby  */
@import url("https://fonts.googleapis.com/css2?family=Mrs+Sheppards&family=Noto+Sans+JP&family=Oooh+Baby&display=swap");
/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* 
 ==================================
 mixin
 ================================== 
*/
/* 
 ==================================
 base
 ================================== 
 */
html,
body {
  overflow-x: hidden;
  width: 100%;
  color: #3e3e3e;
  font-size: 16px;
  line-height: 1.6;
  font-family: "Noto Sans JP", sans-serif;
  -webkit-text-size-adjust: 100%;
     -moz-text-size-adjust: 100%;
      -ms-text-size-adjust: 100%;
          text-size-adjust: 100%;
  letter-spacing: 0.1em;
  background-color: #ffffff;
  position: relative;
}

p,
a {
  -webkit-font-smoothing: antialiased;
}

a {
  color: #3e3e3e;
  text-decoration: none;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

a:hover {
  color: #EC4899;
}

img {
  width: 100%;
  vertical-align: bottom;
}

button {
  cursor: pointer;
}

input:focus {
  outline: 1px #F472B6 solid;
}

input[type=submit] {
  cursor: pointer;
}

/**
* Layout
* ========================== */
/* LPログイン前header */
.lp-header {
  background-color: #4C3837;
  border-bottom: solid 2px #EDDB8C;
  padding-inline: 2%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.lp-header__logo {
  width: clamp(82px, 14vw, 120px);
}
.lp-header__login {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: auto;
  gap: clamp(5px, 1vw, 10px);
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
  height: 100%;
}
.lp-header__list {
  color: #F6E99A;
  font-size: clamp(13px, 2.8vw, 20px);
}
.lp-header__list-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
  gap: clamp(4px, 1vw, 4px);
}
.lp-header__form-input {
  width: 50%;
  font-size: clamp(10px, 3.2vw, 16px);
}
@media screen and (max-width: 768px) {
  .lp-header__form-input {
    padding: 0;
  }
}
.lp-header__btn-outer {
  height: 100%;
}
.lp-header__btn {
  background: linear-gradient(135deg, #D2B364, #F6E99A, #C3984C);
  color: #47320B;
  border: 3px solid;
  border-image-source: linear-gradient(to top, #C3984C, #F0CA86);
  border-image-slice: 1;
  font-weight: bold;
  font-size: clamp(10px, 3.2vw, 32px);
  white-space: nowrap;
  padding: 0 clamp(3px, 3.2vw, 3px);
}
@media screen and (max-width: 768px) {
  .lp-header__btn {
    height: 100%;
    min-height: 40px;
  }
}

/* ログイン後header */
.header {
  background-color: #0E0301;
  border-bottom: solid 2px #EDDB8C;
  padding-inline: 2%;
}
.header__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: clamp(8px, 3vw, 20px);
}
@media screen and (max-width: 768px) {
  .header__top {
    padding: 1% 0;
  }
}
.header__logo {
  width: clamp(82px, 14vw, 120px);
}
.header__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: clamp(0px, 1vw, 20px);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 768px) {
  .header__info {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: end;
  }
}
.header__info-user {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: clamp(13px, 2vw, 20px);
  color: #ffffff;
  gap: clamp(8px, 1.6vw, 10px);
  line-height: 1.2;
}
.header__info-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: clamp(6px, 1.6vw, 10px);
}
.header__info-btn a {
  font-weight: 500;
  display: block;
  background-color: #ffffff;
  color: #0E0301;
  border-radius: 100px;
  font-size: clamp(11px, 2vw, 16px);
  padding: clamp(0px, 1vw, 2px) clamp(1px, 1.6vw, 10px);
  min-width: 110px;
  text-align: center;
  -webkit-box-shadow: 0 2px 2px #ffffff, 0 -4px 5px -2px #cecece inset;
          box-shadow: 0 2px 2px #ffffff, 0 -4px 5px -2px #cecece inset;
}
@media screen and (max-width: 768px) {
  .header__info-btn a {
    min-width: 70px;
  }
}
.header__nav ul {
  max-width: 1000px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-bottom: 0.3%;
}
@media screen and (max-width: 768px) {
  .header__nav ul {
    padding: 1% 0;
  }
}
.header__nav-item a {
  color: #ffffff;
  font-size: clamp(12px, 2.4vw, 20px);
}

/* LPログイン前footer */
.lp-footer {
  background-color: #0E0301;
  color: #ffffff;
  padding: 16px 4%;
  text-align: center;
}
.lp-footer__menu-container {
  margin-bottom: 10px;
}
@media screen and (max-width: 768px) {
  .lp-footer__menu-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 2% 0;
    width: 90%;
    margin: 0 auto;
  }
}
.lp-footer__logo {
  width: clamp(90px, 20vw, 120px);
  margin: 0 auto;
}
.lp-footer__menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: clamp(10px, 6vw, 16px);
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 30px;
  text-align: left;
}
@media screen and (max-width: 768px) {
  .lp-footer__menu {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0;
    width: 64%;
  }
}
.lp-footer__item {
  margin-bottom: -2px;
}
.lp-footer__item a {
  color: #ffffff;
  font-size: clamp(14px, 2.8vw, 18px);
}
.lp-footer__copylight {
  font-size: clamp(9px, 2vw, 12px);
}
.lp-footer__rules {
  margin: 0 auto;
  text-align: left;
  font-size: clamp(10px, 2vw, 16px);
}

/* ログイン後footer(ログイン前footerとデザイン同じ。
リンク先のページが異なる */
.footer {
  background-color: #0E0301;
  color: #ffffff;
  padding: 16px 4%;
  text-align: center;
}
.footer__menu-container {
  margin-bottom: 10px;
}
@media screen and (max-width: 768px) {
  .footer__menu-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 2% 0;
    width: 90%;
    margin: 0 auto;
  }
}
.footer__logo {
  width: clamp(90px, 20vw, 120px);
  margin: 0 auto;
}
.footer__menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: clamp(10px, 6vw, 16px);
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 30px;
  text-align: left;
}
@media screen and (max-width: 768px) {
  .footer__menu {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0;
    width: 64%;
  }
}
.footer__item {
  margin-bottom: -2px;
}
.footer__item a {
  color: #ffffff;
  font-size: clamp(14px, 2.8vw, 18px);
}
.footer__copylight {
  font-size: clamp(9px, 2vw, 12px);
}
.footer__rules {
  margin: 0 auto;
  text-align: left;
  font-size: clamp(10px, 2vw, 16px);
}

/*
Object
* ========================== */
/* Component ------------ */
/* lp-content__btn(利用するボタン)のアニメーション定義 */
@-webkit-keyframes pulse-animation {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.06);
            transform: scale(1.06);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@keyframes pulse-animation {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.06);
            transform: scale(1.06);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
/* 全てのページの背景 */
.all-bg__wrap {
  background-image: url(/files/img/Best_harem/content-bg.png);
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
  min-height: 100vh;
  width: 100%;
}
.all-bg__inner {
  width: 96%;
  margin: 0 auto;
  min-height: 100vh;
  height: auto;
  background: -webkit-gradient(linear, left top, left bottom, from(#63331C), color-stop(#0F0400), color-stop(#0F0400), to(#63331C));
  background: linear-gradient(to bottom, #63331C, #0F0400, #0F0400, #63331C);
  border-left: 2vw solid #B78E46;
  border-right: 2vw solid #B78E46;
  -webkit-box-shadow: 0 0 23px #000000;
          box-shadow: 0 0 23px #000000;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
}

/* 共通要素 */
.content {
  text-align: center;
}

.sec-tit {
  display: inline-block;
  font-size: clamp(20px, 6vw, 75px);
  color: #FFF600;
  border-bottom: solid 1px #FFF600;
}

.fv-cont {
  background-color: #1B0700;
  border-radius: 0 0 90px 90px;
  border-bottom: solid 10px #F19308;
}

/* lp */
.lp-content__btn {
  display: block;
  width: 70%;
  margin: 0 auto;
  min-width: 330px;
  -webkit-animation: pulse-animation 2s infinite ease-in-out;
          animation: pulse-animation 2s infinite ease-in-out;
}
.lp-content__regist {
  position: relative;
  width: 100%;
}
.lp-content__regist .regist-line-btn {
  position: absolute;
  right: 8%;
  width: 50%;
  display: block;
  -webkit-transition: -webkit-transform 0.5s ease-out;
  transition: -webkit-transform 0.5s ease-out;
  transition: transform 0.5s ease-out;
  transition: transform 0.5s ease-out, -webkit-transform 0.5s ease-out;
  cursor: pointer;
}
.lp-content__regist .regist-line-btn:hover {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
.lp-content__regist .regist-line-btn:active {
  -webkit-transform: scale(0.95);
          transform: scale(0.95);
}
.lp-content__regist1 .regist-line-btn {
  bottom: 18%;
}
.lp-content__regist2 .regist-line-btn, .lp-content__regist3 .regist-line-btn, .lp-content__regist4 .regist-line-btn {
  bottom: 15%;
}
.lp-content__lobby {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.lp-content__lobby-slider {
  position: absolute;
  bottom: -16%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 85%;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .lp-content__lobby-slider {
    bottom: -23%;
    width: 75%;
  }
}
.lp-content__lobby-slider .slider-prev,
.lp-content__lobby-slider .slider-next {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: none;
  border: none;
}
.lp-content__lobby-slider .slider-prev::after,
.lp-content__lobby-slider .slider-next::after {
  content: "";
  width: 25px;
  height: 25px;
  border-top: 5px solid #fff;
  border-right: 5px solid #fff;
  display: block;
}
.lp-content__lobby-slider .slider-prev {
  left: 0;
}
.lp-content__lobby-slider .slider-prev::after {
  -webkit-transform: rotate(-135deg);
          transform: rotate(-135deg);
}
.lp-content__lobby-slider .slider-next {
  right: 0;
}
.lp-content__lobby-slider .slider-next::after {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.lp-content__lobby-slider-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
  width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .lp-content__lobby-slider-inner {
    width: 300%;
  }
}
.lp-content__lobby-slider-item {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 33.333%;
          flex: 0 0 33.333%;
  width: 33.333%;
}
@media screen and (max-width: 768px) {
  .lp-content__lobby-slider-item {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 33.333%;
            flex: 0 0 33.333%;
  }
}
.lp-content__lobby-slider-item img {
  padding: 0 3%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* プラン一覧（menu） */
/*
html img 変換する
src="/files/img/"

css img 変換する
background-image: url(.././img/　　　);




*//*# sourceMappingURL=main.css.map */