
body {
	font-family: 'Bitter', "Lucida Sans", arial, "メイリオ", Meiryo, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "ＭＳ Ｐゴシック", "MS PGothic", "Osaka", sans-serif;
	line-height: 1.8em;
	font-size: 16px;
	color: #222;
	background-color: #fff;
	/*font-family: 'Patua One', cursive;*/

}

* {
	/*-webkit-transition: all .3s;
	-moz-transition: all .3s;
	-ms-transition: all .3s;
	-o-transition: all .3s;
	transition: all .3s;*/
}

#wrapper {
}

#main {
	padding: 100px 0;
}

a {
	color: #222;
}

a:hover {
	color: #222;
}

/* ==============================

header

============================== */

#header {
	margin: 0 0 0 0;
}

#header .logo-1 img {
	width: 100px;
	height: auto;
}

.g-nav-box {
	/*position: fixed;*/
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 60px;
	z-index: 50;
	padding: 16px 0 0 0;
	-webkit-background-size: 10px 10px;
	background-size: 10px 10px;
}

.g-nav-box .logo-box {
	width: 60px;
	height: auto;
	margin: 0 auto;
	display: none;
}

.g-nav-box .logo-box {
	text-align: center;
}

.g-nav-box .logo-box .logo-1 {
	display: inline-block;
	width: 60px;
	height: auto;
	margin: 0 0 8px 0;
}

.g-nav-box #g-nav {
	position: absolute;
	left: 0px;
	right: 0px;
	width: 100%;
	z-index: 60;
}

.g-nav-box #g-nav .list {
	display: flex;
	justify-content: space-between;
	list-style: none;
	padding: 0 5px;
}

.g-nav-box #g-nav .list .item {
	position: relative;
	flex: 1;
	text-align: center;
}

.g-nav-box .ja {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	opacity: 1;
}

.g-nav-box .en {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	opacity: 1;
	-webkit-transition: all 0.2s ease-out;
	-moz-transition: all 0.2s ease-out;
	-o-transition: all 0.2s ease-out;
	transition: all 0.2s ease-out;

}

.g-nav-box .ja {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	opacity: 0;
	-webkit-transition: all 0.2s ease-out;
	-moz-transition: all 0.2s ease-out;
	-o-transition: all 0.2s ease-out;
	transition: all 0.2s ease-out;

}

.g-nav-box:hover .ja {
	opacity: 1;
}

.g-nav-box:hover .en {
	opacity: 0;
}

.g-nav-box .list .item {
}

.g-nav-box .list .item .line {
	position: absolute;
	left: 0;
	bottom: 0;
	display: block;
	width: 0;
	height: 2px;
	background-color: #fdff00;
	-webkit-transition: all 0.3s ease-out;
	-moz-transition: all 0.3s ease-out;
	-o-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
}

.g-nav-box .list .item:hover .line {
	width: 100%;
}

.g-nav-box #g-nav .list .item a {
	display: block;
	color: #fff;
	text-align: center;
}

.g-nav-box #g-nav .list .item a:hover {
	text-decoration: none;
}

.g-nav-box #g-nav .list .item .logo {
	width: 50px;
	height: auto;
}

/*fixナビ用*/
#fix-nav {
	position: fixed;
	top: -60px;
	background-color: #000;
}

#fix-nav #g-nav .list .item {
	margin-top: -60px;
}

#fix-nav #g-nav .list .item.setting {
	margin-top: -60px;
}

#fix-nav.fix-anim-show {
	-webkit-animation: fix-anim-show .5s cubic-bezier(.075, 0.82, 0.165, 1) forwards;
	-o-animation: fix-anim-show .5s cubic-bezier(.075, 0.82, 0.165, 1) forwards;
	animation: fix-anim-show .5s cubic-bezier(.075, 0.82, 0.165, 1) forwards;
}

@keyframes fix-anim-show {
	from {
		top: -60px;
	}
	to {
		top: 0;
	}
}

