@charset "utf-8";

/* ▼▼▼▼▼▼　入力画面　▼▼▼▼▼▼ */

/* ＝＝＝＝＝＝＝オープニングタイトル＝＝＝＝＝＝＝＝ */

.question_item {
    padding-top: 0;
}

.question_heading {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 3rem;
    font-weight: 500;
    text-align: center;
}

.question_heading::before,
.question_heading::after {
    content: '';
    width: 3px;
    height: 40px;
    background-color: #5D4848;
}

.question_heading::before {
    margin-right: 30px;
    transform: rotate(-35deg)
}

.question_heading::after {
    margin-left: 30px;
    transform: rotate(35deg)
}


.op_tit {
    width: 55%;
    font-weight: 500;
    font-size: 2.6rem;
    text-align: center;
    margin: 0 auto 10px;
}

@media screen and (max-width: 1300px) {
    .question_item {
        padding-top: 0;
    }

    .question_heading {
        font-size: 2.8rem;
    }

    .question_heading::before,
    .question_heading::after {
        height: 35px;
    }

    .question_heading::before {
        margin-right: 25px;
    }

    .question_heading::after {
        margin-left: 25px;
    }

    .op_tit {
        width: 50%;
        font-size: 2.4rem;
    }
}


@media screen and (max-width: 1024px) {
    .question_item {}

    .op_tit {
        width: 52%;
        font-size: 2.4rem;
    }
}

@media screen and (max-width: 768px) {

    .question_heading {
        font-size: 2.6rem;
    }

    .op_tit {
        width: 56%;
        font-size: 2.2rem;
    }
}

@media screen and (max-width: 640px) {
    .question_heading {
        font-size: 2.4rem;
    }

    .question_heading::before,
    .question_heading::after {
        width: 2px;
        height: 25px;
    }

    .question_heading::before {
        margin-right: 20px;
    }

    .question_heading::after {
        margin-left: 20px;
    }

    .op_tit {
        width: 75%;
        font-size: 2rem;
    }
}

@media screen and (max-width: 430px) {

    .op_tit {
        width: 85%;
        font-size: 2rem;
    }
}


@media screen and (max-width: 375px) {
    .op_tit {
        width: 90%;
        font-size: 2rem;
    }
}

@media screen and (max-width: 320px) {
    .op_tit {
        width: 100%;
        font-size: 2rem;
    }
}

/* ＝＝＝＝＝＝＝question＝＝＝＝＝＝＝＝ */

/*アニメーション*/
.question_item.fadin {
    display: block;
    animation: fadein 0.8s ease 0s 1 normal;
}

@keyframes fadein {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }

    100% {
        opacity: 1;
    }
}

.question_tit {
    text-align: center;
    margin: 0 auto 60px;
    max-width: 420px;
}

.question_tit .tit {
    font-family: "Arial", "メイリオ";
    font-size: 5rem;
    font-weight: 600;
    line-height: 1;
}

.question_tit .tit span {
    font-size: 4.4rem;
    font-weight: 600;
}

.question_txt {
    font-size: 2.8rem;
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 15px;
}

@media screen and (max-width: 1300px) {
    .question_tit {
        margin: 0 auto 35px;
        max-width: 320px;
    }

    .question_tit .tit {
        font-size: 4.5rem;
        line-height: 0.7;
    }

    .question_tit .tit span {
        font-size: 3.9rem;
    }

    .question_txt {
        font-size: 2.8rem;
    }
}

@media screen and (max-width: 640px) {
    .question_tit {
        margin: 0 auto 30px;
    }

    .question_tit .tit {
        font-size: 4rem;
    }

    .question_tit .tit span {
        font-size: 3.4rem;
    }

    .question_txt {
        font-size: 2.2rem;
        text-align: left;
        margin-bottom: 20px;
    }
}

@media screen and (max-width: 430px) {
    .question_txt {
        font-size: 2.2rem;
        line-height: 1.4;
    }
}

@media screen and (max-width: 375px) {
    .question_tit {
        margin: 0 auto 10px;
    }

    .question_txt {
        margin: 0 auto 10px;
    }
}

@media screen and (max-width: 320px) {
    .question_txt {
        font-size: 2.2rem;
    }
}

/* ＝＝＝＝＝＝＝プログレスバー＝＝＝＝＝＝＝＝ */

.progress {
    height: 8px;
    background-color: #DBDBD5;
    border: none;
    border-radius: 20px;
    -webkit-appearance: none;
    appearance: none;
}

/* Chrome */
.progress::-webkit-progress-bar,
.progress::-webkit-progress-value {
    border-radius: 20px;
}

.progress::-webkit-progress-bar {
    background-color: #DBDBD5;
}

.progress::-webkit-progress-value {
    background-color: #F5961A;
}

/* Firefox */
.progress::-moz-progress-bar {
    background-color: #F5961A;
}

/* Edge */
.progress::-ms-fill {
    background-color: #F5961A;
}

@media screen and (max-width: 1300px) {
    .progress {
        height: 6px;
    }
}

@media screen and (max-width: 640px) {
    .progress {
        height: 6px;
    }
}

/* ＝＝＝＝＝＝＝question_btn＝＝＝＝＝＝＝＝ */

.question_btn {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 40px;
}

.question_btn li {
    width: calc(50% - 2%);
    max-width: 270px;
    height: 247px;
    margin-right: 40px;
}

.question_btn li:last-of-type {
    margin-right: 10px;
}

.question_btn input[type="radio"] {
    display: none;
}

.question_btn label {
    display: flex;
    justify-content: center;
    width: 100%;
    height: 100%;
    background-color: #FAFAFA;
    padding: 20px 10px;
    font-size: 4rem;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    border-radius: 30px;
    border: 3px solid #5D4848;
    cursor: pointer;
    background-repeat: no-repeat;
    background-size: 60%;
    background-position: bottom 30px center;
    box-shadow: 8px 8px 0 0 #5D4848;
}

.question_btn label:hover {
    background-color: #f0e60f;
}

.question_btn input:checked+label {
    background-color: #ebc61d;
    border: 3px solid #5D4848;
}

.bg_q1yes {
    background-image: url(../images/inquiry/bg_q1yes.svg);
}

.bg_q1no {
    background-image: url(../images/inquiry/bg_q1no.svg);
}

.bg_q2yes {
    background-image: url(../images/inquiry/bg_q2yes.svg);
}

.bg_q2no {
    background-image: url(../images/inquiry/bg_q2no.svg);
}

.bg_q3yes {
    background-image: url(../images/inquiry/bg_q3yes.svg);
}

.bg_q3no {
    background-image: url(../images/inquiry/bg_q3no.svg);
}

@media screen and (max-width: 1300px) {
    .question_btn li {
        max-width: 230px;
        height: 207px;
        margin-right: 30px;
    }

    .question_btn label {
        font-size: 3.3rem;
        background-size: 55%;
        background-position: bottom 30px center;
    }

}

@media screen and (max-width: 640px) {

    .question_btn {
        margin-bottom: 50px;
    }

    .question_btn li {
        max-width: 250px;
        height: 200px;
        margin-right: 20px;
    }

    .question_btn label {
        padding: 15px 15px;
        font-size: 2.8rem;
        background-size: 65%;
        background-position: bottom 15px center;
        box-shadow: 6px 6px 0 0 #5D4848;
    }

    .question_btn label:hover {
        background-color: transparent;
    }
}

@media screen and (max-width: 430px) {
    .question_btn li:last-of-type {
        margin-right: 5px;
    }

    .question_btn li {
        height: 170px;
        margin-right: 15px;
    }

    .question_btn label {
        padding: 10px 15px;
        font-size: 2.3rem;
    }
}

@media screen and (max-width: 390px) {
    .question_btn label {
        padding: 20px 15px;
        font-size: 2.2rem;
    }
}

