@charset "UTF-8";




/*===================================================
  OP:NEWS
====================================================*/
.op_news{

}
.op_news .newsList{
    border-top: 1px solid #aaa;
    padding: 24px 0 0;
    position: relative;
    margin: 0 0 40px;
}
.op_news .newsList a{
    display: block;
    position: relative;
    margin: 0 0 24px;
    color: unset;
}
.op_news .newsList a:last-child{
    margin: 0;
}
.op_news .newsDetail{
    display: flex;
    align-items: center;
    border-bottom: 1px solid #aaa;
    padding-bottom: 24px;
    gap: 16px;
}
.op_news .newsDetail dt{
    width: 112px;
    display: flex;
    align-items: center;
}
.op_news .newsDetail dt .txt{
    font-size: 90%;
    font-weight: 800;
    letter-spacing: 0.05em;
    opacity: 0.4;
}
.op_news .newsDetail dd{
    width: calc(100% - 112px);
}
.op_news .viewmore{

}
.op_news .viewmore a{
    font-weight: 800;
    font-size: 90%;
    position: relative;
    color: unset;
}
.op_news .viewmore a:after{
    position: absolute;
    left: calc(100% + 10px);
    top: 50%;
    content: "";
    display: block;
    width: 5px;
    height: 5px;
    border-top: 2px solid;
    border-right: 2px solid;
    transform: translate(0,-50%) rotate(45deg);
    transition:0.5s ease;
}

/* OP:NEWS:PC-min-960 */
@media screen and (min-width: 960px){
.op_news .newsList a:hover{
    filter: unset;
    color: var(--links-color);
}
.op_news .viewmore a:hover:after{
    left: calc(100% + 20px);
}
}

/* OP:NEWS:SP-max-959 */
@media screen and (max-width: 959px){
.op_news .newsList{
    border-top: 1px solid #000;
    margin: 0 0 24px;
    padding-top: 16px;
}
.op_news .newsList a {
    display: block;
    position: relative;
    margin: 0 0 16px;
    color: unset;
}
.op_news .newsDetail {
    flex-direction: column;
    gap: 8px;
    border-bottom: 1px solid #000;
    padding: 0 0 16px
}
.op_news .newsDetail dt {
    width: 100%;
    display: block;
}
.op_news .newsDetail dt .txt {
    line-height: 1em;
}
.op_news .newsDetail dd {
    width: 100%;
}
}