#fix-nav.fix-anim-hide {
	-webkit-animation: fix-anim-hide .5s cubic-bezier(.075, 0.82, 0.165, 1) forwards;
	-o-animation: fix-anim-hide .5s cubic-bezier(.075, 0.82, 0.165, 1) forwards;
	animation: fix-anim-hide .5s cubic-bezier(.075, 0.82, 0.165, 1) forwards;
}

@keyframes fix-anim-hide {
	from {
		top: 0;
	}
	to {
		top: -60px;
	}
}

#fix-nav #g-nav .list .item.g-nav-item-anim-show {
	-webkit-animation: g-nav-item-anim-show .4s cubic-bezier(.075, 0.82, 0.165, 1) forwards;
	-o-animation: g-nav-item-anim-show .4s cubic-bezier(.075, 0.82, 0.165, 1) forwards;
	animation: g-nav-item-anim-show .4s cubic-bezier(.075, 0.82, 0.165, 1) forwards;
}

@keyframes g-nav-item-anim-show {
	from {
		margin-top: -60px;
	}
	to {
		margin-top: 0;
	}
}

#fix-nav #g-nav .list .item.g-nav-item-anim-hide {
	-webkit-animation: g-nav-item-anim-hide .4s cubic-bezier(.075, 0.82, 0.165, 1) forwards;
	-o-animation: g-nav-item-anim-hide .4s cubic-bezier(.075, 0.82, 0.165, 1) forwards;
	animation: g-nav-item-anim-hide .4s cubic-bezier(.075, 0.82, 0.165, 1) forwards;
}

@keyframes g-nav-item-anim-hide {
	from {
		margin-top: 0;
	}
	to {
		margin-top: -60px;
	}
}

/* ==============================

スマホナビ

============================== */

.drawer-nav {
	padding: 20px 16px;
}

.drawer-hamburger {
	width: 30px !important;
}

.drawer-hamburger-icon {
	margin-top: 5px !important;
}

.drawer-hamburger .txt {
	margin: 8px 0 0 0;
	text-align: center;
	font-size: 10px;
	color: #fff;
}

.drawer-overlay {
	z-index: 20 !important;
}

.drawer-hamburger-icon, .drawer-hamburger-icon:after, .drawer-hamburger-icon:before {
	/*background-color: #fff !important;*/
}

/* ==============================

footer

============================== */

#footer {
	padding: 32px 0 0 0;
	background-color: #fff;
}

#footer .content {
	text-align: center;
	color: #000;
	margin-bottom: 30px;
}

#footer .logo {
	margin: 0 0 16px 0;
	text-align: center;
}

#footer .logo .txt {
	margin: 8px 0 0 0;
}

#footer .logo img {
	width: 100px;
	height: auto;
}

#footer address {
	margin: 0;
}

#footer .info a {
	font-weight: bold;
}

#footer .copyright {
	margin: 16px 0 32px 0;
	text-align: center;
	font-size: 13px;
	color: #000;
}

#map {
	height: 500px;
	margin: 0 32px 64px 32px;
}

/* ==============================

全共通

============================== */

.sec-1 {
	margin: 48px 0;
}

.common-ttl-1 {
	margin: 0 0 32px 0;
	text-align: center;
	font-size: 30px;
}

.common-ttl-2 {
	margin: 0 0 20px 0;
	padding: 20px 0;
	border-top: 2px solid #222;
	border-bottom: 2px solid #222;
}

.common-ttl-3 {
	margin: 20px 0 32px 0;
	padding: 0;
}

.common-ttl-3:after {
	content: '';
	display: block;
	height: 8px;
	margin: 16px 0 0 0;
	background-image: linear-gradient(
			-45deg,
			#fff 25%,
			#222 25%, #222 50%,
			#fff 50%, #fff 75%,
			#222 75%, #222
	);
	/* 幅8px、高さ8pxで背景画像のサイズを指定 */
	background-size: 8px 8px;
}

.common-ttl-4 {
	display: block;
	margin: 20px auto 32px auto;
	padding: 0;
	font-size: 24px;
	font-weight: bold;
}

