@charset "UTF-8";

/************************************
** 基本設定（General Setting）
************************************/
html, body {
	margin: 0;
	padding: 0;
}

body {
	font-family: Open Sans, Hiragino Kaku Gothic ProN, Meiryo, Helvetica, Arial, sans-serif;
	font-size: 16px;
	-webkit-text-size-adjust: 100%;
	color: #555;
}

img {
	border-width: 0px;
}

figure {
	margin: 0;
}

.article {
	font-size: 16px;
	line-height: 170%;
}

/*記事・カテゴリ中の画像を要素内に収める*/
.entry__thumbnail img,
.recent-entry__thumbnail img,
.recent-entry__thumnail img {
	max-width:100%;
	height:auto;
}

.aligncenter {
	clear:both;
}

.cf:after{
  content: "";
  clear: both;
  display: block;
}

/************************************
** 見出し（H1-6）
************************************/
h1, h2, h3, h4, h5, h6 {
  line-height:130%;
  color:#333;
}

h1 {
  font-size: 32px;
}

h2 {
  font-size: 28px;
}

h3 {
  font-size: 24px;
}

h4,h5,h6 {
  font-size: 20px;
}

.article__content h3 {
  font-size: 24px;
  font-weight: bold;
  margin-top: 0.83em;
  margin-bottom: 0.83em;
  padding: 5px 10px;
  background: #ccc;
  line-height: 1.2;
  border-left: 5px solid #555;
}

.article__content h4 {
  font-size: 20px;
  font-weight: bold;
  margin-top: 1.12em;
  margin-bottom: 1.12em;
  padding: 5px 10px;
  line-height: 1.2;
  border-left: 5px solid #555;
}

.article__content {
  margin-bottom: 60px;
}

/************************************
** アンカー
************************************/

a {
  color: inherit;
  word-wrap: break-word;
  text-decoration: none;
}

a:hover {
  color: #999;
}

.article__content a {
  text-decoration: underline;
}

/************************************
** 引用（blockquote）
************************************/
blockquote {
  background: none repeat scroll 0 0 rgba(245, 245, 245, 0.8);
  border: 1px solid #FFFFFF;
  margin: 1em 0;
  padding: 20px 55px;
  position: relative;
}

blockquote:before {
  color: #C8C8C8;
  content: "“";
  font-family: serif;
  font-size: 600%;
  left: 0;
  line-height: 1em;
  position: absolute;
  top: 0;
}

blockquote:after {
  color: #C8C8C8;
  content: "”";
  font-family: serif;
  font-size: 600%;
  line-height: 0;
  position: absolute;
  right: 0;
  bottom: -2px;
}

/* Internet Explorer11のみに適用したい設定 */
@media screen and (min-width:0\0) {
  *::-ms-backdrop, blockquote:before { left:  -55px; }
  *::-ms-backdrop, blockquote:after  { right: -55px; }
}

/************************************
** リスト（List）
************************************/
ul,ol {
  margin: 0;
  padding: 0;
}

ul ul {
  margin-left: 1em;
}

/* dl {
  margin: 30px 0;
} */

dt {
  font-weight: bold;
}

/* dd {
  margin-bottom: 5px;
} */

/************************************
** テーブル（Table）
************************************/
.article__content table{
  border-collapse: collapse;
  margin: 15px 0;
}
.article__content th {
  border: solid 1px #ccc;
  background-color: #eee;
}
.article__content td {
  border: solid 1px #ccc;
}
.article__content th,
.article__content td {
  padding: 3px 5px;
}

.article__content ol,
.article__content ul,
.article__content dl,
.module dl {
  line-height:150%;
}

.article__content > ol,
.article__content > ul,
.article__content > dl {
  margin:30px 0;
}

.article__content > ol ol,
.article__content > ul ul,
.article__content > dl dl{
  margin:0;
}

/************************************
** グローバルナビメニュー（menu）
************************************/
.gloval-navi ul{
  position: relative;
  clear: both;
  border: 1px solid #ddd;
  background-color:#F7F7F7;
  border-radius:3px;
  margin: 10px 0;
  padding:0;
  width:100%;
  box-sizing: border-box;
}

.gloval-navi ul ul{
  box-sizing: content-box;
}

