*,
*:before,
*:after {
    box-sizing: border-box;
}

* {
    margin: 0;
    padding: 0;
    font: inherit;
}

img,
picture,
svg,
video {
    display: block;
    max-width: 100%;
    margin: 0 auto;
    height: auto;
}

input,
select,
textarea {
    background-color: transparent;
    outline: none;
}

button {
    cursor: pointer;
    background-color: transparent;
    outline: none;
    border: 0;
}

body {
    font-family: Hiragino Sans, Arial, sans-serif !important;
    background-color: #fff;
    min-height: 100vh;
    word-wrap: break-word;
    font-weight: 400;
    font-size: 17px;
    line-height: 1.8;
}

.site-main {
    max-width: 750px;
    width: 100%;
    margin: 0 auto 40px;
    position: relative;
    z-index: 1;
}

strong {
    font-weight: bold;
}

.c-txt {
    margin: 25px 0;
}

.fw_bold {
    font-weight: bold;
}

.txt_note {
    font-size: 11px;
    color: rgb(128, 128, 128);
    margin-top: 10px;
    text-align: right;
}

.clr_pink {
    color: rgb(223, 8, 94);
}

.clr_white {
    color: #fff;
}

.clr_blue {
    color: rgb(49, 126, 212);
}

.bg_yellow-red {
    color: #ff0000;
    background-color: #ffff99;
}

.txt_center {
    text-align: center;
}

.fs22 {
    font-size: 22px;
}

.fs21 {
    font-size: 21px;
}

.fs19 {
    font-size: 19px;
}

.fs15 {
    font-size: 15px;
}

.fs14 {
    font-size: 14px;
}

.fs13 {
    font-size: 13px;
}

.fs10 {
    font-size: 10px;
}

