@charset "utf-8"; 
html {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	font-size: 62.5%;         
	}

body {
	font-size:16px; /* 1.6em */
	font-family:'Avenir','Helvetica Neue','Helvetica','Arial','Hiragino Sans','ヒラギノ角ゴシック',YuGothic,'Yu Gothic','メイリオ', Meiryo,'ＭＳ Ｐゴシック','MS PGothic',sans-serif;
	-webkit-text-size-adjust: 100%;
	-moz-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
	text-size-adjust: 100%;
	}

* {
	padding: 0px;
	margin: 0px;
}

	*, 
	*:before, *:after {
	-webkit-box-sizing: inherit;
	box-sizing: inherit;
	}
	
a {
	text-decoration: none;
}

p {
	font-size: clamp(1.4rem, 2.5vw, 2.4rem);   
	line-height: 1.4;
}

h2 {
	font-size:  clamp(1.8rem, 2.5vw, 2.8rem);  /* 18px */
	line-height: 1.4;
	font-weight: 600;
}

ul, li {
	list-style: none;
}

/*start ヘッダー*/
.header {
	width: 100%;
	position: fixed;
	left: 0;
	top: 0;
	height: 50px;
	background-color: transparent;
	z-index: 10;
}

.headerNavOuter {
	margin-bottom: 0;
	position: relative;
}

/* スタートナビゲーション */
.headerNav {
	position: fixed;
	left:  -250px;
	top: 0;
	width: 250px;
	height: 100vh;
	padding-top: 60px;
	background-color: rgba(255, 255, 255, 1); 
	-webkit-transition: all .6s;
	transition: all .6s;
	overflow-y: auto;
	z-index: 20;
}

.logo {
	position: relative;
	top: 2vh;
	width: 55%;
	text-align: center;
	margin-left: 22%;
	margin-right: auto;
	margin-bottom: 50px;
}
.logo p {
	font-size: 12px; /* clamp(1.4rem, 2.5vw, 1.6rem) */
	font-weight: 520;
	color: #483D8B;
	line-height: 1.1;
	letter-spacing: -0.05px;  /*  -0.05em */
	}
	
	.accordion {
		width: 250px;
		margin-top: 6vh;
		margin-left: 5px;
	}
	.accordion__item {
		font-size: clamp(1.8rem, 2.5vw, 2.2rem); /*  18px  */
		font-weight: 450;
		line-height: 1.2;
		margin: 4px 2px 0 2px;  
		background: #FFFACD; 
		cursor: pointer;
	}
	
	.accordion__item li:hover {
		font-weight: 900;
	}
	
	.accordion__item li a{
		display: block;
		height: 100%;
		width: 100%;
	}
	
	.accordion__item li {
		border-bottom: solid 5px #B0E0E6;
	}
	
	
	.accordion__title {
		position: relative;
		padding: 15px 60px 15px 10px;
		line-height: 2.2;
		font-size: clamp(2.4rem, 2.5vw, 2.8rem);  
		font-weight: 450;
		color: #0000CD;
		background-color: #B0E0E6; 
		cursor: pointer;
	}
	
	.accordion__title:hover {
	   font-weight: 900;
	}
	
	
	.accordion__title::before,
	.accordion__title::after {
		content: "";
		position: absolute;
		right: 20px;
		top: 0;
		bottom: 0;
		margin: auto 0;
		background-color: #0000CD;   /* #3abec1 */
		width: 20px;
		height: 5px;
		transition: all 0.3s;
	}
	
	.accordion__title::after {
		transform: rotate(90deg);
	} 
	
	/* アコーディオンのコンテンツ */
	.accordion__content {
		padding: 0px 10px 0px 25px;
		line-height: 2.6;
		display: none;
		cursor: pointer;
	}
	
	.accordion__content.is-open {
		display: block;
	}
	
	/* アコーディオン展開時の(-)アイコン */
	.accordion__item.is-active .accordion__title::before {
		transform: rotate(180deg);
	}
	
	.accordion__item.is-active .accordion__title::after {
		transform: rotate(180deg);
		opacity: 0;
	}			
	
.hamburger_btn {
	position: absolute;
	left: 2px;
	top: 0px;
	width: 55px;
	height: 55px;
	cursor: pointer;
	z-index: 30;
}

