@charset "UTF-8";

/*
theme name:next
author:travel sketch
description:this is my original theme.
version:1.0
*/
a:hover {
	text-decoration: none;
	cursor: pointer;
}

body {
	padding: 0;
	margin: 0;
	width: 100%;
	margin: 0;
	font-family: font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
	color: #111111;
	background-color: white;
}



html {
	font-size: 62.5%;
}

img {
	width: 100%;
}

h1 {
	font-weight: 700;
}

h2 {
	font-size: 4rem;
	font-weight: 700;
}

h3 {
	font-size: 2.5rem;
	font-weight: 600;
}

h4 {
	font-size: 2rem;
	line-height: 1.4;
	font-weight: 600;
}

a,
p,
tr {
	font-size: 1.7rem;
}

p {
	line-height: 40px;
}

@media screen and (max-width:780px) {
	h1 {
		font-size: 6.5vw;
	}

	h2 {
		font-size: 6vw;
	}

	h3 {
		font-size: 5.5vw;
	}

	h4 {
		font-size: 3.4vw;
	}

}

@media screen and (max-width:500px) {
	h4 {
		font-size: 4.6vw;
	}

	a,
	p,
	tr {
		font-size: 4vw;
		line-height: 1.8;
	}
}

/*ヘッダー画像*/
header {
	margin: 0;
	padding: 0;
}

header img {
	left: 20px;
	top: 5px;
	position: absolute;
	width: 270px;
	height: 50px;
	vertical-align: bottom;
	z-index: 3;
}



a[title="nolink"] {
	pointer-events: none;
	cursor: pointer;
}

/*ナビゲーションメニュー*/
/************************************
** グローバルメニュー
************************************/
.navi-in {
	/*幅を整える場合はwidthを設定する*/
	width: 100%;
	top: 0px;
	background-color: white;
	margin: auto;
	z-index: 99;
}

.navi-in > ul {
	padding: 0;
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
	text-align: center;
	margin-bottom: 0;
}

.navi-in > ul li {
	width: 160px;
	height: 60px;
	line-height: 60px;
	font-size: 1.5rem;
}


.navi-in > ul li:hover ul li,
.navi-in > ul li a:hover ul li {
	height: 100%;
	display: block;
}


.navi-in a {
	color: #5a544b;
	text-decoration: none;
	display: block;
	transition: 1s;

}

.navi-in a:hover {
	background-color: blue;
	transition: 1s;
	border-radius: 7px;
	color: white;
}


.navi-in a:hover > ul {
	display: block;
	transition: 1s;
}

@media screen and (max-width:1100px) {
	.navi-in {
		display: none;
	}

	header img {
		left: auto;
		right: 15px;
		width: 250px;
		height: 50px;
		top: 10px;
	}

}

@media screen and (max-width:500px) {
	header img {
		left: auto;
		right: 15px;
		width: 170px;
		height: 35px;
		top: 10px;
	}
}

input[type="submit"] {
	-webkit-appearance: none;
}

#nav-drawer {
	position: fixed;
	top: 20px;
	z-index: 99;
}

/*チェックボックス等は非表示に*/
.nav-unshown {
	display: none;
}

/*アイコンのスペース*/
#nav-open {
	display: block;
	width: 40px;
	height: 30px;
	vertical-align: middle;
	margin-left: 20px;
	cursor: pointer;
}

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

}

#nav-open span:before {
	bottom: -10px;
}

#nav-open span:after {
	bottom: -20px;
}

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

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

.menu-item a {
	color: #5a544b;
}

#nav-drawer ul li {
	padding: 10px 0px;
}

#nav-drawer ul li a {
	font-size: 1.5rem;
	padding: 10px 10px;
	color: #5a544b;
}

.menu-item {
	list-style: none;
}

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

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

@media screen and (min-width:1100px) {
	#nav-open {
		display: none;
	}


}

.blog2 {
	margin: 0px !important;
}

/*問い合わせ*/
.inquiry {
	background-color: white;
	box-shadow: 0px 0px 50px rgba(0, 0, 0, 0.25);
	padding: 50px !important;
	transition: 1s;
	color: #111111;
}

.inquiry h3 {
	padding: 1rem 2rem;
	border-left: 4px solid #92D050;
	font-weight: 600 !important;
	text-align: center;
}

.inquiry:hover {
	transition: 1s;
	box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.25);
}

