@charset "utf-8";


/* === base === */

body{
    font-family: 'Noto Sans JP', "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", "Helvetica Neue", "Helvetica", sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.7;
    color: #333333;
    background-color: #FFFFFF;
}

svg, img{
    display: block;
    width: 100%;
    height: auto;
}

a{	
    cursor: pointer;
    color: #007CBA;
}

*:focus{
    outline: none;
}

.-contents{
    margin-top: 16.2px;
}

.-f-separate{
    margin-bottom: 40px;
}

.-inner{
    max-width: 1366px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 24px;
    padding-right: 24px;
}

.-inner.-v-scroll{
    padding-left: 0;
    padding-right: 0;
    overflow-x: scroll;
    padding-bottom: 24px;
}

.-v-scroll-inner{
    padding-left: 24px;
}

.-fixed{
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
}


.-bg-blue{
    background-color: #F5FCFF;
    padding-top: 40px;
    padding-bottom: 40px;
}

.-bg-grey{
    background-color: #FAFAFA;
    padding-top: 40px;
    padding-bottom: 40px;
}

.-bold{
    font-weight: 700;
}

.-p-title{
    font-size: 24px;
    line-height: 1.7;
    font-weight: 700;
}

.-p-title span{
    display: block;
    position: relative;
    padding-top: 8px;
    padding-bottom: 8px;
    padding-left: 24px;
    padding-right: 16px;
    background-color: #F5FCFF;
    border-radius: 4px;
}

.-p-title span:before{
    content: "";
    width: 8px;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: #007CBA;
    border-radius: 4px 0 0 4px;
}

.-t-title{
    font-size: 20px;
    font-weight: 700;
    line-height: 1.5;
    position: relative;
}

.-t-title.-v-line{
    padding-bottom: 8px;
    border-bottom: 1px solid #EEEEEE;
}

.-u-t-title{
    margin-top: 24px;
}

.-t-body{
    font-size: 12px;
    line-height: 1.5;
}

.-c-body{
    font-size: 10px;
    line-height: 1.4;
}

.-t-color-blue{
    color: #007CBA;
}

.-t-inner-title{
    font-size: 16px;
    font-weight: 700;
    line-height: 1.5;
}

.-t-inner-sub{
    font-weight: 700;
}

.-section + .-section{
    margin-top: 40px;
}

.-pc,
.-pctab{
    display: block;
}

.-sp{
    display: none;
}
.mt-0{
    margin-top: 0!important;
}
.pt-0{
    padding-top: 0!important;
}
.pb-0{
    padding-bottom: 0!important;
}

/* ===  / base === */


/* === header === */

#header{
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.l-pages #header{
    width: 100%;
    position: sticky;
    top: 0;
    left: 0;
    z-index: 1;
    background: #FFFFFF;
}

.header-inner{
    padding-top: 24px;
    padding-bottom: 24px;
    padding-left: 24px;
    padding-right: 24px;
}