/*===================================================
  OP:DETAIL
====================================================*/
.op_detail{

}
.op_detail .detailList {
    display: flex;
    border-bottom: 1px solid;
    padding: 0 0 16px;
    margin: 0 0 16px;
    align-items: stretch;
}
.op_detail .detailList:first-child{
    border-top: 1px solid;
    padding: 16px 0 16px;
}
.op_detail .detailList:last-child{
    margin: 0;
}
.op_detail .detailList dt{
    width: 20%;
    padding: 0 40px 0 0;
    display: flex;
    align-items: center;
    font-weight: 500;
    line-height: 1.6em;
}
.op_detail .detailList dt:before{
}
.op_detail .detailList dt .txt{
    font-size: 100%;
    line-height: 1.5em;
}
.op_detail .detailList dd{
    width: 80%;
    position: relative;
    padding: 0 0 0 40px;
    display: flex;
    align-items: center;
}
.op_detail .detailList dd:before{
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 1px;
    background: #000;
}
.op_detail .detailList dd .detailInner{
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* OP:DETAIL:SP-max-959 */
@media screen and (max-width: 959px){
.op_detail .detailList {
    display: block;
}
.op_detail .detailList dt {
    width: 100%;
    padding: 0 0 0 8px;
    margin: 0 0 16px;
    font-size: 100%;
    font-weight: 600;
    border-left: 5px solid;
}
.op_detail .detailList dd {
    width: 100%;
    position: relative;
    padding: 0;
}
.op_detail .detailList dd:before {
    content: none
}
}


/*===================================================
  OP:TICKET
====================================================*/
.op_ticket .ticketList {
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 20px;
}
.op_ticket .ticketList:last-of-type{
    margin-bottom:0;
}
.op_ticket .tikcetTit {
    background: #4d4038;
    color: #FFF;
    padding: 40px;
    font-size: 130%;
    font-weight: 500;
    position: relative;
    cursor: pointer;
    transition: 0.5s ease;
}
.op_ticket .tikcetTit .arrow{
    position: absolute;
    top: 50%;
    right: 40px;
    width: 16px;
    aspect-ratio: 1;
    transform: translate(0, -50%);
}
.op_ticket .tikcetTit .arrow span{
    display: block;
    width: 100%;
    height: 100%;
    transform: rotate(-135deg);
    transition: 0.5s ease;
    padding: 20%;
}
.op_ticket .tikcetTit .arrow span:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    border-top: 2px solid;
    border-left: 2px solid;
    box-sizing: border-box;
}
.op_ticket .open .tikcetTit .arrow span {
    transform: rotate(-315deg);
}
.op_ticket .tikcetDetail {
    background: #524944;
    color: #FFF;
    padding: 40px;
    display: none;
}
.op_ticket .detailList {
    display: block;
    border-bottom: 1px dashed #000;
    padding: 0 0 16px;
    margin: 0 0 16px;
}
.op_ticket .detailList:last-of-type {
    margin: 0 0 40px;
}
.op_ticket .detailList dt {
    width: 100%;
    padding: 0;
    font-size: 80%;
    margin: 0 0 10px;
    font-weight: 400;
    line-height: 1.6em;
    opacity: 0.5;
}

.op_ticket .ticketList.end .btn a{
    background: #acacac;
    color: #6d6d6d;
}
.op_ticket .ticketList.end .tikcetTit:after {
    content: "受付終了";
    font-size: 60%;
    background: #fba432;
    padding: 5px 12px 4px;
    vertical-align: 2px;
    display: inline-block;
    margin: 0;
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    color: #000000;
    line-height: 1em;
    border-radius: 100px;
}
/* OP:TICKET SP-max-959 */
@media screen and (max-width: 959px){
.op_ticket .tikcetTit {
    padding: 24px;
    font-size: 120%;
}
.op_ticket .tikcetTit .arrow {
    right: 24px;
    width: 8px;
}
.op_ticket .tikcetDetail {
    padding: 24px
}
.op_ticket .detailList:last-of-type {
    margin: 0 0 24px;
}

}


