/* base **/
html {
    font-size: 62.5%;
}

html.parent {
    overflow: hidden;
}

:root {
    --color-red: #cc0000;
    --color-green: #00a040;
    --color-gray: #f3f3f3;
    --color-black: #333333;
    --color-bgblack: #111111;
    --color-border: #cccccc;
    --color-price: #999999;
    --font-sp-xx-large: clamp(2.1rem, 6vw, 2.7rem);
    --font-sp-x-large: clamp(1.82rem, 5.2vw, 2.34rem);
    --font-sp-large: clamp(1.68rem, 4.8vw, 2.16rem);
    --font-sp-normal: clamp(1.4rem, 4vw, 1.8rem);
    --font-sp-small: clamp(1.33rem, 3.8vw, 1.71rem);
    --font-sp-x-small: clamp(1.225rem, 3.5vw, 1.575rem);
    --font-sp-date: clamp(1.225rem, 3.5vw, 1.575rem);
    --font-pc-normal: 1.6rem;
    --font-pc-small: 1.4rem;
    --font-pc-x-small: 1.2rem;
    --font-pc-date: 1.2rem;
}

body {
    background: #ffffff;
    position: relative;
}

body,
th,
td,
li,
dt,
dd,
input,
select,
a,
p,
div,
span,
textarea,
h1,
h2,
h3,
h4,
h5,
h6,
label,
button {
    font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "MS Pゴシック", "MS PGothic", sans-serif;
}

body,
th,
td,
li,
dt,
dd,
input,
select,
p,
div,
span,
textarea,
h1,
h2,
h3,
h4,
h5,
h6,
label,
button {
    color: var(--color-black);
}

@media (max-width : 767px) {

    body,
    th,
    td,
    li,
    dt,
    dd,
    input,
    select,
    a,
    p,
    div,
    span,
    textarea,
    h1,
    h2,
    h3,
    h4,
    h5,
    h6,
    label,
    button {
        font-size: var(--font-sp-normal);
    }

    p {
        padding-bottom: 1.5em;
    }
}

@media (min-width : 768px) {

    body,
    th,
    td,
    li,
    dt,
    dd,
    input,
    select,
    a,
    p,
    div,
    span,
    textarea,
    h1,
    h2,
    h3,
    h4,
    h5,
    h6,
    label,
    button {
        font-size: var(--font-pc-normal);
    }

    p {
        padding-bottom: 2em;
    }
}

a {
    outline: none;
    text-decoration: none;
    color: var(--color-black);
}

a:hover {
    text-decoration: none;
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
}

p {
    line-height: 150%;
    word-wrap: break-word;
}

hr {
    border: none;
    border-bottom: 1px solid var(--color-black);
    margin-top: 1em;
    margin-bottom: 1em;
}

ol li {
    list-style-type: decimal;
}

ol li ol li {
    list-style-type: upper-alpha;
}

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

figure {
    margin: 0;
    padding: 0;
}

.img-fulid {
    width: 100%;
    height: auto;
}

.float-none {
    float: none !important;
    max-width: 100% !important;
}

:focus {
    outline: none;
}

@font-face {
    font-family: 'icomoon';
    src: url('../fonts/icomoon.eot?b91hdw');
    src: url('../fonts/icomoon.eot?b91hdw#iefix') format('embedded-opentype'),
        url('../fonts/icomoon.ttf?b91hdw') format('truetype'),
        url('../fonts/icomoon.woff?b91hdw') format('woff'),
        url('../fonts/icomoon.svg?b91hdw#icomoon') format('svg');
}

.clearfix::after {
    content: '';
    display: block;
    clear: both;
}

/* もっと見るボタン */
.btn_nextpage {
    margin-top: 1em;
    text-align: center !important;
}

main {
    padding-bottom: 30px;
}

main ol {
    padding-left: 1em;
}

main ol li {
    line-height: 1.6em;
}

.smartBody {
    background-color: #333333;
}

/*-----------------------------------------
エラーページ
------------------------------------------*/
.backbtn {
    background-color: var(--color-green);
    color: white;
    padding: 10px;
    margin: -20px auto 50px auto;
    display: block;
    border-radius: 50px;
    max-width: 160px;
    text-align: center;
}

/*-----------------------------------------
master-layout-control
------------------------------------------*/
.wrapper {
    box-sizing: border-box;
    min-height: 100vh;
    padding-bottom: 76px;
}

@media (max-width : 768px) {
    .wrapper {
        padding-bottom: 160px;
    }
}

.container,
.container-full {
    width: 100%;
    margin-right: auto;
    margin-left: auto;
}


/* レイアウト追記 */
.row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -20px;
    margin-left: -20px;
}

.post-content a {
    color: var(--color-green);
}

.post-caption {
    font-size: 1.3rem !important;
    text-align: left !important;
    padding: 5px 0 !important;
}

.post-content a:hover {
    text-decoration: underline;
}

.saishin-1column {
    padding: 25px;
}

.saishin-1column h1 {
    font-size: var(--font-sp-x-large);
    margin-top: 15px;
    margin-bottom: 35px;
}

@media (max-width: 767px) {
    .saishin-base {
        display: block;
        margin-top: 4vw;
    }

    .container {
        padding-right: 4vw;
        padding-left: 4vw;
    }

    .sp-only {
        display: block !important;
    }

    .pc-only {
        display: none !important;
    }
}

