@charset "utf-8";
/*
Theme Name: おうちワーク子育てママの在宅チャレンジ
Description: original theme

/*===================================================================
Base Format
===================================================================*/

/* 要素reset */

/*IE用viewport*/

@-ms-viewport {
    width: auto;
    initial-scale: 1;
}

html,
body,
p,
h1,
h2,
h3,
h4,
h5,
h6,
table,
th,
td,
ul,
ol,
li,
dl,
dt,
dd,
img,
a {
    margin: 0;
    padding: 0;
}

html {
    background: #FFF;
}


body {
    font-family:"Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
    font-weight: 600;
    font-style: normal;
    color: #4e4e4e;
    background-color: #fff;
    font-size: 16px;
    letter-spacing: 0.1em;
    line-height: 30px;
}

@media screen and (max-width: 991px) {
    body {
        font-size: 0.8em;
    }
}
@media screen and (max-width: 680px) {
    body {
        font-size: 0.8em;
    }
}

/* 各要素reset */

*:foucs {
    outline: none;
}

table {
    border-collapse: collapse;
}

td,
th {
    line-height: 1.5;
    vertical-align: top;
    text-align: left;
}

strong {
    font-weight: bold;
}

img {
    border: none;
    vertical-align: bottom;
    max-width: 100%;
}

hr {
    display: none;
}

fieldset {
    border: none;
}

address {
    font-style: normal;
}

ul {
    list-style: none;
}


/* フォントサイズ調整 */

h1,
h2,
h3,
h4,
h5,
h6,
table,
th,
td,
input,
textarea {
    font-size: 100%;
    font-weight: normal;
}
form label{
	font-weight:600;
}
form input{
	width:90%;
	max-width:600px;
}

/* リンク */

a:link {
    text-decoration: none;
}

a:visited {
    text-decoration: none;
}

a:hover {
    opacity: 0.8;
    text-decoration: none;
}

a:active {
    opacity: 0.8;
    text-decoration: none;
}

/*===================================================================
	共通部分
===================================================================*/

#nav-drawer {
	display:none;
}
@media screen and (max-width: 991px) {
#nav-drawer {
	display:block;
	position: fixed;
    padding:10px;
    left: 85%;
    top: 15px;
	z-index:9999;
	background:#fff;
}
}
#nav-drawer i{
	float:right;
}
/*チェックボックス等は非表示に*/
.nav-unshown {
  display:none;
}

/*アイコンのスペース*/
#nav-open {
  display: inline-block;
  width: 28px;
  height: 22px;
  vertical-align: middle;
}

/*ハンバーガーアイコンをCSSだけで表現*/
#nav-open span, #nav-open span:before, #nav-open span:after {
  position: absolute;
  height: 3px;/*線の太さ*/
  width: 25px;/*長さ*/
  border-radius: 3px;
    background: #dd528c;
  display: block;
  content: '';
  cursor: pointer;
}
#nav-open span:before {
  bottom: -8px;
}
#nav-open span:after {
  bottom: -16px;
}

/*閉じる用の薄黒カバー*/
#nav-close {
  display: none;/*はじめは隠しておく*/
  position: fixed;
  z-index: 99;
  top: 0;/*全体に広がるように*/
  left: 0;
  width: 100%;
  height: 100%;
  background: black;
  opacity: 0;
  transition: .3s ease-in-out;
}

/*中身*/
#nav-content {
  overflow: auto;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;/*最前面に*/
  width: 70%;/*右側に隙間を作る（閉じるカバーを表示）*/
  max-width: 330px;/*最大幅（調整してください）*/
  height: 100%;
  background: #fff;/*背景色*/
  transition: .3s ease-in-out;/*滑らかに表示*/
  -webkit-transform: translateX(-105%);
  transform: translateX(-105%);/*左に隠しておく*/
}
#nav-content nav.sp{
	margin-top:70px;
}
#nav-content nav.sp ul li{
	margin:30px;
    display: block;
}
#nav-content nav.sp a{
    color:#dd528c;
    font-size:1.3em;
    display: block;
	font-weight:600;
}

/*チェックが入ったらもろもろ表示*/
#nav-input:checked ~ #nav-close {
  display: block;/*カバーを表示*/
  opacity: .5;
}

#nav-input:checked ~ #nav-content {
  -webkit-transform: translateX(0%);
  transform: translateX(0%);/*中身を表示（右へスライド）*/
  box-shadow: 6px 0 25px rgba(0,0,0,.15);
}