@media screen and (max-width: 375px) {
    .question_btn li {
        height: 155px;
    }

    .question_btn label {
        padding: 20px 10x;
        font-size: 2rem;
    }
}

@media screen and (max-width: 320px) {
    .question_btn li {
        height: 135px;
    }

    .question_btn label {
        padding: 20px 5x;
        font-size: 1.7rem;
    }
}

/* ＝＝＝＝＝＝＝メッセージ＝＝＝＝＝＝＝＝ */

.character_msg {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 780px;
    margin: 0 auto 50px;
}

.character_msg_img {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 120px;
    width: 100%;
    margin-right: 30px;
}


.character_msg_bubble {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 15px;
    background-color: #FFF;
    border: 2px solid #ccc;
    width: 65%;
    border-radius: 20px;
    box-shadow: 6px 6px #ccc;
}

.character_msg_bubble:before {
    content: "";
    position: absolute;
    display: block;
    width: 0;
    height: 0;
    left: -15px;
    top: 26%;
    border-right: 15px solid #ccc;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
}

.character_msg_bubble:after {
    content: '';
    position: absolute;
    display: block;
    width: 0;
    height: 0;
    left: -12px;
    top: 26%;
    border-right: 15px solid #FFF;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
}

.character_msg_bubble p {
    font-size: 2.8rem;
    text-align: left;
    line-height: 1.4;
    letter-spacing: .2rem;
}

@media screen and (max-width: 1300px) {
    .character_msg_bubble p {
        font-size: 2.6rem;
    }
}

@media screen and (max-width: 960px) {
    .character_msg_bubble p {
        font-size: 2.6rem;
    }
}

@media screen and (max-width: 640px) {
    .character_msg_bubble {
        box-shadow: 3px 5px #ccc;
    }

    .character_msg_bubble p {
        font-size: 2rem;
    }

    .character_msg_bubble p br {
        display: none;
    }
}

@media screen and (max-width: 430px) {
    .character_msg {
        margin: 0 auto 20px;
    }

    .character_msg_img {
        max-width: 100px;
        margin-right: 10px;
    }

    .character_msg_bubble {
        padding: 15px;
        width: 100%;
    }

    .character_msg_bubble p {
        font-size: 1.6rem;
        line-height: 1.5;
    }
}

@media screen and (max-width: 375px) {
    .character_msg_img {
        max-width: 80px;
    }

    .character_msg_bubble:before {
        left: -13px;
        border-right: 13px solid #ccc;
        border-top: 13px solid transparent;
        border-bottom: 13px solid transparent;
    }

    .character_msg_bubble:after {
        left: -10px;
        border-right: 13px solid #FFF;
        border-top: 13px solid transparent;
        border-bottom: 13px solid transparent;
    }

    .character_msg_bubble p {
        font-size: 1.6rem;
    }
}

@media screen and (max-width: 320px) {
    .character_msg_bubble p {
        font-size: 1.3rem;
    }
}

/* ＝＝＝＝＝＝＝入力補足文言＝＝＝＝＝＝＝＝ */

.input_supp_txt {
    font-size: 2.4rem;
    font-weight: 700;
    text-align: center;
    margin: 0 auto 20px;
}

@media screen and (max-width: 1300px) {
    .input_supp_txt {
        font-size: 2.2rem;
    }
}

@media screen and (max-width: 960px) {
    .input_supp_txt {
        font-size: 2.2rem;
    }
}

@media screen and (max-width: 640px) {
    .input_supp_txt {
        font-size: 2rem;
    }
}

@media screen and (max-width: 430px) {
    .input_supp_txt {
        font-size: 1.6rem;
        margin: 0 auto 10px;
    }
}

@media screen and (max-width: 375px) {
    .input_supp_txt {
        font-size: 1.6rem;
    }
}

@media screen and (max-width: 320px) {
    .input_supp_txt {
        font-size: 1.2rem;
    }
}

/* ＝＝＝＝＝＝＝面積の目安 ポップアップ＝＝＝＝＝＝＝＝ */
.reference_item {
    text-align: center;
    margin: 0 auto 20px;
}

.reference {
    font-size: 1.8rem;
    color: #0F8FF1;
    text-decoration: underline;
    cursor: pointer;
}

.reference:before {
    content: "";
    display: inline-block;
    width: 30px;
    height: 30px;
    background: url(../images/inquiry/icon_reference.svg) no-repeat;
    background-size: contain;
    margin-right: 3px;
    vertical-align: middle;
}

.popup_wrap input {
    display: none;
}

.popup_overlay {
    display: flex;
    justify-content: center;
    overflow: auto;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    width: 100%;
    height: 100%;
    background: #3c2b238f;
    opacity: 0;
    transition: opacity 0.5s, transform 0s 0.5s;
    transform: scale(0);
}

.popup_trigger {
    position: absolute;
    width: 100%;
    height: 100%;
}

.popup_content {
    position: relative;
    align-self: center;
    width: 80%;
    max-width: 500px;
    box-sizing: border-box;
    background: #fff;
    line-height: 1.4em;
    transition: 0.5s;
    border-radius: 12px;
    box-shadow: 0 0 5px rgba(94, 94, 94, 0.7);
}

.popup_content p {
    padding: 20px 10px 15px 10px;
    text-align: center;
    font-weight: 600;
    font-size: 2.2rem;
}

table.tabular {
    border-collapse: collapse !important;
    text-align: center;
    font-size: 1.6rem !important;
    font-weight: 500;
    border-top: #c8c8c8 1px solid;
    border-left: #c8c8c8 1px solid;
    border-right: #c8c8c8 1px solid;
}

.tabular th.about_sqm,
.tabular td.about_roomsize {
    display: inline-block;
    width: 50%;
    padding: 10px;
    border-right: #FFF 1px solid;
    border-bottom: #c8c8c8 1px solid;
    border-left: none;
    text-align: center;
    background-color: #fff;
    line-height: 1.2 !important;
    font-size: 1.8rem !important;
    font-weight: 400 !important;
}

.tabular th.about_sqm {

    background-color: #5098D6;
    color: #FFF;
}

.close_btn {
    position: absolute;
    top: 14px;
    right: 16px;
    font-size: 30px;
    cursor: pointer;
    color: #5D4848;
}

.popup_wrap input:checked~.popup_overlay {
    opacity: 1;
    transform: scale(1);
    transition: opacity 0.5s;
}

@media screen and (max-width: 640px) {
    .reference_item {
        margin: 0 auto 20px;
    }

    .reference {
        font-size: 1.5rem;
        line-height: 0.8;
    }

    .reference:before {
        width: 20px;
        height: 20px;
    }
}


/* ＝＝＝＝＝＝＝フォーム枠＝＝＝＝＝＝＝＝ */

.bold {
    font-weight: 900;
}

.form_table {
    width: 100%;
    margin-bottom: 50px;
}

.form_table table,
.form_table td {
    border-collapse: collapse;
    width: 100%;
}

.form_table th {
    display: block;
    width: 100%;
    text-align: left;
    border-bottom: 3px solid #928F8D;
    background-color: #F4F4F4;
    padding: 15px 20px;
    vertical-align: middle;
    font-weight: 500;
    position: relative;
    font-size: 2rem;
    line-height: 1.5em;
    word-break: break-all;
}

.form_table th span {
    position: absolute;
    right: 15px;
    background-color: #EF4848;
    color: #fff;
    border-radius: 10px;
    font-size: 1.4rem;
    padding: 0px 5px;
}

.form_table th span.ok {
    background-color: #0F8FF1 !important;
    padding: 0px 9px;
}

.form_table th span.anycolor {
    background-color: #3475b2 !important;
}

.form_table td {
    display: block;
    width: 100%;
    text-align: left;
    padding: 30px 15px 15px;
    vertical-align: middle;
    word-break: break-all;
}

