.all_wrap {
    background-color: #ffe8d9;
    padding: 20px 0 80px;
}

.page_lead {
    text-align: center;
    color: #ff6600;
    font-weight: bold;
    font-size: clamp(32px,5vw,70px);
}

.circle_wrap {
    background-color: #ffe0a3;
    border-radius: 50%;
    max-width: 550px;
    width: 90%;
    margin: 20px auto 40px;
    padding: 25px 0 30px;
    text-align: center;
    font-weight: bold;
}

.page_ttl_small {
    color: #ff6600;
    font-size: clamp(25px,4vw,40px);
}

.page_ttl {
    color: #ff6600;
    font-size: clamp(45px,6vw,70px);
    line-height: 1;
}

.page_txt {
    font-size: clamp(17px,2.5vw,25px);
    margin-top: 15px;
}

.page_contents {
    position: relative;
    display: flex;
    justify-content: space-between;
    max-width: 1000px;
    width: 90%;
    margin: 0 auto;
}

.page_img {
    position: absolute;
    translate: -50% -50%;
    top: 50%;
    left: 50%;
    max-width: 600px;
    width: 80%;
}

.page_contents .container {
    position: relative;
    z-index: 1;
    width: 45%;
    padding: 20px;
    border-radius: 20px;
}

.page_contents .container01 {
    background-color: hsla(0, 0%, 100%, 0.8);
}

.page_contents .container02 {
    background-color: hsla(40, 100%, 91%, 0.8);
}

.con_ttl_wrap {
    display: flex;
    align-items: center;
    gap: 0 0.8em;
}

.con_ttl_wrap .icon {
    max-width: 50px;
}

.con_ttl {
    font-size: clamp(25px,3vw,40px);
    font-weight: bold;
}

.con_txt {
    font-size: clamp(14px,1.5vw,17px);
    margin: 10px 0 20px;
}

.list_wrap {
    display: flex;
    flex-direction: column;
    gap: 10px 0;
}

.list_wrap li a {
    display: block;
    position: relative;
    cursor: pointer;
}

.list_wrap li a .small {
    font-size: clamp(12px,1.4vw,16px);
}

.list_wrap li a>span {
    display: block;
    position: relative;
    background-color: #ff6600;
    color: #fff;
    padding: 10px;
    font-weight: bold;
    text-align: center;
    line-height: 1.2;
    font-size: clamp(14px,1.7vw,20px);
    border-radius: 10px;
    transition: all 0.4s ease;
}

.list_wrap li a>span::after {
    content: '';
    position: absolute;
    translate: 0 -50%;
    top: 50%;
    right: 8px;
    background-color: #fff;
    width: 10px;
    height: 15px;
    clip-path: polygon(0 0, 0% 100%, 100% 50%);
}

.list_wrap li a::before {
    content:"";
    position: absolute;
    top:2px;
    left: 2px;
    width: 100%;
    height: 100%;
    border-radius: 10px;
    background-color: hsla(0, 0%, 0%, 0.5);
    transform: translateZ(1px);
}

.list_wrap li a>span.active {
    display: block;
}

.list_wrap li a:hover {
    opacity: 1;
}

.list_wrap li a:hover span {
    transform: translateY(2px) translateX(2px);
}


.page_contents .container01 .list_wrap {
    gap: 30px 0;
}

.page_contents .container02 .box_ttl {
    font-weight: bold;
    text-align: center;
    font-size: clamp(18px,2vw,20px);
    margin-bottom: 10px;
}

.page_contents .container02 .box_ttl .small {
    font-weight: initial;
    display: block;
    font-size: clamp(12px,1.4vw,16px);
}

.page_contents .container02 .box02 {
    margin-top: 20px;
}

.modal_wrap {
    display: none;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    z-index: 999;
}

.modal_bg {
    cursor: pointer;
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: hsla(0, 0%, 0%, 0.3);
}

.modal_inner {
    position: relative;
    z-index: 1000;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 30px 0;
}

.modal_container {
    position: relative;
    z-index: 1001;
    max-width: 1000px;
    width: 90%;
    border: 2px solid #000;
    overflow: scroll;
}

.modal_container::-webkit-whitebar {
    display: none;
}

.modal_ttl_wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #ff6600;
    color: #fff;
    padding: 20px;
    font-weight: bold;
    font-size: clamp(25px,3vw,30px);
}

.modal_close {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background-color: #fff;
    position: relative;
    cursor: pointer;
}

.modal_close span {
    width: 100%;
    height: 2px;
    background-color: #000;
    position: absolute;
    top: 47%;
}

.modal_close span:nth-child(1) {
    rotate: -45deg;
}

.modal_close span:nth-child(2) {
    rotate: 45deg;
}

.white_contents {
    background-color: #fff;
    padding: 20px;
}

.white_ttl {
    text-align: center;
    font-weight: bold;
    line-height: 1.3;
    font-size: clamp(19px,3.5vw,38px);
    border-bottom: 1px solid #000;
    padding-bottom: 20px;
    margin-bottom: 20px;
}

