@charset "utf-8";

/*
Theme Name: ulala
*/

/* *****************************************************************
*	基本設定
* ***************************************************************** */

body {
	font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
	font-size: 15px;
	color: #1a1a1a;
	line-height: 1.8;
	letter-spacing: 0.05em;
	word-wrap: break-word;
	overflow-wrap: break-word;
}

*,
*:before,
*:after {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-o-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
}

/* スクロール
---------------------------------------------------- */
html{
	scroll-behavior: smooth;
}

/* リンク
---------------------------------------------------- */

a {
	color: #1a1a1a;
	text-decoration: none;
	transition: 0.5s;
	-webkit-transition: 0.5s;
	-moz-transition: 0.5s;
	-o-transition: 0.5s;
	-ms-transition: 0.5s;
}

@media (hover: hover) and (pointer: fine) {/*//ホバーアクションをPCだけにしたい場合、←のメディアクエリで囲む*/
	a:hover {
		opacity: 0.6;
	}
}

a:active,
a:focus {
	outline: 0;
}


/* 画像
---------------------------------------------------- */


img,figure {
	border: 0;
	padding: 0px;
	margin: 0px;
}

img.aligncenter {
	display: block;
	margin-left: auto;
	margin-right: auto;
}

img.alignright {
	padding: 4px;
	margin: 0 0 10px 20px;
	display: inline;
}

img.alignleft {
	padding: 4px;
	margin: 0 20px 10px 0;
	display: inline;
}


/* フロート
---------------------------------------------------- */

.alignright,
.right {
	float: right;
	margin: 0 0 10px 20px;
}

.alignleft,
.left {
	float: left;
	margin: 0 20px 10px 0;
}

.clear {
	clear: both;
}

.aligncenter {
	display: block;
	margin: 0 auto;
	padding: 15px 0px 15px 0px;
	text-align: center;
}

.textbox {
	overflow: hidden;
}


/* リスト
---------------------------------------------------- */

ol {
	margin: 7px 0 7px 10px;
	padding: 0 0 0 0;
	list-style: decimal;
}

ul {
	margin: 7px 0 7px 4px;
	padding: 0 0 0 0;
	list-style: disc;
}

li {
	margin: 8px 0 8px 15px;
	padding: 0;
	line-height: 160%;
}




/* *****************************************************************
*	背景
* ***************************************************************** */
.body {
	background-color: #fff;
}


/* *****************************************************************
*	全体Wrapper
* ***************************************************************** */

.wrapper {
	max-width: 1360px;
	margin: auto;
	padding: 0px 30px 0px 30px;
}

.top_wrapper {
	max-width: 100%;
	margin: auto;
	padding: 0px;
}



/* *****************************************************************
*	ヘッダー
* ***************************************************************** */

.reserve-Btn {
	display: inline-block;
	margin: 0;
}

.reserve-Btn a {
	position: relative;
	background-color: #1a1a1a;
	border-radius: 999px;
	color: #fff;
	display: block;
	padding: 10px 20px;
	font-size: 13px;
	text-align: center;
	text-decoration: none;
	width: 100%;
	line-height: 1.2;
}

.reserve-Btn a::after {
	content: '';
	border: 0;
	border-top: solid 1px #fff;
	border-right: solid 1px #fff;
	display: inline-block;
	width: 6px;
	height: 6px;
	position: absolute;
	top: 50%;
	right: 10px;
	transform: translateY(-50%) rotate(45deg);
}

.reserve-Btn a:hover {
	color: #fff;
	text-decoration: none;
	opacity: .75;
	-webkit-transition: all .5s;
	transition: all .5s;
}



/* *****************************************************************
*	トップナビゲーション
* ***************************************************************** */

#header {
	position: absolute;
	top:0;
	display: flex;
	width: 100%;
	height: 80px;
	background: url(../images/mv/mv_01.jpg) 50% 10% / cover no-repeat;
	background-color: rgba(255,255,255,0.2);
	background-blend-mode: lighten;
}
.home #header,.page-template-page-lptest-php #header{
	background: none;
	background-color: rgba(255,255,255,0.2);
}

.header_inner {
	display: flex;
	align-items: center;
	position: relative;
	padding: 15px;
	z-index: 9999;
}

.logo {
	padding: 0px 15px;
}

.logo img {
	max-width: 50px;
	width: 100%;
}

/* header固定のため余白をつける。メニューのCSSには関係ない */

/* sp */
@media only screen and (max-width: 767px) {
	#header {
		position: fixed;/*固定する*/
		top: 0;/*ブラウザの上からの距離はゼロ*/
		width: 100%;
		height: 50px;
		z-index: 9999;
	}
	.header_inner {
		display: flex;
		align-items: center;
		position: relative;
		padding: 0;
	}
	.mainmenu {
		position: fixed;
		right: -320px;
		/* 右から出てくる */
		top: 0;
		width: 300px;
		/* スマホに収まるサイズ */
		height: 100vh;
		padding-top: 60px;
		text-align: center;
		background-color: #fff;
		transition: all .6s;
		z-index: 999;
		overflow-y: auto;
		/* メニューが多くなったらスクロールできるように */
	}

	.hamburger {
		position: absolute;
		right: 15px;
		top: 6px;
		width: 40px;
		/* クリックしやすい幅 */
		height: 40px;
		/* クリックしやすい高さ */
		cursor: pointer;
		z-index: 9999;
	}

	ul.nav_list {
		margin: 0 0 1.5em;
		padding: 0;
		list-style: none;
	}

	.nav_list li {
		text-align: center;
		margin: 0;
		padding: 0 14px;
	}

	.nav_list li a {
		display: block;
		padding: 12px 0;
		font-size: 16px;
		border-bottom: 1px solid #eee;
		text-decoration: none;
		color: #333;
		letter-spacing: 0.14em;
	}

	.nav_item a:hover {
		background-color: #eee;
	}

	.hamburger_border {
		position: absolute;
		left: 10px;
		width: 20px;
		height: 2px;
		background-color: #000;
		transition: all .6s;
		box-shadow: 0px 1px 0px rgba(255, 255, 255, .5);
	}

	.hamburger_border_top {
		top: 10px;
	}

	.hamburger_border_center {
		top: 16px;
	}

	.hamburger_border_bottom {
		top: 22px;
	}

	.black_bg {
		position: fixed;
		left: 0;
		top: 0;
		width: 100vw;
		height: 100vh;
		z-index: 100;
		background-color: #333;
		opacity: 0;
		visibility: hidden;
		transition: all .6s;
		cursor: pointer;
	}

	/* 表示された時用のCSS */
	.nav-open .mainmenu {
		right: 0;
	}

	.nav-open .black_bg {
		opacity: .8;
		visibility: visible;
	}

	.nav-open .hamburger_border_top {
		transform: rotate(45deg);
		top: 20px;
	}

	.nav-open .hamburger_border_center {
		width: 0;
		left: 50%;
	}

	.nav-open .hamburger_border_bottom {
		transform: rotate(-45deg);
		top: 20px;
	}
	.logo img {
		vertical-align: text-bottom;
	}
}

/* pc */
@media only screen and (min-width: 768px) {
	#header.hentry {
		background: #000;
	}
	#header {
		position: sticky;
		top:0;
		z-index: 9999;
	}
	.home #header {
		position: absolute;
	}

	/*HeightMinというクラス名がついたら高さを小さく、上部固定に*/
	#header.HeightMin {
		position: fixed;
		z-index: 9999;
		height: 70px;
		/*最前面へ*/
		background: linear-gradient(180deg, rgb(255, 255, 255, .3), transparent);
		animation: DownAnime 0.5s forwards;
	}

	@keyframes DownAnime {
		from {
			opacity: 0;
			transform: translateY(-170px);
		}

		to {
			opacity: 1;
			transform: translateY(0);
		}
	}
	.header_inner {
		display: flex;
		justify-content: space-between;
		align-items: center;
		max-width: 100%;
		width: 100%;
		padding: 0 30px;
		margin-left: auto;
		margin-right: auto;
	}
	.logo {
		padding: 0px;
	}
	.logo img{
		max-width: 80px;
		width: 100%;
	}
	.mainmenu {
		display: flex;
		justify-content: space-between;
		align-items: center;
	}
	ul.nav_list {
		display: flex;
		margin: 0;
		padding: 0;
		list-style-type: none;
	}

	ul.nav_list li {
		display: flex;
		margin: 0;
		padding:0;
		line-height: 1.2;
	}

	ul.nav_list li a {
		padding:0 1em;
		color: #1a1a1a;
		font-size:15px;
		font-weight: 700;
		letter-spacing: 0.05em;
		text-shadow: -1px -1px 1px rgba(255, 255, 255, 0.3);
	}
	ul.nav_list li a:hover{
		opacity: 0.5;
	}
}

/* *****************************************************************
*	オープニング
* ***************************************************************** */
html{
	height: 100%;
	scrollbar-gutter: stable;
}

body.fix {
	overflow: hidden;
	height: 100%;
}

#op,
#op_first {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 99999;
	display: flex;
	justify-content: center;
	align-items: center;
}
#op::before,
#op_first::before  {
	content: "";
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(-45deg, #fee9e9, #fdefef, #f9f7df);
	z-index: 0;
}
#op .op_logo,
#op_first .op_logo {
	width: 15%;
	max-width: 50%;
	animation: op 1.4s cubic-bezier(0.83, 0, 0.17, 1) 0.5s forwards;
	position: relative;
	z-index: 1;
    clip-path: inset(0 0 100% 0);
}

#op_first .op_logo {
	animation: op_first 1s cubic-bezier(0.83, 0, 0.17, 1) 0.5s forwards;
	clip-path: none;
	opacity: 0;
}

@keyframes op {
	0% { clip-path: inset(0 0 100% 0);}
	100% { clip-path: inset(0 0 0 0);}
}
@keyframes op_first {
	0% { opacity: 0;}
	100% { opacity: 1;}
}

.op_mv {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #222;
	display: flex;
	justify-content: center;
	align-items: center;
	overflow: hidden;
	transition: all 1s cubic-bezier(0.33, 1, 0.68, 1);
    z-index: 99998;
}
.op_mv .mv_wrap {
    width: 100%;
	padding-top: 56.25%;
	position: relative;
}
.op_mv .mv_wrap iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: contain;
}
.op_mv .mv_close {
	position: absolute;
    bottom: 20px;
    left: 50%;
	transform: translateX(-50%);
    width: 26px;
    height: 26px;
	z-index: 10;
}

.op_mv.close {
	transform: translateY(-100%);
}

/* sp */
@media only screen and (max-width: 959px) {
	#op_first .op_logo {
		width: 30%;
	}
}

/* *****************************************************************
*	イメージヘッダー
* ***************************************************************** */

