@charset "utf-8";

@font-face{ 
  font-family: 'mplus-1p-regular';
  src: url('//mplus-webfonts.sourceforge.jp/mplus-1p-regular.eot');
  src: url('//mplus-webfonts.sourceforge.jp/mplus-1p-regular.eot?#iefix') format('embedded-opentype'),
       url('//mplus-webfonts.sourceforge.jp/mplus-1p-regular.woff') format('woff'),
       url('//mplus-webfonts.sourceforge.jp/mplus-1p-regular.ttf') format('truetype');
}

.fixed {
	position: fixed;
	width: 100%;
	height: 100%;
}

.fadein {
	opacity : 0;
	transform : translate(0, 50px);
	transition : all 1500ms;
}
.fadein.scrollin{
	opacity : 1;
	transform : translate(0, 0);
}

.social{
	margin: 0 0 50px 0;
	text-align: right;
}
.social img{
	vertical-align: top;
}
.social .fb-like,
.social .g-plusone,
.social .twitter-share-button,
.social .hatena-bookmark-button,
.social .pocket-btn{
	display: inline-block;
	vertical-align: top;
}
.fb_iframe_widget {/* fbいいねがスマホだと幅全開表示になけどなんでやねん */
  width: auto !important;
  display: inline-block !important;
}


body {
	background-color: #fff;
	font-family: mplus-1p-regular, "Century Gothic", "Roboto Regular", "YuGothic", "Yu Gothic", "游ゴシック体", "游ゴシック", "ヒラギノ角ゴ ProN W6", "ヒラギノ角ゴ Pro W6", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "ＭＳ ゴシック", Osaka, sans-serif;
	font-size: 20px;
	margin: 0;
	padding: 0;
}

a:link,
a:visited {
	color: #000;
}
a:hover {
	color: #AAA;
	text-decoration: underline;
}
a:hover img {
	opacity: 0.6;
}
article {
	background: #fff;
	padding: 15px;
}
p {
	line-height: 2em;
	margin-bottom: 1em;
}
img {
	max-width: 100%;
}
address {
	font-style: normal;
	line-height: 1.5em;
}

.catch {
	font-size: 20px;
}
.catch span {
	font-size: 55%;
}

.wbr {
	display: inline-block;
	white-space: nowrap;
}

.tac {
	text-align: center;
}

.flex-around {
	display: flex;
	justify-content: space-around;
}
@media only screen and (max-width: 414px) {
	.flex-around {
		display: block;
	}
}

.pc_hidden{
	display: none !important;
}

#contents {
	padding-top: 200px;
	padding-bottom: 30px;
}


.inner{/* コンテンツ幅指定用クラス header contents footer 共通で使用 */
	margin: 0 auto 100px auto;
	padding: 12px 15px;
	overflow: hidden;
	max-width: 100%;
	width: 960px;
}



header{
	position: absolute;
	top: 0;
	right: 0;
	z-index: 100;
	width: 100%;
}
header .inner{
	/*padding: 20px 0;*/
	margin: 0 auto 30px auto;
	width: 100%;
}
header .site-title{
	display: inline-block;
	font-size: .8em;
	color: #fff;
	width: 130px;
	background-color: rgba(255, 255, 255, 90%);
	padding: 20px;
	font-weight: normal;
	line-height: 0.4em;
}
header .site-title span{
	display: block;
	font-size: 10px;
}
header .site-title a{
	text-decoration: none;
}
header .site-title a:link,
header .site-title a:visited,
header .site-title a:hover{
}
header .site-title a:hover{
}
header .site-title a:hover img{
}

