@charset "UTF-8";

/**
 * Common
 */

/* Screen reader text */
.screen-reader-text {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Pagination */
.pagination {
    margin: 2rem 0 3rem;
    text-align: center;
}


/* Button Navigation */
.nav-btn {
    border: 2px solid #01218A;
    padding: .5rem 1rem;
    margin: 0 .5rem;
}

.btn-brand {
    padding: .75rem 1.5rem;
}

/* Button */
.cta-btn {
    margin-top: 2rem;
}
.cta-btn a {
    background: #ff6501;
    color: #ffffff;
    font-weight: 700;
    padding: .75rem 1.5rem;
    border-radius: 3px;
}
.facebook-btn a {
    background: #01218A;
}

/*
 * Heading
 */
.section-title {
    margin-bottom: 2rem;
    text-align: center;
    font-size: 3rem;
    font-weight: 700;
}

@media screen and (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
}


/**
 * Banner Badges
*/
.badge {
    position: absolute;
    top: 15px;
    left: -5px;
    display: inline-block;
    padding: .1rem 1rem;
    margin-bottom: .5rem;
    line-height: 1.7 !important;
}
.badge:after {
    content: "";
    position: absolute;
    top: 0;
    right: -15px;
    width: 8px;
    height: 0;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
}

@media screen and (max-width: 768px) {
    .badge {
        top: 5px;
        font-size: .8rem;
        padding: .1rem .6rem;
    }
    .badge:after {
        border-top-width: 12px;
        border-bottom-width: 12px;
    }
}

.single-stock_list .badge {
    position: relative;
    top: 0;
    left: 0;
}

/* New badge & Promotion badge */
.new-badge,
.price-down-badge {
    color: #fff;
    background: #ff6501;
}
.new-badge:after,
.price-down-badge:after {
    border-left: 8px solid #ff6501;
}

/* Sold out badge */
.out-of-stock-badge {
    color: #fff;
    background: #2b2b2b;
}
.out-of-stock-badge:after {
    border-left: 8px solid #2b2b2b;
}

/**
 * Premium badge
**/
.premium-badge {
    position: absolute;
    bottom: 6px;
    right: 6px;
    width: 60px;
}

.single-stock_list .premium-badge {
    top: -10px;
    right: 0;
    width: 80px;
}


@media screen and (max-width: 768px) {
    .premium-badge {
        bottom: 3px;
        right: 3px;
        width: 45px;
    }
    .single-stock_list .premium-badge {
        top: -45px;
    }
}


/*
 * Entry Header
 */
#entryHeader .pageTitle {
    padding: 2rem 0;
    font-size: 3.5em;
}

@media screen and (max-width: 768px) {
    #entryHeader .pageTitle {
        padding: 1rem 0;
        font-size: 2.5em;
    }
}



/**
 * Layouts
 */

#contents {
    padding: 3rem 0 0;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
}

.cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.cards:before {
    content: "";
    display: block;
    width: 23%;
    order: 1;
}
.cards:after {
    content: "";
    display: block;
    width: 23%;
}

.premium .section-title {
    margin-bottom: 1rem;
}
.premium .section-title + .cards,
.premium .cards_excerpts + .cards {
    margin-top: 2rem;
}

.premium .cards_excerpts {
    margin: 0 auto 2rem;
    max-width: 700px;
}
.premium .goto-btn {
    margin: 0 0 2rem;
}
.premium .btn-brand {
    color: #01218A;
    background: #fff;
    border: 2px solid #01218A;
}
.premium .btn i {
    color: #01218A;
}

.premium .cards {
    justify-content: space-evenly;
}
.premium .cards:before {
    display: none;
}
.premium .cards:after {
    display: none;
}

.card {
    flex: 0 0 23%;
    margin-bottom: 1.5rem;
}


@media screen and (max-width: 768px) {
    .single-stock_list #contents {
        padding: 0;
    }
    .container {
        width: 90%;
        margin: 0 auto;
    }
    .premium .cards {
        justify-content: space-between;
    }
    .card {
        flex: 0 0 47%;
    }
}

/* End Layout */

/**
 * Card
**/
.card .visual {
    position: relative;
    margin-bottom: .5rem;
}
.card .description {
    text-align: center;
    line-height: 1.4;
}
.card .title {
    font-size: 1.2rem;
    font-weight: 700;
}
.card .prop .label {
    font-size: .9rem;
}

@media screen and (max-width: 768px) {
    .card .description {
        font-size: .8rem;
        line-height: 1.25;
    }
    .card .title {
        font-size: 1rem;
    }
    .card .prop .label {
        font-size: .7rem;
    }
}

