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

basic

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

html {}
body {color: #333;}
h1 {}
h2 {
    font-family: Economica,sans-serif;
    font-size: 34px;
    font-weight: bold;
    line-height: 24px;
    padding: 16px;
    border-bottom: 1px solid #aaa;
    margin-bottom: 10px;
}

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

header area

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

header {
	/*background-color: #ccc;*/
	width: 94%;
	padding: 0px 3%;
	position: fixed;
	top: 0;
	z-index: 1;
}
header .inner {
	padding: 20px 0px;
	font-size: 18px;
	color: #fff;
	font-weight: bold;
	/*border-bottom: 1px solid #aaa;*/
}
.scrolled .site-header { /*スクロール時に発現*/
    background-color: #999;
    transition: 1s;
    opacity: .85;
}

/*  ヘッダーナビ  */
/*  http://www.webopixel.net/javascript/1060.html  */
#topbar .inner {
    width: 100%;
    margin: 0 auto;
    padding: 0;
}
#topbar .inner:after {
    content: "";
    clear: both;
    display: block;
}
/* header */
#topbar {
    line-height: 1;
    z-index: 999;
    width: 100%;
    padding: 0;
    top: 0;
    position: fixed;
}
#topbar a,
#topbar {
    color: #fff;
    text-decoration: none;
	font-family: Economica,'Raleway', 'メイリオ', 'Meiryo', sans-serif;
    /*text-shadow: 1px 1px 0 pink, 2px 2px 0 rgba(232, 111, 86, 0.5);*/
    text-shadow: 1px 1px 0 rgba(232, 111, 86, 0.5);
	/*font-weight: normal;*/
}
#topbar {
	/*background-color: rgba(255, 255, 255, .8);*/
}
#topbar .inner {
    position: relative;
}
#topbar .logo {
    float: left;
    position: absolute;
    left: 16px;
    top: 18px;
    font-size: 26px;
}
#global-nav ul {
    list-style: none;
    position: static;
    right: 0;
    bottom: 0;
    font-size: 14px;
}
#global-nav ul li {
    position: static;
}
#global-nav ul li a {
    width: 100%;
    display: block;
    color: #fff;
    padding: 18px 0;
	border-bottom: 1px solid #aaa;
}
#global-nav ul li:first-child a {
	border-top: 1px solid #aaa;
}
/* Fixed */
#topbar.fixed {
    margin-top: 0;
    position: fixed;
    top: 0;
    height: 55px;
    padding-top: 0;
    background: transparent;
}
#topbar.fixed .logo {
    position: absolute;
    left: 16px;
    top: 18px;
    color: #333;
    font-size: 26px;
}
#topbar.fixed #global-nav ul li a {
    color: #333;
    width: 100%;
    display: block;
    color: #fff;
    padding: 18px 0;
}
/* Toggle Button */
#nav-toggle {
    position: absolute;
    right: 12px;
    top: 14px;
    width: 34px;
    height: 36px;
    cursor: pointer;
    z-index: 101;
    display: block;
}
#nav-toggle div {
    position: relative;
}
#nav-toggle span {
    display: block;
    position: absolute;
    height: 5px;
    width: 90%;
    background: #666;
    background: #fff;
    border-radius: 10px;
    left: 0;
    -webkit-transition: .35s ease-in-out;
    -moz-transition: .35s ease-in-out;
    transition: .35s ease-in-out;
}
#nav-toggle span:nth-child(1) {
    top: 0;
}
#nav-toggle span:nth-child(2) {
    top: 11px;
}
#nav-toggle span:nth-child(3) {
    top: 22px;
}

