@charset "UTF-8";
/*
Creation Date:	2020.05.18
Last Updated:	2020.10.08
*/


/* import
------------------------------------------------------------ */
/*@import url(sidr.light.min.css) screen and (max-width: 1024px) and (orientation:portrait);*/
@import url(sidr.light.min.css) screen and (max-width: 1023px);
@import "https://fonts.googleapis.com/css2?family=Lato:wght@300;400;700;900&display=swap";
@import "swiper.min.css";


/* set
------------------------------------------------------------ */
* {
	margin: 0;
	padding: 0;
	font-style: normal;
	box-sizing: border-box;
}
html {
	overflow-y: scroll;
}
body {
	-webkit-text-size-adjust: 100%;
	font-family: '游ゴシック', '游ゴシック体', 'Yu Gothic', YuGothic, 'ヒラギノ角ゴ Pro', 'Hiragino Kaku Gothic Pro', 'メイリオ', Meiryo, sans-serif;
	color: #333;
	font-size: 16px;
	line-height: 1;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}
_:-ms-input-placeholder, :root {
	font-family: 'ヒラギノ角ゴ Pro', 'Hiragino Kaku Gothic Pro', 'メイリオ', Meiryo, sans-serif;
}
ul,ol {
	list-style: none;
}
img {
	vertical-align: middle;
	max-width: 100%;
	height: auto;
	border: 0;
}
a {
	color: inherit;
	text-decoration: none;
}
a:hover img {
	opacity: .8;
}
:hover {
	transition: .3s;
}
.call {
	pointer-events: none;
}
.smp {
	display: none;
}
.pc {
	display: block;
}


/* common
------------------------------------------------------------ */
/* layout */
article {
	background: #F8F8F8;
	width: 100%;
	display: block;
}
section,
main,
nav ul {
	width: 1120px;
	max-width: 94%;
	margin: 0 auto;
}
#breadcrumb {
	margin-top: 80px;
}
main {
	margin-bottom: 60px;
	display: flex;
	justify-content: space-between;
	position: relative;
}
main #main {
	width: 65%;
}
main #side {
	width: 30%;
	max-width: 320px;
}

/* cat */
.tag_01 a { color: #6A397D; border: solid 1px #6A397D; }
.tag_02 a { color: #E3A44E; border: solid 1px #E3A44E; }
.tag_03 a { color: #5FA05E; border: solid 1px #5FA05E; }
.tag_04 a { color: #C83E36; border: solid 1px #C83E36; }
.tag_05 a { color: #518C84; border: solid 1px #518C84; }
.tag_06 a { color: #305089; border: solid 1px #305089; }
.tag_07 a { color: #CC0066; border: solid 1px #CC0066; }
.tag_08 a { color: #888888; border: solid 1px #888888; }
.tag_01 a:hover { background: #6A397D; }
.tag_02 a:hover { background: #E3A44E; }
.tag_03 a:hover { background: #5FA05E; }
.tag_04 a:hover { background: #C83E36; }
.tag_05 a:hover { background: #518C84; }
.tag_06 a:hover { background: #305089; }
.tag_07 a:hover { background: #CC0066; }
.tag_08 a:hover { background: #888888; }

.pickup {
	background: #B55485;
	font-family: 'Lato', sans-serif;
	color: #FFF;
	font-weight: 900;
	text-align: center;
	width: 50px;
	height: 50px;
	padding-top: 5px;
	border: solid 2px #FFF;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 50%;
	position: absolute;
	top: -10px;
	left: -10px;
	z-index: 2;
}

.more {
	display: flex;
	justify-content: center;
}
.more a {
	background: #FFF url(../img/arw_gry.png) no-repeat right 20px center;
	background-size: 16px !important;
	font-weight: bold;
	line-height: 45px;
	text-align: center;
	width: 300px;
	max-width: 70%;
	display: block;
	border: solid 1px #888;
	border-radius: 6px;
}
.more a:hover {
	background: #888 url(../img/arw_wht.png) no-repeat right 20px center;
	color: #FFF;
}
.pho {
	overflow: hidden;
	position: relative;
	z-index: 1;
	-webkit-mask-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAIAAACQd1PeAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAA5JREFUeNpiYGBgAAgwAAAEAAGbA+oJAAAAAElFTkSuQmCC);
}
.pho img {
	transition: .5s;
}
.pho img:hover {
	transform: scale(1.2);
	transition: .5s;
}

.jp {
	font-family: '游ゴシック', '游ゴシック体', 'Yu Gothic', YuGothic, 'ヒラギノ角ゴ Pro', 'Hiragino Kaku Gothic Pro', 'メイリオ', Meiryo, sans-serif !important;
}


/* header
------------------------------------------------------------ */
header {
	background: #FFF;
	width: 100%;
	box-shadow: 3px 3px 6px 0 rgba(0,0,0,.2);
	position: fixed;
	top: 0;
	z-index: 200;
}
header section,
.slide-menu {
	display: none;
}

nav ul {
	padding: 15px 0;
	display: flex;
	justify-content: space-between;
}
nav ul li {
	display: flex;
	align-items: center;
	position: relative;
}
nav ul li:after {
	content: "";
	background: #B55485;
	width: 100%;
	height: 4px;
	display: block;
	position: absolute;
	left: 0;
	bottom: -15px;
	transform: scale(0,1);
	transform-origin: center top;
	transition: transform .3s;
}
nav ul li:hover:after {
	transform: scale(1,1);
}
nav ul li.active:after {
	content: "";
	background: #B55485;
	width: 100%;
	height: 4px;
	display: block;
	position: absolute;
	bottom: -15px;
}
nav ul li.active:after {
	transform: scale(1,1);
}
nav ul li a {
	font-size: 14px;
	display: block;
}
nav ul li a span {
	font-family: 'Lato', sans-serif;
	font-size: 16px;
	font-weight: 900;
	letter-spacing: .1em;
	padding-bottom: 5px;
	display: block;
}
.search label {
	background: #FFF;
	max-width: 280px;
	padding: 0 10px;
	display: flex;
	justify-content: space-between;
	border: solid 1px #CCC;
}
.search input {
	font-size: 16px;
	height: 48px;
	padding: 0 8px;
	border: none;
	outline: none;
	box-shadow: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}
.search button {
	background: transparent;
	border: none;
	outline: none;
	cursor: pointer;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}


/* footer
------------------------------------------------------------ */
footer {
	font-family: 'ヒラギノ角ゴ Pro', 'Hiragino Kaku Gothic Pro', '游ゴシック', '游ゴシック体', 'Yu Gothic', YuGothic, 'メイリオ', Meiryo, sans-serif;
	text-align: right;
}
footer #sns {
	font-weight: bold;
	margin-bottom: 20px;
	display: flex;
	align-items: center;
}
footer #sns li {
	margin-right: 20px;
}
footer article {
	background: #CCC;
	position: relative;
}
footer article section {
	display: flex;
	justify-content: space-between;
}
footer #external {
	max-width: 60%;
	display: flex;
}
footer #external li {
	width: 240px;
	margin: 40px 30px;
	margin-left: 0;
}
footer #external li img {
	border: solid 2px #FFF;
	box-shadow: 3px 3px 3px 0 rgba(0,0,0,.1);
}
footer #security {
	display: flex;
	align-items: flex-end;
}
footer #security li {
	margin: 20px;
	margin-right: 0;
}
footer article + section {
	color: #666;
	font-size: 12px;
	padding: 20px 0 50px;
}
footer h1 {
	margin-right: 15px;
	display: inline-block;
}
footer h1 + p {
	display: inline-block;
}
footer address {
	display: inline-block;
}
footer #copyright {
	color: #888;
	font-size: 10px;
	margin-top: 10px;
}

/* #pagetop */
#pagetop {
	display: none;
	position: fixed;
	right: 0;
	bottom: 0;
	z-index: 1;
}
#pagetop a {
	background: #FFF;
	width: 80px;
	height: 80px;
	margin: 0 0 0 auto;
	display: block;
	box-shadow: 0 0 6px 0 rgba(0,0,0,.2);
	text-indent: 100%;
	white-space: nowrap;
	overflow: hidden;
	position: relative;
}
#pagetop a:before {
	content: "";
	width: 22px;
	height: 22px;
	display: block;
	border-top: solid 2px #535453;
	border-right: solid 2px #535453;
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
	position: absolute;
	top: 35px;
	right: 26px;
}


/* #home
------------------------------------------------------------ */
/* header */
#home header {
	box-shadow: none;
	position: static;
}
#home header section {
	height: 60px;
	display: flex;
	justify-content: space-between;
}
#home header h1 {
	font-family: 'Lato', sans-serif;
	font-size: 16px;
	font-weight: 900;
	letter-spacing: .2em;
	align-self: center;
}
#home header h1 img {
	margin-right: 15px;
}
#home header h1 span {
	display: none;
}
#home header .official {
	align-self: center;
}
#home header .official a {
	font-size: 12px;
	line-height: 24px;
	text-align: center;
	width: 100px;
	display: block;
	border: solid 1px #707070;
	border-radius: 4px;
}
#home header .official a:hover {
	background: #707070;
	color: #FFF;
}