.form_table span.example {
color: #5D4848;
background-color: transparent;
}


@media screen and (max-width: 640px) {

    .form_table {
        margin-bottom: 20px;
    }

    .form_table th {
        padding: 10px 10px;
        font-size: 1.5rem;
    }

    .form_table td {
        padding: 20px 15px 10px;
    }
}

/* ＝＝＝＝＝＝＝選択ボタン＝＝＝＝＝＝＝＝ */

.radio_check {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.radio_check li {
    width: 23%;
    margin-bottom: 15px;
    white-space: nowrap;
}

.radio_check:before {
    content: "";
    display: block;
    width: 23%;
    order: 1;
}

.radio_check:after {
    content: "";
    display: block;
    width: 23%;
}

.radio_check li.line2 {
    width: 48%;
    white-space: nowrap;
}

.radio_check input {
    display: none;
}

.radio_check label {
    display: flex !important;
    justify-content: center;
    align-items: center;
    width: 100% !important;
    height: 70px;
    background: #fff;
    border-top: 1px solid #928F8D;
    border-left: 1px solid #928F8D;
    border-right: 1px solid #928F8D;
    border-bottom: 2px solid #928F8D;
    padding: 20px 15px !important;
    font-size: 1.8rem !important;
    line-height: 1.2;
    text-align: center;
    text-decoration: none;
    border-radius: 10px;
    cursor: pointer;
}

.radio_check label:hover {
    background-color: #f0e60f;
}

.radio_check label span {
    display: contents;
    font-size: 1.3rem;
}

.radio_check input:checked+label {
    background: #ebc61d;
    border-top: 2px solid #5D4848;
    border-left: 1px solid #5D4848;
    border-right: 1px solid #5D4848;
    border-bottom: 1px solid #5D4848;
}

@media screen and (max-width: 1400px) {
    .radio_check label {
        font-size: 1.8rem !important;
    }
}

@media screen and (max-width: 1200px) {
    .radio_check li {
        width: 48%;
        margin-bottom: 13px
    }

    .radio_check.areabtn:after {
        content: "";
        display: block;
        width: 31%;
    }

    .areabtn li {
        width: calc(34% - 3%) !important;
        margin-bottom: 3% !important;
    }

    .areabtn li:nth-of-type(3n) {
        margin-right: 0 !important;
    }
}

@media screen and (max-width: 960px) {
    .radio_check label:hover {
        background-color: transparent;
    }
}

@media screen and (max-width: 640px) {
    .radio_check label {
        font-size: 1.6rem !important;
    }
}

.form-section {
    display: none;
}

.form-section:first-of-type {
    display: block;
}

/* ＝＝＝＝＝＝＝入力＝＝＝＝＝＝＝＝ */

.inquiry_fillin {
    margin-bottom: 15px;
}

/*input枠*/
input[type=text],
input[type=email],
input[type=tel] {
    width: 100%;
    padding: 10px;
    border-radius: 20px;
    border: 1px #928F8D solid;
    font-size: 2rem;
}

input[type="text"]:focus,
input[type=email]:focus,
input[type=password]:focus,
input[type=tel]:focus,
input[type=url]:focus,
input[type=number]:focus {
    outline: 0;
}

input[type=button],
button[type=submit],
button[type=button] {
    outline: 0;
}

/*スピンボタン消す*/
input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type="number"] {
    -moz-appearance: textfield;
}


/*select枠*/
select {
    padding: 10px;
    margin-bottom: 10px;
    border-radius: 20px;
    border: 1px #928F8D solid;
    font-size: 2rem;
    width: 100%;
    -webkit-appearance: none;
    background-color: #fff;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url(../images/inquiry/bg_select.png);
    background-size: 12px;
    background-repeat: no-repeat;
    background-position: center right 10px;
    -webkit-text-fill-color: #3c2b23;
    cursor: pointer;
}

select:focus {
    outline: 0;
}

select#inquiry_prefecture {
    width: 100% !important;
}

select#inquiry_city {
    width: 100% !important;
}

input#inquiry_address {
    width: 100% !important;
}

.prefectures_list {
    margin-bottom: 20px;
}

.add_title {
    font-size: 2rem;
    padding-left: 10px;
    padding-bottom: 5px;
    border-bottom: 1px solid #928F8D;
    margin-bottom: 15px;
}

.add_title span {
    display: inline-block;
    vertical-align: middle;
    background-color: #EF4848;
    color: #fff;
    border-radius: 10px;
    font-size: 1.4rem;
    padding: 5px 5px;
    margin-left: 10px;
    margin-bottom: 5px;
}

.add_title a {
  color: #f7942b;
  text-decoration: underline;
}

.add_title span.ok {
    background-color: #0F8FF1 !important;
    padding: 5px 9px;
}

.add_title span.any {
    display: inline-block;
    vertical-align: middle;
    background-color: #12C152;
    color: #fff;
    border-radius: 10px;
    font-size: 1.4rem;
    padding: 5px 5px;
    margin-left: 10px;
    margin-bottom: 5px;
}

/*郵便番号*/
.zip {
    width: 30% !important;
  }

/*姓名*/
.input_name {
    display: flex;
}

.input_name input{
    display: flex;
    margin-right: 15px;
}

.input_name input:last-of-type{
    margin-right: 0;
}

@media screen and (max-width: 640px) {

    .inquiry_fillin {
        margin-bottom: 10px;
    }

    input[type=text],
    input[type=email],
    input[type=tel] {
        font-size: 1.6rem;
    }

    select {
        font-size: 1.6rem;
    }

    select#inquiry_prefecture {
        width: 100% !important;
    }

    select#inquiry_city {
        width: 100% !important;
    }

    input#inquiry_address {
        width: 100% !important;
    }

    .add_title {
        font-size: 1.6rem;
    }
}

/* ＝＝＝＝＝＝＝ボタン＝＝＝＝＝＝＝＝ */

.btn {
    position: relative;
    text-align: center;
    margin: 0 auto 50px;
}

button.confirm,
button.submit {
    cursor: pointer;
    color: #FFF;
    box-sizing: border-box;
    width: 100%;
    max-width: 500px;
    padding: 10px;
    background: #5bb454;
    border: 1px solid #5bb454;
    border-radius: 20px;
    box-shadow: 0px 8px 0px 0px #488943;
    text-decoration: none;
}

button.submit {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}

/*ボタン光る*/

button.submit:after {
    animation: 2s 0s shine linear infinite;
    background: linear-gradient(to right,rgba(255,255,255,0) 25%,rgba(255,255,255,.6) 50%,rgba(255,255,255,0) 75%);
    content: '';
    height: 100%;
    left: -100%;
    position: absolute;
    top: 0;
    transform: skewX(-15deg);
    width: 100%
}

@keyframes shine {
    20% {
        left: 100%
    }

    100% {
        left: 100%
    }
}

/*ボタン光るここまで*/

button.submit .icon_free {
    background-color: #fff;
    padding: 5px 10px;
    border-radius: 20px;
    margin-right: 3px;
    font-size:2.5rem;
    line-height:1.4;
    color: #ee474d;
    font-weight: 700;
}

button.confirm .button,
button.submit .button {
    display: block;
    font-weight: 600;
    line-height: 1.4;
    padding: 20px 10px;
}

button.confirm.btn_inactive{
    pointer-events: none !important;
    color: #e2e2e2 !important;
    background: #f5f5f5 !important;
    border: 1px solid #f5f5f5 !important;
    box-shadow: none !important;
}

button.confirm .button {
    font-size: 4rem;
}

button.submit .button {
    font-size: 4rem;
}

#next1 {
    display: none;
}