.yellow_line {
    background: rgba(0, 0, 0, 0) linear-gradient(transparent 60%, #ffff82 0%) repeat scroll 0 0;
}

.bg_yellow {
    background-color: rgb(255, 255, 153);
}

.bg_pink {
    background-color: rgb(227, 0, 125);
}

.mgtb30 {
    margin: 30px 0;
}

.mgt20 {
    margin-top: 20px;
}

.mgt30 {
    margin-top: 30px !important;
}

.mgt50 {
    margin-top: 50px !important;
}

.mgb0 {
    margin-bottom: 0 !important;
}

video.vcl02 {
    max-width: 100%;
    width: 100%;
    margin: 0 auto;
    display: block;
}

footer {
    text-align: center;
    color: #fff;
    background: #140600;
    padding: 10px;
}

footer a {
    color: #fff;
}

footer .copy_right {
    color: #fff;
}

.link_about>span {
    display: block;
}

.clr-red {
    color: #317ed4 !important;
}

.yellow_line {
    background: rgba(0, 0, 0, 0) linear-gradient(transparent 60%, #ffff82 0%) repeat scroll 0 0;
}

.clr-red {
    color: #317ed4 !important;
}

.notes {
    text-align: right;
    font-size: 14px;
}

.media-wrap {
    width: 100%;
    max-width: 750px;
    margin: 30px auto 0;
    box-sizing: border-box;
}

.media-wrap video,
.media-wrap img {
    width: 100%;
    max-width: unset;
    height: auto;
    vertical-align: bottom;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

.downArrow {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.downArrow>span {
    /* 矢印の大きさの設定 */
    width: 100px;
    height: 65px;
    padding: 0 10px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.downArrow>span::before {
    content: "";
    display: block;
    margin: 0 auto;
    width: 50%;
    height: 40%;
    /* 矢印の色の設定 */
    background: #3b99eb;
}

.downArrow>span::after {
    content: "";
    display: block;
    width: 100%;
    height: 60%;
    /* 矢印の色の設定 */
    background: -webkit-gradient(linear, left bottom, right top, color-stop(49%, transparent), color-stop(50%, #3b99eb)) top left/50% 100% no-repeat, -webkit-gradient(linear, right bottom, left top, color-stop(49%, transparent), color-stop(50%, #3b99eb)) top right/50% 100% no-repeat;
    background: linear-gradient(to top right, transparent 49%, #3b99eb 50%) top left/50% 100% no-repeat, linear-gradient(to top left, transparent 49%, #3b99eb 50%) top right/50% 100% no-repeat;
}


/*動きの速さを変更する場合は、複数あるanimation-durationの1.5s(=1.5秒)の時間を変更
  動きの回数を変更する場合は、複数あるanimation-iteration-countのinfinite（=無限,               3=3回など）を変更*/

.movebtn {
    -webkit-animation-name: btnAnime02;
    -webkit-animation-duration: 1.5s;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-timing-function: ease;
    -moz-animation-name: btnAnime02;
    -moz-animation-duration: 1.5s;
    -moz-animation-iteration-count: infinite;
    -moz-animation-timing-function: ease;
    align-items: flex-start;
    justify-content: center;
}

@-webkit-keyframes btnAnime02 {
    /*初期位置*/
    0% {
        /*1番目の値はX方向, 2番目の値はY方向*/
        -webkit-transform: translate(0, 0);
    }
    /*animation-durationで設定した値の半分の時間（50%）の時の位置*/
    50% {
        -webkit-transform: translate(0, -8px);
    }
    /*animation-durationで設定した値になった（100%）時の位置*/
    100% {
        -webkit-transform: translate(0, 0);
    }
}


/*上記の「@-webkit-keyframes btnAnime02」と同様の値にしてください*/

@-moz-keyframes btnAnime02 {
    0% {
        -moz-transform: translate(0, 0);
    }
    50% {
        -moz-transform: translate(0, -8px);
    }
    100% {
        -moz-transform: translate(0, 0);
    }
}

.btn-link {
    text-align: center;
    margin-top: 30px;
    width: 100%;
}

.final {
    margin-bottom: 0 !important
}

.mgt30 {
    margin-top: 30px
}

.btn-link>a {
    display: inline-block;
    margin: 0 auto;
    text-align: center
}

.btn-link>a img {
    margin: 0 auto
}

.pulse {
    animation-name: pulse;
}

.animate {
    animation-duration: 2s;
    animation-timing-function: ease-in;
    animation-iteration-count: infinite;
    margin-left: auto;
    margin-right: auto;
    width: 90%;
    z-index: 1;
}

@keyframes pulse {
    from,
    to {
        transform: scale3d(1, 1, 1)
    }
    50% {
        transform: scale3d(1.05, 1.05, 1.05)
    }
}

.section:not(.section-01) {
    display: block;
    position: relative;
    transition: all 0.5s ease;
    padding-top: 0;
}

.section-04 {
    padding-top: 0 !important;
}

.section.show {
    display: block;
}

.d-none {
    display: block;
}

.btn-next {
    cursor: pointer;
}

.fs10 {
    font-size: 10px;
}

.section-01.fadeIn {
    animation: fadeInDown 1s forwards;
}

.section-01 {
    /*opacity: 0;*/
}

.section .slideIn {
    display: block;
}

.loading.fadeOut {
    /* animation: loading 1s forwards; */
}

@keyframes loading {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        display: none;
    }
}

@keyframes fadeInDown {
    0% {
        opacity: 0;
        transform: translateY(100px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.question-number {
    font-size: 3em;
    font-weight: bold;
    text-align: center;
    width: 100%;
}

.question-number span {
    width: 1.25em;
    height: 1.25em;
    background: #e5e5e5;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.question-number .active {
    background: #317ed4;
    color: #fff;
    position: relative;
}

.question-number .active::after {
    content: "";
    width: 0px;
    height: 0px;
    border-left: 0.15em solid transparent;
    border-right: 0.15em solid transparent;
    border-top: 0.2em solid #317ed4;
    position: absolute;
    bottom: 0;
    transform: translateY(100%);
}

.question-txt {
    font-size: 1.85em;
    line-height: 1.4;
    text-align: center;
    margin: 0.5em 0;
    width: 100%;
}

@media (max-width: 767px) {
    .question-number {
        font-size: 2em;
    }
    .question-txt {
        font-size: 1.25em;
        padding: 0 5px;
    }
}

.boxChat {
    display: flex;
    flex-wrap: wrap;
    position: relative;
    width: 100%;
    align-content: flex-start;
    max-width: 700px;
    margin: 30px auto 0;
}

ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.btn-center {
    text-align: center !important;
}

.btn_next {
    cursor: pointer;
    width: 100%;
    margin-top: 30px;
}

.btn_next img {
    margin: 0 auto;
}

.boxList {
    margin: 10px 40px 0px 40px;
    width: 100%;
}

.question-picture {
    width: 100%;
}

.el_checklist ul {
    list-style-type: none;
    padding: 0;
    display: table;
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 8px;
}

.selectbtn_yn {
    width: 100%;
    margin-top: 2em;
}

.selectbtn_yn .el_checklist ul>li>label {
    background-color: #fff;
    border: solid 3px #fff;
    display: block;
    padding: 1em 0;
    font-weight: bold;
    border-radius: 5em;
    box-shadow: 4px 4px 4px rgba(100, 100, 100, 0.4);
    transition: 0.2s;
    color: #fff;
}

.selectbtn_yn .el_checklist ul>li>label:hover,
.selectbtn_yn .el_checklist ul>li>input[type="radio"]:checked+label {
    background-color: #317ed4;
    border-color: #fff;
    box-shadow: 4px 4px 4px rgba(100, 100, 100, 0.4);
    color: #fff;
}

.selectbtn_yn .el_checklist ul>li>label {
    padding-left: 0;
    display: inline-block;
    background: #909090;
    border-radius: 14px;
    width: 96%;
}

.selectbtn_yn .el_checklist ul>li>input:checked+label {
    background: #909090;
}

.selectbtn_yn .el_checklist ul>li>label p {
    line-height: 1.5;
    font-size: 2em;
}

.selectbtn_yn .el_checklist ul>li>label i {
    display: none;
}

.selectbtn_yn .el_checklist ul>li {
    width: 50%;
    display: table-cell;
    text-align: center;
    color: #fff;
}

.selectbtn_yn .el_checklist ul>li>label {
    padding-left: 0;
    display: inline-block;
    background: #cccccc;
    border-radius: 10px;
    width: 94%;
}

.selectbtn_yn .el_checklist ul>li>input:checked+label {
    background: #000000;
}

.selectbtn_yn .el_checklist ul>li>label i {
    display: none;
}

.btn-next {
    cursor: pointer;
}

.el_checklist ul>li>input {
    display: none;
}

@media (max-width: 750px) {
    .selectbtn_yn {
        margin-top: 1em;
    }
    .selectbtn_yn .el_checklist ul {
        width: 94%;
        margin: auto;
    }
    .selectbtn_yn .el_checklist ul>li>label {
        padding: 0.5em 0;
    }
    .selectbtn_yn .el_checklist ul>li>label p {
        font-size: 1.3rem;
        line-height: 2.5;
    }
    .btn_next {
        margin-top: 25px;
    }
}

#check-illust05 .el_checklist ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 8px;
    list-style-type: none;
    padding: 0;
    column-gap: 3%;
}

#check-illust05 .el_checklist ul>li {
    display: inline-block;
    width: 47%;
    margin: 0;
}

#check-illust05 .el_checklist ul>li:nth-of-type(n + 3) {
    margin-top: 3%;
}

#check-illust05 .el_checklist ul>li>input {
    display: none;
}

#check-illust05 .el_checklist ul>li>label {
    text-align: center;
    background-color: #e4e4e4;
    display: block;
    border-style: none;
    border-width: 3px;
    border-color: #505050;
    border-radius: 8px;
    background-image: url(../img/705a9e44-4df8-4e82-b3f7-8346d49f59a9.jpg);
    background-repeat: no-repeat;
    background-size: 97% auto;
    background-position: center 5px;
    padding: 82% 0 3%;
    box-sizing: border-box;
    cursor: pointer;
    transition: background-color 0.3s ease-in-out, border-color 0.3s ease-in-out;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
}

#check-illust05 .el_checklist ul>li:nth-of-type(2)>label {
    background-image: url(../img/3b739d6c-057b-46f1-a3f5-915ea50151cf.jpg);
}

#check-illust05 .el_checklist ul>li:nth-of-type(3)>label {
    background-image: url(../img/e75db14d-1dae-4fb4-b4d1-d43d93eb8e38.jpg);
}

#check-illust05 .el_checklist ul>li:nth-of-type(4)>label {
    background-image: url(../img/988d01f2-58c0-4417-9b95-26f797b65c6f.jpg);
}

#check-illust05 .el_checklist ul>li>label {
    width: 100%;
    position: relative;
    color: #1c327b;
}

#check-illust05 .el_checklist ul>li>label>.icon {
    margin: 3% auto 0;
    box-sizing: border-box;
    width: 40px;
    height: 40px;
    border-style: solid;
    border-width: 3px;
    border-color: #181818;
    border-radius: 5px;
    display: inline-block;
    background-color: #fff;
    position: relative;
    transition: background-color 0.3s ease-in-out, border-color 0.3s ease-in-out;
}