@media (min-width: 768px) {
    .saishin-base {
        display: grid;
        grid-template-columns: 728px 300px;
        grid-column-gap: 32px;
        margin-left: auto;
        margin-right: auto;
    }

    .container {
        width: 1100px;
        padding-left: 20px;
        padding-right: 20px;
    }

    .container-full {
        min-width: 1100px;
    }

    .sp-only {
        display: none !important;
    }

    .pc-only {
        display: block !important;
    }
}
.w100{
    width: 100%;
}
.flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.flex-wrap {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.flex-middle {
    /* Safari */
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.flex-center {
    /* Safari */
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.flex-right {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

.flex-between {
    /* Safari */
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

@media (max-width: 767px) {
    .flex-sp {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }
}

@media (min-width : 768px) {
    .flex-pc {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }
}

/*-----------------------------------------
text-direction & color
------------------------------------------*/
.text-left {
    text-align: left;
}

.text-center {
    text-align: center;
}

.text-right {
    text-align: right;
}

.newsdate {
    color: #999999;
    text-align: right;
}

.red {
    color: var(--color-red);
}

.bg-gray {
    background-color: var(--color-gray);
}

.bg-ad {
    background-color: #eeeeee;
}

/*-----------------------------------------
header
------------------------------------------*/
header {
    background: #ffffff;
    z-index: 999;
}

@media (max-width : 767px) {
    header {
        height: 48px;
        position: -webkit-sticky;
        position: sticky;
        top: 0;
        -webkit-box-shadow: 0px 2px 6px -1px rgba(0, 0, 0, 0.1);
        box-shadow: 0px 2px 6px -1px rgba(0, 0, 0, 0.1);
    }

    .header-container {
        display: grid;
        grid-template-columns: 1fr 40px;
        grid-column-gap: 8px;
        height: 48px;
        padding-left: 4vw;
        padding-right: 50px;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }

    .header-logo {
        padding-top: 6px;
        padding-bottom: 6px;
        padding-right: 6vw;
    }

    .header-logo img {
        width: auto;
        max-height: 32px;
    }

    .header-subcontent {
        display: none;
    }

    .header-sp-subcontent {
        width: 85px;
        height: 48px;
        display: grid;
        grid-template-columns: repeat(2, 48px);
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }

    .sp-weather {
        width: 48px;
        height: 48px;
    }

    .sp-navi {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }

    .sp-searchwrap {
        width: 48px;
    }

    #sp-search {
        display: none;
        cursor: pointer;
    }

    .sp-search-open {
        display: block;
        width: 48px;
        height: 48px;
        text-align: center;
    }

    /* 天気ウィジェット -SP */
    .header-sp-weather {
        position: fixed;
        top: 9px;
        right: 95px;
    }

    .sp-search-open:before {
        font-family: 'icomoon';
        content: "\f002";
        color: var(--color-green);
        width: 48px;
        height: 48px;
        line-height: 48px;
        font-size: 24px;
        text-align: center;
    }

    .sp-search-inner {
        display: none;
    }

    .sp-search-inner .search-submit {
        background-color: #EFEFEF;
    }

    #sp-search:checked~.sp-search-inner {
        display: block;
        position: absolute;
        top: 48px;
        left: 0;
        width: 100vw;
        height: 48px;
        background-color: var(--color-green);
        padding: 8px 5vw;
        text-align: center;
    }

    .sp-search-inner input {
        border: none;
        height: 32px;
        border-radius: 4px;
    }
}

@media (min-width : 768px) {
    .header-container {
        height: 150px;
        margin-top: 10px;
        display: grid;
        grid-template-columns: 220px 0px;
        grid-column-gap: 30px;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }

    .header-logo {
        height: 55px;
        grid-area: 1 / 1 / 3 / 2;
        padding-bottom: 10px;
    }

    .header-ad {
        grid-area: 1 / 2 / 2 / 3;
    }

    .header-subcontent {
        height: 60px;
        grid-area: 2 / 2 / 3 / 3;
    }

    .header-sp-subcontent {
        display: none;
    }

    .header-submenu a {
        display: block;
        position: relative;
        font-size: var(--font-pc-small);
        padding-right: 1em;
        white-space: nowrap;
    }

    .header-submenu a:after {
        content: "|";
        position: relative;
        padding-left: 1em;
    }

    .header-submenu a:last-child:after {
        content: "";
    }

    .gHeader-top-search {
        display: flex !important;
    }

    .header-search .search-input {
        height: 32px;
        border: 1px solid var(--color-border);
        border-radius: 4px;
        width: 190px;
        margin-right: 10px;
    }

    .header-search .search-submit {
        border: none;
        text-indent: 1000%;
        white-space: nowrap;
        overflow: hidden;
        cursor: pointer;
        width: 32px;
        height: 32px;
        border-radius: 4px;
        background-color: var(--color-green);
        background-image: url(../images/icon-search.svg);
        background-repeat: no-repeat;
        background-position: center center;
    }

    .header-search .search-submit:hover {
        background-color: var(--color-black);
    }
}

/*-----------------------------------------
pc-navi
------------------------------------------*/
@media (min-width : 768px) {
    .pc-navi {
        height: 40px;
        background-color: var(--color-green);
        position: -webkit-sticky;
        position: sticky;
        top: 0px;
        z-index: 998;
    }

    .pc-navi-list {
        list-style-type: none;
        width: 12.5%;
    }

    ul.pc-navi-box li a,
    ul.pc-navi-box li .nav-open {
        height: 40px;
        padding-top: 12px;
        display: block;
        color: #ffffff;
        text-align: center;
    }

    ul.pc-navi-box li a:hover,
    ul.pc-navi-box li .nav-open:hover {
        background-color: var(--color-black);
    }

    .pc-navi-has-child {
        position: relative;
        z-index: 100;
    }

    .nav-open:before {
        font-family: 'icomoon';
        content: "\f0d7";
        position: absolute;
        color: #ffffff;
        top: 12px;
        left: 6px;
    }

    .nav-open.active:before {
        -webkit-transform: rotate(180deg);
        transform: rotate(180deg);
    }

    .pc-navi-submenu {
        display: none;
        background-color: var(--color-green);
    }

    .pc-navi-submenu li {
        width: 100%;
    }

    .pc-navi-submenu li a {
        font-size: var(--font-pc-small);
    }

}

/*-----------------------------------------
drawer(SP mode menu)
------------------------------------------*/
body.drawer-body-on {
    position: fixed;
    z-index: 1;
}

body.drawer-body-on:before {
    content: "";
    position: absolute;
    z-index: 2999;
    background: rgba(0, 0, 0, 0.5);
    width: 100%;
    min-height: 100vh;
    min-height: 100dvh;
    min-height: -webkit-fill-available;
}

.drawer-btn {
    width: 48px;
    height: 48px;
    position: fixed;
    top: 0px;
    right: 0px;
    margin-left: auto;
    margin-right: 0;
    cursor: pointer;
    z-index: 99999;
}

@media (max-width: 767px) {
    .drawer-btn {
        display: block;
    }
}

@media (min-width: 768px) {
    .drawer-btn {
        display: none;
    }
}

.drawer-btn span {
    border-bottom: 2px solid var(--color-green);
    width: 20px;
    height: 20px;
    position: absolute;
    display: block;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
    text-indent: 100%;
    white-space: nowrap;
    top: 12px;
    left: 15px;
}

.drawer-btn span:before,
.drawer-btn span:after {
    content: '';
    display: inline-block;
    border-top: 2px solid var(--color-green);
    width: 20px;
    position: absolute;
    left: 50%;
    margin-left: -10px;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.drawer-btn span:before {
    top: 6px;
}

.drawer-btn span:after {
    top: 12px;
}

.drawer-btn-peke span {
    border-bottom: 1px solid #ffffff;
    border-bottom: none;
}

.drawer-btn-peke span:before {
    border-top: 2px solid #ffffff;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    top: 12px;
}

.drawer-btn-peke span:after {
    border-top: 2px solid #ffffff;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    top: 12px;
}

.drawer {
    display: none;
    background-color: var(--color-green);
    position: fixed;
    top: 0px;
    right: 0;
    width: 90vw;
    min-height: 100vh;
    min-height: 100dvh;
    overflow-y: auto;
    overflow-x: hidden;
    z-index: 9999;
}

.drawer-menu {
    overflow: auto;
    width: 90vw;
    height: 100vh;
    height: 100dvh;
    padding-top: 48px;
    padding-bottom: 48px;
    margin-left: auto;
    margin-right: auto;
}

.drawer-menu-home {
    background: url(../images/icon-home.svg)1em center no-repeat;
    padding-left: 5rem !important;
}

.drawer-menu-h2 {
    padding: 1em 1em 1em 1em !important;
    display: block;
    border-bottom: 1px solid rgba(255, 255, 255, .4);
}

.drawer-menu-h2 a {
    color: white;
}

.drawer-menu li a {
    display: block;
    color: #ffffff;
    padding: 1em 0 1em 1em;
    position: relative;
}

.drawer-menu>li {
    border-bottom: 1px solid rgba(255, 255, 255, .4);
}

.drawer-menu>li:last-child {
    border-bottom: none;
}

.drawer-menu li a:before,
.drawer-submenu li a:before {
    font-family: 'icomoon';
    content: "\f105";
    position: absolute;
    right: 4vw;
}

.drawer-menu li .subnav-open {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    color: #ffffff;
    padding: 1em 0 1em 2em;
    position: relative;
}

.drawer-menu li .subnav-open:after {
    font-family: 'icomoon';
    content: "\f0d7";
    position: absolute;
    right: 1em;
}

.drawer-menu li .subnav-open.active:after {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
}

.drawer-submenu {
    display: none;
    background: rgba(0, 0, 0, 0.1);
    padding: 2vw;
}

.drawer-submenu li a {
    display: block;
    color: #ffffff;
    padding: 0 0 0 2.5em;
    margin: 1em 0;
    position: relative;
}

.drawer-middlecategory li a {
    display: block;
    color: #ffffff;
    padding: 0 0 0 1.5em;
    margin: 1em 0;
    position: relative;
}

/*-----------------------------------------
pankuzu
------------------------------------------*/
.pankuzu {
    padding-bottom: 13px;
}

.pankuzu ul li {
    position: relative;
    z-index: 1;
    font-size: var(--font-pc-small);
    padding-top: 13px;
    padding-right: 13px;
    display: inline-block;
}

.pankuzu ul li:after {
    content: ">";
    position: relative;
    display: inline-block;
    padding-left: 13px;
}

.pankuzu ul li:last-child:after {
    display: none;
}

.pankuzu ul li a {
    font-size: var(--font-pc-small);
}

/*-----------------------------------------
AD billboard pc-only
------------------------------------------*/
@media (max-width: 767px) {
    .main-ad {
        display: none;
    }
}

@media (min-width : 768px) {
    .main-ad {
        position: relative;
        z-index: 1;
        padding-bottom: 25px;
        text-align: center;
        padding-top: 5px;
    }
}

/*-----------------------------------------
AD rectangle pc & sp
------------------------------------------*/
.rectangle {
    text-align: center;
}

.sidebar {
    margin-top: 20px;
}

@media (max-width: 767px) {
    .rectangle {
        margin-top: 4vw;
        margin-bottom: 4vw;
    }
}

@media (min-width : 768px) {
    .rectangle {
        margin-top: 40px;
        margin-bottom: 40px;
    }

    .ad-rectangle-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }

    .ad-rectangle-grid div {
        text-align: center;
    }

    .sidebar .rectangle:first-child {
        margin-top: 20px;
    }
}

/*-----------------------------------------
AD skyscraper PC 6 SP
------------------------------------------*/
.skyscraper {
    position: relative;
    z-index: 1;
    text-align: center;
}

@media (max-width: 767px) {
    .skyscraper {
        margin-top: 4vw;
        margin-bottom: 4vw;
    }
}

@media (min-width : 768px) {
    .skyscraper {
        margin-top: 20px;
        margin-bottom: 20px;
    }
}

/*-----------------------------------------
mainarea-common
------------------------------------------*/
.mainarea {
    margin-top: 20px;
}

.post-pic {
    float: left;
    max-width: 324px;
    width: 100%;
    padding-right: 30px;
}

.post-pic a {
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.post-pic a img {
    -o-object-fit: contain;
    object-fit: contain;
    aspect-ratio: 4 / 3;
    width: 100%;
    -o-object-position: center;
    object-position: center;
}

.post-content-date {
    padding-right: 1em;
    margin-bottom: 1em;
    padding-top: 0.5em;
}

.post-content-sns {
    width: 100%;
}

.post-content-sns li {
    padding-left: 16px;
}

.post-content .content-btn-sns {
    display: block;
    position: relative;
    z-index: 1;
    text-indent: 100%;
    line-height: 100%;
    white-space: nowrap;
    overflow: hidden;
    color: #ffffff;
    margin-left: 16px;
}

.content-btn-sns:before {
    font-family: 'icomoon';
    position: absolute;
    z-index: 2;
    line-height: 100%;
}

.content-btn-fb {
    height: 32px;
    width: 32px;
    border-radius: 32px;
}

.content-btn-fb:before {
    content: "\e900";
    color: #1877f2;
    width: 32px;
    height: 32px;
    top: 0px;
    left: 0px;
    text-indent: 0;
    font-size: 3.2rem;
}

.content-btn-tweet {
    background: #1da1f2;
    height: 30px;
    width: 30px;
    border-radius: 30px;
}

.content-btn-tweet:before {
    content: "\f099";
    width: 20px;
    height: 20px;
    top: 5px;
    left: 5px;
    text-indent: 0;
    font-size: 2.0rem;
}

.content-btn-line {
    background: #01b901;
    height: 30px;
    width: 30px;
    border-radius: 30px;
}

.content-btn-line:before {
    content: "\e919";
    width: 20px;
    height: 20px;
    top: 5px;
    left: 5px;
    text-indent: 0;
    font-size: 2.0rem;
}

.post-content .post-content-tags li {
    padding-right: 12px;
    padding-bottom: 12px;
}

.post-content .post-content-tags li a {
    display: block;
    font-size: 1.2rem;
    line-height: 100%;
    color: var(--color-green);
    border: 1px solid var(--color-green);
    border-radius: 4px;
    padding: 0.33em 0.5em;
}

.post-content .post-content-tags li a:hover {
    color: #ffffff;
    background-color: var(--color-green);
}

.post-btn-more {
    background-color: var(--color-green);
    padding: 6px 20px;
    border-radius: 4px;
    color: white !important;
    display: block;
    margin: 0 auto;
    max-width: 200px;
    text-align: center;
}

.post-btn-more:hover {
    background-color: var(--color-black);
    text-decoration: none !important;
}

@media (max-width: 767px) {
    .post-content {
        margin-bottom: 4vw;
    }

    .post-pic {
        float: none;
        max-width: 100%;
        padding-right: 0;
    }

    .post-content-date {
        width: 100%;
        font-size: var(--font-sp-date);
    }

    .post-content-sns {
        font-size: var(--font-sp-x-large);
        margin: 4vw auto 8vw auto;
    }

    .post-content .post-content-tags ul {
        margin: 2vw auto;
    }

    .import-other {
        margin: 4vw auto;
    }

    .post-content ol li {
        margin-left: var(--font-sp-normal);
    }

    .post-exp-txt {
        margin-top: 1.8em;
    }
}

@media (min-width : 768px) {
    .post-content {
        margin-top: 10px;
        margin-bottom: 40px;
    }

    .post-content h1 {
        font-size: 2.4rem;
        border-bottom: none;
    }

    .post-content h2 {
        font-size: 2.4rem;
    }

    .post-content h3 {
        font-size: 2.0rem;
    }

    .post-content-date {
        font-size: var(--font-pc-date);
    }

    .post-content-sns {
        font-size: 2.4rem;
        margin: 40px auto;
    }

    .import-other {
        margin: 40px auto;
    }

    .post-content ol li {
        margin-left: var(--font-pc-normal);
    }

    .post-content-tags {
        padding-top: 16px;
        padding-bottom: 16px;
    }

    .post-content .post-content-tags ul {
        margin: 0 auto;
    }
}


.post-content p,
.post-content li,
.post-content dt,
.post-content dd,
.post-content th,
.post-content td,
.post-content blockquote,
.post-content a,
.post-content div,
.post-content span {
    line-height: 180%;
}

.post-content h2,
.post-content h3,
.post-content h4 {
    line-height: 150%;
}

.post-content .movie {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    margin: 1em auto;
    width: 100%;
}

.post-content .movie iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.post-content dl {
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
    margin: 1em auto;
    padding: 1em 0;
}

.post-content ul,
.post-content ol {
    margin: 1em auto;
}

.post-content dl dt {
    font-weight: 700;
}

.post-content dl dd,
.post-content ul li {
    position: relative;
    z-index: 1;
    padding-left: 1.5em;
}

.post-content ol li {
    position: relative;
    z-index: 1;
    padding-left: 0.5em;
}

.post-content dl dd:before,
.post-content ul li:before {
    font-family: 'icomoon';
    content: "\f105";
    position: absolute;
    top: -0.1em;
    left: 0;
}

.post-content ul li ul li:before {
    content: "\f0da";
}
.post-content ol li ul li::marker {
    content: "";
    padding-left: 4px;
}
.post-content ol li ul li {
  left: -0.7em;
}
.post-content blockquote {
    position: relative;
    z-index: 1;
    background-color: var(--color-gray);
    padding: 1.5em 2em;
}

.post-content blockquote:before {
    position: absolute;
    content: "”";
    top: 8px;
    left: 5px;
    font-size: 2.4rem;
    color: var(--color-border);
}

.post-content blockquote:after {
    position: absolute;
    content: "“";
    bottom: -4px;
    right: 5px;
    font-size: 2.4rem;
    color: var(--color-border);
}

.post-content table {
    width: 100%;
    margin: 2em auto;
    border-top: 1px solid var(--color-border);
    border-left: 1px solid var(--color-border);
}

.post-content table th,
.post-content table td {
    border-bottom: 1px solid var(--color-border);
    border-right: 1px solid var(--color-border);
    text-align: left;
    vertical-align: top;
}

.post-content table thead th,
.post-content table thead td {
    color: #ffffff;
    background-color: var(--color-bgblack);
}

.post-content .stripe-table table {
    border-left: none;
}

.post-content .stripe-table table th,
.post-content .stripe-table table td {
    border-right: none;
}

.post-content .stripe-table table tbody tr:nth-child(even) {
    background-color: var(--color-gray);
}

.post-content .stripe-table table th {
    white-space: nowrap;
}

.blocked-table {
    width: 100%;
    min-height: .01%;
    overflow-x: auto;
}

@media (max-width: 767px) {

    .post-content table th,
    .post-content table td {
        padding: 2vw 3vw;
    }

    .blocked-table tbody,
    .blocked-table tbody tr,
    .blocked-table tbody tr th,
    .blocked-table tbody tr td {
        width: 100%;
        display: block;
    }

    .blocked-table tbody tr th {
        border-bottom: none;
        padding-bottom: 0.75vw;
    }

    .blocked-table tbody tr td {
        padding-top: 0.75vw;
    }
}

@media (min-width : 768px) {

    .post-content table th,
    .post-content table td {
        padding: 8px 12px;
    }
}

/*-----------------------------------------
posts-slider
------------------------------------------*/
.post-content .post-pic ul.bxslider,
.post-content .post-pic ul.bxslider-pic {
    margin-top: 0;
}

.post-content .post-pic ul.bxslider_thumbnail,
.post-content .post-pic ul.bxslider-pic-thumbnail {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-column-gap: 8px;
    margin-top: 8px;
    margin-bottom: 16px;
}

.post-content .post-content-tags ul li,
.post-content .post-pic ul li {
    padding-left: 0;
}

.post-content .post-content-tags ul li:before,
.post-content .post-pic ul li:before {
    display: none;
}

.post-pic-picpage {
    background-color: var(--color-black);
}

.post-content .post-pic.post-pic-picpage ul.bxslider-pic-thumbnail {
    margin-bottom: 0;
}

.post-content .bx-wrapper {
    position: relative;
    z-index: 1;
}

.post-content .bx-viewport {
    position: relative;
    z-index: 20;
    text-align: center;
}

.post-content .bx-controls {
    position: absolute;
    top: 50%;
    height: 40px;
    margin-top: -20px;
    width: 100%;
    line-height: 100%;
    z-index: 10;
}

.post-content .bx-controls-direction {
    line-height: 100%;
    width: 100%;
    position: relative;
    z-index: 10;
}

.post-pic a.bx-prev,
.post-pic a.bx-next {
    position: absolute;
    top: 0;
    display: block;
    background-color: var(--color-border);
    width: 32px;
    height: 32px;
    border-radius: 32px;
    overflow: hidden;
    text-indent: 100%;
    white-space: nowrap;
}

.bx-prev {
    left: -38px;
}

.bx-next {
    right: -38px;
}

.bx-prev:before,
.bx-next:before {
    font-family: 'icomoon';
    position: absolute;
    width: 32px;
    height: 32px;
    text-indent: 0;
    top: 2px;
    text-align: center;
    font-size: 2.4rem;
}

.bx-prev:before {
    content: "\f0d9";
    left: -2px;
}

.bx-next:before {
    content: "\f0da";
    right: -2px;
}

.post-content .bxslider-pic p {
    color: #ffffff;
}

/* .post-content .bxslider-pic .img {
    height: 100%;
    max-height: 400px;
} */

@media (max-width: 767px) {
    .post-pic-picpage {
        padding: 8px 44px;
    }

    .post-content .bxslider-pic p {
        padding-top: 0.25em;
        padding-bottom: 0.25em;
        font-size: var(--font-sp-small);
    }
}

@media (min-width : 768px) {
    .post-pic-picpage {
        padding: 8px 44px;
        margin-bottom: 40px;
    }

    .post-content .bxslider-pic p {
        padding-top: 0.5em;
        padding-bottom: 0.5em;
        text-align: left;
    }
}

/*-----------------------------------------
btn
------------------------------------------*/
.btn {
    display: block;
    position: relative;
    z-index: 2;
    cursor: pointer;
}

.btn-normal {
    color: #ffffff !important;
    border-radius: 4px;
    line-height: 150%;
    background-color: var(--color-green);
    text-align: center;
}

.btn-normal:hover {
    text-decoration: none !important;
    background-color: var(--color-black);
}

.btn-center {
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 767px) {
    .btn-normal {
        padding: 2vw 3vw;
        margin: 4vw auto;
        max-width: 300px;
    }

    .btn-readmore {
        margin-bottom: 8vw;
    }
}

@media (min-width : 768px) {
    .btn-normal {
        padding: 8px 12px;
        margin: 40px auto;
        width: 240px;
    }

    .btn-box-2 {
        -webkit-column-gap: 40px;
        column-gap: 40px;
    }

    .btn-normal.btn-readmore {
        max-width: 160px;
        margin: 0px auto;
    }
}

/*-----------------------------------------
article-titles
------------------------------------------*/
article h1,
article h2.border-tt,
article h3.border-tt,
.book-single-category-tt {
    font-weight: 700;
    line-height: 150%;
    padding-bottom: 0.1em;
    border-bottom: 3px solid var(--color-black);
}

/* article .post-content h1 {
    border-bottom: none;
} */

article h2 {
    font-weight: 700;
    line-height: 150%;
    margin-top: 1.5em;
    margin-bottom: 20px;
}

article h3 {
    font-weight: 700;
    line-height: 150%;
    margin-top: 1.5em;
    margin-bottom: 1.5em;
}

article h2.linked-tt,
article h3.linked-tt {
    border-bottom: 1px solid var(--color-green);
    padding-bottom: 0.3em;
}

.linked-tt {
    display: block;
    color: var(--color-green);
    position: relative;
    padding-right: 68px;
}

.linked-tt a {
    color: var(--color-green);
}

.linked-tt a:hover {
    color: var(--color-black);
}

.linked-tt a:after {
    content: "\4E00\89A7";
    position: absolute;
    top: 0px;
    right: 0px;
    border-radius: 4px;
    text-align: center;
    font-weight: 400;
    color: #ffffff;
    background-color: var(--color-green);
}

.linked-tt a:hover:after {
    background-color: var(--color-black);
}

article h2.lined-tt,
article h3.lined-tt {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-left: auto;
    margin-right: auto;
}

.lined-tt:before {
    margin-right: 1rem;
}

.lined-tt:after {
    margin-left: 1rem;
}

.lined-tt:before,
.lined-tt:after {
    content: '';
    height: 1px;
    background-color: var(--color-black);
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
}

@media (max-width: 767px) {

    article h1,
    .book-single-category-tt {
        font-size: var(--font-sp-x-large);
        margin-top: 2vw;
        margin-bottom: 5px;
    }

    article h1.bigtt {
        font-size: var(--font-sp-xx-large);
    }

    article h2,
    article h2 a {
        font-size: var(--font-sp-large);
    }

    article h3,
    article h3 a {
        font-size: var(--font-sp-normal);
    }

    .linked-tt a:after {
        font-size: var(--font-sp-small);
        width: 10vw;
        height: 1.5em;
        line-height: 1.5em;
    }

    .lined-tt {
        max-width: 80vw;
    }
}

@media (min-width : 768px) {

    article h1,
    .book-single-category-tt {
        font-size: 2.4rem;
        margin-top: 15px;
        margin-bottom: 5px;
    }

    article h1.bigtt {
        font-size: 3.0rem;
    }

    article h2,
    article h2 a {
        font-size: 2.4rem;
    }

    article h3,
    article h3 a {
        font-size: 2.0rem;
    }

    .linked-tt a:after {
        font-size: var(--font-pc-small);
        width: 58px;
        height: 24px;
        line-height: 24px;
    }

    .lined-tt {
        max-width: 506px;
    }
}

/*-----------------------------------------
newslist-type-nopic
------------------------------------------*/
.list-nopic li {
    display: grid;
    list-style-type: none;
    border-bottom: 1px solid var(--color-border);
    padding-top: 0.5em;
    padding-bottom: 0.5em;
}

.list-nopic a,
.list-nopic span {
    line-height: 150%;
}

.list-nopic li a {
    color: var(--color-black);
}

.list-nopic li a:hover {
    opacity: 0.6;
}

@media (max-width: 767px) {
    .list-nopic {
        margin-bottom: 4vw;
    }

    .list-nopic li {
        grid-template-columns: 1.5fr 3fr;
        grid-column-gap: 5vw;
    }
}

@media (min-width : 768px) {
    .list-nopic {
        margin-bottom: 30px;
    }

    .list-nopic li {
        grid-template-columns: 1fr 5fr;
        grid-column-gap: 10px;
    }
}

/*-----------------------------------------
newslist-type-pic-common
------------------------------------------*/
.news-picbox {
    position: relative;
}

.newslist-category a {
    padding: 4px 8px;
    font-size: 12px;
    display: inline-block;
    color: #ffffff;
    background-color: var(--color-bgblack);
}

.news-picbox {
    display: block;
    position: relative;
    z-index: 1;
}

.news-pic {
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.news-pic img {
    aspect-ratio: 4 / 3;
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%;
    -o-object-position: center;
    object-position: center;
}

.news-pic:hover {
    opacity: 0.6;
}

.pic-ad a:before {
    content: "PR";
    position: absolute;
    top: 0;
    left: 0;
    width: 30px;
    height: 20px;
    line-height: 20px;
    text-align: center;
    font-size: 1.4rem;
    background: #cccccc;
}

/*-----------------------------------------
newslist-type-big
------------------------------------------*/
.news-big-tt a {
    line-height: 140%;
}

.news-big .newslist-category {
    position: absolute;
    z-index: 10;
    top: 0;
    left: 0;
}

@media (max-width: 767px) {
    .news-big {
        margin-bottom: 4vw;
        position: relative;
    }

    article h3.news-big-tt {
        margin-top: 0.5em;
        margin-bottom: 0.5em;
        position: absolute;
        top: 46vw;
        z-index: 10;
    }

    article h3.news-big-tt a {
        padding: 0 0.5em;
        color: #ffffff;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
        overflow: hidden;
    }

    article h3.news-big-tt a span {
        color: #ffffff;
    }

    article h3.news-big-tt,
    article h3.news-big-tt a {
        font-size: var(--font-sp-xx-large);
        font-weight: 400;
    }

    .news-big-picbox:after {
        content: "";
        position: absolute;
        z-index: 5;
        bottom: 0;
        left: 0;
        height: 69vw;
        width: 100%;
        background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), color-stop(50%, rgba(0, 0, 0, 0)), to(rgba(0, 0, 0, 0.65)));
        background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.65) 100%);

    }

    .news-big-exp {
        line-height: 150%;
        margin-top: 1em;
        margin-bottom: 1em;
    }

    .news-big-date {
        font-size: var(--date);
    }
}

@media (min-width: 768px) {
    article h3.news-big-tt a {
        color: var(--color-black);
    }

    .news-big {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-column-gap: 32px;
        margin-bottom: 20px;
    }

    h2.news-big-tt,
    h3.news-big-tt {
        margin-top: 0;
        margin-bottom: 0;
    }

    .news-big-picbox {
        grid-area: 1 / 1 / 4 / 2;
    }

    .news-big-exp {
        line-height: 150%;
    }

    .news-big-date {
        font-size: var(--font-pc-date);
        padding-top: 6px;
    }

    .news-big-tt a {
        font-size: 2.0rem;
    }
}

/*-----------------------------------------
newslist-type-P3-S1
------------------------------------------*/
.newslist-3-tt a {
    font-weight: 400;
}

.newslist-morebtn {
    border-top: 1px solid var(--color-green);
    padding-top: 20px;
    margin-top: 35px;
    padding-right: 25px;
    display: block;
    text-align: right;
    color: var(--color-green);
    position: relative;
}

.newslist-morebtn::after {
    content: "";
    position: absolute;
    width: 8px;
    top: 24px;
    right: 12px;
    height: 8px;
    border-top: 2px solid var(--color-green);
    border-right: 2px solid var(--color-green);
    transform: rotate(45deg);
}

.newslist-morebtn:hover {
    color: black;
}

.newslist-morebtn:hover::after {
    border-top: 2px solid black;
    border-right: 2px solid black;
}

.newslist-morebtn-bordernone {
    border: none;
    margin-top: 0;
}

@media (max-width: 767px) {
    .newslist-morebtn {
        padding-bottom: 15px;
        text-align: center;
        background-color: var(--color-green);
        border-top: none;
        margin-top: 25px;
        color: white;
        padding-top: 15px;
        margin-bottom: 35px;
        border-radius: 6px;
    }

    .newslist-morebtn::after {
        top: 50%;
        transform: rotate(45deg) translateY(-50%);
        border-top: 2px solid white;
        border-right: 2px solid white;
    }

    .newslist-morebtn:hover {
        color: white;
    }

    .newslist-morebtn:hover::after {
        border-top: 2px solid white;
        border-right: 2px solid white;
    }
}

@media (max-width: 767px) {

    /* ジーニー広告用 */
    .newslist-3-grid li:nth-child(3),
    .newslist-3-grid li:nth-child(7) {
        border-top: 1px solid var(--color-border);
        padding-top: 4vw;
        margin-top: 4vw;
    }

    .newslist-3 {
        display: grid;
        grid-template-columns: 1fr 2fr;
        grid-template-rows: 20px 1fr 3.5vw;
        grid-column-gap: 4vw;
        border-top: 1px solid var(--color-border);
        padding-top: 4vw;
        margin-top: 4vw;
    }

    .newslist-3 .newslist-category {
        grid-area: 1 / 2 / 2 / 3;
    }

    .newslist-3 .newslist-category a {
        display: inline-block;
    }

    .newslist-3-picbox {
        grid-area: 1 / 1 / 4 / 2;
    }

    article h3.newslist-3-tt {
        grid-area: 2 / 2 / 3 / 3;
        margin-top: 0.5em;
        margin-bottom: 0.25em;
    }

    article h3.newslist-3-tt a {
        font-size: var(--font-sp-normal);
    }

    .newslist-3-date {
        grid-area: 3 / 2 / 4 / 3;
        font-size: var(--font-sp-date);
    }
}

@media (min-width: 768px) {
    .newslist-3-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        grid-column-gap: 22px;
        grid-row-gap: 22px;
    }

    .newslist-3 {
        position: relative;
        z-index: 1;
    }

    .newslist-3 .newslist-category {
        position: absolute;
        z-index: 10;
        top: 0;
        left: 0;
    }

    article h3.newslist-3-tt {
        margin-top: 0.5em;
        margin-bottom: 0.25em;
    }

    article h3.newslist-3-tt,
    article h3.newslist-3-tt a {
        font-size: var(--font-pc-normal);
    }

    .newslist-3-date {
        font-size: var(--font-pc-date);
    }
}

