@charset "utf-8";
* {
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  tap-highlight-color: rgba(0, 0, 0, 0);
  outline: none;
  -webkit-text-size-adjust: 100%;
}
a {
  color: #0088cc;
}
a:visited {
  color: #337799;
}
a:hover {
  color: #cc0088;
}
ul,
ol {
  list-style: none;
}
input:not([type="checkbox"]):not([type="radio"]),
select:not([type="checkbox"]):not([type="radio"]),
textarea:not([type="checkbox"]):not([type="radio"]),
a.button:not([type="checkbox"]):not([type="radio"]) {
  -webkit-appearance: none;
  appearance: none;
  display: inline-block;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
  padding: 4px 8px;
  background-color: #fff;
  border: none;
  font-size: 16px;
  font-family: sans-serif;
  -webkit-border-radius: 4px;
  border-radius: 4px;
}
input:not([type="checkbox"]):not([type="radio"]):not(:placeholder-shown):invalid,
select:not([type="checkbox"]):not([type="radio"]):not(:placeholder-shown):invalid,
textarea:not([type="checkbox"]):not([type="radio"]):not(:placeholder-shown):invalid,
a.button:not([type="checkbox"]):not([type="radio"]):not(:placeholder-shown):invalid {
  box-shadow: 0 0 0 1px #ff0000;
}
input:not([type="checkbox"]):not([type="radio"]):focus,
select:not([type="checkbox"]):not([type="radio"]):focus,
textarea:not([type="checkbox"]):not([type="radio"]):focus,
a.button:not([type="checkbox"]):not([type="radio"]):focus {
  box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.15);
}
label.checkbox {
  display: -webkit-flex;
  display: flex;
  -weblit-flex-flow: row nowrap;
  flex-flow: row nowrap;
  margin-bottom: 10px;
  font-size: 16px;
  cursor: pointer;
}
label.checkbox input {
  position: absolute;
  width: 0;
  height: 0;
  opacity: 0;
}
label.checkbox input + span {
  position: relative;
  width: 1.6em;
  height: 1.3em;
}
label.checkbox input + span:before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 2px;
  left: 0;
  width: 1.3em;
  height: 1.3em;
  background-color: #fff;
  -webkit-border-radius: 3px;
  border-radius: 3px;
}
label.checkbox input + span:after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0.4em;
  left: 0.2em;
  width: 0.7em;
  height: 0.3em;
  border: solid #ee2b6c;
  border-width: 0 0 0.25em 0.25em;
  opacity: 0;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