.mv__wrap {
	max-width: 100vw;
	height: calc(100vh - 0px);
	position: relative;
}
.swiper-container{
	height: 100%;
	width: 100%;
	overflow: hidden;
}
.swiper-wrapper,
.swiper-slide>div{
	height: 100%;
	width: 100%;
}
.swiper-slide.sw-01>div{
	position:relative;
	background: url(../images/mv/mv_01.jpg) center center / cover no-repeat;
}
/*
.swiper-slide.sw-02>div{
	position:relative;
	background: url(../images/mv/mv_002.jpg) center center / cover no-repeat;
}
*/

.ulala {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 460px;
	z-index: 999;
}
.ulala img{
	width: 100%;
	display: block;
}

.ulala-text {
	position: absolute;
	top: 68%;
	left: 50%;
	transform: translate(-50%, -50%);
	max-width: 720px;
	width: 60%;
	z-index: 999;
}
.ulala-text img{
	width: 100%;
	display: block;
}

.iwakinomegumi {
	position: absolute;
	top: 8%;
	right: 5%;
	z-index: 999;
}
.iwakinomegumi img{
	width: 80px !important;
	height: auto !important;
}

/* ズームアップ
.swiper-slide-active .slide-img,
.swiper-slide-duplicate-active .slide-img,
.swiper-slide-prev .slide-img {
	animation: zoomOut 20s linear 0s 1 normal both;
}
@keyframes zoom {
	0% {
		transform: scale(1);
	}

	100% {
		transform: scale(1.2);
	}
}
@keyframes zoomOut {
	0% {
		transform: scale(1.2);
	}

	100% {
		transform: scale(1);
	}
}
*/
@media only screen and (max-width: 1200px) {
	.ulala {
		width: 380px;
	}
}
@media only screen and (max-width: 767px) {
	.mv__wrap {
		max-width: 100vw;
		height: calc(100vh - 0px);
		position: relative;
	}
	.swiper-slide.sw-01>div{
		position:relative;
		background: url(../images/mv/mv_01.jpg) center center / cover no-repeat;
	}
	.ulala {
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
		width: 66%;
		z-index: 999;
	}
	.ulala-text {
		position: absolute;
		top: 65%;
		left: 50%;
		transform: translate(-50%, -50%);
		width: 75%;
		z-index: 999;
	}
	.iwakinomegumi {
		position: absolute;
		top: 4%;
		right: 3%;
		z-index: 999;
	}
	.iwakinomegumi img{
		width: 30px !important;
		height: auto !important;
	}

}




/* *****************************************************************
*	メイン（本文）コンテンツ
* ***************************************************************** */

#main {
	margin: 0 0 0 0;
	padding: 0 0 0 0;
}


/* ギャラリーレイアウト
---------------------------------------------------- */

li.item {
	height: 360px;
	margin-bottom: 30px;
}

.item-img {
	width: 100%;
}

.item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.item-img-02 {
	margin: 0 0 16px 0;
	overflow: hidden;
}

.item-meta {
	padding: 0 0 0px;
	margin: 20px 0 5px;
	font-size: 13px;
}
.item-date {
	color: #1a1a1a;
	padding: 0 0 0 0;
	margin: 0;
	letter-spacing: 0.05em;
}
.item-cat {
	padding: 0 0 0px 0;
	margin: 0 0 0px 0;
}
.item-cat a{
	color: #1a1a1a;
}
.item h2 {
	font-size: 16px;
	line-height: 150%;
	font-weight: normal;
}

.item-title {
	margin: 0 0 0 0;
	padding: 0px 0px 0px 0px;
	border-top: 0px solid #ccc;
	border-bottom: 0px solid #ccc;
}

.item-title a {
	color: #1a1a1a;
}


li.item-top {
	height: 300px;
	margin-bottom: 0px;
}

li.item-top h2 {
	font-size: 15px;
	line-height: 150%;
	font-weight: normal;
}

/* ブログ記事部分
---------------------------------------------------- */

.single-contents {
	margin: 0 0 100px 0;
}

p {
	font-size: 15px;
	line-height: 190%;
	margin: 0 0 1.5em;
}

p a {
	color: #556fb5;
	text-decoration: none;
	transition: 0.5s;
	-webkit-transition: 0.5s;
	-moz-transition: 0.5s;
	-o-transition: 0.5s;
	-ms-transition: 0.5s;
}

p a:hover {
	color: #666;
}

p a:active,
a:focus {
	outline: 0;
}


/* ページタイトル
---------------------------------------------------- */

.pagedate {
	font-size: 13px;
	font-weight: normal;
	text-align: left;
	padding: 0 0 0 0;
	margin: 0 0 -7px 0;
	letter-spacing: 0.05em;
}

.breadcrumb {
	margin: 0 0 30px 0;
	line-height: 120%;
}

.breadcrumb div {
	display: inline;
	font-size: 11px;
	color: #999;
}

.breadcrumb span,
.breadcrumb span a {
	color: #556fb5;
}

.pagetitle {
	font-size: 28px;
	font-weight: bold;
	letter-spacing: 0.05em;
	margin: 30px 0px 60px 0px;
	padding: 10px 0px;
	text-align: center;
}

.pagetitle {
	position: relative;
	padding: 0 0 1.5rem;
	text-align: center;
}

.pagetitle:before {
	position: absolute;
	bottom: -10px;
	left: calc(50% - 30px);
	width: 60px;
	height: 3px;
	content: '';
	border-radius: 3px;
	background: #000;
}

.pagetitle a {
	transition: 0.5s;
	-webkit-transition: 0.5s;
	-moz-transition: 0.5s;
	-o-transition: 0.5s;
	-ms-transition: 0.5s;
}

.pagetitle a:hover {
	color: #777;
}

.pagetitle-sub {
	display: block;
	color: #555;
	font-size: 13px;
	font-weight: normal;
	font-style: normal;
	margin: 0px;
	padding: 0px;
}

.blog-title {
	font-size: 22px;
	font-weight: bold;
	line-height: 140%;
	margin: 17px 0px 50px 0px;
	padding: 50px 10px 0px 0px;
	border-top: 1px solid #cacaca;
}

.blog-title a {
	text-decoration: none;
	transition: 0.5s;
	-webkit-transition: 0.5s;
	-moz-transition: 0.5s;
	-o-transition: 0.5s;
	-ms-transition: 0.5s;
}

.blog-title a:hover {
	color: #777;
}

.blog-title-item {
	font-size: 22px;
	font-weight: bold;
	letter-spacing: 0.05em;
	line-height: 140%;
	font-style: normal;
	margin: 10px 0px 30px 0px;
	padding: 15px 0px 20px 0px;
	border-bottom: 1px double #ddd;
	text-align: center;
}


/* パンクズ
---------------------------------------------------- */
.breadcrumbs {
	margin: 0 0 60px 0;
	line-height: 120%;
}

.breadcrumbs span {
	display: inline;
	font-size: 11px;
}

.breadcrumbs span a {
	color: #1a1a1a;
}


/* 見出し
---------------------------------------------------- */

h1 {
	font-size: 24px;
	margin: 40px 0px 20px 0px;
}

h2 {
	font-size: 28px;
	line-height: 140%;
	font-weight: bold;
	margin: 40px 0px 40px 0px;
	padding: 0;
	letter-spacing: .03em;
}

h3 {
	font-size: 22px;
	line-height: 140%;
	font-weight: normal;
	padding: 0 0 0 0;
	margin: 40px 0 40px 0;
	letter-spacing: .03em;
}

h3.u-line {
	font-size: 22px;
	font-weight: normal;
	padding: 0 0 20px 0;
	margin: 40px 0 40px 0;
	letter-spacing: .03em;
	border-bottom: 1px solid #cacaca;
}

h4 {
	font-size: 20px;
	line-height: 140%;
	font-weight: normal;
	padding: 0 0 0 0;
	margin: 40px 0 20px 0;
}

h4.bgcolor {
	font-size: 20px;
	line-height: 140%;
	font-weight: normal;
	padding: 1em;
	margin: 40px 0 40px 0;
	background: #f7f7f7;
}

h5 {
	font-size: 18px;
	font-weight: normal;
	line-height: 1.3em;
	margin: 20px 0 20px 0;
}

h6 {
	font-size: 16px;
	font-weight: normal;
	line-height: 1.3em;
	margin: 20px 0 20px 0;
}



/* イメージヘッダー
---------------------------------------------------- */

.head-img {
	width: 100%;
	text-align: center;
	margin: -50px auto 20px auto;
	overflow: hidden;
}


/* 記事フッター
---------------------------------------------------- */

.blog-foot {
	clear: both;
	font-size: 75%;
	text-align: left;
	margin: 0px 0 50px 0;
	font-weight: normal;
	color: #999;
	border-bottom: 0px dotted #ccc;
}

.blog-foot span {
	color: #999;
}


/* 次の記事・前の記事
---------------------------------------------------- */

#next {
	font-size: 90%;
	line-height: 150%;
	margin: 50px 0 20px 0;
}

.next-left {
	float: left;
	text-align: left;
	margin: 0 0 10px 0;
	background: url(../images/left.gif) no-repeat left;
}

.next-left a {
	padding: 20px 20px 20px 50px;
	display: block;
	border: 1px solid #fff;
}

.next-left a:hover {
	border: 1px solid #eee;
}

.next-right {
	float: right;
	text-align: right;
	margin: 0 0 10px 0;
	background: url(../images/right.gif) no-repeat right;
}

.next-right a {
	padding: 20px 50px 20px 20px;
	display: block;
	border: 1px solid #fff;
}

.next-right a:hover {
	border: 1px solid #eee;
}


/* ページャー
---------------------------------------------------- */

.pager {
	text-align: center;
	margin: 50px 0 100px 0;
}

a.page-numbers,
.pager .current {
	background: #fff;
	border: solid 1px #000;
	border-radius: 2px;
	padding: 5px 8px;
	margin: 0 2px;
	color: #1a1a1a;
}

.pager .current {
	background: #000;
	border: solid 1px #000;
	color: #fff;
}


/* 関連記事
---------------------------------------------------- */

.similar-head {
	color: #333;
	font-size: 18px;
	font-weight: bold;
	letter-spacing: 0.05em;
	font-style: normal;
	margin: 0px 0px 10px 0px;
	padding: 0 0 3px 0;
	border-bottom: 1px solid #ccc;
}

.similar ul {
	margin: 0 0 0 0;
	padding: 0 0 0 0;
}

.similar li {
	font-size: 14px;
	margin: 0 0 0 0;
	padding: 0 0 0 0;
	list-style: none;
}

.similar li a {
	color: #555;
}

.similar li a:hover {
	color: #888;
}

table.similar-text {
	width: 100%;
	color: #444;
	margin: 0 0 0 0;
	padding: 0 0 0 0;
	border-bottom: dotted 1px #ccc;
	border-collapse: collapse;
	border-spacing: 0;
}

table.similar-text img {
	width: 150px;
}

table.similar-text th {
	text-align: left;
	width: 150px;
	vertical-align: middle;
}

table.similar-text td {
	font-size: 14px;
	text-align: left;
	white-space: normal;
	vertical-align: middle;
}