@media screen and (max-width:600px) {
	.inquiry {
		padding: 30px !important;
	}
}

/*フッター*/
/************************************
** フッターメニュー
************************************/

.footer-menu-1 {
	width: 300px;
	margin: auto;
	text-align: left;
}

#footer-menu {
	padding-top: 30px;
	background-color: white;
	height: 100%;
	position: relative;
}

.menu {
	text-align: center;
	margin: 30px 0px;
	padding: 0;
}

#footer-menu ul li {
	display: inline-block;
	width: 160px;
	vertical-align: top;
	font-size: 1.3rem;
	margin: 0;
	padding: 0;
}

#footer-menu img {
	width: 70%;
	text-align: center;
}

#footer-menu .container .row .col-2 {
	text-align: center;
}

#footer-menu p {
	font-size: 1rem;
	color: black;
}

#footer-menu > li {
	list-style-type: none;
}

#footer-menu ul li a {
	color: #111111;
}

#footer-menu .sub-menu {
	list-style: none;
	padding-left: 40px;
	text-align: left;
}

.footer {
	text-align: center;
	font-size: 1.4rem;

}

.footer small {
	color: #5a544b;
}

/*SNSボタン*/
.insta_btn3 {
	/*ボタンの下地*/
	color: #FFF;
	/*文字・アイコン色*/
	border-radius: 7px;
	/*角丸に*/
	position: relative;
	display: block;
	height: 40px;
	/*高さ*/
	width: 40px;
	/*幅*/
	text-align: center;
	/*中身を中央寄せ*/
	padding-top: 7px;
	/*上側との余白*/
	box-sizing: border-box;
	font-size: 5px;
	/*文字のサイズ*/
	background: -webkit-linear-gradient(135deg, #427eff 0%, #f13f79 70%) no-repeat;
	background: linear-gradient(135deg, #427eff 0%, #f13f79 70%) no-repeat;
	/*グラデーション①*/
	overflow: hidden;
	/*はみ出た部分を隠す*/
	text-decoration: none;
	/*下線は消す*/
}

.insta_btn3:before {
	/*グラデーション②*/
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	/*全体を覆う*/
	height: 100%;
	/*全体を覆う*/
	background: -webkit-linear-gradient(15deg, #ffdb2c, rgb(249, 118, 76) 25%, rgba(255, 77, 64, 0) 50%) no-repeat;
	background: linear-gradient(15deg, #ffdb2c, rgb(249, 118, 76) 25%, rgba(255, 77, 64, 0) 50%) no-repeat;
}

.insta_btn3 div {
	position: relative;
}

.insta_btn3 .fa-instagram {
	font-size: 25px;
	/*アイコンサイズ*/
	position: relative;
	display: inline-block;
	position: relative;
	transition: .5s
}

.insta_btn3 .fa-instagram:hover {
	/*ホバーで一周回転*/
	-webkit-transform: rotateX(360deg);
	-ms-transform: rotateX(360deg);
	transform: rotateX(360deg);
	color: white;
}

#social-icon a {
	display: block;
	float: left;
	margin: 0 5px 5px 0;
	padding: 0;
	color: white;
	transition: 1s;
	background: #00a1e9;
	border-radius: 7px;
}

#social-icon i {
	font-size: 25px;
	width: 40px;
	height: 40px;
	margin: 0;
	line-height: 40px;
	text-align: center;
}

#social-icon i:before {
	padding 0;
	line-height: 40px;
	transition: .5s;
}

#social-icon a:hover .fa-twitter {
	border-radius: 7px;
	background: #00a1e9;
	transition: .5s;
	color: white;
	/*ホバーで一周回転*/
	-webkit-transform: rotateX(360deg);
	-ms-transform: rotateX(360deg);
	transform: rotateX(360deg);
}


@media screen and (max-width:540px) {
	#footer-menu ul li {
		display: none;
	}
}




/*全共通スクロールアニメーション*/

.zzextend {
	animation-name: zzextendAnimeBase;
	animation-duration: .5s;
	animation-fill-mode: forwards;
	position: relative;
	overflow: hidden;
	/*　はみ出た色要素を隠す　*/
	opacity: 0;
}

@keyframes zzextendAnimeBase {
	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}

/*中の要素*/
.zzappear {
	animation-name: zzextendAnimeSecond;
	animation-duration: .5s;
	animation-delay: 0.4s;
	animation-fill-mode: forwards;
	opacity: 0;
}

