/* common */
.kv-fade-up {
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s ease-in-out;
}
.kv-fade-up.show {
    opacity: 1;
    transform: translateY(0);
}
.num {
    font-family: "PLUGO R", -apple-system, "Hiragino Sans", sans-serif;
}
.nitori .btn {
    width: 294px;
    height: 70px;
    border-radius: 70px;
    line-height: 70px;
    font-size: 20px;
    border: none;
    display: block;
    padding: 0;
    letter-spacing: .11em;
    background: linear-gradient(87.25deg, #4CC342 14.43%, #009519 88.98%);
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
}
.nitori .btn.center {
    margin: 0 auto;
}
.nitori .btn.nitorinews {
    margin: 30px auto 75px auto;
}
.nitori .btn:hover {
    opacity: .7;
    color: #fff;
}
.nitori-inner {
    max-width: 1150px;
    margin: 0 auto;
}
.nitori-wideinner {
    max-width: 1340px;
    margin: 0 auto;
}

@media screen and (max-width: 1000px) {
    .nitori .btn {
        min-width: 205px;
        width: 205px;
        height: 46px;
        border-radius: 46px;
        line-height: 46px;
        font-size: 14px;
    }
    .nitori .btn.nitorinews {
        margin: 30px auto 0 auto;
    }
}


/* header */
header {
    opacity: 1;
}
.nav {
    background-color: #fff;
    position: fixed;
    width: 80%;
    max-width: 1100px;
    left: 50%;
    top: 20px;
    transform: translateX(-50%) translateY(0%);
    border-radius: 35px;
    filter: drop-shadow(0px 2px 10px rgba(0,0,0,0.12));
    z-index: 99;
}
.nav-inner {
    width: 100%;
    height: 70px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.nav-logo {
    margin-left: 20px;
}
.nav-list_wrapper {
    font-size: 14px;
}
.nav-list {
    display: inline-block;
    list-style: none;
    padding: 0;
}
.nav-list > li {
    display: inline-block;
    margin-right: 20px;
}
.nav-list > li > a {
    text-decoration: none;
    font-size: calc(0.25vw + 10px);
    font-weight: 700;
    font-family:"A1ゴシック M","A1 Gothic M",-apple-system,"A1GothicStdN Medium",sans-serif;
    color: #22A738;
}
.nav-list > li > a:hover {
    opacity: 0.7;
}
.nav-cta {
    display: inline-block;
    width: 180px;
    border-radius: 25px;
    margin-right: 10px;
    text-align: center;
    filter: drop-shadow(0px 3px 6px rgba(0,0,0,0.16));
    transition: all 0.25s ease-in-out;
}
.nav-cta > a {
    text-decoration: none;
    color: #fff;
    width: 100%;
    height: 100%;
    display: block;
    padding: 12px;
    background: linear-gradient(87.25deg, #4CC342 14.43%, #009519 88.98%);
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
    border-radius: 80px;
}
.nav-cta > a:hover {
    opacity: 0.7;
}
.nav-logo img {
    height: 27px;
}
.nitori {
    position: relative;
}

@media screen and (max-width: 1000px) {
    .nav {
        top: 10px;
    }
    .nav-inner {
        height: 60px;
    }
    .nav-logo img {
        height: 30px;
    }
    .nav-list {
        margin-top: 50px;
        width: 280px;

    }
    .nav-list > li {
        margin-right: 0;
        width: 100%;
        margin-bottom: 30px;
    }
    .nav-list > li > a {
        color: #fff;
    }
    .nav-app-list {
        width: 280px;
        background-color: #fff;
        border-radius: 5px;
        margin: 0 auto 30px auto;
        padding: 30px 25px;
    }
    .nav-app-list .title {
        color: #22A738;
        margin-bottom: 20px;
        letter-spacing: .05em;
        font-weight: 700;
    }
    .nav-app-list .nav-app-ios {
        margin-bottom: 10px;
    }
    .button {
        position: fixed;
        top: 5px;
        right: 8px;
        height: 50px;
        width: 50px;
        display: block;
        box-sizing: border-box;
        background-color: #22A738;
        border: none;
        padding: 6px 10px;
        border-radius: 50px;
        cursor: pointer;
        filter: drop-shadow(0px 1px 4px rgba(0,0,0,0.25));
    }
    .button div {
        position: absolute;
        left: 15px;
        height: 1px;
        width: 20px;
        background-color: #fff;
        border-radius: 1px;
        display: inline-block;
        box-sizing: border-box;
    }
    .button div:nth-of-type(1) {
        top: 18px;
    }
    .button div:nth-of-type(2) {
        top: 25px;
    }
    .button div:nth-of-type(3) {
        top: 32px;
    }
    .button.active div:nth-of-type(1) {
        transform: rotate(45deg);
        top: 25px;
    }
    .button.active div:nth-of-type(2) {
        opacity: 0;
    }
    .button.active div:nth-of-type(3) {
        transform: rotate(-45deg);
        top: 25px;
    }
    .overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: rgba(0, 0, 0, 0.8);
        justify-content: center;
        align-items: center;
        z-index: 1000;
        opacity: 0;
        transform: translate(0, 0);
        transition: opacity 0.5s ease-in-out;
    }
    .overlay.show {
        display: block;
        opacity: 1;
    }
    .modal-content {
        background-color: #22A738;
        padding: 20px;
        text-align: center;
        height: 100%;
        width: 100%;
        position: relative;
    }
    .modal-content a {
        display: block;
        margin: 10px 0;
        text-decoration: none;
        color: #191F61;
        font-size: 18px !important;
        text-align: left;
    }
    .modal-content a.btn {
        background: #fff;
        text-align: center;
        padding: 20px;
        border-radius: 40px;
        transition: all 0.25s ease-in-out;
        font-size: 14px;
        color: #22A738;
        margin: 0 auto;
        width: 205px;
        min-width: 205px;
        filter: drop-shadow(0px 1px 4px rgba(0,0,0,0.25));
        font-size: 14px !important;
    }
    .modal-content a.btn:hover {
        opacity: 0.7;
        transition: opacity 0.5s ease-in-out;
    }
    .close-button {
        position: absolute;
        top: 10px;
        right: 10px;
        cursor: pointer;
        height: 50px;
        width: 50px;
        display: block;
        box-sizing: border-box;
        background-color: #22A738;
        padding: 6px 10px;
        border-radius: 50px;
    }
    .close-button div {
        position: absolute;
        height: 1px;
        width: 20px;
        background-color: #fff;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }
    .close-button div:nth-of-type(1) {
        transform: translate(-50%, -50%) rotate(45deg);
    }
    .close-button div:nth-of-type(2) {
        transform: translate(-50%, -50%) rotate(-45deg);
    }
}

/* kv */
.nitoriinner{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    clip-path: inset(0);
}
.nitoribg {
    position: fixed;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    content: '';
    background-image: url(../img/nitori/nitori_kv_bg.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    z-index: -1;
    width: 1440px;
    height: 100%;
    background-attachment: fixed;
}
.nitorikv {
    height: 1080px;
    background-color: #22A738;
    position: relative;
}
.nitori-content-wrapper {
    position: absolute;
    content: '';
    background-image: url(../img/nitori/fv_main_bg.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    left: 50%;
    top: 45%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 1080px;
    z-index: 2;
}
.nitori-content {
    position: absolute;
    left: 50%;
    top: 48%;
    transform: translate(-50%, -50%);
    width: 440px;
    z-index: 3;
}
.nitori-content .img {
    width: 330px;
    margin: 0 auto 20px auto;
    display: block;
}
.nitori-content .title {
    font-size: 32px;
    font-weight: 700;
    color: #22A738;
    text-align: center;
    line-height: 2;
    letter-spacing: .2em;
    margin-bottom: 20px;
}
.scroll {
    text-align: center;
    position: absolute;
    bottom: 130px;
    left: 50%;
    transform: translate(-50%, -50%);
}
.scroll span {
    color: #fff;
    font-size: 14px;
}
.scroll::before, .scroll::after {
    content: "";
    height: 3px;
    margin: auto;
    position: absolute;
    top: 0;
    left: 50%;
    transform-origin: left center;
    width: 50px;
    background-color: #ffffff;
}
.scroll::before {
    transform: rotate(210deg);
}
.scroll::after {
    transform: rotate(-30deg);
}

@media screen and (max-width: 1000px) {
    .nitorikv {
        height: 650px;
    }
    .nitoribg {
        background-image: url(../img/nitori/nitori_kv_bg_sp.png);
        background-size: contain;
        width: 100%;
        left: 50%;
        transform: translateX(-50%);
    }
    .nitori-content-wrapper {
        width: 350px;
        height: 650px;
    }
    .nitori-content .img {
        width: 204px;
    }
    .nitori-content .title {
        font-size: 20px;
        line-height: 2;
        letter-spacing: .2em;
    }
    .scroll {
        bottom: 70px;
    }
}

@media screen and (min-width: 760px) and (max-width: 1000px) {
    .nitoribg {
        background-image: url(../img/nitori/nitori_kv_bg.png);
        background-size: contain;
        width: 750px;
        left: 50%;
        transform: translateX(-50%);
        background-position-y: 25%;
        background-position-x: center;
    }
}


/* intro */
.nitoriintro {
    padding: 60px 0;
    position: relative;
    z-index: 1;
    background: #fff;
}
.nitoriintro::before {
    background-image: url(../img/nitori/bg_white_top.png);
    background-size: cover;
    background-position: center;
    content: "";
    top: -160px;
    width: 100%;
    height: 230px;
    left: 50%;
    transform: translateX(-50%);
    position: absolute;
}
.nitoriintro::after {
    background-image: url(../img/nitori/bg_white_bottom.png);
    background-size: cover;
    background-position: center;
    content: "";
    bottom: -170px;
    width: 100%;
    height: 230px;
    left: 50%;
    transform: translateX(-50%);
    position: absolute;
}
.nitoriintro .title {
    font-size: 32px;
    font-weight: 700;
    color: #019E97;
    text-align: center;
    letter-spacing: .11em;
    line-height: 2;
    margin-bottom: 60px;
}
.nitorisubinner {
    width: 780px;
    margin: 0 auto;
}
.nitoriintro .lead {
    font-size: 18px;
    font-weight: 400;
    color: #019E97;
    text-align: center;
    letter-spacing: .07em;
    line-height: 2.5;
    margin: 0 auto;
    margin-bottom: 50px;
}
.nitoriintro .sidenote {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 20px;
    background-color: #fff;
    padding: 40px;
    border: 4px solid #22A738;
}
.nitoriintro .sidenote .img-box img {
    width: 129px;
}
.nitoriintro .sidenote .txt-box {
    width: calc(100% - 160px);
}
.nitoriintro .sidenote .mintitle {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 30px;
    letter-spacing: .05em;
    color: #22A738;
}

@media screen and (max-width: 1000px) {
    .nitoriintro {
        padding: 50px 0;
    }
    .nitoriintro::before {
        top: -70px;
        height: 70px;
    }
    .nitoriintro::after {
        bottom: -50px;
        height: 70px;
    }
    .nitorisubinner {
        width: 90%;
        margin: 0 auto;
    }
    .nitoriintro .title {
        font-size: 16px;
        letter-spacing: .09em;
        text-align: left;
        width: 90%;
        margin: 0 auto 20px auto;
    }
    .nitoriintro .lead {
        font-size: 14px;
        text-align: left;
        line-height: 2;
        margin-bottom: 20px;
    }
    .nitoriintro .sidenote {
        display: block;
    }
    .nitoriintro .sidenote .img-box {
        text-align: center;
        margin-bottom: 20px;
    }
    .nitoriintro .sidenote .img-box img {
        width: 88px;
    }
    .nitoriintro .sidenote .txt-box {
        width: 100%
    }
    .nitoriintro .sidenote .mintitle {
        font-size: 14px;
        letter-spacing: .05em;
        line-height: 1.8;
        margin-bottom: 20px;
        text-align: center;
    }
    .nitoriintro .btn {
        margin: 0 auto;
    }
}

/* place */
.nitoriplace {
    padding: 320px 0 75px 0;
    background-color: #22A738;
}
.nitoriplace .title-area .title-jp {
    font-size: 40px;
    font-weight: 700;
    text-align: center;
    color: #fff;
    margin-bottom: 50px;
    letter-spacing: .11em;
}
.nitoriplace .place-container {
    position: relative;
    z-index: 1;
}
.nitoriplace .tab-menu {
    display: flex;
    width: 100%;
}
.nitoriplace .tab-menu li {
    width: calc(100% / 8);
    color: #fff;
    text-align: center;
    font-size: 18px;
    font-weight: 700;
    padding: 10px 0;
    border-radius: 40px;
    cursor: pointer;
    transition: all 0.25s ease-in-out;
    position: relative;
    letter-spacing: .11em;
}
.nitoriplace .tab-menu li:before {
    position: absolute;
    width: 1px;
    background-color: #fff;
    height: 15px;
    right: 0;
    top: 20px;
    content: '';
}
.nitoriplace .tab-menu li.no-border:before {
    background-color: transparent;
}
.nitoriplace .tab-menu li:last-child:before {
    width: 0;
}
.nitoriplace .tab-menu li:hover {
    background-color: #fff;
    color: #22A738;
}
.nitoriplace .tab-menu li.active {
    background-color: #fff;
    color: #22A738;
}
.nitoriplace .tab-item {
    padding: 10px 20px;
    cursor: pointer;
}
.nitoriplace .tab-item.active {
    background-color: #fff;
    border-bottom: none;
}
.nitoriplace .tab-content {
    display: none;
    padding: 15px 60px 75px 60px;
    background-color: #fff;
    border-radius: 20px;
    margin-top: 30px;
    position: relative;
    z-index: 1;
}
.nitoriplace .tab-content.active {
    display: block;
}
.nitoriplace .accordion-item {
    color:#22A738;
    font-size: 30px;
    font-weight: 700;
    line-height: 2;
    position: relative;
}
.nitoriplace .accordion-item:before {
    content: '';
    position: absolute;
    bottom: 0;
    height: 1px;
    width: 100%;
    background: #22A738;
}
.nitoriplace .accordion-header-group {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    padding: 40px 0;
}
.nitoriplace .accordion-header {
    letter-spacing: .11em;
}
.nitoriplace .accordion-toggle {
    width: 50px;
    height: 50px;
    background-color: #22A738;
    border-radius: 100px;
    position: relative;
}
.nitoriplace .accordion-toggle:before, .nitoriplace .accordion-toggle:after {
    content: '';
    position: absolute;
    background-color: white;
    transition: transform 0.3s;
}
.nitoriplace .accordion-toggle:before {
    width: 30px;
    height: 2px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.nitoriplace .accordion-toggle:after {
    width: 2px;
    height: 30px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.nitoriplace .accordion-toggle.open:after {
    transform: translate(-50%, -50%) rotate(90deg);
}
.nitoriplace .accordion-content {
    display: none;
    padding: 10px;
    background-color: #fff;
}
.nitoriplace .accordion-content ul {
    margin: 0;
    padding: 0;
    list-style: none;
}
.nitoriplace .accordion-content li {
    padding: 5px 0;
}
.nitoriplace .shop-item {
    background-color: #F5F5F5;
    border-radius: 20px;
    display: flex;
    padding: 30px;
    justify-content: space-between;
    margin-bottom: 10px;
}
.nitoriplace .img-box {
    width: 100px;
}
.nitoriplace .address-box {
    width: 250px;
}
.nitoriplace .charge-box {
    width: calc(100% - 400px);
}
.nitoriplace .img-box img {
    width: 100px;
}
.nitoriplace .address-box .title {
    font-size: 20px;
    color:#191F61;
    letter-spacing: .05em;
}
.nitoriplace .address-box .units {
    font-size: 14px;
    color:#191F61;
    margin-bottom: 20px;
    letter-spacing: .05em;
}
.nitoriplace .address-box .address {
    font-size: 18px;
    font-weight: 100;
    line-height: 1.8;
    padding-left: 30px;
    position: relative;
}
.nitoriplace .address-box .address:before {
    content: '';
    position: absolute;
    left: 0;
    top: 5px;
    width: 27px;
    height: 27px;
    background: url('../img/teigaku/map_pin.svg');
}
.nitoriplace .charge-box {
    border: 2px solid #22A738;
    background-color: #fff;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    border-radius: 20px;
    text-align: center;
    position: relative;
}
.nitoriplace .charge-box.off {
    border: 2px solid #D9D9D9;
    background-color: #D9D9D9;
    color: #999999;
}
.nitoriplace .charge-box span {
    position: relative;
    letter-spacing: .11em;
}
.nitoriplace .charge-box p:first-child:before {
    position: absolute;
    width: 1px;
    height: 90%;
    content: '';
    right: 0;
    top: 5%;
    background-color: #22A738;
}
.nitoriplace .charge-box .normal span:before {
    content: '';
    position: absolute;
    left: -35px;
    top: -2px;
    width: 22px;
    height: 30px;
    background: url(../img/teigaku/icon_normal_gr.svg);
    background-repeat: no-repeat;
}
.nitoriplace .charge-box .quick span:before {
    content: '';
    position: absolute;
    left: -65px;
    top: -25px;
    width: 52px;
    height: 72px;
    background: url('../img/teigaku/icon_quick_gr.svg');
}

@media screen and (min-width: 1001px) {
    .nitoriplace .charge-box .border {
        background-color: #22A738;
        width: 2px;
        height: 75%;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }
}

@media screen and (max-width: 1000px) {
    .nitoriplace {
        padding: 100px 0 50px 0;
    }
    .nitoriplace .title-area .title-jp {
        font-size: 20px;
        margin-bottom: 50px;
    }
    .nitoriplace .place-container {
        position: relative;
        z-index: 1;
        width: 92%;
        margin: 0 auto;
    }
    .nitoriplace .tab-menu {
        display: flex;
        flex-wrap: wrap;
        width: 100%;
    }
    .nitoriplace .tab-menu li {
        width: calc(100% / 4);
        color: #fff;
        text-align: center;
        font-size: 14px;
        font-weight: 700;
        padding: 10px 0;
        border-radius: 40px;
        cursor: pointer;
        transition: all 0.25s ease-in-out;
        position: relative;
    }
    .nitoriplace .tab-menu li:before {
        position: absolute;
        width: 1px;
        background-color: #fff;
        height: 15px;
        right: 0;
        top: 13px;
        content: '';
    }
    .nitoriplace .tab-menu li.no-border:before {
        background-color: transparent;
    }
    .nitoriplace .tab-menu li:first-child:not(.active):after, .nitoriplace .tab-menu li:nth-child(5):after  {
        position: absolute;
        width: 1px;
        background-color: #fff;
        height: 15px;
        left: 0;
        top: 13px;
        content: '';
    }
    .nitoriplace .tab-menu li:last-child:before {
        width: 1px;
    }
    .nitoriplace .tab-menu li:hover {
        background-color: #fff;
        color: #22A738;
    }
    .nitoriplace .tab-menu li.active {
        background-color: #fff;
        color: #22A738;
    }
    .nitoriplace .tab-item {
        padding: 10px 20px;
        cursor: pointer;
    }
    .nitoriplace .tab-item.active {
        background-color: #fff;
        border-bottom: none;
    }
    .nitoriplace .tab-content {
        display: none;
        padding: 20px;
        background-color: #fff;
        border-radius: 20px;
        margin-top: 30px;
    }
    .nitoriplace .tab-content.active {
        display: block;
    }
    .nitoriplace .accordion-item {
        color:#22A738;
        font-size: 14px;
        font-weight: 700;
        line-height: 2;
        position: relative;
    }
    .nitoriplace .accordion-item:before {
        content: '';
        position: absolute;
        bottom: 0;
        height: 1px;
        width: 100%;
        background: #22A738;
    }
    .nitoriplace .accordion-header-group {
        display: flex;
        justify-content: space-between;
        align-items: center;
        cursor: pointer;
        padding: 30px 0;
    }
    .nitoriplace .accordion-toggle {
        width: 30px;
        height: 30px;
        background-color: #22A738;
        border-radius: 100px;
        position: relative;
    }
    .nitoriplace .accordion-toggle:before, .nitoriplace .accordion-toggle:after {
        content: '';
        position: absolute;
        background-color: white;
        transition: transform 0.3s;
    }
    .nitoriplace .accordion-toggle:before {
        width: 15px;
        height: 2px;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }
    .nitoriplace .accordion-toggle:after {
        width: 2px;
        height: 15px;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }
    .nitoriplace .accordion-toggle.open:after {
        transform: translate(-50%, -50%) rotate(90deg);
    }
    .nitoriplace .accordion-content {
        display: none;
        padding: 10px;
        background-color: #fff;
    }
    .nitoriplace .accordion-content ul {
        margin: 0;
        padding: 0;
        list-style: none;
    }
    .nitoriplace .accordion-content li {
        padding: 5px 0;
    }
    .nitoriplace .shop-item {
        padding: 20px;
        flex-wrap: wrap;
    }
    .nitoriplace .img-box {
        width: 80px;
    }
    .nitoriplace .address-box {
        width: calc(94% - 80px);
    }
    .nitoriplace .charge-box {
        width: 100%;
    }
    .nitoriplace .img-box img {
        width: 100px;
    }
    .nitoriplace .address-box .title {
        font-size: 16px;
    }
    .nitoriplace .address-box .units {
        font-size: 14px;
        margin-bottom: 10px;
    }
    .nitoriplace .address-box .address {
        font-size: 14px;
        padding-left: 30px;
        margin-bottom: 20px;
    }
    .nitoriplace .address-box .address:before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        width: 27px;
        height: 27px;
        background: url('../img/teigaku/map_pin.svg');
    }
    .nitoriplace .charge-box {
        flex-wrap: wrap;
        border-radius: 10px;
    }
    .nitoriplace .charge-box .border {
        width: 90%;
        height: 2px;
        background-color: #22A738;
    }
    .nitoriplace .charge-box span {
        position: relative;
        width: 100%;
        padding: 30px 0;
    }
    .nitoriplace .charge-box p:first-child:before {
        position: absolute;
        width: 1px;
        height: 90%;
        content: '';
        right: 0;
        top: 5%;
        background-color: #22A738;
    }
    .nitoriplace .charge-box .normal span:before {
        content: '';
        position: absolute;
        left: -35px;
        top: 25px;
        width: 17px;
        height: 30px;
        background: url(../img/teigaku/icon_normal_gr_sp.svg);
        background-repeat: no-repeat;
    }
    .nitoriplace .charge-box .quick span:before {
        content: '';
        position: absolute;
        left: -55px;
        top: 15px;
        width: 39px;
        height: 54px;
        background: url('../img/teigaku/icon_quick_gr_sp.svg');
    }
}

/* myplugointro */
.myplugointro {
    padding: 75px 0 120px 0;
    background-color: #22A738;
    position: relative;
}
.myplugointro-content-area {
    position: relative;
    z-index: 1;
}
.myplugointro::after {
    background-image: url(../img/nitori/bg_green_bottom.png);
    background-size: cover;
    background-position: center;
    content: "";
    bottom: -95px;
    width: 100%;
    height: 240px;
    left: 50%;
    transform: translateX(-50%);
    position: absolute;
    z-index: 1;
}
.myplugointro .title-area .title-jp {
    font-size: 40px;
    font-weight: 700;
    text-align: center;
    color: #fff;
    margin-bottom: 70px;
    letter-spacing: .11em;
}
.myplugointro .lead {
    font-size: 16px;
    line-height: 2;
    color: #fff;
    letter-spacing: .05em;
    text-align: center;
    margin-bottom: 70px;
}
.myplugointro-content {
    background-color: #fff;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 5%;
    margin-bottom: 30px;
    height: 438px;
}
.myplugointro-content.reverse {
    flex-direction: row-reverse;
}
.myplugointro-content .txt-area span {
    font-size: 10px;
    min-width: 90px;
    border-radius: 10px;
    background: #22A738;
    color: #fff;
    line-height: 1;
    padding: 5px 8px;
    text-align: center;
    letter-spacing: 0.1em;
}
.myplugointro-content .txt-area h3 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 40px;
    margin-top: 10px;
    letter-spacing: .11em;
    color: #22A738;
}
.myplugointro-content .txt-area p {
    line-height: 2;
    color: #191F61;
    letter-spacing: .05em;
}
.myplugointro-content:first-child .img-area img {
    width: 524px;
}
.myplugointro-content:nth-child(2) .img-area img {
    width: 432px;
}
.myplugointro-content:last-child .img-area img {
    width: 350px;
}

@media screen and (max-width: 1000px) {
    .myplugointro {
        padding: 50px 0;
    }
    .myplugointro::after {
        bottom: -25px;
        height: 70px;
    }
    .myplugointro .nitori-inner {
        width: 90%;
    }
    .myplugointro .title-area .title-jp {
        font-size: 20px;
        margin-bottom: 40px;
    }
    .myplugointro .lead {
        font-size: 14px;
        line-height: 1.8;
        text-align: left;
        margin-bottom: 20px;
        position: relative;
        z-index: 1;
    }
    .myplugointro-content {
        background-color: #fff;
        border-radius: 20px;
        display: block;
        align-items: center;
        justify-content: space-between;
        padding: 5%;
        margin-bottom: 30px;
        height: 470px;
    }
    .myplugointro-content.adjust {
        height: 540px;
    }
    .myplugointro-content .txt-area span {
        font-size: 14px;
        letter-spacing: 0.11em;
        display: inline-block;
        border-radius: 14px;
    }
    .myplugointro-content .txt-area h3 {
        font-size: 16px;
        margin-top: 0;
        line-height: 4;
        color: #191F61;
        margin-bottom: 0;
    }
    .myplugointro-content .txt-area p {
        font-size: 14px;
    }
    .myplugointro-content .txt-area .subtext {
        font-size: 11px;
    }
    .myplugointro-content .img-area img {
        margin: 0 auto;
        display: block;
        padding: 20px 0;
    }
    .myplugointro-content:first-child .img-area img {
        width: 313px;
    }
    .myplugointro-content:nth-child(2) .img-area img {
        width: 217px;
    }
    .myplugointro-content:last-child .img-area img {
        width: 200px;
    }
}

@media screen and (min-width: 601px) and (max-width: 1000px) {
    .nitoriintro::before {
        top: -80px;
        height: 120px;
    }
    .nitoriintro::after {
        bottom: -85px;
        height: 130px;
    }
    .nitoriplace .title-area {
        padding-top: 70px;
    }
    .myplugointro {
        padding: 50px 0 125px 0;
    }
    .myplugointro::after {
        bottom: -50px;
        height: 125px;
    }
}

/* myplugorecommend */
.myplugorecommend {
    background: #F5F5F5;
    padding: 140px 0 75px 0;
    position: relative;
    z-index: 1;
}
.myplugorecommend:before {
    /* content: "";
    position: absolute;
    bottom: -50px;
    left: 0;
    width: 100%;
    height: 100px;
    background-color: #22A738;
    border-bottom-left-radius: 50%;
    border-bottom-right-radius: 50%;
    z-index: 0; */
}
.myplugorecommend .title-area .title-jp {
    font-size: 40px;
    font-weight: 700;
    text-align: center;
    color: #191F61;
    margin-bottom: 70px;
    letter-spacing: .11em;
}
.myplugorecommend .recommend-area {
    display: flex;
    justify-content: space-between;
    margin-bottom: 60px;
}
.step.first {
    z-index: 3;
}
.step.second {
    z-index: 2;
}
.step.third {
    z-index: 1;
}
.step {
    background-color: #fff;
    width: 32%;
    border-radius: 30px;
    position: relative;
    filter: drop-shadow(0px 4px 5px rgba(0, 0, 0, 0.25));
    padding-top: 275px;
    margin-top: 300px;
    padding-bottom: 40px;
}
.step.first:before {
    background-image: url('../img/nitori/flow_1.png');
}
.step.second:before {
    background-image: url('../img/nitori/flow_2.png');
}
.step.third:before {
    background-image: url('../img/nitori/flow_3.png');
}
.step:before {
    position: absolute;
    content: '';
    left: 0;
    top: -280px;
    width: 100%;
    height: 523px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}
.step-title {
    font-size: 20px;
    font-weight: 700;
    text-align: center;
    width: 85%;
    margin: 0 auto 1rem auto;
    height: 40px;
    line-height: 1.6;
    font-family: "A1ゴシック M", "A1 Gothic M", -apple-system, "A1GothicStdN Medium", sans-serif;
    letter-spacing: .05em;
}
.step-lead {
    font-size: 14px;
    letter-spacing: .05em;
    line-height: 1.8;
    width: 85%;
    margin: 0 auto .5rem auto;
}
.step-sublead {
    font-size: 12px;
    letter-spacing: .05em;
    line-height: 1.6;
    width: 85%;
    margin: 0 auto .5rem auto;
}
.contact-area {
    width: 600px;
    margin: 0 auto;
}
.contact-area .txt {
    font-size: 16px;
    letter-spacing: .05em;
    color: #5B6C80;
}
.contact-box {
    display: flex;
    border: 3px solid #191F61;
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    font-size: 14px;
    color: #191F61;
    justify-content: space-around;
    margin: 40px auto 0 auto;
    letter-spacing: .05em;
}

@media screen and (max-width: 1000px) {
    .myplugorecommend {
        padding: 75px 0 0 0;
    }
    .myplugorecommend .title-area .title-jp {
        font-size: 20px;
    }
    .myplugorecommend .recommend-area {
        display: block;
    }
    .nitori-wideinner {
        width: 90%;
    }
    .step {
        width: 100%;
    }
    .step-title {
        font-size: 16px;
    }
    .step-lead {
        width: 90%;
    }
    .step-sublead {
        width: 90%;
    }
    .contact-area {
        width: 100%;
    }
    .contact-area .txt {
        text-align: center;
        font-size: 12px;
        line-height: 2;
        width: 350px;
        margin: 0 auto;
    }
    .contact-box {
        display: block;
    }
    .contact-box dt {
        margin-bottom: 10px;
    }
    .contact-box dd {
        line-height: 2;
    }
}

/* myplugonews */
.myplugonews {
    background: #F5F5F5;
    padding: 75px 0 75px 0;
    position: relative;
    z-index: 1;
}
.myplugonews .title-area .title-jp {
    font-size: 40px;
    font-weight: 700;
    text-align: center;
    color: #191F61;
    margin-bottom: 70px;
    letter-spacing: .11em;
}
.myplugonews .lead {
    font-size: 16px;
    line-height: 2;
    color: #191F61;
    letter-spacing: .07em;
    text-align: center;
    margin-bottom: 70px;
}

@media screen and (min-width: 1001px) and (max-width: 1200px) {
    .myplugonews .nitori-inner {
        max-width: 900px;
    }
}

@media screen and (max-width: 1000px) {
    .myplugonews .nitori-inner {
        width: 90%;
    }
    .myplugonews .title-area .title-jp {
        font-size: 20px;
        margin-bottom: 20px;
    }
    .myplugonews .lead {
        font-size: 14px;
        line-height: 1.8;
        text-align: left;
        margin-bottom: 20px;
    }
}

/* myplugocta */
.myplugocta {
    height: 463px;
    position: relative;
    z-index: 1;
}
.myplugocta .bg {
    background-image: url(../img/nitori/cta_bg.png);
    height: 463px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    position: relative;
}
.cta-area {
    background-color: #fff;
    position: absolute;
    width: 90%;
    max-width: 1150px;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    border-radius: 30px;
}
.cta-inner {
    padding: 5% 3%;
    display: flex;
    align-items: center;
    justify-content: space-around;
    font-family: "A1ゴシック M","A1 Gothic M",-apple-system,"A1GothicStdN Medium",sans-serif;
}
.cta-left-block {
    position: relative;
}
.cta-left-block:before {
    position: absolute;
    content: "";
    right: -50px;
    top: -30px;
    width: 1px;
    height: 260px;
    background: #ccc;
}
.cta-logo {
    margin-bottom: 20px;
}
.cta-logo > img {
    height: 38px;
}
.cta-app-box {
    display: flex;
    margin-bottom: 20px;
}
.cta-app-ios {
    height: 61px;
    object-fit: contain;
}
.cta-app-android {
    height: 61px;
    object-fit: contain;
}
.cta-app-box > a:first-child {
    margin-right: 10px;
}
.cta-dl-txt {
    font-size: 14px;
    font-weight: 700;
    line-height: 2;
    letter-spacing: .05em;
}
.cta-dl-txt span {
    color: #22A738;
}
.cta-catch {
    font-size: 19px;
    color: #22A738;
    font-weight: 700;
    text-align: center;
    position: relative;
    font-family:"A1ゴシック M","A1 Gothic M",-apple-system,"A1GothicStdN Medium",sans-serif;
    width: 160px;
    margin: 0 auto;
}
.cta-catch:before {
    position: absolute;
    content: '';
    width: 3px;
    height: 25px;
    background: #22A738;
    left: -10px;
    top: 2px;
    transform: rotate(-25deg);
}
.cta-catch:after {
    position: absolute;
    content: '';
    width: 3px;
    height: 25px;
    background: #22A738;
    right: -10px;
    top: 2px;
    transform: rotate(25deg);
}
.cta-subcatch {
    font-size: 32px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
}
.cta-subcatch span {
    color: #22A738;
}
.cta-pt-txt {
    font-size: 14px;
    font-weight: 700;
    text-align: center;
    line-height: 2;
}

@media screen and (max-width: 1000px) {
    .myplugocta {
        height: 500px;
    }
    .cta-area {
        border-radius: 5px;
    }
    .cta-inner {
        padding: 20px;
        display: block;
        align-items: center;
        justify-content: space-around;
    }
    .myplugocta .bg {
        height: 500px;
    }
    .cta-left-block:before {
        right: auto;
        top: auto;
        left: 0;
        bottom: -10px;
        width: 1px;
        height: 1px;
        background: #ccc;
        width: 100%;
    }
    .cta-logo {
        margin-bottom: 10px;
    }
    .cta-logo > img {
        height: 30px;
    }
    .cta-app-box {
        justify-content: center;
        margin-bottom: 10px;
    }
    .cta-dl-txt {
        font-size: 12px;
        text-align: left;
        margin-bottom: 20px;
    }
    .cta-dl-txt .min_txt {
        font-size: 12px;
    }
    .cta-catch {
        font-size: 14px;
        width: 120px;
        margin: 0 auto;
    }
    .cta-catch:before {
        width: 3px;
        height: 15px;
        left: -10px;
        top: 3px;
    }
    .cta-catch:after {
        width: 3px;
        height: 15px;
        right: -10px;
        top: 3px;
    }
    .cta-subcatch {
        font-size: 24px;
    }
    .cta-pt-txt {
        font-size: 14px;
        text-align: left;
    }
    .cta-right-block {
        padding-top: 10px;
    }
}

/* footer */
footer {
    padding: 0;
}
.footer_nav_list {
    padding: 35px 0;
    display: flex;
    justify-content: center;
}
.footer_nav_list > li {
    display: inline-block;
    margin-right: 40px;
    position: relative;
}
.footer_nav_list > li:before {
    position: absolute;
    content: '';
    border: 1px solid #fff;
    height: 14px;
    right: -20px;
    top: 6px;
}
.footer_nav_list > li:last-child:before {
    content: '';
    border: none;
}
.footer_nav_list > li > a {
    text-decoration: none;
    font-size: 12px;
}
.copyright {
    display: block;
    text-align: center;
    font-size: 10px;
    font-weight: 100;
    color: #fff;
    padding-bottom: 15px;
}

@media screen and (max-width: 1000px) {
    .footer_nav_list {
        width: 375px;
        margin: 0 auto;
        flex-wrap: wrap;
        padding: 25px 0;
        justify-content: space-evenly;
    }
    .footer_nav_list > li > a {
        font-size: 9px;
    }
    .footer_nav_list > li {
        margin-right: 0;
        position: relative;
    }
    .footer_nav_list > li:before {
        right: -15px;
    }
}

/* nitori nitorinews */
.nitori .prev-arrow {
    left: -20px !important;
}
.nitori .next-arrow {
    left: auto !important;
    right: -20px !important;
}

.fix-cta {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 10;
}
.fix-cta-container {
    width: 222px;
    height: 222px;
    background-color: #fff;
    border-radius: 50%;
    margin: 0 auto;
    filter: drop-shadow(0px 4px 5px rgba(0, 0, 0, 0.25));
}
.fix-cta-title {
    font-size: 14px;
    color: #22A738;
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: .05em;
    text-align: center;
    padding-top: 35px;
}
.fix-cta .cta-app-ios {
    width: 133px;
    height: 42px;
    display: block;
    margin: 10px auto 0 auto;
}
.fix-cta .cta-app-android {
    width: 133px;
    height: 34px;
    display: block;
    margin: 10px auto 0 auto;
}

/* nitorinews */
.nitorinews {
    background-color: #f5f5f5;
}
.nitorinewsdetail {
    max-width: 1100px;
    margin: 0 auto;
    padding: 160px 0 120px 0;
}
.nitorinewsdetail .table-of-contents {
    margin: 30px 0 50px 0;
    background: #fff;
    padding: 30px 55px 30px 275px;
    border-radius: 10px;
    position: relative;
}
.nitorinewsdetail .table-of-contents:before {
    position: absolute;
    content: 'INDEX';
    left: 55px;
    font-size: 26px;
    color: #22A738;
    letter-spacing: .15em;
}
.nitorinewsdetail .table-of-contents:after {
    position: absolute;
    content: '';
    left:210px;
    top: 30px;
    width: 1px;
    height: calc(100% - 60px);
    background-color: #191F61;
}
.nitorinewsdetail .table-of-contents li {
    line-height: 2.5;
    font-size: 16px;
    letter-spacing: .15em;
}
.nitorinewsdetail .table-of-contents li span {
    color: #22A738;
    width: 50px;
    display: inline-block;
}
.nitorinewsdetail-category {
    background-color: #22A738;
    color: #fff;
    font-size: 16px;
    border-radius: 16px;
    padding: 8px 20px;
    margin-right: 8px;
}
.nitorinewsdetail-date {
    color: #5B6C80;
    font-size: 16px;
    letter-spacing: .05em;
    line-height: 2;
}
.nitorinewsdetail-title {
    font-size: 40px;
    line-height: 1.6;
    font-weight: 700;
    margin-top: 20px;
    margin-bottom: 50px;
}
.nitorinewsdetail-body h2 {
    position: relative;
    font-size: 26px;
    line-height: 2.2;
    letter-spacing: .15em;
    padding-left: 2rem;
    font-weight: 700;
    margin-bottom: 50px;
    margin-top: 20px;
}
.nitorinewsdetail-body h2:before {
    position: absolute;
    width: 3px;
    height: 100%;
    background-color: #22A738;
    left: 0;
    top: 0;
    content: '';
}
.nitorinewsdetail-body h3 {
    font-size: 22px;
    line-height: 2.7;
    letter-spacing: .15em;
    font-weight: 700;
    margin-bottom: 35px;
    color: #22A738;
}
.nitorinewsdetail-body p {
    font-size: 16px;
    line-height: 2;
    letter-spacing: .15em;
    margin-bottom: 20px;
}
.nitorinewsdetail-back .btn {
    margin: 0 auto;
    display: block;
    width: 294px;
    height: 70px;
    border-radius: 70px;
    line-height: 70px;
    font-size: 20px;
    padding: 0;
    letter-spacing: .11em;
    border: 1px solid #22A738;
    color: #22A738;
    font-weight: 700;
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
}
.nitorinewsdetail-back .btn:hover {
    background-color: #fff;
    color: #22A738;
    opacity: 0.7;
}

@media screen and (min-width: 1000px) and (max-width: 1200px) {
    .nitorinewsdetail {
        max-width: 900px;
    }
}

@media screen and (max-width: 1000px) {
    .nitorinewsdetail {
        width: 90%;
        max-width: 90%;
        margin: 0 auto;
        padding: 100px 0;
    }
    .nitorinewsdetail .table-of-contents {
        margin: 30px 0 50px 0;
        background: #fff;
        padding: 70px 20px 20px 20px;
        border-radius: 10px;
        position: relative;
    }
    .nitorinewsdetail .table-of-contents:before {
        font-size: 16px;
        left: 20px;
        top: 20px;
    }
    .nitorinewsdetail .table-of-contents:after {
        left: 20px;
        top: 60px;
        width: calc(100% - 40px);
        height: 1px;
    }
    .nitorinewsdetail .table-of-contents li {
        line-height: 2.5;
        font-size: 14px;
        letter-spacing: .15em;
    }
    .nitorinewsdetail .table-of-contents li span {
        color: #22A738;
        width: 30px;
        display: inline-block;
    }
    .nitorinewsdetail-category {
        background-color: #22A738;
        color: #fff;
        font-size: 12px;
        border-radius: 16px;
        padding: 8px 20px;
        margin-right: 8px;
    }
    .nitorinewsdetail-date {
        color: #5B6C80;
        font-size: 12px;
        letter-spacing: .05em;
        line-height: 2;
    }
    .nitorinewsdetail-title {
        font-size: 16px;
        line-height: 1.8;
        font-weight: 700;
        margin-top: 20px;
        margin-bottom: 20px;
    }
    .nitorinewsdetail-body h2 {
        font-size: 18px;
        line-height: 1.8;
        padding-left: 1rem;
        margin-top: 20px;
        margin-bottom: 20px;
    }
    .nitorinewsdetail-body h2:before {
        position: absolute;
        width: 5px;
        height: calc(100% - 10px);
        background-color: #22A738;
        left: 0;
        top: 5px;
        content: '';
    }
    .nitorinewsdetail-body h3 {
        font-size: 16px;
        line-height: 1.8;
        margin-bottom: 20px;
    }
    .nitorinewsdetail-body p {
        font-size: 14px;
        line-height: 2;
        letter-spacing: .15em;
        margin-bottom: 20px;
    }
    .nitorinewsdetail-back .btn {
        font-size: 16px;
    }
}

/* nitorinews */
.nitorinewsarchive {
    background-color: #f5f5f5;
}
.nitorinewsarchive-heading {
    background-color: #22A738;
    height: 300px;
}
.nitorinewsarchive-heading h2 {
    text-align: center;
    padding-top: 150px;
    font-size: 40px;
    font-weight: 700;
    color: #fff;
    letter-spacing: .15em;
    line-height: 1.4;
}
.nitorinewsarchive-pickup {
    margin-top: 50px;
}
.pickup-posts .slick-slide img {
    border-radius: 16px;
}
.pickup-post-inner {
    display: flex;
    background: #fff;
    padding: 20px;
    width: 1150px;
    margin: 0 .5rem;
    border-radius: 10px;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.11);
}
.pickup-thumbnail {
    width: 450px;
}
.pickup-content {
    width: calc(100% - 420px);
    padding-left: 30px;
}
.pickup-category {
    background-color: #22A738;
    color: #fff;
    font-size: 12px;
    line-height: 2.8;
    border-radius: 16px;
    padding: 8px 20px;
    margin-right: 8px;
}
.pickup-date {
    color: #5B6C80;
    font-size: 12px;
    letter-spacing: .05em;
    line-height: 2.8;
}
.pickup-title {
    font-size: 20px;
    line-height: 1.7;
    font-weight: 700;
    margin: 20px 0;
}
.pickup-excerpt {
    font-size: 14px;
    line-height: 2;
    letter-spacing: .07em;
}
.prev-arrow, .next-arrow {
    position: absolute;
    top: 50%;
    transform: translate(0, -50%);
    cursor: pointer;
    z-index: 1;
}
.prev-arrow:hover, .next-arrow:hover {
    opacity: 0.7;
}
.dots-wrap {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}
.dots-wrap li {
    width: 10px;
    height: 10px;
    margin: 0 5px;
    background: transparent;
    border-radius: 50%;
    cursor: pointer;
    border: 1px solid #22A738;
}
.dots-wrap li:hover,
.dots-wrap li.slick-active {
    background: #22A738;
}
.dots-wrap li button {
    display: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    outline: none;
    padding: 0;
    border: none;
    background-color: transparent;
}
.slick-dotted.slick-slider {
    margin-bottom: 60px !important;
}
.all-posts {
    max-width: 1150px;
    display: flex;
    flex-wrap: wrap;
    margin: 0 auto;
}
.nitori-post {
    width: 50%;
    margin-bottom: 2%;
}
.nitori-post img {
    border-radius: 10px;
}
.nitori-post-inner {
    display: flex;
    background: #fff;
    padding: 15px;
    margin: 0 .5rem;
    border-radius: 10px;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.11);
}
.nitori-post-thumbnail {
    width: 220px;
}
.nitori-post-content {
    width: calc(100% - 200px);
    padding-left: 20px;
}
.nitori-post-category {
    background-color: #22A738;
    color: #fff;
    font-size: 12px;
    line-height: 2.8;
    border-radius: 16px;
    padding: 8px 12px;
    margin-right: 8px;
}
.nitori-post-date {
    color: #5B6C80;
    font-size: 12px;
    letter-spacing: .05em;
    line-height: 2.8;
}
.nitori-post-title {
    font-size: 16px;
    line-height: 1.7;
    font-weight: 700;
    margin: 10px 0 0 0;
}
.nitori-pager {
    margin-bottom: 100px;
}
.nitori-pager .pager-list {
    display: flex;
    align-items: center;
    justify-content: center;
}
.nitori-pager li > span {
    background-color: #fff;
    border: 2px solid #22A738;
    color: #22A738;
    font-size: 16px;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    line-height: 1;
    opacity: 1;
}
.nitori-pager li:not(.pager-next):not(.pager-prev) > a {
    background-color: #22A738;
    border: 1px solid #22A738;
    color: #fff;
    font-size: 16px;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    line-height: 1;
    opacity: 1;
}
.nitori-pager li:not(.pager-next):not(.pager-prev) > a:hover {
    opacity: 0.7;
}
.nitori-pager li.pager-prev > a, .nitori-pager li.pager-next > a {
    width: 36px;
    height: 36px;
    background: #22A738;
    border-radius: 50%;
}
.nitori-pager .pager-list li.pager-prev a::after, .nitori-pager .pager-list li.pager-next a::after {
    border-top: 1px solid #fff;
    border-right: 1px solid #fff;
    width: 8px;
    height: 8px;
}

@media screen and (min-width: 1000px) and (max-width: 1200px) {
    .pickup-post-inner {
        width: 900px;
    }
    .all-posts {
        max-width: 900px;
    }
    .nitori-post-thumbnail {
        width: 180px;
    }
    .nitori-post-title {
        font-size: 14px;
    }
}

@media screen and (max-width: 1000px) {
    .nitorinewsarchive-pickup {
        margin-top: 20px;
    }
    .nitorinewsarchive-heading {
        background-color: #22A738;
        height: 160px;
    }
    .nitorinewsarchive-heading h2 {
        padding-top: 100px;
        font-size: 20px;
        line-height: 1.4;
    }
    .pickup-thumbnail {
        width: auto;
    }
    .pickup-posts .slick-slide img {
        border-radius: 5px;
        width: 100%;
    }
    .pickup-post-inner {
        width: 90%;
        display: block;
        margin: 0 auto;
    }
    .pickup-content {
        width: 100%;
        padding-left: 0;
        margin-top: 10px;
    }
    .pickup-category {
        background-color: #22A738;
        color: #fff;
        font-size: 12px;
        line-height: 2.8;
        border-radius: 16px;
        padding: 8px 20px;
        margin-right: 8px;
    }
    .pickup-date {
        color: #5B6C80;
        font-size: 12px;
        letter-spacing: .05em;
        line-height: 2.8;
    }
    .pickup-title {
        font-size: 16px;
        line-height: 1.7;
        font-weight: 700;
        margin: 10px 0;
        width: 100%;
    }
    .pickup-excerpt {
        display: none;
    }
    .all-posts {
        max-width: 100%;
        display: block;
    }
    .nitori-post {
        width: 95%;
        margin: 0 auto;
    }
    .nitori-post img {
        border-radius: 5px;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    .nitori-post-inner {
        display: flex;
        background: transparent;
        padding: 15px 15px 15px 0;
        margin: 0 .5rem;
        border-radius: 0;
        box-shadow: none;
        border-top: 1px solid #d9d9d9;
    }
    .nitori-post:last-child .nitori-post-inner {
        border-bottom: 1px solid #d9d9d9;
    }
    .nitori-post-thumbnail {
        width: 80px;
        height: 80px;
    }
    .nitori-post-content {
        width: calc(100% - 100px);
        padding-left: 20px;
    }
    .nitori-post-category {
        padding: 4px 6px;
    }
    .nitori-post-date {
        color: #5B6C80;
        font-size: 12px;
        letter-spacing: .05em;
        line-height: 2.8;
    }
    .nitori-post-title {
        font-size: 14px;
        line-height: 1.7;
        margin: 10px 0 0 0;
    }
    .nitori-pager {
        margin: 30px 0 60px 0;
    }
    .nitori-pager li > span {
        padding: 10px;
    }
    .nitori-pager li:not(.pager-next):not(.pager-prev) > a {
        padding: 10px;
    }
    .nitori-pager .pager-list li.pager-prev, .nitori-pager .pager-list li.pager-next {
        position: relative;
    }
    .nitori-pager .pager-list li {
        margin: 0 10px;
    }
    .slick-dotted.slick-slider {
        margin-bottom: 30px !important;
    }
}

@media screen and (min-width: 1001px) {
    .pc_only {
        display: block !important;
    }
    .sp_only {
        display: none !important;
    }
    .tablet_only {
        display: none !important;
    }
}

@media screen and (max-width: 1000px) {
    .pc_only {
        display: none !important;
    }
    .sp_only {
        display: block !important;
    }
    .tablet_only {
        display: none !important;
    }
}

@media screen and (min-width: 1000px) and (max-width: 1200px) {
    .tablet_only {
        display: block !important;
    }
    .nitori-inner {
        max-width: 1000px;
    }
}