#check-illust05 .el_checklist ul>li>label>.icon svg {
    position: absolute;
    top: -10px;
    left: 5px;
    width: 42px;
    height: 41px;
}

.draw {
    clip-path: inset(0 100% 0 0);
}

.cls-1,
.cls-2 {
    fill-rule: evenodd;
}

.cls-1 {
    fill: #ffd860;
    stroke-width: 0;
    stroke: #fff;
}

#check-illust05 .el_checklist ul>li>input[type="checkbox"]:checked+label>.icon {
    background-color: #ffffff;
    border-color: #fff;
}

#check-illust05 .el_checklist ul>li>input[type="checkbox"]:checked+label {
    background-color: #317ed4;
    border-color: #181818;
}

#check-illust05 .el_checklist ul>li>input[type="checkbox"]:checked+label>p {
    color: #fff;
}

#check-illust05 .el_checklist ul>li>input[type="checkbox"]:checked+label>.icon .draw {
    animation: writing 0.3s linear forwards;
}

#check-illust05 .el_checklist ul>li>label>.icon .draw {
    animation: writing-off 0.3s linear forwards;
}

#check-illust05 .el_checklist ul>li>label p {
    font-size: 1.1em;
    margin-top: 10px;
    line-height: 1.3;
    text-align: center;
    flex: 1 auto;
    display: flex;
    align-items: center;
    vertical-align: middle;
    color: #181818;
    font-weight: bold;
}