label.checkbox input:checked + span:after {
  opacity: 1;
}
label.checkbox input:focus {
  box-shadow: none;
}
label.checkbox input:focus + span:before {
  box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.15);
}
label.radio {
  display: -webkit-flex;
  display: flex;
  -weblit-flex-flow: row nowrap;
  flex-flow: row nowrap;
  margin-bottom: 10px;
  font-size: 16px;
  cursor: pointer;
}
label.radio input[type="radio"] {
  position: absolute;
  width: 0;
  height: 0;
  opacity: 0;
}
label.radio input[type="radio"] + span {
  position: relative;
  width: 1.6em;
  height: 1.3em;
}
label.radio input[type="radio"] + span:before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 2px;
  left: 0;
  width: 1.3em;
  height: 1.3em;
  background-color: #fff;
  -webkit-border-radius: 50%;
  border-radius: 50%;
}
label.radio input[type="radio"] + span:after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 5px;
  left: 3px;
  width: -webkit-calc(1.3em - 6px);
  width: calc(1.3em - 6px);
  height: -webkit-calc(1.3em - 6px);
  height: calc(1.3em - 6px);
  background-color: #f25a8c;
  opacity: 0;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  transition: all 0.2s;
}
label.radio input[type="radio"]:checked + span:after {
  opacity: 1;
}
label.radio input[type="radio"]:checked ~ div {
  font-weight: bold;
}
label.radio input[type="radio"]:focus {
  box-shadow: none;
}
label.radio input[type="radio"]:focus + span:before {
  box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.15);
}
input[type="date"] {
  min-width: 140px;
  min-height: 33px;
  padding-top: 4px !important;
  padding-bottom: 4px !important;
}
select {
  width: max-content;
}
div.select {
  display: inline-block;
  position: relative;
  width: max-content;
}
div.select:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0.5em;
  width: 0;
  height: 0;
  margin-top: -5px;
  border: solid transparent;
  border-width: 6px 5px 0;
  border-top-color: #666666;
  pointer-events: none;
}
div.select select {
  width: max-content;
  min-width: 135px;
  padding-right: 22px !important;
}
textarea {
  height: 80px;
  padding: 6px;
}
input[type="button"],
input[type="submit"],
a.button {
  background-color: #333;
  border: none;
  text-align: center;
  color: #fff;
  text-decoration: none;
  cursor: pointer;
  -webkit-border-radius: 4px;
  border-radius: 4px;
}
input[type="button"]:hover,
input[type="submit"]:hover,
a.button:hover {
  background-color: #666;
}
html {
  height: 100%;
  font-size: 16px;
  line-height: 1.5;
  color: #333;
  font-family: sans-serif;
}
body {
  background-color: #fff;
  font-family: sans-serif;
}
body > header {
  display: -webkit-flex;
  display: flex;
  -weblit-flex-flow: column nowrap;
  flex-flow: column nowrap;
  top: -66px;
  width: 100%;
  background-color: #fff;
  transition: top 0.3s;
}
body > header h1 {
  display: -webkit-flex;
  display: flex;
  -weblit-flex-flow: row wrap;
  flex-flow: row wrap;
  align-items: center;
  align-content: center;
  order: 4;
  height: 26px;
  padding: 0 10px;
  background-color: #f25a8c;
  font-size: 11px;
  font-weight: normal;
  color: #fff;
}
body > header h1 > span {
  display: -webkit-flex;
  display: flex;
  -weblit-flex-flow: row nowrap;
  flex-flow: row nowrap;
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
}
body > header h1 strong {
  margin-right: 5px;
  font-size: 12px;
  white-space: nowrap;
}
body > header h1 > span > span {
  margin-left: 5px;
  white-space: nowrap;
}
body > header .go-home {
  order: 1;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  display: -webkit-flex;
  display: flex;
  -weblit-flex-flow: row wrap;
  flex-flow: row wrap;
  align-items: center;
  width: 100%;
  max-width: 600px;
  height: 62px;
  margin: 0 auto;
  padding: 0 0 0 20px;
}
body > header .go-home a {
  display: block;
  width: 194px;
  height: 42px;
  background: url(../img/logo.png) no-repeat left top / auto 42px;
  text-indent: -9999px;
}
body > header #menu-button {
  order: 3;
  position: absolute;
  right: 10px;
  top: 17px;
  width: 44px;
  height: 39px;
  cursor: pointer;
}
body > header #menu-button span {
  display: inline-block;
  position: absolute;
  left: 7px;
  width: 30px;
  height: 5px;
  background-color: #f25a8c;
  -webkit-border-radius: 2.5px;
  border-radius: 2.5px;
}
body > header #menu-button span:nth-of-type(1) {
  top: 7px;
}
body > header #menu-button span:nth-of-type(2) {
  top: 17px;
}
body > header #menu-button span:nth-of-type(3) {
  top: 27px;
}
body > header #list-button {
  position: absolute;
  right: 10px;
  top: 12px;
  width: 39px;
}
body > header #list-button a {
  display: -webkit-flex;
  display: flex;
  -weblit-flex-flow: row wrap;
  flex-flow: row wrap;
  justify-content: center;
  align-items: center;
  align-content: center;
  order: 2;
  font-size: 10px;
  line-height: 1.0;
  font-weight: bold;
  color: #ff5a98;
  text-decoration: none;
}
body > header #list-button a i {
  font-size: 24px;
}
body > header #list-button a .count {
  display: -webkit-flex;
  display: flex;
  -weblit-flex-flow: row wrap;
  flex-flow: row wrap;
  justify-content: center;
  align-items: center;
  align-content: center;
  position: absolute;
  right: 5px;
  top: 0;
  width: 12px;
  height: 12px;
  background-color: #fff;
  border: solid 1px #ff2778;
  font-size: 11px;
  font-weight: bold;
  color: #ff2778;
  -webkit-border-radius: 50%;
  border-radius: 50%;
}
body > header #list-button a .count:empty {
  display: none;
}
body.shrink {
  padding-top: 88px;
  border-top: none;
}
body.shrink > header {
  position: fixed;
  top: 0;
  z-index: 10000;
  box-shadow: 0 1px 0 1px #f589ad;
}
body.shrink > header h1 {
  display: none;
}
body.shrink > header .go-home {
  height: 31px;
}
body.shrink > header .go-home a {
  width: 97px;
  height: 21px;
  background-size: auto 21px;
}
body.shrink > header #menu-button {
  order: 2;
  position: absolute;
  right: 5px;
  top: 0;
  width: 39px;
  height: 34px;
  cursor: pointer;
}
body.shrink > header #menu-button span {
  display: inline-block;
  position: absolute;
  left: 7px;
  width: 25px;
  height: 4px;
  background-color: #f25a8c;
  -webkit-border-radius: 2px;
  border-radius: 2px;
}
body.shrink > header #menu-button span:nth-of-type(1) {
  top: 7px;
}
body.shrink > header #menu-button span:nth-of-type(2) {
  top: 15px;
}
body.shrink > header #menu-button span:nth-of-type(3) {
  top: 23px;
}
body.shrink > header #list-button {
  top: 0;
  width: 34px;
  height: 34px;
}
body.shrink > header #list-button a {
  width: 34px;
  height: 34px;
}
body.shrink > header #list-button a i {
  font-size: 24px;
}
body.shrink > header #list-button a .count {
  right: 2px;
  top: 5px;
  width: 12px;
  height: 12px;
  font-size: 11px;
}
body.shrink > header #list-button a .text {
  display: none;
}
body > footer {
  position: relative;
  width: 100%;
  height: 100px;
  z-index: 500;
  overflow: hidden;
  background-color: #fff;
  transition: height 0.2s;
}
body > footer a {
  position: absolute;
  left: 5px;
  top: 10px;
  width: 194px;
  height: 42px;
  margin: 0 0 10px 10px;
  background: url(../img/logo.png) no-repeat left top / auto 42px;
  text-indent: -9999px;
}
body > footer .copyright {
  display: -webkit-flex;
  display: flex;
  -weblit-flex-flow: row wrap;
  flex-flow: row wrap;
  justify-content: center;
  align-items: center;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 30px;
  background-color: #f25a8c;
  text-align: center;
  font-size: 12px;
  color: #fff;
}
body > footer.shrink {
  height: 30px;
}
main {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  min-height: -webkit-calc(100vh - 88px - 100px);
  min-height: calc(100vh - 88px - 100px);
  margin: 0 auto;
  padding-bottom: 10px;
}
body.shrink main {
  min-height: -webkit-calc(100vh - 36px - 100px);
  min-height: calc(100vh - 36px - 100px);
}
#application-form {
  margin: 10px;
  padding: 10px;
  background-color: rgba(242, 90, 140, 0.15);
  font-size: 16px;
}
#application-form > section {
  position: relative;
}
#application-form h6 {
  display: block;
  margin: 10px 0 5px !important;
  padding: 2px 10px;
  background-color: #f25a8c;
  text-align: left !important;
  font-size: 14px !important;
  color: #fff;
  -webkit-border-radius: 4px;
  border-radius: 4px;
}
#application-form h6.required:after {
  content: "必須";
  display: inline-block;
  margin: 3px 0 0 10px;
  padding: 0 4px;
  background-color: #fff;
  vertical-align: top;
  font-size: 10px;
  color: #ff0000;
  -webkit-border-radius: 2px;
  border-radius: 2px;
}
#application-form input,
#application-form select {
  margin-bottom: 5px;
}
#application-form input[name="domain_other"] {
  display: none;
  width: 140px;
}
#application-form input[name="name"] {
  width: 200px;
}
#application-form input[name="height"] {
  width: 70px;
  margin-right: 5px;
}
#application-form input[name="weight"] {
  width: 50px;
  margin-right: 5px;
}
#application-form input[name="bust"],
#application-form input[name="waist"],
#application-form input[name="hip"] {
  width: 50px;
  margin-left: 3px;
}
#application-form input[type="submit"] {
  margin-top: 10px;
}
#application-form input[type="date"] {
  width: max-content;
}
#application-form input[type="submit"] {
  background-color: #ec135b;
  font-size: 16px;
}
#application-form select[name="cup"] {
  min-width: auto;
}
#application-form .mail-input {
  display: -webkit-flex;
  display: flex;
  -weblit-flex-flow: row wrap;
  flex-flow: row wrap;
  justify-content: flex-end;
  align-items: center;
}
#application-form .mail-input input[name="email"] {
  width: -webkit-calc(100% - 160px);
  width: calc(100% - 160px);
}
#application-form .mail-input span {
  width: 20px;
  text-align: center;
}
#application-form .mail-input select {
  width: 140px;
}
#application-form .datetime {
  display: -webkit-flex;
  display: flex;
  -weblit-flex-flow: row wrap;
  flex-flow: row wrap;
  align-items: center;
  margin-bottom: 5px;
}
#application-form .datetime label {
  margin-right: 5px;
}
#application-form .datetime .input {
  display: -webkit-flex;
  display: flex;
  -weblit-flex-flow: row nowrap;
  flex-flow: row nowrap;
  align-items: center;
}
#application-form .datetime .input .select.time {
  margin-left: 5px;
  margin-right: 5px;
}
#application-form .datetime .input .select.time select {
  min-width: 45px;
  margin-right: 5px;
}
#application-form .attention {
  font-size: 14px;
}
#application-form .attention:before {
  content: "※";
}
#application-form label.radio {
  display: -webkit-flex;
  display: flex;
  -weblit-flex-flow: row wrap;
  flex-flow: row wrap;
}
#application-form label.radio input[type="radio"] + span {
  width: 25px;
}
#application-form label.radio > div {
  width: -webkit-calc(100% - 25px);
  width: calc(100% - 25px);
}
#application-form label.radio > div span {
  display: block;
  font-size: 12px;
}
#application-form label.radio .tel {
  display: none;
  width: 100%;
  padding-left: 22px;
}
#application-form label.radio .tel input {
  display: inline;
  width: 180px;
  margin-left: 5px;
}
#application-form label.radio input[type="radio"]:checked ~ .tel {
  display: inline;
}
#application-form.question {
  background-color: rgba(0, 136, 204, 0.15);
}
#application-form.question .select-switch label.apply input[type="radio"] + span {
  background-color: rgba(0, 136, 204, 0.15);
  color: rgba(0, 136, 204, 0.7);
}
#application-form.question .select-switch label.apply input[type="radio"]:checked + span {
  background-color: #0088cc;
  color: #fff;
}
#application-form.question .select-switch label.apply input[type="radio"]:checked + span:after {
  border-top-color: #0088cc;
}
#application-form.question .select-switch label.question input[type="radio"] + span {
  background-color: rgba(0, 136, 204, 0.15);
  color: rgba(0, 136, 204, 0.7);
}
#application-form.question .select-switch label.question input[type="radio"]:checked + span {
  background-color: #0088cc;
  color: #fff;
}
#application-form.question .select-switch label.question input[type="radio"]:checked + span:after {
  border-top-color: #0088cc;
}
#application-form.question h6 {
  background-color: #0088cc;
}
#application-form.question input[type="submit"] {
  background-color: #005580;
}
#application-form.question section.age,
#application-form.question section.height,
#application-form.question section.size,
#application-form.question section.figure,
#application-form.question section.job,
#application-form.question section.prefecture,
#application-form.question section.experience1,
#application-form.question section.experience2,
#application-form.question section.work_pace,
#application-form.question section.work_period,
#application-form.question section.work_style,
#application-form.question section.allowance,
#application-form.question section.date {
  display: none;
}
#application-form .size label {
  display: inline-block;
}
#application-form .size label .select {
  margin-right: 2px;
}
#application-form .prefecture .prefecture-select {
  display: -webkit-flex;
  display: flex;
  -weblit-flex-flow: row nowrap;
  flex-flow: row nowrap;
}
#application-form .prefecture .prefecture-select .select:nth-of-type(1) {
  margin-right: 5px;
}
#application-form .prefecture .prefecture-select .select:nth-of-type(2) {
  display: none;
}
#application-form .experience1 .exp-select,
#application-form .experience2 .exp-select {
  display: -webkit-flex;
  display: flex;
  -weblit-flex-flow: row nowrap;
  flex-flow: row nowrap;
}
#application-form .experience1 .exp-select .select:nth-of-type(1),
#application-form .experience2 .exp-select .select:nth-of-type(1) {
  margin-right: 5px;
}
#application-form .experience1 .exp-select .select:nth-of-type(2),
#application-form .experience2 .exp-select .select:nth-of-type(2) {
  display: none;
}
#application-form .work_style div.checkbox {
  display: -webkit-flex;
  display: flex;
  -weblit-flex-flow: row wrap;
  flex-flow: row wrap;
}
#application-form .work_style div.checkbox label {
  width: 50%;
  margin-bottom: 10px;
}
#application-form .type .datetime {
  display: none;
}
#application-form .method #about-message-link,
#application-form .method #about-domain-link {
  display: inline-block;
  position: relative;
  margin: 3px 0 0 1em;
  font-size: 13px;
  color: #337799;
}
#application-form .method #about-message-link:before,
#application-form .method #about-domain-link:before {
  content: "\f054";
  display: inline-block;
  position: absolute;
  top: 1px;
  left: -1em;
  padding-right: 5px;
  font-family: "Font Awesome 5 Free";
}
#application-form .save {
  margin-bottom: 10px;
}
#application-form .save .checkbox label {
  width: max-content;
  margin: 0 auto;
}
#about-message {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 2000000;
  overflow: auto;
  padding: 5px;
  background-color: #fff;
  opacity: 0;
  -webkit-overflow-scrolling: touch;
}
#about-message h5 {
  margin: 0 0 10px;
  padding: 3px 10px;
  background: linear-gradient(to bottom, rgba(255, 209, 98, 0.4) 50%, #ffd162 50%);
  border: solid 1px #e29f00;
  font-size: 15px;
  font-weight: bold;
  color: #c1006b;
  text-shadow: 1px 1px #ffffff, 1px -1px #ffffff, -1px 1px #ffffff, -1px -1px #ffffff;
}
#about-message h5:before {
  margin-right: 5px;
  font-size: 16px;
  font-weight: 900;
  font-family: "Font Awesome 5 Free";
}
#about-message > * {
  margin: 0 10px 10px;
}
#about-message .guidance {
  position: relative;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  height: 91px;
  padding: 8px 16px;
  background-color: #ffefc8;
  text-align: left;
  font-size: 13px;
  color: #fc4747;
  -webkit-border-radius: 6px;
  border-radius: 6px;
}
@media screen and (max-width: 374px) {
  #about-message .guidance {
    font-size: 12px;
    line-height: 1.3;
  }
}
#about-message .guidance:before {
  content: "";
  display: block;
  position: absolute;
  top: 15px;
  width: 0;
  height: 0;
  border: solid transparent;
}
#about-message .guidance:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  width: 97.5px;
  height: 91px;
  background-size: 97.5px 91px;
}
#about-message .guidance:nth-of-type(2n+1) {
  margin-right: 117.5px;
}
#about-message .guidance:nth-of-type(2n+1):before {
  right: -30px;
  border-width: 12px 0 0 30px;
  border-left-color: #ffefc8;
}
#about-message .guidance:nth-of-type(2n+1):after {
  right: -102.5px;
  background-image: url(../img/guidance01.png);
}
#about-message .guidance:nth-of-type(2n) {
  margin-left: 117.5px;
}
#about-message .guidance:nth-of-type(2n):before {
  left: -30px;
  border-width: 12px 30px 0 0;
  border-right-color: #ffefc8;
}
#about-message .guidance:nth-of-type(2n):after {
  left: -102.5px;
  background-image: url(../img/guidance02.png);
}
#about-message .image {
  border: solid 1px #f25a8c;
}
#about-message .image h6 {
  margin: 0;
  padding: 4px;
  background-color: #f25a8c;
  color: #fff;
}
#about-message .image img {
  width: 100%;
}
#about-message .close {
  padding: 4px;
  background-color: #eee;
  text-align: center;
  -webkit-border-radius: 4px;
  border-radius: 4px;
}
#about-domain {
  display: none;
  margin-top: 5px;
  padding: 10px 15px;
  background-color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  -webkit-border-radius: 6px;
  border-radius: 6px;
}
#about-domain .domain {
  position: relative;
  width: 160px;
  margin: 15px auto 0;
  padding: 2px 10px;
  background-color: #f25a8c;
  color: #fff;
  -webkit-border-radius: 6px;
  border-radius: 6px;
}
#about-domain .domain span {
  position: absolute;
  left: -5px;
  top: -10px;
  z-index: 1000;
  padding: 2px 4px;
  background-color: #f68baf;
  font-size: 10px !important;
  color: #fff;
  -webkit-border-radius: 4px;
  border-radius: 4px;
  -webkit-transform: rotate(-5deg);
  transform: rotate(-5deg);
}
#about-domain .domain textarea {
  height: 1.5em;
  margin-top: 2px;
  padding: 0;
  background: none;
  overflow: hidden;
  text-align: center;
  font-size: 14px;
  color: #fff;
}
#about-domain .domain textarea:focus {
  box-shadow: none;
}
#about-domain .domain textarea::selection {
  background: none;
}
#about-domain .domain .copied {
  display: -webkit-flex;
  display: flex;
  -weblit-flex-flow: row wrap;
  flex-flow: row wrap;
  justify-content: center;
  align-content: center;
  align-items: center;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 500;
  width: 100%;
  height: 100%;
  background-color: #f79cba;
  font-size: 12px;
  color: #fff;
  opacity: 0;
  -webkit-border-radius: 6px;
  border-radius: 6px;
}
#sendmail-overlay {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 9999999;
  background-color: rgba(255, 255, 255, 0.9);
}
#sendmail-overlay:before {
  content: "\f1d8";
  position: absolute;
  left: 0;
  top: 45%;
  width: 100%;
  margin-top: -30px;
  text-align: center;
  font-size: 22px;
  font-weight: 900;
  color: #000;
  font-family: "Font Awesome 5 Free";
  animation: sendmail 0.8s linear 0.5s infinite;
}
#sendmail-overlay span {
  position: absolute;
  left: 0;
  top: 45%;
  width: 100%;
  margin-bottom: -30px;
  text-align: center;
  font-size: 16px;
  color: #000;
}
@keyframes sendmail {
  0% {
    left: -10px;
    margin-top: -25px;
    opacity: 0;
  }
  100% {
    left: 5px;
    margin-top: -35px;
    opacity: 1;
  }
}
.loader {
  margin: 10px 0;
}
.loader > div {
  text-align: center;
}
.loader > div > div {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 2px;
  background-color: #aaa;
  border-radius: 100%;
  animation-fill-mode: both;
}
.loader > div > div:nth-child(1) {
  animation: scale 0.75s -0.24s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08);
}
.loader > div > div:nth-child(2) {
  animation: scale 0.75s -0.12s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08);
}
.loader > div > div:nth-child(3) {
  animation: scale 0.75s 0s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08);
}
@keyframes scale {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  45% {
    transform: scale(0.1);
    opacity: 0.7;
  }
  80% {
    transform: scale(1);
    opacity: 1;
  }
}
.popup {
  display: -webkit-flex;
  display: flex;
  -weblit-flex-flow: column nowrap;
  flex-flow: column nowrap;
  justify-content: center;
  align-items: center;
  align-content: space-around;
  position: absolute;
  top: -90px;
  right: 5px;
  width: max-content;
  height: 70px;
  padding: 0 20px;
  background-color: #f25a8c;
  color: #333;
  -webkit-border-radius: 6px;
  border-radius: 6px;
  box-shadow: 0 0 0 1px #fff;
  visibility: hidden;
  opacity: 0;
}
.popup:before {
  content: "";
  position: absolute;
  bottom: -17px;
  width: 0;
  height: 0;
  border: solid transparent;
  border-width: 16px 10px 0 10px;
  border-top-color: #fff;
}
.popup:after {
  content: "";
  position: absolute;
  bottom: -16px;
  width: 0;
  height: 0;
  border: solid transparent;
  border-width: 16px 10px 0 10px;
  border-top-color: #f25a8c;
}
.popup p {
  width: max-content;
  font-size: 14px !important;
  color: #fff;
}
.popup a {
  display: block;
  width: max-content;
  margin: 5px auto 2px;
  padding: 4px 12px;
  background-color: rgba(255, 255, 255, 0.8);
  font-size: 14px !important;
  color: #ee2b6c;
  text-decoration: none;
  -webkit-border-radius: 6px;
  border-radius: 6px;
}
#shop-list {
  padding: 0 0 1px;
  background-color: #eee;
}
#shop-list .shop {
  display: -webkit-flex;
  display: flex;
  -weblit-flex-flow: row wrap;
  flex-flow: row wrap;
  justify-content: space-between;
  position: relative;
  margin: 0 10px 30px;
  padding: 5px;
  overflow: hidden;
  background-color: #fff;
  -webkit-border-radius: 6px;
  border-radius: 6px;
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.1);
}
#shop-list .shop:before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 5px;
  background-color: #f8acc6;
}
#shop-list .shop h3 {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
  padding: 10px 10px;
  font-size: 18px;
}
#shop-list .shop h3 a {
  color: #f25a8c;
  text-decoration: none;
}
#shop-list .shop .image {
  width: 45%;
  margin-bottom: 10px;
}
#shop-list .shop .image img {
  display: block;
  width: 100%;
}
#shop-list .shop .shop-comment {
  position: relative;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 55%;
  margin-bottom: 10px;
  padding: 0 0 0 10px;
  font-size: 13px;
  font-weight: bold;
  color: #0088cc;
  -webkit-border-radius: 6px;
  border-radius: 6px;
}
#shop-list .shop .girls-photo {
  display: -webkit-flex;
  display: flex;
  -weblit-flex-flow: row nowrap;
  flex-flow: row nowrap;
  margin-bottom: 10px;
}
#shop-list .shop .girls-photo > li img {
  display: block;
  width: 100%;
}
#shop-list .shop .guideline {
  margin-bottom: 10px;
}
#shop-list .shop .guideline table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 2px;
}
#shop-list .shop .guideline table th,
#shop-list .shop .guideline table td {
  padding: 8px 10px;
  text-align: left;
  font-size: 13px;
  font-weight: normal;
}
#shop-list .shop .guideline table th {
  width: 80px;
  background-color: #fde6ee;
  font-weight: bold;
  color: #ee2b6c;
}
#shop-list .shop .guideline table td {
  background-color: rgba(0, 0, 0, 0.03);
}
#shop-list .shop .clothes,
#shop-list .shop .treatment {
  width: 100%;
}
#shop-list .shop .clothes h4,
#shop-list .shop .treatment h4 {
  position: relative;
  margin-bottom: 5px;
  padding: 5px 10px;
  border: solid 2px #f25a8c;
  font-size: 13px;
  color: #f25a8c;
  -webkit-border-radius: 4px;
  border-radius: 4px;
}
#shop-list .shop .clothes h4:after,
#shop-list .shop .treatment h4:after {
  content: "";
  display: block;
  position: absolute;
  right: 10px;
  top: 50%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 7px;
  height: 7px;
  margin-top: -5.5px;
  border-style: solid;
  border-width: 0 2px 2px 0;
  border-color: transparent #f25a8c #f25a8c transparent;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