.gloval-navi ul > li{
  float: left;
  list-style:none;
  position: relative;
}

.gloval-navi ul li a{
  font-size:14px;
  display: block;
  padding: .3em .7em;
  color:#111;
  text-decoration:none;
  z-index:99;
}

.gloval-navi ul li a:hover{
  background-color:#ddd;
}

.gloval-navi li:hover > ul{
  display: block;
}

/* Clearfix) */
.l-wrapper:after,
.gloval-navi ul:after {
  display: block;
  visibility: hidden;
  clear: both;
  height: 0;
  content: " ";
  font-size: 0;
}

/* clearfix for ie7 */
.l-wrapper,
.gloval-navi ul
 {
/*display: inline-block;*/
}

.l-wrapper,
.gloval-navi ul {
  display: block;
}

/************************************
** パンくずリスト
************************************/
.crumb {
   font-size: 14px;
   line-height: 18px;
   margin: 10px 0px;
}

ol.crumb li {
  display: inline;
  list-style-type: none;
}

ol.crumb li:before {
  content: " > ";
}

ol.crumb li:first-child:before {
  content:"";
}

/************************************
** TOPへ戻るボタン（Go to top）
************************************/
#scroll-top {
  position: fixed;
  display: none;
  right: 10px;
  bottom: 10px;
}

#scroll-top a{
  color: #fff;
  padding: 7px;
  text-decoration: none;
  display: block;
  cursor: pointer;
  text-align: center;
  background-color: #aaa;
  line-height: 100%;
  border-radius: 4px;
  font-size: 11px;
}

/*トップへ戻る画像の背景*/
#scroll-top a.move-scroll-top-image{
  background-color: transparent;
}

/************************************
** その他（Other）
************************************/
pre {
  background-color:#eee;
  border:1px solid #ccc;
  padding:7px;
  overflow: auto;
}

.article__content p {
  margin-bottom: 1.5em;
}

.article__content hr {
  height: 0;
  margin: 2.5em 0;
  border-top: 1px solid rgba(0, 0, 0, .05);
  border-bottom: 1px solid rgba(255, 255, 255, .3);
}

.article__content .notes {
  color: #999;
  font-size: 12px;
}

/************************************
** レイアウト（Layout）
************************************/
* {
  box-sizing: border-box;
}

.l-wrapper {
  width: 960px;
  position: relative;
  height: auto !important;
  height: 100%;
  min-height: 100%;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.l-content {
  padding-bottom: 166px;
}

.l-footer {
  width: 100%;
  clear: both;
}

.l-left {
  float: left;
}

.l-right {
  float: right;
}

.header {
  /* padding: 80px 0; */
  text-align: left;
  margin-left: 30px;
  margin-right: 30px;
}

.header h1 {
  margin-top:16px;
  margin-bottom:10px;
  font-size: 30px;
  line-height: 100%;
}

.header h1 a {
  text-decoration:none;
  color:#333;
  font-size:30px;
  font-weight:normal;
}

.description {
  color: #999;
  margin:0;
  line-height:140%;
  font-size:15px;
  margin-right:20px;
  margin-bottom:10px;
  font-weight:normal;
}

.footer .poweredby {
  width: 138px;
  margin: 0 auto;
}

.footer .poweredby__body {
  background: #9C9C9C;
  text-align: center;
  font-size: 10px;
  padding: 3px;
  color: #fff;
}

.footer .poweredby__body a {
  color: #fff;
}

.main {
  width: 1000px;
  padding: 20px 29px 30px;

  background-color:#fff;
  border-radius: 4px;
  margin-bottom: 30px;
}

.side {
  width: 300px;
}
.side ul,
.side ol {
  list-style: none;
}

.side--right {
  float: right;
}

.side--left {
  float: left;
  margin-right: 40px;
}

.heading {
  color: #333;
  font-weight: bold;
  font-size: 30px;
  margin-bottom: 40px;
}

.entry {
  margin-bottom: 35px;
  padding-bottom: 15px;
}

.entry__thumbnail {
  margin: 0 15px 10px 0;
  width: 150px;
  height: 150px;
  overflow: hidden;
  position: relative;
  float: left;
  border: 1px solid #ccc;
}

.entry__thumbnail a:hover {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=90);
  opacity: 0.9;
}