/*===================================================
  OP:SCHEDULE
====================================================*/
.op_schedule{

}
.op_schedule .scheduleCellList{
    display: flex;
    align-items: stretch;
    border-bottom: 1px solid;
    padding: 0 0 16px;
    margin: 0 0 16px;
}
.op_schedule .scheduleCellList:last-child{
    margin: 0;
}
.op_schedule .scheduleCellList li{
    padding: 0 20px;
    box-sizing: border-box;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    font-size: 90%;
    line-height: 1.5em;
    font-weight: 500;
}
.op_schedule .scheduleCellList li:after{
    content: "";
    position: absolute;
    top: 5%;
    right: 0;
    width: 1px;
    height: 90%;
    background: #4d4038;
}
.op_schedule .scheduleCellList li:last-child:after{
    content:none;
}
.op_schedule .scheduleCellList .scheduleDate{
    width: 220px;
    font-weight: 600;
    font-size: 120%;
}
.op_schedule .scheduleCellList .scheduleDate .scheduleInner{
    display: flex;
    align-items: flex-end;
    width: 100%;
}
.op_schedule .scheduleCellList .scheduleDate .scheduleInner .txt{
    line-height: 1em;
    width: 100%;
}
.op_schedule .scheduleCellList .scheduleDate .year{
    display: block;
    font-size: 70%;
    margin: 0;
    font-weight: 800;
}
.op_schedule .scheduleCellList .scheduleDate .day{
    letter-spacing: 0.03em;
    font-size: 110%;
    font-weight: 800;
}
.op_schedule .scheduleCellList .scheduleDate .week{
    writing-mode: vertical-rl;
    font-size: 45%;
    font-weight: 800;
    letter-spacing: 0.02em;
    line-height: 1em;
    margin: 0;
    vertical-align: -2px;
}
.op_schedule .scheduleCellList .scheduleDate .area{
    line-height: 1.3em;
    font-size: 90%;
    margin: 0 0 0 5px;
    vertical-align: 1px;
}
.op_schedule .scheduleCellList .scheduleVenue{
    width: calc((100% - 360px)* 0.5);
    justify-content: left;
}
.op_schedule .scheduleCellList .scheduleVenue{
    font-size: 80%;
}
.op_schedule .scheduleCellList .scheduleTime{
    width: 140px;
    font-size: 70%;
}
.op_schedule .scheduleCellList .scheduleTime .cap{
    display:none;
}
.op_schedule .scheduleCellList .scheduleInfo{
    width: calc((100% - 360px)* 0.5);
    justify-content: left;
}
.op_schedule .scheduleCellList .scheduleInfo .txt{
    line-height: 1em;
}
.op_schedule .scheduleCellList .scheduleInfo .playguide{
    font-size: 75%;
    display: block;
    margin: 0 0 5px;
}
.op_schedule .scheduleCellList .scheduleInfo .playguideLink{
    font-size: 75%;
    margin: 0 0 5px;
    display: block;
}
.op_schedule .scheduleCellList .scheduleInfo .playguideTel{
    font-size: 75%;
    margin: 0 0 5px;
    display: block;
}
.op_schedule .scheduleCellList .scheduleInfo .playguideCap{
    font-size: 60%;
    font-weight: 800;
    letter-spacing: 0.05em;
    display: block;
    line-height: 1.5em;
}
.op_schedule .scheduleCellList .scheduleInfo a{
    font-size: 90%;
    font-weight: 600;
    display: block;
}
.op_schedule .scheduleCellList .scheduleInfo .fa-info-circle{
    display:none;
}
.op_schedule .scheduleCellList .scheduleInfo .txt >*:last-child{
    margin-bottom: 0;
}

.op_schedule .scheduleCellList.cellHead{
    font-size: 80%;
}
.op_schedule .scheduleCellList.cellHead li{
    justify-content: center;
    font-weight: 400;
}
.op_schedule .scheduleCellList.cellHead li:after{
    content:none;
}
.op_schedule .scheduleCellList.cellHead .txt{
    font-size: 100%;
}
.op_schedule .scheduleCellList.cellHead .scheduleVenue{ 
    font-size: 100%;
}
.op_schedule .scheduleCellList.cellHead .scheduleTime{
    font-size: 100%;
}

/* OP:SCHEDULE:PC-960-960 */
@media screen and (min-width:960px) and ( max-width:960px) {
.op_schedule .scheduleCellList .scheduleDate {
    font-size: 110%;
}
.op_schedule .scheduleCellList li {
    font-size: 70%;
    font-weight: 600;
}
.op_schedule .scheduleCellList .scheduleDate {
    width: 130px;
}
.op_schedule .scheduleCellList .scheduleTime {
    width: 120px;
}
.op_schedule .scheduleCellList .scheduleVenue {
    width: calc((100% - 250px)* 0.5);
}
.op_schedule .scheduleCellList .scheduleInfo {
    width: calc((100% - 250px)* 0.5);
}
.op_schedule .scheduleCellList .scheduleDate .year {
    margin: 0 0 2px;
}
.op_schedule .scheduleCellList .scheduleDate .day {
    display: block;
    margin: 0 0 5px;
}
.op_schedule .scheduleCellList .scheduleDate .week {
    writing-mode: unset;
    margin: 0 0 10px;
    vertical-align: 0;
    display: block;
}
.op_schedule .scheduleCellList .scheduleDate .area {
    display: block;
    line-height: 1.3em;
    font-size: 70%;
    vertical-align: 0;
    margin: 0;
}
}


