@charset "UTF-8";
/*
=======================================================

=======================================================
*/

.NitalagoRuika {
font-family: "nitalago-ruika", sans-serif;
font-weight: 100;
font-style: normal;
}

img {
    max-width: 100%;
}





/*
共通
--------------------------*/
.headerTopSpace {
	padding-top: 140px;
}
.container{
    max-width: 1160px;
    width: 90%;
}

.container.sm{
    max-width: 1000px;
}


@media screen and (max-width: 767px) {
	.headerTopSpace {
		padding-top: 64px;
	}
}



/*
タイトル
------------------------------*/
.titleType01 {
	font-size: 28px;
	font-weight: bold;
	color: var(--color-main);
	padding-bottom: 10px;
	border-bottom: 3px solid var(--color-lightbrown);
    position: relative;
}

.titleType01:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -3px;
    max-width: 120px;
    width: 25%;
    height: 3px;
    background: var(--color-main);
}


.titleType02 {
	font-size: 20px;
	font-weight: bold;
	color: var(--color-main);
	padding-bottom: 10px;
	border-bottom: 1px solid var(--color-main);
}

.titleType03 {
	font-size: 18px;
	font-weight: bold;
	color: var(--color-main);
	padding-left: 10px;
	border-left: 5px solid var(--color-main);
}

@media screen and (max-width: 768px) {
    .titleType01 {
        font-size: 24px;
    }
    .titleType02 {
        font-size: 20px;
    }
    .titleType03 {
        font-size: 16px;
    }
}

/*
背景装飾
------------------------------*/
.bglightyellow2 {
    background: var(--color-lightyellow2);
}


/*
テキスト装飾
------------------------------*/
.taC{
    text-align: center;
}

.taR{
    text-align: right;
}

.taL{
    text-align: left;
}

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

.f_bold{
    font-weight: bold;
}

.color_main{
    color: var(--color-main);
}
.color_orange{
    color: var(--color-orange);
}

@media screen and (max-width: 767px) {
    .taC.sp_taL{
        display: block;
    }
}

/*
フォントサイズ
------------------------------*/
.f_size_14 {
    font-size: 14px !important;
}
.f_size_16 {
    font-size: 16px !important;
}
.f_size_22 {
    font-size: 22px !important;
}
@media screen and (max-width: 767px) {
    .f_size_14 {
        font-size: 12px !important;
    }
    .f_size_16 {
        font-size: 14px !important;
    }    
    .f_size_20 {
        font-size: 20px !important;
    }
}

/*
margin
------------------------------*/
.mb10{
  margin-bottom: 10px;
}
.mb20{
  margin-bottom: 20px;
}
.mb30{
  margin-bottom: 30px;
}
.mb40{
  margin-bottom: 40px;
}
.mb50{
  margin-bottom: 50px;
}
.mb60{
  margin-bottom: 60px;
}
.mb70{
  margin-bottom: 70px;
}
.mb80{
  margin-bottom: 80px;
}
.mb100{
  margin-bottom: 100px;
}
.mb120{
  margin-bottom: 120px;
}
.mb150{
  margin-bottom: 150px;
}
.mb200{
  margin-bottom: 200px;
}
@media screen and (max-width: 768px) {
    .mb50{
      margin-bottom: 40px;
    }
  .mb60{
    margin-bottom: 50px;
  }
  .mb70{
    margin-bottom: 65px;
  }
  .mb80{
    margin-bottom: 60px;
  }
  .mb100{
    margin-bottom: 80px;
  }
  .mb120{
    margin-bottom: 100px;
  }
  .mb150{
    margin-bottom: 120px;
  }
  .mb200{
    margin-bottom: 170px;
  }
}



/*
テキスト
---------------------------------*/
.textWrap .leadtext{
	font-size: 18px;
	line-height: 1.7;
	font-weight: bold;
}

.textWrap .text{
	font-size: 16px;
	line-height: 1.7;
}

.textWrap .text_18 {
	font-size: 18px;
	line-height: 1.7;
}

.cautionItem{
	font-size: 14px;
}

.textWrap .text.indent {
    padding-left: 15px;
    text-indent: -15px;
}

/*
FLEX 横並び
---------------------------------*/
/*.serviceFlexWrap{
    padding-bottom: 80px;
}*/
.serviceFlex {
    display: flex;
}

.serviceFlex.right{
    flex-direction: row-reverse;
}

.serviceFlex.left{
    flex-direction: row;
}

.serviceFlex .textBlock{
    width: 50%;
}