/* コメント欄
---------------------------------------------------- */

.comment-head {
	color: #333;
	font-size: 18px;
	font-weight: bold;
	letter-spacing: 0.05em;
	font-style: normal;
	margin: 0px 0px 10px 0px;
	padding: 0 0 3px 0;
	border-bottom: 1px solid #ccc;
}

.commentlist li {
	list-style: none;
	font-size: 90%;
	color: #888;
}

.commentlist {
	margin: 0 0 50px 0;
	padding: 0 0 0 0;
}

li.comment {
	list-style: none;
	font-size: 90%;
	color: #888;
	margin: 30px 0px 30px 0px;
}

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


/* WP必須
---------------------------------------------------- */

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

.wp-caption-text {
	font-size: 90%;
	text-align: center;
}

/* Text meant only for screen readers. */
.screen-reader-text {
	clip: rect(1px, 1px, 1px, 1px);
	position: absolute !important;
	height: 1px;
	width: 1px;
	overflow: hidden;
}

.screen-reader-text:focus {
	background-color: #f1f1f1;
	border-radius: 3px;
	box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
	clip: auto !important;
	color: #21759b;
	display: block;
	font-size: 14px;
	font-size: 0.875rem;
	font-weight: bold;
	height: auto;
	left: 5px;
	line-height: normal;
	padding: 15px 23px 14px;
	text-decoration: none;
	top: 5px;
	width: auto;
	z-index: 100000;
	/* Above WP toolbar. */
}


/* *****************************************************************
*	サイドバー
* ***************************************************************** */

.sidebar {
	width: 100%;
	margin: 0px 0px 40px 0px;
	padding: 0 0 0 0;
}


/* 新着表示
---------------------------------------------------- */

.sidebox-new {
	color: #666;
	margin: 0 0 50px 0;
	padding: 0 0 0 0;
}

.sidebox-new ul {
	margin: 0 0 0 0;
	padding: 0 0 0 0;
}

.sidebox-new li {
	font-size: 13px;
	list-style: none;
	margin: 0 0 0 0;
	padding: 0px 0 0px 0px;
	border-bottom: 1px dotted #ddd;
}

.sidebox-new li a {
	color: #666;
	list-style: none;
	transition: 0.5s;
	-webkit-transition: 0.5s;
	-moz-transition: 0.5s;
	-o-transition: 0.5s;
	-ms-transition: 0.5s;
}

.sidebox-new li a:hover {
	color: #999;
}


table.similar-side {
	width: 100%;
	color: #444;
	margin: 0 0 0 0;
	padding: 0 0 0 0;
	border-collapse: collapse;
	border-spacing: 0;
}

table.similar-side img {
	width: 80px;
}

table.similar-side th {
	text-align: left;
	width: 80px;
	vertical-align: middle;
}

table.similar-side td {
	font-size: 13px;
	text-align: left;
	white-space: normal;
	vertical-align: middle;
}


/* *****************************************************************
*	フッター
* ***************************************************************** */

#footer {
	clear: both;
	background: #04a78e;
	width: 100%;
	font-size: 13px;
	margin: 0px auto 0px auto;
	color: #fff;
}

.footer-inner {
	margin: 0px auto 0px auto;
	padding: 60px 30px;
	max-width: 1360px;
	font-size: 14px;
}

.footer-inner p {
	margin: 0;
	padding: 0;
}

.footer__add span{
	display: block;
	margin: 0;
}

.footer-inner a {
	color: #fff;
}

#sociallink {
	text-align: center;
	position: relative;
	margin: 0 auto 10px auto;
	padding: 0 0 0 0;
}

#copyright {
	font-size: 10px;
	line-height: 110%;
	color: #fff;
	text-align: center;
	margin: 0;
	padding: 0 0 1.5em;
	font-family: arial, sans-serif;
}

#copyright p {
	color: #fff;
}

#copyright a {
	color: #fff;
}

.copyright {
	font-size: 10px;
	margin: 0;
	padding: 2.4em 0;
	text-align: right;
}

ul.footer-link {
	margin: 10px auto 50px;
	padding: 0px;
	overflow: hidden;
	list-style: none;
}

ul.footer-link li {
	display: inline;
	margin: 0;
	font-size: 13px;
	letter-spacing: 0.08em;
}

ul.footer-link li:after {
	content: "|";
	padding: 0 6px;
	color: #222;
}

ul.footer-link li:last-child:after {
	content: "";
}

ul.footer-link a {
	color: #222;
	text-decoration: none;
}

ul.footer-link a:hover {
	color: #777;
}

.footer__ttl {
	display: inline-block;
	margin: 0 0 1em;
	font-size: 1.4em;
	font-weight: bold;
}

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

.footer__logo img {
	width: 300px;
}
.footer_columns {
	display: flex;
	justify-content: space-between;
}

.footer_item.link ul{
	display: flex;
	justify-content: flex-end;
	margin: 0;
	padding: .6em 0 0;
	list-style: none;
}

.footer_item.link ul li{
	position: relative;
	margin: 0;
	font-size: 14px;
	text-align: center;
}
.footer_item.link ul li+li::before{
    content: "";
    display: block;
    height: 1em;
    border-left: 1px solid #fff;
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
}
.footer_item.link ul li	a{
	margin: 0 .2em;
}






/* *****************************************************************
*	ウィジット
* ***************************************************************** */

/* 基本形
---------------------------------------------------- */

.widget {
	margin: 0 0 50px 0;
}

.widget ul {
	margin: 0 0 0 0;
	padding: 0 0 0 0;
}

.widget li {
	list-style: none;
}

.widget li a {
	color: #666;
}

.widget li a:hover {
	color: #999;
}

.widget_recent_entries li a,
.widget_archive li a,
.widget_categories li a,
.widget_nav_menu li a {
	margin: 0 0 0 0;
}

.textwidget,
.textwidget p {
	font-size: 14px;
	color: #444;
	line-height: 180%;
	margin: 0 0 0px 0;
	padding: 5px 0 0 0;
}

.widget-title {
	color: #1a1a1a;
	font-size: 18px;
	font-weight: normal;
	letter-spacing: 0.05em;
	margin: 0px 0px 10px 0px;
	padding: 0 0 10px;
	border-bottom: 1px solid #cacaca;
}

.post-date {
	font-size: 89%;
	padding: 0 0 0 10px;
}

/* ウィジェットボックストップページ用
---------------------------------------------------- */

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

.topbox ul {

	margin: 0 0 0 0;
	padding: 0 0 0 0;
}

.topbox li {
	margin: 0 0 0 0;
	padding: 7px 0px 6px 0px;
	list-style: none;
	border-bottom: 1px dotted #ddd;
}

.topbox li a {
	font-size: 14px;
	line-height: 160%;
	color: #444;
	margin: 0 0 0 0;
	padding: 7px 0px 6px 0px;
	list-style: none;
	transition: 0.5s;
	-webkit-transition: 0.5s;
	-moz-transition: 0.5s;
	-o-transition: 0.5s;
	-ms-transition: 0.5s;
}

.topbox li a:hover {
	color: #999;
}

.topbox h2 {
	font-size: 14px;
	margin: 0 0 0 0;
	padding: 0 0 0 0;
}

.topbox h3 {
	font-size: 13px;
	margin: 0 0 0 0;
	padding: 0 0 0 0;
}

.topbox h4 {
	font-size: 12px;
	margin: 0 0 0 0;
	padding: 0 0 0 0;
}

.topbox ul.children {
	margin-bottom: 0px;
	display: block;
	padding: 5px 0 0 0;
}

.topbox ul.children li {
	padding-left: 15px;
	padding-top: 5px;
	border-top: 1px dotted #ccc;
	border-bottom: 0px dotted #ccc;
}

.topbox ul.sub-menu {
	margin-bottom: 0px;
	display: block;
	padding: 5px 0 0 0;
}

.topbox ul.sub-menu li {
	padding-left: 15px;
	padding-top: 5px;
	border-top: 1px dotted #ccc;
	border-bottom: 0px dotted #ccc;
}


/* ウィジェットボックスフッター用
---------------------------------------------------- */

.footerbox .widget {
	margin: 0 0 0 0;
	padding: 50px 0 50px 0;
	color: #fff;
}

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

.footerbox .textwidget,
.footerbox .textwidget p {
	font-size: 14px;
	color: #fff;
	line-height: 180%;
	margin: 0 0 0px 0;
	padding: 5px 0 0 0;
}

.footerbox ul {

	margin: 0 0 0 0;
	padding: 0 0 0 0;
}

.footerbox li {
	list-style: disc;
	margin: 0 0 0 20px;
	padding: 0 0px 6px 0px;
}

.footerbox li a {
	font-size: 13px;
	line-height: 160%;
	color: #fff;
	margin: 0 0 0 0;
	padding: 7px 0px 6px 0px;
	transition: 0.5s;
	-webkit-transition: 0.5s;
	-moz-transition: 0.5s;
	-o-transition: 0.5s;
	-ms-transition: 0.5s;
}

.footerbox li a:hover {
	color: #999;
}

.footerbox h2 {
	font-size: 14px;
	margin: 0 0 0 0;
	padding: 0 0 0 0;
}

.footerbox h3 {
	font-size: 13px;
	margin: 0 0 0 0;
	padding: 0 0 0 0;
}

.footerbox h4 {
	font-size: 12px;
	margin: 0 0 0 0;
	padding: 0 0 0 0;
}

.footerbox ul.children {
	margin-bottom: 0px;
	display: block;
	padding: 5px 0 0 0;
}

.footerbox ul.children li {
	padding-left: 15px;
	padding-top: 5px;
}

.footerbox ul.sub-menu {
	margin-bottom: 0px;
	display: block;
	padding: 5px 0 0 0;
}

.footerbox ul.sub-menu li {
	padding-left: 15px;
	padding-top: 5px;
}

.footer-widget-title {
	color: #fff;
	font-size: 16px;
	font-weight: bold;
	letter-spacing: 0.05em;
	font-style: normal;
	margin: 0px 0px 10px 0px;
	padding: 0px 0 3px 0;
	border-bottom: 1px solid #ccc;
}

.f-tit {
	font-size: 18px;
	letter-spacing: 0.05em;
	font-style: normal;
}

/* ETC
---------------------------------------------------- */
/* 背景は画面幅いっぱい */
.fullwidth {
	margin-inline: calc(50% - 50vw + 16px / 2);	/*スクロールバーの幅を考慮（+8px）*/
}
/* 背景は画面幅いっぱい・コンテンツはコンテナ幅 */
.fullwidth__fit {
	margin-inline: calc(50% - 50vw + 16px / 2);	/*スクロールバーの幅を考慮（+8px）*/
	padding-inline: calc(50vw - 50% - 16px / 2); /*スクロールバーの幅を考慮（+8px）*/
}

.bg_gray {
	background: #fbf8f5;
}

.bg_white {
	background: #fff;
}

.bg_pink {
	background: #ff9999;
}