button.confirm_next {
    cursor: pointer;
    color: #FFF;
    width: 100%;
    max-width: 340px;
    padding: 10px;
    margin:0 0 10px;
    font-size: 2.4rem;
    background: #f87822;
    border: 1px solid #f87822;
    border-radius: 10px;
    box-shadow: 0px 3px 0px 0px #c55d24;
    text-decoration: none;
}

.agreetxt {
    display: block;
    font-size: 1.8rem;
    font-weight: 600;
}

.button br.break {
    display: none;
}

button.back {
    cursor: pointer;
    color: #333;
    box-sizing: border-box;
    width: 100%;
    max-width: 200px;
    padding: 0 10px;
    background-color: #fafafa;
    border-bottom: 4px solid #ccc;
    border-left: 1px solid #ccc;
    border-right: 1px solid #ccc;
    border-top: 1px solid #ccc;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    text-decoration: none;
}

button.back .button {
    display: block;
    font-size: 1.8rem;
    font-weight: bold;
    line-height: 100%;
    padding: 15px 15px 15px;
}

/*スマホ用*/
@media screen and (max-width: 640px) {
    .btn {
        margin: 0 auto 50px;
    }

    button.back {
        width: 100%;
        max-width: 180px;
    }

    button.back .button {
        font-size: 1.4rem;
        padding: 15px 15px 15px;
    }
}

@media screen and (max-width: 500px) {
    button.confirm .button {
        font-size: 3.5rem;
        padding: 15px 10px;
    }

    button.submit .button {
        font-size: 2.6rem;
        padding: 15px 10px;
    }

    button.submit .icon_free {
        font-size:2rem;
    }

    .agreetxt {
        font-size: 1.4rem;
    }

}

@media screen and (max-width: 375px) {
    button.confirm .button {
        font-size: 3.3rem;
    }

    button.submit .button {
        font-size: 2.4rem;
    }

    button.submit .icon_free {
        font-size:1.8rem;
    }
}

@media screen and (max-width: 320px) {
    button.confirm .button {
        font-size: 2rem;
        padding: 10px;
    }

    button.submit .button {
        font-size: 1.8rem;
        padding: 10px;
    }

    button.submit .icon_free {
        font-size:1.6rem;
    }
}

/* ＝＝＝＝＝＝＝プレゼント吹き出し＝＝＝＝＝＝＝＝ */
.wrap_submit_box {
    position: relative;
}

.submit_box {
    display: flex;
    justify-content: center;
    margin: 20px auto -15px;
}

.submit_box img {
    width: 100%;
    max-width: 440px;
}

@keyframes updown {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

.ani_updown {
    animation: 3s updown infinite;
}

@media screen and (max-width: 640px) {
    .submit_box {
        margin: 20px auto -15px;
    }

    .submit_box img {
        max-width: 293px;
    }
}


/* ＝＝＝＝＝＝＝記入残カウント＝＝＝＝＝＝＝＝ */
.form_count {
    position: fixed;
    font-size: 2rem;
    padding: 12px 20px;
    margin-left: -20px;
    background-color: #5098D6;
    color: #fff;
    font-weight: 700;
    border-radius: 0 20px 20px 0;
    bottom: 30px;
    z-index: 9;
}

.form_count[aria-expanded=false] {
    bottom: -200px;
    transition: .5s;
}

.form_count[aria-expanded=true] {
    transition: .5s;
}

.form_count_item {
    display: flex;
    padding-left: 100px;
    position: relative;
}

.count_character {
    position: absolute;
    left: -10px;
    top: -10px;
    max-width: 100px;
    width: 30%;
}

.count_character img {
    width: 100%;
    max-width: 200px;
}

.form_count .form_count_item span {
    font-size: 3rem;
    font-weight: 800;
    color: #D3F54B;
}

@media screen and (max-width: 1300px) {
    .form_count {
        bottom: 20px;
    }
}

@media screen and (max-width: 440px) {
    .form_count {
        font-size: 1.4rem;
        padding: 8px 20px;
        bottom: 20px;
    }
}

/* ＝＝＝＝＝＝＝記入残カウント(改)＝＝＝＝＝＝＝＝ */
#scrollButton {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: none;
    padding: 10px;
    background-color: #007bff;
    color: white;
    border: none;
    cursor: pointer;
}

/* ＝＝＝＝＝＝＝確認画面＝＝＝＝＝＝＝＝ */

/*キャラクター吹き出し*/

.confirm_character_msg {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    margin: 0 auto 40px;
    background-color: #FFF;
    border: 2px solid #ccc;
    width: 100%;
    max-width: 600px;
    border-radius: 20px;
    box-shadow: 6px 6px #ccc;
}

.confirm_character_msg .img {
    position: absolute;
    width: 100%;
    max-width: 120px;
    left: 15px;
    bottom: 10px;
}

.confirm_character_msg .txt p {
    font-size: 2.8rem;
    text-align: left;
    line-height: 1.4;
    letter-spacing: .2rem;
    margin-left: 100px;
}

@media screen and (max-width: 1300px) {
    .confirm_character_msg .txt p {
        font-size: 2.6rem;
    }
}

@media screen and (max-width: 960px) {
    .confirm_character_msg .img {
        left: 25px;
        bottom: 10px;
    }

    .confirm_character_msg .txt p {
        font-size: 2.6rem;
        margin-left: 130px;
    }

    .confirm_character_msg .txt p br {
        display: none;
    }
}

@media screen and (max-width: 640px) {
    .confirm_character_msg {
        box-shadow: 3px 5px #ccc;
    }

    .confirm_character_msg .img {
        left: 5px;
        bottom: 10px;
    }

    .confirm_character_msg .txt p {
        font-size: 2rem;
    }

    .confirm_character_msg .txt p br {
        display: none;
    }
}

@media screen and (max-width: 430px) {
    .confirm_character_msg {
        padding: 10px;
        margin: 0 auto 20px;
    }

    .confirm_character_msg .img {
        max-width: 80px;
        left: 15px;
        bottom: 0;
    }

    .confirm_character_msg .txt p {
        font-size: 1.6rem;
        line-height: 1.5;
        margin-left: 100px;
    }
}

@media screen and (max-width: 390px) {
    .confirm_character_msg .img {
        bottom: 10px;
    }
}

@media screen and (max-width: 375px) {
    .confirm_character_msg .txt p {
        font-size: 1.6rem;
    }
}

@media screen and (max-width: 320px) {
    .confirm_character_msg .txt p {
        font-size: 1.3rem;
    }
}

/*キャラクター吹き出し_タウンライフ事務局用（アニメーションしない用）*/

.confirm_character_msg2 {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    margin: 0 auto 25px;
    background-color: #FFF;
    border: 2px solid #ccc;
    width: 100%;
    max-width: 600px;
    border-radius: 20px;
    box-shadow: 6px 6px #ccc;
}

.confirm_character_msg2 .img {
    position: absolute;
    width: 100%;
    max-width: 120px;
    left: 15px;
    bottom: 10px;
}

.confirm_character_msg2 .txt p {
    font-size: 2.8rem;
    text-align: left;
    line-height: 1.4;
    letter-spacing: .2rem;
    margin-left: 100px;
}

@media screen and (max-width: 1300px) {
    .confirm_character_msg2 .txt p {
        font-size: 2.6rem;
    }
}

@media screen and (max-width: 960px) {
    .confirm_character_msg2 .img {
        left: 25px;
        bottom: 10px;
    }

    .confirm_character_msg2 .txt p {
        font-size: 2.6rem;
        margin-left: 130px;
    }

    .confirm_character_msg2 .txt p br {
        display: none;
    }
}

@media screen and (max-width: 640px) {
    .confirm_character_msg2 {
        box-shadow: 3px 5px #ccc;
    }

    .confirm_character_msg2 .img {
        left: 5px;
        bottom: 10px;
    }

    .confirm_character_msg2 .txt p {
        font-size: 2rem;
    }

    .confirm_character_msg2 .txt p br {
        display: none;
    }
}