.serviceFlex.right .textBlock{
    margin-left: 60px;
}

.serviceFlex.left .textBlock{
    margin-right: 60px;
}

.serviceFlex .imgBlock{
   /* max-width: 440px;*/
    width: 50%;
    overflow: hidden;
}

.serviceFlex .imgBlock img{
    border-radius: 20px;
    width: 100%;
}

.serviceFlex .titeItem{
    display: flex;
    align-items: center;
    flex-direction: row;
    /*border-bottom: 2px dotted var(--color-main);*/
    font-size: 26px;
    line-height: 1.7;
    margin-bottom: 20px;
    font-weight: bold;
}

.serviceFlex .titeItem .number{
    background: var(--color-main);
    color: #fff;
    border-radius: 100px;
    padding: 10px;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    text-align: center;
    justify-content: center;
    margin-right: 10px;
    font-weight: bold;
    font-size: 40px;
}

.serviceFlex .titeItem .text{
    color: var(--color-main);
    font-weight: bold;
    flex:1;
}

.serviceFlex .textWrap p{
    font-size: 16px;
    line-height: 2;
}

@media screen and (max-width: 768px) {
   /* .serviceFlexWrap{
        padding-bottom: 50px;
    }*/
    .serviceFlex {
        display: block;
    }
    .serviceFlex .textBlock{
        margin-bottom: 40px;
    }
    .serviceFlex.right .textBlock{
        margin-left: 0;
    }

    .serviceFlex.left .textBlock{
        margin-right: 0;
    }
    .serviceFlex .imgBlock{
        width: 100%;
        margin-right: auto;
        margin-left: auto;
    }
    .serviceFlex .textBlock{
        width: 100%;
        margin-right: auto;
        margin-left: auto;
    }
}

@media screen and (max-width: 640px) {
    .serviceFlex .titeItem{
        font-size: 22px;
    }
    .serviceFlex .textWrap p{
        font-size: 14px;
    }
}


/* 横幅
----------------------------------------- */
.link_w260 {
    min-width: 260px;
}

@media screen and (max-width: 640px) {
    .link_w260 {
        min-width: 200px;
    }   
}


/* commonLink01 
----------------------------------------- */
.bgImageBtnWrap .link{
    margin-bottom: 20px;
}
.commonLink01{
    display: block;
    background: var(--color-orange);
    color: #fff;
    position: relative;
    border: 1px solid var(--color-orange);
    text-align: center;
    font-size: 14px;
    font-weight: bold;
    padding: 50px 30px;
    border-radius: 10px;
    transition: .3s;
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto;
}

.commonLink01:after{
    content: '';
    width: 10px;
    height: 10px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    position: absolute;
    top: 0;
    bottom: 0;
    right: 15px;
    margin: auto 0;
    transition: .3s;
}

.commonLink01:hover:after{
    border-top: 2px solid var(--color-orange);
    border-right: 2px solid var(--color-orange);
}

.commonLink01:visited,
.commonLink01:link{
    color: #fff;
}
.commonLink01:hover{
    background: #fff;
    color: var(--color-orange);
    transition: .3s;
}
/* commonLink02
----------------------------------------- */
.commonLink02{
    background: #fff;
    color: var(--color-orange);
    border: 1px solid var(--color-orange);
    font-size: 14px;
    padding: 10px 34px;
    border-radius: 30px;
    text-align: center;
    font-weight: bold;
    transition: .3s;
    letter-spacing: .2px;
    display: inline-block;
}
.commonLink02:link, .commonLink02:visited{
    color: var(--color-orange);
}
.commonLink02:hover{
    background: var(--color-orange);
    color: #fff;
}




/* commonLink03
----------------------------------------- */
.commonLink03{
    background: rgb(255,255,255,0);
    color: #fff;
    border: 1px solid #fff;
    font-size: 14px;
    padding: 20px 20px;
    border-radius: 44px;
    text-align: center;
    font-weight: bold;
    transition: .3s;
    letter-spacing: .2px;
    display: inline-block;
}

.commonLink03:hover{
    background: #fff;
    color: var(--color-orange);
}

/* commonLink04
----------------------------------------- */
.commonLink04{
    color: var(--color-orange);
    text-decoration: underline;
    display: inline-block;
    transition: .3s;
}
.commonLink04:visited,
.commonLink04:link{
    color: var(--color-orange);
}
.commonLink04:hover{
    color: #000;
    text-decoration: underline;
}