/* nav */
#home nav {
	background: #888;
	position: -webkit-sticky;
	position: sticky;
	top: 0;
	z-index: 3;
}
#home nav ul li a {
	color: #FFF;
}
#home nav ul li:after {
	background: #FFF;
	bottom: -10px;
}

/* title */
#home h2 {
	font-size: 16px;
	font-weight: normal;
	text-align: center;
	margin-bottom: 40px;
}
#home h2 span {
	font-family: 'Lato', sans-serif;
	font-size: 24px;
	font-weight: 900;
	letter-spacing: .1em;
	padding-right: 20px;
}

/* #main */
#home #main {
	background: none;
	padding: 40px 0;
	position: relative;
	overflow: hidden;
}
#home #main:before {
	content: "";
	background: #F8F8F8;
	width: 100%;
	height: 360px;
	display: block;
	position: absolute;
	top: 0;
	z-index: -1;
}
#home #main > ul {
	left: calc((100% - 1180px)/2);
}
@media screen and (max-width: 1180px) {
#home #main > ul {
	left: 0;
}
}
#home #main > ul > li {
	width: 280px;
	height: 280px;
	margin: 0 40px 0 0;
	position: relative;
	flex-shrink: 0;
}
#home #main ul li.active {
	width: 440px;
	height: 440px;
}
#home #main ul li figure {
	width: 280px;
	position: relative;
}
#home #main ul li.active figure {
	width: 440px;
}
#home #main ul li figure .pho {
	border-radius: 50%;
}
_#home #main ul li.active figure .pho {
	overflow: visible;
}
_#home #main ul li.active figure .pho:hover {
	overflow: hidden;
}
#home #main ul li figure img {
	width: 280px;
	height: 280px;
	object-fit: cover;
	object-position: center center;
	font-family: 'object-fit: cover; object-position: center center;';
	border-radius: 50%;
}
#home #main ul li.active figure img {
	width: 440px;
	height: 440px;
	box-shadow: 3px 3px 6px 0 rgba(0,0,0,.2);
}
#home #main ul li figure .pickup {
	top: 10px;
	left: 10px;
	display: none;
}
#home #main ul li.active figure .pickup {
	font-size: 24px;
	width: 88px;
	height: 88px;
	display: flex;
}
#home #main figure + div {
	background: rgba(51,51,51,.6);
	color: #FFF;
	width: 280px;
	height: 280px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	border-radius: 50%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
}
#home #main ul li.active figure + div {
	display: none !important;
}
#home #main #fixed-slide-desc {
	width: 690px;
	padding-right: 20px;
	opacity: 0.0;
	transition: 3s;
	position: absolute;
	left: 42%;
	bottom: 90px;
}
@media screen and (max-width: 1180px) {
#home #main #fixed-slide-desc {
	width: 590px;
}
}
#home #main ul li time,
#home #main #fixed-slide-desc time {
	font-family: 'Lato', sans-serif;
	font-size: 18px;
	letter-spacing: .05em;
}
#home #main ul li p {
	display: none;
}
#home #main #fixed-slide-desc p {
	font-size: 20px;
	font-weight: bold;
	line-height: 1.6;
	margin: 15px 0 20px;
}
#home #main ul ul,
#home #main #fixed-slide-desc ul {
	padding: 10px 30px 0;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}