.bg_black {
	background: #222529;
}
.bg_black02 {
	background: #2d3035;
}

.bg_Grad {
	background: #fee9e9;
	background: linear-gradient(to bottom right, #f9f7df 0%, #fee9e9 100%);
}

.bg_madeiniwaki {
	background: #fff;
	background-image: url(../images/madeiniwaki_bg.jpg);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: 50% 50%;
}
.bg_ulala {
	height: 380px;
	background: #fff;
	background-image: url(../images/ulala_bg01.jpg);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: 50% 40%;
}

.page-contents {
	margin: 0 0;
}

.top__box {
	margin: 0 auto;
	padding: 120px 30px;
	max-width: 1360px;
}
.top__box figure img {
	width: 100%;
}

.full__box {
	margin: 0 auto;
	padding: 100px 0px;
}

.top__box_inner {
	margin: 0px auto;
	padding: 0px;
}
.section__wrap {
	margin: 0 0 100px;
	padding: 0;
}
.box {
	margin: 0 auto 100px;
	padding: 0px;
}

.ImgBox {
	overflow: hidden;
	width: 100%;
	height: 100%;
	background: #000;
}

.ImgBox img {
	display: block;
	width: 100%;
	transition-duration: 0.5s;
}

.ImgBox img:hover {
	transform: scale(1.1);
	transition-duration: 0.5s;
	opacity: 0.6;
}

.top__ttl {
	font-size: 40px;
	font-weight: 700;
	margin: 0px 0px 48px 0px;
	padding: 0px 0px 0px 0px;
	text-align: center;
	letter-spacing: 0.05em;
	line-height: 1.6;
}

.top__ttl-sub {
	display: block;
	font-size: 16px;
	font-weight: 400;
	margin: 0 0 1.5em;
	padding: 0;
	line-height: 1;
	letter-spacing: 0.18em;
}

.text-white{
	color: #fff;
}

.page-head-title {
	width: 100%;
	margin-top: 100px;
	padding: 60px 0;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: 50% 50%;
}

.page-head-title h1 {
	max-width: 1200px;
	margin: 0 auto;
	font-size: 28px;
	text-align: center;
	letter-spacing: .05em;
	font-weight: bold;
	color: #1a1a1a;
}
.page-head-title span {
	display: block;
	margin: 1.5em 0 0;
	font-size: 13px;
	line-height: 1;
	letter-spacing: .18em;
	text-align: center;
}

.about__wrap {
	margin: 0;
}
.about__container {
	margin: 0 auto;
	padding: 120px 0px;
	max-width: 1360px;
}
.about__columns {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin: 0 0;
    padding: 0;
	width: 100%;
}
.about__body {
	margin-left: 0;
	padding: 60px 30px;
	color: #78231a;
	background: rgba(251,248,245,.5);
	z-index: 1;
}
.about__body .color{
	color: #e8330b;
}
.about__ttl {
	font-size: 64px;
	font-weight: 700;
	margin: 0px 0px 38px 0px;
	padding: 0px 0px 0px 0px;
	text-align: left;
	letter-spacing: 0.05em;
	line-height: 1.6;
}
.about__text {
	margin: 0 0 0;
	font-size: 22px;
	line-height: 2.0;
	letter-spacing: 0.05em;
}

.about__photo {
	width: 62%;
	margin-left: -100%;
}
.about__image-R {
	flex: 1;
	margin-right: calc((57vw  - 100%) * -1);
}
.about__photo img{
	padding-right: 0;
    width: 100%;
}
@media only screen and (max-width: 1200px) {
	.about__ttl {
		font-size: 38px;
		margin: 0px 0px 38px 0px;
	}
	.about__text {
		font-size: 15px;
	}
}

.madeiniwaki__body {
	margin: 0 0 0px;
	color: #fff;
	text-align: center;
}
.madeiniwaki__text {
	margin: 0 0 0;
	font-size: 18px;
	line-height: 2.0;
}
.contents {
	overflow-x: hidden;
}
.img-Right {
    flex-direction: row-reverse;
}
.brandtomato__wrap {
	color: #fff;
}
.brandtomato__body {
	margin: 0 0 0px;
	text-align: center;
}
.brandtomato__text {
	margin: 0 0 0;
	font-size: 18px;
	line-height: 2.0;
}
.brandtomato__container {
	padding: 100px 0 0;
}
.brandtomato__container:first-child {
	margin-top: 0;
	padding-top: 0;
}
.brandtomato__columns {
    display: flex;
    justify-content: space-between;
	align-items: center;
	margin: 0 0;
    padding: 0;
}
.brandtomato__columns-photo {
    width: 54%;
    margin: 0 0;
	text-align: center;
}
.brandtomato__columns-photo img{
    width: 100%;
}
.brandtomato__image-L {
	flex: 1;
	margin-left: calc((53vw  - 100%) * -1);
}
.brandtomato__image-R {
	flex: 1;
	margin-right: calc((53vw  - 100%) * -1);
}

.brandtomato__columns-body {
	position: relative;
    width: 36%;
    margin: 0 0;
}
.brandtomato__columns-body .subtit {
	position: relative;
    margin: 0;
	padding:0;
    font-size: 14px;
	font-family: "Arial", sans-serif;
	line-height: 1.4;
}
.brandtomato__columns-body .ttl{
    margin: 18px 0 40px;
	padding: 0 0 .8em;
    font-size: 36px;
	font-weight: 700;
	line-height: 1.6;
	border-bottom: 1px solid #fff;
}
.brandtomato__columns-body .logo{
	padding: 30px 0 0;
	text-align: center;
}
.brandtomato__columns-body .logo img{
	max-width: 200px;
}
.brandtomato__columns-body .text {
    margin: 0 0 20px;
    font-size: 20px;
}
.brandtomato__columns-body .sub {
    margin: 20px 0 0;
    font-size: 15px;
}


.sanchi__wrap {
	margin: 0 auto;
	color: #fff;
}
.sanchi__body {
	margin: 0 0 0px;
	text-align: center;
}
.sanchi__text {
	margin: 0 0 0;
	font-size: 18px;
	line-height: 2.0;
}
.sanchi__container {
	padding: 100px 0 0;
}
.sanchi__container:first-child {
	margin-top: 0;
	padding-top: 0;
}
.sanchi__columns {
    display: flex;
    justify-content: space-between;
	margin: 0 0;
    padding: 0;
}
.sanchi__columns-photo {
    width: 54%;
    margin: 0 0;
	text-align: center;
}
.sanchi__image-L {
	flex: 1;
	margin-left: calc((53vw  - 100%) * -1);
}
.sanchi__image-R {
	flex: 1;
	margin-right: calc((53vw  - 100%) * -1);
}
.sanchi__columns-body {
    width: 36%;
    margin: 5% 0 0;
}
.sanchi__columns-body .ttl{
    margin: 0 0 40px;
	padding: 0;
    font-size: 36px;
	font-weight: 700;
	line-height: 1.4;
}
.sanchi__columns-body .text {
    margin: 60px 0 60px;
    font-size: 17px;
}
.sanchi__columns-body .text a{
	display: inline-block;
	margin-right: .5em;
    color: #fff;
	font-weight: bold;
	text-decoration: underline;
}
.sanchi-img {
    margin-top: 80px;
}


.ulala__wrap {
	margin: 0 auto;
}
.ulala__head .logo {
    margin: 0 auto 30px;
	width: 100px;
}
.ulala__body {
	padding: 28px 0 0;
	text-align: center;
}
.ulala__text {
	margin: 0 0 0;
	font-size: 18px;
	line-height: 2.0;
}

.whatulala__wrap {
	margin: 0 auto;
}
.whatulala__body {
	margin: 0 0 0px;
	text-align: center;
}
.whatulala__text {
	margin: 0 0 0;
	font-size: 18px;
	line-height: 2.0;
}
.whatulala__text-ulala {
	margin: 1.5em 0;
	font-size: 30px;
	line-height: 2.0;
}
.ulala__movie {
	margin: 80px 0 40px;
	margin-inline: auto;
	max-width: 900px;
	box-shadow: 0 0 30px rgba(0, 0, 0, 0.3);
}
.whatulala__container {
	padding: 100px 0 0;
}
.whatulala__container:first-child {
	margin-top: 0;
	padding-top: 0;
}
.whatulala__columns {
    display: flex;
    justify-content: space-between;
	align-items: center;
	margin: 0 0;
    padding: 0;
}
.whatulala__columns-photo {
    width: 54%;
    margin: 0 0;
	text-align: center;
}
.whatulala__image-L {
	flex: 1;
	margin-left: calc((53vw  - 100%) * -1);
}
.whatulala__image-R {
	flex: 1;
	margin-right: calc((53vw  - 100%) * -1);
}
.whatulala__columns-body {
    width: 36%;
    margin: 0 0;
}
.whatulala__columns-body .ttl{
    margin: 0 0;
	padding: 0;
    font-size: 42px;
	font-weight: 700;
	line-height: 1.4;
}
.whatulala__columns-body .subttl{
    margin: 40px 0;
	padding: 0;
    font-size: 18px;
	font-weight: 700;
	line-height: 1.4;
}
.whatulala__columns-body .text {
    margin: 0 0 20px;
    font-size: 17px;
}
.photo-tate {
    max-width: 600px;
	width: 100%;
    margin: 0 auto;
}
.whatulala-img {
    margin: 0;
}


.onlineshop__wrap {
	margin: 0 auto;
}
.onlineshop__body {
	margin: 0 0 0px;
	text-align: center;
}
.onlineshop__text {
	margin: 0 0 0;
	font-size: 18px;
	line-height: 2.0;
}
.onlineshop__text-ulala {
	margin: 2em 0;
	font-size: 30px;
	line-height: 2.0;
}
.onlineshop__container {
	padding: 20px 0 0;
}
.onlineshop__columns {
    display: flex;
    justify-content: space-between;
	align-items: center;
	margin: 0 0;
	padding:40px;
	background-color: #fff;
	box-shadow: 0 0 30px rgba(0, 0, 0, 0.2);
}
.onlineshop__columns-photo {
    width: 48%;
    margin: 0;
	padding:0;
	text-align: center;
}
.onlineshop__columns-body {
    width: 48%;
    margin: 0;
	line-height: 1.4;
}
.onlineshop__columns-header {
    margin: 0;
	padding: 0 0 30px;
}
.onlineshop__columns-footer {
    margin: 0;
	padding: 0;
}
.onlineshop__columns-body .ttl{
    margin: 8px 0;
	padding: 0;
    font-size: 32px;
	font-weight: bold;
}
.onlineshop__columns-body .subttl{
    margin: 0 0 0px;
	padding: 0;
    font-size: 15px;
}
.onlineshop__columns-body .detail {
    margin: 0 0 0px;
    font-size: 15px;
}
.onlineshop__columns-body .item {
    display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 40px 0;
	border-top: 1px dotted #ccc;
}

.onlineshop__columns-body .item-ttl {
    margin: 0;
    font-size: 26px;
	font-weight: 700;
}
.onlineshop__columns-body .item-price {
    margin: 6px 0;
    font-size: 26px;
	font-weight: 700;
}
.onlineshop__columns-body .item-price-small{
    font-size: 16px;
	letter-spacing: 0;
}
.onlineshop__columns-body .item-etc {
    font-size: 12px;
	font-weight: 400;
}
.onlineshop-img {
    margin: 0;
}

.online__btn {
	margin-left: auto;
	text-align: center;
}
.online__btn a {
	position: relative;
	display: block;
	margin: 0 auto;
	padding: 1em 2em;
	width: 190px;
	color: #fff;
	font-size: 16px;
	text-align: center;
	background-color: #e60012;
	border-radius: 999px;
	transition: 0.3s;
}
.online__btn a::after {
    content: '';
    border: 0;
    border-top: solid 1px #fff;
    border-right: solid 1px #fff;
    display: inline-block;
    width: 8px;
    height: 8px;
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%) rotate(45deg);
}