#shop-list .shop .clothes h4.active:after,
#shop-list .shop .treatment h4.active:after {
  margin-top: -1.5px;
  -webkit-transform: rotate(-135deg);
  transform: rotate(-135deg);
}
#shop-list .shop .clothes > div,
#shop-list .shop .treatment > div {
  display: none;
}
#shop-list .shop .clothes dl {
  display: -webkit-flex;
  display: flex;
  -weblit-flex-flow: row wrap;
  flex-flow: row wrap;
  justify-content: center;
  margin: 0 auto;
  padding: 5px;
}
#shop-list .shop .clothes dl > div {
  display: -webkit-flex;
  display: flex;
  -weblit-flex-flow: row nowrap;
  flex-flow: row nowrap;
  justify-content: space-between;
  align-items: center;
  width: 140px;
  margin-bottom: 10px;
}
#shop-list .shop .clothes dl > div dt {
  position: relative;
  width: 75px;
  height: 75px;
  margin-left: 10px;
  -webkit-border-radius: 50%;
  border-radius: 50%;
}
#shop-list .shop .clothes dl > div dt.uniform {
  background: url(../img/service_uniform.png) no-repeat center center / auto 75px, linear-gradient(to bottom, rgba(242, 90, 140, 0.25) 0%, #ffffff 100%);
}
#shop-list .shop .clothes dl > div dt.sexy {
  background: url(../img/service_sexy.png) no-repeat center center / auto 75px, linear-gradient(to bottom, rgba(242, 90, 140, 0.25) 0%, #ffffff 100%);
}
#shop-list .shop .clothes dl > div dt.lingerie {
  background: url(../img/service_lingerie.png) no-repeat center center / auto 75px, linear-gradient(to bottom, rgba(242, 90, 140, 0.25) 0%, #ffffff 100%);
}
#shop-list .shop .clothes dl > div dt.topless {
  background: url(../img/service_topless.png) no-repeat center center / auto 75px, linear-gradient(to bottom, rgba(242, 90, 140, 0.25) 0%, #ffffff 100%);
}
#shop-list .shop .clothes dl > div dt.all-nude {
  background: url(../img/service_all-nude.png) no-repeat center center / auto 75px, linear-gradient(to bottom, rgba(242, 90, 140, 0.25) 0%, #ffffff 100%);
}
#shop-list .shop .clothes dl > div dt span {
  display: -webkit-flex;
  display: flex;
  -weblit-flex-flow: row nowrap;
  flex-flow: row nowrap;
  justify-content: center;
  align-items: center;
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 85px;
  height: 20px;
  margin-left: -42.5px;
  background-color: #f25a8c;
  font-size: 12px;
  font-weight: bold;
  color: #fff;
}
#shop-list .shop .clothes dl > div dd {
  display: -webkit-flex;
  display: flex;
  -weblit-flex-flow: row wrap;
  flex-flow: row wrap;
  justify-content: center;
  align-items: center;
  position: relative;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 55px;
  height: 55px;
  padding: 0 10px;
  text-align: center;
  font-size: 14px;
  line-height: 1.1;
  font-weight: bold;
  color: #fff;
  -webkit-border-radius: 50%;
  border-radius: 50%;
}
#shop-list .shop .clothes dl > div dd:after {
  content: "";
  display: block;
  position: absolute;
  left: -10px;
  top: 50%;
  width: 0;
  height: 0;
  margin-top: -8px;
  border: solid transparent;
  border-width: 8px 16px 8px 0;
}
#shop-list .shop .clothes dl > div dd.yes {
  background-color: #fc4747;
}
#shop-list .shop .clothes dl > div dd.yes:after {
  border-right-color: #fc4747;
}
#shop-list .shop .clothes dl > div dd.choosable {
  background-color: #fd7e7e;
}
#shop-list .shop .clothes dl > div dd.choosable:after {
  border-right-color: #fd7e7e;
}
#shop-list .shop .clothes dl > div dd.no {
  background-color: #d6b1b1;
}
#shop-list .shop .clothes dl > div dd.no:after {
  border-right-color: #d6b1b1;
}
#shop-list .shop .treatment section {
  padding: 5px;
}
#shop-list .shop .treatment section h5 {
  position: relative;
  margin: 0 0 10px;
  border-bottom: solid 3px #f8acc6;
  font-size: 14px;
  text-indent: 2px;
  color: #f25a8c;
}
#shop-list .shop .treatment section h5:after {
  content: "";
  display: block;
  position: absolute;
  bottom: -3px;
  width: 35%;
  border-bottom: solid 3px #f25a8c;
}
#shop-list .shop .treatment section > ul {
  display: -webkit-flex;
  display: flex;
  -weblit-flex-flow: row wrap;
  flex-flow: row wrap;
  justify-content: flex-start;
}
#shop-list .shop .treatment section > ul > li {
  display: -webkit-flex;
  display: flex;
  -weblit-flex-flow: row wrap;
  flex-flow: row wrap;
  justify-content: center;
  align-items: center;
  align-content: center;
  height: 26px;
  width: calc(100% / 3 - 5px);
  margin: 0 2.5px 5px;
  font-size: 12px;
  color: #fff;
}
@media screen and (max-width: 374px) {
  #shop-list .shop .treatment section > ul > li {
    font-size: 10px;
  }
}
#shop-list .shop .treatment section > ul > li.on {
  background-color: #f25a8c;
}
#shop-list .shop .treatment section > ul > li.off {
  background-color: #ccc;
}
#shop-list .shop .treatment section > ul > li.ask {
  background-color: #cda198;
  font-size: 11px;
}
#shop-list .shop .treatment section > ul > li.ask:after {
  content: "(ASK)";
  font-size: 10px;
}
#shop-list .shop footer {
  display: -webkit-flex;
  display: flex;
  -weblit-flex-flow: row nowrap;
  flex-flow: row nowrap;
  justify-content: space-between;
  width: 100%;
  margin-top: 10px;
}
#shop-list .shop footer .detail,
#shop-list .shop footer .keep {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: calc(50% - 2.5px);
}
#shop-list .shop footer .detail > a,
#shop-list .shop footer .keep > a,
#shop-list .shop footer .detail > span,
#shop-list .shop footer .keep > span {
  display: -webkit-flex;
  display: flex;
  -weblit-flex-flow: row wrap;
  flex-flow: row wrap;
  justify-content: center;
  align-items: center;
  align-content: center;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
  height: 30px;
  margin: 0 auto;
  text-align: center;
  text-decoration: none;
  font-size: 12px;
  color: #fff;
  -webkit-border-radius: 4px;
  border-radius: 4px;
}
#shop-list .shop footer .keep > span {
  position: relative;
  background-color: #fff;
  border: solid 1px #ccc;
  color: #000;
}
#shop-list .shop footer .keep > span br {
  display: none;
}
#shop-list .shop footer .keep > span:before {
  content: "\f005";
  position: relative;
  top: -0.5px;
  margin-right: 2px;
  font-size: 13px;
  font-weight: 900;
  font-family: "Font Awesome 5 Free";
  color: #fbb100;
}
#shop-list .shop footer .keep > span.added {
  background-color: #fbb100;
  border-color: #fbb100;
  color: #fff;
}
#shop-list .shop footer .keep > span.added:before {
  color: #fff;
}
@media screen and (max-width: 374px) {
  #shop-list .shop footer .keep > span:before {
    display: none;
  }
}
#shop-list .shop footer .keep > span .popup {
  left: 5px;
}
#shop-list .shop footer .keep > span .popup:before,
#shop-list .shop footer .keep > span .popup:after {
  left: 30px;
}
#shop-list .shop footer .detail a {
  background-color: #0088cc;
}
body#top h2 {
  margin: 20px 0 10px;
  padding: 3px 10px;
  background-color: #f25a8c;
  font-size: 16px;
  font-weight: normal;
  color: #ffffff;
}
body#top h2:before {
  margin-right: 5px;
  font-size: 15px;
  font-weight: 900;
  font-family: "Font Awesome 5 Free";
}
body#top h2:before {
  content: "\f5a2";
}
body#top article {
  padding-top: 10px;
}
body#top article > .image {
  display: block;
  width: 100%;
  margin-bottom: 10px;
}
body#shop main {
  margin-bottom: calc(100vw /  4 + 120px);
}
@media screen and (min-width: 600px) {
  body#shop main {
    margin-bottom: 227px;
  }
}
body#shop main article header {
  top: -66px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
  height: 62px;
  padding: 5px;
  transition: top 0.3s;
}
body#shop main article header > div {
  display: -webkit-flex;
  display: flex;
  -weblit-flex-flow: row wrap;
  flex-flow: row wrap;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}