/*-----------------------------------------
newslist-type-P1-S1
------------------------------------------*/
.newslist-1-grid li {
    display: grid;
    border-bottom: 1px solid var(--color-border);
}

.newslist-1-tt {
    grid-area: 1 / 1 / 2 / 2;
    margin-top: 0;
    margin-bottom: 0;
}

.newslist-1-date {
    grid-area: 2 / 1 / 3 / 2;
}

.newslist-1-picbox {
    grid-area: 1 / 2 / 3 / 3;
}

.newslist-1-tt a {
    display: block;
    line-height: 150%;
}

@media (max-width: 767px) {
    .newslist-1-grid {
        margin-top: 4vw;
        margin-bottom: 4vw;
    }

    .newslist-1-grid li {
        grid-template-columns: 1fr 28vw;
        grid-column-gap: 4vw;
        padding-bottom: 4vw;
        margin-bottom: 4vw;
    }

    .newslist-1-tt a {
        line-height: 150%;
        font-weight: 400;
        font-size: var(--font-sp-normal);
    }

    .newslist-1-date {
        font-size: var(--font-sp-date);
    }
}

@media (min-width : 768px) {
    .newslist-1-grid li {
        grid-template-columns: 1fr 164px;
        grid-template-rows: 103px 20px;
        grid-column-gap: 24px;
        padding-bottom: 16px;
        margin-bottom: 16px;
    }

    .newslist-1-tt a {
        font-weight: 700;
        font-size: var(--font-pc-normal);
    }

    .newslist-1-date {
        font-size: var(--font-pc-date);
    }
}

