html, body{
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.article_date{
    text-align: end;
    margin-right: 0.5rem;
}

.wrapper {
    flex: 1;
}

.service_logo p{
    font-size: 3rem;
    color: #438954;
    font-weight: bold;
    text-align: center;
}

.service_logo span{
    display: block;
    font-size: 1rem;
    line-height: 0.5em;
}

.title_line{
    margin: 0 10px 10px 10px;
}

.title_line h1{
    font-size: 1.2rem;
    margin: 10px 0 10px 0;
    position: relative;
    padding: .25em 0 .5em .75em;
    border-left: 6px solid #438954;
    color: #2B5736;
}

.title_line h1::after{
  position: absolute;
  left: 0;
  bottom: 0;
  content: '';
  width: 100%;
  height: 0;
  border-bottom: 1px solid #ccc;  
}

.title_line p{
    text-indent: 1rem;
    text-align: justify;
    font-feature-settings : "pkna";
    line-height: 1.5rem;
    font-size: 0.9rem;
    margin: 0 0.5em 0.5rem 0.5em;
}

.title_line a{
    color: #002EE6;
}

.title_line a:hover{
    color: #26ccff;
}

/*
.submit{
    margin: 2rem;
    padding: 1em;
    border: 2px solid green;
    border-radius: 10px 10px 10px 10px;
}
*/

.submit{
    margin: 1rem;
    position: relative;
    background: #fff0cd;
    box-shadow: 0px 0px 0px 5px #fff0cd;
    border: dashed 2px white;
    padding: 0.2em 0.5em;
    color: #454545;
}
.submit:after{
    position: absolute;
    content: '';
    right: -7px;
    top: -7px;
    border-width: 0 15px 15px 0;
    border-style: solid;
    border-color: #ffdb88 #fff #ffdb88;
    box-shadow: -1px 1px 1px rgba(0, 0, 0, 0.15);
}

.submit p{
    padding: 0.3em;
    text-indent: 0.5rem;
    text-align: justify;
    font-feature-settings : "pkna";
}

.submit a, .shop_info a{
    color: #002EE6;
}

.submit a:hover, .shop_info a:hover{
    color: #26ccff;
}

.category h2{
    color: #2B5736;
    padding: 0.25em;
    border-top: solid 2px #6EDF88;
    border-bottom: solid 2px #6EDF88;
    background: -webkit-repeating-linear-gradient(-45deg, #fafffb, #fafffb 3px,#e6ffeb 3px, #e6ffeb 7px);
    background: repeating-linear-gradient(-45deg, #fafffb, #fafffb 3px,#e6ffeb 3px, #e6ffeb 7px);
    margin: 1rem 10px 0.5rem 10px;
    font-size: 1.2rem;
}

.sell_text{
    margin: 0.5em 1.5em 1rem 1.5em;
}

.sell_text p{
    text-indent: 0.5rem;
    text-align: justify;
    font-feature-settings : "pkna";
    line-height: 1.4rem;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.sell-contents {
    display: flex;
    flex-wrap: wrap;
    margin: 0 1em;
}

.sell-item {
    width: calc(100%/3 - 10px);
    max-width: calc(100%/3 - 10px); /* IE11バグ対応 */
    box-shadow: 0 0 3px #aaa;
    margin: 5px;
}

.sell-item h3 {
  font-weight: bold;
  text-align: center;
  font-size: 1.1rem;
  padding: 5px;
}

.sell-item h3 a{
    display: inline-block;
	transition: .3s;
    color: #00aced;
}

.sell-item h3 a:hover {
    transform: rotate(-5deg);
    color: #7fffd4;
}

.sell-item h3 span{
    display: block;
    font-size: 0.9rem;
}
    
.sell-item p {
    text-indent: 0.5rem;
    font-size: 0.9rem;
    padding: 10px;
    text-align: justify;
    font-feature-settings : "pkna";
    line-height: 1.2rem;
}

.single{
/*
    display: flex;
    align-items: center;
    justify-content: center;
*/
/*    width: 45%;*/
    margin: 0px 0px 15px 0px;
}

.slide_item img, .simg{
    width: 100%;
    vertical-align: bottom;
    position: relative;
}

.sld_caption, .simg_caption{
    position: absolute;
    bottom: 0;
    right:0;
    background-color: rgba(0, 0, 0, 0.4);
    color: #fff;
    font-size: 0.8em;
    font-weight: 300;
    padding: 0px 5px 0 5px;
}

.sld_caption span, .simg_caption span{
    font-size: 0.7em;
}

.sld_caption a, .simg_caption a{
    color: #fff;
}

.sld_caption a:hover, .simg_caption a:hover{
    color: #26ccff;
}

figure {
    width:100%;
    max-width: 100%;
	margin: 0;
	padding: 0;
	background: #fff;
	overflow: hidden;
    height: auto;
}

figure:hover+span {
	bottom: -36px;
	opacity: 1;
}

/* Shine */
figure {
	position: relative;
}
figure::before {
	position: absolute;
	top: 0;
	left: -75%;
	z-index: 2;
	display: block;
	content: '';
	width: 50%;
	height: 100%;
	background: -webkit-linear-gradient(left, rgba(255,255,255,0) 0%, rgba(255,255,255,.3) 100%);
	background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,.3) 100%);
	-webkit-transform: skewX(-25deg);
	transform: skewX(-25deg);
}
figure:hover::before {
	-webkit-animation: shine .75s;
	animation: shine .75s;
}

@-webkit-keyframes shine {
	100% {
		left: 125%;
	}
}
@keyframes shine {
	100% {
		left: 125%;
	}
}

.shop_info{
    flex:1;
    font-size: 0.9em;
/*    border-bottom: 1px solid navy;*/
    border: 1px solid #00b85f;
    
}

.shop_info p{
    padding: 5px;
    text-align: justify;
    font-feature-settings: "pkna";
/*    font-feature-settings: "palt";*/
/*
    overflow: hidden;
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
*/
/*    height: 12rem;*/
}

.shop_info li{
    margin: 0;
    list-style: none;
    font-size: 0.9em;
    color: #fff;
    background: #00b85f;
    text-indent: 0.5em;
}

.shop_info span{
    display: block;
    color: #000;
    background: white;
    font-size: 1.1em;
    padding: 0.2em 0;
}

.disclaimer{
    margin: 1em 1.5em 0 1.5em;
    font-size: 0.8rem;
}

.disclaimer p{
    text-indent: 0.5rem;
    text-align: justify;
    font-feature-settings : "pkna";
    margin-bottom: 0.5rem;
}

.disclaimer p:last-child{
    margin-bottom: 0;
}

.ads_multi{
    text-align: center;
}

.sq_display{
	margin: 2em 0 0.5em 0;
    text-align: center;
}

@media screen and (max-width: 667px) {
    
.wrapper{
    max-width: 100vw;
}  
    
.service_logo p{
    font-size: 2rem;
}    
    
.sell-contents {
    margin: 0 0.5em;
}

.sell-item {
    width: calc(100%/1 - 10px);
    max-width: calc(100%/1 - 10px); /* IE11バグ対応 */
    box-shadow: 0 0 3px #aaa;
    margin: 5px;
}
    
.disclaimer p:last-child{
    margin-bottom: 1rem;
}
    
}