#home #main ul li ul li a {
	color: #FFF;
	font-weight: 900;
	line-height: 1.5;
	padding-right: 5px;
	border: none;
}
#home #main ul li:hover figure + div {
	display: none;
}
#home #main #fixed-slide-desc ul {
	padding: 0;
	justify-content: flex-start;
}
#home #main #fixed-slide-desc ul li {
	margin: 0 10px 10px 0;
}
#home #main #fixed-slide-desc ul li a {
	font-size: 14px;
	line-height: 22px;
	text-align: center;
	min-width: 80px;
	display: block;
	border-radius: 4px;
}
#home #main ul li ul li a:before {
	content: "#";
}
#home #main #fixed-slide-desc ul li a:hover {
	color: #FFF;
}
#home #main .slide {
	position: absolute;
	top: 332px;
	cursor: pointer;
}
#home #main .slide:hover {
	opacity: .8;
}
#home #main .prev {
	left: 5%;
	z-index: 100;
}
#home #main .next {
	right: 5%;
	z-index: 100;
}
@media screen and (max-width: 1380px) {
#home #main .prev {
	left: 2%;
}
#home #main .next {
	right: 2%;
}
}
#home #main .pagination {
	display: flex;
	justify-content: center;
	padding: 60px 0 0;
}
#home #main .swiper-pagination-bullet {
    opacity: 1;
}
@media screen and (max-width: 1180px) {
#home #main .pagination {
	padding: 100px 0 0;
}
}
#home #main .pagination span {
	background: #CCC;
	width: 12px;
	height: 12px;
	margin: 0 8px;
	border-radius: 50%;
}
#home #main .pagination span.active {
	background: #B55485;
}

/*@media screen and (max-width: 1024px) and (orientation:portrait) {*/
@media screen and (max-width: 1023px) {
#home #main {
	padding: 40px 0 0;
	padding: 64px 0 0;
}
#home #main:before {
	height: calc(100% - 32px);
}
#home #main > ul {
	padding-bottom: 200px;
}
#home #main > ul > li {
	width: 90% !important;
	height: auto !important;
	margin: 0 4% 0 0;
}
#home #main ul li figure {
	width: 100% !important;
}
#home #main ul li figure .pho {
	border-radius: 0;
}
#home #main ul li figure img {
	width: 100% !important;
	height: 440px !important;
	border-radius: 0;
}
#home #main ul li.active figure .pickup {
	top: auto;
	bottom: -40px;
}
#home #main figure + div {
	width: 100%;
	height: 100%;
	border-radius: 0;
}
#home #main #fixed-slide-desc {
	width: 100%;
	padding: 20px 14%;
	left: 0;
	bottom: 30px;
}
#home #main .slide {
	top: 30%;
}
#home #main .prev {
	display: none;
}
#home #main .pagination {
	padding: 20px 0 0;
}
}

@media screen and (max-width: 740px) {
#home #main > ul {
	padding-bottom: 180px;
}
#home #main ul li figure img {
	height: 280px !important;
}
#home #main ul li.active figure .pickup {
	font-size: 20px;
	width: 60px;
	height: 60px;
	bottom: -15px;
}
#home #main ul li.active figure + div,
#home #main #fixed-slide-desc {
	padding: 20px 5%;
}
#home #main ul li.active p,
#home #main #fixed-slide-desc p {
	font-size: 16px;
	line-height: 1.5;
	margin: 10px 0 20px;
}
#home #main .slide {
	top: 75px;
	top: 120px;
}
}

@media screen and (max-width: 370px) {
#home #main .slide {
	top: 105px;
}
}



/* #recent */
#recent {
	padding: 100px 0;
}
#recent ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
#recent ul li {
	width: 23%;
	max-width: 250px;
	margin-bottom: 80px;
	position: relative;
}
#recent ul li a:hover p {
	color: #999;
}
#recent ul li a:hover figure img {
	transform: scale(1.2);
	transition: .5s;
}
#recent ul li:after {
	content: "";
	background: #E3E3E3;
	width: 1px;
	height: 100%;
	position: absolute;
	top: 0;
	right: -20px;
}
@media screen and (max-width: 1192px) {	#recent ul li:after {right:-6%;} }
#recent ul li:nth-child(4n):after {
	display: none;
}
#recent ul li figure {
	margin-bottom: 10px;
	position: relative;
}
#recent ul li figure img {
	width: 250px;
	height: 125px;
	object-fit: cover;
	object-position: center center;
	font-family: 'object-fit: cover; object-position: center center;';
}
@media screen and (max-width: 1192px) { ___#recent ul li figure img {height: auto;} }
#recent ul li figcaption {
	background: #FFF;
	font-family: 'Lato', sans-serif;
	color: #B55485;
	font-weight: 900;
	line-height: 20px;
	text-align: center;
	width: 50px;
	position: absolute;
	right: 0;
	bottom: 0;
	z-index: 1;
}
#recent ul li time {
	font-family: 'Lato', sans-serif;
	color: #666;
	letter-spacing: .05em;
	margin-bottom: 5px;
	display: block;
}
#recent ul li p {
	line-height: 1.5;
	font-weight: bold;
	height: 90px;
}
#recent ul li ul {
	justify-content: flex-start;
}
#recent ul li ul li {
	width: auto;
	margin: 0 0 5px;
}
#recent ul li ul li:nth-child(3n+2) {
	margin: 0 5px 5px;
}
#recent ul li ul li:after {
	display: none;
}
#recent ul li ul li a {
	font-family: 'ヒラギノ角ゴ Pro', 'Hiragino Kaku Gothic Pro', '游ゴシック', '游ゴシック体', 'Yu Gothic', YuGothic, 'メイリオ', Meiryo, sans-serif;
	font-size: 14px;
	line-height: 22px;
	text-align: center;
	min-width: 80px;
	display: block;
	border-radius: 4px;
}
#recent ul li ul li a:hover {
	color: #FFF;
}

/* #tag */
#tag {
	padding: 80px 0 20px;
}
#tag ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
#tag ul li {
	width: 32%;
	max-width: 320px;
}
#tag ul li a {
	display: flex;
	flex-wrap: wrap;
	margin-bottom: 40px;
}
#tag ul li a:hover {
	background: #FFF;
	color: #000;
	border-radius: 5px;
	box-shadow: 2px 2px 4px 0 rgba(0,0,0,.1);
}
#tag ul li figure {
	width: 100px;
	margin-right: 10px;
}
#tag ul li figure + div {
	max-width: calc(100% - 110px);
	padding: 10px 10px 10px 0;
}
#tag ul li div div {
	font-family: 'ヒラギノ角ゴ Pro', 'Hiragino Kaku Gothic Pro', '游ゴシック', '游ゴシック体', 'Yu Gothic', YuGothic, 'メイリオ', Meiryo, sans-serif;
	font-size: 14px;
	line-height: 24px;
	text-align: center;
	min-width: 80px;
	margin-right: 10px;
	display: inline-block;
	border-radius: 4px;
}
#tag .tag_01 { color: #6A397D; border: solid 1px #6A397D; }
#tag .tag_02 { color: #E3A44E; border: solid 1px #E3A44E; }
#tag .tag_03 { color: #5FA05E; border: solid 1px #5FA05E; }
#tag .tag_04 { color: #C83E36; border: solid 1px #C83E36; }
#tag .tag_05 { color: #518C84; border: solid 1px #518C84; }
#tag .tag_06 { color: #305089; border: solid 1px #305089; }
#tag .tag_07 { color: #CC0066; border: solid 1px #CC0066; }
#tag .tag_08 { color: #888888; border: solid 1px #888888; }