/* commonLink05
----------------------------------------- */
.commonLink05{
    background:  var(--color-orange);
    color: #fff;
    border: 1px solid var(--color-orange);
    font-size: 14px;
    padding: 10px 40px 10px 34px;
    border-radius: 30px;
    text-align: center;
    font-weight: bold;
    transition: .3s;
    letter-spacing: .2px;
    display: inline-block;
    position: relative;
}
.commonLink05:link, .commonLink05:visited{
    color: #fff;
}
.commonLink05::before,
.commonLink05::after{
    position: absolute;
    top: 0;
    bottom: 0;
    left: auto;
    margin: auto;
    content: "";
    vertical-align: middle;
}
.commonLink05::before{
    right: 10px;
    width: 14px;
    height: 2px;
    background: #fff;
}
.commonLink05::after{
    right: 9px;
    width: 8px;
    height: 8px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}
.commonLink05:hover{
    background: #fff;
    color: var(--color-orange);
}
.commonLink05:hover::before{
    background: var(--color-orange);
}
.commonLink05:hover::after{
    border-top: 2px solid var(--color-orange);
    border-right: 2px solid var(--color-orange);
}



/* commonLink06
----------------------------------------- */
.commonLink06{
    background: var(--color-orange);
    color: #fff;
    position: relative;
    border: 1px solid var(--color-orange) !important;
    text-align: center;
    font-size: 14px;
    font-weight: bold;
    padding: 17px 17px;
    border-radius: 200px;
    transition: .3s;
    line-height: 1.7;
    min-width: 200px;
    letter-spacing: .2px;
    margin: 0 auto;
    display: inline-block;
}

.commonLink06:visited,
.commonLink06:link{
    color: #fff;
}
.commonLink06:hover{
    background:#fff;
    color: var(--color-orange);
    transition: .3s;
}


/* commonLink07
----------------------------------------- */
.commonLink07{
    background: var(--color-grey);
    color: #fff;
    position: relative;
    border: 1px solid var(--color-grey) !important;
    text-align: center;
    font-size: 14px;
    font-weight: bold;
    padding: 17px 17px;
    border-radius: 200px;
    transition: .3s;
    line-height: 1.7;
    min-width: 200px;
    letter-spacing: .2px;
    margin: 0 auto;
    display: inline-block;
}

.commonLink07:visited,
.commonLink07:link{
    color: #fff;
}
.commonLink07:hover{
    background:#fff;
    color: var(--color-grey);
    transition: .3s;
}


/* commonLink08
----------------------------------------- */
.commonLink08{
    color: var(--color-main);
    font-size: 16px;
    padding-right:  40px;
    text-align: center;
    font-weight: bold;
    transition: .3s;
    letter-spacing: .2px;
    display: inline-block;
    position: relative;
}
.commonLink08:link, .commonLink08:visited{
    color: var(--color-main);
}
.commonLink08::before,
.commonLink08::after{
    position: absolute;
    top: 0;
    bottom: 0;
    left: auto;
    margin: auto;
    content: "";
    vertical-align: middle;
}
.commonLink08::before{
    right: 10px;
    width: 14px;
    height: 2px;
    background: var(--color-main);
    transition: .3s;
}
.commonLink08::after{
    right: 9px;
    width: 8px;
    height: 8px;
    border-top: 2px solid var(--color-main);
    border-right: 2px solid var(--color-main);
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    transition: .3s;
}
.commonLink08:hover{
    color: var(--color-orange);
}
.commonLink08:hover::before{
    background: var(--color-orange);
    right: 2px;
}
.commonLink08:hover::after{
    right: 0;
    border-top: 2px solid var(--color-orange);
    border-right: 2px solid var(--color-orange);
}


/*
リスト
---------------------------------*/
.serviceFlex .serviceFlexList .listItem{
    list-style: none;
}

.serviceFlex .serviceFlexList .listItem{
    display: flex;
    margin-bottom: 15px;
    background: var(--color-lightyellow);
    padding: 10px 20px;
    border-radius: 5px;
}

/*.serviceFlex .serviceFlexList .listItem:before{
    content: '';
    background: url(../../assets/img/service/list_icon.svg) no-repeat;
    background-size: contain;
    background-position: top center;
    width: 24px;
    height: auto;
    margin-right: 10px;
}
*/

.serviceFlex .serviceFlexList .listItem .text{
    flex: 1;
    display: block;
    line-height: 1.7;
    font-size: 16px;
    font-weight: bold;
}


.serviceFlex .serviceFlexList .listItem.wrapItem {
    flex-wrap: wrap;
}