/* OP:SCHEDULE:SP-max-959 */
@media screen and (max-width: 959px){
.op_schedule {
    border-top: 1px solid;
    padding: 16px 0 0;
}
.op_schedule .scheduleCellList.cellHead {
    display: none;
}
.op_schedule .scheduleCellList {
    display: block;
}
.op_schedule .scheduleCellList li {
    padding: 0;
    display: block;
    margin: 0 0 10px;
}
.op_schedule .scheduleCellList li:after {
    content:none;
}
.op_schedule .scheduleCellList .scheduleDate {
    width: 100%;
    display: inline-block;
    font-size: 140%;
    margin: 0 0 5px;
}
.op_schedule .scheduleCellList .scheduleDate .scheduleInner .txt{
    display: block;
    width: 100%;
}
.op_schedule .scheduleCellList .scheduleDate .week {
    font-size: 40%;
    vertical-align: 0;
}
.op_schedule .scheduleCellList .scheduleDate .area {
    margin: 0 0 0 2px;
}
.op_schedule .scheduleCellList .scheduleVenue {
    width: 100%;
    font-size: 120%;
    font-weight: 600;
}
.op_schedule .scheduleCellList .scheduleTime {
    width: 100%;
    font-size: 100%;
}
.op_schedule .scheduleCellList .scheduleTime .cap {
    display: inline-block;
    font-size: 70%;
    line-height: 1em;
    margin: 0 8px 0 0;
    opacity: 0.5;
    font-weight: 700;
}
.op_schedule .scheduleCellList .scheduleInfo {
    width: 100%;
    font-size: 100%;
    margin: 0;
}
.op_schedule .scheduleCellList .scheduleInfo .fa-info-circle{
    display:inline-block;
}
}

/*===================================================
  OP:MODAL
====================================================*/
.op_modal{

}
.op_modal .modPop {
    display:none;
    width: 100%;
    height: 100%;
    color: #fff;
    box-sizing: border-box;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 9999;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}
.op_modal .modPop.popActive {
  display:block;
}
.op_modal .modPop .popupShade{
    position: absolute;
    left: 0;
    width: 100%;
    height: auto;
    min-height: 100%;
    background: rgba(0,0,0,0.8);
    z-index: 0;
    display: flex;
    align-items: center;
}
.op_modal .modPop .close {
    width: 50px;
    height: 50px;
    position: fixed;
    right: 50px;
    top: 30px;
    cursor: pointer;
    transition: 0.3s ease;
    background: #000;
    border-radius: 100px;
}
.op_modal .modPop .close::before,
.op_modal .modPop .close::after {
    content: '';
    display: inline-block;
    width: 60%;
    height: 2px;
    background: #FFF;
    position: absolute;
    left: 50%;
    top: 50%;
}
.op_modal .modPop .close::before {
    transform: translate(-50%, -50%) rotate(45deg);
}
.op_modal .modPop .close::after {
    transform: translate(-50%,-50%) rotate(135deg);
}
.op_modal .modPop .popInBox {
    width: 90%;
    max-width: 1200px;
    margin: 100px auto;
    position: relative;
    background: #f7f7f7;
    color: #000;
    border-radius: 20px;
}
.op_modal .modPop .popInContent{
    width: 100%;
    padding: 40px;
    box-sizing: border-box;
}
.op_modal .modPop .popInContent::-webkit-scrollbar{
    display: none;
}

html:has(body.is-fixed) {
    overflow: clip;
    overscroll-behavior: none;
}

/* OP:MODAL:PC-min-960 */
@media screen and (min-width: 960px){

}

/* OP:MODALSP-max-959 */
@media screen and (max-width: 959px){
.op_modal .modPop .close {
    width: 30px;
    height: 30px;
    right: 20px;
    top: 20px;
}
.op_modal .modPop .popInBox {
    margin: 60px auto;
}
.op_modal .modPop .popInContent{
    padding: 20px;
}
}