/*ここだけスマホのみCSS*/
@media screen and (max-width: 1024px) {
#topbar a {
    /*color: #333;*/
	/*text-shadow: 2px 2px 2px #222;*/
}
#topbar.open #mobile-head {
    background-color: rgba(0, 0, 0, 0.6);
}
#mobile-head {
    width: 100%;
    height: 56px;
    z-index: 999;
    position: relative;
}
#global-nav {
    position: absolute;/* 開いてないときは画面外に配置 */
    top: -500px;
    /*background: #333;*/
    background: rgba(0, 0, 0, 0.6);
    width: 100%;
    text-align: center;
    /*padding: 10px 0;*/
    -webkit-transition: .5s ease-in-out;
    -moz-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
}
/* #nav-toggle 切り替えアニメーション */
.open #nav-toggle span:nth-child(1) {
    top: 11px;
    -webkit-transform: rotate(315deg);
    -moz-transform: rotate(315deg);
    transform: rotate(315deg);
}
.open #nav-toggle span:nth-child(2) {
    width: 0;
    left: 50%;
}
.open #nav-toggle span:nth-child(3) {
    top: 11px;
    -webkit-transform: rotate(-315deg);
    -moz-transform: rotate(-315deg);
    transform: rotate(-315deg);
}
/* #global-nav スライドアニメーション */
.open #global-nav {
    /* #global-nav top + #mobile-head height */
    -moz-transform: translateY(556px);
    -webkit-transform: translateY(556px);
    transform: translateY(556px);
}
#topbar.fixed {
    background-color: rgba(0, 0, 0, 0.6);
    transition: .6s;
}
#topbar.fixed .logo a {
    color: #fff;
}
#topbar.fixed #nav-toggle span {
    background-color: #fff;
}
.site-title {
    padding: 18px 20px;
    text-align: center;
}
.site-title a {
    font-family: Economica,'Raleway', 'メイリオ', 'Meiryo', sans-serif;
    font-size: 22px;
    font-weight: bold;
    text-decoration: none;
    color: deeppink;
    text-shadow: 1px 1px 0 hsla(0,0%,100%,.75), 2px 2px 0 rgba(232, 111, 86, 0.5);
}

}

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

Contents area

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

#contents {}
#contents .contents-inner {}
section {}
section .section-inner {margin: 0 3%;}
section .section-inner .section-title {
    font-size: 22px;
    /*color: #fff;*/
    padding: 15px 0px 15px;
    font-family: M PLUS Rounded 1c,Economica,'Raleway', 'メイリオ', 'Meiryo', sans-serif;
}
#keyvisual {
	/*background: url(../img/bg-cover.jpg) center center no-repeat;*/
	/*background: url(../img/sorp_1.jpg) center center no-repeat;*/
	/*background: url(../img/alps_1.jpg) center center no-repeat;*/
	/*background: url(../img/smoothie_02.jpg) center center no-repeat;*/
	background: url(../img/MilkyWay_1.jpg) center center no-repeat;
	background-size: cover;
	/*background-attachment: scroll;*/
}
#keyvisual h1 {
	text-align: center;
	padding: 120px 0px 80px;
	font-size: 36px;
	color: #fff;
	font-family: "FP-ヒラギノUD角ゴ StdN W6";
}

