@charset "UTF-8";

body {
    width: 100%;
    min-width: 1100px;
    position: relative;
}

a {
    color: #000;
    display: block
}

section {
    position: relative;
}

a:hover {
    text-decoration: none;
}

.cred {
    color: #cc0000;
}

.btn {
    position: relative;
    width: 500px;
    margin: 25px auto 0;
}


.btn a {
    color: #000;
    padding: 15px 0;
    display: block;
    text-align: center;
    font-family: 'Noto Sans JP', sans-serif;
}

.btn a:hover {
    opacity: 0.8;
}

.btn::after {
    content: "";
    display: block;
    width: 8px;
    height: 8px;
    border-top: solid 2px #000;
    border-right: solid 2px #000;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    margin: auto;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 20px;
}

.anchor::after {
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
}

/* -------------------
白背景のボタン
---------------------- */
.btn.btn-white {
    background: #fff;
    border: 2px solid #000;
    border-radius: 50px;
}

/* -------------------
オレンジ背景のボタン
---------------------- */
.btn.btn-orange {
    background: #ff7c00;
    border: 2px solid #ff7c00;
    color: #fff;
    border-radius: 50px;
}

.btn.btn-orange::after {
    border-top: solid 2px #fff;
    border-right: solid 2px #fff;
}

.btn.btn-orange a {
    color: #fff;
}

/* -------------------
黒背景のボタン
---------------------- */
.btn.btn-black {
    background: #000;
    border: 2px solid #000;
    border-radius: 50px;
    color: #fff;
}

.btn.btn-black::after {
    border-top: solid 2px #fff;
    border-right: solid 2px #fff;
}

.btn.btn-black a {
    color: #fff;
}

/* -------------------
みどり背景のボタン
---------------------- */
.btn.btn-green {
    background: #6db131;
    border: 2px solid #6db131;
    border-radius: 50px;
    color: #fff;
}

.btn.btn-green::after {
    border-top: solid 2px #fff;
    border-right: solid 2px #fff;
}

.btn.btn-green a {
    color: #fff;
}

/* -------------------
大きいボタン
---------------------- */
.btn.btn-large {
    width: 670px;
    font-size: 24px;
    font-weight: 700;
    padding: 5px 0;
    border-radius: 75px;
}

.btn.btn-large span {
    font-size: 14px;
    display: block;
}

/* -------------------
小さいボタン
---------------------- */
.btn.btn-small {
    width: 400px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 50px;
}

/* -------------------
カテゴリーリスト
---------------------- */
.cata-list {
    display: flex;
    flex-wrap: wrap;
    width: 600px;
    margin: 35px auto 0;
}

.cata-list > li {
    width: calc(100% / 4);
    margin: 0 0 10px;
    text-align: center;
}

.tab > li {
    color: #000;
    padding: 10px 0;
    border-bottom: solid 5px transparent;
    cursor: pointer;
    text-align: left;
    display: inline;
}

.tab > li > span {
    display: inline;
    padding-bottom: 5px;
}

.tab > li > span:hover,
.tab > li.tab_current > span {
    color: #6db131;
    border-bottom: solid 5px #6db131;
}

.cata-imgbox {
    display: flex;
    flex-wrap: wrap;
    margin: 35px 0 0;
}

.cata-imgbox > * {
    width: calc(100% / 4);
    justify-content: center;
    align-items: center;
    margin-bottom: 50px;
}

.js-aco {
    position: relative;
}

.js-aco::after {
    content: "＋";
    position: absolute;
    right: 0;
    font-size: 20px;
    font-weight: bolder;
}

.js-aco.js-active::after {
    content: "－";
    position: absolute;
    top: 0px;
    right: 0;
    font-size: 20px;
    font-weight: bolder;
}

.num {
    position: relative;
    z-index: 999;
}

.balloon {
    position: relative;
    display: block;
    margin: -5px 0;
    padding: 20px 0;
    min-width: 120px;
    max-width: 100%;
    color: #fff;
    font-size: 24px;
    background: #000000;
    border-radius: 10px;
    font-weight: bolder;
    text-align: center;
    z-index: 1
}

.balloon:before {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -15px;
    border: 15px solid transparent;
    border-top: 15px solid #000000;
}

.balloon p {
    margin: 0;
    padding: 0;
}

.copy {
    font-size: 24px;
    font-weight: 500;
    color: #cc0000;
    text-align: center;
    margin-top: 60px;
}

@media screen and (max-width: 767px) {
    .copy {
        font-size: 18px;
        font-weight: 700;
        color: #cc0000;
        text-align: center;
        margin-top: 40px;
    }
}

.scroll {
    padding: 0;
}

