@charset "UTF-8";

/* ------------------------------ 
  movie 
------------------------------ */
/* PC */
@media print, screen and (min-width: 769px) {
  .movie {
    padding: 0 24px;
  }
  .movie-dummy {
    display: block;
    max-width: 100%;
    margin: 0 auto;
  }
}
/* SP */
@media print, screen and (max-width: 768px) {
  .movie-dummy {
    display: block;
    max-width: 100%;
  }
}


/* ------------------------------ 
  input 
------------------------------ */
/* PC */
@media print, screen and (min-width: 769px) {
  .input {
    margin-top: 22px;
  }
  .input:not(:last-child) {
    margin-bottom: 40px;
  }
  .input__txtbox {
    width: 100%;
    min-height: 140px;
    padding: 14px 20px;
    border: 1px solid transparent;
    border-radius: 12px;
    background-color: #f8f8f8;
    color: #333;
    font-size: 14px;
    line-height: 1.6;
    box-sizing: border-box;
  }
  .input__txtbox::placeholder {
    color: #999;
  }
  .input__txtbox:focus {
    background-color: #fff;
    outline: #60B8EF solid 1px;
  }
  .input__txtbox.is-done {
    background-color: #fff;
    border: 1px solid #E7EEEC;
  }
}
/* SP */
@media print, screen and (max-width: 768px) {
  .input {
    margin-top: 12px;
  }
  .input:not(:last-child) {
    margin-bottom: 30px;
  }
  .input__txtbox {
    width: 100%;
    min-height: 140px;
    padding: 15px;
    border: 1px solid transparent;
    border-radius: 8px;
    background-color: #f8f8f8;
    color: #333;
    font-size: 12px;
    line-height: 1.5;
    box-sizing: border-box;
  }
  .input__txtbox::placeholder {
    color: #999;
  }
  .input__txtbox:focus {
    background-color: #fff;
    outline: #60B8EF solid 1px;
  }
  .input__txtbox.is-done {
    background-color: #fff;
    border: 1px solid #E7EEEC;
  }
}