#tag ul li a:hover div div {
	color: #FFF;
}
#tag ul li a:hover .tag_01 { background: #6A397D; }
#tag ul li a:hover .tag_02 { background: #E3A44E; }
#tag ul li a:hover .tag_03 { background: #5FA05E; }
#tag ul li a:hover .tag_04 { background: #C83E36; }
#tag ul li a:hover .tag_05 { background: #518C84; }
#tag ul li a:hover .tag_06 { background: #305089; }
#tag ul li a:hover .tag_07 { background: #CC0066; }
#tag ul li a:hover .tag_08 { background: #888888; }

#tag ul li div time {
	font-family: 'Lato', sans-serif;
	color: #666;
	letter-spacing: .1em;
}
#tag ul li div p {
	line-height: 1.5;
	margin-top: 5px;
}

/* #archves */
#archves {
	padding: 100px 0;
}
#archves ul {
	display: flex;
	flex-wrap: wrap;
	padding: 0 7%;
	justify-content: center;
}
#archves ul li {
	width: 30%;
	margin: 0 1.5% 1.5%;
}
#archves ul li a {
	font-family: 'Lato', sans-serif;
	font-size: 20px;
	line-height: 1.1;
	letter-spacing: .05em;
	text-align: center;
	width: 280px;
	max-width: 100%;
	height: 100%;
	padding: 10px;
	border: solid 1px #CCC;
	border-radius: 4px;
	display: flex;
	justify-content: center;
	align-items: center;
}
#archves ul li a:hover {
	background: #888;
	color: #FFF;
}


/* #main
------------------------------------------------------------ */
/* #breadcrumb */
#breadcrumb {
	color: #888;
	font-size: 12px;
	line-height: 1.5;
	padding: 15px 0 40px;
}
#breadcrumb a {
	color: #888;
}
#breadcrumb a:hover {
	color: #333;
	text-decoration: underline;
}
#breadcrumb img {
	width: 12px;
}

/* title */
main #main h1 {
	display: inline-block;
	margin-bottom: 40px;
}
main #main h1 em {
	font-size: 16px;
	font-weight: normal;
}
main #main h1 span {
	font-family: 'Lato', sans-serif;
	font-size: 24px;
	font-weight: 900;
	line-height: 30px;
	letter-spacing: .1em;
	padding: 0 15px 0 25px;
	border-left: solid 8px #888;
}

.count {
	background: #F8F8F8;
	line-height: 30px;
	margin-left: 20px;
	padding: 0 10px;
	display: inline-block;
}

/* .menu */
main #main .menu {
	display: flex;
}
main #main .menu li {
	max-width: 12.5%;
	max-width: 11.1%;
	margin-bottom: -1px;
	border-bottom: solid 1px #CCC;
}
main #main .menu li a {
	font-size: 12px;
	color: #CCC;
	width: 88px;
	max-width: 100%;
	height: 50px;
	border-top: solid 4px #FFF;
	display: flex;
	justify-content: center;
	align-items: center;
}
main #main .menu li.active a,
main #main .menu li a:hover {
	color: #333;
	font-weight: bold;
}
main #main .menu li.active {
	border: solid 1px #CCC;
	border-bottom: solid 1px #FFF;
}
main #main .menu li.active a {
	border-top: solid 4px #D39BB7;
}

main #main .menu.archives li {
	max-width: 33.33%;
}
main #main .menu.archives li a {
	font-family: 'Lato', sans-serif;
	font-size: 16px;
	width: 160px;
}

/* 変更 20.8.24 → 戻し 20.8.29
main #main .menu.archives {
	margin-bottom: 15px;
	flex-wrap: wrap;
}
main #main .menu.archives li {
text-align: center;
	width: 18%;
	max-width: 18%;
	margin: 0 1% 2%;
	border: none !important;
}
main #main .menu.archives li a {
	width: 100%;
	height: 44px;
	border: solid 1px #CCC;
	border-radius: 8px;
}
main #main .menu.archives li.active a,
main #main .menu.archives li a:hover {
	background: #B55485;
	color: #FFF;
	border: solid 1px #B55485;
}
main #main .menu.archives li a {
	font-family: '游ゴシック', '游ゴシック体', 'Yu Gothic', YuGothic, 'ヒラギノ角ゴ Pro', 'Hiragino Kaku Gothic Pro', 'メイリオ', Meiryo, sans-serif;
	font-size: 14px;
}
*/

/* .list */
main #main .list {
	margin-bottom: 40px;
	border-top: solid 1px #CCC;
}
main #main .list > li {
	padding: 30px 0;
	border-bottom: solid 1px #CCC;
	position: relative;
}
main #main .list > li a:hover figure img {
	transform: scale(1.2);
	transition: .5s;
}
main #main .list li a {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
}
main #main .list li a:hover {
	color: #999;
}
main #main .list li figure {
	width: 320px;
	max-width: 45%;
	position: relative;
}
main #main .list li figure img {
	width: 320px;
	height: 160px;
	object-fit: cover;
	object-position: center center;
	font-family: 'object-fit: cover; object-position: center center;';
}
main #main .list li figcaption {
	background: #FFF;
	font-family: 'Lato', sans-serif;
	color: #B55485;
	font-weight: 900;
	line-height: 20px;
	text-align: center;
	width: 50px;
	position: absolute;
	right: 0;
	bottom: 0;
	z-index: 1;
}
main #main .list li figure + div {
	width: 385px;
	max-width: 53%;
}
main #main .list li time {
	font-family: 'Lato', sans-serif;
	font-size: 16px;
	color: #666;
	letter-spacing: .05em;
	display: block;
}
main #main .list li h2 {
	font-size: 18px;
	font-weight: bold;
	line-height: 1.4;
	margin: 5px 0;
}
main #main .list li p {
	color: #666;
	font-size: 14px;
	line-height: 1.6;
}
main #main .list li ul {
	display: flex;
	justify-content: flex-end;
	position: absolute;
	right: 0;
	bottom: 5px;
}
main #main .list li ul li {
	margin: 0 0 5px 5px;
}
main #main .list li ul li a {
	font-family: 'ヒラギノ角ゴ Pro', 'Hiragino Kaku Gothic Pro', '游ゴシック', '游ゴシック体', 'Yu Gothic', YuGothic, 'メイリオ', Meiryo, sans-serif;
	font-size: 14px;
	line-height: 22px;
	text-align: center;
	width: 80px;
	display: block;
	border-radius: 4px;
}
main #main .list li ul li a:hover {
	color: #FFF;
}