#wrap {
    font-size: 16px;
    font-family: "メイリオ", "ＭＳ Ｐゴシック", "MS PGothic", Arial, Helvetica, Verdana, sans-serif;
    border-top: 3px solid #0d6d0e;
    overflow-x: hidden;
}

#headBox h1 {
    text-align: left;
}

.tag-trial {
    position: relative;
    padding-top: 25px;
}

.tag-trial::before {
    position: absolute;
    content: "まずはお試し！";
    background: #cc0000;
    font-size: 14px;
    color: #fff;
    padding: 5px 10px;
    top: 0;
    left: 0;
}

.tag-trial::after {
    content: "";
    position: absolute;
    top: 30px;
    left: 65px;
    margin-left: -15px;
    border: 10px solid transparent;
    border-top: 10px solid #cc0000;
}

.tag-trial2 {
    position: relative;
    padding-top: 40px;
}

.tag-trial2::before {
    position: absolute;
    content: "月あたり483円！";
    background: #cc0000;
    font-size: 18px;
    font-weight:bold;
    color: #fff;
    padding: 5px 10px;
    top: 0;
    width:200px;
}

.tag-trial2::after {
    content: "";
    position: absolute;
    top: 25px;
    left: 80px !important;
    margin-left: -15px;
    border: 10px solid transparent;
    border-top: 10px solid #cc0000;
}

.examplebox {
    display: block;
}

.examplebox .title {
    background: #fffcd6;
    padding: 10px 0;
    text-align: center;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.examplebox .detail {
    background: #fff;
    padding: 25px 25px 25px 45px;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

.i_book,
.i_truck,
.i_money {
    position: relative;
    padding-left: 45px;
}

.i_icon {
    font-size: 18px;
    padding-left: 70px;
}

.i_book::before {
    content: "";
    background: url(/tadabon/images/i_book.png) no-repeat;
    width: 32px;
    height: 32px;
    background-size: 100%;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    margin: auto;
}

.i_truck::before {
    content: "";
    background: url(/tadabon/images/i_truck.png) no-repeat;
    width: 32px;
    height: 32px;
    background-size: 100%;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    margin: auto;
}

.i_money::before {
    content: "";
    background: url(/tadabon/images/i_money.png) no-repeat;
    width: 32px;
    height: 32px;
    background-size: 100%;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    margin: auto;
}

/* -------------------
タブ
---------------------- */

.tab-content {
    display: none;
}

.tab-content p {
    padding: 40px 0;
    font-size: 16px !important;
    font-weight: normal !important;
}

.tab-active {
    display: block;
}

.panel,
.cate-list {
    display: none;
}

.panel.is-show,
.cate-list.is-show {
    display: block;
}

.cate-box {
    height: 30px;
    overflow: hidden;
    margin: 10px 0 15px 0;
}

/* -------------------
注釈
---------------------- */
.notes {
    padding: 1em;
    text-indent: -1em;
}

/* -------------------
リスト
---------------------- */
.disc > li {
    position: relative;
    padding-left: 30px;
    line-height: 1.5;

}

.disc > li + li {
    margin-top: 5px;
}

.disc > li:before {
    display: block;
    content: '';
    position: absolute;
    top: 3px;
    left: 3px;
    width: 15px;
    height: 15px;
    background-color: #999999;
    border-radius: 100%;
}

/* -------------------
ページトップ
---------------------- */
#page-top {
    right: 20px;
    z-index: 999;
}

#page-top a {
    background: #666666;
    text-decoration: none;
    width: 46px;
    height: 24px;
    padding: 12px 0 10px;
    text-align: center;
    display: block;
    border-radius: 5px;
}


/* -------------------
特定位置までスクロールすると要素が追従する処理
---------------------- */

#js-global-nav.is-fixed {
    position: fixed;
    top: 0;
    left: 0;
    background: #fff;
    z-index: 999;
    width: 100%;
    padding: 10px 0;
}

#js-global-nav.is-fixed .searchbox {
    margin: auto;
}

.forPC {
    display: block;
}

.forSP {
    display: none;
}