input[type="submit"] {
  -webkit-appearance: none;
 	background: none;
    border: orange 3px solid;
    border-radius: 20px;
    padding: 10px 80px;
    color: orange;
    font-weight: 600;
}
input[type="submit"]:hover{
  -webkit-appearance: none;
 	background: orange;
    border: orange 3px solid;
    border-radius: 20px;
    padding: 10px 80px;
    color: #fff;
    font-weight: 600;
	cursor:pointer;
}
.swiper-container-horizontal>.swiper-pagination-bullets, .swiper-pagination-custom, .swiper-pagination-fraction {
    bottom: 0!important; 
    position: relative;
}
.sp{
    display: none;
}
/*===================================================================
	header
===================================================================*/
header {
    display: flex;
    width: 95%;
    margin: 10px auto;
    justify-content: space-between;
}
header h1{
    margin-top: 10px;
}
header nav.pc{
    display: flex;
    justify-content: space-between;
	margin-top:50px;
}

header nav.pc ul{
	margin-right:10px;
}
header li {
    display: inline-block;
    margin: 30px 10px;
	font-size:1.2em;
}
header a {
    color: #333333;
}
header .houshuu {
    border-radius: 10px;
    background: #ff98ac;
    padding: 15px 20px;
    font-size: 1.5em;
    color: #fff;
    vertical-align: middle;
    height: 60px;
}
header .houshuu span {
    border-radius: 10px;
    background: #fff;
    color: #ff98ac;
    margin-left: 10px;
    padding: 20px;
    position: relative;
    bottom:15px;
}
header .form {
    margin-left: 10px;
    margin-top: 25px;
}

header .form i{
    margin: 0 10px;
}
header .form a {
    padding: 30px 10px;
    box-shadow: 0 10px 0 #f15a24;
    color: #fff;
    background: #f7931e;
}
.btn01 {
    margin-top: 10px;
}
.btn01 .fa{
    color: #fff!important;
    margin-left: 10px!important;
    font-size: 1em!important;
}
.btn01 a {
    padding: 10px 20px;
    box-shadow: 0 5px 0 #f15a24;
    color: #fff;
    background: #f7931e;
}
/*===================================================================
	mainvisual
===================================================================*/
main{
	font-size:1.2em;
	color:#333333;
}

/**
 * swiper.js
 */
.swiper-container {
  width: 100%;
  height: 100%;
  overflow: visible;
  z-index: 1;
}

.swiper-button-prev,
.swiper-button-next {
  fill: #fff;
  stroke: none;
  stroke-width: 0;
  z-index: 10000;
  width: 20px;
  margin-top: -18px;
  background-image: none;
}

.swiper-pagination-bullet-active {
  background: #fff;
}



/**
 * mainvisual
 */
#mainvisual {
    border-top: 1px solid #fff1f1;
    position: relative;
    margin-left: auto;
    margin-right: auto;
    max-width: 1400px;
    overflow-x: hidden;
    width: 100%;
    height: auto;
}

#mainvisual ul {
    height: 100%;
	width:100%;
}

#mainvisual li {
    height: 100%;
}

#mainvisual img{
    width: 100%;
}
/*===================================================================
catch
===================================================================*/
#catch {
	width:96%;
	max-width:1200px;
	margin:50px auto;
}

#catch div.flexbox{
	display:flex;
	margin-top:30px;
}
#catch div img{
	width:10%;
	height:100%;
	margin-top:30px;
	margin-right:10%;
}
#catch .flexbox div p{
	margin:10px 0;
}
#catch div p em{
	font-size:1.2em;
	background:yellow;
	font-style:inherit;
}
#catch h2 {
	text-align:center;
	position: relative;
	font-size:2em;
	font-weight:600;
	margin-bottom:30px;
}

#catch h2:after {
content: "";
position: absolute;
left: 0;
    bottom: -20px;
