@charset "utf-8";

/* =共通
------------------------------------------------------------------------------ */

/* 全体 */

html {
    font-size: 62.5%;
}
body {
    font-family:'Noto Sans JP',Arial,sans-serif;
    font-style: normal;
    color: #333;
    background-color: #fff;
    line-height: 1.75;
	font-size: 1.4rem;
	padding-top: 96px;/*ヘッダーの高さ分空ける*/
}
body.no-scroll {
	overflow: visible;
	overflow-y: hidden;
	height: 100vh;
}
.wrap {
	max-width: 1280px;
	padding: 0 4%;
	margin: 0 auto;
}

/* タグ基本 */

a:hover {
	opacity: 0.75;
	filter: alpha(opacity=75);
	-ms-filter: "alpha(opacity=75)";
}

img {
    max-width: 100%;
    height: auto;
}

section {
	padding: 4em 0;
	overflow: hidden;
}
section:nth-of-type(even) {
	background-color: #fffdec;
}

h2 {
	font-size: 3.0rem;
	text-align: center;
	margin: 0 auto 1em;
}

.title-brown{
	background: #9C673F;
	border-radius: 32px;
	display: inline-block;
	padding: 10px 30px;
	margin: 0 auto 1em;
	color: #fff;
	margin-bottom: 100px;
	font-family: "Zen Maru Gothic", serif;
  font-weight: 500;
  font-style: normal;
}

.title-contents {
	text-align: center;
}

h3 {
	font-size: 2.0rem;
	margin: 0 auto 1em;
}
p {

}

br.sp {
	display: block;
}
br.pc {
	display: none;
}


/* pc用 */
@media screen and (min-width:769px) {

body {
	padding-top: 120px;/*ヘッダーの高さ分空ける*/
	font-size: 1.5rem;
}

.wrap {
	padding: 0 2%;
}
h2 {
	font-size: 4.0rem;
}
h3 {
	font-size: 3.0rem;
}

br.sp {
	display: none;
}
br.pc {
	display: block;
}

}

/* =ヘッダー
------------------------------------------------------------------------------ */

.header {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 99;
    height: 96px;
	width: 100%;
	background-color: rgba(255,255,255,0.85);
	display: flex;
    align-items: center;
    justify-content: space-between;
	padding: 0 2%;
}

/* ロゴ */

.logo {
}
.logo a img {
	width: 168px;
}

/* SNS */

.utility {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
/* SNS */

ul.sns {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-right: 2em;
}
ul.sns li {
	margin: 0 2em 0 0;
}
ul.sns li:last-child {
	margin-right: 0;
}
ul.sns li a img {
	width: 24px;
	vertical-align: middle;
}


/* pc用 */
@media screen and (min-width:769px) {

.header {
    height: 120px;
}
.logo a img {
	width: 256px;
}
ul.sns {
	margin-right: 0;
}
ul.sns li a img {
	width: 32px;
}

}


/* =ナビゲーション
------------------------------------------------------------------------------ */

/* ハンバーガー */

.openbtn {
	display: block;
	position: relative;
	width: 64px;
	height: 64px;
	cursor: pointer;
}
.openbtn span {
	transition: all .5s;
	position: absolute;
	left: 16px;
	height: 2px;
  	width: 32px;
	background-color: #0d0d0d;
}
.openbtn span:nth-of-type(1) {
	top: 24px;
}
.openbtn span:nth-of-type(2) {
	top: 32px;
}
.openbtn span:nth-of-type(3) {
	top: 40px;
}

/* ハンバーガー（展開） */

.openbtn.active span {
	background-color: #0d0d0d;
}
.openbtn.active span:nth-of-type(1),
.openbtn.active span:nth-of-type(3){
	top: 32px;
}

/* リスト（展開）*/

#g-nav {
	position: fixed;
	z-index: 9;
	top: 0;
	right: -100%;
	transition: all 0.5s;
}
#g-nav.panelactive {
	display: block;
	right: 0;
	width: 100%;
	height: 100vh;
	background-color: rgba(137,88,32,0.95);
}
#g-nav.panelactive ul {
	position: absolute;
	z-index: 9;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	list-style: none;
}
#g-nav.panelactive ul li {
	margin: 0;
}
#g-nav.panelactive ul li a {
	display: flex;
	justify-content: center;
	align-items: flex-start;
	color: #fff;
	text-decoration: none;
	padding: 1em;
	margin: 0;
	font-weight: 500;
	font-size: 2.0rem;
}


