@charset "UTF-8";
:root {
  --color_white: #FFF;
  --color_beige: #FFF8D4;
  --color_pink:  #FF7BAC;
}


body,
div,
form,
input,
button,
textarea,
p {
  margin: 0;
  padding: 0;
}

html {
  overflow: auto;
}

body {
  overflow: hidden;
  font-size: 16px;
  line-height: 1.5;
  color: #333;
  font-family: "Noto Sans JP", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

li {
  list-style: none;
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
  color: inherit;
}

a:hover {
  text-decoration: none;
}

a img {
  border-style: none;
}

img {
  vertical-align: bottom;
}

button {
  font-size: 1em;
  background-color: transparent;
  border: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

*:focus {
  outline: none;
}

button:hover {
  cursor: pointer;
}

* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

body::-webkit-scrollbar {
  width: 15px;
}

body::-webkit-scrollbar-thumb {
  background: #333;
}

body::-webkit-scrollbar-track {
  background: #F1F8FF;
}

/*--------------------------------------------------------
サイト毎に変化のある定数
--------------------------------------------------------*/
.center_img {
  margin-left: -400px;
}

.center_img2 {
  margin-left: -450px;
}

/* .area800 {
  width: 800px;
  max-width: 800px;
  margin-right: auto;
  margin-left: auto;
} */

.area900 {
  width: 900px;
  max-width: 900px;
  margin-right: auto;
  margin-left: auto;
}

/* .area1600 {
  width: 100%;
  max-width: 1600px;
  margin-left: auto;
  margin-right: auto;
} */

.area1800 {
  width: 100%;
  max-width: 1800px;
  margin-left: auto;
  margin-right: auto;
}

.op0 {
  opacity: 0;
}

.red {
  color: #E50012;
}

/*--------------------------------------------------------
定数
--------------------------------------------------------*/
.c {
  text-align: center !important;
}

.cm {
  margin-left: auto;
  margin-right: auto;
}

.ml20p {
  margin-left: 20px;
}

.mt10p {
  margin-top: 10px;
}

.mt20p {
  margin-top: 20px;
}

.mt30p {
  margin-top: 30px;
}

.mt40p {
  margin-top: 40px;
}

.mt50p {
  margin-top: 50px;
}

.mt60p {
  margin-top: 60px;
}

.mt70p {
  margin-top: 70px;
}

.mt80p {
  margin-top: 80px;
}

.mt90p {
  margin-top: 90px;
}

.mt100p {
  margin-top: 100px;
}

.mt200p {
  margin-top: 200px;
}

.mt500p {
  margin-top: 500px;
}

.mt1000p {
  margin-top: 1000px;
}

.pt10p {
  padding-top: 10px;
}

.pt20p {
  padding-top: 20px;
}

.pt30p {
  padding-top: 30px;
}

.pt40p {
  padding-top: 40px;
}

.pt50p {
  padding-top: 50px;
}

.pt60p {
  padding-top: 60px;
}

.pt70p {
  padding-top: 70px;
}

.pt80p {
  padding-top: 80px;
}

.pt90p {
  padding-top: 90px;
}

.pt100p {
  padding-top: 100px;
}

.pb100p {
  padding-bottom: 100px;
}

.pb200p {
  padding-bottom: 200px;
}

.pb300p {
  padding-bottom: 300px;
}

.visible600 {
  display: none !important;
}

.visible800 {
  display: none !important;
}

.visible900 {
  display: none !important;
}

.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

.z1 {
  z-index: +1;
}

.z2 {
  z-index: +2;
}

.z3 {
  z-index: +3;
}

.z99 {
  z-index: +9999;
}

/*横幅*/
.w100 {
  width: 100%;
}

.w90 {
  width: 90%;
}

.w80 {
  width: 80%;
}

.w70 {
  width: 70%;
}

.w60 {
  width: 60%;
}

.w50 {
  width: 50%;
}

.w40 {
  width: 40%;
}

.w30 {
  width: 30%;
}

.w20 {
  width: 20%;
}

.w10 {
  width: 10%;
}

.inline_b {
  display: inline-block;
}

.pointer {
  cursor: pointer;
}

.span span {
  display: inline-block;
}

.picture {
  display: flex;
  justify-content: center;
}

/*-------------------------------------
err
-------------------------------------*/

.err_msg {
  font-size: 0.8em;
  color: #ff0000;
}

.err_msg2 {
  font-size: 1em;
  color: #ff0000;
  margin: 0.5em 0em 0 0;
}

/*--------------------------------------------------------
ヘッダー
--------------------------------------------------------*/

/*--------------------------------------------------------
フッター
--------------------------------------------------------*/
footer {
  text-align: center;
}

.copyright {
  padding: 10px 0;
  text-decoration: none;
}

.copyright {
  font-size: 14px;
  color: #333;
}

@media screen and (max-width: 650px) {
  .copyright {
    font-size: 12px;
  }
}

/*--------------------------------------------------------
フォーム 
--------------------------------------------------------*/
input:-webkit-autofill {
  transition: background-color 5000s ease-in-out 0s !important;
}

input::placeholder {
  color: #b1b1b1;
}

/* IE11 & IE10 */
input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
  color: #b1b1b1;
}

/* Edge */
input::-ms-input-placeholder {
  color: #b1b1b1;
}

input[type="text"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

input[type="text"],
input[type="tel"],
input[type="email"],
select {
  width: 100%;
  border: none;
  font-size: 1em;
  padding: 0.3em 0.6em;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  background-color: var(--color_white);
  border: 3px solid #6B6B6B;
  border-radius: 0% !important;
}

.field {
  font-size: 1.6em;
}

.inner {
  width: 85%;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.inner .title {
  font-size: 1.6em;
  padding-bottom: 0.2em;
}

select option.placeholder {
  color: #b1b1b1;
  /* プレースホルダーの色 */
}

/* 選択後に通常の色に戻す */
select:invalid {
  color: #b1b1b1;
}

select:valid {
  color: #000;
}

.wrap {
  position: relative;
  z-index: +2;
}

.wrap::after {
  content: "\025bc";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 3;
  font-size: 1.1em;
  top: -0.7em;
  right: 0.8em;
  width: 0.8em;
  height: 0.8em;
  color: #6B6B6B;
  margin: auto;
  pointer-events: none;
}

button {
  background-color: transparent;
  border: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  cursor: pointer;
  font-size: 1em;
}

button:focus,
input:focus,
select:focus,
textarea:focus,
section:focus,
main:focus,
article:focus,
nav:focus,
header:focus,
footer:focus,
div:focus,
a:focus {
  outline: none;
}

button:hover {
  cursor: pointer;
}

/*--------------------------------------------------------
特定商・プライバシーポリシー
--------------------------------------------------------*/


/*--------------------------------------------------------
チェックボックス
--------------------------------------------------------*/
.checkbox {
  display: flex;
  justify-content: center;
  font-size: 27px;
}

.checkbox label {
  position: relative;
  display: block;
  cursor: pointer;
  width: auto;
}

.checkbox label::before {
  content: "";
  display: block;
  background: var(--color_white);
  width: 1.2em;
  height: 1.2em;
  box-shadow: none;
  margin-right: 1.7em;
  position: absolute;
  left: -1.7em;
  border: 2px solid var(--color_pink);
  border-radius: 5px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}

.checkbox label span {
  display: inline-block;
  line-height: 1.3;
  position: relative;
}

.checkbox label input {
  display: none;
}

.checkbox label input:checked+span::before,.checkbox label input:checked+span::after {
  content: "";
  background: var(--color_pink);
  display: block;
  height: 0.23em;
  width: 0.6em;
  border-radius: 10px;
  position: absolute;
  left: -1.6em;
  top: 55%;
  transform: rotate(45deg);
}

.checkbox label input:checked+span::after {
  width: 1.2em;
  left: -1.4em;
  top: 46%;
  transform: rotate(-45deg);
}

/*--------------------------------------------------------
//各種設定
--------------------------------------------------------*/

.to_area {
  margin-top: 10%;
  max-width: 800%;
  width: 95%;
}

.modoru {
  margin-top: 15%;
  font-size: 25px;
  width: 100%;
  color: #FFBA39;
  text-align: center;
}

.pay_btn {
  position: absolute;
  bottom: 10%;
  left: 50%;
  transform: translate(-50%);
}

/*--------------------------------------------------------
popup
--------------------------------------------------------*/
.popup {
  opacity: 0;
  visibility: hidden;
  z-index: 99999;
  position: fixed;
  top: -10px;
  left: 0;
  right: 0;
  bottom: -10px;
  background-color: rgba(0, 0, 0, 0.5);
  overflow: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.popup .in {
  width: 85%;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 50px;
  margin-bottom: 100px;
}

.in img {
  width: 100%;
}

.popup.is-show {
  opacity: 1;
  visibility: visible;
}

.popup .popup_btn {
  position: absolute;
  top: 21%;
  left: 50%;
  transform: translate(-50%);
  width: 100%;
}

.popup .container {
  width: 95%;
  margin-left: auto;
  margin-right: auto;
}

.more-btn {
  position: absolute;
  width: 77.8%;
  top: 77%;
  left: 0;
  right: 0;
  margin: 0 auto;
  text-align: center;
}

.close-btn {
  position: absolute;
  top: 2%;
}

/* .popup .more {
  width: 100%;
  max-width: 800px;
  -webkit-transition: margin 1s ease;
  -moz-transition: margin 1s ease;
  -ms-transition: margin 1s ease;
  -o-transition: margin 1s ease;
  transition: margin 1s ease;
  border: none;
}

.popup .more .tx>div {
  padding-bottom: 1em;
}

.popup .more .tx>div:last-child {
  padding-bottom: 0;
}



.popup_text {
  font-size: 16px;
  position: absolute;
  bottom: 7.5%;
  left: 50%;
  transform: translate(-50%);
  text-align: center;
  width: 100%;
}

.close_btn {
  width: 100%;
  text-align: right;
  color: var(--color_white);
  font-size: 35px;
}

.close_btn p {
  display: inline-block;
  cursor: pointer;
} */

/***********
* pickup *
************/
@-webkit-keyframes pickup {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.1);
  }

  100% {
    transform: scale(1);
  }
}

@keyframes pickup {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.1);
  }

  100% {
    transform: scale(1);
  }
}