width: 100%;
height: 7px;
background: -webkit-repeating-linear-gradient(-45deg, #6ad1c8, #6ad1c8 2px, #fff 2px, #fff 4px);
background: repeating-linear-gradient(-45deg, #6ad1c8, #6ad1c8 2px, #fff 2px, #fff 4px);
}
/*===================================================================
recruit
===================================================================*/
#recruit {
    background: #fff1f1;
}
#recruit .inner {
    display: flex;
    margin: 0 auto;
    width: 90%;
    max-width:1200px;
    padding: 20px 0;
}
#recruit .inner div {
    width: 24%;
    text-align: center;
    margin-top: 5%;
}
#recruit .inner .fa {
    color: #ff98ac;
    font-size: 2em;
}
#recruit article {
	height:100%;
    background: #fff;
    width: 24%;
    margin: 10px;
    border: 1px solid #ff98ac;
}
#recruit article:last-child{
	display:none;
}
#recruit article img{
	height:100%;
}
#recruit article h3 {
    padding: 10px;
    font-weight: 600;
    color: #333;
}
#recruit article ul {
    padding: 10px;
    display: flex;
    font-size: 0.7em;
    color: #fff;
    line-height: 1em;
}
#recruit article .shosinsha {
    background: #8cc63f;
    border-radius: 5px;
    padding: 10px;
    margin-right: 10px;
}
#recruit article .zaitaku {
    padding: 10px;
    background: #ff98ac;
    border-radius: 5px;
    margin-right: 10px;
}

/*===================================================================
count
===================================================================*/
#count{
	width:96%;
	max-width:1200px;
	margin:20px auto 0;
	display:flex;
	justify-content:space-between;
}
#count dl.jisseki{
	width:49%;
	text-align:center;
	background:#EFFBFB;
	padding:20px;
}
#count dl.jisseki i{
	color:#58D3F7;
	margin-right:10px;
}
#count dl.jisseki dt{
	font-size:1.2em;
	color:#fff;
	display:block;
	margin:10px 0;
	padding:10px;
	background:#045FB4;
}

#count dl.jisseki dd {
	display:block;
	margin-bottom:20px;
	font-weight:500;
}

#count dl.jisseki dd em{
	border-bottom:1px solid #333;
	font-size:1.2em;
	margin-left:10px;
	font-weight:600;
}

#count .rank{
	width:49%;
	background:#f7f7f7;
	text-align:center;
	padding:20px;
}
#count .rank i{
	color:#F3F781;
	margin-right:10px;
}

#count .rank h4{
	margin:10px 0;
	font-weight:600;
	padding:10px;
	background:#FE9A2E;
	color:#fff;
	font-size:1.2em;
}
#count .rank li{
	line-height:2em;
	font-size:1.2em;
}

#count .rank li span{
	color:#FE9A2E;
	margin-right:10px;
}
/*===================================================================
about contents
===================================================================*/
.contents {
    margin: 50px auto;
    width: 90%;
    max-width:1080px;
     border-top: 3px dotted #333;
	padding-top:30px;
}
.contents h2 {
    text-align: center;
}
.contents h2 img{
	width:50%;
	min-width:300px;
}
.contents .flexbox {
    display: flex;
    justify-content: space-between;
    padding: 50px 0;
}
.contents img{
    width: 20%;
    height: 100%;
}
.contents ul{
    width: 60%;
}
.contents p{
    width: 100%;
}
#about .btn01 {
    text-align: right;
}
/*===================================================================
flow
===================================================================*/

#flow div {
    flex-flow: row-reverse nowrap; 
}

/*===================================================================
support
===================================================================*/

#support .btn01 {
    text-align: right;
}

/*===================================================================
voice
===================================================================*/
#voice {
    background: url("images/voice_bg.png")no-repeat center center;
    background-size:cover;
    padding-bottom: 80px;
    margin-top: 100px;
}
#voice .inner {
    margin: 0 auto;
    width: 90%;
    max-width:1080px;
}
#voice h2 {
    background: url("images/title_voice_bg.png") no-repeat center center;
    width: 350px;
    height:100%;
    color: #fff;
    position: relative;
    bottom:30px;
    padding: 20px 0;
    text-indent: 20px;
    font-size:1.5em;
	font-weight:600;
}
#voice h2 i{
    margin-right: 10px;
    font-size:1.5em;
}
#voice .article {
    margin-top: 50px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
#voice article {
    display: flex;
    justify-content: space-between;
    width: 50%;
}
#voice article img{
    height: auto;
    width: 100%;
}
#voice article h3 {
    color:#dd528c;
    font-weight: 600;
}
#voice article ul {
    background: #dd528c;
    color: #fff;
    font-size: 0.8em;
    display: inline-block;
}
#voice article li {
    display: inline-block;
    border-right: 1px solid #fff;
    padding: 0 10px;
    line-height: 1.3em;
}