/* #pagenavi */
#pagenavi {
	margin: 40px 0;
	border-top: solid 1px #CCC;
	border-bottom: solid 1px #CCC;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
#pagenavi.smp {
	display: none;
}
#pagenavi li {
	width: 33.333%;
	text-align: center;
}
#pagenavi a {
	font-weight: bold;
	padding: 16px 0;
	display: block;
	position: relative;
}
#pagenavi a .pc {
	display: inline-block;
}
#pagenavi a:hover {
	background: #888;
	color: #FFF;
}
#pagenavi .top a {
	font-family: 'Lato', sans-serif;
	font-weight: normal;
	border-left: solid 1px #CCC;
	border-right: solid 1px #CCC;
}
#pagenavi .previous a:after,
#pagenavi .next a:after {
	content: "";
	width: 7px;
	height: 7px;
	display: inline-block;
	border-top: solid 3px #CCC;
	border-right: solid 3px #CCC;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
	position: absolute;
	top: 20px;
	right: 20px;
}
#pagenavi .previous a:after {
	-webkit-transform: rotate(-135deg);
	transform: rotate(-135deg);
	right: auto;
	left: 20px;
}
#pagenavi .previous a:hover:after,
#pagenavi .next a:hover:after {
	border-top: solid 3px #FFF;
	border-right: solid 3px #FFF;
}
#pagenavi .call {
	background: #FFF;
	color: #e3e3e3;
}
#pagenavi .call:after {
	border-top: solid 3px #e3e3e3 !important;
	border-right: solid 3px #e3e3e3 !important;
}


/* #side
------------------------------------------------------------ */
/* title */
#side .menu h3 {
	font-size: 16px;
	font-weight: normal;
	margin-bottom: 10px;
}
#side .menu h3 span {
	font-family: 'Lato', sans-serif;
	font-size: 20px;
	font-weight: 900;
	letter-spacing: .1em;
	margin-right: 10px;
}
#side time {
	font-family: 'Lato', sans-serif;
	color: #666;
	font-size: 15px;
	font-weight: normal;
	letter-spacing: .05em;
	margin-bottom: 5px;
	display: block;
}

/* menu */
#side .menu li {
	position: relative;
}
#side .menu li a {
	font-weight: bold;
	display: block;
}
#side .menu li:hover a,
#side .menu li:hover time {
	color: #B55485;
}
#side .menu li a:after {
	content: "";
	width: 7px;
	height: 7px;
	display: inline-block;
	border-top: solid 3px #CCC;
	border-right: solid 3px #CCC;
	-webkit-transform: rotate(45deg) translateY(-50%);
	transform: rotate(45deg) translateY(-50%);
	position: absolute;
	top: 50%;
	right: 20px;
}
_#side .menu li.active a:after,
#side .menu li a:hover:after {
	border-top: solid 3px #B55485;
	border-right: solid 3px #B55485;
}

/* #pickup */
#side .swiper-button h3 {
	background: #B55485;
	color: #FFF;
	font-family: 'Lato', sans-serif;
	font-size: 20px;
	font-weight: 900;
	letter-spacing: .1em;
	line-height: 30px;
	text-align: center;
}
#side #pickup {
	display: block;
}
#side #pickup li {
	padding: 20px 0;
	border-bottom: dotted 1px #666;
	overflow: hidden;
}
#side #pickup li:hover a,
#side #pickup li:hover time {
	color: #B55485;
}
#side #pickup figure {
	margin-right: 10px;
	float: left;
	clear: both;
	border-radius: 50%;
	overflow: hidden;
	position: relative;
	z-index: 1;
	-webkit-mask-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAIAAACQd1PeAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAA5JREFUeNpiYGBgAAgwAAAEAAGbA+oJAAAAAElFTkSuQmCC);
}
#side #pickup figure img {
	width: 100px;
	height: 100px;
	object-fit: cover;
	object-position: center center;
	font-family: 'object-fit: cover; object-position: center center;';
	transition: .5s;
}
#side #pickup li:hover figure img {
	transform: scale(1.2);
	transition: .5s;
}
#side #pickup p {
	font-size: 14px;
	font-weight: bold;
	line-height: 1.5;
}
#side .swiper-pagination,
#side .swiper-button-prev,
#side .swiper-button-next {
	display: none;
}

/* .recent */
#side .recent {
	margin: 80px 0 20px;
	border-bottom: solid 1px #CCC;
}
#side .recent li a {
	padding: 20px 50px 20px 20px;
	border: solid 1px #CCC;
	border-bottom: none;
}
#side .recent p {
	font-size: 14px;
	line-height: 1.5;
}

/* .tag */
#side .tag {
	margin: 80px 0;
	border-bottom: solid 1px #666;
}
#side .tag h3 {
	padding-bottom: 10px;
	border-bottom: solid 1px #666;
}
#side .tag li {
	margin-bottom: 10px;
	padding-left: 50px;
	background-repeat: no-repeat !important;
	background-position: left top !important;
	background-size: 40px auto !important;
}
#side .tag #tag_01 { background: url(../img/tag_ico01.png); }
#side .tag #tag_02 { background: url(../img/tag_ico02.png); }
#side .tag #tag_03 { background: url(../img/tag_ico03.png); }
#side .tag #tag_04 { background: url(../img/tag_ico04.png); }
#side .tag #tag_05 { background: url(../img/tag_ico05.png); }
#side .tag #tag_06 { background: url(../img/tag_ico06.png); }
#side .tag #tag_07 { background: url(../img/tag_ico07.png); }
#side .tag #tag_08 { background: url(../img/tag_ico08.png); }

#side .tag li a {
	font-size: 14px;
	line-height: 40px;
}
#side .tag li a:after {
	right: 8px;
}

/* .archives */
#side .archives {
	border-bottom: solid 1px #666;
}
#side .archives h3 {
	padding-bottom: 10px;
	border-bottom: solid 1px #666;
}
#side .archives li {
	margin-bottom: 10px;
}
#side .archives li a {
	padding-left: 10px;
	line-height: 40px;
}
#side .archives li a:after {
	right: 8px;
}


/* #single
------------------------------------------------------------ */
.share {
	display: flex;
}
.share li {
	margin-right: 10px;
}