.pickup {
  display: block;
  -webkit-animation-name: pickup;
          animation-name: pickup;
  -webkit-animation-duration: 1.5s;
          animation-duration: 1.5s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
}

/*--------------------------------------------------------
common
--------------------------------------------------------*/
.bg-beige {
  background-color: var(--color_beige);
}

.fv-username-container {
  width: 75%;
  margin: 0 auto;
  padding-top: 10%;
  padding-bottom: 5%;
}

.fv-username-box {
  background-color: var(--color_white);
  width: 100%;
  padding: 2% 5%;
  border: 2px solid var(--color_pink);
  border-radius: 10px;
}

.fv-username-box-inner {
  display: flex;
  align-items: center;
  font-size: 35px;
}

.fv-username-box-inner span:first-child {
  flex: 1;
  text-align: center;
}

.fv-username-box-inner span:last-child {
  margin-left: 10px;
}

.blank-area {
  height: 200vh;
}

.notice-container {
  width: 80%;
  margin-left: auto;
  margin-right: auto;
}

.notice {
  display: flex; 
}

.notice-icon::before{
  content: "";
  background-image: url("../img/asdfg_kn_05.png");
  background-size: contain;
  display: inline-block;
  width: 2.19em;
  height: 2.19em;
  margin-top: -0.35em;
}