.online__btn a:hover {
	opacity: .6;
}


.related__wrap {
	margin: 0 auto;
}
.related__body {
	margin: 0 0 0px;
	text-align: center;
}
.related__text {
	margin: 0 0 0;
	font-size: 18px;
	line-height: 2.0;
}
.related__container {
	padding: 20px 0 0;
}
.related__container:first-child {
	margin-top: 0;
	padding-top: 0;
}
.related__columns {
    display: flex;
    justify-content: space-between;
	margin: 0 0;
    padding: 0;
}
.related__columns-item {
	display: flex;
	flex-direction: column;
	width: 48%;
    margin: 0 0;
	text-align: center;
}
.related-body {
    margin: 2em;
	text-align: center;
}
.related-body .ttl {
    margin: 20px 0 20px;
    font-size: 24px;
	font-weight: bold;
	text-align: center;
}
.related-body .text {
    margin: 0 0;
	text-align: left;
}

.links__container {
	margin: 0;
	padding: 0;
}
.links__container ul{
	display: flex;
	justify-content: center;
	margin: 1em 0 0;
	padding: 0;
	list-style: none;
}
.links__container ul li{
	position: relative;
	display: flex;
	align-items: center;
	margin: 0 0px;
	font-size: 15px;
	text-align: center;
}
.links__container ul li+li::before{
    content: "";
    display: block;
    height: 1em;
    border-left: 1px solid #1a1a1a;
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
	transform: rotate(45deg);
}
.links__container ul li a{
	padding: 0 30px;
	line-height: 1.3;
}


.producer__btn {
	display: flex;
	justify-content: center;
	margin: 60px auto 0;
}
.producer__btn a {
	position: relative;
	padding: 1em 2em;
	min-width: 300px;
	color: #fff;
	font-size: 16px;
	text-align: center;
	border: 1px solid #fff;
	border-radius: 999px;
	transition: 0.3s;
}
.producer__btn a::after {
    content: '';
    border: 0;
    border-top: solid 1px #fff;
    border-right: solid 1px #fff;
    display: inline-block;
    width: 6px;
    height: 6px;
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%) rotate(45deg);
}

.link__btn {
	display: flex;
	justify-content: center;
	margin: 40px auto 0;
}
.link__btn a {
	position: relative;
	padding: 1em 2em;
	width: 90%;
	color: #fff;
	font-size: 14px;
	text-align: center;
	border: 1px solid #fff;
	border-radius: 999px;
	transition: 0.3s;
}
.link__btn a::after {
    content: '';
    border: 0;
    border-top: solid 1px #fff;
    border-right: solid 1px #fff;
    display: inline-block;
    width: 6px;
    height: 6px;
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%) rotate(45deg);
}

.ttl_btn {
	display: flex;
	margin: 40px auto;
}
.ttl_btn a {
	position: relative;
	display: block;
	width: 100%;
	padding: 1em 1em;
	color: #fff;
	font-size: 24px;
	border: 1px solid #fff;
	border-radius: 5px;
	transition: 0.3s;
}
.ttl_btn a::after {
    content: '';
    border: 0;
    border-top: solid 1px #fff;
    border-right: solid 1px #fff;
    display: inline-block;
    width: 8px;
    height: 8px;
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%) rotate(45deg);
}

.related__btn {
	margin-top: auto;
}
.related__btn a {
	position: relative;
	display: block;
	margin: 0 auto;
	padding: .8em 1em;
	width: 260px;
	color: #1a1a1a;
	font-size: 14px;
	text-align: center;
	border: 1px solid #1a1a1a;
	border-radius: 999px;
	transition: 0.3s;
}
.related__btn a::after {
    content: '';
    border: 0;
    border-top: solid 1px #1a1a1a;
    border-right: solid 1px #1a1a1a;
    display: inline-block;
    width: 6px;
    height: 6px;
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%) rotate(45deg);
}



.sns__ttl {
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	color: #fff;
	font-size: 30px;
	font-weight: 700;
	letter-spacing: 0.1em;
	margin: 0px 0px 40px 0px;
	padding: 0px 0px 0px 0px;
}
.sns__ttl::before,
.sns__ttl::after {
	content: '';
	width: 2px;
	height: 40px;
	background-color: #fff;
}
.sns__ttl::before {
	margin-right: 30px;
	transform: rotate(-35deg)
}
.sns__ttl::after {
	margin-left: 30px;
	transform: rotate(35deg)
}
.sns__box {
	margin: 0 auto;
	padding: 80px 0px;
	max-width: 1200px;
}
.sns__column {
	display: flex;
	justify-content: space-between;
	margin: 0;
}
.sns__column-item {
	display: flex;
	justify-content: center;
	width: calc(100% / 3 - 30px);
	margin: 0 0;
}
.sns__column-item a{
	display: flex;
	align-items: center;
}
.sns__logo {
	margin: 0 .5em;
	width: 40px;
}
.sns__label {
	margin: 0 .5em;
	font-size: 20px;
	color: #fff;
}


/*----------------------------------------
	producer
----------------------------------------*/
.producer__wrap {
	margin: 0px;
}
.producer__head {
	margin: 0 auto 80px;
}
.producer__lead {
	margin: 0;
	padding: 0;
	text-align: center;
}
.producerList__wrap {
	position: relative;
	padding-top: 100px;
	padding-bottom: 100px;
}
.producerList__wrap .title{
	margin: 0 0 80px;
	font-size: 26px;
	text-align: center;
}
@media only screen and (max-width: 767px) {
	.producer__head {
		margin: 0 auto 40px;
	}
	.producer__lead {
		margin: 0;
		padding: 0;
		text-align: left;
	}
	.producerList__wrap {
		padding-top: 60px;
		padding-bottom: 60px;
	}
	.producerList__wrap .title{
		margin: 0 0 60px;
		font-size: 19px;
		line-height: 1.8;
	}
}
/*----------------------------------------
	card
----------------------------------------*/
.card {
	display: block;
	border-radius: 8px;
	color: inherit;
	text-decoration: none;
	background: #fff;
	box-shadow: 0px 1px 3px rgba(106, 131, 152, 0.3);
	transition: color .3s;
}
.card__thumb {
	overflow: hidden;
}
.card__thumb img {
	max-width: none;
	width: 100%;
	border-radius: 5px 5px 0 0;
	transition: transform .3s;
}
.card__body {
	padding: 30px;
	font-size: 14px;
	text-align: left;
	flex-grow: 1;
}
.card__body .card__title {
	position: relative;
	padding: 0 0 10px;
	font-size: 15px;
	font-weight: bold;
	text-decoration: underline;
}
.card__body .card__title::after {
	margin-left: .7em;
	font-family: "Font Awesome 5 Free";
	content: '\f35d';
	font-size:13px;
	font-weight: 900;
}
.card__body .card__name {
	padding: 0 0 10px;
	font-size: 16px;
	font-weight: bold;
}

/*hover*/
.card:hover {
	transition: 0.6s;
}
.card:hover .card__thumb img {
	transform: scale(1.1);
}
@media (hover: hover) and (pointer: fine) { /*//ホバーアクションをPCだけにしたい場合、←のメディアクエリで囲む*/
	.card:hover {
		opacity: 0.6;
	}
}

/*----------------------------------------
	CardList
----------------------------------------*/
.cardList {
	display: flex; /*flexbox化*/
	flex-direction: column;/* 縦並びにする*/
	margin: -30px 0 0 0; /*1行目の上マージンを相殺*/
	padding: 0;
	list-style: none;
}
.cardList__item {
	display:flex;
	margin: 30px 0 0 0;
	padding: 0;
}
/*2カラム*/
@media screen and (min-width: 768px) {
	.cardList {
		flex-direction: row; /*横並びにする*/
		justify-content: space-between; /*アイテムを両端に揃えて均等配置*/
		flex-wrap: wrap; /*折り返して複数行にする*/
	}
	.cardList__item {
		width: calc((100% - 30px) / 2); /*アイテムの幅を指定*/
	}
}
/*3カラム*/
@media screen and (min-width: 991px) {
	.cardList__item {
		width: calc((100% - 60px) / 3);
	}
	.cardList::after { /*最終行を左詰めにする*/
		content: "";
		display: block;
		width:  calc((100% - 60px) / 3);
	}
}

.logo-bg {
	width: 100%;
	height: 100%;
	background: url("../images/sunshinetomato_logo.png") center center no-repeat;
	background-size:280px;
}