.common-ttl-4:after {
	content: '';
	display: block;
	height: 8px;
	margin: 16px 0 0 0;
	background-image: linear-gradient(
			-45deg,
			#fff 25%,
			#222 25%, #222 50%,
			#fff 50%, #fff 75%,
			#222 75%, #222
	);
	/* 幅8px、高さ8pxで背景画像のサイズを指定 */
	background-size: 8px 8px;
}

.common-ttl-5 {
	width: 100%;
	display: block;
	text-align: center;
	font-size: 40px;
	font-weight: bold;
}

.common-ttl-5:after {
	content: '';
	display: block;
	width: 1.5em;
	height: 4px;
	margin: .4em auto 0 auto;
	background-color: #111;
}

.common-txt-1 {
	text-align: center;
	line-height: 2em;
}

.common-txt-2 {
	margin-left: 80px;
	margin-right: 80px;
	text-align: center;
}

.common-txt-3 {
}

.common-btn-1 {
	display: inline-block;
	margin-top:0.5em;
	padding: 0.6em 1em;
	-webkit-border-radius: 1.2em;
	-moz-border-radius: 1.2em;
	border-radius: 1.2em;
	background-color: #333;
	color: #fff;
	font-size: 13px;
	font-weight: bold;
	line-height: 1em;
}

.common-box-1 {
	margin: 0 100px 48px 100px;
	padding: 64px 32px;
	background-color: #F7F6F2;
}

.common-box-1 > .inner .item {
	margin-bottom: 48px;
}

.common-box-1 > .inner .item:last-child {
	margin-bottom: 0;
}

.common-box-1 > .inner .left-box {
	margin-left: -200px;
}

.common-box-1 > .inner .right-box {
	margin-right: -200px;
}

.common-box-1 > .inner .box-1 {
	padding: 16px;
}

.common-box-1 > .inner .box-1 .point {
	margin: 0;
	padding: 16px 0;
	border-top: 2px solid #222;
	border-bottom: 2px solid #222;
}

.common-box-1 > .inner .box-1 .point li {
	margin: 0 0 0 1.5em;
	font-size: 14px;
}

.common-box-1 > .inner .box-1 .label-1 {
	display: inline-block;
	padding: 0.4em 0.8em;
	-webkit-border-radius: 2px;
	-moz-border-radius: 2px;
	border-radius: 2px;
	background-color: #ec0051;
	line-height: 1em;
	color: #fff;
	font-weight: bold;
	font-size: 12px;
}

.common-box-1 > .inner .box-1 .ttl-1 {
	margin: 8px 0 16px 0;
	font-size: 24px;
}

.common-box-1 > .inner .box-1 .txt-1 {
	margin-bottom: 1em;
	/*margin: 0 0 1em 0;
	padding: 0 0 1em 0;
	border-bottom: 2px solid #222;*/
}

.common-box-2 {
	margin: 120px 0 0 0;
	padding: 64px 64px;
	background-color: #F7F6F2;
}

.common-box-2 > .box-1:first-child {
	margin-top: -120px;
}

.common-box-2 .box-1 {
	margin-bottom: 64px;
}

.common-box-2 .box-1:last-child {
	margin-bottom: 0;
}

.common-box-2 .box-1 .txt-box {
	padding: 32px;
	background-color: #fff;
}

.common-box-2 .box-1 .txt-box .txt-1 {
}

.common-box-3 {
	margin: 0 0 0 0;
	padding: 64px 64px;
	background-color: #F7F6F2;
}

.common-box-4 {
	padding: 64px 0;
	background-color: #F7F6F2;
}

.common-box-5 .img {
	height: 400px;
}

.common-box-5 .txt-wrap {
	position: relative;
	z-index: 1;
	width: 80%;
	margin: -40px auto 0 auto;
	padding: 24px 40px;
	background-color: #fff;
}

.common-box-6 .item .img-wrap {
	height: 320px;
	-webkit-background-size: cover;
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
}