#voice article li:last-child {
    border-right: none;
}
#voice article p {
    font-size: 0.8em;
    font-weight: 600;
	margin:10px;
}
#voice .btn02 {
    margin-top: 50px;
    text-align: center;
}
#voice .btn02 .fa{
    color: #fff!important;
    margin-left: 10px!important;
    font-size: 1em!important;
}
#voice .btn02 a {
    padding: 20px 30px;
    box-shadow: 0 5px 0 #006837;
    color: #fff;
    background: #00a99d;
}
/*===================================================================
footer
===================================================================*/
footer {
    background: #dd528c;
    color:#fff;
    padding: 30px 0 0;
    font-size: 0.8em;
}
footer .inner {
    display: flex;
    margin: 0 auto;
    width: 90%;
    max-width: 980px;
    justify-content: space-between;
}
footer h2 {
    text-align: left;
    font-weight: 600;
    font-size: 1.3em;
    text-indent: 10px;
}
footer li i{
    color: #9b2854;
    text-align: center;
    font-size:1.2em!important;
    width: 40px;
}
footer li{
    font-weight: 300;
}
footer a {
    color: #fff;
}
footer img{
    height: auto;
}
footer .copyright {
    background: #9b2854;
    text-align: center;
    color: #ff98ac;
    font-size: 0.8em;
    margin-top: 20px;
}

/*===================================================================
レスポンシブ
===================================================================*/

@media screen and (max-width: 991px) {
    header .fix{
        z-index: 999;
        position: fixed;
        bottom: 0;
        left: 0;
        padding: 10px;
        width: 100%;
        background: #fff;
        display: flex;
    }
    header .fix p{
        width: 50%;
    }
    header .form{
        margin-top: 0;
    }
    header .fix p a{
        margin-top: 0;
        width: 90%;
        display: inline-block;
        padding: 25px 10px;
        text-align: center;
    }
    header nav.pc {
        display: none;
    }
    #recruit .inner div {
        width: 20%;
        text-align: center;
        margin-top: 10%;
    }
    #recruit .inner {
        width: 96%;
    }
    .btn01 a {
        padding: 10px 10px;
    }
    .pc{
        display: none;
    }
    .sp{
        display: block;
    }
    footer{
        padding-bottom: 110px;
    }
}

@media screen and (max-width: 680px) {
	
	header h1 img{
		width:30%;
	}
    header .fix p {
        width: 45%;
    }
    header .houshuu {
        font-size: 1.1em;
        padding: 15px 0px 15px 10px;
    }
	#count{
	display:block;
}
	#count dl.jisseki, #count .rank{
	width:85%;
		margin:10px auto;
}
	#catch h2 {
    font-size: 1.3em;
}
	#catch div img {
    width: 20%;
		max-width:120px;
}
	#catch div.flexbox {
    text-align: center;
    display: block;
}
	#catch div.flexbox  div{
		text-align:left;
	}
    #recruit .inner {
        width: 96%;
        flex-wrap: wrap;
    }
    #recruit .inner div {
        width: 100%;
        margin-bottom: 30px;
    }
    #recruit article {
        width: 47%;
        margin: 10px auto;
    }
	#recruit article:last-child{
	display:block;
}
    .contents .flexbox {
        display: block;
		text-align:center;
    }
	.contents .flexbox img{
		margin-bottom:20px;
		width:50%;
		max-width:120px;
	}
    .contents  img {
        width: 100%;
    }
	.contents ul {
    text-align: left;
    width: 100%;
	}
	.contents p {
    text-align: left;
    width: 100%;
}
    #about .btn01,#flow .btn01,#support .btn01 {
        text-align: center;
    }
    #voice .article {
        display: block;
    }
    #voice article {
        width: 100%;
        margin-top: 50px;
    /*flex-wrap: wrap;*/
    }
    footer {
        font-size: 0.8em;
    }
    footer .inner {
        display: block;
    }
    footer .inner {
        text-align: center;
    }
    footer .inner div{
        text-align: left;
    }
    footer .inner img{
        margin-top: 30px;
    }
	.btn01 .fa{
		margin-left: 5px!important;
	}
	header .form i {
     margin: 0 5px;
}
	#voice h2 {
    font-size: 1.2em;
}
	.archive-voice{
		display:block;
	}

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

}


.effect .anime01 {
    transition: .8s;
}

