@charset "shift-jis";
body{
    font-family: Helvetica, Arial, 'ƒqƒ‰ƒMƒmŠpƒSƒVƒbƒN Pro', 'Hiragino Kaku Gothic Pro', system-ui, sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.6;
}
*,
*::before,
*::after{ box-sizing: border-box;}

.pages{
    width: 100%;
    overflow: hidden;
}

.main {
    background-color: rgba(57, 138, 170, .1);
    margin-top: 50px;
    padding-top: 94px;
}

a { color: #00388C; }
a[href^="tel:"] { pointer-events: none; }

img {
    max-width: 100%;
    height: auto;
    text-align : center
}

.mt100{ margin-top: 100px;}
.mb10{ margin-bottom: 10px !important;}
.mb20{ margin-bottom: 20px !important;}
.mb30{ margin-bottom: 30px !important;}
.mb40{ margin-bottom: 40px !important;}
.pt0{padding-top: 0 !important;}
.pb0{padding-bottom: 0 !important;}

.txt_s{ font-size: .85em;}
.txt_l{ font-size: 1.3em;}
.txt_orange{ color: #EE764E;}
.txt_fanvy{ color: #1c236d;}

.marker{ border-bottom: 2px solid #1c236d;}
.marker2 {
    background: linear-gradient( rgba(255, 242, 160, 0) 20%, rgba(215, 186, 65, 0.3) 20% );
    padding: 2px;
}

.btn{
    display: block;
    background: #e10f40;
    border-radius: 4px;
    font-size: 18px;
    text-align: center;
    text-decoration: none;
    padding: 20px 35px;
    width: 85%;
    max-width: 500px;
    margin: 0 auto;
    position: relative;
}
.btn:link,
.btn:visited,
.btn:active,
.btn:hover{ color: #fff;}
.btn::after{
    font-family: "Font Awesome 5 Free";
    content: "\f138";
    font-size: 1.3em;
    font-weight: 900;
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
}

.inner{
    width: 94%;
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 0;
}
.normal{
    font-size: 1em;
    font-weight: normal;
    text-align: left;
    margin: 0;
    padding: 0;
    letter-spacing: 0;
}

.ttl{
    font-size: 50px;
    font-weight: 700;
    letter-spacing: -.01em;
    text-align: center;
    margin-bottom: 1em;
}

p{
    line-height: 1.8;
    margin-bottom: 1em;
}


@media screen and (min-width: 1000px) {
    .sp {display: none;}
    .tab {display: none;}
    .pc {display: block;}
}

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

@media screen and (min-width: 600px) and (max-width: 999px) {
    .sp {
        display: none;
        height: 400px;
    }
    .pc {display: none;}
    .tab {display: block;}

    .inner{ padding: 50px 0;}
}

@media screen and (max-width: 599px) {
    body{ font-size: 14px;}
    
    .tab {display: none;}
    .pc {display: none;}
    .sp {display: block;
        max-width: 100%;
        height: 400px;
    }

    .btn{
        font-size: 14px;
        padding: 20px 30px 20px 20px;
    }

    .inner{ padding: 40px 0;}
    .ttl{ font-size: 26px;}
}


/* ==============================
   header
============================== */
header{
    width: 100%;
    background: #fff;
    position: fixed;
    top: 0;
    z-index: 101;
}
header .inner{
    display: flex;
    justify-content: space-between;
    padding: 0;
    position: relative;
}
header .logo{
    height: 50px;
    display: flex;
    align-items: center;
}
header .logo img{
    width: 100%;
    max-width: 228px;
    height: auto;
    vertical-align: middle;
}
header #h_nav{
    display: flex;
    align-content: center;
    font-size: 16px;
}

header #h_nav .btn_menu {
    position: relative;
    width: 50px;
    height: 50px;
    transition: all .4s;
}
header #h_nav .btn_menu > p{ opacity: 0;}
header #h_nav .btn_menu span {
    display: inline-block;
    transition: all .4s;
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    width: 33%;
    height: 1px;
    background-color: #333;
}
header #h_nav .btn_menu span:nth-of-type(1) {
    top: 33%;
}
header #h_nav .btn_menu span:nth-of-type(2) {
    top: 50%;
}
header #h_nav .btn_menu span:nth-of-type(3) {
    bottom: 33%;
}
header #h_nav .btn_menu.active span:nth-of-type(1) {
    -webkit-transform: translateY(8px) rotate(-45deg);
    transform: translateY(8px) rotate(-45deg);
}
header #h_nav .btn_menu.active span:nth-of-type(2) {
    opacity: 0;
}
header #h_nav .btn_menu.active span:nth-of-type(3) {
    -webkit-transform: translateY(-8px) rotate(45deg);
    transform: translateY(-8px) rotate(45deg);
}