#fv {
	/*background: url(../../img/skysea_1.jpg) center center no-repeat;*/
	/*background-size: cover;*/
}
#fv .section-inner {
    margin: auto;
}
#fv .section-inner h1 {
    text-align: center;
    padding: 140px 0px;
    font-size: 36px;
    font-family: Economica,'Raleway', 'メイリオ', 'Meiryo', sans-serif;
    text-shadow: 1px 1px 0 white, 2px 2px 0 rgba(232, 111, 86, 0.5);
}
#articles-title {
    background: url(../../img/skysea_1.jpg) center 0 no-repeat;
    /*background-size: cover;*/
}
#articles-title h2 {
    /*margin: 55px 0px 0px;*/
    margin-bottom: 0px;
    padding: 120px 0px;
    text-align: center;
    border: none;
    color: #fff;
    font-family: Economica,'Raleway', 'メイリオ', 'Meiryo', sans-serif;
    text-shadow: 1px 1px 0 darkgray;
}
.slider{
    /*margin: 100px auto;*/
    /*width: 80%;*/
    opacity: 0;
    /*transition: 1s;どちらでも*/
}
.slick-initialized {
    opacity: 1;
}
.slider img {
    width: 100%;
    height: 350px;
    object-fit: cover;
}
/*slick setting*/
.slick-prev:before,
.slick-next:before {
    /*color: #000;*/
    /*font-size: 100px;*/
}
.slick-prev {
    z-index: 2;
    left: 18px!important;
    border-radius: 50%;
    background-color: hsla(0,0%,100%,.75)!important;
    width: 50px!important;
    height: 50px!important;
}
.slick-next {
    z-index: 2;
    right: 18px!important;
    border-radius: 50%;
    background-color: hsla(0,0%,100%,.75)!important;
    width: 40px!important;
    height: 40px!important;
}
.slick-prev:before,
.slick-next:before {
    color: #222!important;
}
ul.slider li {
    position: relative;
}
ul.slider li a .fv-post-tit {
    position: absolute;
    bottom: 0px;
    width: 100%;
    /*font-weight: bold;*/
    color: #fff;
    line-height: 1.5;
    /*background: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.7));*/
    background-image: linear-gradient(to bottom, rgba(179,179,179,0), rgba(51,51,51,0.7));
    padding: 90px 10px 18px;
}

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

Contents area _ postlist-area

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

#post-area {}
#post-area ul {
	border-top: 1px solid #eee;
}
#post-area ul li {
	width: 100%;
}
#post-area ul li a {
	display: table;
    width: 100%;
    padding: 10px 0px;
    text-decoration: none;
    color: #666;
    border-bottom: 1px solid #eee;
}
#post-area ul li a figure,
#post-area ul li a .post-contents {
	display: table-cell;
	vertical-align: top;
}
#post-area ul li a figure {
	padding-left: 10px;
	width: 105px;
}
#post-area ul li a figure img {
	width: 105px;
	height: 75px;
    object-fit: cover;
	margin-right: 5px;vertical-align: bottom;
}
#post-area ul li a .post-contents {
	/*font-family: Raleway, メイリオ, Meiryo, sans-serif;*/
    font-size: 13px;
    line-height: 1.6;
    padding: 0px 10px;
}
#post-area .pagenation {}
#post-area .pagenation .next-btn {
	padding: 25px 0px 55px;
	text-align: center;
}
#post-area .pagenation .next-btn a {
	display: inline-block;
	font-family: Economica,'Raleway', 'メイリオ', 'Meiryo', sans-serif;
    padding: 0px;
    border: none;
    color: darkslateblue;
}

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

Contents area _ articlepage-area

--------------------------------------------- */
#post-contents-area {
    width: 92.5%;
    margin: 0 auto 60px;
    line-height: 1.8em;
    color: #333;
}
#post-contents-area h1.post-title {
    padding: 20px 0px 8px;
    font-size: 24px;
    line-height: 1.3;
}
#post-contents-area .date {
    font-size: 12px;
    text-align: right;
    margin-bottom: 10px;
    line-height: 1.8;
}
#post-contents-area h1 {}
#post-contents-area h2 {
    font-size: 20px;
    line-height: 32px;
    padding: 10px 16px;
    margin-bottom: 20px;
    border-left: 6px solid #d3e3f6;
    border-bottom: none;
    background-color: #f8f9fa;
}
/*#post-contents-area h2 {*/
    /*font-size: 22px;*/
    /*line-height: 32px;*/
    /*padding: 0px 2px 6px;*/
    /*margin-bottom: 20px;*/
    /*position: relative;*/
    /*border-bottom: 3px solid #fd95d0; /*#6ca9ea*/