.effect .anime02 {
    transition: .8s;
}
.effect .anime03 {
    transition: .8s;
}



fadeIn01 {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@-webkit-keyframes fadeIn01 {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes fadeIn02 {
    0% {
        opacity: 0;
        margin-bottom: 30px;
    }
    100% {
        opacity: 1;
        margin-bottom: 0;
    }
}

@-webkit-keyframes fadeIn02 {
    0% {
        opacity: 0;
        margin-bottom: 30px;
    }
    100% {
        opacity: 1;
        margin-bottom: 0;
    }
}

fadeIn03 {
    0% {
        opacity: 1;
    }
    1% {
        background-size: 100%;
    }
    100% {
        opacity: 0;
        background-size: 120%;
    }
}

@-webkit-keyframes fadeIn03 {
    0% {
        opacity: 1;
    }
    1% {
        background-size: 100%;
    }
    100% {
        opacity: 0;
        background-size: 120%;
    }
}


/*===================================================================
#sub
===================================================================*/


#sub .container ul.breadcrumb{
    text-align:left;
    font-size:0.7em;
    width: 90%;
    margin: 20px auto 0;
}
#sub .container ul.breadcrumb  li{
    display:inline-block;
}
#sub .container ul.breadcrumb  li::after{
    content:">";
}
#sub .container ul.breadcrumb  li:last-child::after{
    content:"";
}
#sub .container .h2bg{
    background: #fff;
    height: 300px;
    margin: 0 auto 80px;
}
#sub .container h2{
    letter-spacing: 0.3em;
    font-weight: 600;
    font-size: 2em;
    color: #000;
	text-align:center;
    margin: 50px 0; 
}
#sub p.content{
    width:90%;
    max-width:980px;
    margin:0 auto;
}
#sub p.content img{
    width:100%;
    height:auto;
}
#sub p.blog-sumbnail img{
    width:100%;
    height:auto;
    text-align:center;
    max-width:600px;
    margin-bottom:50px;
}
.pageLink {
    overflow: hidden;
    width: 90%;
    margin: 20px auto;
    font-size: 0;
    text-align: center;
}

.pageLink li {
    height: 53px;
    width: 50%;
    display: inline-block;
    text-align: left;
    border-top: 1px solid #cccccc;
    border-bottom: 1px solid #cccccc;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    -o-box-sizing: border-box;
}

.pageLink li.nextPage {
    float: right;
    text-align: right;
    padding-right:5%;
}

.pageLink li.prevPage {
    float: left;
    padding-left:5%;
}

.pageLink li a {
    width: 100%;
    font-size: 14px;
    display: block;
    padding: 14px 0;
    text-decoration: none;
}
#category a {
    display:block;
    text-decoration:none;
    color:#000;
    background-color:#fff;
    margin:0 auto 20px;
    width:80%;
}
#category a:hover{
    text-decoration:none;
    color:#fff;
}
#category article{
    padding:10px;
    border:1px solid #ccc;
    overflow:hidden;
}
#category article p.thumbnail{
    height:100%;
}
#category article img{
    width:30%;
    height:auto;
    float:left;
    margin-right:10px;

}
#category a:hover article{
    background-color:#ccc;
}
#category article h3{
    text-align:left;
    font-weight:600;
    font-size:1.5em;
    font-family: "游ゴシック体", "Yu Gothic", YuGothic,"メイリオ", "Meiryo", sans-serif;

}
#category article time{
    font-size:0.8em;
    display:block;
    text-align:left;
}
#category article p.content{
    text-align:left;
    display:block;
    font-size:0.8em;
}
#sub .pagecontent{
    width:90%;
    text-align:left;
    max-width:980px;
    margin:50px auto;
}
#sub .pagecontent h3{
    font-weight:600;
    font-size: 1.1em;
    position: relative;
}
/*#sub .pagecontent h3::before{
    position: absolute;
    font-family: FontAwesome;
    content: "\f0eb";
    background: #ffca2c;
    color: white;
    font-weight: normal;
    font-size: 15px;
    border-radius: 50%;
    left: 0;
    width: 25px;
    height: 25px;
    line-height: 25px;
    text-align: center;
    top: 50%;
    -moz-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}*/