/* End Card*/




/**
 * Top
 */

.goto-btn  {
    margin: 2rem 0 4rem;
    text-align: center;
}


@media screen and (max-width: 768px) {
    .goto-btn {
        margin: 1.5rem 0 1.5rem;
    }
}


/**
 * Header
 */

.page-header {
    margin-top: 85px;
    background: #e9ecf6 url(../images/title_bg.png) no-repeat right 1.5em bottom;
    padding: 2rem 0;
}
.page-header .title {
    font-size: 2.5rem;
    font-weight: 700;
}

/*
 * Home
 */
#main_visual p {
    z-index: 10;
}



/* Footer */
#ft_contact {
    padding: 3rem 0 2rem;
}

/**
 * Post
 */

.post .entry-content a {
    color: darkblue;
    text-decoration: underline;
}

.post-separator {
    max-width: 36.25rem;
    width: calc(100% - 4rem);
    margin: 0 auto;
}

.single #site-content {
    margin-bottom: 4rem;
}

.post #entryHeader {
    padding: 2rem 0;
}

.blog .post,
.archive .post {
    padding: 2rem 0;
}

.blog .entry-header,
.archive .entry-header {

}

.post .entry-header-inner {
    margin: 0 auto;
}

.post .entry-categories {
    font-size: 1.25rem;
}
.post .entry-title {
    font-weight: 700;
    font-size: 2.5rem;
    margin-bottom: .5rem;
    line-height: 1.25;
}

.post .post-inner {
    max-width: 36.25rem;
    width: calc(100% - 4rem);
    margin: 2rem auto;
}
.post .entry-content {
    text-align: left;
    font-size: 1.25rem;
}
.post .entry-content h1,
.post .entry-content h2,
.post .entry-content h3,
.post .entry-content h4,
.post .entry-content h5 {
    font-weight: 700;
}
.post .entry-content h1 {
    font-size: 2.5rem;
}
.post .entry-content h2 {
    font-size: 2rem;
}
.post .entry-content h3 {
    font-size: 1.5rem;
}
.post .entry-content h4 {
    font-size: 1.25rem;
}
.post .entry-content h5,
.post .entry-content h6 {
    font-size: 1rem;
}
.post .entry-content > * {
    margin-bottom: 1rem;
}

.footer-widgets-outer-wrapper {
    max-width: 36.25rem;
    width: calc(100% - 4rem);
    margin: 2rem auto;
    padding: 2rem 0 1rem;
    border-top: 1px solid lightgrey;
}
.footer-widgets-wrapper {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 40px;
}
.footer-widgets {
    flex: 1;
    text-align: left;
}
.footer-widgets .widget-title {
    font-weight: 700;
    font-size: 1.5rem;
}




/*
 * Stock List Single Page
*/

/* general */
.single-stock_list .inner {
    overflow: visible;
}
.single-stock_list .row {
    display: flex;
    flex-direction: row;
    gap: 3%;
}
.single-stock_list .column.image {
    flex: 3;
}
.single-stock_list .column.desc {
    flex: 2;
}
#contents .column {
    margin-bottom: 4rem;
}
#contents .column.desc {
    overflow: visible;
    position: relative;
}

/* header */
.single-stock_list .desc {
    line-height: 1.25;
}
.single-stock_list .stock-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: .5rem;
}
.single-stock_list .price {
    margin-bottom: 1.5rem;
    margin-top: 1rem;
    font-size: 20px;
    line-height: 1.5;
}
.single-stock_list .specs {
    margin-bottom: 1rem;
}
.single-stock_list .specs .row {
    padding: .5rem 0;
    border-bottom: 1px solid #d0d0d0;
}
.single-stock_list .specs .row:first-child {
    border-top: 1px solid #d0d0d0;
}
.single-stock_list .specs .row .label {
    flex: 0 0 24%;
}
.single-stock_list .specs .more {
    font-size: .875rem;
    margin-top: .25rem;
}
.single-stock_list .specs .more a {
    text-decoration: underline;
    font-weight: 700;
}
.single-stock_list .description {
    line-height: 1.5;
}

/* Slider */
.single-stock_list .new-slider {
    margin-bottom: 2px;
}
.single-stock_list .new-slider-nav .photo {
    margin: 0 1px;
}
.single-stock_list .slick-next {
    right: 20px;
}
.single-stock_list  .slick-prev {
    left: 10px;
}
.single-stock_list .slick-prev:before,
.single-stock_list .slick-next:before {
    color: #ffffff;
    font-size: 30px;
}