.serviceFlex .listInnerFlex{
    width: 100%;
    margin-top: 15px;
    display: flex;
    justify-content: space-between;
}
.serviceFlex .listInnerFlex .listInnerFlex_item{
    width: 48%;
    border-radius: 5px;
    background: #2D2A28;
    color: #fff;
    line-height: 1.5;
    font-weight: bold;
    text-align: center;
    padding: 15px 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 13px;
}

@media screen and (max-width: 900px) {
    .serviceFlex .listInnerFlex{
        display: block;
    }
    .serviceFlex .listInnerFlex .listInnerFlex_item{
        width: 100%;
        margin-top: 5px;
    }
}


@media screen and (max-width: 768px) {
    .serviceFlex .listInnerFlex{
        display: flex;
    }
    .serviceFlex .listInnerFlex .listInnerFlex_item{
        width: 48%;
    }
}

@media screen and (max-width: 640px) {
    .serviceFlex .serviceFlexList .listItem .text{
        font-size: 14px;
    }
    .serviceFlex .listInnerFlex{
        display: block;
    }
    .serviceFlex .listInnerFlex .listInnerFlex_item{
        width: 100%;
    }
}



/*
コラム検索
------------------------------*/
.columCateList {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
}
@media screen and (max-width: 640px) {
    .columCateList{
        flex-direction: column;
    }
}

.columCateList .columCate_listItem {
    margin-left: 3px;
    margin-right: 3px;
    max-width: 140px;
    width: 100%;
    margin-bottom: 5px;
}

.columCateList .columCate_listItem .linkItem {
    display: flex;
    background: var(--color-lightyellow2);
    color: var(--color-main);
    align-items: center;
    justify-content: center;
    padding: 10px;
    min-height: 50px;
    text-align: center;
    font-size: 14px;
    width: 100%;
    display: block;
    border-radius: 10px;
    border: 2px solid var(--color-lightyellow);
    transition: .3s;
}

.columCateList .columCate_listItem.active .linkItem{
    background: var(--color-lightyellow);
}

.columCateList .columCate_listItem .linkItem:hover{
    box-shadow: 0 0 5px rgba(0,0,0,0.4);
}

@media screen and (max-width: 640px) {
    .columCateList .columCate_listItem {
        width: calc(100% - 6px);
        max-width: 100%;
    }
}



/*
コラム一覧
----------------------------------------------*/
.columnMainWrap{
  padding-bottom: 150px;
}

.columwrap {
    display: flex;
    justify-content: flex-start;
    width: 100%;
    flex-wrap: wrap;
/*    margin-bottom: 220px;*/
}

.columwrap .stageCol:nth-child(3n + 1) {
    margin-left: 0;
}

.columwrap .columwrap_news {
    margin-bottom: 0px;
}

.columwrap .stageCol {
    width: 32%;
    margin-left: 2%;
    /*margin-bottom: 60px;*/
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 30px;
    transition: .3s;
    border: 2px solid var(--color-orange);
}

.columwrap .stageCol:hover {
    box-shadow: 0 0 10px rgba(0,0,0,0.3);
}

.columwrap .stageColBox {
    border: 3px solid #31D570;
    position: relative;
    /*text-align: center;*/
}

.columwrap .stageCol_point {
    border: 0 solid transparent;
    /* box-shadow: 0 0 8px gray; */
    padding-top: 100px;
    padding-bottom: 30px;
    position: relative;
    padding-top: 0;
    height: 100%;
    background: #fff;
}

.columwrap .pointImg {
    position: absolute;
    top: -8%;
    left: 50%;
    transform: translateX(-50%);
    -webkit- transform: translateX(-50%);
}

.columwrap .stageCol_point h2 {
    margin-bottom: 18px;
    font-weight: normal;
    text-align: left;
    color: var(--color-black1);
    padding: 0 20px;
    font-size: 16px;
    line-height: 1.6;
    font-weight: bold;
    margin-top: 0;
    margin-bottom: 5px;
}

.columwrap .point_image_block {
    margin-bottom: 20px;
    overflow: hidden;
    position: relative;
    height: 250px;
}

.columwrap .stageCol_icon {
    margin-bottom: 30px;
}

.columwrap .stageCol_text {
    font-size: 14px;
    line-height: 1.6;
    width: 100%;
    text-align: left;
    width: 100%;
    position: inherit;
    top: auto;
    left: auto;
    transform: inherit;
    padding: 0 20px;
    margin-bottom: 10px;
}