@media screen and (max-width: 430px) {
    .confirm_character_msg2 {
        padding: 10px;
        margin: 0 auto 20px;
    }

    .confirm_character_msg2 .img {
        max-width: 80px;
        left: 15px;
        bottom: 0;
    }

    .confirm_character_msg2 .txt p {
        font-size: 1.6rem;
        line-height: 1.5;
        margin-left: 100px;
    }
}

@media screen and (max-width: 375px) {
    .confirm_character_msg2 .txt p {
        font-size: 1.6rem;
    }
}

@media screen and (max-width: 320px) {
    .confirm_character_msg2 .txt p {
        font-size: 1.3rem;
    }
}

/*矢印*/

.arrow {
    text-align: center;
    margin: 0 auto 10px;
    animation: yura 2.5s linear infinite;
}

.arrow img {
    max-width: 60px;
}

/*矢印　タウンライフ事務局用*/

.arrow2 {
    text-align: center;
    margin: 0 auto 10px;
    animation: yura 2.5s linear infinite;
}

.arrow2 img {
    max-width: 60px;
}

@keyframes yura {

    0%,
    100% {
        transform: translateY(-20px);
    }

    50% {
        transform: translateY(20px);
    }
}

@media screen and (max-width: 430px) {
    .arrow {
        text-align: center;
        margin: 0 auto 0;
    }

    .arrow img {
        max-width: 60px;
    }

    /*矢印　タウンライフ事務局用*/

    .arrow2 {
        text-align: center;
        margin: 0 auto 0;
    }

    .arrow2 img {
        max-width: 60px;
    }

    @keyframes yura {

        0%,
        100% {
            transform: translateY(-10px);
        }

        50% {
            transform: translateY(20px);
        }
    }
}

/*確認表*/

.confirm_table td {
    padding: 15px 15px 15px !important;
    font-size: 1.8rem !important;
}

@media screen and (max-width: 640px) {
    .confirm_table td {
        font-size: 1.6rem !important;
    }
}

/*プラン選択*/
.wrap_plan_content {
    max-width: 600px;
    margin: 0 auto 30px;
}

.plan_contents {
    border-top: 1px solid #ccc;
    border-right: 1px solid #ccc;
    border-left: 1px solid #ccc;
}

.plan_contents:last-of-type {
    border-bottom: 1px solid #ccc;
}

.plan_contents_item {
    display: flex;
    justify-content: space-between;
    margin: 0;
    padding: 10px;
    line-height: 45px;
    background-color: #39c0e7;
    transition: all .2s ease-in-out;
}

.wrap_more-plan_content .plan_contents_item {
    background-color: #F4F4F4;
}

.plan_contents_item input.plan_check {
    display: none;
}

.plan_contents_item label {
    display: flex;
    align-items: center;
    position: relative;
    cursor: pointer;
    font-size: 2.4rem;
    font-weight: 500;
    text-align: left;
    padding-left: 40px;
    color: #fff;
}

.wrap_more-plan_content .plan_contents_item label {
    color: #5D4848;
}

.plan_contents_item label::before {
    background: #fff;
    border: 1px solid #ccc;
    content: '';
    display: block;
    width: 30px;
    height: 30px;
    left: 0;
    position: absolute;
}

.plan_contents_item label::after {
    border-right: 3px solid #8088F8;
    border-bottom: 3px solid #8088F8;
    content: '';
    display: block;
    width: 5px;
    height: 15px;
    left: 14px;
    margin-top: -10px;
    opacity: 0;
    position: absolute;
    top: 50%;
    transform: rotate(45deg);
}

input.plan_check[type=checkbox]:checked+.plan-name_check::after {
    opacity: 1;
}

.arrow_area {
    width: 45px;
    position: relative;
    margin: 0;
    color: #fff;
    cursor: pointer;
}

.wrap_more-plan_content .arrow_area {
    color: #5D4848;
}

.arrow_area:after {
    content: "\f107";
    font-size: 2.6rem;
    font-family: "Font Awesome 5 Free", "Font Awesome 5 Brands";
    font-weight: 900;
    position: absolute;
    top: 0;
    right: 0;
    width: 45px;
    height: 45px;
    transition: all .2s ease-in-out;
    display: block;
    text-align: center;
}

.arrow_area.open::after {
    content: "\f106";
}

@media screen and (max-width: 640px) {
    .plan_contents_item {
        padding: 10px;
    }

    .plan_contents_item label {
        font-size: 2rem;
        line-height: 1.5;
    }

    .arrow_area:after {
        top: -5px;
    }
}

/*会社選択*/

.shop_content {}

.shop_contents_item {
    display: flex;
    justify-content: space-between;
    position: relative;
    padding: 15px 10px;
    border-top: 1px solid #CCC;
    background-color: #fff;
    font-size: 1.8rem;
}

.shop_contents_item:last-of-type {}

input.shop_check {
    display: none;
}

.shop_contents_item label {
    display: flex;
    align-items: center;
    position: relative;
    width: 80%;
    cursor: pointer;
    font-size: 1.6rem;
    text-align: left;
    padding-left: 40px;
}

.shop_contents_item label::before {
    background: #fff;
    border: 1px solid #ccc;
    content: '';
    display: block;
    width: 30px;
    height: 30px;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    position: absolute;
}

.shop_contents_item label::after {
    border-right: 3px solid #EF4848;
    border-bottom: 3px solid #EF4848;
    content: '';
    display: block;
    width: 5px;
    height: 15px;
    left: 14px;
    margin-top: -10px;
    opacity: 0;
    position: absolute;
    top: 50%;
    transform: rotate(45deg);
}

input.shop_check[type=checkbox]:checked+.shop-name_check::after {
    opacity: 1;
}

.shop_contents_item span {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    background-color: #74d2ec;
    color: #fff;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 1.6rem;
    cursor: pointer;
}

@media screen and (max-width: 640px) {
    .shop_contents_item label {
        font-size: 1.4rem;
        line-height: 1.5;
    }
}

/*さらにこんな方法もご提案可能*/
.wrap_more-plan_content {
    max-width: 600px;
    padding: 20px 20px 30px;
    text-align: center;
    margin: 0 auto 30px;
    border-radius: 20px;
    border: 3px solid #f5f5f5;
    background-color: #fafafa;
}

.more-plan_tit {
    font-size: 2.6rem;
    font-weight: 700;
    margin-bottom: 10px;
    text-align: center;
}

.more-plan_tit img {
    max-width: 64px;
    vertical-align: middle;
}

.all-check {
    margin-bottom: 15px;
}

.all-check {
    margin-bottom: 15px;
}

.all-check label {
    font-size: 2rem;
    cursor: pointer;
}

.all-check input[type="checkbox"] {
    position: relative;
    width: 20px;
    height: 20px;
    background-color: #fff;
    border: 1px solid #ccc;
    vertical-align: -5px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.all-check input[type="checkbox"]:checked:before {
    position: absolute;
    top: 2px;
    left: 7px;
    transform: rotate(50deg);
    width: 5px;
    height: 10px;
    border-right: 2px solid #000;
    border-bottom: 2px solid #000;
    content: '';
}

@media screen and (max-width: 570px) {
    .more-plan_tit {
        font-size: 2.2rem;
    }

    .more-plan_tit img {
        max-width: 44px;
    }
}

@media screen and (max-width: 430px) {
    .wrap_more-plan_content {
        padding: 10px 10px 15px;
        margin-bottom: 15px;
    }

    .more-plan_tit {
        font-size: 1.8rem;
    }

    .more-plan_tit img {
        max-width: 34px;
    }

    .all-check label {
        font-size: 1.6rem;
    }

    .all-check input[type="checkbox"] {
        width: 15px;
        height: 15px;
    }

    .all-check input[type="checkbox"]:checked:before {
        top: 0;
        left: 5px;
        width: 4px;
        height: 10px;
    }
}

@media screen and (max-width: 375px) {

    .more-plan_tit {
        font-size: 1.6rem;
    }
}

/*会社詳細20240611追加*/
#modal_close {
    font-size: 1.2rem;
    margin-top: 10px;
    cursor: pointer;
}