@keyframes zzextendAnimeSecond {
	0% {
		opacity: 0;
	}

	100% {
		opacity: 1;
	}
}

/*左から右*/
.zzLRextend::before {
	animation-name: zzLRextendAnime;
	animation-duration: 1s;
	animation-fill-mode: forwards;
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	background-color: #4169e1;
	/*伸びる背景色の設定*/
	z-index: 20;
}

@keyframes zzLRextendAnime {
	0% {
		transform-origin: left;
		transform: scaleX(0);
		opacity: 1;
	}

	50% {
		transform-origin: left;
		transform: scaleX(1);
		opacity: 1;
	}

	50.001% {
		transform-origin: right;
	}

	100% {
		transform-origin: right;
		transform: scaleX(0);
		opacity: 1;
	}
}

/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
.zzappearTrigger,
.zzLRextendTrigger {
	opacity: 0;
}

/*particle.js*/

canvas {
	display: block;
	vertical-align: bottom;
}

/* ---- particles.js container ---- */
#particles-js {
	position: fixed;
	width: 100%;
	height: 100%;
	background-image: url("");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: 50% 50%;
	background-color: white;
	z-index: -99;
}

/* ---- stats.js ---- */
.count-particles {
	background: #000022;
	position: absolute;
	top: 48px;
	left: 0;
	width: 80px;
	color: #13e8e9;
	font-size: 0.8em;
	text-align: left;
	text-indent: 4px;
	line-height: 14px;
	padding-bottom: 2px;
	font-family: Helvetica, Arial, sans-serif;
	font-weight: bold;
}

.js-count-particles {
	font-size: 1.1em;
}

#stats,
.count-particles {
	-webkit-user-select: none;
	margin-top: 5px;
	margin-left: 5px;
}

#stats {
	border-radius: 3px 3px 0 0;
	overflow: hidden;
}

.count-particles {
	border-radius: 0 0 3px 3px;
}

/*記事の付加情報*/

.postinfo {
	margin-top: 15px;
	font-size: 14px;
}

.postinfo a {
	color: #5a544b;
	text-decoration: none;
}


.postinfo {
	margin-left: 20px;
}

.postinfo i {
	color: #D1FDAD;
}


/*記事の概要*/

.excerpt p {
	font-size: 14px;
}

.excerpt .more a {
	padding: 5px 20px;
	border: solid 1px #cccccc;
	border-radius: 5px;
	color: #000000;
	text-decoration: none;
	transition: 1s;
}

.excerpt .more a:hover {
	color: #5a544b;
	transition: 1s;
	background-color: #A9D18E;
}

.excerpt .more i {
	margin-left: 10px;
	color: #5a544b;
}

.excerpt-1 {
	padding: 20px;
	box-shadow: 0px 5px 5px rgba(0, 0, 0, 0.1);
}

/*ブログ一覧*/
.blog1 img {
	width: 100%;
	height: 100%;
}

.blog1-img {
	background: linear-gradient(to top, #d5dee7 20%, #f2dde3 50%, #efe6c6 100%);
	border-radius: 10px;
}

.blog1 img {
	opacity: 1;
	-webkit-transition: .3s ease-in-out;
	transition: .3s ease-in-out;
}

.blog1 img:hover {
	opacity: .8;
}

.blog1 time {
	border-radius: 5px;
	background-color: #F7B375;
	padding: 0 5px 5px 5px;
	color: #5a544b;
}

/*ブログ一覧、ブログ内容部分*/
.kotei {
	color: #5a544b;
	font-size: 1.5rem;
}

/*前後の記事へのリンク*/

.pagenav a {
	padding: 5px 10px;
	border: solid 1px #cccccc;
	border-radius: 10px;
	color: #5a544b;
	font-size: 12px;
	text-decoration: none;
}

.pagenav .old a {
	float: left;
}

.pagenav .new a {
	float: right;
}

.pagenav {
	overflow: hidden;
	margin: 40px 0;
	clear: both;
}



/*本文中の画像*/

.kotei img {
	border: none;
	max-width: 100%;
	height: auto;
}

.aligncenter {
	display: block;
	margin: 30px auto;
}

.alignleft {
	float: left;
	margin-bottom: 30px;
	margin-right: 30px;
}

.alignright {
	float: right;
	margin-bottom: 30px;
	margin-left: 30px;
}

.wp-caption {
	max-width: 100%;
}

.wp-caption-text {
	margin: 0;
	color: #5a544b;
	font-size: 14px;
	text-align: center;
}


/*サイドメニュー*/

.sidebar ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.sidebar .widget {
	margin-bottom: 30px;
	padding: 20px;
	background-color: none;
}


.sidebar li a {
	color: #5a544b;
	font-size: 14px;
	text-decoration: none;
	padding: 10px 0px;
	transition: 0.5s;
}

.sidebar li a:hover {
	color: #000000;
	text-decoration: underline;
	transition: 0.5s;
}

.sidebar li {
	font-size: 1.4rem;
	color: #5a544b;
}

.sidebar h3 {
	margin-top: 50px;
	margin-bottom: 10px;
	padding-top: 0px;
	padding-left: 20px;
	border-left: solid 10px #f8f4e6;
	text-align: left;
}

/*見出し*/

.archive-title {
	margin-top: 30px;
	margin-bottom: 40px;
	font-size: 1.7rem;

}

.archive-title i {
	padding: 15px;
	color: #F7B375;
}


/*コメント投稿フォーム*/

#respond p {
	color: #5a544b;
	margin-top: 0;
	margin-bottom: 20px;
	font-size: 1.6rem;
}