/* #title */
main #main #title {
	padding: 40px;
	box-shadow: 0 0 6px 0 rgba(0,0,0,.16);
}
main #main #title h1 {
margin-bottom: 0;
}
main #main #title .tag {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
}
main #main #title .tag li {
	margin-left: 15px;
}
main #main #title .tag li a {
	font-family: 'ヒラギノ角ゴ Pro', 'Hiragino Kaku Gothic Pro', '游ゴシック', '游ゴシック体', 'Yu Gothic', YuGothic, 'メイリオ', Meiryo, sans-serif;
	font-size: 14px;
	line-height: 22px;
	text-align: center;
	width: 80px;
	display: block;
	border-radius: 4px;
}
main #main #title .tag li a:hover {
	color: #FFF;
}
main #main #title time {
	font-family: 'Lato', sans-serif;
	font-size: 20px;
	color: #888;
	margin-bottom: 5px;
	display: block;
}
main #main #title h1 {
	font-size: 24px;
	font-weight: bold;
	line-height: 1.5;
}
main #main #title figure {
	margin-top: 20px;
}

/* #post */
#post {
	margin-bottom: 30px;
}
#post a {
	color: #B55485;
	text-decoration: underline;
	word-break: break-all;
}
#post a:hover {
	text-decoration: none;
}
#post h2 {
	font-size: 24px;
	font-weight: bold;
	line-height: 1.5;
	margin-top: 80px;
	border-bottom: solid 1px #333;
}
#post h3 {
	background: #EFEFEF;
	font-size: 16px;
	font-weight: bold;
	line-height: 1.5;
	display: inline-block;
	margin-top: 40px;
	padding: 5px 15px;
}
#post p {
	line-height: 2;
	margin-top: 20px;
}
#post .box {
	background: #F8F8F8;
	margin-top: 30px;
	padding: 20px;
}
#post .box p {
	margin-top: 0;
	line-height: 1.5;
}
#post .box p + p {
	margin-top: 20px;
}
#post div {
	margin-top: 20px;
}
#post strong {
	font-weight: bold;
}
#post em {
	font-style: italic;
}
#post hr {
	clear: both;
	margin: 20px 0 0;
}
#post ol {
	margin-top: 20px;
	padding-left: 20px;
	list-style-type: decimal;
}
#post ul {
	margin-top: 20px;
	padding-left: 20px;
	list-style-type: disc;
}
.aligncenter {
	text-align: center;
	display: block;
}
.alignleft {
	float: left;
}
.alignright {
	float: right;
}
.wp-caption {
	max-width: 100%;
}





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

/* footer
------------------------------------------------------------ */
footer address {
	margin: 0 0 10px;
}

/* #home
------------------------------------------------------------ */
/* #recent */
#recent ul li ul li a {
	font-size: 13px;
	line-height: 20px;
	min-width: 70px;
}

/* #side
------------------------------------------------------------ */
/* title */
#side .menu h3 {
	font-size: 15px;
}
#side .menu h3 span {
	font-size: 19px;
	letter-spacing: .05em;
	margin-right: 5px;
}

/* #single
------------------------------------------------------------ */
/* #title */
main #main #title .tag {
	margin-bottom: 10px;
}
}


/*@media screen and (max-width: 1024px) and (orientation:portrait) {*/
@media screen and (max-width: 1023px) {

/* common
------------------------------------------------------------ */
body.open:after {
	content: "";
	background: rgba(0,0,0,.5);
	width: 100%;
	height: 100%;
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 200;
}
body.open header {
	box-shadow: none !important;
}

/* layout */
main {
	margin-bottom: 60px;
	display: block;
}
#breadcrumb {
	margin-top: 60px;
	margin-top: 64px;
}
main #main {
	width: 100%;
}
main #side {
	width: 100%;
	max-width: 80%;
	margin: 0 auto;
}

/* header
------------------------------------------------------------ */
header {
	background: #888;
	color: #FFF;
	z-index: 300;
}
header section {
	height: 60px;
	height: 64px !important;
	display: flex;
}
header h1 {
	font-family: 'Lato', sans-serif;
	font-size: 16px;
	font-size: 18px !important;
	font-weight: 900;
	letter-spacing: .2em;
	letter-spacing: .1em !important;
	align-self: center;
}
header h1 span {
	font-size: 14px;
	font-weight: normal;
	letter-spacing: 0;
	display: block;
	margin-top: 5px;
}
.slide-menu {
	display: block;
}

/* Responsive Menu */
div.slide-menu {
	width: 60px;
	height: 60px;
	position: absolute;
	top: 0;
	right: 0;
	cursor: pointer;
	width: 64px;
	height: 64px;
}
div.slide-menu a {
	text-indent: 100%;
	display: block;
	white-space: nowrap;
	overflow: hidden;
}
div.slide-menu:before,
div.slide-menu:after,
div.slide-menu a:before {
	content: "";
	background: #FFF;
	width: 36px;
	height: 4px;
	position: absolute;
	top: 17px;
	left: 9px;
	transition: .3s;
}
div.slide-menu:after {
	top: 29px;
}
div.slide-menu a:before {
	top: 41px;
}
div.open a:before {
	display: none;
}
div.open:before,
div.open:after {
	top: 29px;
	-webkit-transform:	rotate(-45deg);
			transform:	rotate(-45deg);
	transition: .3s;
}
div.open:after {
	-webkit-transform:	rotate(45deg);
			transform:	rotate(45deg);
}

