@charset "euc-jp";

html,body,div,span,applet,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,address,big,cite,code,del,dfn,em,img,ins,kbd,q,s,samp,small,strike,strong,sub,sup,tt,var,b,u,i,center,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,embed,figure,figcaption,footer,header,hgroup,menu,nav,output,ruby,section,summary,time,mark,audio,video{margin:0;padding:0;border:0;font-size:100%;font:inherit;vertical-align:baseline;border:none;border-radius:0}article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section{display:block}body{line-height:1;-webkit-text-size-adjust:100%;color:#333;font-family:Verdana,Roboto,"Droid Sans","游ゴシック",YuGothic,"メイリオ",Meiryo,"ヒラギノ角ゴ ProN W3","Hiragino Kaku Gothic ProN","ＭＳ Ｐゴシック",sans-serif}ol,ul{list-style:none}a{text-decoration:none;color:#444}blockquote,q{quotes:none}blockquote:before,blockquote:after,q:before,q:after{content:'';content:none}table{border-collapse:collapse;border-spacing:0}

input[type=text] {
    font-size: 16px;
    border: 1px solid #ccc;
    -webkit-border-radius: 0;
    -webkit-appearance: none;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

input[type="submit"],
input[type="button"] {
    border-radius: 0;
    -webkit-box-sizing: content-box;
    -webkit-appearance: button;
    -moz-appearance: button;
    appearance: button;
    border: none;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    cursor: pointer;
}

input[type="submit"]::-webkit-search-decoration,
input[type="button"]::-webkit-search-decoration {
    display: none;
}

input[type="submit"]::focus,
input[type="button"]::focus {
    outline-offset: -2px;
}


/*-------------------------------------------------------------------------------------*/


/*見出し*/

h1 {}

h2.title {
    margin: 0 0 15px;
    padding: 15px;
    letter-spacing: 0.05em;
    text-align: center;
    font-weight: bold;
    color: #ffffff;
    background: #000;
}

h2.title.red {
    background: #C32A2C;
}

h2.title.lightgray,
footer h2.title {
    background: #000;
    color: #fff;
}

h2 span {
    margin: 5px 0 0;
    font-size: 60%;
    display: block;
}

h3.title {
    margin: 30px 15px 15px;
    padding: 15px;
    letter-spacing: 0.05em;
    text-align: center;
    font-weight: bold;
    border-bottom: 2px dotted #cccccc;
}


/*-------------------------------------------------------------------------------------*/


/*spヘッダー*/

header.sp_hd {
    display: block ;
    margin: 7em 0 0;
    background: #ffffff;
    position: relative;
}

header.sp_hd #fixedheader {
    width: 100%;
    background: #ffffff;
    top: 0;
    position: fixed;
    -webkit-transition: .5s;
    -o-transition: .5s;
    transition: .5s;
    z-index: 100;
}

header.sp_hd #fixedheader.show {
    position: fixed;
    top: 0;
}

header.sp_hd #fixedheader.hide {
    -webkit-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    transform: translateY(-100%);
}

header.sp_hd h1 a,
header.sp_hd h1 img {
    margin: 0.3em auto ;
    width: 67%;
    display: block;
}

header.sp_hd nav ul {
    background: #ffffff;
    border-bottom: 2px solid #ffffff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    display: -webkit-flex;
}

header.sp_hd nav ul li {
    width: 20%;
    padding: 0;
    text-align: center;
    background: #000;
    border-right: 2px solid #ffffff;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
}

header.sp_hd nav ul li:last-of-type {
    border: none;
}

header.sp_hd nav ul li img {
    width: 100%;
    height: auto;
    text-align: center;
    display: block;
}

header.sp_hd nav ul li a {
    padding: 5px 0;
    font-size: 14px;
    letter-spacing: 0.2em;
    font-weight: bold;
    color: #ffffff;
    display: block;
}

header.sp_hd nav ul li.sale {
    position: relative;
}

header.sp_hd nav ul li.sale span {
    padding: 1px;
    width: 10px;
    height: 10px;
    font-size: 10px;
    text-align: center;
    background: #D0161A;
    border-radius: 50%;
    display: block;
    position: absolute;
    top: 4px;
    right: calc(50% - 35px);
}    
/*ドロワーメニュー*/
.pc_hidden{
        display: block ;
    }