/*--------------------------------------------------------
top
--------------------------------------------------------*/
.bg-image, .bg-image2, .bg-image3, .bg-image4, .bg-image5 {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  max-width: 1800px;
  margin: 0 auto;
  position: relative;
  }

/* SP用背景画像 */
.bg-image {
  background-image: url('../img/asdfg_02_sp.jpg');
  aspect-ratio: 900 / 917;
}

.bg-image2 {
  background-image: url('../img/asdfg_06_sp.jpg');
  aspect-ratio: 900 / 1692;
}

.bg-image3 {
  background-image: url('../img/asdfg_19_sp.jpg');
  aspect-ratio: 900 / 1195;
}

.bg-image4 {
  background-image: none; /* デフォルトは背景なし（SP用） */
}

.bg-image5 {
  background-image: url('../img/asdfg_98_sp.jpg');
  aspect-ratio: 900 / 284;
}

.asdfg_01 {
  position: absolute;
  bottom: -3.5%;
  z-index: 1;
}

.asdfg_movie {
  position: absolute;
  top: 62.42%;
}

.sdfg_05, .asdfg_18 {
  position: absolute;
  top: 0;
}

.asdfg_04-2 {
  position: absolute;
  bottom: 0;
}

.slider img {
  max-width: 100%;
  height: auto;
}