header #h_nav ul{
    display: none;
    width: 250px;
    position: absolute;
    top: 50px;
    right: 0;
    background: #fff;
    padding: 0 15px;
    margin-left: 0;
    color: #1c2569;
    list-style: none;
}
header #h_nav li{
    font-size: 12px;
    padding-left: 15px;
    padding-bottom: 25px;
    position: relative;
}
header #h_nav li::before{
    content: "";
    width: 10px;
    height: 1px;
    position: absolute;
    top: .75em;
    left: 0;
    background: #1c2569;
}
header #h_nav li a{
    display: block;
    text-decoration: none;
    color: #333;
}


/* ==============================
   .contents
============================== */
.contents{
    width: 90%;
    max-width: 1000px;
    margin: 10px auto;
    background-color: #fff;
    box-shadow: 0 3px 6px rgb(0 0 0 / 15%);
    border-radius: 15px;
    padding: 84px 50px 56px;
    position: relative;
}
@media screen and (max-width: 599px) {
    .contents{
        padding: 77px 20px 35px;
    }
}

/* .ttl_baloon */
.ttl_baloon{
    width: fit-content;
    background-color: #fff;
    border: 2px solid #000;
    border-radius: 10px;
    font-size: 20px;
    font-weight: bold;
    padding: 20px 45px 10px;
    text-align: center;
    margin: auto;
    margin-bottom: 15px;
    position: relative;
}
.ttl_baloon::before{
    content: "";
    border-top: 16px solid #000;
    border-right: 8px solid transparent;
    border-left: 8px solid transparent;
    position: absolute;
    bottom: -16px;
    left: 50%;
    transform: translateX(-50%);
}
.ttl_baloon::after{
    content: "";
    border-top: 16px solid #fff;
    border-right: 8px solid transparent;
    border-left: 8px solid transparent;
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
}
.ttl_baloon .sub{
    background-color: #000;
    border-radius: 2em;
    color: #fff;
    font-size: 16px;
    padding: 3px 12px;
    min-width: 250px;
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
}
.ttl_baloon .num{
    background-color: #398AAA;
    border: 1px solid;
    border-radius: 100%;
    font-family: 'Josefin Slab', serif;
    font-size: 25px;
    line-height: 1;
    margin-left: 23px;
    display: inline-flex;
    width: 37px;
    height: 37px;
    justify-content: center;
    align-items: center;
    vertical-align: 3px;
}
@media screen and (max-width: 599px) {
    .ttl_baloon{
        font-size: 16px;
        width: 90%;
        padding: 20px 10px 10px;
    }
    .ttl_baloon .num{
        margin-left: 15px;
    }
}

/* .page_ttl */
.ttl_baloon.page_top{
    position: absolute;
    top: -42px;
    left: 50%;
    transform: translateX(-50%);
}
.page_ttl{
    font-size: 33px;
    font-weight: normal;
    text-align: center;
    margin-bottom: 1.4em;
}
.page_ttl .marker{
    border: 0;
    background: linear-gradient(rgba(0,0,0,0) 52%, rgba(252, 224, 3, .5) 52%);
    padding: 0 5px 10px;
}
@media screen and (max-width: 599px) {
    .page_ttl {
        font-size: 20px;
    }
    .page_ttl .marker{
        padding-bottom: 3px;
    }
}