.scroll-prevent {
  position: fixed;
  z-index: -1;
  width: 100%;
  height: 100%;
}
#nav-tgl {
  display: none;
}
.nav-tgl-btn {
  cursor: pointer;
  position: fixed;
  top: 0;
  left: 0;
  margin: 0;
  
}
.open {
  z-index: 200;
  width: 55px;
  height: 55px;
  transition: background .6s, transform .6s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.open::before,
.open::after {
  content: "";
}
.open span,
.open::before,
.open::after {
  content: "";
  position: absolute;
  top: calc(50% - 1px);
  right: 30%;
  width: 40%;
  border-bottom: 2px solid #000;
  transition: transform .6s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.open::before {
  transform: translateY(-8px);
}
.open::after {
  transform: translateY(8px);
}
.close {
  z-index: 200;
  width: 100%;
  height: 100%;
  pointer-events: none;
  transition: background .6s;
}
#nav-tgl:checked + .open {
  background: #dd4884;
  transform: translateX(0px);
}
#nav-tgl:checked + .open span {
  transform: scaleX(0);
}
#nav-tgl:checked + .open::before {
  transform: rotate(45deg);
}
#nav-tgl:checked + .open::after {
  transform: rotate(-45deg);
}
#nav-tgl:checked ~ .close {
  pointer-events: auto;
  background: rgba(0,0,0,.3);
}

.content-wrapper {
  transition: transform .6s cubic-bezier(0.215, 0.61, 0.355, 1);
}
#nav-tgl:checked ~ .content-wrapper {
  transform: translateX(100%);
}



/* メニューデザイン */
.drower-menu {
  z-index: 999;
  position: fixed;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  overflow-scrolling: touch;
  top: 55px;
  left: 0px;
  width: 94%;
  height: 100%;
  margin: 0;
  padding: 0 0 10px;
  box-sizing: border-box;
  background: #fff ;
  transform: translateX(-100%);
  transition: transform .6s cubic-bezier(0.215, 0.61, 0.355, 1);
}

#nav-tgl:checked ~ .drower-menu {
  transform: none;
}
div.drower-menu-list {
    display: block ;
     width: 100% ;
    height: 100% ;
}
/*spハンバーガー内検索窓*/
.sp_src .searchform {
    margin: 10px;
    font-family: YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, "sans-serif" ;
    border-bottom: dashed 1px #333 ;
}

.sp_src .searchform table,
.sp_src .searchform table td:first-child {
    width: 100%;
    padding-bottom: 10px;
}

.sp_src .searchform input[type="text"] {
    width: 100%;
    padding: 5px 10px;
    font-size: 16px;
    border: 1px solid #afafaf;
    color: #767676;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin-top: 7px ;
}

.sp_src .searchform input[type="submit"] {
    -webkit-appearance: none;
    width: 60px;
    padding: 5px 10px;
    font-size: 16px;
    text-align: center;
    color: #ffffff;
    background: #afafaf;
    border: none;
}
.event_box{
    width: 90% ;
	margin: 1em auto ;
	border-bottom: dashed 1px #333 ;
    }
.event_box h2.ev_ttl{
    margin: 0 0 0.2em;
    padding: 0.5em;
    letter-spacing: 0.05em;
    text-align: center;
    font-weight: bold;
    color: #ffffff;
    background: #666;
}
.event_box ul{ 
	margin-bottom:1em; 
	padding:0; 
}
.event_box li{ 
	margin-bottom:0.5em; 
	padding:0; 
	list-style:none;
}
.cate_box{
    width: 90% ;
	margin: 1em auto ;
	font-size: 1.2em ;
	font-family: YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, "sans-serif" ;
    }
.cate_box details {
    padding: 0.2em ;
    }
.cate_box summary {
    display: block ;
   padding: 0.5em ; 
    outline: none; 
    border: 1px solid #aaa ;
    }

@media screen and (max-width:320px) {
    header nav ul li a {
        font-size: 10px;
        letter-spacing: 0;
    }
    header nav ul li.sale span {
        top: 3px;
        right: 3px;
    }
}