#modal-overlay {
    z-index: 4;
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%;
    background-color: rgba(0, 0, 0, 0.75);
}

#modal-shop {
    background-color: #fff;
    position: absolute;
    width: 80%;
    height: 90%;
    margin: 0;
    padding: 0 0 120px 0;
    z-index: 5;
    display: none;
    text-align: center;
}

#modal-shop iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

#modal-shop #modal_close_box {
    position: absolute;
    bottom: 60px;
    width: 100%;
}

#modal-shop #modal_close_box #modal_close {
    padding: 15px;
    margin: 0 auto;
    width: 15%;
    background-color: #000;
    color: #fff;
    opacity: 0.7;
    font-size: 14px;
    border-radius: 8px;
    cursor: pointer;
    position: initial;
}

@media screen and (max-width:640px) {
    #modal-shop {
        width: 100%;
        height: 100%;
    }

    #modal-shop #modal_close_box #modal_close {
        width: 22%;
    }
}

/*タウンライフ事務局*/

.wrap_adm {
    max-width: 600px;
    text-align: center;
    margin: 0 auto 10px;
    padding: 10px 20px;
    background-color: #F4F4F4;
    border-radius: 20px;
}

.adm_balloon {
    display: inline-block;
    position: relative;
    background: #47AF6D;
    padding: 10px 20px;
    border-radius: 40px;
}

.adm_balloon:after {
    content: "";
    position: absolute;
    right: 0;
    bottom: -10px;
    left: 0;
    transform: rotate(-140deg);
    width: 0px;
    height: 0px;
    margin: auto;
    border-style: solid;
    border-color: #47AF6D transparent transparent transparent;
    border-width: 20px 20px 0 20px;
}

.adm_balloon p {
    color: #fff;
    font-size: 3.6rem;
    font-weight: 600;
}

.adm_catch {
    margin: 10px auto 10px;
    line-height: 1.5;
    text-align: center;
    font-size: 2.8rem;
}

.adm_catch span {
    font-size: 2.8rem;
    font-weight: 700;
}

.adm_plan {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.adm_plan_item {
    display: flex;
    text-align: left;
    padding: 10px;
}

.adm_plan_item:nth-of-type(even) {
    margin-right: 0;
    content: "";
}

.adm_plan_item:nth-of-type(n+3) {
    margin-bottom: 0;
}


.icon_adm img {
    width: 40px;
    vertical-align: middle;
    margin-right: 10px;
}

.adm_plan_item .txt {
    font-size: 2rem;
    font-weight: 500;
}

@media screen and (max-width: 700px) {

    .adm_balloon p {
        font-size: 2.8rem;
    }

    .adm_catch {
        font-size: 2.6rem;
    }

    .adm_plan {
        justify-content: center;
    }

    .adm_catch span {
        font-size: 3rem;
    }

    .icon_adm img {
        width: 40px;
    }

    .adm_plan_item .txt {
        font-size: 2rem;
    }
}


@media screen and (max-width: 640px) {
    .wrap_adm {
        padding: 10px 20px;
    }

    .adm_balloon {
        margin-bottom: 10px;
    }

    .adm_balloon p {
        font-size: 3rem;
    }

    .adm_catch {
        margin: 10px auto 10px;
        font-size: 2.6rem;
    }

    .adm_catch span {
        font-size: 2.9rem;
    }

    .adm_plan_item {}

    .icon_adm img {
        width: 40px;
        margin-right: 5px;
    }

    .adm_plan_item .txt {
        font-size: 1.8rem;
    }
}

@media screen and (max-width: 500px) {
    .adm_balloon p {
        font-size: 2.8rem;
    }

    .adm_catch {
        font-size: 2.6rem;
    }

    .adm_catch span {
        font-size: 2.8rem;
    }

    .adm_plan_item {
        padding: 7px;
    }

    .icon_adm img {
        width: 40px;
        margin-right: 5px;
    }

    .adm_plan_item .txt {
        font-size: 1.8rem;
    }
}

@media screen and (max-width: 430px) {
    .adm_balloon p {
        font-size: 2.4rem;
    }

    .adm_catch {
        font-size: 2.2rem;
    }

    .adm_plan {
        justify-content: left;
    }

    .adm_catch span {
        font-size: 2.4rem;
    }

    .icon_adm img {
        width: 25px;
        margin-right: 5px;
    }

    .adm_plan_item .txt {
        font-size: 1.4rem;
    }
}

@media screen and (max-width: 360px) {
    .adm_balloon p {
        font-size: 2.2rem;
    }

    .adm_catch {
        font-size: 2rem;
    }

    .icon_adm img {
        width: 20px;
        margin-right: 5px;
    }

    .adm_plan_item .txt {
        font-size: 1.4rem;
    }
}


/*ご利用規約*/
.wrap_agreement {
    max-width: 600px;
    margin: 20px auto 50px;
    text-align: center;
}

.wrap_agreement .agreetxt {
    font-size: 2rem;
    text-align: left;
}

.agreement {
    overflow: auto;
    padding: 20px;
    width: auto;
    height: 10em;
    font-size: 1.2rem;
    border: solid 1px #ccc;
    margin-top: 10px;
}

.agreement p {
    margin-bottom: 15px;
    text-align: left;
}

.agreement p.terms_i {
    font-weight: bold;
    margin-top: 10px;
    margin-bottom: 5px;
}

.agreement ul li {
    margin: 5px 0 10px;
    text-align: left;
}

.agreement ul li ul li {
    margin: 0 0 5px;
    text-align: left;
}

/*タブレット用*/
@media screen and (min-width:641px) and (max-width:1024px) {
    .wrap_agreement .agreetxt {
        font-size: 1.6rem;
        text-align: center;
    }
}

/*スマホ用*/
@media screen and (max-width: 640px) {
    .wrap_agreement {
        margin-top: 10px;
        margin-bottom: 30px;
    }

    .agreement {
        padding: 15px;
        width: auto;
        height: 10em;
        font-size: 1.2rem;
        margin-top: 10px;
    }

    .wrap_agreement .agreetxt {
        font-size: 1.2rem;
    }
}

/* ＝＝＝＝＝＝＝確認画面追記202412＝＝＝＝＝＝＝＝ */
.wrap_supervises {
    margin: 0;
    padding: 30px 20px;
    background-color: #def4fa;
    position:relative;
}

.wrap_supervises:after{
	position: absolute;
	content: '';
	right: 0px;
	top: 0px;
	border-width: 0 25px 25px 0;
	border-style: solid;
	border-color: #3dc0e5 #fff  #3dc0e5;
	box-shadow: -1px 1px 1px rgb(0 0 0 / .15);
}

.wrap_supervises:before{
	position: absolute;
	border: 2px dashed #fff;
	content: '';
	display: block;
	top: 0px;
	bottom: 0px;
	left: 0px;
	right: 0px;
	margin:5px;
	z-index: -1;
	border-radius:3px;
}

.wrap_supervises p {
    font-size: 1.8rem;
    line-height: 1.8;
    font-weight: 500;
    text-align: left;
}

/*ポイント解説*/

.wrap_point {
    margin-bottom: 0;
}

.tit_explanation {
    text-align: center;
    margin: 20px auto 0;
}

.tit_explanation img{
    width: 100%;
    max-width: 600px;
}

.point_item {
    margin-top: 0;
}

h2.tit_point {
    position: relative;
    background: #3dc0e5;
    line-height: 1.4;
    padding: 0.4em 0.5em;
    margin: 0 0 0.5em;
    color: #fff;
    font-weight: 600;
}

.txt_point {
    font-size: 1.8rem;
    line-height: 1.8;
    font-weight: 400;
    text-align: left;
    padding: 0 10px;
    margin-bottom: 20px;
}

.yellow_line{
    color: #5e79ae;
    font-weight: 600;
}

.txt_point:last-of-type{
    margin-bottom: 40px;
}

.one_point {
    position: relative;
    background-color: #E0EFF3;
    border-radius: 20px;
    padding: 50px 15px 15px;
    margin: 0 20px 20px;
}

.tit_one_point {
    position: absolute;
    top: -8px;
    left: 10px;
    width: 100%;
    max-width: 320px;
}
 
 .tit_one_point img{
    width: 100%;
    max-width: 320px;
 }

.one_point_character {
    position: absolute;
    width: 100px;
    top: -30px;
    right: 20px;
}

.one_point_character.character_sell {
    width: 130px !important;
}

.one_point .txt_one_point {
    font-size: 1.8rem;
    font-weight: 600;
    text-align: left;
    line-height: 1.8;
}

.txt_bottom {
    margin-bottom: 15px;
}


/*提案書*/

.bg_proposal {
    background-color: #FAF9EF;
}

.proposal_arrow {
    background-color: #fff;
    padding: 20px 0;
    text-align: center;
    margin: 0 auto;
}

.arrow_updown {
    animation-name:arrowupdown;
    animation-delay:0s;
    animation-duration: 2s;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite; 
}
 
@keyframes arrowupdown {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-40px);
  }
  100% {
    transform: translateY(0);
  }
}

