@charset "UTF-8";
:root {
  --colorBeige       :rgba(255,247,189,0.3);
  --colorOrange      : #FF7300;

  --colorBlack       : #333;
  --colorRed         : #ff3e3e;
  --colorYellow      : #ffe45f;
  --colorLightYellow : rgba(252,245,185,0.6);
  --colorLightBlue   : rgba(15,176,247,0.2);
  --colorLightBlue02 : #e6faff;
  --colorGray        : #B4B3B3;

}

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

html {
  overflow-x: hidden;
}

body {
  overflow: hidden;
  font-size: 16px;
  line-height: 1.5;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  color: var(--colorBlack);
}

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 {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.wrappter {
  flex: 1;
}


/*--------------------------------------------------------
サイト毎に変化のある定数
--------------------------------------------------------*/

.wrap800 {
  width: 800px;
  max-width: 800px;
  margin-right: auto;
  margin-left: auto;
}

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

.visible800 {
    display: none !important;
}

/*--------------------------------------------------------
定数
--------------------------------------------------------*/

.text_c {
    text-align: center !important;
}

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

/*重なりの優先度*/
.relative {
    position: relative;
}

.absolute {
    position: absolute;
}

/*--------------------------------------------------------
定数 ※個別設定
--------------------------------------------------------*/
.center {
  text-align: center;
}

.top-m10 {
  margin-top: 10px;
}

.top-m20 {
  margin-top: 20px;
}

.top-m30 {
  margin-top: 30px;
}

.top-m40 {
  margin-top: 40px;
}

.top-m50 {
  margin-top: 50px;
}

.top-m60 {
  margin-top: 60px;
}

.top-m70 {
  margin-top: 70px;
}

.top-m80 {
  margin-top: 80px;
}

.top-m90 {
  margin-top: 90px;
}

.top-m100 {
  margin-top: 100px;
}

.top-m200 {
  margin-top: 200px;
}

.top-m500 {
  margin-top: 500px;
}

.top-m1000 {
  margin-top: 1000px;
}

.top-p10 {
  padding-top: 10px;
}

.top-p20 {
  padding-top: 20px;
}

.top-p30 {
  padding-top: 30px;
}

.top-p40 {
  padding-top: 40px;
}

.top-p50 {
  padding-top: 50px;
}

.top-p60 {
  padding-top: 60px;
}

.top-p70 {
  padding-top: 70px;
}

.top-p80 {
  padding-top: 80px;
}

.top-p90 {
  padding-top: 90px;
}

.top-p100 {
  padding-top: 100px;
}

.btm-b80 {
  padding-bottom: 80px;
}

.btm-b100 {
  padding-bottom: 100px;
}

.btm-b200 {
  padding-bottom: 200px;
}

.btm-b300 {
  padding-bottom: 300px;
}

.btm-m02 {
    margin-bottom: 1.2em;
}

.z1 {
  z-index: 1;
}

.z2 {
  z-index: 2;
}

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

.err_msg {
  display: block;
  font-size: 0.8em;
  color: var(--colorRed);
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(0%, -50%);
}

.err_msg.relative {
  position: relative;
  transform: translate(0%);
}

/*--------------------------------------------------------
各種レイアウト
--------------------------------------------------------*/
.bg_beige {
  background-color: var(--colorBeige);
} 
.bg_orange {
  background-color: var(--colorOrange);
}





.red {
  color: var(--colorRed);
}

.background_white {
  background-color: #fff;
}

.background_lightBlue {
  background-color: var(--colorLightBlue);
}

.background_yellow {
  background-color: var(--colorYellow);
}

.background_lightYellow {
  background-color: var(--colorLightYellow);
}


.shadow_black {
  box-shadow: 0px 0px 10px -5px #000;
}

footer {
  text-align: center;
  background-color: var(--color_pink);
}

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

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

@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;
}

.notice02 {
  padding-top: 4%;
  font-size: 1em;
  text-align: center;
}

.notice03 {
  width: 90%;
  margin: 10% auto;
  font-size: 1.2em;
}