.entry__thumbnail img {
  position: relative;
  top: 50%;
  left: 50%;
  -moz-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.entry__thumbnail {
  text-align: center\9;
}

.entry__thumbnail:not(:target) {
  text-align: left\9;
}

.entry__thumbnail img {
  top: auto\9;
  left: auto\9;
}

.entry__thumbnail img:not(:target) {
  top: 50%;
  left: 50%;
}

.entry-content{
  margin-left: 160px;
}

.entry h2{
  margin-bottom:5px;
  margin-top: 0;
}

.entry h2 a{
  color:#333;
  font-size:24px;
  text-decoration:none;
  font-weight:bold;
}

.entry__title {

}

.entry__title a {
  color: #333;
}

.meta {
  margin-bottom: 0.5em;
  text-align: right;
  background-color: #F7F7F7;
  color: #555;
  font-size: 16px;
}

.meta {
  text-align:left;
  margin: 7px auto 15px;
}

.meta .date,
.meta .tag {
  display: none;
  padding-right: 0.7em;
}

.article--all {
  margin-bottom: 60px;
}

.article__heading {
}

.article__title {
  margin-bottom: 0;
}

.article__title a {
  color: #333;
}

.article__content img {
  max-width: 100%;
  height: auto;
  margin-bottom: 10px;
}

.article__content img:hover {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=90);
  opacity: 0.9;
}



.module {
  margin-bottom: 40px;
}

.module__heading {
  margin-bottom: 10px;
}

.module--recent-entry .recent-entry__item {
  margin: 15px 0;
}

.module--recent-entry .recent-entry__item a {
  display: block;
  color: #333;
  padding: 0;
  overflow: hidden;
}

.module--recent-entry .recent-entry__item a img:hover {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=90);
  opacity: 0.9;
}

.module--recent-entry .recent-entry__thumbnail {
  margin: 0;
  margin-right: 10px;
  float: left;
  width: 70px;
  height: 70px;
  overflow: hidden;
  position: relative;
}