header nav a.act {
    background: #cbcbcb;
    position: relative;
}

header nav.mens a.act {
    background: #215090;
}

header nav.ladys a.act {
    background: #c2316e;
}

header nav.kids a.act {
    background: #d1800d;
}

header nav.zakka a.act {
    background: #55a420;
}


/*ドロワーメニュー*/

#drawerCheck {
    display: none;
}

#drawerCheck:checked+#drawerMenu {
    display: block;
}

#drawerMenu {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    display: none;
}

#drawerMenu .closeBg {
    width: 100%;
    height: 100%;
    background: rgba(124, 124, 124, 0.7);
    display: block;
}

#drawerMenu .closeBtn {
    width: 30px;
    height: 30px;
    background: #4f4f4f;
    text-align: center;
    border-radius: 50%;
    display: block;
    position: absolute;
    top: 3px;
    right: 3px;
    z-index: 1000;
}

#drawerMenu .closeBtn:before {
    content: "×";
    font-size: 23px;
    line-height: 1;
    color: #ffffff;
    font-weight: bold;
    position: absolute;
    top: 2px;
    right: 4px;
}

#drawerMenu>div {
    width: calc(100% - 20px);
    height: calc(100% - 20px);
    position: absolute;
    top: 10px;
    left: 10px;
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
    border-radius: 3px;
}

#drawerMenu>div iframe {
    width: 100%;
    height: 100%;
    display: block;
}

.scroll-prevent {
    position: fixed;
    z-index: -1;
    width: 100%;
    height: 100%;
}


/*-------------------------------------------------------------------------------------*/


/*フッター*/

footer {
    background-color: #000;
    margin: 0;
}

footer table {
    width: 100%;
}

footer table td {}

footer table td.icon {
    text-align: center;
    vertical-align: middle;
    white-space: nowrap;
    width: 60px;
    height: 60px;
}

footer table td.title {
    padding: 5px 0 0;
    font-size: 0.9em;
    line-height: 100%;
    font-weight: bold;
}

footer table td.line {
    border-bottom: 1px dotted #cccccc;
}

footer table td.title a {
    display: block;
}

footer ul.listLink {
    margin: 0 15px 30px;
    border-radius: 3px;
    overflow: hidden;
}

footer ul.listLink li {
    border-bottom: 2px solid #ffffff;
}

footer ul.listLink li a {
    padding: 8px 10px;
    font-size: 13px;
    color: #333333;
    background: #eeeeee;
    display: block;
    position: relative;
}

footer ul.listLink li a:after {
    content: "";
    display: block;
    width: 7px;
    height: 7px;
    border-right: 2px solid #ffffff;
    border-top: 2px solid #ffffff;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    position: absolute;
    top: 35%;
    right: 10px;
}

footer ul.info {
    margin: 0 15px 30px;
    border-radius: 3px;
    overflow: hidden;
    border: 2px solid #eeeeee;
    border-right: none;
    border-bottom: none;
}

footer ul.info li {
    width: 50%;
    border: 2px solid #eeeeee;
    border-top: none;
    border-left: none;
    display: block;
    float: left;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}


/*footer ul.info li:first-of-type{ width:100%; }*/

footer ul.info li a {
    padding: 8px 10px;
    font-size: 13px;
    color: #fff;
    display: block;
}

footer .icon-otoku {
    margin: 10px 0;
    text-align: center;
}

footer .icon-otoku a {
    margin: 0 5px;
}

footer .copyright {
    margin: 5px 0 0;
    padding: 10px;
    font-size: 11px;
    line-height: 1.5;
    text-align: center;
    color: #fff;
}


/*-------------------------------------------------------------------------------------*/


/*メインコンテンツ*/


/*共通*/

section {
    margin: 0 0 30px;
}

section.mb0 {
    margin: 0;
}

section.mb20 {
    margin: 0 0 20px;
}

section.searchbox {
    margin: 0 0 -10px 0;
}

section.catchbn {
    margin-bottom: -10px;
}

section.cpbox {
    margin: -20px auto -10px;

}
/*---------------------------*/


/*看板*/

.shopimg a,
.shopimg img {
    margin: 0 auto;
    width: 100%;
    display: block;
}


/*---------------------------*/