@media only screen and (max-width: 959px) {
	.top__ttl {
		font-size: 26px;
	}
	.top__ttl-sub {
		font-size: 13px;
	}
	.about__ttl {
		font-size: 32px;
	}
	.brandtomato__columns-body .ttl,
	.sanchi__columns-body .ttl,
	.ulala__columns-body .ttl,
	.onlineshop__columns-body .ttl,
	.related__columns-body .ttl {
		font-size: 24px;
	}
	.whatulala__columns-body .ttl {
		font-size: 32px;
	}
	.whatulala__columns-body .subttl {
		font-size: 16px;
	}
	.brandtomato__columns-body .text,
	.sanchi__columns-body .text,
	.ulala__columns-body .text,
	.whatulala__columns-body .text,
	.onlineshop__columns-body .text,
	.related__columns-body .text {
		font-size: 15px;
	}
	.brandtomato__columns-body .logo img{
		width: 160px;
	}
	.brandtomato__columns-body .sub {
		font-size: 13px;
	}
	.brandtomato__columns-body .subtit {
		font-size: 12px;
	}
	.madeiniwaki__text {
		font-size: 15px;
	}
	.brandtomato__text {
		font-size: 15px;
	}
	.sanchi__text {
		font-size: 15px;
	}
	.whatulala__text-ulala {
		font-size: 21px;
	}
	.whatulala__text {
		font-size: 15px;
	}
	.related-body .ttl {
		font-size: 18px;
	}
	.links__container ul{
		display: flex;
		flex-direction: column;
	}
	.links__container ul li{
		display: flex;
		justify-content: center;
		flex-direction: column;
		margin: .5em 0;
	}
	.links__container ul li+li::before{
		display: none;
	}
	.links__container ul li a{
		display: block;
		margin: 0;
		padding: 0;
		text-align: center;
	}
	.onlineshop__columns {
		display: flex;
		flex-flow: column;
		align-items: center;
		margin: 0;
		padding: 40px;
	}
	.onlineshop__columns-photo {
		width: 100%;
		text-align: center;
	}
	.onlineshop__columns-body {
		width: 100%;
		padding-top: 40px;
	}
	.onlineshop__columns-body .item-ttl {
		font-size: 24px;
	}
}
@media only screen and (max-width: 767px) {
	.bg_ulala {
		height: 240px;
	}
	.about__container {
		margin: 0 auto;
		padding: 80px 30px;
	}
	.about__body {
		display: flex;
		flex-flow: column;
		align-items: center;
		margin: 0;
		padding: 0;
		width: 100%;
	}
	.about__ttl {
		display: flex;
		flex-flow: column;
		align-items: center;
		font-size: 24px;
		margin: 0px 0px 24px 18px;
		line-height: 1.4;
	}
	.about__text {
		margin: 0 0 0;
		font-size: 16px;
		text-align: center;
	}
	.about__photo {
		width: 100%;
		margin: 40px 0 0;
		text-align: center;
	}
	.about__image-R {
		margin: 0;
	}
	.brandtomato__container,
	.sanchi__container,
	.ulala__container,
	.whatulala__container {
		padding: 100px 0 0;
	}
	.about__columns,
	.brandtomato__columns,
	.sanchi__columns,
	.ulala__columns,
	.whatulala__columns {
		display: flex;
		flex-flow: column;
		align-items: center;
		margin: 0;
		padding: 0;
	}
	.brandtomato__columns-photo,
	.sanchi__columns-photo,
	.ulala__columns-photo,
	.whatulala__columns-photo {
		width: 100%;
		margin: 0 0 40px;
	}
	.brandtomato__columns-body,
	.sanchi__columns-body,
	.ulala__columns-body,
	.whatulala__columns-body {
		width: 100%;
		margin: 0 0;
	}
	.brandtomato__image-L,
	.brandtomato__image-L,
	.sanchi__image-L,
	.ulala__image-L,
	.whatulala__image-L {
		margin: 0;
	}
	.brandtomato__image-R,
	.brandtomato__image-R,
	.sanchi__image-R,
	.ulala__image-R,
	.whatulala__image-R {
		margin: 0;
	}
	.brandtomato__columns-body .logo{
		position: absolute;
		top: 0px;
		right: 0px;
		padding: 0;
		z-index: -1;
	}
	.brandtomato__columns-body .logo img{
		max-width: 80px;
	}
	.brandtomato__columns-body .ttl{
		margin: 10px 0 40px;
		padding: 0 0 .6em;
	}
	.madeiniwaki__text {
		text-align: left;
	}
	.brandtomato__text {
		text-align: left;
	}
	.sanchi__text {
		text-align: left;
	}
	.sanchi__columns-body .ttl {
		margin: 0 0 24px;
	}
	.related__container {
		padding: 0;
	}
	.related__columns {
		display: flex;
		flex-direction: column;
		margin: 0 0;
		padding: 0;
	}
	.related__columns-item {
		width: 100%;
		max-width: 600px;
		margin: 0 auto 80px;
		text-align: center;
	}
	.related__columns-item:last-child {
		margin: 0 auto;
	}
	.related-body {
		margin: 1em 1em 2em;
	}
	.ulala__body {
		padding: 0;
	}
	.ulala__movie {
		margin-top: 40px;
		margin-bottom: 20px;
	}
	.onlineshop__container {
		padding: 0;
	}
	.onlineshop__columns {
		display: flex;
		flex-flow: column;
		align-items: center;
		padding: 0;
	}
	.onlineshop__columns-photo {
		width: 100%;
		text-align: center;
		padding: 0px;
	}
	.onlineshop__columns-body {
		width: 100%;
		padding: 40px 20px 20px;
	}
	.onlineshop__columns-body .ttl{
		font-size: 20px;
	}
	.onlineshop__columns-body .item-ttl {
		font-size: 20px;
	}
	.onlineshop__columns-body .item-price {
		font-size: 24px;
	}
	.onlineshop__columns-body .item-price-small{
		font-size: 13px;
	}
	.onlineshop__columns-body .item-etc {
		font-size: 12px;
		font-weight: 400;
	}
	.onlineshop__columns-body .item {
		display: block;
		padding: 30px 0;
		border-top: 1px dotted #ccc;
	}
	.online__btn a {
		position: relative;
		display: block;
		margin: 20px auto 0;
		width: 100%;
		color: #fff;
		font-size: 14px;
	}
	.links__container ul li{
		margin: .5em 0;
		font-size: 14px;
		width: 100%;
		display: block;
	}


	.movie__box {
		padding: 80px 0;
	}
	.movie__column {
		margin: 0px 2em;
	}
	.movie__column-item {
		display: block;
		width: 100%;
		margin: 0 0 60px;
	}
	.movie__column-item:last-child {
		margin-bottom: 0;
	}
	.movie__ttl{
		font-size: 16px;
	}

	.sns__box {
		padding: 60px 0;
	}
	.sns__ttl {
		font-size: 24px;
		margin: 0px 0px 40px 0px;
	}
	.sns__column {
		display: flex;
		justify-content: center;
		align-items: center;
	}
	.sns__column-item a{
		display: flex;
		flex-direction: column;
		align-items: center;
		margin: 0 .8em;
	}
	.sns__logo {
		margin: 0 0 1em;
		width: 40px;
	}
	.sns__label {
		margin: 0;
		font-size: 14px;
		color: #fff;
	}
	.footer_columns {
		display: flex;
		flex-direction: column;
		text-align: center;
	}
	.footer__ttl{
		font-size: 16px;
	}
	.footer__add span {
		font-size: 13px;
	}
	.footer_item.link ul{
		display: flex;
		justify-content: center;
		margin: 0;
		padding: 20px 0 0;
		list-style: none;
	}

	.footer_item.link ul li{
		position: relative;
		margin: 0;
		font-size: 13px;
		text-align: center;
	}
	.copyright {
		text-align: center;
		padding-bottom: 0;
	}
}

@media only screen and (max-width: 767px) {
	.cvItem {
		position: absolute;
		z-index: 1;
	}
	.cvLink {
		bottom: 5px;
		left: 50%;
		transform: translateX(-50%);
		z-index: 2;
		max-width: 300px;
		width: 100%;
		}
	.cvLink a:hover{
		opacity: 1;
	}
	.cvLink.pc {
		display: none;
	}

	/* フローティング */
	.floating {
		position: fixed;
		bottom: 0;
		left: 50%;
		transform: translateX(-50%);
		transition: all 0.6s ease 0s;
		opacity: 0;
		z-index: 999;
	}
	.floating.pc{
		display: none;
	}
	.floating.sp{
		max-width: 600px;
		width: 100%;
	}
	.floating a:hover{
		opacity: 1;
	}
	.is-in .floating {
		opacity: 1;
	}
}
@media only screen and (min-width: 768px) {
	.cvItem {
		position: absolute;
		z-index: 1;
	}
	.cvLink {
		bottom: 50px;
		right: 20px;
		width: 340px;
		z-index: 2;
	}
	.cvLink a:hover{
		opacity: 1;
	}
	.cvLink.sp {
		display: none;
	}

	/* フローティング */
	.floating {
		position: fixed;
		top: 68px;
		right: 20px;
		transition: all 0.6s ease 0s;
		opacity: 0;
		z-index: 999;
	}
	.floating.pc{
		width: 320px;
	}
	.floating.sp{
		display: none;
	}
	.floating a:hover{
		opacity: 1;
	}
	.is-in .floating {
		opacity: 1;
	}
}

/*  .news
------------------------------------*/
.news_box {
	display: flex;
	margin: 0;
	padding: 0;
}
.news_ttl {
	width: 340px;
}
.news_list {
	width: 100%;
	flex: 1;
}
.news_ttl h2 {
	margin: 0;
	padding: 0;
	font-size: 52px;
	line-height: 1;
	letter-spacing: .02em;
}
.news_ttl h2 span{
	display: block;
	padding-top: 1em;
	font-size: 16px;
	font-weight: normal;
}
.news_list ul{
	margin: 0 0 0;
	padding: 0;
	border-top: 1px solid #cacaca;
}

.news_list ul li {
	overflow: hidden;
	margin: 0;
	padding: 14px 0;
	list-style: none;
	border-bottom: 1px solid #cacaca;
}

.news_list dl {
	margin: 0;
	padding: 0;
	font-size: 15px;
}

.news_list dt {
	clear: both;
	float: left;
	width: 160px;
	margin: 0;
	font-weight: normal;
	letter-spacing: .08em;
}

.news_list dd {
	margin: 0 0 0 180px;
	font-weight: normal;
}

.news_list dd a {
	color: #1a1a1a;
}

.news-cat {
	display: inline-block;
	padding: 0 .8em;
	font-size: .8em;
	border-radius:3px;
}
.news-cat.news{
	background-color: #1a1a1a;
}
.news-cat.case{
	background-color: #13b5b1;
}
.news-cat a{
	color: #777;
}
.news__btn {
	display: flex;
	justify-content: flex-end;
	margin: 30px auto 0;
}
.news__btn a {
	display: block;
	position: relative;
	padding: .6em 1em;
	width: 140px;
	color: #1a1a1a;
	border: 1px solid #1a1a1a;
	border-radius: 999px;
	font-size: 13px;
	text-align: center;
	transition: 0.3s;
}
.news__btn a:hover {
	opacity: .6;
}
.news__btn a::after {
    content: '';
    border: 0;
    border-top: solid 1px #1a1a1a;
    border-right: solid 1px #1a1a1a;
    display: inline-block;
    width: 6px;
    height: 6px;
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%) rotate(45deg);
}

@media only screen and (max-width: 990px) {
	.news_box {
		display: flex;
		flex-flow: column;
		max-width: 100%;
		margin: 0;
		padding: 0;
	}
	.news_ttl {
		flex: 0;
		margin-bottom: 40px;
		width: 100%;
	}
	.news_ttl h2 {
		font-size: 26px;
	}
	.news_ttl h2 span{
		font-size: 13px;
	}
}
@media only screen and (max-width: 767px) {
	.news_list dt {
		float: none;
		width: 100%;
		margin: 0 0 .2em;
		font-weight: normal;
		letter-spacing: .08em;
	}
	.news_list dl {
		font-size: 14px;
	}
	.news_list dd {
		margin: 0 0 0 0;
	}
	.news-date {
		font-size: .85em;
	}
}



.goback {
	text-align: center;
	margin: 100px 0 0px 0;
	padding-top: 60px;
	border-top: 1px solid #cacaca;
}