.module--recent-entry .recent-entry__thumbnail img {
  position: relative;
  min-width: 70px;
  min-height: 70px;
  top: 50%;
  left: 50%;
  -moz-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.module--recent-entry .recent-entry__thumbnail img {
  top: auto\9;
  left: auto\9;
}

.module--recent-entry .recent-entry__thumbnail img:not(:target) {
  top: 50%;
  left: 50%;
}

.module--recent-entry .recent-entry__title {
  margin: 0;
  font-size: 1em;
  /* font-weight: bold; */
  overflow: hidden;
  margin-bottom: 3px;
}

.module--recent-entry .recent-entry__body {
  line-height: 1.5;
  overflow: hidden;
  margin: 0;
}

.module--calendar table {
  width: 260px;
  margin-left: auto;
  margin-right: auto;
}

.module--calendar caption {
  font-weight: bold;
  padding-bottom: 5px;
}

.module--calendar th,
.module--calendar td {
  text-align: center;
}

.module--calendar .month {
  display: inline-block;
  margin-left: 25px;
  margin-right: 25px;
}

.module--calendar .prev,
.module--calendar .next {
  font-weight: 100;
}

.module--category-recent-entry {
  margin-bottom: 60px;
}

.module--category-recent-entry .module__heading {
  margin-bottom: 10px;
}

.module--category-recent-entry .recent-entry__item {
  display: inline-block;
  margin-right: 5px;
  margin-bottom: 15px;
  width: 131px;
  height: 131px;
}

.module--category-recent-entry .recent-entry__item p {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  margin: 0;
}

.module--category-recent-entry .recent-entry .recent-entry__thumnail {
  display: block;
  width: 131px;
  height: 131px;
  overflow: hidden;
  position: relative;
}

.module--category-recent-entry .recent-entry .recent-entry__thumnail img {
  position: relative;
  min-width: 131px;
  min-height: 131px;
  top: 50%;
  left: 50%;
  -moz-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.module--category-recent-entry .recent-entry .recent-entry__thumnail img:hover {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=90);
  opacity: 0.9;
}

.module--category-recent-entry .recent-entry .recent-entry__thumnail img {
  top: auto\9;
  left: auto\9;
}

.module--category-recent-entry .recent-entry .recent-entry__thumnail img:not(:target) {
  top: 50%;
  left: 50%;
}

.module--profile .profile__heading {
  float: left;
  margin-right: 5px;
}

.module--profile .profile__image {
  margin-top: 5px;
  margin-bottom: 10px;
  text-align: center;
}

.module--profile .profile__image img {
  max-width: 100%;
  height: auto;
}

.module--search .search {
  border: 1px solid #ccc;
  position: relative;
}

.module--search .search__text {
  padding: 6px 10px;
  width: 80%;
  line-height: 1.2;
}

.module--search .search__submit {
  background: #999;
  color: #fff;
  width: 20%;
  height: 100%;
  position: absolute;
  right: 0;
  border-radius: 0;
}

.module--search .search__submit:hover {
  background: #999;
}

.module--comments .module__heading {
  margin-bottom: 10px;
}

.module--comments .comments__item {
  margin-bottom: 15px;
  padding-bottom: 5px;
  border-bottom: 1px dotted #ccc;
}

.module--comments .comments__user-name {
  font-weight: bold;
}

.module--comments .comments__content {
  margin-bottom: 5px;
}

.module--comments .comments__meta {
  font-size: 12px;
  color: #ccc;
  text-align: right;
}

.module--comments .comments__leave {
  text-align: right;
}

.module--comments .comment-form {
  margin-bottom: 15px;
}

.module--comments .comment-form__heading {
  font-weight: bold;
}

.module--comments .comment-form__body {
	margin-left: 0;
}

.module--comments .img-confirm-form__heading {
  font-weight: bold;
  margin-bottom: 5px;
}

.module--comments .img-confirm-form__body p {
  margin-bottom: 15px;
}

.module--popular-entry .module__body ol li {
  margin-bottom: 5px;
  list-style-type: decimal;
  list-style-position: inside;
  padding-left: 1em;
  text-indent: -1em;
}

.upload-detail__entry-title {
  margin-bottom: 30px;
}

.upload-detail__entry-title .date {
  display: none;
  color: #ccc;
  font-size: 12px;
  margin-left: 10px;
}

.upload-detail__date {
  display: none;
  margin-bottom: 40px;
}

.upload-detail__date .upload-year {
  font-weight: bold;
  border-bottom: 1px dashed #ccc;
  font-size: 22px;
  margin-bottom: 5px;
  text-align: center;
}

.upload-detail__date .upload-month {
  display: none;
  text-align: center;
}

.upload-detail__date .upload-month__item {
  display: none;
  margin: 0 8px;
}

.upload-detail__date .upload-month__item.is-active {
  display: none;
  background: #999;
  color: #fff;
  padding: 2px 4px;
}

.upload-detail__date .upload-month__item.is-active a {
  display: none;
  color: #fff;
}

.upload-detail__content .content-heading {
  text-align: center;
}

.upload-detail__content .content-body {
  text-align: center;
  margin: 0px auto 5px;
  height: 400px;
  display: table;
  table-layout: fixed;
  width: 100%;
}

.upload-detail__content .content-body .content-inner {
  display: table-cell;
  vertical-align: middle;
}

.upload-detail__content .content-body img {
  max-height: 400px;
  max-width: 100%;
}

.upload-detail .upload-list {
  margin-top: 5px;
}

.upload-detail .upload-list__item {
  display: inline-block;
  margin-right: 10px;
  margin-bottom: 15px;
  width: 91px;
  height: 91px;
}

.upload-detail .upload-list__item.is-mg-hidden {
  margin-right: 0;
}

.upload-detail .upload-list__item a:hover {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=90);
  opacity: 0.9;
}

.upload-detail .upload-list__thumnail {
  display: block;
  width: 91px;
  height: 91px;
  overflow: hidden;
  position: relative;
}

.upload-detail .upload-list__thumnail img {
  position: relative;
  min-width: 91px;
  min-height: 91px;
  top: 50%;
  left: 50%;
  -moz-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.upload-detail .upload-list__thumnail img:hover {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=90);
  opacity: 0.9;
}

.upload-detail .upload-list__thumnail img {
  top: auto\9;
  left: auto\9;
}

.upload-detail .upload-list__thumnail img:not(:target) {
  top: 50%;
  left: 50%;
}