.contentarea_inner.anim_scroll {
    z-index: 5;
}

.proposal_arrow img {
    max-width: 25px;
}

/*
.tit_proposal {
    text-align: center;
    font-size: 3rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 20px;
}
    */

.tit_proposal_catch {
    margin-bottom: 20px;
}

.img_proposa {
    margin-bottom: 20px;
}

.txt_proposal {
    padding: 15px;
    border-radius: 15px;
    background-color: #fff;
    text-align: left;
}

.txt_proposal p {
    font-size: 2rem;
    line-height: 1.6;
}

.txt_proposal_act {
    font-size: 1.4rem;
    text-align: right;
    margin-top: 2px;
}

/*ワープリンク*/
.skiplink_box {
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    bottom: 5%;
    right: 15%;
    z-index: 100;
    border-radius: 50%;
    background-color: #ef8411;
    transition: opacity 0.5s ease-in-out;
    opacity: 0;
    box-shadow: 3px 3px 0px 0 rgb(27, 15, 6);
}

.skiplink_box a {
    width: 100px;
    height: 100px;
    padding: 15px;
    text-align: center;
    font-size: 1.6rem;
    font-weight: 600;
    color: #fff;
}

.skiplink_box a img {
    max-width: 25px;
}

.skiplink_box.fixed {
    position: fixed;
    opacity: 1;
}

.skip_move {
    animation: skip_move 1s infinite;
}
        /* zoomFade */
        @keyframes skip_move {
            0% {
                transform: scale(1, 0.8);
            }
    
            20% {
                transform: scale(0.8, 1.1);
            }
    
            95% {
                transform: scale(1, 1);
            }
    
            100% {
                transform: scale(1, 0.8);
            }
        }

@media screen and (max-width: 1300px) {

    .tit_proposal_catch {
        width: 100%;
        text-align: center;
        margin: 0 auto 20px;
    }

    .img_proposa {
        width: 100%;
        text-align: center;
        margin: 0 auto 10px;
    }

    /*ワープリンク*/
    .skiplink_box {
        bottom: 5%;
        right: 10%;
    }

    .skiplink_box a {
        width: 80px;
        height: 80px;
        padding: 10px;
        font-size: 1.4rem;
    }
}

@media screen and (max-width: 1024px) {

    /*ワープリンク*/
    .skiplink_box {
        right: 0;
        bottom: 20%;
        border-radius: 20px 0 0 20px;
    }

    .skiplink_box a {
        padding: 10px;
    }

    .skip_move {
        animation: none;
    }
}

@media screen and (max-width: 640px) {
    .wrap_supervises {
        padding: 20px 20px;
    }

    .wrap_supervises p {
        font-size: 1.6rem;
    }

    /*ポイント解説*/

    .wrap_point {
        margin-bottom: 0;
    }

    .tit_explanation img{
        max-width: 340px;
    }

    .point_item {}

    h2.tit_point {
        margin: 0.5em 0 0.5em;
    }

    .txt_point {
        font-size: 1.6rem;
        padding: 0 10px;
    }

    .txt_point:last-of-type{
        margin-bottom: 25px;
    }

    .one_point {
        padding: 40px 15px 15px;
        margin: 0 10px 15px;
    }


    .tit_one_point {
        left: 10px;
        text-align:left;
    }

     .tit_one_point img{
        max-width: 250px;
     }

    .one_point_character {
        width: 75px;
        top: -15px;
        right: 2px;
    }

    .one_point_character.character_sell {
        width: 100px !important;
    }

    .one_point .txt_one_point {
        font-size: 1.6rem;
    }

    /*提案書*/

    .tit_proposal {
        font-size: 2.4rem;
    }

    .txt_proposal p {
        font-size: 1.6rem;
    }

    .txt_proposal_act {
        font-size: 1.2rem;
    }

    /*ワープリンク*/
    .skiplink_box {
        bottom: 100px;
    }

    .skiplink_box a {
        width: 75px;
        height: 75px;
        padding: 10px;
        font-size: 1.3rem;
    }

    .skiplink_box a img {
        max-width: 20px;
    }
}

@media screen and (max-width: 390px) {
    .one_point_character {
        width: 55px;
        top: -5px;
        right: 2px;
    }
}

@media screen and (max-width: 375px) {
    h2.tit_point {
        font-size:2rem;
    }

    .one_point_character {
        width: 50px;
        top: -5px;
        right: 0;
    }

    .one_point_character.character_sell {
        width: 90px !important;
    }
}


/* ＝＝＝＝＝＝＝完了画面＝＝＝＝＝＝＝＝ */
.thanks_catch {
    font-size: 3.6rem;
    font-weight: 700;
    text-align: center;
    margin: 20px auto 30px;
}

.thanks_catch br {
    display: none;
}

.thanks_txt {
    font-size: 2.2rem;
    text-align: center;
    margin: 0 auto 50px;
}

.thanks_character {
    max-width: 600px;
    text-align: center;
    margin: 0 auto 50px;
}

.thanks_end {
    max-width: 600px;
    text-align: center;
    margin: 0 auto 20px;
    display: block;
}

.thanks_end .txt {
    text-align: left;
    display: inline-block;
}

.thanks_act {
    max-width: 600px;
    text-align: center;
    margin: 0 auto 20px;
    display: block;
}

.indent_act {
    text-align: left;
    padding-left: 1em !important;
    text-indent: -1em !important;
    margin-bottom: 3px !important;
    font-size: 1.4rem !important;
}

.indent_act:last-of-type {
    margin-bottom: 0 !important;
}

button.close {
    text-align: center;
    margin: 40px auto;
    display: inherit;
    cursor: pointer;
    color: #FFF;
    box-sizing: border-box;
    padding: 10px;
    background: #2C8BD4;
    border: 1px solid #2C8BD4;
    border-radius: 30px;
    text-decoration: none;
}

button.close .button {
    display: block;
    font-size: 2rem;
    line-height: 1.4;
    padding: 10px 10px;
}