.mt0 {
	margin-top: 0px !important;
}

.mt1 {
	margin-top: 10px !important;
}

.mt2 {
	margin-top: 20px !important;
}

.mt3 {
	margin-top: 30px !important;
}

.mt4 {
	margin-top: 40px !important;
}

.mt5 {
	margin-top: 50px !important;
}

.mt6 {
	margin-top: 60px !important;
}

.mt7 {
	margin-top: 70px !important;
}

.mt8 {
	margin-top: 80px !important;
}

.mt9 {
	margin-top: 90px !important;
}

.mt10 {
	margin-top: 100px !important;
}

.mb0 {
	margin-bottom: 0px !important;
}

.mb1 {
	margin-bottom: 10px !important;
}

.mb2 {
	margin-bottom: 20px !important;
}

.mb3 {
	margin-bottom: 30px !important;
}

.mb4 {
	margin-bottom: 40px !important;
}

.mb5 {
	margin-bottom: 50px !important;
}

.mb6 {
	margin-bottom: 60px !important;
}

.mb7 {
	margin-bottom: 70px !important;
}

.mb8 {
	margin-bottom: 80px !important;
}

.mb9 {
	margin-bottom: 90px !important;
}

.mb10 {
	margin-bottom: 100px !important;
}

.txt-l {
	text-align: left;
}

.txt-r {
	text-align: right;
}

.txt-c {
	text-align: center;
}

.w-300 {
	max-width: 300px;
}

.w-400 {
	max-width: 400px;
}


/* ウィジェットボックスシングルページ記事下用
---------------------------------------------------- */

.singlebox {
	margin: 50px 0 50px 0;
	padding: 0 0 0 0;
}

.single-widget-title {
	color: #333;
	font-size: 18px;
	font-weight: bold;
	letter-spacing: 0.05em;
	font-style: normal;
	margin: 50px 0 10px 0;
	padding: 0 0 3px 0;
	border-bottom: 1px solid #ccc;
}

.singlebox .textwidget,
.singlebox .textwidget p {
	font-size: 16px;
	color: #444;
	line-height: 170%;
	margin: 0 0 0px 0;
	padding: 5px 0 5px 0;
}


.singlebox ul {
	margin: 0 0 0 0;
	padding: 0 0 0 0;
}

.singlebox li {
	margin: 0 0 0 0;
	padding: 7px 0px 6px 0px;
	list-style: none;
	border-bottom: 1px dotted #ddd;
}

.singlebox li a {
	line-height: 160%;
	color: #444;
	margin: 0 0 0 0;
	padding: 7px 0px 6px 0px;
	list-style: none;
	transition: 0.5s;
	-webkit-transition: 0.5s;
	-moz-transition: 0.5s;
	-o-transition: 0.5s;
	-ms-transition: 0.5s;
}

.singlebox li a:hover {
	color: #999;
}

.singlebox ul.children {
	margin-bottom: 0px;
	display: block;
	padding: 5px 0 0 0;
}

.singlebox ul.children li {
	padding-left: 15px;
	padding-top: 5px;
	border-top: 1px dotted #ccc;
	border-bottom: 0px dotted #ccc;
}

.singlebox ul.sub-menu {
	margin-bottom: 0px;
	display: block;
	padding: 5px 0 0 0;
}

.singlebox ul.sub-menu li {
	padding-left: 15px;
	padding-top: 5px;
	border-top: 1px dotted #ccc;
	border-bottom: 0px dotted #ccc;
}


/* ウィジェットボックスサイドバー用
---------------------------------------------------- */

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

.sidebox ul {

	margin: 0 0 0 0;
	padding: 0 0 0 0;
}

.sidebox li {
	margin: 0 0 0 0;
	padding: 7px 0px 7px 0px;
	list-style: none;
	border-bottom: 1px dotted #ddd;
}

.sidebox li a {
	font-size: 13px;
	color: #1a1a1a;
	margin: 0 0 0 0;
	padding: 5px 0px 5px 0px;
	list-style: none;
	transition: 0.5s;
	-webkit-transition: 0.5s;
	-moz-transition: 0.5s;
	-o-transition: 0.5s;
	-ms-transition: 0.5s;
}

.sidebox li a:hover {
	color: #999;
}

.sidebox h2 {
	font-size: 18px;
	margin: 0 0 .5em 0;
	padding: 0 0 .5em 0;
	border-bottom: 1px solid #cacaca;
}

.sidebox h3 {
	font-size: 13px;
	margin: 0 0 0 0;
	padding: 0 0 0 0;
}

.sidebox h4 {
	font-size: 12px;
	margin: 0 0 0 0;
	padding: 0 0 0 0;
}

.sidebox ul.children {
	margin-bottom: 0px;
	display: block;
	padding: 5px 0 0 0;
}

.sidebox ul.children li {
	padding: 5px 0 5px 15px;
	border-top: 1px dotted #ccc;
	border-bottom: 0px dotted #ccc;
}

.sidebox ul.sub-menu {
	margin-bottom: 0px;
	display: block;
	padding: 5px 0 0 0;
}

.sidebox ul.sub-menu li {
	padding: 5px 0 5px 15px;
	border-top: 1px dotted #ccc;
	border-bottom: 0px dotted #ccc;
}


/* カレンダー
---------------------------------------------------- */

table#wp-calendar {
	width: 100%
}

table#wp-calendar th {
	text-align: center;
}

table#wp-calendar td {
	text-align: center;
}



/* *****************************************************************
*	検索フォーム＆検索結果
* ***************************************************************** */

/* 検索フォーム
---------------------------------------------------- */

.search input {
	font: 13px arial, sans-serif;
	color: #555;
	width: 85%;
	padding: 10px 5px;
}

.search button {
	width: 15px;
	height: 15px;
	cursor: pointer;
	vertical-align: middle;
	border: none;
	background: url(../images/search.png) no-repeat;
}


/* 検索結果ハイライト
---------------------------------------------------- */

.search-excerpt {
	font-weight: bold;
	background: #FFE4E1;
}


/* — お問い合わせフォーム　送信ボタンのカスタマイズ — */
input.wpcf7-submit {
	padding: 1em 1.5em;
	/* ボタン内の余白 */
	margin: 1em 0 1em 0;
	/* ボタンの上下にのみ余白 */
	background: #000;
	/* 背景色 */
	border: 1px solid #000;
	color: #fff;
	/* 文字の色*/
	font-size: 16px;
	/* 文字の大きさ */
	font-weight: bold;
	/* 太字*/
	border-radius: 9999px;
}

input.wpcf7-submit:hover {
	opacity: 0.8;
	/* マウスオンで半透明に */
	transition: all .5s;
}

span.wpcf7-list-item {
	display: block;
	padding: 5px 0;
}

div.wpcf7 .ajax-loader {
	display: none !important;
}

span.wpcf7-spinner {
	display: block;
	margin: 0 auto;
}

/* *****************************************************************
*	ボタン
* ***************************************************************** */

.btn {
	margin: 20px 0;
	text-align: center;
}

.btn a {
	position: relative;
	display: inline-block;
	margin: 0px auto;
	padding: 10px 40px;
	color: #fff;
	font-size: 16px;
	text-align: center;
	background: #000;
	border: 1px solid #000;
	border-radius: 999px;
}

.btn a:hover {
	color: #1a1a1a;
	text-decoration: none;
	background: #fff;
	border: 1px solid #000;
	-webkit-transition: all .5s;
	transition: all .5s;
}

.btn a::after {
	font-family: "Font Awesome 5 Free";
	content: "\f054";
	position: absolute;
	font-weight: 900;
	font-size: 12px;
	top: 50%;
	right: 6px;
	left: auto;
	bottom: auto;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
}

.btn-b {
	display: inline-block;
}

.btn-b a {
	position: relative;
	display: inline-block;
	margin: 10px auto 0;
	padding: 10px 20px;
	color: #fff;
	text-align: center;
	background: #3179c9;
	border-radius: 999px;
	line-height: 1.6;
}

.btn-b a:hover {
	color: #3179c9;
	text-decoration: none;
	background: #e7f0f9;
	-webkit-transition: all .5s;
	transition: all .5s;
}

.btn-b a::after {
	font-family: "Font Awesome 5 Free";
	content: "\f105";
	position: absolute;
	font-weight: 900;
	font-size: 12px;
	top: 50%;
	right: 10px;
	left: auto;
	bottom: auto;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
}


/* =button
-------------------------------------------------------------- */
.button-box {
	margin: 20px auto;
	text-align: center;
}

.button {
	display: inline-block;
	margin: 15px auto;
	padding: 10px 30px;
	text-align: center;
	text-decoration: none;
	outline: none;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
}

.button::before,
.button::after {
	position: absolute;
	z-index: -1;
	display: block;
	content: '';
}

.button,
.button::before,
.button::after {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-transition: all .3s;
	transition: all .3s;
}

.button {
	background-color: #0068b7;
	color: #fff !important;
	font-size: 16px;
}

.button a:link,
.button a:visited {
	color: #fff !important;
}

.button:hover {
	background-color: #448aca;
	text-decoration: none;
}



/* *****************************************************************
*	レスポンシブテーブル
* ***************************************************************** */

.responsive-tabel-01 table {
	width: 100%;
}

.responsive-tabel-01 {
	margin: 20px 0;
}

.responsive-tabel-01 th {
	width: 30%;
	text-align: left;
	background: #f4f4f4;
	padding: 15px;
	border: 1px solid #ddd;
	vertical-align: middle;
}

.responsive-tabel-01 td {
	text-align: left;
	padding: 15px;
	border: 1px solid #ddd;
	vertical-align: middle;
}


@media only screen and (max-width:767px) {
	.responsive-tabel-01 {
		margin: 20px 0px;
		font-size: 13px;
	}

	.responsive-tabel-01 th,
	.responsive-tabel-01 td {
		width: 100%;
		display: block;
		border-top: none;
		padding: 15px 10px;
	}

	.responsive-tabel-01 tr:first-child th {
		border-top: 1px solid #ddd;
	}
}



/* *****************************************************************
*   レスポンシブ（メディアクエリ）
* ***************************************************************** */


/* PC 画面の横幅が960px以上
---------------------------------------------------- */

@media only screen and (min-width: 960px) {
	.pcbr {
        display:block;
    }
	.sidebar {
		width: 100%;
	}
}

/* Tablet (Portrait) 画面の横幅が768px〜959pxまで
---------------------------------------------------- */

@media only screen and (min-width: 768px) and (max-width: 959px) {
	.pcbr {
        display:block;
    }
	.wrapper {
		padding: 0px 30px 0px 30px;
	}

	li.item {
		height: 260px;
		margin-bottom: 40px;
	}

	li.item-02 {
		height: 290px;
		margin-bottom: 40px;
	}

	li.item-gallery {
		height: 150px;
	}

	.item-img {
		height: 150px;
		margin: 0 0 10px 0;
		overflow: hidden;
	}

	.footer-inner {
		width: 100%;
	}
}