@keyframes writing {
    0% {
        clip-path: inset(0 100% 0 0);
    }
    100% {
        clip-path: inset(0);
    }
}

@keyframes writing-off {
    0% {
        clip-path: inset(0);
    }
    100% {
        clip-path: inset(0 100% 0 0);
    }
}

@media (max-width: 749px) {
    .boxList {
        margin: 15px 15px 0px 15px;
    }
    #check-illust05 .el_checklist ul>li>label>.icon svg {
        top: -8px;
        left: 3px;
        width: 35px;
        height: 32px;
    }
    #check-illust05 .el_checklist ul>li>label {
        background-position: center 3%;
    }
    #check-illust05 .el_checklist ul>li>label>.icon {
        width: 36px;
        height: 36px;
    }
    #check-illust05 .el_checklist ul>li>label p {
        font-size: 1em;
        padding: 0 3%;
    }
    .btn_next {
        margin-top: 25px;
    }
}

#check-illust01 {
    margin: 10px 15px 15px 15px;
    padding: 15px 40px 10px 40px;
    width: 100%;
}

.el_checklist ul {
    list-style-type: none;
    padding: 0;
    display: table;
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 8px;
    margin: 0;
}

#check-illust01 .el_checklist ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.el_checklist ul>li {
    display: table-row;
    width: 100%;
}

#check-illust01 .el_checklist ul>li {
    width: 48%;
}

#check-illust01 .el_checklist ul>li:nth-of-type(n + 3) {
    margin-top: 2.5%;
}

.el_checklist ul>li>input {
    display: none;
}

.el_checklist ul>li>label {
    display: table-cell;
    width: 100%;
    position: relative;
    padding-left: 40px;
    cursor: pointer;
    box-sizing: border-box;
}

#check-illust01 .el_checklist ul>li>label {
    display: block;
    background: url(../img/bbf76adc-a502-4aa7-bdd7-07c67730b94b.jpg) center top / 100% auto no-repeat;
    padding-top: 135%;
}

#check-illust01 .el_checklist ul>li:nth-of-type(2)>label {
    background-image: url(../img/0090d5f0-2302_mytol_que_07_q3-4a.png);
}

#check-illust01 .el_checklist ul>li:nth-of-type(3)>label {
    background-image: url(../img/15c8b13b-d054-4658-b5b7-025ca7d2a313.jpg);
}

#check-illust01 .el_checklist ul>li:nth-of-type(4)>label {
    background-image: url(../img/16bdba8b-efb9-4b20-a469-b250b2ba9a22.jpg);
}

#check-illust01 .el_checklist ul>li>label>.iconbefore,
#check-illust01 .el_checklist ul>li>label>.iconafter,
#check-illust01 .el_checklist ul>li>label p {
    display: none;
}

#check-illust01 .el_checklist ul>li:first-of-type>input:checked+label {
    background-image: url(../img/1ac801c3-71d9-44b8-aba2-0a5c3dfe2ce9.jpg);
}

#check-illust01 .el_checklist ul>li:nth-of-type(2)>input:checked+label {
    background-image: url(../img/e606bd57-9157-42ba-b68c-24c440c77288.jpg);
}

#check-illust01 .el_checklist ul>li:nth-of-type(3)>input:checked+label {
    background-image: url(../img/595e9930-64ed-4d08-b974-5d9725bd1871.jpg);
}

#check-illust01 .el_checklist ul>li:nth-of-type(4)>input:checked+label {
    background-image: url(../img/26a62b0d-b1e7-4fc7-ae58-00ccc1f013ce.jpg);
}

@media (min-width: 751px) {
    .only-sp {
        display: none !important;
    }
}

@media (max-width: 750px) {
    #check-illust01 {
        margin: 20px 0 0 0;
        padding: 0px 20px 0px 20px;
    }
    .notes {
        font-size: 12px;
        margin-top: 5px;
    }
    .only-pc {
        display: none;
    }
}


#popup {
    position: fixed;
    z-index: 999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: none;

}

#popup .popup-container{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}

#popup .popup-inner {
    background: #fff;
    padding: 20px;
    max-width: 800px;
    text-align: center;
    margin: 0 auto;
    z-index: 999;
    position: relative;
  }

  #popup .close {
    position: absolute;
    width: 30px;
    height: 30px;
    top: -29px;
    right: -35px;
    font-size: 30px;
    cursor: pointer;
    display: flex;
    color: #ffffff;
    align-items: center;
    justify-content: center;
  }
  