/*}*/
/*#post-contents-area h2:after {*/
    /*width: 30%;*/
    /*display: block;*/
    /*content: "";*/
    /*line-height: 0;*/
    /*overflow: hidden;*/
    /*position: absolute;*/
    /*left: 0;*/
    /*bottom: -3px;*/
    /*border-bottom: 3px solid #fd48af;/*#0048be*/
    /*box-sizing: border-box;*/
/*}*/
#post-contents-area h3 {
    font-size: 20px;
    line-height: 26px;
    padding: 0px 10px 10px;
    /*border-bottom: 1px dashed #ccc;*/
    border-bottom: 4px dotted #d3e3f6;
    margin-bottom: 24px;
}
#post-contents-area h4 {
    font-size: 17px;
    position: relative;
    padding: 14px 12px 14px 6px;
    background-color: #e0edff;
    margin-bottom: 20px;
}
#post-contents-area h5 {
    font-size: 16px;
    line-height: 24px;
    padding: 15px 0px 5px;
    border-bottom: 2px solid #ddd;
    margin-bottom: 20px;
}
#post-contents-area p {
    margin-bottom: 16px;
}
#post-contents-area img {
    display: block;
    margin: 0 auto;
}
#post-contents-area img.surround {
    width: 100%;
    padding: 4px;
    webkit-box-shadow: 0 1px 2px rgba(0,0,0,.075);
    box-shadow: 0 1px 2px rgba(0,0,0,.075);
    border: 1px solid #ddd;
    border-radius: 4px;
    -webkit-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}
