@charset "UTF-8";
:root {
  --colorBlack       : #333;
  --colorRed         : #ff3e3e;
  --colorYellow      : #ffe45f;
  --colorLightYellow : rgba(252,245,185,0.6);
  --colorLightBlue   : rgba(15,176,247,0.2);
  --colorLightBlue02 : #e6faff;
  --colorGray        : #B4B3B3;
  --colorOrange      : #FF7300;
}

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


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

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

.center_img {
    margin-left: -400px;
}

.area1600 {
    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;
}

.margin_top20p{
  margin-top: 20%;
}

.margin_top10p{
  margin-top: 10%;
}
.margin_top10 {
  margin-top: 10px;
}

.margin_top05p{
  margin-top: 5%;
}

.margin_right05p {
  margin-right: 5%;
}

.padding_top30 {
  padding-top: 30px;
}

.padding_top50 {
  padding-top: 50px;
}

.padding_top80 {
  padding-top: 80px;
}

.padding_bottom80 {
  padding-bottom: 80px;
}

.padding_bottom240 {
  padding-bottom: 240px;
}

.padding_top100 {
  padding-top: 100px;
}

.padding_bottom100 {
  padding-bottom: 100px;
}

.z1 {
  z-index: 1;
}

.z2 {
  z-index: 2;
}

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

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

/*--------------------------------------------------------
各種レイアウト
--------------------------------------------------------*/
.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);
}

.background_stripe {
  background-image: linear-gradient(-45deg,#fff1af 25%, #fffbc5 25%, #fffbc5 50%, #fff1af 50%, #fff1af 75%,#fffbc5 75%, #fffbc5);
  background-size: 80px 80px;
}

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

footer {
  text-align: center;
  /* background-color: #0F0F0F; */
  background-color: var(--color_pink);
}

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

.copyright {
  font-size: 14px;
  color: var(--colorBlack);
}

@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: 2%;
  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;
}

.back_button a {
  font-size: 1.4em;
  color: var(--colorOrange);
}

/*--------------------------------------------------------
TOP
--------------------------------------------------------*/

.negativeMargin {
  margin-top: -135px;
}

.section_padding {
  padding-top: 10%;
  padding-bottom: 10%;
}


.link_button_container {
  bottom: 9%;
}

.link_button_container02 {
  bottom: 6%;
}

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

.counter_wrapper .counter { 
  font-size: 1.5em;
}

.first_view_contents {
  bottom: 15%;
  /* padding-bottom: 15%; */
}

.frd_01 {
  top: 1%;
}

.frd_03 {
  top: 1%;
}

.frd_05 {
  top: 3%;
}

.frd_09 {
  top: 17%;
}

.mask{
  mask-image: url(../img/frd_09.png);
  mask-mode: alpha;
  mask-repeat: no-repeat;
  mask-size: 100%;
}

@keyframes reflection {
  0% {
    transform: scale(0) rotate(45deg);
    opacity: 0;
  }
  80% {
    transform: scale(0) rotate(45deg);
    opacity: 0.5;
  }
  81% {
    transform: scale(4) rotate(45deg);
    opacity: 1;
  }
  100% {
    transform: scale(55) rotate(45deg);
    opacity: 0;
  }
}

.reflection {
  width: 30px;
  height: 100%;
  position: absolute;
  top: -180px;
  left: 0;
  background-color: #FFF;
  opacity: 0;
  transform: rotate(45deg);
  animation: reflection 2s ease-in-out infinite;
}

.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_item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
} */

/* .qa_question{
  display: flex;
  align-items: center;
  flex: 1;
} */
/* 
.qa_number {
  font-family: "Ubuntu Mono";
  padding-right: 10px;
  margin-right: 10px;
  border-right: 2px solid var(--color_black);
  font-size: 3em;
  font-weight: bold;
  color: var(--color_pink);
}

.qa_title {
  font-size: 2em;
  font-weight: bold;
} */

.qa_answer {
  display: flex;
  align-items: center;
  /* margin-top: 2%;
  padding-top: 2%; */
  border-top: 2px solid var(--color_black);
}

/* .qa_text {
  font-size: 1.5em;
}

.qa_item details .qa_arrow{
  width: 70px;
  height: 70px;
  background-image: url(../img/bmb_16.png);
  background-size: contain;
  background-repeat: no-repeat;
}

.qa_item details[open] .qa_arrow{
  background-image: url(../img/bmb_17.png);
} */

/*--------------------------------------------------------
フォーム
--------------------------------------------------------*/
.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_title {
  text-align: center;
}

.form_title h2{
  margin: 0;
  padding-bottom: 5%;
  font-size: 45px;
}

.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: 19px;
  right: 12px;
  border-right: 12px solid transparent;
  border-left: 12px solid transparent;
  border-top: 12px 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: 22%;
}
.margin-b02 {
  margin-bottom: 1.2em;
}
.radio {
  font-size: 20px;
}
input {
  margin-right: 10px;
}
/*--------------------------------------------------------
//kaku
--------------------------------------------------------*/
.remaining_counter_wrapper {
  font-size: 45px;
  font-weight: bold;
  paint-order: stroke;
  -webkit-text-stroke: 3px white;
}

.remaining_counter_wrapper span {
  margin: 0 0.3%;
}

.input_information_body {
  width: 85%;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 50%;
}

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

/*--------------------------------------------------------
//thx
--------------------------------------------------------*/
.payment_title{
  text-align: center;
}

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


/*--------------------------------------------------------
チェックボックス
--------------------------------------------------------*/
.checkbox_container{
  /* margin-left: 7%; */
}

.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: 52%;
  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: var(--colorLightBlue02);
  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;
}