.common-box-6 .item .txt-wrap {
	padding: 32px;
	background-color: #fff;
}

.common-box-7 {
	position: relative;
}

.common-box-7 .img-wrap {
	width: 80%;
	height: 400px;
	-webkit-background-size: cover;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;
}

.common-box-7 .txt-wrap {
	position: absolute;
	right: 0;
	bottom: -40px;
	width: 320px;
	padding: 32px;
	background-color: #fff;
}

.common-label-1 i {
	color: #fdff00;
}

.font-1 {
	font-family: 'Raleway', sans-serif;
}

/* ==============================

下層共通

============================== */
#header {
	position: relative;
	height: 500px;
	/*-webkit-background-size: cover;
	background-size: cover;*/
	-webkit-background-size: 100% auto;
	background-size: 100% auto;
	background-repeat: no-repeat;
	background-position: 50% center;
	opacity: 1;
}

#main-img {
	position: relative;
	height: 500px;
}

/*curtain*/
#header #main-img .curtain {
	position: absolute;
	top: 0;
	left: -100%;
	z-index: 10;
	width: 100%;
	height: 500px;
	background-color: #000;

}

#header #main-img .curtain.curtain-anim {
	-webkit-animation: curtain-anim .8s cubic-bezier(.075, 0.82, 0.165, 1) forwards;
	animation: curtain-anim .8s cubic-bezier(.075, 0.82, 0.165, 1) forwards;

}

@keyframes curtain-anim {

	from {
		left: -100%;
	}
	to {
		left: 0;
	}
}

/*main-img*/
#header #main-img .img {
	position: absolute;
	top: 0;
	left: -100%;
	z-index: 11;
	width: 100%;
	height: 500px;
	-webkit-background-size: cover;
	background-size: cover;
	background-position: center center;
	opacity: .4;
}

#header #main-img .main-img-anim {
	-webkit-animation: main-img-anim .8s cubic-bezier(.075, 0.82, 0.165, 1) forwards;
	animation: main-img-anim .8s cubic-bezier(.075, 0.82, 0.165, 1) forwards;
}

@keyframes main-img-anim {

	from {
		left: -100%;
	}
	to {
		left: 0;
	}
}

/*rainbow*/
#main-img .rainbow {
	position: absolute;
	left: 0;
	top: 0px;
	z-index: 14;
	opacity: 0;
	-webkit-transition: all .5s;
	-moz-transition: all .5s;
	-ms-transition: all .5s;
	-o-transition: all .5s;
	transition: all .5s;
}

#main-img .rainbow.rainbow-anim {
	opacity: .7;
}

/*ttl-box*/
#main-img .ttl-box {
	position: relative;
	z-index: 15;
	padding: 180px 0 0 0;
	color: #fff;
}

#main-img .ttl-box .page-ttl-en {
	margin: 0 0 20px 0;
	font-size: 52px;
	letter-spacing: 0.025em;
}

#main-img .ttl-box .page-ttl-en span {
	display: inline-block;
	border-bottom: 4px solid #fff;
}

#main-img .ttl-box .page-ttl {
	margin: 0;
	font-size: 20px;
}

/*#main {
	position: relative;
	overflow: hidden;
	margin: -12% 0;
	padding: 80px 0;
	z-index: 1000;
}

#main:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 120%;
	height: 80%;
	margin: 0 -10% 0;
	background: #fff;
	-webkit-transform-origin: left center;
	-ms-transform-origin: left center;
	transform-origin: left center;
	-webkit-transform: rotate(6deg);
	-ms-transform: rotate(6deg);
	transform: rotate(6deg);
}*/

.lower-ttl-1 {
	margin: 32px 0 16px 0;
	font-size: 40px;
	text-align: center;
}

.lower-ttl-2 {
	margin: 0 0 32px 0;
	font-size: 24px;
	text-align: center;
}

/* ==============================

共通フォントスタイル

============================== */

.font-1 {
	font-family: 'Anton', sans-serif;
}