#post-contents-area .link {
    width: 90%;
    margin: auto;
}
#post-contents-area .link img {
    margin: 0 auto;
}
#post-contents-area table {
    width: 100%;
}
#post-contents-area table th,
#post-contents-area table td {
    border: 1px solid #ccc;
    padding: 4px 15px;
}
#post-contents-area table th {
    background-color: #ff3366;
    color: #fff;
}
#post-contents-area table td {
    font-size: 13px;
}
#post-contents-area .review {
    padding-bottom: 25px;
}
#post-contents-area .review .inner {
    padding: 10px 8px;
    border: 1px solid #ccc;
}
#post-contents-area .review .ctitle {
    font-weight: bold;
}
#post-contents-area .review .annotation {
    padding: 5px 10px;
    font-size: 13px;
}
#post-contents-area .caution {
    position: relative;
    border-top: solid 2px orange;
    border-bottom: solid 2px orange;
    background: #E9FFA5;
    line-height: 1.7;
    padding: 10px 13px;
    margin: 48px 0 65px;
}
#post-contents-area .caution:after {
    position: absolute;
    font-family: FontAwesome,'Quicksand','Avenir','Arial',sans-serif;
    content: 'CAUTION !';
    background: red;
    color: #fff;
    left: 0px;
    bottom: 100%;
    border-radius: 4px 4px 0 0;
    padding: 5px 10px 4px;
    font-size: 1em;
    line-height: 1.25;
    letter-spacing: 0.08em;
}
#post-contents-area .kometanpaku {
    position: relative;
    border-top: solid 2px #79a2f5;
    border-bottom: solid 2px #79a2f5;
    background: #edf3ff;
    font-size: 0.9em;
    line-height: 1.7;
    padding: 10px 13px;
    margin: 48px 0 25px;
}
#post-contents-area .kometanpaku:after {
    position: absolute;
    /*font-family: FontAwesome,'Quicksand','Avenir','Arial',sans-serif;*/
    content: '加水分解コメタンパクとは';
    background: #79a2f5;
    color: #fff;
    left: 0px;
    bottom: 100%;
    border-radius: 4px 4px 0 0;
    padding: 5px 10px 4px;
    font-size: 1em;
    line-height: 1.25;
    letter-spacing: 0.08em;
}
#post-contents-area .point {
    position: relative;
    border-top: solid 2px #80c8d1;
    border-bottom: solid 2px #80c8d1;
    background: #f4f4f4;
    line-height: 1.7;
    padding: 10px 13px;
    margin: 18px 0 45px;
}
#post-contents-area .point:after {
    position: absolute;
    font-family: FontAwesome,'Quicksand','Avenir','Arial',sans-serif;
    content: 'POINT';
    background: #80c8d1;
    color: #fff;
    left: 0px;
    bottom: 100%;
    border-radius: 4px 4px 0 0;
    padding: 5px 10px 4px;
    font-size: 1em;
    line-height: 1.25;
    letter-spacing: 0.08em;
}
#post-contents-area .photos {
    margin: 10px 0 25px;
}
#post-contents-area h2.tbl {
    display: table;
    width: 100%;
    padding: 0px 0px 4px;
    border-bottom: 1px solid #ccc;
    margin-bottom: 18px;
}
#post-contents-area h2.tbl .icon,
#post-contents-area h2.tbl .sec_title {
    display: table-cell;
    vertical-align: middle;
}
#post-contents-area h2.tbl .icon {
    width: 65px;
}
#post-contents-area h2.tbl .icon img {
    display: block;
    width: 70%;
    margin: auto;
}
#post-contents-area h2.tbl .sec_title {
    font-size: 20px;
    line-height: 1.4;
    letter-spacing: -0.05em;
}
#post-contents-area .article-author-box {
    padding: 22px 13px 20px;
    border: 1px solid #eee;
}
#post-contents-area .article-author-box .author-prof {
    font-size: 14px;
    font-weight: bold;
    line-height: 24px;
    padding-bottom: 5px;
    border-bottom: 2px solid #ddd;
    margin-bottom: 15px;
}
#post-contents-area .article-author {
    display: table;
    width: 100%;
    /*padding: 20px 13px;*/
    text-decoration: none;
    /*border: 1px solid #eee;*/
}
#post-contents-area .article-author .author-text,
#post-contents-area .article-author .author-image {
    display: table-cell;
    vertical-align: top;
}
#post-contents-area .article-author .author-text {
    width: 70%;
    font-size: 13px;
    line-height: 1.6;
    padding-right: 12px;
}
#post-contents-area .article-author .author-image {
    object-fit: cover;
}
#post-contents-area .shake a {
    -webkit-appearance: none;
    background-color: none;
    display: block;
    width: 98%;
    border: none;
    padding: 0;
    /*margin: 0px auto 30px;*/
    margin: 0px auto 6px;
}
#post-contents-area .shake a {
    animation-name: anim01;
    animation-duration: .7s;
    animation-iteration-count : infinite;
}
#post-contents-area button {
    -webkit-appearance: none;
    background-color: none;
    display: block;
    width: 98%;
    border: none;
    padding: 0;
    /*margin: 0px auto 30px;*/
    margin: 0px auto 6px;
}
#post-contents-area button {
    animation-name: anim01;
    animation-duration: .5s;
    animation-iteration-count : infinite;
}
#post-contents-area button {
    color: #fff;
    text-shadow: 0px 0px 3px rgba(0,0,0,0.5);
    background: -moz-linear-gradient(top,#fbdae8, #f37cae 50%,#f05d9a 50%,#f16da4);
    background: -webkit-gradient(linear, left top, left bottom, from(#fbdae8), color-stop(0.5,#f37cae), color-stop(0.5,#f05d9a), to(#f16da4));
    border-radius: 6px;
    -moz-border-radius: 6px;
    -webkit-border-radius: 6px;
    /*border: 1px solid #ee1e89;*/
    border: 1px solid #f37cae;
    -moz-box-shadow: 1px 1px 1px rgba(000,000,000,0.3),inset 0px 0px 3px rgba(255,255,255,0.5);
    -webkit-box-shadow: 1px 1px 1px rgba(000,000,000,0.3), inset 0px 0px 3px rgba(255,255,255,0.5);
}
#post-contents-area button a {
    display: block;
    text-decoration: none;
    padding: 15px;
    text-align: center;
    font-size: 18px;
    color: #fff;
    font-weight: bold;
}
#post-contents-area .customlink {
    margin-bottom: 80px;
}
#post-contents-area .customlink .here {
    font-size: 13px;
}
#post-contents-area .customlink a {
    display: block;
    border: 1px solid #ccc;
    border-radius: 4px;
    text-decoration: none;
}
#post-contents-area .customlink a .above {}
#post-contents-area .customlink a .above img {
    border-radius: 4px 4px 0px 0px;
}
#post-contents-area .customlink a .below {}
#post-contents-area .customlink a .below .belowtxt_1 {
    font-size: 13px;
    line-height: 1.5;
    padding: 4px 15px 2px;
    color: #555;
}
#post-contents-area .customlink a .below .belowtxt_2 {
    font-size: 12px;
    padding: 0px 15px 6px;
    color: #aaa;
}
#post-contents-area .customlink a .below .belowtxt_2 .official {
    display: inline-block;
    /*background-color: #aaa;*/
    background-color: #f36;
    color: #fff;
    padding: 0px 3px;
    line-height: 1.5;
    letter-spacing: -0.2px;
    font-weight: bold;
    border-radius: 4px;
}
#post-contents-area .customlink a .below .belowtxt_2 .mybreak {
    padding: 0px 8px;
}
#post-contents-area .customlink .customlink_alert,
#post-contents-area .link_alert {
    width: 98%;
    color: #676767;
    margin: 6px auto;
    font-size: 13px;
    line-height: 1.7;
}
#post-contents-area .link_alert {
    margin-top: 6px;
    margin-bottom: 55px;
}
.reviewer {
    margin: 12px 0px 10px;
    font-size: 0.9em;
}
.notes {
    padding: 0px 10px;
    text-align: right;
    font-size: 11px;
    line-height: 1.8;
}

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