nav ul {
	background: #888 !important;
	padding-top: 60px;
	padding-top: 64px;
	box-shadow: none !important;
}
nav ul li {
	background: #FFF;
	border-bottom: solid 1px #E3E3E3;
}
nav ul li:hover:after {
	display: none;
}
nav ul li a {
	font-family: '游ゴシック', '游ゴシック体', 'Yu Gothic', YuGothic, 'ヒラギノ角ゴ Pro', 'Hiragino Kaku Gothic Pro', 'メイリオ', Meiryo, sans-serif;
	color: #333 !important;
	font-size: 16px;
	font-weight: bold;
	padding: 25px 20px;
}
nav ul li a span {
	color: #CCC;
	font-size: 14px;
	font-weight: 400;
	padding: 0 15px 0 0;
	position: absolute;
	right: 15px;
}
nav ul li a span:after {
    content: "";
    width: 7px;
    height: 7px;
    display: inline-block;
    border-top: solid 3px #CCC;
    border-right: solid 3px #CCC;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    position: absolute;
    top: 3px;
    right: 0;
}
nav ul li.smp {
	display: block;
	background: #E066A3;
	width: 50%;
	float: left;
	border-bottom: none;
}
nav ul li.smp a,
nav ul li.contact a {
	background: #FFF;
	color: #CC0066 !important;
	text-align: center;
	padding: 20px 10px;
	margin: 20px 15px 0;
}
nav ul li.smp + .smp a {
	margin: 20px 15px 0 0;
}
nav ul li.contact a {
	margin: 15px 15px 20px;
}
nav ul li.contact {
	background: #E066A3;
	clear: both;
	border-bottom: none;
}
nav ul li.contact a {
	width: 100%;
}
nav ul li.contact a:before {
	content: "";
	background: url(../img/icon_05.png) no-repeat;
	background-size: contain;
	width: 24px;
	height: 16px;
	margin-right: 10px;
	display: inline-block;
}
nav ul li.contact a span {
	display: none;
}
nav ul li.slide-menu {
	border-bottom: none;
}
nav ul li.slide-menu a {
	background: #333;
	padding: 17px 20px;
	text-indent: 100%;
	display: block;
	white-space: nowrap;
	overflow: hidden;
}
nav ul li.slide-menu:before,
nav ul li.slide-menu:after {
	content: "";
	background: #FFF;
	width: 30px;
	height: 2px;
	display: block;
	position: absolute;
	top: 24px;
	left: 45%;
	-webkit-transform:	rotate(-45deg);
			transform:	rotate(-45deg);
	transition: .3s;
}
nav ul li.slide-menu:after {
	-webkit-transform:	rotate(45deg);
			transform:	rotate(45deg);
}
.search label {
	width: 100%;
	max-width: 100%;
	position: absolute;
	top: 10px;
	right: 10px;
}
.search input {
	background: none !important;
	font-size: 16px !important;
	color: #666 !important;
	width: calc(100% - 30px) !important;
	height: 38px;
	padding: 0 8px !important;
	margin: 0 !important;
	border-radius: none !important;
}
.sidr {
	width: 300px;
}
.sidr.right {
	right: -300px
}

/* #home
------------------------------------------------------------ */
/* header */
#home header {
	box-shadow: 3px 3px 6px 0 rgba(0,0,0,.2);
	position: fixed;
}
#home header h1 img,
#home header .official {
	display: none;
}
#home header h1 span {
	display: block;
}

/* #recent */
#recent ul {
	justify-content: center;
}
#recent > ul > li {
	width: 30%;
	margin: 0 1.5% 80px;
}
#recent > ul > li:after {
	right: -5% !important;
}
#recent > ul > li:nth-child(4n):after {
	display: block;
}
#recent ul li:nth-child(3n):after {
	display: none;
}
#recent ul:after{
 content: "";
 display: block;
 width: 30%;
	max-width: 250px;
	margin: 0 1.5%;
}
#recent ul li ul li {
	margin: 0 2px 5px !important;
}

/* #tag */
#tag ul li div div {
	margin: 0 0 5px;
	display: block;
}

/* #side
------------------------------------------------------------ */
/* title */
#side .menu h3 {
	font-size: 16px;
}
#side .menu h3 span {
	font-size: 20px;
	letter-spacing: .1em;
	margin-right: 10px;
}

/* #pickup */
#side #pickup {
	display: flex;
}
#side #pickup li {
	padding: 20px;
	border-bottom: none;
}
#side #pickup figure img {
	width: 120px;
	height: 120px;
}
#side .swiper-pagination,
#side .swiper-button-prev,
#side .swiper-button-next {
	display: block;
}
#side .swiper-button {
	border: solid 1px #CCC;
	position: relative;
	margin: 50px auto 120px;
}
#side .swiper-button-prev,
#side .swiper-button-next {
	background: url(../img/side_prev.png) no-repeat center;
	background-size: contain !important;
	width: 40px;
	height: 40px;
	z-index: 1;
}
#side .swiper-button-next {
	background: url(../img/side_next.png) no-repeat center;
}
#side .swiper-button-prev {
	left: -20px;
}
#side .swiper-button-next {
	right: -20px;
}
#side .swiper-button-prev:after,
#side .swiper-button-next:after {
	content: "";
}
.swiper-pagination {
	width: 100%;
	padding-top: 20px;
}
.swiper-pagination-bullet {
	width: 12px;
	height: 12px;
	margin: 0 8px;
}
.swiper-pagination-bullet-active {
	background: #B55485;
}
#side .archives {
	margin-top: 80px;
}

/* #single
------------------------------------------------------------ */
/* #title */
main #main #title {
	padding: 20px;
}
}


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

/* set
------------------------------------------------------------ */
.smp {
	display: block;
}
br.smp {
	font-size: 0;
}
.pc {
	display: none !important;
}
	

/* common
------------------------------------------------------------ */
/* layout */
section,
main,
nav ul {
	max-width: 90%;
}
main {
	margin-bottom: 90px;
}
main #side {
	max-width: 94%;
}

/* header
------------------------------------------------------------ */
header section {
	max-width: 94%;
}
header h1 {
	font-size: 14px !important;
	letter-spacing: .1em !important;
}
header h1 span {
	font-size: 12px;
	margin-top: 5px;
}

/* footer
------------------------------------------------------------ */
footer {
	text-align: left;
}
footer article section {
	display: block;
}
footer #external {
	max-width: 100%;
	padding-top: 30px;
	display: block;
}
footer #external li {
	max-width: 320px;
	margin: 0 auto 30px;
}
footer #security {
	justify-content: flex-end;
}
footer article + section {
	padding: 10px 0 15px;
}
footer address {
	line-height: 1.5;
	margin: 5px 0;
}

/* #pagetop */
#pagetop a {
	width: 50px;
	height: 50px;
}
#pagetop a:before {
	top: 20px;
	right: 12px;
}

/* #home
------------------------------------------------------------ */
/* title */
#home h2 {
	text-align: left;
	margin-bottom: 20px;
}
#home h2 span {
	padding: 0 0 5px;
	display: block;
}

/* #recent */
#recent {
	padding: 50px 0;
}
#recent ul {
	margin-bottom: 30px;
	display: block;
	border-top: solid 1px #E3E3E3;
}
#recent ul li {
	width: 100%;
	max-width: 100%;
	margin-bottom: 0;
	padding: 20px 0 15px;
	border-bottom: solid 1px #E3E3E3;
}
#recent ul li:after {
	display: none;
}
#recent ul li figure {
	width: 100px;
	margin: 0 10px 10px 0;
	float: left;
}
#recent ul li figure img {
	width: 100px;
	height: 100px;
}
#recent ul li time {
	font-size: 16px;
}
#recent ul li ul {
	margin-bottom: 0;
	clear: both;
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
	border-top: none;
}
#recent ul li ul li {
	margin: 0 0 5px 5px !important;
	padding: 0;
	border-bottom: none;
}
#recent ul:after{
 display: none
}
#recent ul li:after {
	display: none !important;
}