.header-row{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-nav-inner{
    max-width: 1366px;
    margin-left: auto;
    margin-right: auto;
}

.header-logo{
    font-size: 20px;
    font-weight: 700;
    line-height: 1.2;
    color: #007CBA;
}

.l-top .header-logo{
    opacity: 0;
    user-select: none;
}

.header-nav{
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    background-color: #F5FCFF;
}

.header-nav-list{
    margin-top: 105px;
    padding-left: 24px;
    padding-right: 24px;
}

.header-nav-list li{
    border-bottom: 1px solid #007CBA;
}

.header-nav-link{
    display: block;
    font-size: 20px;
    font-weight: 500;
    padding-top: 24px;
    padding-bottom: 24px;
    position: relative;
}

.header-nav-link span{
    display: block;
    padding-right: 24px;
}

.header-nav-link:after{
    content: "";
    display: block;
    width: 16px;
    height: 16px;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    background-repeat: no-repeat;
    background-image: url("../images/icon-dogleg-right.svg");
    background-size: 16px;
    background-position: center;
}

.header-h-menu{
    width: 24px;
    height: 20px;
    position: relative;
    cursor: pointer;
}

.header-h-menu.-close{
    position: absolute;
    top: 43px;
    left: 24px;
}

.header-h-menu span,
.header-h-menu:before,
.header-h-menu:after{
    display: block;
    width: 100%;
    height: 2px;
    border-radius: 100px;
    background-color: #007CBA;
    position: absolute;
    left: 0;
}

.header-h-menu span{
    top: 50%;
    transform: translateY(-50%);
}

.header-h-menu.-close span{
    display: none;
}

.header-h-menu:before{
    content: "";
    top: 0;
}

.header-h-menu.-close:before{
    top: 8px;
    transform: rotate(-45deg);
}

.header-h-menu:after{
    content: "";
    bottom: 0;
}

.header-h-menu.-close:after{
    bottom: 9px;
    transform: rotate(45deg);
}

/* === / header === */

/* === footer === */

footer{
    background-color: #FFFFFF;
    border-top: 1px solid #EEEEEE;
    padding-top: 11px;
    padding-bottom: 11px;
}

.l-footer-inner{
    display: flex;
    justify-content: space-between;
}

.footer-nav-list{
    display: flex;
    align-items: center;
}

.footer-nav-list li:last-child{
    color: #007CBA;
    display: flex;
    align-items: center;
}

.footer-nav-list li:last-child a{
    margin-right: 10px;
}

.footer-nav-list li:last-child img{
    height: 50px;
    width: auto;
}

.footer-nav-list li:not(:first-child){
    margin-left: 16px;
}

.footer-copyright{
    font-size: 10px;
    display: flex;
    align-items: center;
}

/* ===  / footer === */

/* === parts === */

.p-button{
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    text-align: center;
    color: #FFFFFF;
    position: relative;
    border-radius: 100px;
    padding-top: 16px;
    padding-bottom: 16px;
    padding-left: 24px;
    padding-right: 24px;
    background: linear-gradient(90deg, rgba(0,159,230,1) 0%, rgba(49,202,252,1) 100%);
    box-shadow: 8px 8px 16px rgba(0,0,0,0.08);
}

.p-button:focus{
    box-shadow: 0 0 0 rgba(0,0,0,0.08);
    border:1px solid rgba(0,124,186,1);
}

.p-button.-mw{
    min-width: 240px;
}

.p-button span{
    display: block;
    position: relative;
    z-index: 1;
}

.p-button:after{
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 100px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
    background: linear-gradient(90deg, rgba(49,202,252,1) 0%, rgba(0,159,230,1) 100%);
}

.p-link-dogleg{
    display: inline-block;
    padding-right: 24px;
    position: relative;
    color: #007CBA;
    font-weight: 500;
    cursor: pointer;
}

.p-link-dogleg:after{
    content: "";
    display: block;
    width: 16px;
    height: 16px;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    background-repeat: no-repeat;
    background-image: url("../images/icon-dogleg-down.svg");
    background-size: 16px;
    background-position: center;
}

.-open .p-link-dogleg:after{
    transform: translateY(-50%) rotate(-180deg);
}

.p-link-dogleg span{
    display: inline-block;
}

.p-link-anchor{
    display: block;
    position: relative;
}

.p-link-anchor span{
    display: block;
    padding-right: 32px;
}

.p-link-anchor.-small span{
    font-size: 14px;
}

.p-sidemenu-item{
    display: flex;
    position: relative;
}

.p-sidemenu-item .p-link-anchor span{
    margin-top: 0;
}

.p-link-anchor-show{
    cursor: pointer;
}

.p-link-anchor-show:after{
    content:"";
    display: block;
    width: 12px;
    height: 12px;
    background-size: 12px;
    position: absolute;
    right: 0;
    top: 50%;
    transform: rotate(180deg) translateY(50%);
    background-repeat: no-repeat;
    background-image: url("../images/icon-dogleg-down.svg");
    background-position: center;
}

.p-link-anchor-show.active::after{
    transform: rotate(0) translateY(-50%);
}

.p-link-anchor *{
    margin-top: 8px;
}


.p-card-chips{
    background-color: #FFFFFF;
    border: 1px solid #EEEEEE;
    border-radius: 8px;
    box-shadow: 8px 8px 16px rgba(0,0,0,0.08);
    position: relative;
    transition: all 0.4s ease-in-out;
}

.p-card-chips.-min{
    padding-top: 16px;
    padding-bottom: 16px;
    padding-left: 8px;
    padding-right: 8px;
}

.p-card-chips.-selected{
    box-shadow: 0 0 0 rgba(0,0,0,0.08);
}

.p-card-selector{
    width: 100%;
    height: 100%;
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    cursor: pointer;
}

.p-card-selected{
    display: block;
    width: 40px;
    height: 40px;
    opacity: 0;
    position: absolute;
    left: -20px;
    top: -20px;
    transition: all 0.4s ease-in-out;
}

.-selected .p-card-selected{
    opacity: 1;
}

.p-label-round{
    position: relative;
    width: 108px;
    max-width: 108px;
    height: 108px;
    border-radius: 100px;
    background-color: #FFA65A;
    flex: 1;
    cursor: pointer;
}

.p-card-link{
    display: block;
    cursor: pointer;
    color: #333333;
    background-color: #FFFFFF;
    border: 1px solid #EEEEEE;
    border-radius: 8px;
    box-shadow: 8px 8px 16px rgba(0,0,0,0.08);
    position: relative;
    transition: all 0.4s ease-in-out;
    flex: 1;
}

.p-card-link.-card-bg-blue{
    background-color: #F5FCFF;
}

.p-card-link.-include-modal{
    cursor: auto;
}

.-include-modal .result-details-text{
    height: 190px!important;
    max-height: 190px!important;
    overflow: auto!important;
    white-space: pre-line!important;
}

.p-card-link-inner{
    padding-top: 40px;
    padding-bottom: 40px;
    padding-left: 40px;
    padding-right: 40px;
    position: relative;
}

.p-card-link-inner span{
    display: block;
}

.p-icon-new{
    display: block;
    width: 40px;
    position: absolute;
    top: 16px;
    left: 0;
}

.p-icon-key{
    display: block;
    width: 16px;
    position: absolute;
    top: 16px;
    right: 16px;
}

.p-label-round-inner{
    width: 100%;
    text-align: center;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

.p-label-cr{
    display: inline-block;
    color: #FFFFFF;
    padding-top: 4px;
    padding-bottom: 4px;
    padding-left: 16px;
    padding-right: 16px;
    border-radius: 4px;
    border: 1px solid #333333;
    background-color: #333333;
}

.p-label-cr-white{
    color: #333333;
    border: 1px solid #EEEEEE;
    background-color: #FFFFFF;
}

.p-input{
    width: 75%;
    padding-top: 16px;
    padding-bottom: 16px;
    padding-left: 24px;
    padding-right: 24px;
    border-radius: 8px;
    border: 1px solid #EEEEEE;
    background-color: #FFFFFF;
}

.p-input:focus{
    border: 1px solid #007CBA;
}

.p-icon-search{
    padding-left: 48px;
    background-repeat: no-repeat;
    background-image: url("../images/icon-search.svg");
    background-size: 16px;
    background-position: left 16px center;
    margin-right: 24px;
}

.p-switching{
    display: flex;
    min-width: max-content;
}

.p-switching-item{
    align-items: center;
    color: #007CBA;
    border: 1px solid #EEEEEE;
    margin-top: 0;
    margin-bottom: 0;
    padding-top: 16px;
    padding-bottom: 16px;
    padding-left: 24px;
    padding-right: 24px;
    position: relative;
    background-color: #FFFFFF;
    transition: all 0.4s ease-in-out;
}

.p-switching-selector{
    width: 100%;
    height: 100%;
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    cursor: pointer;
}

.p-switching-item.-selected{
    font-weight: 700;
    color: #333333;
    background-color: #FFEFDD;
}

.p-switching-item:not(:first-child){
    margin-left: -1px;
}

.p-switching-item:first-child{
    border-radius: 8px 0 0 8px;
}

.p-switching-item:last-child{
    border-radius: 0 8px 8px 0;
}

.p-switching-icon{
    position: relative;
    padding-left: 16px;
    padding-right: 16px;
}

.p-switching-icon img{
    display: block;
    width: 24px;
    height: 24px;
    padding-top: 2px;
    padding-bottom: 2px;
    padding-left: 2px;
    padding-right: 2px;
}

.p-switching-icon.-selected img{
    opacity: 0;
}

.p-switching-icon:after{
    content: "";
    display: block;
    width: 20px;
    height: 20px;
    opacity: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    background-position: center;
    background-size: 20px;
    background-repeat: no-repeat;
    transform: translateX(-50%) translateY(-50%);
}

.p-switching-icon.-selected:after{
    opacity: 1;
}

.p-switching-icon.-card:after{
    background-image: url("../images/icon-card-black.svg");
}

.p-switching-icon.-list:after{
    background-image: url("../images/icon-list-black.svg");
}

.p-range,
.p-range-input{
    display: flex;
}

.p-switching + .p-range{
    margin-left: 24px;
}

.p-range-item{
    display: flex;
    align-items: center;
}

.p-range-name{
    min-width: max-content;
}

.p-range-input{
    flex: 1;
    position: relative;
}

.p-range-input .p-input{
    width: 100%;
    padding: 16px 15px;
}

.p-range-input .error-text{
    position: absolute;
    bottom: -55px;
    color: #FF0000;
    width: 100%;
    font-size: 14px;
}

.p-range-input .note-text{
    position: absolute;
    bottom: -28px;
    width: 100%;
    font-size: 12px;
}

.p-range-item:not(:first-child){
    margin-left: 16px;
}

.p-range-mark,
.p-range-mark + .p-range-input{
    margin-left: 8px;
}

.p-range-action{
    margin-left: 16px;
    min-width: max-content;
}

.p-caution{
    padding-left: 24px;
    background-image: url("../images/icon-caution.svg");
    background-size: 16px 16px;
    background-position: left top 1px;
    background-repeat: no-repeat;
}

.p-key{
    padding-left: 24px;
    background-image: url("../images/icon-key.svg");
    background-size: 16px 16px;
    background-position: left top 1px;
    background-repeat: no-repeat;
}

.p-pager{
    display: flex;
    justify-content: center;
    align-items: center;
}

.p-pager li{
    margin-left: 8px;
    margin-right: 8px;
}

.p-pager-link{
    display: block;
    width: 40px;
    height: 40px;
    background-color: #FFFFFF;
    border: 1px solid #EEEEEE;
    border-radius: 8px;
    box-shadow: 8px 8px 16px rgba(0,0,0,0.08);
    position: relative;
    transition: all 0.4s ease-in-out;
}

.p-pager-link.-selected{
    font-weight: 700;
    color: #333333;
    box-shadow: 0 0 0 rgba(0,0,0,0.08);
    background-color: #FFEFDD;
}

.p-pager-link span{
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
}

.p-pager-link.p-dogleg-left,
.p-pager-link.p-dogleg-right{
    background-color: transparent;
    border: 1px solid transparent;
    box-shadow: 0 0 0 rgba(0,0,0,0.08);
}

.p-pager-link.p-dogleg-left li,
.p-pager-link.p-dogleg-right li{
    margin-left: 0;
    margin-right: 0;
}

.p-pager-link.p-dogleg-left span,
.p-pager-link.p-dogleg-right span{
    width: 20px;
    height: 20px;
    background-size: 20px;
    background-position:  center;
    background-repeat: no-repeat;
}

.p-pager-link.p-dogleg-left span{
    background-image: url("../images/icon-dogleg-left.svg");
}

.p-pager-link.p-dogleg-right span{
    background-image: url("../images/icon-dogleg-right.svg");
}

.p-modal-contents{
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10;
}

.p-modal-contents-inner{
    position: relative;
    overflow-y: auto;
    height: 100%;
}

.p-modal-contents-details{
    width: calc(100% - 48px);
    max-width: 720px;
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 30;
    transform: translateX(-50%) translateY(-50%);
}

.p-modal-overlay{
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 20;
    background-color: rgba(0,0,0,0.24);
    cursor: pointer;
}

.p-modal-close{
    display: flex;
    justify-content: flex-end;
    margin-bottom: 16px;
}

.p-close-link{
    display: block;
    width: 40px;
    height: 40px;
    background-color: #FFFFFF;
    border: 1px solid #EEEEEE;
    border-radius: 100px;
    box-shadow: 8px 8px 16px rgba(0,0,0,0.08);
    position: relative;
    transition: all 0.4s ease-in-out;
    cursor: pointer;
}

.p-close-link span{
    display: block;
    width: 16px;
    height: 16px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    background-size: 16px;
    background-position:  center;
    background-repeat: no-repeat;
    background-image: url("../images/icon-close.svg");
}


.p-card-chips:focus,
.p-card-link:focus,
.p-pager-link:focus,
.p-close-link:focus{
    box-shadow: 0 0 0 rgba(0,0,0,0.08);
}

/* === / parts === */

/* === contents === */

.l-top-main{
    padding-top: 88px;
    padding-bottom: 80px;
}

.l-main-row{
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 304px;
}

.l-main-message{
    width: 48%;
    max-width: 560px;
    padding-top: 16px;
    padding-bottom: 16px;
}

.top-main-title{
    font-size: 72px;
    line-height: 1.2;
    font-weight: 700;
    color: #007CBA;
    word-break: break-word;
}

.top-main-sub{
    font-size: 24px;
    line-height: 1.5;
    font-weight: 700;
    color: #007CBA;
}

 .top-main-lead{
     font-size: 16px;
    line-height: 1.7;
    font-weight: 500;
    color: #007CBA;
 }

.top-main-title + .top-main-sub{
    margin-top: 8px;
}

.top-main-sub + .top-main-lead,
.top-main-lead + .top-main-link{
    margin-top: 16px;
}



.l-main-image{
    flex: 1;
    margin-left: 40px;
    max-width: 768px;
}

#image-item01,
#image-item02,
#image-item03,
#image-item04,
#image-item05{
    display: block;
    animation-duration: 1s;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
    animation-direction: alternate;
}

#image-item01,
#image-item03,
#image-item05{
     animation-name: move_vert_01;
}