.notice03 p:not(:last-child) {
  margin-bottom: 5%;
}

.back_button {
  text-align: center;
  padding-bottom: 20%;
  padding-top: 10%;
}

.back_button button {
  font-size: 1.4em;
  color: var(--colorOrange);
}
.text-shadow {
  text-shadow:
  2px  0   0 white,
  -2px  0   0 white,
  0   2px  0 white,
  0  -2px  0 white,
  2px  2px  0 white,
  -2px  2px  0 white,
  2px -2px  0 white,
  -2px -2px  0 white;
}

/*--------------------------------------------------------
TOP
--------------------------------------------------------*/
.picture {
  display: flex;
  justify-content: center;
}
.nkp_btn_01 {
  position: absolute;
  top: 70%;
  left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
}
.fv_btn_txt {
  width: 100%;
  text-align: center;
  position: absolute;
  top: 86%;
  left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
}
.count-txt{
  position:absolute;
  top:90%;
  left:50%;
  transform: translateX(-50%);
  font-size:40px;
  display:inline-block;  /* ← shrink-to-fit回避 */
  white-space:nowrap;    /* ← 改行させない */
  box-shadow: inset 0 -0.5em 0 #FFFF00;
}


.count-num {
  font-size: 55px;
}
.count-txt2 {
  top: 72%;
}
.nkp_btn_01-2 {
  position: absolute;
  top: 77%;
  left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
}
.snd_btn_txt {
  width: 100%;
  text-align: center;
  position: absolute;
  top: 90%;
  left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
}
.bg_nkp_16img {
  background-image: url(../img/nkp_16.png);
  background-repeat: repeat;
}
.nkp_15 {
  width: 118%;
  margin-left: -9%;
}
.nkp_15 img {
  width: 100%;
}
.nkp_02 {
  opacity: 0;
  will-change: opacity;
}

.counter_wrapper {
  margin-top:-2%;
  margin-bottom:-2%;
  font-size: 2em;
  font-weight: bold;
}

.counter_wrapper .counter { 
  font-size: 1.5em;
}
.qa_item:not(:last-child){
  margin-bottom: 4%;
}

.qa_item details {
  background-color: #fff;
  border: 2px solid var(--color_pink);
  border-radius: 30px;
  /* padding: 3%; */
}

.qa_item summary {
  display: block;
}

.qa_item summary::-webkit-details-marker  {
  display: none;
}

.qa_answer {
  display: flex;
  align-items: center;
  border-top: 2px solid var(--color_black);
}
.nkp_17 {
  position: absolute;
  top: 62%;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
}

/*--------------------------------------------------------
フォーム
--------------------------------------------------------*/
.form_container {
  padding-top: 80px;
  padding-bottom: 240px;
}

.form_body {
  width: 85%;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 5%;
}
.form_name {
  font-size: 1.6em;
  padding-bottom: 0.2em;
}

.form_name .require_mark{
  font-size: 0.7em;
  vertical-align: top;
}

.form_field {
  margin-bottom: 4%;
  font-size: 1.6em;
}

.select_arrow {
  position: relative;
}

.select_arrow::after {
  content: "";
  position: absolute;
  top: 14px;
  right: 12px;
  border-right: 12px solid transparent;
  border-left: 12px solid transparent;
  border-top: 20px solid var(--colorGray);
  border-bottom: 0;
}

.submit_button_container{
  margin-top: 10%;
}

input:-webkit-autofill {
  transition: background-color 5000s ease-in-out 0s !important;
}

input::placeholder {
  color: #ccc;
}

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

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

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: #fff;
  border: 2px solid var(--colorGray);
  border-radius: 0% !important;
}

select {
  color: #0f0f0f !important;
}

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

button img{
    width: 100%;
}

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;
}

.amount_image {
  top: 23%;
}