/* .profile */
.profile table{
    border-collapse: separate;
    border-spacing: 0 12px;
}
.profile tr{
    position: relative;
}
.profile tr::after{
    content: "";
    width: 100%;
    height: 1px;
    display: block;
    border-bottom: 1px solid;
    position: absolute;
    left: 0;
    right: 0;
    bottom: -6px;
    margin: auto;
}
.profile th{
    font-weight: normal;
    text-align: left;
}
.profile td{
    border-left: 1px solid;
    padding: 0 10px;
}
.profile .alignC{
    text-align: center;
}
.profile table .name{
    font-size: 20px;
    margin-right: 1em;
}
@media screen and (min-width: 600px) {
    .profile{
        display: flex;
        justify-content: center;
        align-items: center;
        margin-bottom: 80px;
    }
    .profile table{
        margin-left: 46px;
    }
    .profile th{
        padding: 0 10px;
    }
}
@media screen and (max-width: 599px) {
    .profile{
        margin-bottom: 40px;
    }
    .profile img{
        width: 130px;
        display: block;
        margin: auto;
    }
    .profile table{
        margin: auto;
    }
    .profile table .name{
        margin-right: 10px;
    }
}

/* .img_left */
.img_left .img figcaption{
    color: #398AAA;
    font-size: 12px;
}
@media screen and (min-width: 600px) {
    .img_left{ overflow: hidden;}
    .img_left .img{
        float: left;
        margin-right: 57px;
    }
}
@media screen and (max-width: 599px) {
    .img_left{
        margin-top: 40px;
    }
    .img_left .img{
        margin-bottom: 26px;
    }
}

/* .book */
.book{
    clear: both;
    margin-top: 70px;
}
.book .ttl_baloon{
    font-size: 16px;
    font-weight: normal;
}
.book_data{
    margin-top: 45px;
}
.book .btn_amazon{
    display: block;
    width: fit-content;
    color: #398AAA;
    background-color: #fff;
    border: 1px solid;
    border-radius: 5px;
    padding: 12px 20px;
}
.book .btn_amazon::after{
    content: "";
    display: inline-block;
    width: 20px;
    height: 20px;
    background: url(/parallelincome/img/story/icn_window.svg) center/contain no-repeat;
    margin-left: 15px;
    vertical-align: -2px;
}
.book .btn_amazon:hover{
    text-decoration: none;
    opacity: .7;
}
@media screen and (min-width: 600px) {
    .book .ttl_baloon{
        min-width: 600px;
    }
    .book_data{
        display: flex;
        justify-content: center;
    }
    .book_data img{
        margin-right: 30px;

    }
}
@media screen and (max-width: 599px) {
    .book .ttl_baloon {
        width: 100%;
        font-size: 14px;
    }
    .book_data{
        text-align: center;
    }
    .book_data img{
        display: block;
        margin: 0 auto 26px;
    }
    .book .btn_amazon{
        margin: auto;
    }
}


/* ==============================
   .story
============================== */
.story{ background-color: #EBF3F6;}
.story .ttl{ font-size: 40px;}
.story .lead{
    font-size: 14px;
    font-weight: 500;
    text-align: center;
    margin-bottom: 45px;
}

.list_story .story_box a{
    color: #333;
    text-decoration: none;
}
.list_story .story_box a:hover,
.list_story .story_box a:hover *{ opacity: .7;}
.list_story .story_box{
    background-color: #fff;
    box-shadow: 0 5px 15px rgb(0 0 0 / 15%);
    border-radius: 15px;
    overflow: hidden;
    padding: 15px;
    margin: 0 15px 15px;
}
/* .list_story .box_txt{ padding: 25px;} */
.list_story .box_txt h3{
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 1em;
}
.list_story .box_txt .num{
    display: block;
    font-family: 'Josefin Slab', serif;
    color: #398AAA;
    font-size: 20px;
    line-height: 1.2;
    text-align: center;
    margin: 13px 0;
}
.story_slick .slick-dots li button:before {
    font-family: inherit;
    content: "\025cf";
    font-size: 15px;
}
.story_slick .slick-prev {
    left: -15px;
}
.story_slick .slick-next {
    right: -15px;
}
.story_slick .slick-prev::before,
.story_slick .slick-next::before {
    content: "";
    color: #707070;
    border-left: 2px solid;
    border-bottom: 2px solid;
    width: 10px;
    height: 10px;
    padding: 8px;
    display: block;
}
.story_slick .slick-prev::before {
    transform: rotate(45deg);
}
.story_slick .slick-next::before {
    transform: rotate(225deg);
}
@media screen and (max-width: 599px) {
    .story .ttl{ font-size: 26px;}

    .list_story{
        width: 87%;
        margin: 0 auto;
    }
}