@media screen and (max-width: 767px) {
    body {
        min-width: inherit;
    }

    header #titleArea {
        display: flex;
        justify-content: space-between;
    }

    header #titleArea h1 {
        text-align: left;
    }

    header #titleArea .btn {
        margin: 10px 0 10px 30px;
    }

    header #titleArea .btn a {
        padding: 5px 20px;
    }

    header #titleArea .btn::after {
        right: 10px;
        width: 6px;
        height: 6px;
    }

    #wrap {
        font-size: 14px;
        font-family: "ヒラギノ角ゴ Pro W3", "メイリオ", "ＭＳ Ｐゴシック", "MS PGothic", Arial, Helvetica, Verdana, sans-serif;
        padding-bottom: 50px;
    }

    .btn {
        width: auto;
    }

    .btn.btn-large {
        width: auto;
        font-size: 20px;
        font-weight: 700;
        padding: 5px 0;
        border-radius: 50px;
    }

    .btn.btn-large span {
        font-size: 12px;
        display: block;
        margin-top: 10px;
    }

    .btn.btn-small {
        width: auto;
    }

    .scroll {
        overflow: scroll;
    }

    .cata-list {
        display: flex;
        margin: 0;
        flex-wrap: nowrap;
        width: 870px;
        margin-top: 20px;
    }

    .cata-list > li {
        width: auto;
        margin-bottom: 10px;
        margin-right: 20px;
    }

    .cata-list > li:last-child {
        margin-right: 0;
    }

    .tab > li {
        font-size: 14px;
    }

    .cata-imgbox {
        display: flex;
        flex-wrap: wrap;
        margin: 25px 0 35px;
    }

    .cata-imgbox > * {
        width: calc((100% / 3) - 14px);
        justify-content: center;
        align-items: center;
        margin: 0 20px 50px 0;
    }

    .cata-imgbox > *:nth-child(3n) {
        margin-right: 0;
    }

    .examplebox .detail {
        padding: 15px;
    }

    .forPC {
        display: none;
    }

    .forSP {
        display: block;
    }
}

#colorbox,
#cboxOverlay,
#cboxWrapper {
    left: 0 !important;
    right: 0;
    margin: auto;
}

.modal-body {
    padding: 30px 20px 20px 20px;
    box-sizing: border-box;
    font-size: 16px;
    font-family: "メイリオ", "ＭＳ Ｐゴシック", "MS PGothic", Arial, Helvetica, Verdana, sans-serif;
}

.login_form {
    margin-bottom: 20px;
    line-height: 1.4;
}

.login_form label {
    margin-right: 10px !important;
    margin-left: -14px;
    font-size: 13px;
}

.login_form label.retention {
    margin-left: 35px;
}

.login_form input {
    width: 230px;
    padding: 5px 8px;
    border: 2px solid #999;
    border-radius: 7px;
    font-size: 20px;
    font-family: "noto sans japanese";
    box-shadow: 2px 3px 5px 1px #dadada inset;
}

.login_form input[type=checkbox] + label:after {
    border: 2px solid #999 !important;
}

button {
    -webkit-appearance: button;
    font: inherit;
}

#colorbox .btn-login {
    background: #fff;
    position: relative;
    border: 2px solid #6cb23c;
    border-radius: 50px;
    padding: 15px 80px;
    font-size: 20px;
    font-family: 'Noto Sans JP', sans-serif;
    color: #6cb23c;
    margin-top: 20px;
    box-shadow: 2px 3px 5px 1px #dadada inset;
    -webkit-appearance: button;
    letter-spacing: 0.5;
}

#colorbox .btn-login::after {
    content: "";
    display: block;
    width: 8px;
    height: 8px;
    border-top: solid 3px #6cb23c;
    border-right: solid 3px #6cb23c;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    margin: auto;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 30px;
}

.linkarea {
    margin-top: 20px;
    text-align: left;
    width: 300px;
    margin: 20px auto 0;
    text-align: center;
}

.linkarea p a {
    font-size: 13px;
    color: #000;
    text-decoration: underline;
    position: relative;
    display: inline;
    padding-right: 15px;
}

.linkarea p a::after {
    content: "";
    display: inline-block;
    width: 8px;
    height: 8px;
    border-top: solid 2px #000;
    border-right: solid 2px #000;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    margin: auto;
    position: absolute;
    top: 0;
    bottom: 0;
}

.linkarea p + p {
    margin-top: 10px;
}

#cboxClose {
    display: none !important;
}

.btn_close {
    background: transparent;
    border: 0;
    position: absolute;
    top: 0;
    right: 5px;
    color: #666;
    font-size: 24px;
    font-weight: bold;
    z-index: 99999;
}

#colorbox {
    border-radius: 10px !important;
    border: solid 10px #fff;
    background: #fff !important;
}

#cboxTopLeft,
#cboxTopCenter,
#cboxTopRight,
#cboxBottomLeft,
#cboxBottomCenter,
#cboxBottomRight,
#cboxMiddleRight,
#cboxMiddleLeft {
    background: none !important;
    height: 0 !important;
    width: 0 !important;
}

.tag-trial2 {
}

.tag-trial2::before {
    font-size: 14px;
    padding: 5px;
    top: 0;
    width:120px;
}

.tag-trial2::after {
    top: 27px;
}

@media screen and (max-width: 767px) {
    .modal-body {
        padding: 40px 15px 15px 15px;
    }

    #colorbox .btn-login {
        padding: 15px 80px;
        font-size: 16px;
    }
}