/*-----------------------------------------
tab-common
------------------------------------------*/
.tabnav {
    width: 100%;
    display: flex;
}

.tabnav .tabnav-kennai {
    display: block;
    width: 100%;
    text-align: center;
}

.tabnav .tabnav-zenkoku {
    max-width: auto !important;
}

.tabnav li a {
    display: block;
    width: 100%;
    padding: 13px 0;
    text-align: center;
    font-size: var(--font-pc-small);
    color: var(--color-green);
    border-top: 1px solid #ffffff;
    border-left: 1px solid #ffffff;
    border-right: 1px solid #ffffff;
}

.tabnav li a:hover {
    color: white;
    background-color: var(--color-black);
}

.tabnav li.active a {
    color: white;
    background-color: var(--color-green);

}

.tabcontent .tabcontent-list {
    display: none;
}

.tabcontent .tabcontent-list.show {
    display: block;
}

@media (max-width: 767px) {
    .tabcontent {
        padding-top: 4vw;
    }

    .tabnav li a {
        padding: 9.4px;
        width: 100%;
        min-width: 100px;
        display: block;
    }
}

@media (min-width : 768px) {
    .tabnav li a {
        padding: 9.4px;
    }

    .tabcontent {
        padding-top: 10px;
    }
}

/*-----------------------------------------
subcategory-tab
------------------------------------------*/
.subcategory-tab {
    position: relative;
    z-index: 1;
}