/* Mobile (Portrait) 画面の横幅が300px~767pxまで（基本）
---------------------------------------------------- */

@media only screen and (max-width: 767px) {
	body {
		font-size: 14px;
	}
	.spbr {
        display:block;
    }
	.mobile-display-none {
		display: none;
	}
	.wrapper {
		padding: 0px 30px 0px 30px;
	}

	li.item {
		height: auto;
		margin-bottom: 40px;
	}

	li.item-02 {
		height: 330px;
		margin-bottom: 40px;
	}

	li.item-gallery {
		height: 200px;
	}

	.item-img {
		height: 200px;
		margin: 0 0 15px 0;
		overflow: hidden;
	}

	table.similar-text img {
		width: 100px;
	}

	table.similar-text th {
		width: 100px;
	}

	.head-img {
		margin: 40px auto 20px auto;
	}

	.pagedate {
		margin: 0px 0 -10px 0;
	}

	p {
		font-size: 14px;
	}

	.pager {
		margin: 80px 0 80px 0;
	}

	.footer-inner {
		padding: 40px 0px;
	}

	.footer-logo {
		margin: 10px auto 30px;
	}

	.footer-logo img {
		width: 200px;
	}

	.page-contents {
		margin: 0 0;
	}

	#top-gazou img {
		margin-bottom: 25px;
	}

	.pagetitle {
		font-size: 20px;
		margin: 0px 0 40px 0;
		padding: 10px 0px 10px 0px;
		letter-spacing: 0.05em;
	}

	.blog-title {
		font-size: 18px;
	}

	#next {
		margin: 10px 0 10px 0;
	}

	h2 {
		font-size: 21px;
	}

	h3 {
		font-size: 19px;
	}

	h4 {
		font-size: 16px;
	}

	h5 {
		font-size: 16px;
	}

	li {
		font-size: 14px;
	}

	.alignright,
	.right {
		float: none;
		margin: 0 auto 20px;
	}

	.alignleft,
	.left {
		float: none;
		margin: 0 auto 20px;
	}

	a,
	p a,
	li a {
		transition: unset;
		-webkit-transition: unset;
	}

	.breadcrumb {
		display: none;
	}

	.full_width {
		margin-left: calc((100% - 100vw) / 2);
		margin-right: calc((100% - 100vw) / 2);
	}

	.full_box {
		margin: 0 auto;
		padding: 0px 0px;
	}

	.box {
		margin: 0 0 80px;
		padding: 0px 0px;
	}

	.top__box {
		margin: 0 auto;
		padding-top: 100px;
		padding-bottom: 100px;
	}

	.top__box_inner {
		margin: 20px auto;
		padding: 0px;
	}

	/* メニューをページ下部に固定 */
	#fixed-footer-menu {
		position: sticky;
		bottom: 0vh;
		background: #000;
		z-index: 9999999999;
		-moz-opacity: 0.9;
		opacity: 0.9;
	}

	#fixed-footer-menu ul {
		margin: 0 auto;
		padding: 12px 0 10px;
		width: 100%;
		overflow: hidden;
		display: table;
		table-layout: fixed;
		text-align: center;
		width: 100%;
	}

	#fixed-footer-menu li {
		margin: 0;
		padding: 0;
		display: table-cell;
		vertical-align: middle;
		list-style-type: none;
		line-height: 15px;
	}

	#fixed-footer-menu li a {
		border: none;
		display: block;
		color: #fff;
		text-align: center;
		text-decoration: none;
		font-family: arial, sans-serif;
	}

	#fixed-footer-menu li p {
		margin: 0;
		padding: 0;
		font-size: 11px;
		line-height: 1;
	}

	.footer-icon {
		padding-bottom: 10px;
		font-size: 20px;
	}
	.page-head-title {
		margin: 50px auto 0px;
		padding: 2.4em 0;
	}
	.page-head-title h1 {
		margin: 0 auto 0;
		font-size: 20px;
	}
	.page-head-title span {
		margin: 1em auto 0;
		font-size: 12px;
	}

	.footerbox .widget {
		margin: 0 0 0 0;
		padding: 20px 0 0px 0;
		letter-spacing: 0.05em;
	}

	table.table-00 {
		margin: 20px 0px 20px 0px;
		padding: 0px;
		width: 100%;
		border: 1px #E3E3E3 solid;
		border-collapse: collapse;
		border-spacing: 0;
		font-size: 13px;
		text-align: center;
	}

	table.table-00 th {
		padding: 8px;
		border: #E3E3E3 solid;
		border-width: 0 0 1px 1px;
		background: #f6f6f6;
		font-weight: normal;
		vertical-align: top;
		text-align: left;
	}

	table.table-00 td {
		padding: 8px;
		border: 1px #E3E3E3 solid;
		border-width: 0 0 1px 1px;
		vertical-align: middle;
	}
}





/* *****************************************************************
*   レスポンシブ（外部サービス対策用）
* ***************************************************************** */

/* Google Map
---------------------------------------------------- */

.googlemap {
	margin: 0 auto;
	height: 0;
	overflow: hidden;
	padding-bottom: 56.25%;
	position: relative;
}

.googlemap iframe {
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
}


/* Twitter Timeline
---------------------------------------------------- */

.twitter-timeline {
	width: 100%;
	height: 300px;
}


/* Facebook Like Box
---------------------------------------------------- */

div.fb_iframe_widget,
div.fb_iframe_widget iframe[style],
div.fb_iframe_widget span {
	width: 100% !important;
}


/* YouTube embed
---------------------------------------------------- */
.youtube {
	position: relative;
	width: 100%;
	padding-top: 56.25%;
}

.youtube iframe {
	position: absolute;
	top: 0;
	right: 0;
	width: 100%;
	height: 100%;
}
.wp-block-embed-youtube .wp-block-embed__wrapper {
	position: relative;
	width: 100%;
	padding-top: 56.25%;
}
.wp-block-embed-youtube .wp-block-embed__wrapper iframe{
	position: absolute;
	top: 0;
	right: 0;
	width: 100%;
	height: 100%;
}

/* Contact Form 7 確認画面
---------------------------------------------------- */
.list-block .wpcf7-list-item {
	display: block;
}

#wrap_contact {
	margin: 0 auto;
	width: 100%;
}

#wrap_contact table {
	width: 100%;
	border-collapse: collapse;
	border: solid #CCC;
	border-width: 1px;
}

#wrap_contact table tr th,
#wrap_contact table tr td {
	padding: 1em;
	text-align: left;
	vertical-align: top;
	border: solid #CCC;
	border-width: 1px;
}

#wrap_contact table tr th {
	width: 35%;
	background: #f8f8f8;
	vertical-align: middle;
}

#wrap_contact input[type="text"],
#wrap_contact input[type="email"],
#wrap_contact textarea {
	padding: 0.7em;
	width: 90%;
	font-size: 15px;
	border: 1px solid #CCC;
}

.wpcf7-form-mode-edit #wrap_contact input[type="button"].button-confirm,
.wpcf7-form-mode-confirm #wrap_contact input[type="submit"] {
	background: #ee5656;
	height: 60px;
	font-size: 15px;
	width: 300px;
	display: inline;
	font-weight: bold;
	cursor: pointer;
	color: #fff;
	border: 0;
	border-radius: 5px;
}

.wpcf7-form-mode-confirm #wrap_contact input[type="button"].button-rewrite {
	background: #666666;
	height: 60px;
	font-size: 20px;
	letter-spacing: 0.1em;
	width: 300px;
	font-weight: bold;
	cursor: pointer;
	color: #fff;
	border: 0;
	border-radius: 5px;
}

.wpcf7-form-mode-confirm .c-none {
	display: none
}


#wrap_contact table th .red {
	color: #DC0003;
}

.wpcf7-form-mode-confirm #wrap_contact table th span,
.wpcf7-form-mode-confirm #wrap_contact .txt_edit,
.wpcf7-form-mode-confirm #wrap_contact .txt_sent,
.wpcf7-form-mode-confirm #wrap_contact h3,
.wpcf7-form-mode-confirm #wrap_contact #goals_ba {
	display: none;
}

.wpcf7-form-mode-edit #wrap_contact .txt_confirm,
.wpcf7-form-mode-edit #wrap_contact .txt_sent {
	display: none;
}

.sent #wrap_contact .txt_confirm,
.sent #wrap_contact .txt_edit,
.sent #wrap_contact table,
.sent #wrap_contact h2,
.sent #wrap_contact h3,
.sent #wrap_contact #goals_ba {
	display: none;
}

.sent #wrap_contact .txt_sent {
	display: block;
}

div.wpcf7-mail-sent-ok {
	border: none;
	padding: 0;
	margin: 0;
}


@media screen and (max-width:768px) {
	#wrap_contact {
		width: 100%;
	}

	#wrap_contact table,
	#wrap_contact table tbody,
	#wrap_contact table tr,
	#wrap_contact table tr th,
	#wrap_contact table tr td {
		display: block;
		font-size: 14px;
	}

	#wrap_contact table {
		width: 100%;
		border-width: 0 0 1px 0;
	}

	#wrap_contact table tr th,
	#wrap_contact table tr td {
		width: 90%;
		padding: 3% 5%;
	}

	#wrap_contact table tr td {
		border-width: 0px 1px 0px 1px;
	}
}

/* アニメーション
---------------------------------------------------- */
/* スクロールCSS */
.fade-in {
    opacity: 0;
    transition: 0.8s ease-in-out;
    transition-property: opacity, transform;
}
.fade-in-up {
    transform: translate(0, 60px);
}
.fade-in-down {
    transform: translate(0, -50px);
}
.fade-in-left {
    transform: translate(-50px, 0);
}
.fade-in-right {
    transform: translate(50px, 0);
}
.scroll-in {
    opacity: 1;
    transform: translate(0, 0);
}

/* 文字 */
.smooth {
    clip-path: inset(0 100% 0 0);
    transition: 1.0s cubic-bezier(0.37, 0, 0.63, 1);
    transition-property: clip-path;
}
.smooth.scroll-in {
    clip-path: inset(0);
}

.timing02 {transition-delay: .2s;}
.timing03 {transition-delay: .4s;}
.timing04 {transition-delay: .6s;}
.timing05 {transition-delay: .8s;}

@media screen and (max-width:768px) {
.fade-in {
    transition: 0.5s ease-in-out;
		}
}

.modaal-close {
	position: fixed;
	right: 20px;
	top: 20px;
	color: #fff;
	cursor: pointer;
	opacity: 1;
	width: 50px;
	height: 50px;
	background: rgba(0, 0, 0, 0);
	border-radius: 100%;
	-webkit-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
}

.modaal-close:focus,
.modaal-close:hover {
	outline: none;
	background: #fff;
}

.modaal-close:focus:before,
.modaal-close:focus:after,
.modaal-close:hover:before,
.modaal-close:hover:after {
	background: #b93d0c;
}