.font-2 {
	font-family: 'Anton', sans-serif;
}

/* ==============================

パンくず

============================== */

.bread-wrap {
	position: relative;
}

.breadcrumb {
	font-size: 16px;
	font-weight: normal;
	font-family: -webkit-body;
}

.breadcrumb li {
	display: inline-block;
}

.breadcrumb li a {
	color: #666;
}

.breadcrumb li a:hover {
	text-decoration: underline;
}

.breadcrumb li a:after {
	content: ">";
	padding: 0 8px;
	text-decoration: none !important;
	display: inline-block;
}

/* 上に戻るボタン */

.to-top-btn {
	position: fixed;
	right: 0px;
	bottom: 0px;
	background: #333;
	color: #fff;
	padding: 16px;
	text-align: center;
	cursor: pointer;
	line-height: 1.5em;
}

.explanation {
	padding: 16px;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
	background-color: #FFFD78;
}

.selector {
	display: block !important;
	padding: 4px 0px !important;
	/*-webkit-border-radius: 16px !important;
	-moz-border-radius: 16px !important;
	border-radius: 16px !important;
	background-color: #ccc !important;*/
	/*color: #fff !important;*/
	color: #00CC66;
	text-align: left !important;
	font-weight: bold;
	font-size: 12px !important;
	line-height: 1.2em !important;
	font-weight: normal;
}

.c-container-1 {
	margin-left: 20px;
	margin-right: 20px;
}

.c-container-2 {
	width: 90%;
	margin-left: auto;
	margin-right: auto;
}

.c-container-3 {
	width: 85%;
	margin: 0 auto;
}

.font-1 {
	font-family: 'Paytone One';
}

.article-wrap .item {
	display: inline-block;
}

.article-wrap .item.l .txt-wrap {
	position: relative;
	z-index: 1;
	width: 80%;
	margin: -40px auto 0 auto;
	padding: 24px 40px;
	background-color: #fff;
}

.article-wrap .item.s .txt-wrap {
	padding: 24px 20px 0 20px;
	background-color: #fff;
}

.article-wrap .item.l .img {
	height: 360px;
}

.article-wrap .item.s .img {
	height: 260px;
}

.article-wrap .item .img {
	position: relative;
	-webkit-background-size: cover;
	background-size: cover;
	background-position: center center;
	-webkit-border-radius: 2px;
	-moz-border-radius: 2px;
	border-radius: 2px;
	overflow: hidden;
}

.article-wrap .item .img .tag-1 {
	display: inline-block;
	position: absolute;
	left: 16px;
	top: 24px;
	padding: 0.2em 0.8em;
	background-color: #F25A60;
	-webkit-border-radius: 2px;
	-moz-border-radius: 2px;
	border-radius: 2px;
	color: #fff;
	font-size: 14px;
	line-height: 1em;
}

.article-wrap .item .ttl {
	font-size: 16px;
	font-weight: bold;
	margin: 0;
}

@media (max-width: 768px) {
	.article-wrap .item .txt-wrap {
		position: inherit;
		width: 100% !important;
		padding: 24px 0 !important;
		margin: 0;
	}

	.article-wrap .item .img {
		height: 260px !important;
	}
}

.c-article-wrap-1 {
	padding: 28px;
	background-color: #F7F6F2;
}

.c-article-wrap-1 {
	padding: 28px;
	background-color: #F7F6F2;
}

.c-article-wrap-1 .img-wrap {
	float: left;
	width: 40%;
	height: 540px;
	-webkit-background-size: cover;
	background-size: cover;
	background-position: center center;
}

.c-article-wrap-1 .txt-wrap {
	float: left;
	width: 60%;
	padding: 64px 0;
}

.c-article-wrap-1 .txt-wrap .inner {
	width: 70%;
	height: 412px;
	margin: 0 0 0 -5%;
	padding: 64px;
	background-color: #fff;
}

.takumi-banner-wrap {
	width: 540px;
	margin-left: auto;
	margin-right: auto;
}