.subcategory-tab .tabnav {
    position: relative;
    z-index: 2;
    margin: 10px 0 20px 0;
}

.subcategory-tab li {
    display: block;
}

.subcategory-tab li a {
    background-color: var(--color-gray);
    white-space: nowrap;
    font-size: 1.3rem;
}

@media (max-width: 767px) {
    .subcategory-tab .tabnav {
        width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        display: flex;
        justify-content: space-between;
    }

    .subcategory-tab:after {
        font-family: 'icomoon';
        content: "\f105";
        position: absolute;
        z-index: 10;
        bottom: 0;
        right: 0;
        height: 8vw;
        line-height: 8vw;
        text-align: center;
        width: 4vw;
        background: rgba(0, 0, 0, 0.2);
    }
}

@media (min-width : 768px) {
    .subcategory-tab {
        width: 100%;
    }

    .subcategory-tab .tabnav li {
        padding-left: 1px;
        padding-right: 1px;
    }
}

/*-----------------------------------------
sidebar-common
------------------------------------------*/
.sidebar h2 {
    font-weight: 700;
    margin-top: 1.5em;
    margin-bottom: 15px;
}

.sidebar h2.sidebar-tt {
    color: #ffffff;
    background: #000000;
    margin-top: 0;
    margin-bottom: 0;
}