Contents area _ ad-area

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

#ad-area {}
#ad-area .pr-dispray {
display: flex;
align-items: center;
margin: 15px 0px;
color: #777;
font-family: Economica,'Raleway', 'メイリオ', 'Meiryo', sans-serif;
}
#ad-area .pr-dispray:before,
#ad-area .pr-dispray:after {
border-top: 1px solid #999;
content: "";
flex-grow: 1;
}
#ad-area .pr-dispray:before,
#ad-area .pr-dispray:after {
margin: 0 1rem;
}
#ad-area .ad-cover {
    margin: 0px auto 40px;
}

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

Contents area _ categories-area

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

#categories-area {
    margin-bottom: 40px;
}
#categories-area ul.container {
    display: flex;
    flex-wrap: wrap;
}
#categories-area ul.container li {
    width: 48.5%;
    margin-left: 1.5%;
    margin-bottom: 5px;
    border-bottom: 1px solid #eee;
    box-sizing: border-box;
}
#categories-area ul.container li:nth-child(2n+1) {
    border-right: 1px solid #eee;
}
#categories-area ul.container li:nth-child(2n) {}
#categories-area ul.container li a {
    display: block;
    padding: 10px;
    font-family: Economica,'Raleway', 'メイリオ', 'Meiryo', sans-serif;
    font-size: 12px;
    color: #666;
    text-decoration: none;
}

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

Contents area _ tags-area

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

#tags-area {
    margin-bottom: 65px;
}
#tags-area .tag-cloud {
    margin: 0 10px;
}
#tags-area .tag-cloud a {
    display: inline-block;
    padding: 6px 8px;
    font-size: 13px!important;
    font-family: Economica,'Raleway', 'メイリオ', 'Meiryo', sans-serif;
    background: #2098a8;
    white-space: nowrap;
    margin: 4px 0px 4px;
    border-radius: 4px;
    text-decoration: none;
    color: #fff;
}

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

Contents area _ form-area