body#shop main article header > div:before {
  content: "";
  display: block;
  width: 6px;
  height: 45px;
  background-color: #f0427c;
  -webkit-border-radius: 3px;
  border-radius: 3px;
}
body#shop main article header > div .shop-data {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: webkit-calc(100% - 6px - 94px);
  width: calc(100% - 6px - 94px);
  padding-left: 10px;
}
body#shop main article header > div .shop-data h2 {
  font-size: 18px;
  font-weight: bold;
}
body#shop main article header > div .shop-data .style {
  font-size: 12px;
  font-weight: bold;
}
body#shop main article header > div .action a {
  display: -webkit-flex;
  display: flex;
  -weblit-flex-flow: row wrap;
  flex-flow: row wrap;
  justify-content: center;
  align-items: center;
  align-content: center;
  width: 60px;
  height: 50px;
  text-align: center;
  font-size: 10px;
  line-height: 1.1;
  text-decoration: none;
}
body#shop main article header > div .link a {
  display: -webkit-flex;
  display: flex;
  -weblit-flex-flow: row nowrap;
  flex-flow: row nowrap;
  justify-content: center;
  align-items: center;
  align-content: center;
  width: 94px;
  height: 24px;
  background-color: #fc4747;
  font-size: 12px;
  color: #fff;
  text-decoration: none;
  -webkit-border-radius: 3px;
  border-radius: 3px;
}
body#shop main article header > div .link a:not(:last-child) {
  margin-bottom: 2px;
}
body#shop main article .image {
  display: block;
  width: 100%;
}
body#shop main article h3,
body#shop main article h4,
body#shop main article h5,
body#shop main article h6 {
  margin-bottom: 5px;
}
body#shop #bottom-shrinker {
  height: 1px;
}
body#shop > footer {
  position: fixed;
  bottom: 0;
}
body#shop #clothes > *,
body#shop #pay > *,
body#shop #lecture > *,
body#shop #tendency > *,
body#shop #guideline > *,
body#shop #treatment > *,
body#shop #faq > *,
body#shop #shop-info > *,
body#shop #intro-apply > * {
  margin: 0 10px 10px;
}
body#shop #clothes > section h4,
body#shop #pay > section h4,
body#shop #lecture > section h4,
body#shop #tendency > section h4,
body#shop #guideline > section h4,
body#shop #treatment > section h4,
body#shop #faq > section h4,
body#shop #shop-info > section h4,
body#shop #intro-apply > section h4 {
  margin: 0 5px 5px;
}
body#shop #clothes > section p,
body#shop #pay > section p,
body#shop #lecture > section p,
body#shop #tendency > section p,
body#shop #guideline > section p,
body#shop #treatment > section p,
body#shop #faq > section p,
body#shop #shop-info > section p,
body#shop #intro-apply > section p {
  margin: 0 5px 5px;
}
body#shop #clothes h3,
body#shop #pay h3,
body#shop #lecture h3,
body#shop #tendency h3,
body#shop #guideline h3,
body#shop #treatment h3,
body#shop #faq h3,
body#shop #shop-info h3,
body#shop #intro-apply h3 {
  margin: 20px 0 10px;
  padding: 3px 10px;
  background-color: #f25a8c;
  font-size: 16px;
  font-weight: normal;
  color: #ffffff;
}
body#shop #clothes h3:before,
body#shop #pay h3:before,
body#shop #lecture h3:before,
body#shop #tendency h3:before,
body#shop #guideline h3:before,
body#shop #treatment h3:before,
body#shop #faq h3:before,
body#shop #shop-info h3:before,
body#shop #intro-apply h3:before {
  margin-right: 5px;
  font-size: 15px;
  font-weight: 900;
  font-family: "Font Awesome 5 Free";
}
body#shop #clothes .guidance,
body#shop #pay .guidance,
body#shop #lecture .guidance,
body#shop #tendency .guidance,
body#shop #guideline .guidance,
body#shop #treatment .guidance,
body#shop #faq .guidance,
body#shop #shop-info .guidance,
body#shop #intro-apply .guidance {
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 10px;
}
body#shop #clothes .guidance h4,
body#shop #pay .guidance h4,
body#shop #lecture .guidance h4,
body#shop #tendency .guidance h4,
body#shop #guideline .guidance h4,
body#shop #treatment .guidance h4,
body#shop #faq .guidance h4,
body#shop #shop-info .guidance h4,
body#shop #intro-apply .guidance h4 {
  position: relative;
  margin: 0;
  padding: 8px;
  background-color: #ffefc8;
  text-align: center;
  font-size: 14px;
  font-weight: bold;
  color: #f25a8c;
  -webkit-border-radius: 6px;
  border-radius: 6px;
}
body#shop #clothes .guidance h4:after,
body#shop #pay .guidance h4:after,
body#shop #lecture .guidance h4:after,
body#shop #tendency .guidance h4:after,
body#shop #guideline .guidance h4:after,
body#shop #treatment .guidance h4:after,
body#shop #faq .guidance h4:after,
body#shop #shop-info .guidance h4:after,
body#shop #intro-apply .guidance h4:after {
  content: "";
  display: block;
  position: absolute;
  top: 15px;
  width: 0;
  height: 0;
  border: solid transparent;
  border-width: 12px 0 0 30px;
  border-left-color: #ffefc8;
}
body#shop #clothes .guidance p,
body#shop #pay .guidance p,
body#shop #lecture .guidance p,
body#shop #tendency .guidance p,
body#shop #guideline .guidance p,
body#shop #treatment .guidance p,
body#shop #faq .guidance p,
body#shop #shop-info .guidance p,
body#shop #intro-apply .guidance p {
  padding: 10px;
  font-size: 13px;
}
body#shop #clothes h4,
body#shop #pay h4,
body#shop #lecture h4,
body#shop #tendency h4,
body#shop #guideline h4,
body#shop #treatment h4,
body#shop #faq h4,
body#shop #shop-info h4,
body#shop #intro-apply h4 {
  font-size: 16px;
  font-weight: bold;
  color: #f25a8c;
}
body#shop #clothes p,
body#shop #pay p,
body#shop #lecture p,
body#shop #tendency p,
body#shop #guideline p,
body#shop #treatment p,
body#shop #faq p,
body#shop #shop-info p,
body#shop #intro-apply p {
  font-size: 13px;
}
body#shop #clothes h3:before {
  content: "\f553";
}
body#shop #pay h3:before {
  content: "\f53a";
}
body#shop #lecture h3:before {
  content: "\f02d";
}
body#shop #tendency h3:before {
  content: "\f406";
}
body#shop #guideline h3:before {
  content: "\f005";
}
body#shop #treatment h3:before {
  content: "\f042";
}
body#shop #faq h3:before {
  content: "\f059";
}
body#shop #shop-info h3:before {
  content: "\f015";
}
body#shop #intro-apply h3:before {
  content: "\f1d8";
}
body#shop #clothes .guidance,
body#shop #lecture .guidance,
body#shop #treatment .guidance {
  padding-right: 120px;
  background: url(../img/guidance01.png) no-repeat right 10px top / 110px;
}
body#shop #clothes .guidance h4:after,
body#shop #lecture .guidance h4:after,
body#shop #treatment .guidance h4:after {
  right: -30px;
  border-width: 12px 0 0 30px;
  border-left-color: #ffefc8;
}
body#shop #pay .guidance,
body#shop #tendency .guidance,
body#shop #faq .guidance {
  padding-left: 120px;
  background: url(../img/guidance02.png) no-repeat left 10px top / 110px;
}
body#shop #pay .guidance h4:after,
body#shop #tendency .guidance h4:after,
body#shop #faq .guidance h4:after {
  left: -30px;
  border-width: 12px 30px 0 0;
  border-right-color: #ffefc8;
}
body#shop #clothes > section.list > section,
body#shop #lecture > section.list > section {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border: solid 1px #ddd;
}
body#shop #clothes > section.list > section h4,
body#shop #lecture > section.list > section h4 {
  margin: 0;
  background-color: #bc9c78;
  text-align: center;
  font-weight: normal;
  color: #fff;
}
body#shop #clothes > section.list > section .demand,
body#shop #lecture > section.list > section .demand {
  display: -webkit-flex;
  display: flex;
  -weblit-flex-flow: row wrap;
  flex-flow: row wrap;
  justify-content: center;
  align-items: center;
  align-content: center;
  position: relative;
  margin: 0;
  text-align: center;
  font-size: 13px;
  line-height: 1.3;
  color: #fff;
}
body#shop #clothes > section.list > section .demand:after,
body#shop #lecture > section.list > section .demand:after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  width: 0;
  height: 0;
  border: solid transparent;
}
body#shop #clothes > section.list > section.yes .demand,
body#shop #lecture > section.list > section.yes .demand {
  background-color: #fc6060;
  color: #fff;
}
body#shop #clothes > section.list > section.yes .demand:after,
body#shop #lecture > section.list > section.yes .demand:after {
  border-left-color: #fc6060;
}
body#shop #clothes > section.list > section.no .demand,
body#shop #lecture > section.list > section.no .demand {
  background-color: #aaaaaa;
}
body#shop #clothes > section.list > section.no .demand:after,
body#shop #lecture > section.list > section.no .demand:after {
  border-left-color: #aaaaaa;
}
body#shop #clothes > section.list > section.choosable .demand,
body#shop #lecture > section.list > section.choosable .demand {
  background-color: #fd7979;
}
body#shop #clothes > section.list > section.choosable .demand:after,
body#shop #lecture > section.list > section.choosable .demand:after {
  border-left-color: #fd7979;
}
body#shop #clothes > section.list > section.ask .demand,
body#shop #lecture > section.list > section.ask .demand {
  background-color: #fd9292;
}
body#shop #clothes > section.list > section.ask .demand:after,
body#shop #lecture > section.list > section.ask .demand:after {
  border-left-color: #fd9292;
}
body#shop #clothes > section.list {
  display: -webkit-flex;
  display: flex;
  -weblit-flex-flow: row wrap;
  flex-flow: row wrap;
  justify-content: flex-start;
  max-width: 352.5px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 12.5px;
  padding-right: 10px;
}
body#shop #clothes > section.list > section {
  width: -webkit-calc(100% / 3 - 2.5px);
  width: calc(100% / 3 - 2.5px);
  max-width: 115px;
  margin-right: 2.5px;
}
body#shop #clothes > section.list > section h4 {
  height: 18px;
  font-size: 12px;
}
body#shop #clothes > section.list > section .demand {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 40px;
  height: 40px;
  padding: 0 5px;
}
body#shop #clothes > section.list > section .demand:after {
  right: -10px;
  margin-top: -6px;
  border-width: 6px 5px;
}
body#shop #clothes > section.list > section.uniform {
  background: url(../img/service_uniform.png) no-repeat right calc(50% - 40px / 2) bottom / auto 80px, linear-gradient(to bottom, rgba(255, 255, 0, 0.25) 0%, #ffffff 100%);
}
body#shop #clothes > section.list > section.sexy {
  background: url(../img/service_sexy.png) no-repeat right calc(50% - 40px / 2) bottom / auto 80px, linear-gradient(to bottom, rgba(255, 255, 0, 0.25) 0%, #ffffff 100%);
}
body#shop #clothes > section.list > section.lingerie {
  background: url(../img/service_lingerie.png) no-repeat right calc(50% - 40px / 2) bottom / auto 80px, linear-gradient(to bottom, rgba(255, 255, 0, 0.25) 0%, #ffffff 100%);
}
body#shop #clothes > section.list > section.topless {
  background: url(../img/service_topless.png) no-repeat right calc(50% - 40px / 2) bottom / auto 80px, linear-gradient(to bottom, rgba(255, 255, 0, 0.25) 0%, #ffffff 100%);
}
body#shop #clothes > section.list > section.all-nude {
  background: url(../img/service_all-nude.png) no-repeat right calc(50% - 40px / 2) bottom / auto 80px, linear-gradient(to bottom, rgba(255, 255, 0, 0.25) 0%, #ffffff 100%);
}
body#shop #clothes > section.list > section.body-touch {
  background: url(../img/service_body-touch.png) no-repeat right calc(50% - 40px / 2) bottom -5px / auto 70px, linear-gradient(to bottom, rgba(255, 255, 0, 0.25) 0%, #ffffff 100%);
}
body#shop #clothes > section.list > section.kiss {
  background: url(../img/service_kiss.png) no-repeat right calc(50% - 40px / 2) top 15px / auto 65px, linear-gradient(to bottom, rgba(255, 255, 0, 0.25) 0%, #ffffff 100%);
}
body#shop #clothes > section.list > section.fella {
  background: url(../img/service_fella.png) no-repeat right calc(50% - 40px / 2) top -5px / auto 65px, linear-gradient(to bottom, rgba(255, 255, 0, 0.25) 0%, #ffffff 100%);
}
@media screen and (min-width: 481px) {
  body#shop #clothes > section.list {
    max-width: 470px;
  }
  body#shop #clothes > section.list > section {
    width: -webkit-calc(100% / 4 - 2.5px);
    width: calc(100% / 4 - 2.5px);
  }
  body#shop #clothes > section.list > section.all-nude {
    margin-right: 2.5px;
  }
}
body#shop #pay section.pay-example h5 {
  margin: 0;
  text-align: center;
  font-size: 11px;
  color: #fb8f22;
}
body#shop #pay section.pay-example h5 strong {
  font-size: 13px;
}
body#shop #pay section.pay-example table {
  width: 100%;
  padding: 0 10% 5px;
  background-color: #ffefc8;
}
body#shop #pay section.pay-example table th,
body#shop #pay section.pay-example table td {
  padding: 10px 2px 0;
  border-bottom: dashed 1px #f25a8c;
  font-size: 13px;
  font-weight: bold;
  color: #f25a8c;
}
body#shop #pay section.pay-example table th.total,
body#shop #pay section.pay-example table td.total {
  border-bottom: none;
  font-size: 15px;
}
body#shop #pay section.pay-example table th {
  text-align: left;
}
body#shop #pay section.pay-example table td {
  text-align: right;
}
body#shop #pay table.pay-example {
  table-layout: fixed;
  width: -webkit-calc(100% - 20px);
  width: calc(100% - 20px);
  border-collapse: separate;
  border-spacing: 1px 0;
}
body#shop #pay table.pay-example th,
body#shop #pay table.pay-example td {
  text-align: center;
  font-size: 13px;
}
body#shop #pay table.pay-example thead th {
  width: 25%;
  padding: 5px 0;
  font-weight: bold;
  color: #fff;
  -webkit-border-radius: 6px 6px 0 0;
  border-radius: 6px 6px 0 0;
}
body#shop #pay table.pay-example thead th.course {
  background-color: rgba(242, 90, 140, 0.7);
}
body#shop #pay table.pay-example thead th.charge {
  background-color: rgba(242, 90, 140, 0.7);
}
body#shop #pay table.pay-example thead th.back {
  width: 20%;
  background-color: rgba(242, 90, 140, 0.7);
}
body#shop #pay table.pay-example thead th.sum {
  width: 30%;
  background-color: #f25a8c;
}
body#shop #pay table.pay-example thead th.sum-sub {
  background-color: #f25a8c;
  -webkit-border-radius: 0;
  border-radius: 0;
}
body#shop #pay table.pay-example tbody td {
  padding: 10px 0;
  border-bottom: solid 1px #ddd;
  font-weight: bold;
}
body#shop #pay table.pay-example tbody td.sum {
  background-color: rgba(242, 90, 140, 0.07);
  border-left: solid 3px #f25a8c;
  border-right: solid 3px #f25a8c;
  font-size: 15px;
  color: #ec135b;
}
body#shop #pay table.pay-example tbody tr:last-child td.sum {
  border-bottom: solid 3px #f25a8c;
}
body#shop #pay table.pay-example tfoot td {
  text-align: right;
  font-size: 11px;
  color: #990000;
}
body#shop #pay table.pay-example.no-back thead th {
  width: 28.33333333%;
}
body#shop #pay table.pay-example.no-back thead th.sum {
  width: 43.33333333%;
}
body#shop #pay table.pay-example.no-back.sum-double thead th {
  width: 23.33333333%;
}
body#shop #pay table.pay-example.no-back.sum-double thead th.sum {
  width: 63.33333333%;
}
body#shop #pay table.pay-example.no-back.sum-double thead th.sum.sum-sub {
  width: 26.66666667%;
  -webkit-border-radius: 0;
  border-radius: 0;
}
body#shop #pay table.pay-example.no-back.sum-double tbody td.sum:nth-last-of-type(2) {
  border-right: none;
}
body#shop #pay table.pay-example.no-back.sum-double tbody td.sum:nth-last-of-type(1) {
  border-left: none;
}
body#shop #lecture > section.list > section {
  display: -webkit-flex;
  display: flex;
  -weblit-flex-flow: row nowrap;
  flex-flow: row nowrap;
  position: relative;
  max-width: 400px;
  margin: 0 auto 5px;
}
body#shop #lecture > section.list > section:after {
  content: "";
  display: block;
  order: 4;
  position: absolute;
  left: 25px;
  bottom: 0;
  width: 100px;
  height: 62px;
}
body#shop #lecture > section.list > section h4 {
  order: 2;
  width: -webkit-calc(100% - 25px);
  width: calc(100% - 25px);
  height: 18px;
  font-size: 12px;
}
body#shop #lecture > section.list > section .demand {
  order: 1;
  width: 25px;
  height: 80px;
  position: relative;
  z-index: 500;
}
body#shop #lecture > section.list > section .demand:after {
  right: -14px;
  margin-top: -10px;
  border-width: 10px 7px;
}
body#shop #lecture > section.list > section .explain {
  order: 3;
  display: -webkit-flex;
  display: flex;
  -weblit-flex-flow: row wrap;
  flex-flow: row wrap;
  justify-content: center;
  align-items: center;
  position: absolute;
  left: 125px;
  bottom: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: -webkit-calc(100% - 25px - 100px);
  width: calc(100% - 25px - 100px);
  height: 62px;
  margin: 0;
  padding: 0 15px;
}
body#shop #lecture > section.list > section.explain:after {
  background: url(../img/lecture_explain.png) no-repeat center bottom / auto 60px, linear-gradient(to bottom, #eeeeee 0%, #ffffff 100%);
}
body#shop #lecture > section.list > section.manual:after {
  background: url(../img/lecture_manual.png) no-repeat center bottom / auto 60px, linear-gradient(to bottom, #eeeeee 0%, #ffffff 100%);
}
body#shop #lecture > section.list > section.dvd:after {
  background: url(../img/lecture_dvd.png) no-repeat center bottom / auto 60px, linear-gradient(to bottom, #eeeeee 0%, #ffffff 100%);
}
body#shop #lecture > section.list > section.practice-female:after {
  background: url(../img/lecture_practice_female.png) no-repeat center bottom / auto 60px, linear-gradient(to bottom, #eeeeee 0%, #ffffff 100%);
}
body#shop #lecture > section.list > section.practice-male:after {
  background: url(../img/lecture_practice_male.png) no-repeat center bottom / auto 60px, linear-gradient(to bottom, #eeeeee 0%, #ffffff 100%);
}
body#shop #lecture > section.list > section.practice-either:after {
  background: url(../img/lecture_practice_either.png) no-repeat center bottom / auto 60px, linear-gradient(to bottom, #eeeeee 0%, #ffffff 100%);
}
body#shop #tendency #girls-age-bracket h4,
body#shop #tendency #customers-age-bracket h4 {
  margin: 0 0 5px;
  padding: 0 5px;
  border-bottom: solid 1px #cc7722;
  font-size: 12px;
  color: #cc7722;
}
body#shop #tendency #girls-age-bracket {
  padding-bottom: 20px;
}
body#shop #tendency #girls-age-bracket .graph {
  display: -webkit-flex;
  display: flex;
  -weblit-flex-flow: row nowrap;
  flex-flow: row nowrap;
  justify-content: space-around;
  position: relative;
  height: 120px;
  margin-left: 35px;
  padding: 10px 20px 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.1) 2%, transparent 2%) left bottom / 100% 30px;
  border-left: solid 1px #999;
  border-bottom: solid 1px #999;
}
body#shop #tendency #girls-age-bracket .graph .y-axis {
  position: absolute;
  left: -35px;
  top: 0;
  height: 100%;
  font-size: 11px;
}
body#shop #tendency #girls-age-bracket .graph .y-axis span {
  display: -webkit-flex;
  display: flex;
  -weblit-flex-flow: row nowrap;
  flex-flow: row nowrap;
  justify-content: flex-end;
  align-items: center;
  position: absolute;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 35px;
  height: 20px;
  padding-right: 5px;
}
body#shop #tendency #girls-age-bracket .graph .y-axis span:nth-of-type( 1) {
  bottom: -10px;
}
body#shop #tendency #girls-age-bracket .graph .y-axis span:nth-of-type( 2) {
  bottom: 20px;
}
body#shop #tendency #girls-age-bracket .graph .y-axis span:nth-of-type( 3) {
  bottom: 50px;
}
body#shop #tendency #girls-age-bracket .graph .y-axis span:nth-of-type( 4) {
  bottom: 80px;
}
body#shop #tendency #girls-age-bracket .graph .y-axis span:nth-of-type( 5) {
  bottom: 110px;
}
body#shop #tendency #girls-age-bracket .graph .bar {
  display: -webkit-flex;
  display: flex;
  -weblit-flex-flow: row wrap;
  flex-flow: row wrap;
  align-items: flex-end;
  position: relative;
  width: 20%;
  height: 100%;
}
body#shop #tendency #girls-age-bracket .graph .bar span {
  display: block;
  width: 60%;
  margin: 0 auto;
  background: #fc4747;
}
body#shop #tendency #girls-age-bracket .graph .bar span:before {
  content: attr(title);
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  padding-top: 5px;
  text-align: center;
  font-size: 12px;
}
body#shop #tendency #customers-age-bracket {
  padding-bottom: 20px;
}
body#shop #tendency #customers-age-bracket .graph {
  position: relative;
  width: 100%;
  height: 26px;
  background-color: #f6f6f6;
  border: solid 1px #ddd;
  -webkit-border-radius: 4px;
  border-radius: 4px;
}
body#shop #tendency #customers-age-bracket .graph .bar {
  position: absolute;
  top: 0;
  height: 100%;
  background-image: linear-gradient(to right, rgba(252, 96, 96, 0) 0%, #fc6060 30%, #fc6060 70%, rgba(252, 96, 96, 0) 100%);
  background-size: auto auto;
}
body#shop #tendency #customers-age-bracket .graph .x-axis {
  position: absolute;
  bottom: -40px;
  height: 40px;
  width: 100%;
  font-size: 12px;
}
body#shop #tendency #customers-age-bracket .graph .x-axis span {
  display: inline-block;
  position: absolute;
  top: 0;
  width: 30px;
  height: 40px;
  margin-left: -15px;
  text-align: center;
  color: #cc7722;
}
body#shop #tendency #customers-age-bracket .graph .x-axis span:before {
  content: "";
  display: block;
  width: 1px;
  height: 10px;
  margin: 0 auto;
  background-color: #cc7722;
}
body#shop #tendency #customers-age-bracket .graph .x-axis span:nth-of-type(1) {
  left: 4%;
}
body#shop #tendency #customers-age-bracket .graph .x-axis span:nth-of-type(2) {
  left: 24%;
}
body#shop #tendency #customers-age-bracket .graph .x-axis span:nth-of-type(3) {
  left: 44%;
}
body#shop #tendency #customers-age-bracket .graph .x-axis span:nth-of-type(4) {
  left: 64%;
}
body#shop #tendency #customers-age-bracket .graph .x-axis span:nth-of-type(5) {
  left: 84%;
}
body#shop #guideline table,
body#shop #shop-info table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 2px;
}
body#shop #guideline table th,
body#shop #shop-info table th,
body#shop #guideline table td,
body#shop #shop-info table td {
  padding: 8px 10px;
  text-align: left;
  font-size: 13px;
  font-weight: normal;
}
body#shop #guideline table th,
body#shop #shop-info table th {
  width: 80px;
  background-color: #f25a8c;
  color: #fff;
}
body#shop #guideline table td,
body#shop #shop-info table td {
  background-color: rgba(0, 0, 0, 0.03);
}
body#shop #treatment .treatment h4 {
  position: relative;
  margin: 0 0 10px;
  border-bottom: solid 3px #f8acc6;
  font-size: 14px;
  text-indent: 2px;
}
body#shop #treatment .treatment h4:after {
  content: "";
  display: block;
  position: absolute;
  bottom: -3px;
  width: 35%;
  border-bottom: solid 3px #f25a8c;
}
body#shop #treatment .treatment > ul {
  display: -webkit-flex;
  display: flex;
  -weblit-flex-flow: row wrap;
  flex-flow: row wrap;
  justify-content: flex-start;
}
body#shop #treatment .treatment > ul > li {
  display: -webkit-flex;
  display: flex;
  -weblit-flex-flow: row wrap;
  flex-flow: row wrap;
  justify-content: center;
  align-items: center;
  align-content: center;
  height: 26px;
  width: calc(100% / 3 - 5px);
  margin: 0 2.5px 5px;
  font-size: 12px;
  color: #fff;
}
body#shop #treatment .treatment > ul > li.on {
  background-color: #f25a8c;
}
body#shop #treatment .treatment > ul > li.off {
  background-color: #ccc;
}
body#shop #treatment .treatment > ul > li.ask {
  background-color: #cda198;
  font-size: 11px;
}
body#shop #treatment .treatment > ul > li.ask:after {
  content: "(ASK)";
  font-size: 10px;
}
body#shop #faq .qa > div {
  margin-bottom: 10px;
  padding: 10px 0 10px 40px;
  background-color: rgba(242, 90, 140, 0.1);
  -webkit-border-radius: 6px;
  border-radius: 6px;
}
body#shop #faq .qa > div dt,
body#shop #faq .qa > div dd {
  position: relative;
  padding: 5px 10px 5px 5px;
}
body#shop #faq .qa > div dt:before,
body#shop #faq .qa > div dd:before {
  display: inline-block;
  position: absolute;
  left: -25px;
  top: 2px;
  font-size: 20px;
  font-weight: bold;
}
body#shop #faq .qa > div dt {
  font-size: 14px;
  font-weight: bold;
  color: #f25a8c;
}
body#shop #faq .qa > div dt:before {
  content: "Q";
}
body#shop #faq .qa > div dd {
  font-size: 13px;
}
body#shop #faq .qa > div dd:before {
  content: "A";
  color: #0088cc;
}
body#shop #shop-info .ss {
  margin-bottom: 0;
}
body#shop #shop-info .ss img {
  display: block;
  width: 100%;
  height: 260px;
  object-fit: cover;
  object-position: center top;
}
body#shop #shop-info table {
  width: -webkit-calc(100% - 20px);
  width: calc(100% - 20px);
}
body#shop #shop-info .girls h4:before {
  content: "\f226";
  margin-right: 5px;
  font-weight: 900;
  font-family: "Font Awesome 5 Free";
}
body#shop #shop-info .girls .photos {
  position: relative;
  height: 200px;
  overflow-x: auto;
}
body#shop #shop-info .girls .photos > ul {
  display: -webkit-flex;
  display: flex;
  -weblit-flex-flow: row nowrap;
  flex-flow: row nowrap;
  position: absolute;
  left: 0;
  right: 0;
}
body#shop #shop-info .girls .photos > ul > li img {
  display: block;
  width: 150px;
  height: 200px;
  object-fit: cover;
}
body#shop #shop-info .girls .photos .controls {
  position: sticky;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
}
body#shop #shop-info .girls .photos .controls .prev,
body#shop #shop-info .girls .photos .controls .next {
  display: -webkit-flex;
  display: flex;
  -weblit-flex-flow: row wrap;
  flex-flow: row wrap;
  justify-content: center;
  align-content: center;
  align-items: center;
  position: absolute;
  top: 0;
  width: 20px;
  height: 100%;
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  font-size: 20px;
  color: #fff;
  transition: opacity 0.2s;
}
body#shop #shop-info .girls .photos .controls .prev.inactive,
body#shop #shop-info .girls .photos .controls .next.inactive {
  opacity: 0;
}
body#shop #shop-info .girls .photos .controls .prev {
  left: 0;
}
body#shop #shop-info .girls .photos .controls .next {
  right: 0;
}
body#shop #intro-apply .application {
  position: relative;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  height: 85px;
  margin: 10px;
  padding: 10px 150px 10px 20px;
  border: solid 1px #ccc;
  border-left-width: 4px;
}
body#shop #intro-apply .application h5 {
  font-size: 15px;
}
body#shop #intro-apply .application p {
  margin: 0;
}
body#shop #intro-apply .application .apply {
  display: -webkit-flex;
  display: flex;
  -weblit-flex-flow: column nowrap;
  flex-flow: column nowrap;
  justify-content: center;
  align-items: center;
  align-content: center;
  position: absolute;
  right: 10px;
  top: 50%;
  width: 100px;
  height: 70px;
  margin-top: -35px;
  text-align: center;
  color: #fff;
  -webkit-border-radius: 6px;
  border-radius: 6px;
  transition: all 0.3s;
}
body#shop #intro-apply .application .apply:not(.keep):before {
  content: "";
  display: block;
  width: 25px;
  height: 25px;
  background: url(../img/icon_splite.png) no-repeat;
  background-size: 25px;
}
body#shop #intro-apply .application .apply:after {
  content: "";
  display: block;
  position: absolute;
  left: -30px;
  top: 50%;
  width: 0;
  height: 0;
  margin-top: -20px;
  border: solid transparent;
  border-width: 20px 0 20px 25px;
  border-left-color: #ffefc8;
}
@media screen and (max-width: 374px) {
  body#shop #intro-apply .application {
    padding: 10px 130px 10px 10px;
  }
  body#shop #intro-apply .application h5 {
    font-size: 13px;
  }
  body#shop #intro-apply .application p {
    font-size: 11px;
  }
  body#shop #intro-apply .application .apply {
    width: 80px;
    font-size: 10px;
  }
}
body#shop #intro-apply .application.line {
  border-left-color: #00b900;
}
body#shop #intro-apply .application.line h5 {
  color: #00b900;
}
body#shop #intro-apply .application.line .apply {
  background-color: #00b900;
}
body#shop #intro-apply .application.line .apply:before {
  background-position: 0 0;
}
body#shop #intro-apply .application.tel {
  border-left-color: #0088cc;
}
body#shop #intro-apply .application.tel h5 {
  color: #0088cc;
}
body#shop #intro-apply .application.tel .apply {
  background-color: #0088cc;
}
body#shop #intro-apply .application.tel .apply:before {
  background-position: 0 -25px;
}
body#shop #intro-apply .application.form {
  border-left-color: #fb8f22;
}
body#shop #intro-apply .application.form h5 {
  color: #fb8f22;
}
body#shop #intro-apply .application.form .apply {
  background-color: #fb8f22;
}
body#shop #intro-apply .application.form .apply:before {
  background-position: 0 -50px;
}
body#shop #intro-apply .application.keep {
  border-left-color: #009980;
}
body#shop #intro-apply .application.keep h5 {
  color: #009980;
}
body#shop #intro-apply .application.keep .apply {
  background-color: #009980;
  line-height: 1.1;
}
body#shop #intro-apply .application.keep .apply:before {
  content: "\f005";
  margin: 2px 0;
  font-size: 19px;
  font-weight: 900;
  font-family: "Font Awesome 5 Free";
}
body#shop #intro-apply .application.keep .apply.added {
  background-color: #b3e0d9;
  color: #006655;
}
body#shop #applications {
  position: fixed;
  left: 0;
  bottom: 30px;
  z-index: 1000;
  width: 100%;
  transition: all 0.5s;
}
body#shop #applications > ul {
  display: -webkit-flex;
  display: flex;
  -weblit-flex-flow: row nowrap;
  flex-flow: row nowrap;
  justify-content: space-around;
  max-width: 600px;
  margin: 0 auto;
  transition: all 0.3s;
}
body#shop #applications > ul > li {
  display: -webkit-flex;
  display: flex;
  -weblit-flex-flow: column nowrap;
  flex-flow: column nowrap;
  justify-content: center;
  align-items: center;
  align-content: center;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  height: 60px;
  text-align: center;
  font-size: 12px;
  color: #fff;
  transition: all 0.3s;
}
@media screen and (max-width: 374px) {
  body#shop #applications > ul > li {
    font-size: 10px;
  }
}
body#shop #applications > ul > li:not(.keep):before {
  content: "";
  display: block;
  width: 25px;
  height: 25px;
  background: url(../img/icon_splite.png) no-repeat;
  background-size: 25px;
}
body#shop #applications > ul > li.line {
  background-color: #00b900;
}
body#shop #applications > ul > li.line:before {
  background-position: 0 0;
}
body#shop #applications > ul > li.tel {
  background-color: #0088cc;
}
body#shop #applications > ul > li.tel:before {
  background-position: 0 -25px;
}
body#shop #applications > ul > li.form {
  background-color: #fb8f22;
}
body#shop #applications > ul > li.form:before {
  background-position: 0 -50px;
}
body#shop #applications > ul > li.keep {
  position: relative;
  background-color: #009980;
  line-height: 1.1;
}
body#shop #applications > ul > li.keep:before {
  content: "\f005";
  margin: 2px 0;
  font-size: 19px;
  font-weight: 900;
  font-family: "Font Awesome 5 Free";
}
body#shop #applications > ul > li.keep.added {
  background-color: #b3e0d9;
  color: #006655;
}
body#shop #applications > ul.num3 > li {
  width: 33.33333333%;
}
body#shop #applications > ul.num4 > li {
  width: 25%;
}
body#shop #applications.last {
  bottom: 110px;
}
body#shop #applications.last > ul {
  position: relative;
  margin: 5px auto;
  padding: 0 2px;
}
body#shop #applications.last > ul > li {
  padding-bottom: 5px;
  -webkit-border-radius: 50%;
  border-radius: 50%;
}
body#shop #applications.last > ul.num3 > li {
  width: calc(100vw / 3 - 3px);
  height: calc(100vw / 3 - 3px);
  max-height: 197px;
}
body#shop #applications.last > ul.num4 > li {
  width: calc(100vw / 4 - 3px);
  height: calc(100vw / 4 - 3px);
  max-height: 147px;
}
body#shop .popup {
  right: 5px;
}
body#shop .popup:before,
body#shop .popup:after {
  right: 35px;
}
body#shop [id^="apply-"] {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 100000;
  padding-top: 45px;
  overflow: auto;
  background-color: #fff;
  opacity: 0;
  -webkit-overflow-scrolling: touch;
}
body#shop [id^="apply-"] h3 {
  display: -webkit-flex;
  display: flex;
  -weblit-flex-flow: row wrap;
  flex-flow: row wrap;
  justify-content: center;
  align-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  z-index: 1000000;
  width: 100%;
  height: 45px;
  background-color: #f25a8c;
  text-align: center;
  font-size: 18px;
  font-weight: normal;
  color: #fff;
}
body#shop [id^="apply-"] h3 .close {
  display: -webkit-flex;
  display: flex;
  -weblit-flex-flow: row wrap;
  flex-flow: row wrap;
  justify-content: center;
  align-items: center;
  position: absolute;
  right: 10px;
  top: 50%;
  width: 35px;
  height: 35px;
  transform: translateY(-50%);
}
body#shop [id^="apply-"] h3 .close i {
  font-size: 20px;
}
body#shop [id^="apply-"] h4 {
  margin: 0 0 10px;
  padding: 5px 0;
  border-bottom: solid 1px #ddd;
  text-align: center;
}
body#shop [id^="apply-"] h4 .shop-name {
  font-size: 14px;
}
body#shop [id^="apply-"] h4 .style {
  font-size: 12px;
  font-weight: normal;
}
body#shop [id^="apply-"] h5 {
  margin: 5px 10px;
  text-align: center;
  font-size: 14px;
  font-weight: bold;
}
body#shop [id^="apply-"] h6 {
  margin: 5px 10px;
  text-align: center;
  font-size: 12px;
  font-weight: bold;
}
body#shop [id^="apply-"] section.how-to p {
  position: relative;
  margin: 5px 20px;
  padding: 5px 10px 5px 30px;
  background-color: #f0427c;
  font-size: 13px;
  color: #fff;
  -webkit-border-radius: 6px;
  border-radius: 6px;
}
body#shop [id^="apply-"] section.how-to p:first-of-type {
  margin-top: 0;
}
body#shop [id^="apply-"] section.how-to p:last-of-type {
  margin-bottom: 0;
}
body#shop [id^="apply-"] section.how-to p .number {
  position: absolute;
  left: 10px;
}
body#shop [id^="apply-"] section.how-to p .number:after {
  content: ".";
}
body#shop [id^="apply-"] section.how-to p a {
  color: #fff;
}
body#shop [id^="apply-"] .text {
  position: relative;
  width: 220px;
  margin: 0 auto;
  padding: 10px 20px;
  font-size: 14px;
  color: #000;
  -webkit-border-radius: 15px;
  border-radius: 15px;
}
body#shop [id^="apply-"] .text span {
  position: absolute;
  left: -5px;
  top: -15px;
  padding: 2px 6px;
  background-color: #0088cc;
  font-size: 12px;
  color: #fff;
  -webkit-border-radius: 4px;
  border-radius: 4px;
  -webkit-transform: rotate(-5deg);
  transform: rotate(-5deg);
}
body#shop [id^="apply-"] .text span:after {
  content: "\f3e5";
  display: inline-block;
  margin-left: 2px;
  font-size: 11px;
  font-weight: 900;
  font-family: "Font Awesome 5 Free";
  transform: scale(-1, 1) rotate(-90deg);
}
body#shop [id^="apply-"] .button {
  margin: 10px 30px;
}
body#shop [id^="apply-"] .button a {
  display: block;
  padding: 10px;
  text-align: center;
  color: #fff;
  text-decoration: none;
  -webkit-border-radius: 6px;
  border-radius: 6px;
}
body#shop [id^="apply-"] .button a:before {
  margin-right: 5px;
  font-weight: 900;
  font-family: "Font Awesome 5 Free";
}
body#shop #apply-line .text {
  margin-top: 25px;
  background-color: #85e249;
}
body#shop #apply-line .text span {
  position: absolute;
  left: -5px;
  top: -15px;
  z-index: 1000;
  padding: 2px 6px;
  background-color: #0088cc;
  font-size: 12px;
  color: #fff;
  -webkit-border-radius: 4px;
  border-radius: 4px;
  -webkit-transform: rotate(-5deg);
  transform: rotate(-5deg);
}
body#shop #apply-line .text span:after {
  content: "\f3e5";
  display: inline-block;
  margin-left: 2px;
  font-size: 11px;
  font-weight: 900;
  font-family: "Font Awesome 5 Free";
  transform: scale(-1, 1) rotate(-90deg);
}
body#shop #apply-line .text textarea {
  height: 45px;
  margin-top: 2px;
  padding: 0;
  background: none;
  overflow: hidden;
  font-size: 15px;
}
body#shop #apply-line .text textarea:focus {
  box-shadow: none;
}
body#shop #apply-line .text textarea::selection {
  background: none;
}
body#shop #apply-line .text .copied {
  display: -webkit-flex;
  display: flex;
  -weblit-flex-flow: row wrap;
  flex-flow: row wrap;
  justify-content: center;
  align-content: center;
  align-items: center;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 500;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 136, 204, 0.9);
  font-size: 16px;
  font-weight: bold;
  color: #fff;
  opacity: 0;
  -webkit-border-radius: 15px;
  border-radius: 15px;
}
body#shop #apply-line .button a {
  background-color: #00b900;
}
body#shop #apply-line .button a:before {
  content: "\f234";
}
body#shop #apply-tel .text {
  background-color: #ffefc8;
}
body#shop #apply-tel .button a {
  background-color: #0088cc;
}
body#shop #apply-tel .button a:before {
  content: "\f3cd";
}
body#shop #apply-form {
  opacity: 1;
}
body#message #messages > li {
  position: relative;
  margin: 10px 30px;
}
body#message #messages > li .name {
  padding: 0 10px;
  font-size: 12px;
  line-height: 1.2;
  font-weight: bold;
}
body#message #messages > li .content {
  position: relative;
  padding: 10px;
  font-size: 13px;
  -webkit-border-radius: 6px;
  border-radius: 6px;
}
body#message #messages > li .content:after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 6px;
  width: 0;
  height: 0;
  border: 8px solid transparent;
}
body#message #messages > li .date {
  display: block;
  position: absolute;
  bottom: 2px;
  width: 30px;
  text-align: center;
  font-size: 10px;
  line-height: 1.2;
}
body#message #messages.girl > li.girl {
  margin-left: 55px;
}
body#message #messages.girl > li.girl .name {
  text-align: right;
}
body#message #messages.girl > li.girl .content {
  background-color: #ffffff;
}
body#message #messages.girl > li.girl .content:after {
  right: -19px;
  border-left: 18px solid #ffffff;
  -webkit-transform: rotate(-15deg);
  transform: rotate(-15deg);
}
body#message #messages.girl > li.girl .date {
  left: -35px;
  text-align: right;
}
body#message #messages.girl > li.shop {
  margin-right: 55px;
}
body#message #messages.girl > li.shop .name {
  text-align: left;
}
body#message #messages.girl > li.shop .content {
  background-color: #ededed;
}
body#message #messages.girl > li.shop .content:after {
  left: -19px;
  border-right: 18px solid #ededed;
  -webkit-transform: rotate(15deg);
  transform: rotate(15deg);
}
body#message #messages.girl > li.shop .date {
  right: -35px;
  text-align: left;
}
body#message #messages.shop > li.girl {
  margin-right: 55px;
}
body#message #messages.shop > li.girl .name {
  text-align: left;
}
body#message #messages.shop > li.girl .content {
  background-color: #ededed;
}
body#message #messages.shop > li.girl .content:after {
  left: -19px;
  border-right: 18px solid #ededed;
  -webkit-transform: rotate(15deg);
  transform: rotate(15deg);
}
body#message #messages.shop > li.girl .date {
  right: -35px;
  text-align: left;
}
body#message #messages.shop > li.shop {
  margin-left: 55px;
}
body#message #messages.shop > li.shop .name {
  text-align: right;
}
body#message #messages.shop > li.shop .content {
  background-color: #ffffff;
}
body#message #messages.shop > li.shop .content:after {
  right: -19px;
  border-left: 18px solid #ffffff;
  -webkit-transform: rotate(-15deg);
  transform: rotate(-15deg);
}
body#message #messages.shop > li.shop .date {
  left: -35px;
  text-align: right;
}
body#message form[name="message-form"] {
  margin-top: 20px;
  padding: 0 20px;
}
body#message form[name="message-form"] textarea {
  border: solid 1px #ccc;
}
body#message form[name="message-form"] input[type="submit"] {
  background-color: #f25a8c !important;
  font-size: 15px;
}
body#apply_form_confirm {
  padding-top: 36px;
}
body#apply_form_confirm main {
  min-height: calc(100vh - 36px - 100px);;
  padding: 10px;
}
body#apply_form_confirm main article form {
  padding: 10px;
  background-color: rgba(242, 90, 140, 0.15);
  font-size: 14px;
}
body#apply_form_confirm main article form .buttons input[type="submit"] {
  background-color: #d41152;
}
body#apply_form_confirm main article form h2 {
  margin-bottom: 5px;
  text-align: center;
  font-size: 16px;
  color: #47061b;
}
body#apply_form_confirm main article form h3 {
  display: block;
  margin: 5px 0 2px;
  padding: 2px 10px;
  background-color: #f25a8c;
  text-align: left;
  font-size: 14px;
  color: #fff;
  -webkit-border-radius: 4px;
  border-radius: 4px;
}
body#apply_form_confirm main article form h4 {
  margin: 0 5px;
}
body#apply_form_confirm main article form > p {
  margin: 0 5px;
}
body#apply_form_confirm main article form .buttons {
  display: -webkit-flex;
  display: flex;
  -weblit-flex-flow: row nowrap;
  flex-flow: row nowrap;
  justify-content: space-between;
  margin-top: 20px;
}
body#apply_form_confirm main article form .buttons input {
  width: -webkit-calc(50% - 5px);
  width: calc(50% - 5px);
  font-size: 16px;
}
body#apply_form_confirm main article form .buttons input[type="button"] {
  background-color: #666;
}
body#apply_form_confirm main article form.question {
  background-color: rgba(0, 136, 204, 0.15);
}
body#apply_form_confirm main article form.question h2 {
  color: #000000;
}
body#apply_form_confirm main article form.question h3 {
  background-color: #0088cc;
}
body#apply_form_confirm main article form.question .buttons input[type="submit"] {
  background-color: #004466;
}
body#apply_form_sent {
  padding-top: 36px;
}
body#apply_form_sent main {
  padding: 10px;
}
body#apply_form_sent main article section {
  margin-bottom: 10px;
}
body#apply_form_sent main article section.thanks {
  padding: 10px;
  background-color: rgba(255, 90, 152, 0.2);
  border: solid 3px #ff5a98;
  text-align: center;
  font-size: 16px;
  color: #5a0022;
  -webkit-border-radius: 6px;
  border-radius: 6px;
}
body#apply_form_sent main article section.thanks h2 {
  font-size: 18px;
}
body#apply_form_sent main article section.attention {
  margin: 10px;
}
body#apply_form_sent main article section.attention em {
  font-style: normal;
  color: #ff0000;
}
body#apply_form_sent main article .buttons {
  display: -webkit-flex;
  display: flex;
  -weblit-flex-flow: row nowrap;
  flex-flow: row nowrap;
  justify-content: space-around;
}
body#apply_form_sent main article .buttons a {
  width: -webkit-calc(50% - 5px);
  width: calc(50% - 5px);
  font-size: 16px;
}
body#apply_form_sent main article .buttons a.shop {
  background-color: #f3005b;
}
body#apply_form_sent main article .buttons a.top {
  background-color: #0088cc;
}
body#mylist h2 {
  margin: 20px 0 10px;
  padding: 3px 10px;
  background-color: #f25a8c;
  font-size: 16px;
  font-weight: normal;
  color: #ffffff;
}
body#mylist h2:before {
  margin-right: 5px;
  font-size: 15px;
  font-weight: 900;
  font-family: "Font Awesome 5 Free";
}
body#mylist h2:before {
  content: "\f46d";
}
body#mylist #shop-list .no-list {
  margin: 0 10px 10px;
  text-align: center;
}
body#mylist #shop-list .shop {
  opacity: 0;
}
body#mylist #apply-form {
  display: none;
}
body#mylist #apply-form h2:before {
  content: "\f1d8";
}