.tag-cloud {
  background: #f2f2f2;
  padding: 10px;
  margin-bottom: 30px;
  line-height: 1.5;
  border-radius: 2px;
}

.tag-search {
  text-align: right;
}
.tag-photos {
  margin-top: 20px;
}
.tag-photos__item {
  display: inline-block;
  margin-right: 16px;
  margin-bottom: 15px;
  width: 140px;
}

.tag-photos__item--nmgr {
  margin-right: 0;
}

.tag-photos__thumnail {
  display: block;
  width: 140px;
  height: 140px;
  overflow: hidden;
}

.tag-photos__thumnail img {
  position: relative;
  min-width: 140px;
  min-height: 140px;
  top: 50%;
  left: 50%;
  -webkit-transform: translateY(-50%) translateX(-50%);
  -ms-transform: translateY(-50%) translateX(-50%);
  transform: translateY(-50%) translateX(-50%);
}

.tag-photos__title {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  margin: 0;
}

.tag-photos__detail {
  font-size: 12px;
  line-height: 1.2;
}
.tag-photos__detail p {
  margin: 5px 0;
}

.tag-audios {
	margin: 10px 0;
}

.message {
  margin-bottom: 15px;
  text-align: center;
  background: #ccc;
  border: 1px dotted #999;
  padding: 5px;
}

.message--error {
  border: 1px dotted #f00;
  background: #FFE4E4;
  padding: 0;
}

.message__title--error {
  color: #f00;
  font-weight: bold;
}

.pager {
  text-align: center;
  margin-bottom: 60px;
}

.pager__item {
  display: inline-block;
  margin-right: 3px;
  margin-left: 3px;
  margin-bottom: 10px;
}

.pager__item a,
.pager__item span {
  display: block;
 /* For IE 6/7 */
  *display: inline;
  *zoom: 1;
  color: #333;
  width: 28px;
  height: 28px;
  text-align: center;
  font-weight: lighter;
  line-height: 1.8;
  border: 1px solid #ccc;
}

.pager__item a:hover {
  background: #999;
  border: 1px solid #999;
  color: #fff;
}

.pager__item.is-active span {
  border: 1px solid #999;
  background: #999;
  color: #fff;
}

.read-more {
  margin-top: 15px;
  text-align: right;
}

.read-more a {
  text-decoration: underline;
}

.read-more--bdt {
  padding-top: 10px;
  margin-top: 65px;
  border-top: 1px dotted #ccc;
}

.read-more--mgb-60 {
  margin-bottom: 60px;
}

.permalink {
  text-align: center;
  margin-bottom: 80px;
}

.permalink--bdt {
  padding-top: 10px;
  margin-top: 65px;
  border-top: 1px dotted #ccc;
}

.permalink .prev:before,
.permalink .next:after {
  content: "";
  display: inline-block;
  margin: auto;
  width: 0px;
  height: 0px;
  border: 4px solid transparent;
}

.permalink .prev {
  float: left;
}

.permalink .prev:before {
  border-right: 4px solid #333;
  margin-right: 10px;
}

.permalink .prev:hover:before {
  border-right: 4px solid #888;
}

.permalink .next {
  float: right;
}

.permalink .next:after {
  border-left: 4px solid #333;
  margin-left: 10px;
}

.permalink .next:hover:after {
  border-left: 4px solid #888;
}

.quote__source {
  font-size: 10px;
  text-align: right;
}

.no-image {
  border: 1px solid #999;
  width: 100%;
  height: 100%;
  position: relative;
}

.entry_no-image {
  border: 1px solid #ccc;
  margin-bottom: 10px;
  width: 150px;
  height: 150px;
  overflow: hidden;
  position: relative;
  float: left;
  margin-right: 15px;
}

.no-image--inner {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  text-align: center;
  height: 16px;
  line-height: 1;
  color: #999;
}

.no-image--txt {
  width: 100%;
  text-align: center;
  padding: 100px 0;
  color: #999;
  border: 1px solid #ccc;
  margin-bottom: 40px;
}

/**
 * module
 */