/*===================================================
  OP:MODAL GOODS
====================================================*/
.op_modal{

}
.op_modal .goodsList{
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}
.op_modal .goodsList:after{
    content:"";
    width: calc(33% - 20px);
}
.op_modal .goodsList li{
    width: calc((100% / 3) - (64px / 3));
}
.op_modal .goodsList li a{
    color: unset;
}
.op_modal .goodsList .goodsImage{
    line-height: 0;
    margin: 0 0 10px;
    overflow: hidden;
}
.op_modal .goodsList .goodsImage img{
    transition: 0.5s ease;
}
.op_modal .goodsList .goodsName{

}
.op_modal .goodsList .goodsPrice{
    font-size: 90%;
}


.op_modal .goodsPop .popTit{
    text-align: center;
    font-size: 30px;
    line-height: 1em;
    margin: 0 0 60px;
    color: #000;
    letter-spacing: 0.1em;
}
.op_modal .goodsPop .name {
    font-size: 180%;
    margin: 0 0 10px;
    text-align: center;
    font-weight: 500;
}
.op_modal .goodsPop .price {
    font-size: 100%;
    font-weight: 500;
    margin: 0 0 40px;
    text-align: center;
}
.op_modal .goodsPop .columnBox {
    margin: 0;
    box-sizing: border-box;
    display: flex;
}
.op_modal .goodsPop .thumb {
    width: 45%;
}
.op_modal .goodsPop .column {
    width: 55%;
    padding: 0 0 0 40px;
}
.op_modal .goodsPop .detailList dt {
    width: 25%;
}
.op_modal .goodsPop .detailList dd {
    width: 75%;
}
.op_modal .goodsPop .detailList dt {
    width: 30%;
}
.op_modal .goodsPop .goodsImage{
    line-height: 0;
    margin: 0 0 10px;
}
.op_modal .goodsPop .sizeChart {
    display: flex;
}
.op_modal .goodsPop .sizeChart li {
    width: 20%;
    text-align: center;
    font-size: 14px;
}
.op_modal .detailList {
    display: flex;
    border-bottom: 1px solid;
    padding: 0 0 15px;
    margin: 0 0 15px;
    align-items: stretch;
}
.op_modal .detailList:first-child{
    border-top: 1px solid;
    padding: 15px 0 15px;
}
.op_modal .detailList:last-child{
    margin: 0;
}
.op_modal .detailList dt{
    width: 20%;
    padding: 0 40px 0 0;
    display: flex;
    align-items: center;
    font-weight: 500;
    line-height: 1.6em;
}
.op_modal .detailList dt:before{
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 1px;
    background: #000;;
}
.op_modal .detailList dd{
    width: 80%;
    position: relative;
    padding: 0 0 0 40px;
    display: flex;
    align-items: center;
}
.op_modal .detailList dd:before{
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 1px;
    background: #000;
}
.op_modal .detailList dd > *{
    margin-bottom:20px;
}
.op_modal .detailList dd > *:last-child{
    margin-bottom:0;
}
.op_modal .detailList dd .detailInner{
    width:100%;
}
.op_modal .detailList dd .detailInner > *{
    margin-bottom:10px;
}
.op_modal .detailList dd .detailInner  > *:last-child{
    margin-bottom:0;
}

.op_modal .sizeChartBox {
    width: 100%;
}
.op_modal .sizeChartBox .txt{
    margin-bottom: 16px;
    font-weight: 500;
}
.op_modal .sizeChart {
    display: flex;
    border-bottom: 1px solid;
    border-left: 1px solid;
}
.op_modal .sizeChart:first-of-type {
    border-top: 1px solid;
}
.op_modal .sizeChart li {
    width: 20%;
    text-align: center;
    border-right: 1px solid;
    padding: 8px;
    font-weight: 500;
    font-size: 80%;
    letter-spacing: 0;
}
.op_modal .sizeChart :last-child {
    border-bottom: none;
}


/* OP:GOODS:PC-min-960 */
@media screen and (min-width: 960px){
.op_modal .goodsList li a:hover .goodsImage img{
    transform:scale(1.2);
}

}