/* #tag */
#tag {
	padding: 40px 0 10px;
}
#tag ul {
	display: block;
}
#tag ul li {
	width: 100%;
	max-width: 100%;
}
#tag ul li a {
	margin-bottom: 20px;
}
#tag ul li div div {
	margin-right: 10px;
	display: inline-block;
}

/* #archves */
#archves {
	padding: 40px 0 100px;
}
#archves ul {
	___justify-content: space-between;
	padding: 0;
}
#archves ul li {
	max-width: 31%;
	margin: 0 0 2%;
}
#archves ul li a {
	padding: 20px 0;
}

/* #main
------------------------------------------------------------ */
/* #breadcrumb */
#breadcrumb {
	padding: 10px 0 40px;
}
#single #breadcrumb {
	padding: 10px 0 20px;
}

/* title */
main #main h1 em {
	padding: 3px 0 0 18px;
	display: block;
}
main #main h1 span {
    padding: 0 10px;
}

.count {
	position: absolute;
	top: 40px;
	right: 0;
}

/* .menu */
main #main .menu {
	margin-bottom: 15px;
	flex-wrap: wrap;
}
main #main .menu li {
	width: 24%;
	max-width: 24%;
	margin-bottom: 2%;
	border: none !important;
	width:  18%;
	min-width: 18%;
	margin: 0 1% 2%;
	text-align: center;
}
main #main .menu li a {
	width: 100%;
	height: 44px;
	border: solid 1px #CCC;
	border-radius: 8px;
}
main #main .menu li.active a,
main #main .menu li a:hover {
	background: #B55485;
	color: #FFF;
	border: solid 1px #B55485;
}
main #main .menu.archives li {
	width: 30%;
	max-width: 100%;
}
main #main .menu.archives li a {
	font-family: '游ゴシック', '游ゴシック体', 'Yu Gothic', YuGothic, 'ヒラギノ角ゴ Pro', 'Hiragino Kaku Gothic Pro', 'メイリオ', Meiryo, sans-serif;
	font-size: 12px;
}

/* .list */
main #main .list.search {
	margin-top: 20px;
}
main #main .list > li {
	padding: 20px 0 10px;
}
main #main .list li figure {
	width: 120px;
	max-width: 120px;
}
main #main .list li figure img {
	width: 120px;
	height: 120px;
}
main #main .list li figure + div {
	max-width: calc(100% - 135px);
}
main #main .list li time,
main #main .list li h2 {
	font-size: 16px;
}
main #main .list li p {
	display: none;
}
main #main .list li ul {
	margin-top: 10px;
	flex-wrap: wrap;
	position: static;
}

/* #pagenavi */
#pagenavi {
	margin: 40px 0 50px;
}
#pagenavi.smp {
	display: flex;
}
#pagenavi a {
	background: #888;
	color: #FFF;
}
#pagenavi a:hover {
	background: #FFF;
	color: #666;
}
#pagenavi .previous a:after,
#pagenavi .next a:after {
	border-top: solid 3px #FFF;
	border-right: solid 3px #FFF;
}
#pagenavi .previous .call:after,
#pagenavi .next .call:after {
	border-top: solid 3px #CCC;
	border-right: solid 3px #CCC;
}

/* #side
------------------------------------------------------------ */
/* .tag */
#side .tag {
	margin: 80px 0 50px;
}

/* #single
------------------------------------------------------------ */
/* #title */
main #main #title {
	padding: 12px;
}
main #main #title .tag {
	margin: 10px 10px 5px;
	margin: 0 0 10px;
	justify-content: flex-start;
}
main #main #title .tag li {
	margin: 0 15px 10px 0;
}
main #main #title time {
	font-size: 16px;
}
main #main #title h1 {
	font-size: 20px;
	_margin-bottom: 20px;
}

/* #post */
#post h2 {
	margin-top: 50px;
}
}


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

/* set
------------------------------------------------------------ */
body {
	font-size: 14px;
}

/* common
------------------------------------------------------------ */
/* layout */
main #side {
	max-width: 100%;
}

/* header
------------------------------------------------------------ */
header h1 {
	font-size: 12px !important;
	letter-spacing: .05em !important;
}
header h1 span {
    font-size: 11px;
}
nav ul li a {
	font-size: 15px;
	padding: 25px 10px;
}
nav ul li a span {
	font-size: 11px;
	letter-spacing: .05em;
}
nav ul li.smp a,
nav ul li.contact a {
	font-size: 14px;
	padding: 15px 5px;
	margin: 15px 10px 0;
}
nav ul li.smp + .smp a {
	margin: 15px 10px 0 0;
}
nav ul li.contact a {
	margin: 10px 10px 15px;
}
.sidr {
	width: 250px;
}
.sidr.right {
	right: -250px
}

/* #home
------------------------------------------------------------ */
/* title */
#home h2 {
	font-size: 14px;
}
#home h2 span {
	font-size: 22px;
}

/* #recent */
#recent ul li time {
	font-size: 14px;
}

/* #archves */
#archves ul li a {
	font-size: 18px;
}

/* #side
------------------------------------------------------------ */
/* title */
#side .menu h3 {
	font-size: 15px;
}
#side .menu h3 span {
	font-size: 19px;
	letter-spacing: .05em;
	margin-right: 5px;
}

#side .swiper-button-prev,
#side .swiper-button-next {
	width: 35px;
	height: 35px;
}
#side .swiper-button-prev {
	left: -15px;
}
#side .swiper-button-next {
	right: -15px;
}

/* #single
------------------------------------------------------------ */
/* #title */
main #main #title .tag li {
	margin: 0 5px 5px 0;
}

/* #post */
#post h2 {
	font-size: 20px;
	margin-top: 40px;
}
#post h3 {
	font-size: 15px;
	margin-top: 30px;
	padding: 5px 10px;
}
#post .box {
	margin-top: 20px;
	padding: 10px;
}
}



/* ページナビを両端揃え */
/*@media screen and (max-width: 1024px) and (orientation:portrait) {*/
@media screen and (max-width: 1023px){
main #main {
	padding-bottom: 130px;
	_overflow: hidden;
}
#pagenavi {
	width: 106%;
	position: absolute;
	left: -3%;
}
}
@media screen and (max-width: 740px) {
#pagenavi {
	width: 112%;
	position: absolute;
	left: -6%;
}
}