@keyframes move_vert_01 {
     0% {
       transform: translate(0, 0px);
     }
     100% {
       transform: translate(0, 20px);
     }
}

#image-item02,
#image-item04{
     animation-name: move_vert_02;
}
@keyframes move_vert_02 {
     0% {
       transform: translate(0, 20px);
     }
     100% {
       transform: translate(0, 0);
     }
}

.l-top-priority-info{
    margin-top: -80px;
}

.l-top-priority-info-inner{
    background-color: #FFFFFF;
    border: 1px solid #EEEEEE;
    border-radius: 8px;
    box-shadow: 8px 8px 16px rgba(0,0,0,0.08);
}

.l-top-search-row{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 24px;
    padding-bottom: 24px;
    padding-left: 40px;
    padding-right: 40px;
}

.l-top-search{
    display: flex;
    align-items: center;
    flex: 1;
}

.l-top-search-input{
    flex: 1;
    margin-left: 24px;
}

.l-top-keyword{
    width: 30%;
    margin-left: 24px;
    padding-top: 8px;
    padding-bottom: 8px;
    padding-left: 24px;
    border-left: 1px solid #EEEEEE;
}

.l-top-keyword-list{
    display: flex;
    flex-wrap: wrap;
    margin-top: 8px;
}

.l-top-keyword-list li:not(:last-child){
    margin-right: 8px;
}