.hamburger_line {
	position: absolute;
	left: 12px;
	width: 40px;
	height: 5px;
	background-color: #757373;
	-webkit-transition: all .6s;
	transition: all .6s;
}

.hamburger_line_1 {
	top: 22px;
} 
.hamburger_line_2 {
	top: 32px;
}


.hamburger_btn::before {
	position: absolute;
	left: 4px;
	top: 4px;
	content: 'MENU';
	display: block;
	width: 100%;
	color: #757373;
	font-size: 16px; /* clamp(1.6rem, 2.5vw, 1.8rem) */
	font-weight: 560;
	text-decoration: none;
	text-align: center;
	white-space: nowrap;
}
.nav-open .hamburger_btn::before {
	content: 'CLOSE';
}


.black-bg {
	display: block;
	position: fixed;
	right: 0;
	top: 0;
	width: 100vw;
	height: 100vh;
	z-index: 10;
	background-color: #fff;
	opacity: 0;
	visibility: hidden;
	-webkit-transition: all .6s;
	transition: all .6s;
	cursor: pointer;
}

/*ハンバーガーon ナビゲーション表示*/
.nav-open .headerNav {
	left: 0;
}

/*透明背景表示*/
.nav-open .black-bg {
	opacity: 0.7;
	visibility: visible;
}


.hamburger_btn:not(.nav-open):hover .hamburger_line_1 {
	left: 12px;
	width: 32px; 
}
.hamburger_btn:not(.nav-open):hover .hamburger_line_2 {
	left: 12px;
	width: 32px; 
}

.nav-open .hamburger_line_1 {
	top: 32px;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}

.nav-open .hamburger_line_2 {
	top: 32px;
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
}


#pottery {
	position: relative;
	margin-left: 18vw;
	width: 24vw ;
	height: auto;
	top: 1.8vw;	
	background: black;
}
#coffee {
	width: 21.5vw ;
	height: auto;
	position: relative;
	top: 1.8vw;
}
#link {
	width: 22vw ;
	height: auto;
	position: relative;
	top: 1.8vw;
}



.wrap{
	position: relative;
	display: flex;
	justify-content: center;
	top: 12.8vw;
}


.circleI { 
	position: relative;
	width: 4vw;
	height: 4.2vw;
	background: #077b88;
	border-radius: 50%;
	border: solid 2px white;
	text-align: center;
	margin-top: 1.6vw;
}

.circleI-inner {
	position: absolute;
	top: 58%;
	left: 53%;
	font-size: 2.2vw; 
	font-family: "OCR A Std";
	font-weight: 900;
	color: white;
	line-height: 3.6vw;
	display: inline-block;
	transform: translate(-50%, -50%);
}

p.contact {
	position: relative;
	font-size: clamp(0.8rem, 2.5vw, 2.8rem); 
	margin-left: 0.8vw;
	margin-right: auto;
	margin-top: 2.3vw;
}

#language_E p{
	position: absolute;
	font-size: clamp(0.8rem, 2.5vw, 2.2rem);  /* 1.2vw */
	color: white;
	text-align: center;
	background: #e60012;
	margin-top: 14.8vw;
	margin-left: 45.5vw;
	text-align: center;
	border-radius: 0.3em; 
	line-height: 1.2;
} 

#language_E:hover p{
	background: rgba(191, 25, 32, 0.1);
	border: solid 0.5px #e60012;
	color: #e60012;
}


#rainbow { 
	position: relative;	
	width: 20vw;
	height: 14.2vw;
	margin: 18.8vw 40vw 8vw auto;
	padding: 1vw 1vw;
}

.rainbow {
	position: absolute;
	width: 10vw;
	height: auto;
	z-index: 2;
	top: 0.8vw;
	left: 25%;
	}
	
.scoop {
	position: absolute;
	width: 4vw;
	height: auto;
	z-index: 1;
	top: 5vw;
	left: 70%;
}


#rainbow a:hover span.remark {
	background: none repeat scroll 0 0 #EEFFEE;
	display: block;
	font-size: 20px;  /* 2vw */
	font-weight: 500;
	line-height: 2.5vw;
	text-align: center;
	position: relative; 
	top: 9.3vw;
	z-index: 1;
}