/*スライダー*/

.event_sl {
    margin: 0 0 10px;
    position: relative;
}

.event_sl .slick-slide {
    margin: 0 5px;
}

.event_sl .prev,
.event_sl .next {
    position: absolute;
    z-index: 2;
}

.event_sl .prev {
    top: 0;
    left: 0;
}

.event_sl .next {
    top: 0;
    right: 0;
}

.event_sl .prev,
.event_sl .next {
    width: 7%;
    height: 100%;
    background: rgba(255, 255, 255, 0.5);
    display: block;
    position: absolute;
    top: 0;
}

.event_sl .prev {
    left: 0;
}

.event_sl .next {
    right: 0;
}

.event_sl .prev:before,
.event_sl .next:before {
    content: "";
    width: 28px;
    height: 28px;
    display: block;
    position: absolute;
    top: calc(50% - 14px);
}

.event_sl .prev:before {
    left: 0;
}

.event_sl .next:before {
    right: 0;
}

.event_sl .prev:after,
.event_sl .next:after {
    content: "";
    width: 8px;
    height: 8px;
    display: block;
    border: 3px solid #ffffff;
    border-right: none;
    border-bottom: none;
    position: absolute;
    top: calc(50% - 7px);
}

.event_sl .prev:after {
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
    left: 10px;
}

.event_sl .next:after {
    -webkit-transform: rotate(135deg);
    -ms-transform: rotate(135deg);
    transform: rotate(135deg);
    right: 10px;
}


/*---------------------------*/


/*モーダルウウィンドウ*/

.popup {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: .6s;
    -o-transition: .6s;
    transition: .6s;
}

.popup p {
    margin: 0 0 5px;
    text-align: center;
    font-size: 18px;
    font-weight: bold;
    color: #D00003;
}

.popup.is-show {
    opacity: 1;
    visibility: visible;
}

.popup-inner {
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 80%;
    padding: 20px;
    background-color: #fff;
    z-index: 2;
}

.popup-inner img {
    width: 100%;
}

.close-btn {
    position: absolute;
    right: 0;
    top: 0;
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    cursor: pointer;
}

.close-btn i {
    font-size: 20px;
    color: #333;
}

.black-background {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .7);
    z-index: 1;
    cursor: pointer;
}


/*---------------------------*/


/*リスト*/

ul.flex {
    margin: 0 15px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    display: -webkit-flex;
    flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
}

.tab_content ul.flex {
    margin: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    display: -webkit-flex;
    flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
}

ul.flex li a {
    text-align: center;
    display: block;
}

ul.flex li img {
    width: 100%;
    display: block;
}

ul.flex+ul.flex {
    margin-top: 5px;
    padding-top: 15px;
    border-top: 1px dotted #cccccc;
}


/*リスト テキスト*/

ul.flex dl {
    margin: 5px 0 10px;
    text-align: center;
    font-size: 10px;
}

ul.flex dl dt {
    margin: 0 0 5px;
}

ul.flex dl dd {
    line-height: 1.3;
}

ul.flex.nrb1 dl {
    text-align: left;
}

ul.flex span.text {
    margin: 5px 0 10px;
    text-align: center;
    font-size: 13px;
    line-height: 1.3;
    display: inline-block;
}

ul.flex span.price {
    margin: 5px 0 10px;
    text-align: center;
    font-size: 13px;
    line-height: 1.3;
    display: inline-block;
}

ul.flex span.price:after {
    content: "円(税込)";
    font-size: 50%;
}

ul.flex span.red {
    color: #C80003;
}

ul.flex span.block {
    display: block;
}

ul.flex span.text+.price,
ul.flex span.price+.text {
    margin-top: -5px;
}


/*リスト icon*/

ul.flex span[class^="icon"] {
    margin: 0 5px 0 0;
    padding: 3px 5px;
    font-size: 10px;
    font-weight: bold;
    color: #ffffff;
    background: #4f4f4f;
    border-radius: 2px;
    display: inline-block;
}

ul.flex span.icon-pink {
    background: #E886AE;
}

ul.flex span.icon-blue {
    background: #72C1ED;
}

ul.flex span.icon-red {
    background: #F04E4E;
}