/* Details */
.single-stock_list .details {
    max-width: 640px;
    margin: 0 auto 3rem;
}
.single-stock_list .details p {
    margin: 1.5rem 0;
}
.single-stock_list .details p img {
    display: block;
    max-width: 560px;
    margin: 0 auto;
}

/* Inspection report */
.single-stock_list .reports {
    margin: 0 auto 3rem;
    max-width: 600px;
}
.single-stock_list .pdfemb-viewer {
    margin: 1rem auto 2rem;
}
.single-stock_list .cta-pdf {
    text-align: center;
}

/* foot nav */
.foot-nav {
    margin: 5rem 0 3rem;
    text-align: center;
}

/* Subscription form */
.footer-sub {
    background: #e9ecf6;
    padding: 3rem 0;
}

.footer-sub .title {
    font-size: 2.4rem;
    font-weight: 700;
    line-height: 1.2;
}
.footer-sub .copy {
    font-size: 1.8rem;
    line-height: 1.2;
    margin-bottom: 2rem;
}

.footer-sub p.sib-email-area {
    position: relative;
    width: 500px;
    margin: 0 auto;
}

.footer-sub input[type="email"] {
    display: inline-block;
    width: 100%;
    height: 40px;
    box-sizing: border-box;
    outline: none;
    border: 1px solid lightgrey;
    border-radius: 3px;
    padding: 10px 10px 10px;
    transition: all .1s ease-out;
    font-size: 1.25rem;
    background: #ffffff;
}
.footer-sub input[type="email"] + label {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    height: 40px;
    line-height: 40px;
    color: #fff;
    border-radius: 3px 0 0 3px;
    padding: 0 20px;
    background: #ff6501;
    transform: translateZ(0) translateY(0);
    transition: all .3s ease-in;
    transition-delay: .2s;
    font-weight: 700;
}
.footer-sub input[type="email"]:focus + label {
    transform: translateY(-80%) translateX(-10%);
    border-radius: 3px;
    transition: all .1s ease-out;
    background: transparent;
    color: #ff6501;
}
.footer-sub input[type="email"]:focus {
    padding: 10px;
    transition: all .3s ease-out;
    transition-delay: .2s;
}
.footer-sub input[type="email"] ~ input[type="submit"] {
    margin: 1rem 0 0;
    padding: 0 40px;
    border: 1px solid lightgrey;
    border-radius: 3px;
    height: 40px;
    transform: scale(1);
    transition: all .3s ease-out;
}
.footer-sub input[type="email"]:focus ~ input[type="submit"] {
    background: #ff6501;
    color: #ffffff;
    font-weight: 700;
    cursor: pointer;
    transform: scale(1.1);
    transition: all .3s ease-out;
}


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

    .footer-widgets-wrapper {
        flex-direction: column;
    }

    .footer-sub p.sib-email-area {
        width: 95%;
    }

    .stocklist #contents {
        margin-bottom: 4rem;
    }


    .stock-list {
        display: block;
    }

    .single-stock_list .inner {
        width: 100%;
        margin: 0;
    }
    .tax-stock_category #entryHeader,
    .single-stock_list #entryHeader {
        /*margin-top: 70px;*/
    }
    .tax-stock_category #entryHeader .pageTitle,
    .single-stock_list #entryHeader .pageTitle {
        font-size: 2.5rem;
        padding: .5rem 0;
    }

    .single-stock_list .row {
        flex-direction: column;
        /*width: 100%;*/
        /*margin: 0 auto;*/
    }

    .single-stock_list .new-slider-nav {
        display: none;
    }

    .single-stock_list .column.desc,
    .single-stock_list .main-content {
        width: 90%;
        margin: 0 auto;
    }

    .single-stock_list .details p img {
        width: 100%;
    }

    .single-stock_list .details .iframe-wrapper {
        position: relative;
        padding-bottom: 56.25%;
        height: 0;
        overflow: hidden;
    }
    .single-stock_list .iframe-wrapper iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }

    /* フッター */
    #ft_contact {
        padding: 1rem 0 2.5rem;
    }
}

/* Admin bar */
body {
    position: relative;
}
#header {
    margin-top: 0;
    top: -85px;
}
@media screen and (max-width: 782px) {
    html #wpadminbar {
        position: fixed;
    }
    #mobile-head {
        top: 85px;
        border-bottom: 1px solid #ddd;
    }
    .admin-bar #mobile-head {
        top: 131px;
    }
    /* nav */
    .open #nav {
        transform: translateY(656px);
    }
    .admin-bar .open #nav {
        transform: translateY(702px);
    }
}