#rainbow span.remark {
	display: none;
	z-index: 1;
}


.news2021 {
	margin-top: 2.6em;
	padding-bottom: 2.6em;
	text-align: center;
}

.news2021 h2 {
	font-weight: 900;
}


.newspic-1 {
	display: block;
	margin-top: 50px;
	margin: 0 auto;
	text-align: center;
	font-size: clamp(1.4rem, 2.5vw, 2rem);
	width: 57vw;
	height: auto;
	padding-bottom: 1.6em;
}

.newspic-4 {
	display: block;
	margin: 0 auto;
	font-size: clamp(1.4rem, 2.5vw, 2rem);
	width: 70vw;
	height: auto;
	text-align: center;
}
.newspic-4 img {
	width: 50%;
}

.newspic-3 {
	display: block;
	margin: 0 auto;
	font-size: clamp(1.4rem, 2.5vw, 2rem);
	width: 70vw;
	line-height: calc(12px + (18 - 12) * (100vw - 600px) / (1200 - 600));
	text-align: center;
}
.newspic-3 img {
	width: 100%;
}

.newspic-2 {
	display: block;
	margin: 0 auto;
	font-size: clamp(1.4rem, 2.5vw, 2rem);
	width: 50vw;
	height: auto;
	text-align: center;
}

.newspic-v {
	display: block;
	margin: 0 auto;
	padding-top: 6px;
	padding-bottom: 6px;
	line-height: calc(12px + (18 - 12) * (100vw - 600px) / (1200 - 600));	width: 70vw;
	min-width: 262.5px;
	height: auto;
	text-align: center;
	font-size: clamp(1.4rem, 2.5vw, 2rem);
}

.newspic-v img {
	width: 70%;
	min-width: 183.75px;
}

.newspic-2　h2 {
	display: block;
	margin-left: 4em;
}
.newspic-2 p {
	text-align: center;
	padding-top: 0em;
}
.newspic-3　h2 {
	margin-left: 4em;
}

.newspic-4　h2 {
	margin-left: 4em;
}
.newspic-4 p {
	text-align: center;
	padding-top: 0em;
}



#test {
		position: absolute;
		top: 13vw;
		right: 27.8vw;
	margin-top: 12vw;
	margin-left: 30vw;
	width: 40%;
	height: auto;
	animation: fadein 6s;
	-moz-animation: fadein 6s; /* Firefox */
	-webkit-animation: fadein 6s; /* Safari and Chrome */
	-o-animation: fadein 6s; /* Opera */
}

@keyframes fadein {
	from {
		opacity:0;
	}
	to {
		opacity:1;
	}
}
@-moz-keyframes fadein { /* Firefox */
	from {
		opacity:0;
	}
	to {
		opacity:1;
	}
}
@-webkit-keyframes fadein { /* Safari and Chrome */
	from {
		opacity:0;
	}
	to {
		opacity:1;
	}
}
@-o-keyframes fadein { /* Opera */
	from {
		opacity:0;
	}
	to {
		opacity: 1;
	}
}


.scroll-to-top-btn{
  position: fixed;
  bottom: clamp(1rem, 4vw, 3rem);
  right: clamp(1rem, 4vw, 3rem);
  height: clamp(5rem, 5vw, 8rem);
  width: clamp(5rem, 5vw, 8rem);
  color: #FFF;
  font-size: clamp(3.4rem, 3.5vw, 6rem);
  font-weight: 600;
  background-color:#9E9E9E;
  border: none;
  border-radius: 50%;
  outline: none;
  transform: rotate(90deg);
  padding-bottom: 0.15em;
  opacity: 0;
  transition-duration: 0.3s;
}

.scroll-to-top-btn:hover {
	color: #9E9E9E;
	background: #FFF;
	border: solid 1px #9E9E9E;
	cursor: pointer;
}


footer .logo {
	position: relative;
	margin: 0.8em auto;
	bottom: 0.5em;
	top: auto;
}

footer p {
	font-size: clamp(1.4rem, 2.5vw, 1.8rem);
	color: black;
	bottom: 1.8em;
}
.copyright {
	text-align: center;
	font-size: clamp(1.4rem, 2.5vw, 1.8rem);
	color: black;
}