.l-top-keyword-list li{
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 56px;
}

.l-top-topics{
    display: flex;
    border-top: 1px solid #EEEEEE;
    padding-top: 40px;
    padding-bottom: 40px;
    padding-left: 40px;
    padding-right: 40px;
}

.l-top-topics-title{
    margin-top: 4px;
}

.l-top-topics-contents{
    border-left: 1px solid #EEEEEE;
    margin-left: 24px;
    padding-left: 24px;
    flex: 1;
}

.l-top-topics-contents a{
    color: #333333;
}

.l-top-topics-contents a:hover{
    color: #007CBA;
}

.top-topics-contents{
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
}

.-open .top-topics-contents{
    display: block;
    overflow: visible;
}

.top-topics-contents{
    margin-top: 4px;
}

.l-top-topics-more{
    display: flex;
    align-items: flex-end;
    margin-left: 24px;
}

.top-topics-list{
    padding-bottom: 40px;
}

.top-topics-list li{
    margin-top: 16px;
}

.l-category{
    padding-top: 24px;
    padding-left: 24px;
}

.l-category-list{
    display: flex;
    width: max-content;
}

.l-category-list li{
    width: 172px;
}

.l-category-list li:not(:first-child){
    margin-left: 8px;
}

.l-category-list li.-selected{
    margin-left: 24px;
}