--------------------------------------------- */
#contact-contents {}
#contact-contents form {
    margin-bottom: 65px;
}
#contact-contents form #sec {}
#contact-contents form #sec input,
#contact-contents form #sec textarea {
    -webkit-appearance: none;
    -webkit-tap-highlight-color: rgba(0,0,0,0.2);
    border-radius: 2px;
    border: 1px solid #aaa;
    box-sizing: border-box;
    width: 100%;
    padding: 5px;
    font-size: 13px;
    margin-bottom: 25px;
}
#contact-contents form #confirm {}
#contact-contents form #confirm table {
    margin-bottom: 35px;
}
#contact-contents form #confirm table th,
#contact-contents form #confirm table td {
    padding: 20px 10px;
    border-top: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
    font-size: 13px;
    line-height: 1.5;
    vertical-align: middle;
}
#contact-contents form #confirm table th {
    width: 30%;
    vertical-align: top;
}
#contact-contents form #confirm ul {
    display: flex;
    flex-wrap: wrap;
}
#contact-contents form #confirm ul li {
    width: 50%;
    box-sizing: border-box;
    margin-bottom: 30px;
}
#contact-contents form #confirm input,
#contact-contents form #confirm input[type="button"] {
    -webkit-appearance: none;
    display: block;
    width: 70%;
    margin: auto;
    padding: 10px;
    border: 1px solid #999;
    border-radius: 2px;
}
#contact-contents .thanks {
    margin-bottom: 65px;
}
#contact-contents .thanks p {
    font-size: 14px;
    line-height: 1.5;
}

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

footer area

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

footer {
	text-align: center;
	background-color: #31303b;
	color: #fff;
	border-top: 1px solid #ccc;
}
footer .fttitle {
	text-align: left;
	padding: 30px 20px;
}
footer .fttitle a {
	font-family: Economica,'Raleway', 'メイリオ', 'Meiryo', sans-serif;
	color: #777;
	font-size: 17px;
	text-decoration: none;
}
footer hr {
	width: 90%;
	margin: auto;
	border-color: #555;
}
footer .ftmenu-wrap {
	display: flex;
	flex-wrap: wrap;
	padding: 30px 10px;
}
footer .ftmenu {
	width: 50%;
	text-align: left;
}
footer .ftmenu .inner {
	padding: 0px 15px;
}
footer .ftmenu-name {
	font-family: Economica,'Raleway', 'メイリオ', 'Meiryo', sans-serif;
	padding-bottom: 15px;
	font-size: 13px;
}
footer ul li {
	padding: 10px 0px;
}
footer ul li a {
	display: inline-block;
	color: #777;
	font-family: Economica,'Raleway', 'メイリオ', 'Meiryo', sans-serif;
	text-decoration: none;
	font-size: 12px;
}
footer p {
	font-size: 13px;
	line-height: 22px;
	padding: 20px 0px;
	margin-bottom: 0px;
	font-family: Economica,'Raleway', 'メイリオ', 'Meiryo', sans-serif;
}
footer .ftlogo {
	width: 30vw;
	margin: auto;
	padding-bottom: 20px;
}

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

tablet device

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


@media screen and (min-width: 768px) {

body {
    width: 100vw;
    margin: auto;
}

}

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

PC device

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