.radio {
  font-size: 20px;
}
input {
  margin-right: 10px;
}
/*--------------------------------------------------------
//kn
--------------------------------------------------------*/
.remaining_count {
  font-size: 30px;
}
.mr05p {
  margin-right: 5%;
}
.nkp_k02 {
  width: 118%;
  margin-left: -9%;
}
.sep { 
  display: inline; 
}
.sp-br { 
  display: none; 
}
.input_information_body {
  width: 85%;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 40%;
}

.inner_box {
  background: #fff;
  /* padding: 2%; */
  user-select: none;
}

.inner_box_item {
  height: 240px;
  overflow-y: scroll;
  border: 1px solid var(--colorBlack);
}

.inner_box_item::-webkit-scrollbar {
  width: 15px;
}

.inner_box_item::-webkit-scrollbar-thumb {
  background: var(--colorRed);
}

.inner_box_item::-webkit-scrollbar-track {
  background: var(--colorGray);
}

.inner_box_item > div {
  margin: 2%;
}

.inner_box_item h3{
  margin: 0;
  font-size: inherit;
}

.inner_box_item p {
  margin-bottom: 1.5em;
}
.w100 {
  width: 100%;
}
/*--------------------------------------------------------
//ks
--------------------------------------------------------*/
.nkp_k_btn01 img {
  width: 100%;
}
.ks_container {
  padding-left: 3%;
  padding-right: 3%;
  font-size: 20px;
}
.top-info {
  font-size: 23px;
  user-select:none;
  -webkit-user-select:none;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-touch-callout:none;
}






.payment_title{
  text-align: center;
}

.payment_title h2{
  margin: 0;
  padding-bottom: 5%;
  font-size: 1.8em;
}


/*--------------------------------------------------------
チェックボックス
--------------------------------------------------------*/
.checkbox {
  display: flex;
  justify-content: center;
  font-size: 20px;
  -webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
  user-select: none;
}

.checkbox label {
  position: relative;
  display: block;
  cursor: pointer;
  width: auto;
  margin-right: 0.5em;
  margin-left: 0.5em;
}

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

.checkbox label input {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.checkbox label input+span::before {
  content: "";
  display: block;
  background: #fff;
  width: 1em;
  height: 1em;
  box-shadow: none;
  margin-right: 0.7em;
  position: absolute;
  left: -1.5em;
  border: 1px solid #0f0f0f;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}

.checkbox label input:checked+span::after {
  content: "";
  display: block;
  position: absolute;
  left: -1.15em;
  width: 0.3em;
  height: 0.6em;
  -webkit-transform: rotate(40deg);
  -moz-transform: rotate(40deg);
  -ms-transform: rotate(40deg);
  -o-transform: rotate(40deg);
  transform: rotate(40deg);
  border-bottom: 3px solid var(--colorRed);
  border-right: 3px solid var(--colorRed);
  top: 8%;
}

/*--------------------------------------------------------
pop
--------------------------------------------------------*/
.popup {
  display: none;
  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.is_show{
  display: block;
}

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

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

.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 .more img {
  width: 100%;
}

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

.popup_close_btn {
  position: absolute;
  top: -9%;
  right: 0%;
  width: 31%;
  cursor: pointer;
}

.popup_link_btn {
  position: absolute;
  top: 58%;
  left: 50%;
  transform: translate(-50%);
  width: 100%;
}

/* --- birth_pop --- */
.birth_pop {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  padding: 20px;
  background-color: rgb(255,250,215);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  border-radius: 30px;
  width: 95%;
  max-width: 800px;
}

.birth_close {
  position: absolute;
  top: 2%;
  right: 3%;
  font-size: 25px;
  cursor: pointer;
}

.birth_pop_field {
  width: 25%;
  margin-bottom: 4%;
  font-size: 1.6em;
}

.birth_pop_field > div:nth-of-type(1) {
  width: 30%;
}

.birth_pop_field > div:nth-of-type(3) {
  width: 25%;
}

.birth_pop_field > div:nth-of-type(5) {
  width: 25%;
}

.birth_pop_field_container > div {
  font-size: 23px;
}

.birth_pop_field_container {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
}

.birth_pop_title {
  margin-top: 50px;
  margin-bottom: 10px;
  font-size: 35px;
}

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