/* ------------------------------ 
  float-window 
------------------------------ */
/* PC */
@media print, screen and (min-width: 769px) {
  .float-win {
    position: absolute;
    right: 0;
    top: 125px;
    pointer-events: none;
    width: 795px;
    height: 546px;
    overflow: hidden;
  }
  .float-win.is-fixed {
    position: fixed;
    right: 0;
    top: 0;
  }
  .float-win__btn {
    width: 46px;
    height: 165px;
    position: absolute;
    right: 0;
    top: 20px;
    z-index: 1;
  }
  .float-win.is-fixed .float-win__btn {
    top: 0;
  }
  .float-win__btn-item {
    background-color: #60B8EF;
    border-radius: 0 0 0 10px;
    border: none;
    width: 100%;
    height: 100%;
    cursor: pointer;
    pointer-events: auto;
    box-shadow: 0px 6px 20px rgba(49, 50, 51, 0.12);
    line-height: 1.214;
    padding: 24px 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
  }
  .float-win__btn-item::after {
    content: "";
    background-image: url(../img/icon_arrow_wihte_square.svg);
    background-size: contain;
    background-repeat: no-repeat;
    width: 12px;
    height: 12px;
  }
  .float-win__btn-item.is-active::after {
    transform: rotate(180deg);
  }
  .float-win__btn-item-txt {
    color: #fff;
    font-size: 14px;
    font-weight: bold;
    height: 85px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .float-win__content {
    position: absolute;
    top: 20px;
    right: -775px;
    overflow: scroll;
    width: 755px;
    height: 486px;
    max-height: 64vh;
    z-index: 0;
    transition: right 1s ease-in-out;
    pointer-events: auto;
    box-shadow: 0px 6px 20px rgba(49, 50, 51, 0.12);
    border-radius: 12px 0px 0px 12px;
  }
  .float-win.is-fixed .float-win__content {
    top: 0;
  }
  .float-win__content.is-active {
    right: 0;
  }
  .float-win__content-img {
    display: block;
    width: 100%;
    border-radius: 12px 0px 0px 12px;
  }
  .float-win__content-link{
    font-size: 12px;
    font-weight: bold;
    line-height: 1.5;
    color: #10A3FF;
    text-decoration: underline;
    position: absolute;
    right: 66px;
    top: 20px;
    display: inline-block;
    padding-right: 14px;
  }
  .float-win__content-link:hover{
    text-decoration: none;
  }
  .float-win__content-link::after{
    content: "";
    width: 12px;
    height: 12px;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    background: #10A3FF;
    mask: url("../img/icon_link_black.svg") no-repeat center center / contain;
    -webkit-mask: url("../img/icon_link_black.svg") no-repeat center center / contain;
  }
}
/* SP */
@media print, screen and (max-width: 768px) {
  .float-win {
    position: absolute;
    right: 0;
    top: 191px;
    pointer-events: none;
    width: 100%;
    height: 274px;
    overflow: hidden;
  }
  .float-win.is-fixed {
    position: fixed;
    right: 0;
    top: 0;
  }
  .float-win__btn {
    width: 30px;
    height: 122px;
    position: absolute;
    right: 0;
    top: 20px;
    z-index: 1;
  }
  .float-win.is-fixed .float-win__btn {
    top: 0;
  }
  .float-win__btn-item {
    background-color: #60B8EF;
    border-radius: 0 0 0 10px;
    border: none;
    width: 100%;
    height: 100%;
    cursor: pointer;
    pointer-events: auto;
    box-shadow: 0px 6px 20px rgba(49, 50, 51, 0.12);
    line-height: 1.1666;
    padding: 14px 9px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
  }
  .float-win__btn-item::after {
    content: "";
    background-image: url(../img/icon_arrow_wihte_square.svg);
    background-size: contain;
    background-repeat: no-repeat;
    width: 12px;
    height: 12px;
  }
  .float-win__btn-item.is-active::after {
    transform: rotate(180deg);
  }
  .float-win__btn-item-txt {
    color: #fff;
    font-size: 14px;
    font-weight: bold;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .float-win__content {
    position: absolute;
    top: 20px;
    right: -100vw;
    overflow: scroll;
    width: calc(100vw - 5px);
    height: 274px;
    max-height: 41vh;
    z-index: 0;
    transition: right 1s ease-in-out;
    pointer-events: auto;
    box-shadow: 0px 6px 20px rgba(49, 50, 51, 0.12);
    border-radius: 12px 0px 0px 12px;
  }
  .float-win.is-fixed .float-win__content {
    top: 0;
  }
  .float-win__content.is-active {
    right: 0;
  }
  .float-win__content-img {
    display: block;
    width: 100%;
    border-radius: 12px 0px 0px 12px;
  }
  .float-win__content-link{
    font-size: 12px;
    font-weight: bold;
    line-height: 1.5;
    color: #10A3FF;
    text-decoration: underline;
    position: absolute;
    right: 40px;
    top: 12px;
    display: inline-block;
    padding-right: 14px;
  }
  .float-win__content-link:hover{
    text-decoration: none;
  }
  .float-win__content-link::after{
    content: "";
    width: 12px;
    height: 12px;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    background: #10A3FF;
    mask: url("../img/icon_link_black.svg") no-repeat center center / contain;
    -webkit-mask: url("../img/icon_link_black.svg") no-repeat center center / contain;
  }
}


/* ------------------------------ 
  float-area 
------------------------------ */
/* PC */
@media print, screen and (min-width: 769px) {
  .float-area {
    position: fixed;
    /* max-width: 912px; */
    /* width: calc(100vw - 340px); */
    width: 100%;
    padding: 12px 40px;
    box-sizing: border-box;
    background-color: #fff;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    display: none;
  }
  .float-area.is-active {
    display: block;
  }
  .float-area__box {
    position: relative;
  }
  .float-area__box-bubble {
    position: absolute;
    bottom: calc(100% + 12px);
    left: 50%;
    transform: translateX(-50%);
    display: none;
    align-items: center;
    justify-content: flex-start;
    max-width: 272px;
    width: 88%;
    padding: 16px 12px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0px 6px 20px rgba(49, 50, 51, 0.12);
    box-sizing: border-box;
  }
  .float-area__box-bubble.is-active {
    display: flex;
  }
  .float-area__box-bubble::after {
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 18px 11px 0 11px;
    border-color: #ffffff transparent transparent transparent;
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
  }
  .float-area__box-bubble-icon {
    display: block;
    width: 40px;
    height: 40px;
    margin-right: 8px;
  }
  .float-area__box-bubble-txt {
    font-size: 12px;
    line-height: 1.5;
  }
}
/* SP */
@media print, screen and (max-width: 768px) {
  .float-area {
    position: fixed;
    width: 100%;
    padding: 8px 18%;
    box-sizing: border-box;
    background-color: #fff;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    display: none;
  }
  .float-area.is-active {
    display: block;
  }
  .float-area__box {
    position: relative;
  }
  .float-area__box-bubble {
    position: absolute;
    bottom: calc(100% + 12px);
    left: 8px;
    display: none;
    align-items: center;
    justify-content: flex-start;
    max-width: 272px;
    width: 272px;
    padding: 16px 12px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0px 6px 20px rgba(49, 50, 51, 0.12);
    box-sizing: border-box;
  }
  .float-area__box-bubble.is-active {
    display: flex;
  }
  .float-area__box-bubble::after {
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 18px 11px 0 11px;
    border-color: #ffffff transparent transparent transparent;
    position: absolute;
    bottom: -9px;
    left: 50px;
  }
  .float-area__box-bubble-icon {
    display: block;
    width: 40px;
    height: 40px;
    margin-right: 8px;
  }
  .float-area__box-bubble-txt {
    font-size: 12px;
    line-height: 1.5;
  }
}





/* CSS Document */

.register_form__birthday-area{
  display: flex;
  align-items: center;
}
.register_form__birthday-area input{
  max-width: 5em
}
.register_form__birthday-area span{
  margin: 0 5px;
}

.g-input-chack_box-text{
  font-size: 12px;
}

.check_last{
  justify-content: center;
}

@media print, screen and (max-width: 767px){
  .toolTip__item {
    display: none;
    opacity: 0;
    visibility: hidden;
    position: absolute;
    left: 0%;
    transform: translate(-90%, -100%);
    top: -20px;
    padding: 20px;
    white-space: nowrap;
    background: #fff;
    color: #fff;
    border-radius: 10px;
    box-shadow: 0 6px 20px rgb(217 223 227);
    transition: 0.3s ease-in;
  }
  .toolTip__txt-wrap::before {
    content: "";
    display: inline-block;
    position: absolute;
    bottom: 5px;
    left: auto;
    right: 0px;
    transform: translate(-50%, 100%);
    background-color: #fff;
    width: 22px;
    height: 18px;
    clip-path: polygon(0 0, 100% 0%, 50% 100%);
    box-shadow: 0 6px 20px rgb(217 223 227);
  }
}

/* インプットのフォームカウンター */
.form_counter {
text-align: right;
font-size: 12px;
}
/* アンカーリンク 文字色水色*/
.g-rink-blue{
  font-weight: bold; 
  color: #10A3FF;
  margin-right: 10px;
}
