@charset "UTF-8";

* {
    list-style: none;
    margin: 0;
    padding: 0;
    text-decoration: none;
}

a {
    color: #006bcd;
    text-decoration: none;
}

a > p {
    font-weight: normal;
}

a:active,
a:focus,
a:hover {
    color: #39f;
    transition: 0.2s;
}
.fixed-content li a:hover, .nav__detail li:hover {
    opacity: 0.8;
}

:root {
    font-size: 10px;
}

html {
    scroll-behavior: smooth;
}

body {
    color: #333;
    font-family: "メイリオ", Meiryo, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic ProN", Arial, sans-serif;
    font-size: 1.4rem;
    line-height: 1.75;
    overflow-x: hidden;
    background: #fafafa;
}

body.visitorbg {
    background: #f3f3f3;
}

.readylistWrapper {
    width: 1130px;
    margin: 0 auto;
}

.intro {
    filter: blur(3px);
    text-align: center;
    padding: 20px 0 16px;
}

.intro h2 {
    line-height: 1.35;
    font-size: 28px;
    margin-bottom: 24px;
}

.intro p {
    font-size: 16px;
}

.intro img {
    width: 1130px;
    margin-top: 40px;
}

.changeTask {
    text-align: right;
    filter: blur(3px);
    padding: 25px 0 10px;
}

.readylist_task {
    padding: 32px 0 8px;
    filter: blur(3px);
}

.readylist_task h3 {
    font-size: 22px;
    border-bottom: 1px solid #00AAEB;
}