#repond label {
	color: #5a544b;
	font-size: 1.6rem;
}

#respond input,
#respond textarea {
	width: 100%;
	padding: 5px;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

#respond input[type="submit"] {
	width: 200px;
	padding: 10px;
	border: none;
	background-color: #f8f4e6;
	-webkit-appearance: none;
	cursor: pointer;
	margin-bottom: 50px;
}

#respond input[type="submit"]:hover {
	background-color: #f8f4e6;
}

#respond .required {
	color: #ff0000;
}


/*コメント*/

#comments footer {
	background: none;
	margin: 0;
	color: #000000;
	font-size: 12px;
}

#comments footer a {
	color: #000000;
}

#comments footer div {
	display: inline;
}

#comments ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

#comments article {
	border: dotted 1px #aaaaaa;
	margin-bottom: 10px;
	padding: 10px 20px 20px 20px;
}

#comments .comment-content {
	margin-left: 30px;
}


/*お問い合わせフォーム*/
.toiawase {
	margin-top: 100px;
	color: #5a544b;
}

@media(max-width:768px) {
	toiwase {
		margin-top: 50px;
	}
}

.toiawase h3 {
	font-size: 2rem;
}

.toiawase p {
	font-size: 1.5rem;
	color: #5a544b;
}

@media(max-width:768px) {
	.toiawase p {
		font-size: 1.4rem;
	}
}

.wpcf7 input,
.wpcf7 textarea {
	color: #5a544b;
	width: 100%;
	padding: 5px;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;

}

.wpcf7 input[type="submit"] {
	font-size: 1.6rem;
	color: #5a544b;
	width: 200px;
	padding: 10px;
	border: none;
	background-color: #F7B375;
	-webkit-appearance: none;
	cursor: pointer;
	margin-bottom: 50px;
}

.wpcf7 input[type="submit"]:hover {
	background-color: #F7B375;
}

.clearfix::after {
	content: '';
	display: block;
	clear: both;
}

/*アイキャッチ画像*/
.eyecatch {
	max-height: 360px;
	overflow: hidden;
}

.eyecatch img {
	margin: 0 auto;
	max-width: 100%;
}

/*レスポンシブの設定*/

@media(min-width:768px) {

	/*２段組*/



	/*ナビゲーション
    nav li {
        margin-right: 40px;
    }*/
}

.excerpt img {
	float: left;
	margin-right: 20px;
	width: 40%;
}

.siteinfo {
	padding: 0;
	margin: 0;
}

@media(max-width:499px) {
	.mei h1 a {
		font-size: 1.4rem;
	}

	/*
    .siteinfo h1 {
        font-size: 20px;
    }

    .siteinfo p {
        font-size: 12px;
    }
*/
	.excerpt img {
		float: none;
		display: block;
		margin-left: auto;
		margin-right: auto;
		width: 90%;
	}

	/*記事*/
	article h1 {
		font-size: 20px;
	}


	/*記事の概要*/
	.excerpt p {
		font-size: 12px;
	}



	/*メニュー*/
	.blogmenu .widgettitle {
		font-size: 12px;
	}

	.blogmenu li a {
		font-size: 12px;
	}

	/*見出し*/

}