@media screen and (max-width: 640px) {
    .thanks_catch {
        font-size: 2.6rem;
    }

    .thanks_catch br {
        display: block;
    }

    .thanks_txt {
        font-size: 1.8rem;
    }

    button.close .button {
        font-size: 1.6rem;
    }
}

/* ＝＝＝＝＝＝＝マウススクロール誘導仕様（事務局のみの場合）＝＝＝＝＝＝＝＝ */

@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans:wght@300;400&display=swap');

.wrap_scroll_down {
    padding: 10px 0 0;
}

.scroll_down {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    animation: arrowmove 1s ease-in-out infinite;
}

.scroll_arrow {
    color: #000;
    font-size: 14px;
    font-family: 'Josefin Sans', sans-serif;
    letter-spacing: .2em;
    text-transform: uppercase;
    text-decoration: none;
}

.text {
    display: block;
    margin-top: 70px;
    font-size: 10px;
    color: #000;
    text-transform: uppercase;
    white-space: nowrap;
}

.scroll_arrow_item {
    position: absolute;
    width: 48px;
    height: 5px;
    opacity: 0;
    transform: scale3d(0.5, 0.5, 0.5);
    animation: move 3s ease-out infinite;
}

.scroll_arrow_item:first-child {
    animation: move 3s ease-out 1s infinite;
}

.scroll_arrow_item:nth-child(2) {
    animation: move 3s ease-out 2s infinite;
}

.scroll_arrow_item:before,
.scroll_arrow_item:after {
    content: ' ';
    position: absolute;
    top: 0;
    height: 100%;
    width: 51%;
    background: #000;
}

.scroll_arrow_item:before {
    left: 0;
    transform: skew(0deg, 30deg);
}

.scroll_arrow_item:after {
    right: 0;
    width: 50%;
    transform: skew(0deg, -30deg);
}

@keyframes move {
    25% {
        opacity: 1;
    }

    33% {
        opacity: 1;
        transform: translateY(30px);
    }

    67% {
        opacity: 1;
        transform: translateY(40px);
    }

    100% {
        opacity: 0;
        transform: translateY(55px) scale3d(0.5, 0.5, 0.5);
    }
}

@media screen and (max-width: 640px) {
    .wrap_scroll_down {}

    .scroll_down {
        bottom: 70px;
    }
}

/* ＝＝＝＝＝＝＝各プランへのボタン＝＝＝＝＝＝＝＝ */
.btn_plan-detail {
    position: absolute;
    top: 130%;
    left: 0;
    right: 0;
    z-index: 1;
}

.btn_plan-detail img{
    width: 100%;
    max-width: 270px;
}

.f_cursor {
    position: absolute;
    top: 105%;
    left: 30%;
    right: 0;
    z-index: 2;
    animation: poyopoyo 2s ease-out infinite;
    opacity: 1;
}

.f_cursor.fin-renov {
    left: 70%;
}

.f_cursor img{
    width: 100%;
    max-width: 55px;
}

a .f_cursor img:hover {
    opacity: 1;
  }

@keyframes poyopoyo {
  0%, 40%, 60%, 80% {
    transform: scale(1.0);
    }
  50%, 70% {
    transform: scale(0.85);
  }
}

@media screen and (max-width: 768px) {
    .btn_plan-detail {
        top: 135%;
    }
    
    .btn_plan-detail img{
        max-width: 240px;
    }

    .f_cursor {
        top: 105%;
        left: 32%;
    }

    .f_cursor.fin-renov {
        left: 78%;
    }

    .f_cursor img{
        max-width: 45px;
    }
}

@media screen and (max-width: 550px) {
    .btn_plan-detail {
        top: 140%
    }
    
    .btn_plan-detail img{
        max-width: 220px;
    }

    .f_cursor {
        top: 105%;
        left: 42%;
    }

    .f_cursor.fin-renov {
        left: 82%;
    }

    .f_cursor img{
        max-width: 45px;
    }
}

@media screen and (max-width: 500px) {
    .btn_plan-detail {
        top: 135%;
    }
    
    .btn_plan-detail img{
        max-width: 200px;
    }

    .f_cursor {
        top: 75%;
        left: 42%;
    }

    .f_cursor.fin-renov {
        left: 42%;
    }
}

@media screen and (max-width: 479px) {
    .btn_plan-detail {
        top: 135%;
    }
    
    .btn_plan-detail img{
        max-width: 150px;
    }

    .f_cursor {
        top: 70%;
    }
}

@media screen and (max-width: 390px) {
    .btn_plan-detail {
        top: 135%;
    }
    
    .btn_plan-detail img{
        max-width: 150px;
    }

    .f_cursor {
        top: 60%;
    }
}

@media screen and (max-width: 375px) {
    .btn_plan-detail {
        top: 140%;
    }
    
    .btn_plan-detail img{
        max-width: 130px;
    }

    .f_cursor {
        top: 65%;
    }
}

/* ＝＝＝＝＝＝＝各プラン解説モーダル＝＝＝＝＝＝＝＝ */
.modal_plan {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100%;
    z-index: 100;
}

.modal_plan_bg {
    position: absolute;
    height: 100vh;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 101;
}

/* Modal Content */
.modal_plan_content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 1000px;
    z-index: 102;
}

.modal_plan_inner {
    position: relative;
    background: #fff;
    width: 100%;
    min-height: 100px;
    max-height: 600px;
    padding: 15px;
    overflow-x: hidden;
    overflow-y: auto;
}

/* Close Button */
.btn_close {
    display: block;
    position: absolute;
    top: -50px;
    right: 0;
    background-color: #fff;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    color: #0e1621;
    text-align: center;
    font-size: 30px;
    text-decoration: none;
    line-height: 38px;
    z-index: 105;
}

@media screen and (max-width: 1300px) {
    .modal_plan_content {
        width: 90vw;
    }

    .modal_plan_inner {
        max-height: 450px;
    }
}

@media screen and (max-width: 950px) {
    .modal_plan_content {
        width: 90vw;
    }
}
 
 
@media screen and (max-width: 450px) {
    .modal_plan_content {
        width: 95vw;
    }

    .modal_plan_inner {
        min-height: 100px;
        max-height: 500px;
        padding: 10px;
    }

    .btn_close {
        top: -30px;
        background-color: #0e1621;
        color: #fff;
        width: 40px;
        height: 40px;
        z-index: 105;
    }
}

@media screen and (max-width: 390px) {
    .modal_plan_inner {
        max-height: 400px;
    }
}

/* ＝＝＝＝＝＝＝各プラン解説クリック文言＝＝＝＝＝＝＝＝ */

.cursor_txt {
    margin:70px 0 20px;
}

.cursor_txt img{
    width: 100%;
    max-width: 450px;
}

.f-in {
    opacity: 0;
    transform: translateY(200px);
    animation-name: fin;
    animation-duration: 1.5s;
    animation-timing-function: ease-out;
    animation-fill-mode: forwards;
    z-index: 3;
}


@keyframes fin {
    0% {
        opacity: 0;
    }
    30% {
        opacity: 0.5;
    }
    70% {
        opacity: 0.7;
    }
    100% {
        opacity: 1;
        transform: translate(0);
    }
}

@media screen and (max-width: 450px) {
    .cursor_txt {
        margin:40px 0 20px;
    }
}


/* ＝＝＝＝＝＝＝ 同意テキスト用  ＝＝＝＝＝＝＝＝ */

.txt-act{
    margin-bottom: 50px;
    font-size: 1.5rem;
}

.label-wrap {
    display: flex;
    align-items:flex-start; 
    justify-content: center;
}

.label-wrap input[type=checkbox]{
    transform: scale(1.5);
    margin: 8px;
}

.txt-note {
    display: block;
    text-align: start;
    margin:0 10px;
    width: 90%;
}