.sidebar-banner {
    text-align: center;
}

.sidebar-banner a {
    display: block;
}

@media (max-width: 767px) {
    .sidebar-banner a {
        margin: 4vw auto;
    }

    .sidebar-tt {
        padding: 3.2vw;
    }
}

@media (min-width : 768px) {
    .sidebar h2 {
        font-size: 1.8rem;
    }

    .sidebar-banner a {
        margin: 20px auto;
    }

    .sidebar-tt {
        padding: 13px;
    }
}

/*-----------------------------------------
sidebar-ranking
------------------------------------------*/
.sidebar-ranking .tabnav li {
    width: 100% !important;
    max-width: 100%;
    text-align: center;
}

.list-ranking li {
    position: relative;
    z-index: 1;
    max-width: 100%;
    display: grid;
    border-bottom: 1px solid var(--color-border);
    counter-increment: number;
}

.list-ranking-pic {
    position: relative;
    z-index: 1;
}

.list-ranking-pic:before {
    content: counter(number);
    position: absolute;
    top: 0;
    left: 0;
    width: 20px;
    height: 20px;
    line-height: 20px;
    text-align: center;
    z-index: 10;
    color: #ffffff;
    background-color: var(--color-bgblack);
}

.list-ranking-pic a {
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.list-ranking-pic a img {
    aspect-ratio: 1/1;
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%;
    -o-object-position: center;
    object-position: center;
}

.counter-reset {
    counter-reset: number;
}

.list-ranking-tt a {
    display: block;
    font-weight: 400;
}

@media (max-width: 767px) {
    .list-ranking li {
        grid-template-columns: 28vw 1fr;
        grid-column-gap: 4vw;
        grid-row-gap: 5px;
        padding-bottom: 4vw;
        margin-bottom: 4vw;
    }

    .list-ranking-pic {
        grid-area: 1 / 1 / 3 / 2;
    }

    .list-ranking-tt a {
        font-size: var(--font-sp-normal);
        line-height: 150%;
        padding-top: 0.5em;
    }

    .list-ranking-date {
        font-size: var(--font-sp-date);
    }
}

@media (min-width : 768px) {
    .list-ranking li {
        grid-template-columns: 80px 200px;
        grid-template-rows: 55px 20px;
        grid-column-gap: 20px;
        grid-row-gap: 5px;
        padding-bottom: 10px;
        margin-bottom: 10px;
    }

    .list-ranking-pic {
        grid-area: 1 / 1 / 3 / 2;
    }

    .list-ranking-tt a {
        font-size: var(--font-pc-small);
        line-height: 150%;
        padding-top: 0.5em;
    }

    .list-ranking-date {
        font-size: var(--font-pc-date);
    }
}

.sidebar-pagemenu {
    border-top: 1px solid var(--color-border);
}

.sidebar-tt+.sidebar-pagemenu {
    margin-top: 0;
}

.sidebar-pagemenu li {
    border-bottom: 1px solid var(--color-border);
}

.sidebar-pagemenu li a {
    display: block;
    position: relative;
    padding: 13px;
}

.sidebar-pagemenu li a:hover {
    background-color: var(--color-gray);
}

.sidebar-pagemenu li a:before {
    font-family: 'icomoon';
    content: "\f105";
    color: var(--color-green);
    display: inline-block;
    padding-right: 1em;
}

@media (max-width: 767px) {
    .sidebar-pagemenu {
        margin-top: 4vw;
        margin-bottom: 4vw;
    }
}

@media (min-width : 768px) {
    .sidebar-pagemenu {
        margin-top: 40px;
        margin-bottom: 40px;
    }
}

/*-----------------------------------------
pagenavi
------------------------------------------*/
.pagenavi {
    margin: 40px auto;
    text-align: center;
}

.pagenavi li {
    padding: 8px;
    display: inline-block;
}

.pagenavi li a,
.pagenavi li span {
    display: block;
    min-width: 48px;
    height: 48px;
    line-height: 48px;
    padding: 0 10px;
    text-align: center;
}

.pagenavi li a {
    color: #ffffff;
    background-color: var(--color-green);
}

.pagenavi li span {
    background-color: var(--color-gray);
}

/*-----------------------------------------
footer
------------------------------------------*/
.footer-grid a:hover {
    color: #999999;
}

.footer-menu-company h2 {
    border-bottom: 1px solid #00a040;
}

.footer-menu-products h2 {
    border-bottom: 1px solid #ff7f00;
}

.footer-menu-service h2 {
    border-bottom: 1px solid #3182f0;
}

.footer-menu-order h2 {
    border-bottom: 1px solid #f03159;
}

.footer-link-47news ul li {
    display: inline-block;
    position: relative;
    padding: 0 0.5em;
    border-right: 1px solid var(--color-black);
    margin: 0.5em auto;
}

.footer-link-47news ul li,
.footer-link-47news ul li a {
    font-size: smaller;
}

.footer-link-47news ul li a:hover {
    color: var(--color-green);
}

.footer-bottom {
    color: #ffffff;
    background-color: #333333;
}

.footer-credit-grid {
    display: grid;
}

.footer-credit-grid * {
    color: #ffffff;
}

.footer-credit a:hover {
    color: var(--color-green);
}

@media (max-width: 767px) {
    .footer-menu {
        padding-top: 2vw;
        padding-bottom: 4vw;
    }

    .footer-menu h2 {
        padding-bottom: 2vw;
        margin-top: 6vw;
        margin-bottom: 2vw;
    }

    .footer-menu ul {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-column-gap: 4vw;
    }

    .footer-menu li a {
        display: block;
        line-height: 150%;
        font-size: var(--font-sp-x-small);
        padding: 0.5em 0;
    }

    .footer-link-47news {
        padding-top: 4vw;
        padding-bottom: 4vw;
    }

    .footer-link-47news h2 {
        padding-bottom: 2vw;
        padding-left: 2vw;
    }

    .footer-credit-grid {
        grid-template-columns: 54vw 38vw;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        padding-top: 10px;
        padding-bottom: 10px;
    }

    .footer-credit {
        grid-area: 1 / 1 / 2 / 2;
    }

    .footer-logo {
        grid-area: 1 / 2 / 2 / 3;
    }

    .footer-copyright {
        grid-area: 2 / 1 / 3 / 3;
        font-size: 3.3vw;
        text-align: center;
    }

    .footer-credit li a {
        display: block;
        font-size: var(--font-sp-x-small);
        margin: 1em auto;
    }

    .footer-logo a {
        display: block;
        padding-left: 8vw;
    }
}

@media (min-width : 768px) {
    .footer-menu {
        padding-top: 30px;
        padding-bottom: 30px;
    }

    .footer-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        grid-column-gap: 49px;
    }

    .footer-menu h2 {
        padding-bottom: 10px;
        margin-bottom: 15px;
    }

    .footer-menu li a {
        display: block;
        padding: 8px 0;
    }

    .footer-link-47news {
        background-color: white;
        padding: 24px 0;
    }

    .footer-link-47news h2 {
        padding: 0 0 16px 8px;
    }

    .footer-credit-grid {
        grid-template-columns: repeat(2, 1fr);
        padding-top: 10px;
        padding-bottom: 10px;
    }

    .footer-credit {
        grid-area: 1 / 1 / 2 / 2;
        padding-bottom: 4px;
    }

    .footer-logo {
        grid-area: 1 / 2 / 2 / 3;
    }

    .footer-copyright {
        grid-area: 2 / 1 / 3 / 2;
        padding-left: 7px;
        font-size: 1.2rem;
    }

    .footer-address {
        grid-area: 2 / 2 / 3 / 3;
        text-align: right;
        padding-top: 8px;
        font-size: var(--font-pc-x-small);
    }

    .footer-credit li {
        display: inline-block;
        position: relative;
        padding: 0 0.5em;
        border-right: 1px solid #ffffff;
        margin: 0.5em auto;
    }

    .footer-credit li:last-child {
        border-right: none;
    }

    .footer-credit li a {
        font-size: var(--font-pc-x-small);
    }

    .footer-logo a img {
        width: 160px;
        height: auto;
        display: block;
        margin-left: auto;
    }
}