/* pc用 */
@media screen and (min-width:769px) {

/* ハンバーガー */

.openbtn {
	display: none;
}

/* リスト（通常）*/

#g-nav {
	position: inherit;
	right: 0;
	height: auto;
	background-color: transparent;
}
#g-nav.panelactive {
	display: none;
}
#g-nav ul {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 1em 2%;
}
#g-nav ul li {
	margin: 0 2em 0 0;
}
#g-nav ul li:last-child {
	margin-right: 0;
}
#g-nav ul li a {
	display: block;
	color: #333;
	text-decoration: none;
	padding: 1em;
	margin: 0;
	font-size: 2.0rem;
	word-break: keep-all;
}

}



/* =フッター
------------------------------------------------------------------------------ */

footer {
	background-image: url(../images/footer-spbg3@2x.png);
	background-size: cover;
	background-position: center top;
	background-repeat: no-repeat;
	padding: 2em 0;
	
	text-align: center;	
}

.footer-contents {
	display: grid;
	row-gap: 2em;
	margin-top: -2em;
	position: relative;
	z-index: 10;
}



/* ロゴ */

footer p.logo img {
	display: block;
	margin: 0 auto 1em;
}

/* リスト */

ul.second {
	display: block;
	margin: 0 auto;
	width: fit-content;
	
}
ul.second li {
	margin: 0 0 1em;
	text-align: left;
	text-align: center;
}
ul.second li a {
	display: block;
	font-size: 1.5rem;
}

/* SNS（ヘッダーSNSのスタイル継承） */

footer ul.sns {
	margin: 0 0 2em;
}

/* コピーライト */

footer small {
	font-size: 1.2rem;
}

/* pc用 */
@media screen and (min-width:769px) {
	footer {
		background-image: url(../images/footer-bg.png);
	}

	.footer-contents {
		
		margin-top: -4em;
		row-gap: 4em;
	    
	}

ul.second {
	display: flex;
	justify-content: center;
	align-items: center;
	column-count: inherit;
	margin: 0 auto;
}
ul.second li {
	margin-right: 2em;
}
ul.second li:last-child {
	margin-right: 0;
}
ul.second li a {
	font-size: 1.75rem;
}
footer ul.sns {
	margin-bottom: 0em;
}

}

/* =ページトップ
------------------------------------------------------------------------------ */

.pagetop {
	position: fixed;
	bottom: 24px;
	right: 24px;
	z-index: 11;
}
.pagetop a {
	width: 64px;
	height: 64px;
	background-color: #9c673f;
	border-radius: 50%;
	padding-top: 8px;
	display: flex;
	justify-content: center;
	align-items: center;
	cursor: pointer;
}
.pagetop a span {
	display: inline-block;
	width: 16px;
	height: 16px;
	border-top: 4px solid #fff;
	border-left: 4px solid #fff;
	transform: rotate(45deg);
}

/* pc用 */
@media screen and (min-width:769px) {

}


/* =その他
------------------------------------------------------------------------------ */

/* fadeIn */

.fadeIn {
	opacity: 0;
}
.fadeInAnimated {
	animation-name: fadeInAnime;
	animation-duration: 1s;
	animation-fill-mode: forwards;
}
@keyframes fadeInAnime {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

/* fadeUp */

.fadeUp {
	opacity: 0;
}
.fadeUpAnimated {
	animation-name: fadeUpAnime;
	animation-duration: 1s;
	animation-fill-mode: forwards;
	opacity: 0;
}
@keyframes fadeUpAnime {
	from {
		opacity: 0;
		transform: translateY(100px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* zoomIn */

.zoomIn {
    opacity: 0;
}
.zoomInAnimated {
	animation-name: zoomInAnime;
	animation-duration: 1s;
	animation-fill-mode: forwards;
	opacity: 0;
}

@keyframes zoomInAnime {
	from {
		transform: scale(0.5);
		opacity: 0;
	}
	to {
		transform: scale(1);
		opacity: 1;
	}
}

/* 画面サイズ */

#winsize2 {
	position: fixed;
	bottom: 0;
	left: 0;
	font-size: 10px;
	z-index: 9999;
	color: #fff;
	background-color: #000;
	padding: 0 2px;
}