/* OP:GOODS:SP-max-959 */
@media screen and (max-width: 959px){

.op_modal .goodsList li {
    width: calc(50% - 10px);
    margin: 0 0 20px;
}
.op_modal .goodsList .goodsName {
    line-height: 1.3em;
    font-size: 90%;
}
.op_modal .goodsList .goodsPrice {
    font-size: 80%;
}
.op_modal .goodsPop .close {
    width: 30px;
    height: 30px;
    right: 10px;
    top: 10px;
}
.op_modal .goodsPop {
    padding: 20px;
    margin: 60px auto;
}
.op_modal .goodsPop .name {
    font-size: 140%;
}
.op_modal .goodsPop .price {
    margin: 0 0 20px;
}
.op_modal .goodsPop .comment{
    margin: 0 0 20px;
}
.op_modal .goodsPop .columnBox {
    display: block;
}
.op_modal .goodsPop .thumb {
    width: 100%;
}
.op_modal .goodsPop .column {
    width: 100%;
    padding: 0;
}
.op_modal .goodsPop .detailList dt {
    width: 100%;
}
.op_modal .goodsPop .detailList dd {
    width: 100%;
}
.op_modal .detailList {
    display: block;
}
.op_modal .detailList dt {
    width: 100%;
    padding: 0 0 0 10px;
    margin: 0 0 10px;
    font-size: 80%;
    border-left: 5px solid;
}
.op_modal .detailList dd {
    width: 100%;
    position: relative;
    padding: 0;
}
.op_modal .detailList dd:before {
    content: none
}
}


/*===================================================
  OP:RELEASE
====================================================*/
.op_release{

}
.op_release .releaseBlock{
    display: flex;
    flex-direction: row;
    justify-content: center;
    margin: 0 0 60px;
    flex-wrap: wrap;
    position: relative;
}

.op_release .releaseBlock .releaseDetail{
    width: 55%;
}
.op_release .releaseBlock:last-child{
    margin-bottom:0;
}
.op_release .releaseBlock:nth-child(even) .releaseDetail{
    margin: 0 45% 0 0;
}
.op_release .releaseBlock .releaseDetail > *{
    margin: 0 0 20px;
}
.op_release .releaseBlock .releaseDetail > *:last-child{
    margin: 0;
}
.op_release .releaseBlock .tnumb{
    max-width: 45%;
    padding-right: 5%;
}
.op_release .releaseBlock:nth-child(even) .tnumb{
    left: auto;
    right:0;
}
.op_release .releaseBlock .type{
    font-size: 200%;
    letter-spacing: 0.1em;
}
.op_release .releaseBlock .credit{
    display: flex;
    align-items: center;
}
.op_release .releaseBlock .credit span{
    border: 1px solid;
    display: inline-block;
    line-height: 1em;
    font-size: 90%;
    padding: 3px 10px;
    border-radius: 3px;
    font-weight: 600;
    margin: 0 10px 0 0;
}
.op_release .releaseBlock .price{
    font-size: 140%;
    font-weight: 600;
}
.op_release .releaseBlock .price span{
    font-size: 60%;
}

.op_release .releaseBlock .trackBlock{

}
.op_release .releaseBlock .trackBlock dt{
    border-bottom: 1px solid;
    padding: 0 0 10px;
    margin: 0 0 15px;
    line-height: 1em;
    font-weight: 800;
}
.op_release .releaseBlock .trackBlock dd{
    display: flex;
}
.op_release .releaseBlock .trackList{
    margin: 0 40px 0 0;
}
.op_release .releaseBlock .trackList li{
    display: flex;
    font-size: 90%;
    font-weight: 500;
    margin: 0 0 14px;
    line-height: 1.4em;
    padding: 0 0 0 30px;
    position: relative;
    gap: 14px;
}
.op_release .releaseBlock .trackList li:last-child{
    margin: 0;
}
.op_release .releaseBlock .trackList li .num{
    font-weight: 800;
    margin: 0 10px 0 0;
    letter-spacing: 0.02em;
    position: absolute;
    left: 0;
}
.op_release .releaseBlock .trackList li .artist{
    background: #4d4038;
    line-height: 1em;
    padding: 5px 8px 2px;
    display: inline-block;
    font-size: 80%;
    font-weight: 700;
    color: #FFF;
    border-radius: 4px;
}