/*#sub .pagecontent h3::after {/*吹き出しのちょこんと出た部分*//*
    content: '';
    display: block;
    position: absolute;
    left: 20px;
    height: 0;
    width: 0;
    border-top: 7px solid transparent;
    border-bottom: 7px solid transparent;
    border-left: 12px solid #ffca2c;
    top: 50%;
    -moz-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}*/
#sub .pagecontent p{
	font-weight:300;
    margin:20px auto;
}
#sub .pagecontent img{
    margin:30px auto;
}
#sub .pagecontent h4{
    font-weight:600;
    color: #000;
    margin:10px 0;
}
#sub .pagecontent h4{
    position: relative;
    padding: 0.25em 0;
}
#sub .pagecontent h4::after{
    content: "";
    display: block;
    height: 4px;
    background: -moz-linear-gradient(to right, rgb(255, 186, 115), #ffb2b2);
    background: -webkit-linear-gradient(to right, rgb(255, 186, 115), #ffb2b2);
    background: linear-gradient(to right, rgb(255, 186, 115), #ffb2b2);
}
#sub .pagecontent dl {
    width:50%;
    display:block;
    clear:both;
}
#sub .pagecontent dl dt{
    font-weight:600;
    float:left;
    height:auto;
    margin-right:20px;
    margin-bottom:31px;
}
#sub .pagecontent dl dd{
}
#sub .pagecontent .flexbox{
    display:flex;
}
#sub .single-work,#sub .single-voice{
	width:90%;
	max-width:1200px;
	margin:50px auto;
}
#sub .single-work dl dt,#sub .single-work dd{
	display:inline-block;
	padding:10px 20px;
	vertical-align:top;
}
#sub .single-work dl {
	margin:10px;
}
#sub .single-work dl dt{
	background:#f7f7f7;
}
#sub .single-voice ul {
    background: #dd528c;
    color: #fff;
    font-size: 0.8em;
    display: table-cell;
}
#sub .single-voice ul li{
    display: inline-block;
    border-right: 1px solid #fff;
    padding: 0 10px;
    line-height: 1.3em;
}
#sub .single-voice ul li:last-child {
    border-right: none;
}
#sub .single-voice p{
	margin-top:20px;
}
#sub  .archive-voice .article {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
	width:96%;
	max-width:1200px;
	margin:50px auto;
}
#sub  .archive-voice article {
	flex-wrap: wrap;
    display: flex;
    justify-content: space-between;
    width: 50%;
}
#sub  .archive-voice  article p img{
	width:100%;
	height:auto;
	margin:10px;
}
#sub  .archive-voice  article h3 {
    color:#dd528c;
    font-weight: 600;
}
#sub  .archive-voice  article ul {
    background: #dd528c;
    color: #fff;
    font-size: 0.8em;
    display: inline-block;
}
#sub  .archive-voice  article li {
    display: inline-block;
    border-right: 1px solid #fff;
    padding: 0 10px;
    line-height: 1.3em;
}

#sub  .archive-voice  article li:last-child {
    border-right: none;
}

#sub  .archive-voice  article p {
    font-size: 0.8em;
    font-weight: 600;
    margin-top: 10px;
	height:auto;
	width:47%;
}
#sub  .archive-voice  article  div p {
	width:100%;
}
#sub  .archive-voice  article div {
	width:47%;
}
@media screen and (max-width:680px) {
    #sub .pagecontent dl {
        width:100%;
    }
    #sub .pagecontent .flexbox{
        display:block;
    }
		#sub .single-work img,	#sub .single-voice img{
		width:90%;
		height:100%;
	}
	#sub .container h2 {
    font-size: 1.3em;
}
	#sub .archive-voice article{
		width:96%;
		height:100%;
		margin-bottom:20px;
	}

}
/**************************
**************************/

.bgCrossFade {
    position: relative;
}
.bgCrossFade .slides {
    background-size:cover;
    position: absolute;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: center;  
}
.bgCrossFade .slides:not(:first-child) {
    display: none;
}
.bgCrossFade .top-header-main-text p {
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
}

/*===================================================================
#--
===================================================================*/

#-- {}


/*-------------------------------------------------------------------
#--_--
-------------------------------------------------------------------*/


/*-------------------------------------------------------------------
#error
-------------------------------------------------------------------*/

#error {
    margin-bottom: 15px;
    padding: 15px;
    background: #F8EAE8;
    border: 2px solid #BC2F1C;
    color: #BC2F1C;
    text-shadow: 0 1px 0 #FFF;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    border-radius: 4px;
}