/*-----------------------------------------
toppage-category-news
------------------------------------------*/
.top-category>h2.lined-tt {
    margin-top: 0;
}

.top-category-grid {
    display: grid;
}

.top-category-box {
    margin-bottom: 15px;
}


.top-category-box:first-of-type {
    border-top: 1px solid var(--color-green);
    padding-top: 20px;
}

article h3.top-recent-tt {
    margin-top: 0;
    border-left: 3px solid var(--color-green);
    padding-left: 0.5em;
}

article h3.top-recent-tt a {
    display: block;
    position: relative;
    white-space: nowrap;
    z-index: 1;
}

article h3.top-recent-tt a:after {
    content: "もっと見る";
    position: absolute;
    right: 0px;
    border-radius: 4px;
    text-align: center;
    font-weight: 400;
    color: #ffffff;
    background-color: var(--color-green);
}

article h3.top-recent-tt a:hover:after {
    background-color: var(--color-black);
}


.top-category-exp {
    line-height: 150%;
    padding-bottom: 0.5em;
}

@media (max-width: 767px) {
    .top-category {
        padding-top: 7vw;
        padding-bottom: 3vw;
    }

    .top-category-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-column-gap: 4vw;
        grid-row-gap: 4vw;
    }

    article h3.top-recent-tt {
        margin-bottom: 0.5em;
    }

    article h3.top-recent-tt a {
        font-size: var(--font-sp-normal);
    }

    article h3.top-recent-tt a:after {
        top: 0.125em;
        font-size: var(--font-sp-small);
        font-size: 1.4rem;
        padding: 2px 10px;
        line-height: 1.5em;
    }

    .top-category-date {
        font-size: var(--font-sp-date);
    }
}

@media (min-width : 768px) {
    .top-category {
        padding-top: 30px;
        padding-bottom: 20px;
    }

    .top-category-grid {
        grid-template-columns: repeat(4, 1fr);
        grid-column-gap: 49px;
        grid-row-gap: 49px;
    }

    article h3.top-recent-tt {
        margin-bottom: 0.5em;
    }

    article h3.top-recent-tt a:after {
        top: 0.35em;
        font-size: var(--font-pc-small);
        width: 90px;
        height: 24px;
        line-height: 24px;
    }

    .top-category-date {
        font-size: var(--font-pc-date);
    }
}

/*-----------------------------------------
toppage-bottombanner
------------------------------------------*/
.top-bottombanner-grid {
    display: grid;
    margin-top: 20px;
}

article h3.top-bottombanner-tt {
    margin-top: 0.5em;
    margin-bottom: 0.5em;
}

article h3.top-bottombanner-tt a {
    font-size: 1.6rem !important;
}

@media (max-width: 767px) {
    .top-bottombanner {
        padding-top: 4vw;
        padding-bottom: 4vw;
    }

    .top-bottombanner-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-column-gap: 4vw;
        grid-row-gap: 4vw;
    }
}

@media (min-width : 768px) {
    .top-bottombanner {
        padding-top: 20px;
        padding-bottom: 20px;
    }

    .top-bottombanner-grid {
        grid-template-columns: repeat(6, 1fr);
        grid-column-gap: 20px;
        grid-row-gap: 20px;
    }

    article h3.top-bottombanner-tt {
        font-size: var(--font-pc-normal);
    }
}

/*-----------------------------------------
toppage-pickup
------------------------------------------*/
.top-pickup-grid {
    display: grid;
}

article h3.top-pickup-tt {
    margin-top: 0.5em;
    margin-bottom: 0.5em;
}

@media (max-width: 767px) {
    .top-pickup {
        padding-bottom: 4vw;
    }

    .top-pickup-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-column-gap: 4vw;
        grid-row-gap: 4vw;
    }
}

@media (min-width : 768px) {
    .top-pickup {
        padding-bottom: 40px;
    }

    .top-pickup-grid {
        grid-template-columns: repeat(4, 1fr);
        grid-column-gap: 49px;
        grid-row-gap: 49px;
    }

    .top-pickup-grid .news-pic img {
        height: 171px;
    }

    article h3.top-pickup-tt {
        font-size: var(--font-pc-normal);
    }
}

/*-----------------------------------------
toppage-news
------------------------------------------*/

.top-news .linked-tt {
    margin-top: 0;
    margin-bottom: 0;
}

/*-----------------------------------------
toppage-prlist
------------------------------------------*/
.pr-list li {
    position: relative;
    z-index: 1;
    padding-bottom: 0.5em;
}

.pr-list li a {
    display: block;
    font-size: smaller;
    position: relative;
    padding-left: 40px;
    line-height: 150%;
    z-index: 1;
}

.pr-list li a:before {
    position: absolute;
    top: 0;
    left: 0;
    width: 30px;
    font-size: 12px;
    text-align: center;
    line-height: 100%;
    content: "PR";
    color: #ffffff;
    padding: 2px;
    background-color: var(--color-green);
    border-radius: 3px;
}

/*-----------------------------------------
books
------------------------------------------*/
.books-mainvisual {
    background: #e3dcdf;
}

.books-eyecatch {
    background-image: url(../images/books/tt-books.png);
    background-position: right bottom;
    background-repeat: no-repeat;
}

.books-eyecatch div {
    font-weight: 700;
    line-height: 100%;
}

.booklist-3-pic {
    display: block;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.booklist-3-price {
    text-align: right;
}

article .booklist-3-grid h2 {
    font-weight: 400;
}

.booklist-3-price {
    color: var(--color-price);
    line-height: 100%;
    padding-bottom: 0;
}

article .book-single-data h1 {
    border-bottom: none;
}

.book-single-pic {
    text-align: center;
}

.book-single-data table {
    width: 100%;
    border-top: 1px solid var(--color-border);
}

.book-single-data table tbody tr {
    border-bottom: 1px solid var(--color-border);
}

.book-single-data table th,
.book-single-data table td {
    text-align: left;
    padding-top: 0.5em;
    padding-bottom: 0.5em;
    line-height: 150%;
}

.book-single-content {
    line-height: 180%;
}

@media (max-width: 767px) {
    .books-eyecatch {
        padding-top: 6vw;
        padding-bottom: 6vw;
    }

    .books-eyecatch div {
        font-size: var(--font-sp-xx-large);
    }

    .booklist-3-price {
        font-size: var(--font-pc-date);
    }

    .booklist-3-grid li {
        padding-top: 4vw;
        padding-bottom: 4vw;
        border-bottom: 1px solid var(--color-border);
    }

    .book-single-grid {
        padding-top: 4vw;
        padding-bottom: 4vw;
    }

    .booklist-3-pic {
        max-height: 45vw;
        overflow: hidden;
    }

    .booklist-3-pic img {
        max-height: 45vw;
    }

    .book-single-data {
        padding-top: 4vw;
    }

    .book-single-data table {
        margin-bottom: 8vw;
    }

    .book-single-data table th {
        min-width: 16vw;
    }
}

@media (min-width : 768px) {
    .books-eyecatch {
        padding-top: 35px;
        padding-bottom: 35px;
        margin-bottom: 40px;
    }

    .books-eyecatch div {
        font-size: 3.0rem;
    }

    .booklist-3-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        grid-column-gap: 22px;
        grid-row-gap: 22px;
        margin-top: 30px;
        margin-bottom: 30px;
    }

    .booklist-3-pic {
        height: 170px;
        overflow: hidden;
    }

    .booklist-3-pic img {
        -o-object-fit: contain;
        object-fit: contain;
        height: 170px;
    }

    article .booklist-3-grid h2 {
        font-size: var(--font-pc-normal);
    }

    .booklist-3-price {
        font-size: var(--font-pc-date);
    }

    .book-single-grid {
        display: grid;
        grid-template-columns: 210px 1fr;
        grid-column-gap: 40px;
        margin-top: 40px;
        margin-bottom: 30px;
    }

    .book-single-data table th {
        width: 155px;
    }
}