/* OP:RELEASE:SP-max-959 */
@media screen and (max-width: 959px){
.op_release .releaseBlock .type{
    font-size: 180%;
}
.op_release .releaseBlock .tnumb {
    position: relative;
    left: auto;
    top: auto;
    right: auto;
    width: 100%;
    max-width: 100%;
    padding-right: 0;
}
.op_release .releaseBlock .releaseDetail {
    width: 100%;
    margin: 0;
}
.op_release .releaseBlock:nth-child(even) .releaseDetail {
    margin: 0;
}
}


/*===================================================
  OP:attList
====================================================*/
.attBox .tit {
    font-weight: bold;
    font-size: 18px;
    border-left: 3px solid;
    padding: 0 0 0 10px;
    line-height: 1;
    margin: 0 0 30px;
}
.op_attList {
	margin: 0 0 1px;
}
.op_attList:last-child {
	margin: 0;
}
.op_attList .listBox {}
.op_attList .listBox:last-child{}
.op_attList .attTit {
    background: #cdc7bc;
    padding: 20px 45px 20px 30px;
    font-weight: bold;
    position: relative;
    cursor: pointer;
    transition: 0.5s ease;
    margin-bottom: 1px;
}
.op_attList .attTit.open {}
.op_attList .attTit span {
    position: absolute;
    top: 50%;
    right: 30px;
    width: 12px;
    height: 12px;
    transform: rotate(180deg) translateY(50%);
    transition: 0.3s ease;
}
.op_attList .attTit.open span {
    transform: translateY(-50%);
}
.op_attList .attTit span:before {
    content: "";
    position: absolute;
    top: 25%;
    width: 100%;
    height: 100%;
    border-top: 2px solid;
    border-right: 2px solid;
    transform: rotate(-45deg);
}
.op_attList .attDetail {
    display: none;
    padding: 20px 0 30px;
    border-top: none;
}
.op_attList .attDetail >*{
    margin-bottom: 20px;
}
.op_attList .attDetail >*:last-child{
    margin-bottom: 0;
}
.op_attList .attDetail .attList {}
.op_attList .attDetail .attList .idNote {
    margin: 0 0 20px;
    display: block;
    text-indent: -1em;
    padding: 0 0 0 0.5em;
}
.op_attList .attDetail .attList li {
    padding: 0 0 0 15px;
    margin: 0 0 10px;
    position: relative;
}
.op_attList .attDetail .attList li:last-child {
    margin: 0;
}
.op_attList .attDetail .attList li:before {
    content:"・";
    position: absolute;
    left: 0;
    line-height: 1.4em;
}
.op_attList .attDetail .attList li > *{
    margin-bottom: 10px;
}

.op_attList .attDetail .attList li .txt{
    font-size: 13px;
}
.op_attList .attDetail .attList li .attentionTxt{
    font-size: 11px;
    text-indent: -13px;
    margin-left: 13px;
    margin-bottom: 5px;
}
.op_attList .attDetail .attList li .innerList{
    margin-bottom: 15px;
    border-left: 2px solid;
    padding: 0 0 0 10px;
}
.op_attList .attDetail .attList li .innerList dt{
    font-size: 12px;
    font-weight: 800;
    margin-bottom: 5px;
}
.op_attList .attDetail .attList li .innerList dd{
    font-size: 12px;
    font-weight: 800;
}
.op_attList .attDetail .attList li > *:last-child{
    margin-bottom: 0;
}