.white_ttl .small {
    font-weight: initial;
    display: block;
    font-size: clamp(16px,3vw,30px);
}

.white_contents .flex_wrap {
    display: flex;
    justify-content: space-between;
}

.white_contents .flex_wrap .box01 {
    width: 44%;
}

.white_contents .flex_wrap .box_lead {
    font-weight: bold;
    font-size: clamp(19px,2vw,22px);
}

.white_contents .flex_wrap .box_txt {
    font-size: clamp(14px,1.4vw,16px);
    line-height: 1.7;
    margin: 10px 0 20px;
}

#modal01 .image {
    width: 80%;
    margin: 0 auto;
}

#modal02 .image {
    width: 80%;
    margin: 0 auto;
}

#modal03 .image {
    width: 80%;
    margin: 0 auto;
}

#modal04 .image {
    width: 55%;
    margin: 0 auto;
}

#modal05 .image {
    width: 80%;
    margin: 0 auto;
}

#modal06 .image {
    width: 80%;
    margin: 0 auto;
}

#modal08 .image {
    width: 80%;
    margin: 0 auto;
}

.white_contents .flex_wrap .box02 {
    width: 53%;
}

.white_contents .flex_wrap .point_ttl {
    background-color: #ff6600;
    color: #fff;
    text-align: center;
    font-size: clamp(15px,1.5vw,18px);
    padding: 10px 0;
    margin-bottom: 10px;
}

.white_contents .list_wrap li {
    display: flex;
    font-size: clamp(14px,1.5vw,18px);
}

.white_contents .list_wrap li .kome {
    font-size: clamp(10px,1vw,12px);
    vertical-align: super;
}

.white_contents .list_wrap li .note {
    display: block;
    font-size: clamp(10px,1vw,12px);
}

.white_contents .list_wrap li::before {
    content: '\025a0';
}

.white_contents .price_wrap {
    display: flex;
    align-items: center;
    gap: 0 10px;
    margin-top: 20px;
}

.white_contents .price_wrap .price_ttl {
    writing-mode: vertical-rl;
    font-weight: bold;
    border: 2px solid #000;
    font-size: clamp(24px,2vw,28px);
    padding: 10px 5px;
}

.white_contents .price_wrap .small {
    font-size: clamp(12px,1.3vw,13px);
    margin-bottom: 5px;
}

.white_contents .price_wrap .price {
    font-weight: bold;
    font-size: clamp(28px,3vw,33px);
    line-height: 1;
    margin-bottom: 5px;
}

.white_contents .price_wrap .price .small {
    font-size: clamp(19px,2.3vw,23px);
}

#modal08 .white_contents .price_wrap .price {
    line-height: 1.7;
}

.white_contents .price_wrap .note {
    font-size: clamp(11px,1.2vw,12px);
}

.white_contents .download_btn a {
    position: relative;
    max-width: 300px;
    margin: 30px auto 0;
    display: block;
    border: 2px solid #c9caca;
    color: #595757;
    padding: 10px 10px 8px 10px;
    display: flex;
    align-items: center;
    gap: 0 0.1em;
    font-size: clamp(22px,3vw,33px);
}

.white_contents .download_btn a span {
    margin-bottom: 5px;
}

.white_contents .download_btn a::before {
    content: '';
    background-image: url(../images/download_icon.png);
    width: 50px;
    height: 50px;
    background-size: cover;
}

.white_contents .download_btn a::after {
    content: '';
    position: absolute;
    translate: 0 -50%;
    top: 50%;
    right: 8px;
    background-color: #595757;
    width: 10px;
    height: 15px;
    clip-path: polygon(0 0, 0% 100%, 100% 50%);
}


@media screen and (max-width:767px) {

    .all_wrap {
        padding-bottom: 40px;
    }

    .circle_wrap {
        margin: 10px auto 20px;
    }

    .page_txt {
        margin-top: 10px;
    }

    .page_contents {
        flex-direction: column;
        gap: 20px 0;
    }

    .page_img {
        position: static;
        translate: 0 0;
        margin: 0 auto 10px;
    }

    .page_contents .container {
        width: 100%;
    }

    .page_contents .container01 .list_wrap {
        gap: 15px 0;
    }

    .list_wrap li a>span::after {
        width: 8px;
        height: 10px;
        right: 4px;
    }


    .modal_ttl_wrap {
        padding: 15px;
    }

    .modal_close {
        width: 40px;
        height: 40px;
    }

    .white_contents {
        padding: 15px 15px 30px;
    }

    .white_ttl {
        padding-bottom: 15px;
        margin-bottom: 15px;
    }

    .white_ttl .small {
        margin-bottom: 5px;
    }

    .white_contents .flex_wrap {
        flex-direction: column;
        gap: 25px 0;
    }

    .white_contents .flex_wrap .box01,
    .white_contents .flex_wrap .box02 {
        width: 100%;
    }

    #modal01 .white_contents .price_wrap {
        align-items: flex-start;
    }

    .white_contents .download_btn a {
        padding: 5px 5px 3px 5px;
        max-width: 230px;
    }
}