.btn-trigger {
	position: fixed;
	top: 5px;
	right: 0px;
	width: 50px;
	height: 44px;
	cursor: pointer;
	transform: scale(0.60);
	z-index: 100;
}
.btn-trigger:before {
	display: block;
	position: relative;
	top: -100px;
	left: -50px;
	content: "";
	background: rgba(255, 255, 255, 80%);
	width: 200px;
	height: 200px;
	border-radius: 100px;
	z-index: -10;
}
.btn-trigger span {
	position: absolute;
	right: 0;
	width: 100%;
	height: 4px;
	background-color: #000;
	border-radius: 4px;
}
.btn-trigger, .btn-trigger span {
	display: inline-block;
	transition: all .5s;
	box-sizing: border-box;
}
.btn-trigger span:nth-of-type(1) {
	top: 0;
}
.btn-trigger span:nth-of-type(2) {
	top: 20px;
}
.btn-trigger span:nth-of-type(3) {
	bottom: 0;
}
#btn-global.active span:nth-of-type(1) {
	-webkit-transform: translateY(20px) rotate(45deg);
	transform: translateY(20px) rotate(45deg);
}
#btn-global.active span:nth-of-type(2) {
	opacity: 0;
}
#btn-global.active span:nth-of-type(3) {
	-webkit-transform: translateY(-20px) rotate(-45deg);
	transform: translateY(-20px) rotate(-45deg);
}

#global {
	width: 100vw;
	height: 100vh;
	min-height: 100vh;
	position: fixed;
	top: 0px;
	left: 0px;
	background: #fff;
	z-index: -99;
	opacity: 0;
	pointer-events: none;
}
#global.open {
    animation-name: fade-in;
    animation-duration: 0.5s;
    animation-timing-function: ease-out;
    animation-delay: 0s;
    animation-iteration-count: 1;
    animation-direction: normal;
    animation-fill-mode: forwards;
    z-index: 10;
	pointer-events: visible;
}
#global.close {
    animation-name: fade-out;
    animation-duration: 0.5s;
    animation-timing-function: ease-out;
    animation-delay: 0s;
    animation-iteration-count: 1;
    animation-direction: normal;
    animation-fill-mode: forwards;
}
@keyframes fade-in {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}
@keyframes fade-out {
	0% {
		opacity: 1;
		z-index: 10;
	}
	99% {
		z-index: 10;
	}
	100% {
		opacity: 0;
	}
}
.global-menu {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translateY(-50%) translateX(-50%);
	max-width: 710px;
	width: 100%;
	margin: 0 auto;
	overflow: hidden;
	text-align: center;
}
.global-menu li {
	display: inline-block;
	margin: 0 30px 30px 0;
}
.global-menu img {
	height: 10px;
	width: auto;
}
.global-menu .instagram {
	height: 20px;
	width: auto;
}
.global-menu .brander {
	height: 11px;
	width: auto;
	margin-top: 4px;
}






footer{
	background: #333;
	color: #fff;
	padding: 90px 0 150px 0;
	overflow: hidden;
}
footer a:link,
footer a:visited{
	color: #fff;
	text-decoration: none;
}
footer a:hover{
	text-decoration: underline;
}
footer .inner{
	margin-bottom: 0;
	padding: 0 18px 18px 18px;
	position: relative;
	overflow: visible;
}
footer #btn-up {
	position: absolute;
	top: 0;
	right: -50px;
}
footer nav {
	text-align: center;
}
footer nav>ul {
	display: inline-block;
	margin: 0 auto;
}
footer nav>ul>li {
	position: relative;
	display: inline-block;
	margin-right: 24px;
	text-align: left;
	vertical-align: top;
}
footer nav ul .sub {
	position: relative;
	top: 0;
	left: 0;
}
footer nav img {
	height: 10px;
}
footer nav img.instagram {
	height: 13px;
	width: auto;
}
footer .copyright {
	text-align: center;
	margin-top: 78px;
	max-width: 100%;
}


@media only screen and (max-width: 414px) {
	
	body{
		min-width: initial;
	}
	.inner{/* コンテンツ幅指定用クラス header contents footer 共通で使用 */
		width: 100%;
	}

	.wbr{
		display: inline;
		white-space: normal;
	}
	
	.global-menu {
		display: block;
	}
	.global-menu li {
		display: block;
		margin-right: auto;
		margin-left: auto;
	}

	.sep{
		width: 100% !important;
	}

	footer nav {
		text-align: left;
	}
	footer #btn-up {
		right: 20px;
	}
	footer nav>ul {
		line-height: 1.3em;
	}
	footer nav>ul>li {
		display: block;
		margin-bottom: 10px;
	}
	footer nav img {
		height: 14px;
	}
	footer nav img.instagram {
		height: 18px;
		width: auto;
	}
	
}