.op_attList .attDetail .attList li a {
    text-decoration: underline;
}
.op_attList .attDetail .attList li .note {
    display: block;
    text-indent: -1em;
    padding: 0 0 0 1em;
}
.op_attList .attDetail .attList .idList li {
    font-size: 13px;
    font-weight: 600;
    padding: 0;
}
.op_attList .attDetail .attList .idList li:before {
    content:none;
}

.op_attList .attDetail .attList .listDetail {
    margin: 0 0 20px;
    padding: 20px;
    border: 1px solid;
}
.op_attList .attDetail .attList .listDetail:last-child {
    margin: 0;
}
.op_attList .attDetail .attList .listDetail .tit {
    display: block;
    font-size: 14px;
    margin: 0 0 20px;
    border-left: 2px solid;
    padding: 0 0 0 10px;
    line-height: 1.4em;
}
.op_attList .attDetail .attList .listDetail .txt {
    font-size: 14px;
}
.op_attList .attDetail .attList .listDetail .txt .note {
    display: block;
    text-indent: -1em;
    padding: 0 0 0 1em;
    font-size: 14px;
}
.op_attList .attDetail .attList .listDetail .txt .detailList li {
    text-indent: -1em;
    padding: 0 0 0 1em;
}
.op_attList .attDetail .attList .listDetail .txt .detailList li .detailNote {
    display: block;
    text-indent: -0.5em;
    padding: 0 0 0 0.5em;
    margin: 0 0 5px;
}
.op_attList .attDetail .attList .listDetail .txt .detailList li .detailNote:first-child {
    margin: 5px 0;
}
.op_attList .attDetail .attList .listDetail .txt .detailList li .detailNote:last-child {
    margin: 0;
}
.op_attList .attDetail .attList .idBox {
    margin: 0 0 20px;
}
.op_attList .attDetail .attList .idBox:last-child {
    margin: 0;
}
.op_attList .attDetail .attList .idBox .tit {
    display: block;
    font-size: 14px;
    text-indent: -1em;
    padding: 0 0 0 1em;
    margin: 0 0 10px;
    border: none;
}
.op_attList .attDetail .attList .idBox .txt {
    font-size: 14px;
}
.op_attList .attDetail .attList .idBox .idList {
    margin: 0 0 10px;
}
.op_attList .attDetail .attList .idBox .idDetail {
    font-size: 14px;
    margin: 0 0 10px;
}
.op_attList .attDetail .attList .idBox .idDetail:last-child {
    margin: 0;
}
.op_attList .attDetail .attList .idBox .idDetail .detailTit {
    font-size: 14px;
    font-weight: bold;
    margin: 0 0 5px;
}
.op_attList .attDetail .attList .idBox .idDetail .detailTxt {}
.op_attList .attDetail .attList .idBox .idDetail .att {
    display: block;
    padding: 0 0 0 1em;
    text-indent: -1em;
    font-size: 12px;
    font-weight: 400;
}

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

   .op_attList .attTit:hover,
   .op_attList .attDetail .attList li a:hover {
        opacity: 0.7;
    }

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

    #attention {
        margin: 0 auto 45px;
    }
    #attention .inBox {
        margin: 0 auto 20px;
        padding: 20px;
    }

    .attBox {
        width: 100%;
        margin: 0 auto 25px;
    }
    .attBox:last-child {
        margin: 0 auto;
    }
    .attBox .tit {
        font-size: 14px;
        margin: 0 0 20px;
        padding: 0 0 0 10px;
    }

    /*============ accordion ===========*/
    .op_attList {}
    .op_attList .attTit {
        padding: 15px 45px 15px 20px;
        font-size: 14px;
    }
    .op_attList .attTit span {
        right: 20px;
        width: 10px;
        height: 10px;
    }
    .op_attList .attDetail {
        padding: 15px 0;
    }
    .op_attList .attDetail .attList .idNote {
        margin: 0 0 15px;
    }
    .op_attList .attDetail .attList .idBox {
        margin: 0 0 10px;
    }
    .op_attList .attDetail .attList .idBox .tit {
        line-height: 1.5;
        margin: 0 0 5px;
    }


}