.icn {
  display: inline-block;
  background: url(https://blog.seesaa.jp/img/bg/simple_2015_01/icn_sprite.png) no-repeat;
  margin-right: 5px;
}

.icn--calendar {
  background-position: 0 0;
  width: 14px;
  height: 12px;
  vertical-align: -2px;
}

.icn--tag {
  background-position: -29px 0;
  width: 12px;
  height: 12px;
  vertical-align: -2px;
  margin-right: 2px;
}

.form .input {
  padding: 6px 10px;
  line-height: 1.2;
  border: 1px solid #ccc;
  width: 60%;
}

.form .input--submit {
  padding: 10px 0;
  width: 30%;
  display: block;
  background: #999;
  color: #fff;
}

.form .input--submit:hover {
  background: #888;
}

.form textarea {
  border: 1px solid #ccc;
  width: 80%;
  padding: 6px 10px;
}

.font-s {
  font-size: 12px;
}

.l-content,
.entry,
.module--recent-entry .recent-entry__item,
.module--profile .profile,
.upload-detail .upload-list,
.permalink {
  *zoom: 1;
}

.l-content:after,
.entry:after,
.module--recent-entry .recent-entry__item:after,
.module--profile .profile:after,
.upload-detail .upload-list:after,
.permalink:after {
  content: "\0020";
  display: block;
  height: 0;
  clear: both;
  overflow: hidden;
  visibility: hidden;
}

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {

  .entry__thumbnail {
    text-align: left !important;
  }

  .entry__thumbnail img {
    top: 50% !important;
    left: 50% !important;
  }

  .module--recent-entry .recent-entry__thumbnail img {
    top: 50% !important;
    left: 50% !important;
  }

  .module--category-recent-entry .recent-entry .recent-entry__thumnail img {
    top: 50% !important;
    left: 50% !important;
  }

  .upload-detail .upload-list__thumnail img {
    top: 50% !important;
    left: 50% !important;
  }
}

@media screen and (-webkit-min-device-pixel-ratio: 2) {

  .icn {
    background: url(https://blog.seesaa.jp/img/bg/simple_2015_01/icn_sprite_2x.png) no-repeat;
    background-size: 28px auto;
    -webkit-background-size: 28px auto;
  }

  .icn--tag {
    background-position: -16px 0;
  }
}

@media screen and (min-width: 321px) and (max-width: 767px) {

  .module--category-recent-entry .recent-entry__item {
    width: 100px;
    height: 100px;
  }

  .module--category-recent-entry .recent-entry .recent-entry__thumnail {
    width: 100px;
    height: 100px;
  }
}

@media screen and (min-width: 768px) and (max-width: 1024px) {

  .l-wrapper {
    width: 768px;
  }

  .main {
    width: 448px;
  }

  .entry__thumbnail {
    width: 448px;
    height: 244px;
  }

  .entry__thumbnail img {
    max-width: 100%;
    max-height: 100%;
  }
  
  .module--category-recent-entry .recent-entry__item {
    width: 120px;
    height: 120px;
  }

  .module--category-recent-entry .recent-entry .recent-entry__thumnail {
    width: 120px;
    height: 120px;
  }
}

@media screen and (max-width: 1024px) {

  .form .input {
    width: 100%;
  }

  .form .input--submit {
    width: 100%;
  }

  .form textarea {
    width: 100%;
  }
}

@media screen and (max-width: 767px) {

  .l-wrapper {
    width: 93%;
    display: block;
    margin-left: auto;
    margin-right: auto;
    word-wrap: break-word;
    overflow: hidden;
  }

  .main {
    width: 100%;
    float: none;
    margin-bottom: 80px;
  }

  .side {
    width: 100%;
    float: none;
  }

  .entry__thumbnail {
    width: 100%;
    height: 200px;
  }

  .entry__thumbnail img {
    max-width: 100%;
    max-height: 100%;
  }

  .meta .date {
    display: none;
    display: block;
  }

  .meta .tag {
    display: block;
  }

  .module--calendar table {
    margin: 0;
  }
}

@media screen and (max-width: 320px) {

  .module--category-recent-entry .recent-entry {
    position: relative;
  }

  .module--category-recent-entry .recent-entry__item {
    width: 86px;
    height: 86px;
  }

  .module--category-recent-entry .recent-entry .recent-entry__thumnail {
    width: 86px;
    height: 86px;
  }
}
#iphone-link { display: none !important; }