.l-category-list li:last-child{
    margin-right: 24px;
}

.category-icon{
    display: block;
    width: 80px;
    height: 80px;
    margin-left: auto;
    margin-right: auto;
    border-radius: 100px;
    background-color: #CBF0FF;
}

.category-name{
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 35px;
    text-align: center;
}

.category-icon + .category-name{
    margin-top: 8px;
}

.category-total{
    display: block;
    text-align: center;
}

.category-name + .category-total{
    margin-top: 4px;
}

.l-search-option{
    position: relative;
    padding-bottom: 38px;
}

.l-filter{
    display: flex;
    width: 72%;
    max-width: 720px;
}

.l-sort{
    position: absolute;
    top: 0;
    right: 0;
}

.l-result{
    padding-top: 24px;
    border-top: 1px solid #EEEEEE;
}

.l-result-title-row{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.result-caution{
    margin-left: 8px;
    max-width: 228px;
}

.result-caution li:first-child{
    margin-bottom: 5px;
}

.l-result-details-title{
    position: relative;
    min-height: 56px;
}

.l-result-details-category{
    display: flex;
    align-items: center;
}

.result-details-icon{
    width: 56px;
    position: absolute;
    top: 0;
    left: 0;
}

.result-details-category{
    margin-top: 8px;
    padding-left: 64px;
}

.result-details-data-name{
    font-weight: 500;
    padding-left: 64px;
    margin-top: 4px
}

.result-details-icon + .result-details-title-text{
    margin-top: 8px;
    margin-left: 8px;
    flex: 1;
}

.l-result-title + .l-result-list {
    margin-top: 24px;
}

.l-result-list + .l-result-list{
    margin-top: 24px;
}

.l-result-list.-card{
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.l-result-list.-card li{
    width: calc( ( 100% - 48px ) / 3 );
}

.l-result-list.-card li:first-child,
.l-result-list.-card li:nth-child(2),
.l-result-list.-card li:nth-child(3){
    margin-top: 0;
}

.l-result-list.-list li:not(:first-child){
    margin-top: 24px;
}


.result-details-category + .result-details-data-name{
    margin-top: 4px;
}

.p-card-link.-card .result-details-data-name{
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
}

.result-details-text{
    display: block;
    margin-top: 8px;
}

.p-card-link.-card .result-details-text, .p-card-link.-list .result-details-text{
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    white-space: pre-line;
    max-height: 47.59px;
    height: 47.59px;
}

.l-result-sub-info{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.l-result-sub-info{
    margin-top: 16px;
}

.l-result-day{
    margin-left: 16px;
}

.l-result-offer{
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #EEEEEE;
    padding-top: 8px;
    padding-bottom: 8px;
    padding-left: 16px;
    padding-right: 16px;
}

.l-result-offer-name{
    flex: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.-include-modal .l-result-offer-name{
    white-space: inherit;
    max-height: 36px;
    overflow: auto;
}

.l-result-offer-link{
    margin-left: 16px;
}

.l-pager{
    margin-top: 24px;
}

.-t-title + .l-textbox{
    margin-top: 16px;
}

.-t-inner-title + .l-textbox{
    margin-top: 8px;
}

.l-box ol.l-textbox{
    list-style-type: disc;
    padding-left: 50px;
}

.-t-inner-sub + .l-textbox{
    margin-top: 4px;
}

.l-textbox + .l-textbox{
    margin-top: 8px;
}

.l-textbox li .icon-key{
    padding-left: 24px;
    background-image: url("../images/icon-key.svg");
    background-size: 16px 16px;
    background-position: left top 1px;
    background-repeat: no-repeat;
}



.l-box + .l-box{
    margin-top: 40px;
}

.l-box-inner + .l-box-inner{
    margin-top: 16px;
}

.-t-inner-title + .l-box-inner{
    margin-top: 8px;
}

.l-box-inner .l-box-inner + .l-box-inner{
    margin-top: 8px;
}

.-t-title + .l-box-inner{
    margin-top: 16px;
}

.l-sidemenu-row{
    display: flex;
}

.p-sidemenu{
    width: 260px;
}

.p-sidemenu > li{
    position: sticky;
    top: 130px;
}

.p-sidemenu li:not(:first-child){
    margin-top: 16px;
}

.p-sidemenu + .l-sidemenu-item{
    border-left: 1px solid #DDDDDD;
    margin-left: 40px;
    padding-left: 40px;
    flex: 1;
}

.p-sidemenu-title{
    font-weight: 700;
}

.p-sidemenu-inner + .p-sidemenu-inner{
    margin-top: 8px;
}

.p-sidemenu-indent{
    margin-top: 8px;
    padding-left: 12px;
}

.p-sidemenu-indent .p-sidemenu-indent{
    padding-left: 24px;
}

.l-pager.mobile{
    display: none;
}

/* ===  / contents === */

@media screen and (min-width: 1024px){

    /* ===  hover === */

    .header-h-menu,
    .header-nav-link,
    .footer-nav-link,
    .p-link-anchor{
        opacity: 1;
        transition: all 0.4s ease-in-out; 
    }

    .header-h-menu:hover,
    .header-nav-link:hover,
    .footer-nav-link:hover,
    .p-card-chips:hover,
    .p-link-anchor:hover{
        opacity: 0.64;
    }

    .p-button,
    .p-button:after{
        transition: all 0.4s ease-in-out; 
    }

    .p-button:hover{
        box-shadow: 0 0 0 rgba(0,0,0,0);
    }

    .p-button:hover:after{
        opacity: 0;
    }

    .p-card-chips,
    .p-switching-item,
    .p-card-link,
    .p-pager-link,
    .p-close-link
    {
        transition: all 0.4s ease-in-out; 
    }

    .p-card-chips:hover,
    .p-card-link:hover,
    .p-pager-link:hover,
    .p-close-link:hover{
        box-shadow: 0 0 0 rgba(0,0,0,0);
        border: 1px solid #007CBA;
    }

    .p-card-link.-include-modal:hover{
        box-shadow: 8px 8px 16px rgba(0,0,0,0.08);
        border: 1px solid #EEEEEE;
    }

    /* === / hover === */
}

.error-page{
    position: relative;
    height: 100vh;
}

.error-page-item{
    position: absolute;
    left: 50%;
    top: 55%;
    -webkit-transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
    text-align: center;
}

.error-page h1{
    color: #ececec;
    font-weight: 900;
    font-size: 276px;
    margin: 0;
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
    z-index: -1;
}

.error-page .error-page-item h2{
    font-size: 46px;
    color: #000;
    font-weight: 900;
    text-transform: uppercase;
    margin: 0;
}

#search-button{
    width: 104px;
}

@media screen and (max-width: 1100px){
    .p-icon-search{
        width: 100%;
        margin-bottom: 12px;
    }
}

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

    .-pc{
        display: none;
    }

    .-pctab{
        display: block;
    }
    
    .-sp{
        display: none;
    }

    /* === parts ===*/

    .p-switching + .p-range{
        margin-left: 0;
        margin-top: 16px;
    }

    .p-range-input{
        width: 100%;
    }

    /* ===  / parts ===*/

    /* === contents === */

    .top-main-title{
        font-size: 6vw;
    }

    .top-main-sub{
        font-size: 1.96vw;
    }

    .top-main-lead{
        font-size: 1.5vw;
    }

    .l-filter{
        display: block;
        width: 100%;
        max-width: 100%;
    }

    .l-result-list.-card li{
        width: calc( ( 100% - 24px ) / 2 );
    }

    /* ===  / contents === */

}

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

    /* === base === */

    .-contents{
        margin-top: 0;
    }
    .-pc,
    .-pctab{
        display: none;
    }
    
    .-sp{
        display: block;
    }

    /* === / base === */

    /* === header === */

    .header-logo{
        font-size: 16px;
    }

    /* === / header === */

    /* === footer === */

    .l-footer-inner,
    .footer-nav-list{
        display: block;
    }

    .footer-nav-list li:not(:first-child){
        margin-top: 16px;
        margin-left: 0;
    }

    .footer-copyright{
        margin-top: 24px;
    }

    /* === / footer === */

    /* === parts ===*/

    .p-button.-mw{
        min-width: 144px;
    }

    .p-button{
        padding-top: 8px;
        padding-bottom: 8px;
    }

    .p-label-round{
        max-width: 88px;
        height: 88px;
    }

    .p-input{
        padding-top: 8px;
        padding-bottom: 8px;
        padding-left: 16px;
        padding-right: 16px;
    }

    .p-icon-search{
        background-size: 12px;
        padding-right: 40px;
        width: 100%;
        margin-bottom: 12px;
    }

    .p-switching-item{
        padding-top: 8px;
        padding-bottom: 8px;
        padding-left: 16px;
        padding-right: 16px;
    }

    .p-switching-icon{
        padding-left: 8px;
        padding-right: 8px;
    }

    .p-switching-icon img{
        padding-top: 4px;
        padding-bottom: 4px;
        padding-left: 4px;
        padding-right: 4px;
    }

    .p-switching-icon:after{
        width: 16px;
        height: 16px;
        background-size: 16px;
    }

    .p-range{
        display: block;
    }

    .p-range-item:not(:first-child){
        margin-left: 0;
        margin-top: 8px;
    }

    .p-card-link-inner span.result-details-data-name{
        padding-left: 0;
        margin-top: 8px
    }

    .p-pager li{
        margin-left: 4px;
        margin-right: 4px;
    }

    .p-pager-link.p-dogleg-left li,
    .p-pager-link.p-dogleg-right li{
        margin-left: 0;
        margin-right: 0;
    }

    .p-pager-link{
        width: 32px;
        height: 32px;
    }

    .p-pager-link.p-dogleg-left span,
    .p-pager-link.p-dogleg-right span{
        width: 16px;
        height: 16px;
        background-size: 16px;
    }

    .p-modal-contents-details{
        margin-left: auto;
        margin-right: auto;
        padding-top: 24px;
        padding-bottom: 24px;
        position: relative;
        top: 0;
        left: 0;
        transform: translateX(0) translateY(0);
    }

    /* ===  / parts ===*/

    /* === contents === */

    .l-main-sp-column{
        display: block;
    }

    .l-main-message{
        width: 100%;
        max-width: 100%;
        padding-top: 0;
        padding-bottom: 0;
    }

    .l-main-image{
        width: 100%;
        max-width: 100%;
        margin-left: 0;
        margin-top: 24px;
    }

    .top-main-title{
        font-size: 45px;
    }

    .top-main-sub{
        font-size: 18px;
        line-height: 1.6;
    }

    .top-main-lead{
        font-size: 14px;
        line-height: 1.5;
    }

    .l-top-search-row{
        padding-top: 24px;
        padding-bottom: 24px;
        padding-left: 24px;
        padding-right: 24px;
    }

    .l-top-search-sp-column{
        display: block;
    }

    .l-top-keyword{
        width: 100%;
        margin-top: 16px;
        margin-left: 0;
        padding-top: 16px;
        padding-left: 0;
        border-left: 0;
        border-top: 1px solid #EEEEEE;
    }

    .l-top-search-input{
        margin-left: 8px;
    }

    .top-label-round-title,
    .top-label-round-unit{
        font-size: 10px;
    }

    .top-label-round-number{
        font-size: 16px;
    }

    .l-top-topics{
        display: block;
        padding-top: 24px;
        padding-bottom: 24px;
        padding-left: 24px;
        padding-right: 24px;
    }

    .l-top-topics-contents{
        margin-top: 16px;
        margin-left: 0;
        padding-left: 0;
        border-left: 0;
    }

    .top-topics-contents{
        -webkit-line-clamp: 2;
    }

    .l-top-topics-more{
        margin-left: 0;
        justify-content: flex-end;
        margin-top: 16px;
    }

    .top-topics-list{
        padding-bottom: 0;
    }

    .l-result-title-sp-column{
        display: block;
    }

    .result-caution{
        margin-top: 8px;
        margin-left: 0;
    }

    .l-result-list.-card li{
        width: 100%;
    }

    .l-result-details-category{
        min-height: 56px;
        align-items: center;
    }

    .l-result-offer{
        display: grid;
    }

    .l-result-offer-link{
        display: block;
        margin-top: 8px;
        margin-left: 0;
    }

    .l-sidemenu-sp-column{
        display: block;
    }

    .p-sidemenu + .l-sidemenu-item{
        border-left: 0;
        border-top: 1px solid #DDDDDD;
        margin-top: 40px;
        margin-left: 0;
        padding-top: 40px;
        padding-left: 0;
    }

    .p-sidemenu{
        max-width: 100%;
    }

    .l-pager.mobile{
        display: block;
    }

    .l-pager.mobile + .l-pager{
        display: none;
    }

    /* ===  / contents === */

    .error-page h1{
        font-size: 162px;
    }

    .error-page .error-page-item h2{
        font-size: 26px;
    }

    .result-keyword{
        display: initial;
    }

    .p-range-input .p-input{
        padding: 16px 10px;
    }

    .p-range-mark, .p-range-mark + .p-range-input{
        margin-left: 5px;
    }

    .p-range-action{
        margin-left: 10px;
    }

    .footer-nav-list li:last-child{
        display: block;
    }

    .footer-nav-list li:last-child a{
        margin-right: 0;
    }

    .footer-nav-list li:last-child img{
        height: auto;
        width: 100%;
        margin-top: 16px;
    }
}

@media screen and (max-width: 400px){
    .p-range-item.p-range-input{
        display: block;
    }

    .p-range-item .p-range-input{
        width: 45%;
        float: left;
        margin-bottom: 15px;
    }

    .p-range-mark{
        float: left;
        margin-top: 15px;
    }

    .p-range-input .error-text{
        bottom: -53px;
    }

    .error-page h1{
        font-size: 162px;
    }

    .error-page .error-page-item h2{
        font-size: 26px;
    }

    .error-page-item-button{
        min-width: 240px!important
    }

    .result-keyword{
        display: initial;
    }
}