/*-----------------------------------------
tokushu
------------------------------------------*/
.tokushu-titlebox {
    position: relative;
    z-index: 1;
}

.tokushu-mainvisual {
    position: relative;
    z-index: 5;
    overflow: hidden;
}

.tokushu-mainvisual img {
    width: 100%;
}

.tokushu-mainvisual .pic-ad {
    position: absolute;
    top: 0;
    left: 0;
    width: 30px;
    height: 30px;
    padding: 5px 5px 5px 5px;
    line-height: 20px;
    text-align: center;
    font-size: 1.4rem;
    background: #cccccc;
}


.tokushu-leadtext {
    margin: 1em auto 40px;
    line-height: 150%;
}

/* .tokushu-leadtext a {
    color: var(--color-green);
}

.tokushu-leadtext a:hover {
    text-decoration: underline;
} */

@media (max-width: 767px) {
    .tokushu-tt {
        position: absolute;
        z-index: 10;
        bottom: 0;
        height: 75vw;
        max-height: 273px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: end;
        -ms-flex-align: end;
        align-items: flex-end;
        width: 100%;
        background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), color-stop(50%, rgba(0, 0, 0, 0)), to(rgba(0, 0, 0, 0.65)));
        background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.65) 100%);
        padding: 1vw 4vw;
    }

    article .tokushu-tt h1 {
        font-size: var(--font-sp-large);
        border-bottom: none;
        color: #ffffff;
    }

    .tokushu-mainvisual {
        margin-bottom: 20px;
    }
}

@media (min-width : 768px) {
    .tokushu-tt {
        padding-bottom: 15px;
    }

    .tokushu-mainvisual {
        margin-bottom: 40px;
    }
}

/*-----------------------------------------
//テンプレートsmart用
------------------------------------------*/
.header {
    border-bottom: 1px solid var(--color-border);
}

.header-h1 {
    padding: 20px;
    text-align: center;
}

@media (max-width : 768px) {
    .header-h1 {
        padding: 8px;
        text-align: center;
    }
}

.smart {
    width: 100%;
    background-color: white;
    margin: 0 auto 0 auto;
    padding-bottom: 50px;
}

.smart-text {
    text-align: center;
    padding: 50px 15px 25px;
}

.smart-inner {
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.smart-back {
    border: none;
    cursor: pointer;
    outline: none;
    padding: 0;
    appearance: none;
    font-weight: bold;
    padding: 6px 20px;
    max-width: 140px;
    width: 100%;
    border-radius: 50px;
    color: white;
    font-weight: bold;
    margin: 0 5px;
    font-size: 1.6rem;
    background-color: var(--color-green);
}

/*-----------------------------------------
form
------------------------------------------*/
.formData {
    margin: 0 auto 20px auto;
    border-top: 1px solid var(--color-border) !important;
    padding-top: 20px;
    width: 100%;
    max-width: 800px;
    content: '';
    display: block;
    clear: both;
}

.formData-dl {
    margin: 0 0 20px 0 !important;
    padding: 0px 15px 20px 15px !important;
    border-bottom: 1px solid var(--color-border);
    border-top: 0px solid var(--color-border) !important;
}

.formData-dt:last-child {
    margin-bottom: 0px;
    padding-bottom: 0px;
    border-bottom: 0px solid var(--color-border);
}

.formData-dl-dt {
    margin-bottom: 15px;
}

.formData-dl-dt span.any {
    display: inline-block;
    margin-right: 7px;
    padding: 2px 5px;
    font-size: 1.4rem;
    color: white;
    background-color: #666666;
}

.formData-dl-dt span.required {
    display: inline-block;
    margin-right: 7px;
    padding: 2px 5px;
    font-size: 1.4rem;
    color: white;
    background-color: #cd0104;
}

.formData-dl-dt {
    margin-bottom: 15px;
}

.formData-dl-dd {
    padding-left: initial !important;
}

.formData-dl-dd::before {
    content: initial !important;
    position: initial !important;
    top: initial !important;
}

.formData p {
    padding: 5px 0 0 0 !important;
}

/* テキストエリア  */
.formData input[type="text"] {
    display: block;
    width: 100%;
    padding: 0.375rem 0.75rem;
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 1.5;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid var(--color-border);
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: 0.375rem;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

/* セレクト */
.formData select {
    display: block;
    width: 100%;
    padding: 0.25rem 0.5rem;
    line-height: 1.5;
    padding: 0.75rem 0.75rem;
    font-size: 1.6rem;
    line-height: 1.5;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid var(--color-border);
    border-radius: 0.375rem;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

/* ラジオ、チェックボックス */
.formData input[type="radio"],
.formData input[type="checkbox"] {
    -webkit-appearance: auto;
    -moz-appearance: auto;
    appearance: auto;
    border-radius: 0;
}

.formData p.notic {
    font-size: 1.4rem;
}

/* テキストエリア */
.formData textarea {
    display: block;
    width: 100%;
    padding: 0.375rem 0.75rem;
    font-size: 1.6rem;
    height: 250px;
    font-weight: 400;
    line-height: 1.5;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid var(--color-border);
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: 0.25rem;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

/* style リセット */
.formData button {
    background-color: transparent;
    border: none;
    cursor: pointer;
    outline: none;
    padding: 0;
    appearance: none;
    font-weight: bold;
    padding: 6px 20px;
    max-width: 140px;
    width: 100%;
    border-radius: 50px;
    color: white;
    font-weight: bold;
    margin: 0 5px;
    font-size: 1.6rem;
}

.formData-btns {
    text-align: center;
    margin-bottom: 50px;
}

/* 戻る */
.formData-btns input[name="back"] {
    background-color: transparent;
    border: none;
    cursor: pointer;
    outline: none;
    padding: 0;
    appearance: none;
    font-weight: bold;
    padding: 6px 20px;
    max-width: 140px;
    width: 100%;
    border-radius: 50px;
    color: white;
    font-weight: bold;
    margin: 0 5px;
    font-size: 1.6rem;
}

/* 送信（確認用） */
.formData-btns button[name="submit"] {
    background-color: transparent;
    border: none;
    cursor: pointer;
    outline: none;
    padding: 0;
    appearance: none;
    font-weight: bold;
    padding: 6px 20px;
    max-width: 140px;
    width: 100%;
    border-radius: 50px;
    color: white;
    font-weight: bold;
    margin: 0 5px;
    font-size: 1.6rem;
}

.formData-btns input[type="button"] {
    background-color: gray;
    border: none;
    cursor: pointer;
    outline: none;
    padding: 0;
    appearance: none;
    font-weight: bold;
    padding: 6px 20px;
    max-width: 140px;
    width: 100%;
    border-radius: 50px;
    color: white;
    font-weight: bold;
    margin: 0 5px;
    font-size: 1.6rem;
}

/* リセットボタン */
.formData button[type="reset"],
.formData-btns input[name="back"] {
    background-color: gray;
}

/* 送信 */
.formData button[type="submit"],
.formData-btns button[name="submit"] {
    background-color: var(--color-green);
}


/*-----------------------------------------
prtimes
------------------------------------------*/
.prtimes_body img {
    width: 100%;
    height: auto;
    margin: 20px 0;
}

.prtimes-logo {
    margin: 20px 0;
    display: flex;
    align-items: center;
}

.prtimes-logo figcaption {
    padding-right: 15px;
    font-size: 1.2rem;
    color: #666666;
}


/*-----------------------------------------
出版物
------------------------------------------*/
.book-title-link {
    font-size: 1.6rem;
}

/*-----------------------------------------
フォーム
------------------------------------------*/
.disabled-button {
    pointer-events: none;
    opacity: 0.5;
    cursor: not-allowed;
}

#loadingMessage {
display: none;
text-align: center;
color: red;
}

/*-----------------------------------------
google ADS　調整
------------------------------------------*/
.rendered{
    margin-bottom: 1.5em !important;
    margin-top: -1.5em !important;
}