.readylist_task ul {
    padding-top: 24px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.readylist_task li {
    width: 49%;
    border-radius: 4px;
    box-shadow: 0 1px 1px 0 rgba(66, 66, 66, .08),
    0 1px 3px 1px rgba(66, 66, 66, 0.16);
    margin-bottom: 24px;
}

.readylist_task li .userChange {
    display: flex;
    align-items: center;
}

.readylist_task li .userChangeInput {
    width: 20%;
    background-color: #E5F6FD;
    text-align: center;
    padding: 12px 0 50px;
    position: relative;
}

.readylist_task li .userChangeInput p {
    font-weight: bold;
    color: #00AAEB;
}

.readylist_task li .userChangeInput input {
    background: url(../images/readylist_checkbox_noactive.png) no-repeat 0 0;
	  position: absolute;
    top: 15px;
    left: 15px;
    z-index: 2;
    width: 80px;
    height: 80px;
    line-height: 1.7;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border: 0;
    border-radius: 0;
    transform: scale(0.5);
    cursor: pointer;
}

.readylist_task li .userChangeInput input:checked {
    background: url(../images/readylist_checkbox_active.png) no-repeat 0 0;
}

.readylist_task li .taskUrl {
    color: #333;
    padding-left: 20px;
    width: 70%;
    position: relative;
}

.readylist_task li .taskUrl::before {
    position: absolute;
    content: url(../images/readylist_link.png);
    top: 50%;
    right: -20px;
    transform: translateY(-50%) scale(0.75);
}

.readylist_task li .taskUrl h4 {
    font-weight: bold;
    font-size: 16px;
}

.readylist_task li .userChange a:hover {
    color: #006bcd;
}

.readylist_task li .autoChange {
    border-top: 1px solid #E6E6E6;
    color: #859099;
    font-size: 12px;
    font-weight: bold;
    padding: 8px 16px;
    text-align: right;
}


/* change10 */
.readylist_task li.change10 {
    background: #E5E5E5;
}
.readylist_task li.change10 .autoChange {
    border-top: 1px solid #fff;
}

/* change01 */
.readylist_task li.change01 .autoChange {
    color: #00AAEB;
}

/* limited */
.limited {
    position: relative;
}

/* loading */

.loader-wrap {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translateY(-50%);
}

.loader {
    margin: 100px auto;
    font-size: 20px;
    width: 1em;
    height: 1em;
    border-radius: 50%;
    position: relative;
    text-indent: -9999em;
    -webkit-animation: load5 1.1s infinite ease;
    animation: load5 1.1s infinite ease;
    -webkit-transform: translateZ(0);
    -ms-transform: translateZ(0);
    transform: translateZ(0);
  }
  @-webkit-keyframes load5 {
    0%,
    100% {
      box-shadow: 0em -2.6em 0em 0em #333333, 1.8em -1.8em 0 0em rgba(51,51,51, 0.2), 2.5em 0em 0 0em rgba(51,51,51, 0.2), 1.75em 1.75em 0 0em rgba(51,51,51, 0.2), 0em 2.5em 0 0em rgba(51,51,51, 0.2), -1.8em 1.8em 0 0em rgba(51,51,51, 0.2), -2.6em 0em 0 0em rgba(51,51,51, 0.5), -1.8em -1.8em 0 0em rgba(51,51,51, 0.7);
    }
    12.5% {
      box-shadow: 0em -2.6em 0em 0em rgba(51,51,51, 0.7), 1.8em -1.8em 0 0em #333333, 2.5em 0em 0 0em rgba(51,51,51, 0.2), 1.75em 1.75em 0 0em rgba(51,51,51, 0.2), 0em 2.5em 0 0em rgba(51,51,51, 0.2), -1.8em 1.8em 0 0em rgba(51,51,51, 0.2), -2.6em 0em 0 0em rgba(51,51,51, 0.2), -1.8em -1.8em 0 0em rgba(51,51,51, 0.5);
    }
    25% {
      box-shadow: 0em -2.6em 0em 0em rgba(51,51,51, 0.5), 1.8em -1.8em 0 0em rgba(51,51,51, 0.7), 2.5em 0em 0 0em #333333, 1.75em 1.75em 0 0em rgba(51,51,51, 0.2), 0em 2.5em 0 0em rgba(51,51,51, 0.2), -1.8em 1.8em 0 0em rgba(51,51,51, 0.2), -2.6em 0em 0 0em rgba(51,51,51, 0.2), -1.8em -1.8em 0 0em rgba(51,51,51, 0.2);
    }
    37.5% {
      box-shadow: 0em -2.6em 0em 0em rgba(51,51,51, 0.2), 1.8em -1.8em 0 0em rgba(51,51,51, 0.5), 2.5em 0em 0 0em rgba(51,51,51, 0.7), 1.75em 1.75em 0 0em #333333, 0em 2.5em 0 0em rgba(51,51,51, 0.2), -1.8em 1.8em 0 0em rgba(51,51,51, 0.2), -2.6em 0em 0 0em rgba(51,51,51, 0.2), -1.8em -1.8em 0 0em rgba(51,51,51, 0.2);
    }
    50% {
      box-shadow: 0em -2.6em 0em 0em rgba(51,51,51, 0.2), 1.8em -1.8em 0 0em rgba(51,51,51, 0.2), 2.5em 0em 0 0em rgba(51,51,51, 0.5), 1.75em 1.75em 0 0em rgba(51,51,51, 0.7), 0em 2.5em 0 0em #333333, -1.8em 1.8em 0 0em rgba(51,51,51, 0.2), -2.6em 0em 0 0em rgba(51,51,51, 0.2), -1.8em -1.8em 0 0em rgba(51,51,51, 0.2);
    }
    62.5% {
      box-shadow: 0em -2.6em 0em 0em rgba(51,51,51, 0.2), 1.8em -1.8em 0 0em rgba(51,51,51, 0.2), 2.5em 0em 0 0em rgba(51,51,51, 0.2), 1.75em 1.75em 0 0em rgba(51,51,51, 0.5), 0em 2.5em 0 0em rgba(51,51,51, 0.7), -1.8em 1.8em 0 0em #333333, -2.6em 0em 0 0em rgba(51,51,51, 0.2), -1.8em -1.8em 0 0em rgba(51,51,51, 0.2);
    }
    75% {
      box-shadow: 0em -2.6em 0em 0em rgba(51,51,51, 0.2), 1.8em -1.8em 0 0em rgba(51,51,51, 0.2), 2.5em 0em 0 0em rgba(51,51,51, 0.2), 1.75em 1.75em 0 0em rgba(51,51,51, 0.2), 0em 2.5em 0 0em rgba(51,51,51, 0.5), -1.8em 1.8em 0 0em rgba(51,51,51, 0.7), -2.6em 0em 0 0em #333333, -1.8em -1.8em 0 0em rgba(51,51,51, 0.2);
    }
    87.5% {
      box-shadow: 0em -2.6em 0em 0em rgba(51,51,51, 0.2), 1.8em -1.8em 0 0em rgba(51,51,51, 0.2), 2.5em 0em 0 0em rgba(51,51,51, 0.2), 1.75em 1.75em 0 0em rgba(51,51,51, 0.2), 0em 2.5em 0 0em rgba(51,51,51, 0.2), -1.8em 1.8em 0 0em rgba(51,51,51, 0.5), -2.6em 0em 0 0em rgba(51,51,51, 0.7), -1.8em -1.8em 0 0em #333333;
    }
  }
  @keyframes load5 {
    0%,
    100% {
      box-shadow: 0em -2.6em 0em 0em #333333, 1.8em -1.8em 0 0em rgba(51,51,51, 0.2), 2.5em 0em 0 0em rgba(51,51,51, 0.2), 1.75em 1.75em 0 0em rgba(51,51,51, 0.2), 0em 2.5em 0 0em rgba(51,51,51, 0.2), -1.8em 1.8em 0 0em rgba(51,51,51, 0.2), -2.6em 0em 0 0em rgba(51,51,51, 0.5), -1.8em -1.8em 0 0em rgba(51,51,51, 0.7);
    }
    12.5% {
      box-shadow: 0em -2.6em 0em 0em rgba(51,51,51, 0.7), 1.8em -1.8em 0 0em #333333, 2.5em 0em 0 0em rgba(51,51,51, 0.2), 1.75em 1.75em 0 0em rgba(51,51,51, 0.2), 0em 2.5em 0 0em rgba(51,51,51, 0.2), -1.8em 1.8em 0 0em rgba(51,51,51, 0.2), -2.6em 0em 0 0em rgba(51,51,51, 0.2), -1.8em -1.8em 0 0em rgba(51,51,51, 0.5);
    }
    25% {
      box-shadow: 0em -2.6em 0em 0em rgba(51,51,51, 0.5), 1.8em -1.8em 0 0em rgba(51,51,51, 0.7), 2.5em 0em 0 0em #333333, 1.75em 1.75em 0 0em rgba(51,51,51, 0.2), 0em 2.5em 0 0em rgba(51,51,51, 0.2), -1.8em 1.8em 0 0em rgba(51,51,51, 0.2), -2.6em 0em 0 0em rgba(51,51,51, 0.2), -1.8em -1.8em 0 0em rgba(51,51,51, 0.2);
    }
    37.5% {
      box-shadow: 0em -2.6em 0em 0em rgba(51,51,51, 0.2), 1.8em -1.8em 0 0em rgba(51,51,51, 0.5), 2.5em 0em 0 0em rgba(51,51,51, 0.7), 1.75em 1.75em 0 0em #333333, 0em 2.5em 0 0em rgba(51,51,51, 0.2), -1.8em 1.8em 0 0em rgba(51,51,51, 0.2), -2.6em 0em 0 0em rgba(51,51,51, 0.2), -1.8em -1.8em 0 0em rgba(51,51,51, 0.2);
    }
    50% {
      box-shadow: 0em -2.6em 0em 0em rgba(51,51,51, 0.2), 1.8em -1.8em 0 0em rgba(51,51,51, 0.2), 2.5em 0em 0 0em rgba(51,51,51, 0.5), 1.75em 1.75em 0 0em rgba(51,51,51, 0.7), 0em 2.5em 0 0em #333333, -1.8em 1.8em 0 0em rgba(51,51,51, 0.2), -2.6em 0em 0 0em rgba(51,51,51, 0.2), -1.8em -1.8em 0 0em rgba(51,51,51, 0.2);
    }
    62.5% {
      box-shadow: 0em -2.6em 0em 0em rgba(51,51,51, 0.2), 1.8em -1.8em 0 0em rgba(51,51,51, 0.2), 2.5em 0em 0 0em rgba(51,51,51, 0.2), 1.75em 1.75em 0 0em rgba(51,51,51, 0.5), 0em 2.5em 0 0em rgba(51,51,51, 0.7), -1.8em 1.8em 0 0em #333333, -2.6em 0em 0 0em rgba(51,51,51, 0.2), -1.8em -1.8em 0 0em rgba(51,51,51, 0.2);
    }
    75% {
      box-shadow: 0em -2.6em 0em 0em rgba(51,51,51, 0.2), 1.8em -1.8em 0 0em rgba(51,51,51, 0.2), 2.5em 0em 0 0em rgba(51,51,51, 0.2), 1.75em 1.75em 0 0em rgba(51,51,51, 0.2), 0em 2.5em 0 0em rgba(51,51,51, 0.5), -1.8em 1.8em 0 0em rgba(51,51,51, 0.7), -2.6em 0em 0 0em #333333, -1.8em -1.8em 0 0em rgba(51,51,51, 0.2);
    }
    87.5% {
      box-shadow: 0em -2.6em 0em 0em rgba(51,51,51, 0.2), 1.8em -1.8em 0 0em rgba(51,51,51, 0.2), 2.5em 0em 0 0em rgba(51,51,51, 0.2), 1.75em 1.75em 0 0em rgba(51,51,51, 0.2), 0em 2.5em 0 0em rgba(51,51,51, 0.2), -1.8em 1.8em 0 0em rgba(51,51,51, 0.5), -2.6em 0em 0 0em rgba(51,51,51, 0.7), -1.8em -1.8em 0 0em #333333;
    }
  }
  

/* 非会員用 */
.readylistWrapper.visitor {
    background: #fff;
    border-radius: 8px;
    margin: 80px auto;
    padding: 80px 40px 100px;
    text-align: center;
}

.readylistWrapper.visitor h1 {
    font-weight: bold;
    font-size: 32px;
    text-align: center;
}

.readylistWrapper.visitor > p {
    line-height: 2
}

.readylistWrapper.visitor .conts__inner {
    margin-top: 40px;
}

.readylistWrapper.visitor .l-login__ttl {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 60px;
    padding: 0 80px;
    background-color: #00aaeb;
    color: #fff;
    font-weight: bold;
}

.readylistWrapper.visitor .l-login__ttl {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 60px;
    padding: 0 80px;
    background-color: #00aaeb;
    color: #fff;
    font-weight: bold;
}

.readylistWrapper.visitor .l-login__primary {
    align-items: flex-end;
    display: flex;
    gap: 40px;
    justify-content: center;
    margin-bottom: 40px;
}

.readylistWrapper.visitor .l-login__btn .btn {
    box-sizing: border-box;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 268px;
    height: 48px;
    margin: 0;
    border-radius: 2px;
    background: #fff;
    font-size: 14px;
    font-weight: normal;
    text-decoration: none;
    transition: 200ms;
    cursor: pointer;
}

.readylistWrapper.visitor .l-login__btn .btn::before {
    content: '';
    display: inline-block;
    margin-right: 8px;
    margin-bottom: 2px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

.readylistWrapper.visitor .l-login__btn .btn-02 {
    background: #f57c31;
    color: #fff;
    border: none;
}

.l-login__btn .btn.btn-01::before {
    background-image: url(/conts/2026/images/icon_login_btn01.png);
    width: 20px;
    height: 20px;
}

.l-login__btn .btn.btn-02::before {
    background-image: url(/conts/2026/images/icon_login_btn02.png);
    width: 20px;
    height: 20px;
}

.readylistWrapper.visitor .l-login__btn a {
    display: block;
}

.readylistWrapper.visitor .l-login__list02 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
}

.readylistWrapper.visitor .l-login__list02 > li a {
    display: block;
    position: relative;
    padding-left: 20px;
    font-size: 14px;
    text-align: left;
}

.readylistWrapper.visitor .l-login__list02 > li a::before, 
.readylistWrapper.visitor .l-login__list02 > li a::after {
    content: "";
    display: block;
    position: absolute;
    left: 5px;
    width: 9px;
    height: 1px;
    background: #00aaeb;
}

.readylistWrapper.visitor .l-login__list02 > li a::before {
    top: calc(50% - 3px);
    transform: rotate(45deg);
}

.readylistWrapper.visitor .l-login__list02 > li a::after {
    top: calc(50% + 3px);
    transform: rotate(-45deg);
}

.pc {
    display: block;
}

.sp {
    display: none;
}