.stageCol_text.line3txt {
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.columwrap .stageCol .cate{
    font-size: 14px;
    font-weight: 400;
    display: inline-flex;
    /* margin-right: 10px; */
    /* margin-left: 0; */
    background: var(--color-main);
    padding: 2px 5px;
    border-radius: 3px;
    text-align: left;
    margin: 0 20px 10px 20px;
    color: #fff;
}

.columwrap .stageCol_date {
    color: #AAAAAA;
    font-size: 14px;
    font-family: 'Jost', sans-serif;
    letter-spacing: .5px;
    text-align: left;
    margin-top: 15px;
    padding: 0 20px;
}

.columwrap .stageColBox img {
    display: block;
    border-radius: inherit;
    position: absolute;
    height: 100%;
    width: 100%;
    object-fit: cover;
    transition: .3s;
}

.columwrap .colBtnBox {
    position: absolute;
    width: 100%;
    text-align: center;
    bottom: -12%;
}

.columwrap .colBtnBox img {
    display: inline-block;
    max-width: 273px;
    width: 80%;
}

.columwrap .stageColBox .moreLink{
  text-align: right;
  padding-right: 30px;
  position: relative;
  font-weight: bold;
  color: #525766;
  font-size: 16px;
}

.columwrap .stageColBox .moreLink:after{
  position: absolute;
  content: '';
  background: url(../img/common/icon_moreLink.svg) no-repeat center;
  background-size: contain;
  width: 10px;
  height: 100%;
  margin-left: 5px;
}

.columwrap .stageColBox a:hover .point_image_block img{
  transform: scale(1.1);
}


@media screen and (max-width: 1180px) {
    .columwrap .stageCol_point {
        min-height: 400px;
    }
    .columwrap .stageCol_point h2 {
        font-size: 16px;
        /* height: 160px; */

    }
}

@media screen and (max-width: 991px) {
    .columwrap .stageCol_point {
        min-height: 300px;
    }
    .columwrap .stageCol_text {
        position: inherit;
        top: auto;
        left: auto;
        transform: inherit;
    }
}
@media screen and (max-width: 768px) {
    .columwrap{
    flex-wrap: wrap;
    justify-content: center;
    }
    .columwrap .stageCol {
    width: 44%;
    max-width: inherit;
    margin-right: inherit;
    }
/*    .columwrap .stageCol:nth-child(2n){
        margin-left: 0;
    }*/
    .columwrap .stageCol:nth-child(3n + 1){
        margin-left: 2%;
    }
}
@media screen and (max-width: 500px) {
    .columwrap{
    display: block;
    }
    .columwrap .stageCol {
        margin-bottom: 40px;
        width: 100%;
        max-width: 400px;
        margin-right: auto;
        margin-left: auto;
    }
    .columwrap .stageCol:nth-child(3n + 1){
        margin-right: auto;
        margin-left: auto;
    }
    .columwrap .point_image_block {
       /* margin-bottom: 0;*/
       margin-bottom: 7px;
    }
    .columwrap .stageCol_point {
        padding-bottom: 0;
        min-height: 542px;
        min-height: auto;
    }
    .columwrap .stageColBox .moreLink{
      padding-bottom: 10px;
    }
    .columwrap .stageCol_point h2 {
        font-size: 16px;
        margin-bottom: 10px;
    }
    .columwrap .stageCol_text {
        width: 95%;
        line-height: 1.7;
        font-size: 15px;
        margin-bottom: 10px;
    }
}




/*
tableItemWrap01
----------------------------------------------*/
.tableItemWrap01 .tableItem_row{
    display: flex;
    align-items: stretch;
    flex-wrap: wrap;
    min-height: 80px;
    border-top: 1px solid #D2C3C4;
}

.tableItemWrap01 .tableItem_row .tableItem_ttl {
    padding: 15px 15px;
    width: 280px;
    background: #F7F7F7;
    border-bottom: 1px solid #D2C3C4;
    color: var(--color-main);
    font-size: 16px;
}

.tableItemWrap01 .tableItem_row .tableItem_text {
    padding: 15px 15px;
    width: calc(100% - 280px);
    border-bottom: 1px solid #D2C3C4;
    color: var(--color-main);
    font-size: 16px;
}

@media screen and (max-width: 768px) {
    .tableItemWrap01 .tableItem_row .tableItem_ttl {
        font-size: 14px;
        width: 150px;
    }
    .tableItemWrap01 .tableItem_row .tableItem_text {
        font-size: 14px;
        width: calc(100% - 150px);
    }
}

/*
tableItemWrap02
----------------------------------------------*/
.tableItemWrap02 {
    overflow-x: scroll;
    width: 100%;
}
.tableItemWrap02 .table02{
    min-width: 600px;
    border: 1px solid var(--color-main);
    table-layout: fixed;
    width: 100%;
}
.tableItemWrap02 .table02 .table02_th {
    background: var(--color-lightyellow2);
    padding: 10px;
    border-left: 1px solid var(--color-main);
}
.tableItemWrap02 .table02 .table02_td{
    padding: 10px;
    border-left: 1px solid var(--color-main);
}


/*
画像
----------------------------------------------*/
.page_subImg {
    max-width: 700px;
    width: 80%;
    margin-right: auto;
    margin-left: auto;
    text-align: center;
}



/*
運営からのお知らせ
----------------------------------------- */
.infoLinkWrap{
  padding-bottom: 150px;
}

.news-sec-inner{
  display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: row;
}

.new-listWrap{
  margin-right: auto;
  margin-left: auto;
}

.new-listWrap li {
}

.new-listWrap a{
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: row;
    border-radius: 10px;
    padding: 23px 20px;
    background: #fff;
    position: relative;
    transition: .3s;
}

.new-listWrap a:after{
  content: '';
    border-top: 2px solid var(--color-main);
    border-right: 2px solid var(--color-main);
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  width: 12px;
  height: 12px;
  position: absolute;
  top: 50%;
  right: 10px;
}

.news-date{
    font-weight: 400;
    line-height: 1.6;
    font-size: 16px;
    display: inline-block;
    color: var(--color-black1);
    margin-right: 20px;
    vertical-align: middle;
    letter-spacing: .1px;
  width: 90px;
  font-weight: 500;
}
.news-cate{
    border: 1px solid var(--color-main);
    font-size: 12px;
    padding: 1px 5px 0;
    border-radius: 20px;
    display: inline-block;
    background: var(--color-main);
    color: #fff;
    transition: .3s;
    vertical-align: middle;
    line-height: 1.7;
    font-weight: bold;

  width: 90px;
  text-align: center;
  margin-right: 30px;
  letter-spacing: .1px;
  margin-top: 2px;
}
.news-txt{
  display: inline-block;
  width: 500px;
  margin-top: 0px;
  letter-spacing: .5px;
  font-size: 16px;
}
.new-listWrap .news-txt{
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.new-listWrap a:hover {
    opacity: .5;
}

.news-txt{
    display: inline-block;
    width: 68%;
    margin-top: 0px;
    letter-spacing: .5px;
    font-size: 14px;
}

.news_detail .new-list{
  width: 100%;
}

.news_detail .new-list li{
  border-bottom: 1px solid #eee;
}

@media screen and (max-width: 1300px) {
  .news-txt{
    width: calc(100% - 205px);   
  }
}

@media screen and (max-width: 991px) {
  .news-date{
    margin-right: 20px;
  }
  .news-cate{
    margin-right: 30px;
  }
  .new-listWrap .news-txt{
    text-overflow: inherit;
    white-space: inherit;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }
}
@media screen and (max-width: 768px) {
  .new-listWrap a{
    display: block;
    font-size: 14px;
  }
  .news-txt{
    display: block;
    width: 100%;
    margin-top: 20px;
    font-size: 14px;
  }
}
@media screen and (max-width: 500px) {
}


/*
news詳細
---------------*/
.news_detailWrap{
  max-width: 1060px;
}
.news_detail .page_newsTit{
  margin-bottom: 50px;
  font-size: 32px;
}
.news_detail .page_newsSubTit{
  margin-bottom: 30px;
  font-weight: bold;
  font-size: 20px;
}
.news_detail .per_read{
  margin-bottom: 50px;
}
.news_detail .img_item{
  margin-bottom: 50px;
}
.news_detail .img_item img{
  max-width: 100%;
  width: auto;
}

.news_detail .per_read a{
  color: var(--color-main);
  text-decoration: underline;
  font-weight: bold;
  transition: .3s;
}
.news_detail .per_read a:link,
.news_detail .per_read a:visited,
.news_detail .per_read a:active{
  color: var(--color-main);
}

.news_detail .per_read a:hover{
  color: var(--color-main);
  opacity: .6;
}

/*
登録申請書類一覧の豆柴認定に関する書類・資料へのアンカーリンク
----------------------------------------------*/
#mameshiba {
    padding-top: 180px;
    margin-top: -180px;
}