ul.flex span.icon-yellow {
    background: #FFC314;
}

ul.flex span.icon-green {
    background: #8DE039;
}


/*リスト ボーダー*/

ul[class*="bdr"],
ul[class*="bdr"] li {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

ul.bdrS li,
ul.m0.bdrS,
ul.bdrBtmS li,
ul.bdrImgS img {
    border: 1px solid #cccccc;
}

ul.bdrD li,
ul.m0.bdrD,
ul.bdrBtmD li,
ul.bdrImgD img {
    border: 1px dotted #cccccc;
}

ul.m0.bdrS,
ul.m0.bdrD {
    border-right: none;
    border-bottom: none;
}

ul.m0.bdrS li,
ul.m0.bdrD li {
    border-top: none;
    border-left: none;
}

ul[class*="bdrBtm"] {
    border: none;
}

ul[class*="bdrBtm"] li {
    border-top: none;
    border-right: none;
    border-left: none;
}

ul[class*="bdrBtm"] li:last-of-type {
    border-bottom: none;
}


/*リスト margin 10px(デフォルト)*/

ul.flex li {
    margin: 0 10px 10px 0;
}

ul.flex.nrb1 li {
    margin: 0 0 10px;
}

ul.flex.nrb2 li {
    width: calc((100% - 10px) / 2);
}

ul.flex.nrb3 li {
    width: calc((100% - 20px) / 3);
}

ul.flex.nrb4 li {
    width: calc((100% - 30px) / 4);
}

ul.flex.nrb5 li {
    width: calc((100% - 40px) / 5);
}

ul.flex.nrb2 li:nth-of-type(2n),
ul.flex.nrb3 li:nth-of-type(3n),
ul.flex.nrb4 li:nth-of-type(4n),
ul.flex.nrb5 li:nth-of-type(5n) {
    margin: 0 0 10px;
}


/*リスト margin 0px*/

ul.flex.m0 li {
    margin: 0;
}

ul.flex.m0.nrb1 li {
    margin: 0;
}

ul.flex.m0.nrb2 li {
    width: calc(100% / 2);
}

ul.flex.m0.nrb3 li {
    width: calc(100% / 3);
}

ul.flex.m0.nrb4 li {
    width: calc(100% / 4);
}

ul.flex.m0.nrb5 li {
    width: calc(100% / 5);
}

ul.flex.m0.nrb2 li:nth-of-type(2n),
ul.flex.m0.nrb3 li:nth-of-type(3n),
ul.flex.m0.nrb4 li:nth-of-type(4n),
ul.flex.m0.nrb5 li:nth-of-type(5n) {
    margin: 0;
}


/*リスト margin 5px*/

ul.flex.m5 li {
    margin: 0 5px 5px 0;
}

ul.flex.m5.nrb1 li {
    margin: 0 0 5px;
}

ul.flex.m5.nrb2 li {
    width: calc((100% - 5px) / 2);
}

ul.flex.m5.nrb3 li {
    width: calc((100% - 10px) / 3);
}

ul.flex.m5.nrb4 li {
    width: calc((100% - 15px) / 4);
}

ul.flex.m5.nrb5 li {
    width: calc((100% - 20px) / 5);
}

ul.flex.m5.nrb2 li:nth-of-type(2n),
ul.flex.m5.nrb3 li:nth-of-type(3n),
ul.flex.m5.nrb4 li:nth-of-type(4n),
ul.flex.m5.nrb5 li:nth-of-type(5n) {
    margin: 0 0 5px;
}


/*リスト margin 15px*/

ul.flex.m15 li {
    margin: 0 15px 15px 0;
}

ul.flex.m15.nrb1 li {
    margin: 0 0 15px;
}

ul.flex.m15.nrb2 li {
    width: calc((100% - 15px) / 2);
}

ul.flex.m15.nrb3 li {
    width: calc((100% - 30px) / 3);
}

ul.flex.m15.nrb4 li {
    width: calc((100% - 45px) / 4);
}

ul.flex.m15.nrb5 li {
    width: calc((100% - 60px) / 5);
}

ul.flex.m15.nrb2 li:nth-of-type(2n),
ul.flex.m15.nrb3 li:nth-of-type(3n),
ul.flex.m15.nrb4 li:nth-of-type(4n),
ul.flex.m15.nrb5 li:nth-of-type(5n) {
    margin: 0 0 15px;
}


/*リスト margin 20px*/

ul.flex.m20 li {
    margin: 0 20px 20px 0;
}

ul.flex.m20.nrb1 li {
    margin: 0 0 20px;
}

ul.flex.m20.nrb2 li {
    width: calc((100% - 20px) / 2);
}

ul.flex.m20.nrb3 li {
    width: calc((100% - 40px) / 3);
}

ul.flex.m20.nrb4 li {
    width: calc((100% - 65px) / 4);
}

ul.flex.m20.nrb5 li {
    width: calc((100% - 80px) / 5);
}

ul.flex.m20.nrb2 li:nth-of-type(2n),
ul.flex.m20.nrb3 li:nth-of-type(3n),
ul.flex.m20.nrb4 li:nth-of-type(4n),
ul.flex.m20.nrb5 li:nth-of-type(5n) {
    margin: 0 0 20px;
}


/*リスト padding*/

ul.flex.p5 li {
    padding: 5px;
}

ul.flex.p10 li {
    padding: 10px;
}

ul.flex.p15 li {
    padding: 15px;
}

ul.flex.p20 li {
    padding: 20px;
}


/*---------------------------*/


/*定義リスト*/

dl.newinfo {
    margin: 0 15px;
    overflow: hidden;
}

dl.newinfo+dl.newinfo {
    margin-top: 5px;
    padding-top: 15px;
    border-top: 1px dotted #cccccc;
}

dl.newinfo dt,
dl.newinfo dd {
    margin: 0 0 5px;
    font-size: 14px;
    line-height: 1.3;
    text-align: justify;
    text-justify: inter-ideograph;
}

dl.newinfo .img.leftimg {
    margin: 0 10px 10px 0;
    float: left;
}

dl.newinfo .img.conR {
    margin: 0 0 10px 10px;
    float: right;
}

dl.newinfo .img.leftimg+dt~dd {
    margin-left: 40px;
}

dl.newinfo .img.conR+dt~dd {
    margin-right: 110px;
}

dl.newinfo .img img {
    width: 80px;
}

dl.newinfo dt {
    font-weight: bold;
    font-size: 16px;
    letter-spacing: 0.1em;
}


/*dl.newinfo .day{ font-size:14px; color:#999999; }*/


/*dl.newinfo .tag span{ margin: 0 5px 5px 0; padding: 3px 5px; font-size:10px; border:1px solid #cccccc; border-radius: 2px; display:inline-block; }*/

dl.colum {
    padding: 10px;
    overflow: hidden;
    border: 3px solid #eeeeee;
}

dl.colum dt,
dl.colum dd {
    margin: 0 0 5px;
    font-size: 12px;
    line-height: 1.3;
    text-align: justify;
    text-justify: inter-ideograph;
}

dl.colum dt {
    font-weight: bold;
    letter-spacing: 0.1em;
    text-align: center;
}


/*---------------------------*/


/*タブ切替*/

.tabs {
    margin: 0 15px;
    width: calc(100% - 30px);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    display: -webkit-flex;
    flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
}

.tabs .tab_item {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    height: 35px;
    border: 1px solid #eeeeee;
    border-bottom-color: #999999;
    background: #eeeeee;
    line-height: 35px;
    font-size: 13px;
    letter-spacing: 0.05em;
    color: #666666;
    display: block;
    text-align: center;
    font-weight: bold;
    -webkit-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all 0.2s ease;
}

.tabs input {
    display: none;
}

.tab_content {
    display: none;
    padding: 15px 0 0;
    width: 100%;
    overflow: hidden;
    -webkit-box-ordinal-group: 7;
    -ms-flex-order: 6;
    order: 6;
}

.tabs input:checked+.tab_item {
    background-color: #ffffff;
    border-color: #999999;
    border-bottom-color: #ffffff;
}

.tabs input:checked+.tab_item+.tab_content {
    display: block;
}

@media screen and (max-width:320px) {
    .tabs .tab_item {
        font-size: 10px;
    }
}


/*---------------------------*/


/*コンテンツ別*/

.catchbn img {
    text-align: center;
}

.event_sl-bnr {
    margin: 0 15px;
    overflow: hidden;
}

.event_sl-bnr ul {
    overflow-x: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
    font-size: 0;
}

.event_sl-bnr ul li {
    margin: 0 5px 0 0;
    width: 35%;
    display: inline-block;
}

.event_sl-bnr ul li:last-of-type {
    margin: 0;
}

.cpbox table{
	width: 95% ;
	margin: 0 auto ;
}
.cpbox td{
	padding: 3px ;
}
.cpbox img{
	width: 100% ;
}


.event_sl-bnr ul li img {
    width: 100%;
}

.rankbox ul li {
    padding: 0;
    border: 1px solid #cccccc;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    position: relative;
    overflow: hidden;
}

.rankbox ul li span.text {
    margin: 5px 0 0;
}

.rankbox ul li:before,
.rankbox ul li:after {
    content: "";
    display: block;
    position: absolute;
    z-index: 2;
}

.rankbox ul li:before {
    width: 40px;
    height: 40px;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    background: #666666;
    top: -20px;
    left: -20px;
}

.rankbox ul li:nth-of-type(1):before {
    background: #bdae24;
}

.rankbox ul li:nth-of-type(2):before {
    background: #bccbd6;
}

.rankbox ul li:nth-of-type(3):before {
    background: #805624;
}

.rankbox ul li:after {
    font-size: 12px;
    font-weight: bold;
    color: #ffffff;
    top: 3px;
    left: 3px;
}

.rankbox ul li:nth-of-type(1):after {
    content: "1";
}

.rankbox ul li:nth-of-type(2):after {
    content: "2";
}

.rankbox ul li:nth-of-type(3):after {
    content: "3";
}

.rankbox ul li:nth-of-type(4):after {
    content: "4";
}

.rankbox ul li:nth-of-type(5):after {
    content: "5";
}

.rankbox ul li:nth-of-type(6):after {
    content: "6";
}


/*-------------------------------------------------------------------------------------*/


/*検索*/

div.searchform {
    margin: 15px;
    padding: 15px;
    background: #eeeeee;
}

div.searchform table,
div.searchform table td:first-child {
    width: 100%;
    padding-bottom: 10px;
}

div.searchform input[type="text"] {
    width: 100%;
    padding: 5px 10px;
    font-size: 16px;
    border: 1px solid #afafaf;
    color: #767676;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

div.searchform input[type="submit"] {
    -webkit-appearance: none;
    width: 60px;
    padding: 4px 10px;
    font-size: 16px;
    text-align: center;
    color: #ffffff;
    background: #afafaf;
    border: none;
}

div.searchform ul.btn {
    margin: 10px 0 0;
    height: 20px;
    overflow: hidden;
    border-left: 1px solid #bcbcbc;
}

div.searchform ul.btn li a {
    width: calc(50% - 1px);
    border-right: 1px solid #bcbcbc;
    text-align: center;
    float: left;
    display: block;
}

div.searchform ul.keyword {
    margin: 5px 0 -5px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    display: -webkit-flex;
    flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
}

div.searchform ul.keyword li {
    margin: 0 10px 10px 0;
}

div.searchform ul.keyword li a {
    padding: 6px;
    font-size: 14px;
    color: blue;
    background: #ffffff;
    display: block;
}

/*ご注意パーツ*/
.noticebox {
    display: block;
    width: 96%;
    margin: 0 auto;
    padding-top: 1em;
}
.noticebox dl {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    margin: 0 auto;
    align-items: center;
}
.noticebox dt {
    width: 22%;
    background-color: #f9d43e;
    padding-top: 0.5em;
    padding-bottom: 0.5em;
    text-align: center;
    margin-bottom: 0.4em;
    color: #000;
    border-radius: 4px;
}
.noticebox dt:nth-child(7) {
    background-color: red;
    color: #fff;
}
.noticebox dd {
    width: 76%;
    margin-inline-start: 0 !important;
    padding-top: 0.5em;
    padding-bottom: 0.5em;
    padding-left: 2%;
    margin-bottom: 0.4em;
	text-align: left ;
}
.noticebox dd a{
	color: #000 ;
}