@media (min-width: 1024px) {

body {
    width: 100%;
}

header .inner {
    border-bottom: none;
}
/*  ヘッダーナビ  */
#topbar .inner {
    width: 65vw;
}
#topbar {
    top: -100px;
    position: absolute;
    margin: 100px auto 0;
    padding: 30px 0 0;
    background: none;
}
#topbar .logo {
    position: initial;
    left: 0;
    top: 0;
    font-size: 36px;
}
#topbar .logo a {
    padding: 0px 30px;
}
#topbar.fixed .logo a {
    color: #fff;
}
#global-nav ul {
    position: absolute;
    bottom: 2px;
}
#global-nav ul li {
    float: left;
    position: relative;
}
#global-nav ul li a {
    padding: 0 30px;
    width: initial;
    display: initial;
    border: none;
}
#global-nav ul li:first-child a {
    border: none;
}
#topbar.fixed {
    padding-top: 15px;
    background: #fff;
    /*background: rgba(255,255,255,.7);*/
    background: rgba(0,0,0,.5);
    transition: top 0.65s ease-in;
    -webkit-transition: top 0.65s ease-in;
    -moz-transition: top 0.65s ease-in;
}
#topbar.fixed .logo {
    font-size: 32px;
    position: initial;
    left: 0;
    top: 0;
}
#topbar.fixed #global-nav ul li a {
    padding: 10px 30px;
    display: initial;
}
#nav-toggle {
    display: none;
}
#global-nav ul li a {
    padding: 10px 30px;
    font-size: 18px;
}
#global-nav ul li:after {
    position: absolute;
    content: "";
    display: block;
    width: 100%;
    height: 3px;
    bottom: -8px;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
}
#global-nav ul li:hover:after {
    background: #fff;
    bottom: -12px;
}
*::after, * {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
/*  ヘッダーナビここまで  */
#fv {
    width: 100vw;
    margin: auto;
}
#articles-title {
    background-size: cover;
}
#fv ul.slider li a .fv-post-tit {
    padding: 90px 80px 30px;
    font-size: 20px;
    line-height: 1.8;
}
.slick-prev {
    left: 235px!important;
}
.slick-next {
    right: 235px!important;
}
#columns {
    display: table;
    width: 70vw;
    margin: auto;
}
#columns #column-l,
#columns #column-r {
    display: table-cell;
    vertical-align: top;
}
#columns #column-l {
    width: 70%;
    padding-top: 25px;
    padding-right: 60px;
}
#columns .pagenation {
    margin: 30px 0px 50px;
}
#columns #column-r {
    width: 30%;
    padding-top: 25px;
}
#post-contents-area h1.post-title {
    font-size: 30px;
    padding: 30px 0 27px;
}
#post-contents-area .date {
    margin-bottom: 30px;
}
#column-l .inner {
    display: flex;
    flex-wrap: wrap;
    box-sizing: border-box;
}
#column-l .inner .postcover {
    width: 50%;
    padding: 10px;
}
#column-l .inner .postcover:first-child {
    width: 100%;
}
#column-l .inner .postcover:first-child .blogpost a .eyecatch img {
    width: 260px;
    height: 150px;
}
#column-l .inner .postcover:first-child .blogpost a .posttext {
    padding: 0px 20px;
    line-height: 1.6;
}
#column-l .inner .postcover:first-child .blogpost a .posttext .postmeta {
    padding-bottom: 6px;
}
#column-l .inner .postcover .blogpost {
    padding: 10px;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}
#column-l .inner .postcover .blogpost a {
    border-bottom: none;
}
#column-l .inner .postcover .blogpost a .posttext h2 {
    font-size: 1.25em;
    font-weight: bold;
    padding-bottom: 4px;
}
.administrator table th,
.administrator table td {
    padding: 30px 10px;
}
footer {}
footer .fttitle {
    width: 70vw;
    margin: auto;
    padding: 25px 0px;
}
footer hr {
    width: 70vw;
}
footer .ftmenu-wrap {
    width: 70vw;
    margin: auto;
    padding: 30px 0px;
}
footer .ftmenu {
    width: 25%;
}
footer .ftlogo {
    width: 10vw;
}

#contact-contents form #confirm table {
    width: 100%;
    margin-bottom: 60px;
}
form {
    padding: 10px 0px 45px;
}
form .formlabel {
    margin-bottom: 6px;
}
form input[type=text],
form input[type=email] {
    width: 55%;
}
form textarea {
    width: 85%;
}
form input[type=submit] {
    width: 45%;
}


}