.slider-box {
  overflow: hidden;
  margin: 0 auto;
  max-width: 100%;
}

.slider p {
  text-align: center; /* スライド内中央揃え */
}

.slider img {
  display: block;
  margin: 0 auto; /* 画像自体を中央寄せ */
  max-width: 100%;
  height: auto;
}

.asdfg_16 {
  margin-top: 2%;
}

.asdfg_17 {
  position: absolute;
  top: 9%;
  right: 6%;
}

.pb3 {
  padding-bottom: 3%;
}

.wobble.go {
  animation-iteration-count: infinite;
  animation-duration: 3s;
}

.age-notice {
  text-align: right;
  font-size: 20px;
}

.asdfg_ks_02 {
  position: absolute;
  bottom: 27%;
  width: 100%;
}
/*--------------------------------------------------------
check
--------------------------------------------------------*/
.asdfg_kn_01 {
  position: relative;
}

.asdfg_kn_02 {
  margin-top: -5%;
}

.asdfg_kn_06 {
  width: 80.6%;
  margin: 0 auto;
}

.check-link-button {
  width: 89.7%;
  margin: 0 auto;
}

.confirm-contents-container {
  margin: 10% auto 5%;
}

.confirm-contents-box {
  user-select: none;
}

.confirm-contents-box .item_law {
overflow-y: scroll;
  height: 300px;
}

.confirm-contents-box .item_law::-webkit-scrollbar {
  width: 15px;
}

.confirm-contents-box .item_law::-webkit-scrollbar-thumb {
  background: var(--color_pink);
  border-radius: 20px;
}

.confirm-contents-box .item_law h2{
  font-size: 16px;
}

.confirm-contents-box .item_law p{
  font-size: 14px;
}


.confirm-contents-header {
  font-size: 40px;
  text-align: center;
  line-height: 1.3;
}

.confirm-contents-box {
  background-color: var(--color_white);
  width: 80%;
  margin: 0 auto;
  padding: 5%;
  border: 2px solid var(--color_pink);
  border-radius: 10px;
}

.confirm-userdata {
  font-size: 35px;
}

.confirm-userdata .userdata-box-item:not(:last-child){
  margin-bottom: 2%;
}

.userdata-box-item { 
  display: flex;
}

.userdata-box-item span:first-child {
  display: inline-block;
  width: 200px;
}

.userdata-box-item span:last-child {
  flex: 1;
  word-break: break-all;
}


/*--------------------------------------------------------
payment
--------------------------------------------------------*/
.asdfg_ks_04 {
  margin-top: 5%;
  margin-bottom: 5%;
}

.payment_item {
  margin-top: 10%;
  margin-bottom: 10%;
}

.payment_content .payment_item:last-child {
  margin-bottom: 0;
}

.payment-btn {
  width: 74.9%;
  left: 0;
  right: 0;
  margin: auto;
  text-align: center;
}

.paypay-btn {
  top:55%;
}

.carrier-btn {
  top:58%;
}

.credit-btn {
  top:58%;
}

.conveni-btn {
  top:58%;
}

.bank-info {
  width: 80%;
  top: 32%;
  left: 0;
  right: 0;
  margin: auto;
  text-align: center;
}

.bank-info-inner {
  font-size: 25px;
}

/*--------------------------------------------------------
law
--------------------------------------------------------*/
.law-text {
  width: 86%;
  margin: 10% auto 20%;
  max-width: 700px;
  user-select: none;
}

.law-text h2 {
  font-size: 18px;
}

.law-text p {
  font-size: 16px;
}