@charset "UTF-8";
/* CSS Document */

/*--------------------

全体

----------------------*/

html{
	font-size: 100%;
}

body{
	font-family: 'minion-pro','shippori-mincho',serif;
	color: #241E1C;
	font-size: 0.9375rem;
	background-color: #eaedf7;
	display: flex;
  flex-flow: column;
  min-height: 100vh;
}

main {
  flex: 1;
}

img{
	width: 100%;
}

p{
  line-height: 1.86;
}

.top_section{
	padding: 78px 20px 100px;
}

.site-title{
	font-size: 2.5rem;
	letter-spacing: 0.06em;
	line-height: 0.6;
	color: #23415F;
}

.site-title span{
	font-size: 0.8125rem;
	letter-spacing: 0.05em
}

.section-title{
	font-size: 2rem;
	letter-spacing: 0.06em;
	color: #23415F;
	margin-bottom: 30px;
}

.more-btn{
	margin-top: 48px;
	text-align: center;
}

.more-btn a{
	display: inline-block;
	font-size: 0.8125rem;
	letter-spacing: 0.13em;
	color: #fff;
	background-color: #1E3743;
	padding: 20px 40px;
	border: 1px solid #1E3743;
	transition: 0.4s;
}

.more-btn a:hover{
	color: #1E3743;
	background-color: #fff;
	border: 1px solid #1E3743;
	transition: 0.4s;
}

#sp-nav_hamburger,#sp-nav{
	display: none;
}

.fadeIn {
  transition: 1s;
  opacity: 0;
}

.fadeIn.animated {
  opacity: 1;
}

p .under-construction{
	letter-spacing: 0.04em;
}


/*--------------------

TOPページ

----------------------*/

/*--------------------

header

----------------------*/
#header{
	height: 100px;
	background-color: #1E3743;
	padding: 29px 0;
	margin-bottom: 40px;
}

#header .header-container{
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 30px;
}

#header .header_flex{
	display: flex;
	justify-content: space-between;
	align-items: center;
}

#header .logo img{
	width: 150px;
}

#header .logo a{
	transition: 0.4s;
}

#header .logo a:hover{
	opacity: 0.5;
	transition: 0.4s;
}

.header_globalmenu-sns_flex{
	display: flex;
}

#header .globalmenu{
	display: flex;
}

#header .globalmenu li{
	font-size: 1.375rem;
	letter-spacing: 0.03em;
	color: #fff;
	margin-right: 32px;
} 

#header .globalmenu li a{
	position: relative;
	display: inline-block;
  text-decoration: none;
}

#header .globalmenu li a::after {
  position: absolute;
  bottom: -4px;
  left: 0;
  content: '';
  width: 100%;
  height: 1px;
  background: #fff;
  transform: scale(0, 1);
  transform-origin: left top;
  transition: transform .3s;
}
#header .globalmenu li a:hover::after {
  transform: scale(1, 1);
}

#header .sns img{
	width: 27px;
}

#header .sns{
	display: flex;
	align-items: center
}

#header .sns li:first-of-type{
	margin-right: 15px;
}

#header .sns li a{
	transition: 0.4s;
}

#header .sns li a:hover{
	opacity: 0.3;
	transition: 0.4s;
}


/*--------------------

mainvisual

----------------------*/
.mainvisual{
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

.mainvisual img{
	box-shadow: 10px 10px 10px #ddd;
}

.slick-dots{
	position: initial;
}

.slick-dots li button:before {
  font-size: 10px;
  top: 20px;
}

/*--------------------

about

----------------------*/
#about{
	text-align: center;
	padding: 100px 20px;
}

#about .site-title{
	margin-bottom: 40px;
}

#about p{
	display: block;
}

#about p:first-of-type{
	margin-bottom: 30px;
}


/*--------------------

news

----------------------*/
#news{
	background-color: #fff;
}

#news .section-title{
	text-align: center;
	margin-bottom: 40px;
}

#news dl {
	max-width: 800px;
	margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  border-top: solid 1px #c8c8c8;
}

#news dt {
	font-size: 0.875rem;
	font-weight: 400;
  width: 20%;
  border-bottom: solid 1px #c8c8c8;
  padding: 15px 15px 15px 30px;
}

#news dd {
  width: 80%;
  border-bottom: solid 1px #c8c8c8;
  padding: 15px;
}


/*--------------------

gallery

----------------------*/

#gallery .section-title,#gallery p{
	text-align: center;
}

#gallery p{
	display: block;
	margin-bottom: 50px;
}

#gallery ul{
	max-width: 900px;
	margin: 0 auto;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

#gallery li{
	width: 30%;
	box-shadow: 8px 8px 10px #ddd;
	margin-bottom: 5%;
	transition: 0.4s;
}

#gallery li:nth-last-of-type(-n+3) {
	margin-bottom: 0;
}

#gallery li:hover{
	cursor: pointer;
	opacity: 0.7;
	transition: 0.4s;
}


/*--------------------

shop

----------------------*/
#shop{
	background-color: #fff;
}

#shop .section-title,#shop p{
	text-align: center;
}

#shop p{
	display: block;
	margin-bottom: 50px;	
}

#shop .top_shop_img{
	max-width: 900px;
	margin: 0 auto;
}

#shop .top_shop_img a{
	transition: 0.4s;
}

#shop .top_shop_img a:hover{
	opacity: 0.7;
	transition: 0.4s;
}


/*--------------------

contact

----------------------*/
#contact{
	padding: 110px 20px 140px;
}

#contact .section-title,#contact p{
	text-align: center;	
}


/*--------------------

footer

----------------------*/
#footer{
	text-align: center;
	font-size: 0.75rem;
	background-color: #1E3743;
	padding: 16px 20px;
	color: #fff;
}

#footer span{
	letter-spacing: 0.04em;
}



/*--------------------

aboutページ

----------------------*/
#about_about{
	padding: 60px 20px 50px;
	text-align: center;
}

#about_exhibition{
	padding: 50px 20px 240px;
}

#about_about .section-title{
	font-size: 2.25rem;
	margin-bottom: 80px;
}

#about_about .about-img{
	max-width: 900px;
	margin: 0 auto 100px;
}

#about_about .site-title{
	font-size: 2.5rem;
	letter-spacing: 0.06em;
	line-height: 0.6;
	color: #23415F;
	margin-bottom: 50px;
}

#about_about .site-title span{
	font-size: 0.8125rem;
	letter-spacing: 0.05em
}

#about_about p{
	margin-bottom: 16px;
}

#about_about p:last-of-type{
	margin-bottom: 0;
}

#about_exhibition .section-title{
	font-size: 1.375rem;
	text-align: center;
	margin-bottom: 30px;
}

#about_exhibition dl{
	max-width: 600px;
	margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
	border-top: solid 1px #c8c8c8;
}

#about_exhibition dt {
	font-weight: 400;
  width: 35%;
  padding: 15px 15px 15px 30px;
	border-bottom: solid 1px #c8c8c8;
}

#about_exhibition dd {
  width: 65%;
  padding: 15px;
	border-bottom: solid 1px #c8c8c8;
}



/*--------------------

newsページ

----------------------*/
#news_wrapper{
	max-width: 800px;
	padding: 60px 20px 300px;
	margin: 0 auto;
}

#news_wrapper .section-title{
	font-size: 2.25rem;
	text-align: center;
	margin-bottom: 120px;
}

#news_wrapper .news-area{
	margin-bottom: 110px;
}

#news_wrapper .news-area:last-of-type{
	margin-bottom: 0;
} 

#news_wrapper .news-area dt{
	font-weight: 400;
	font-size: 0.875rem;
	margin-bottom: 6px;
}

#news_wrapper .news-area dd{
	font-size: 1rem;
	padding-bottom: 10px;
	border-bottom: 1px solid #707070;
}

#news_wrapper .news-area .news-img{
	padding: 14px 0;
}

#news_wrapper .news-area p{
	font-size: 0.9375rem;
  line-height: 1.5;
}

#news_wrapper .news-area .url{
	display: inline-block;
	border-bottom: 1px solid #707070;
	transition: 0.4s;
	margin-top: 10px;
}

#news_wrapper .news-area .url:hover{
	opacity: 0.6;
	transition: 0.4s;
}



/*--------------------

galleryページ

----------------------*/
#gallery_wrapper{
	max-width: 900px;
	padding: 60px 20px 220px;
	margin: 0 auto;
}

#gallery_wrapper .section-title{
	font-size: 2.25rem;
	text-align: center;
	margin-bottom: 60px;
}

#gallery_wrapper p{
	text-align: center;
}

#gallery_wrapper p .kerning{
	letter-spacing: 0.06em;
}

#gallery_wrapper p .underline{
	border-bottom: 1px solid #707070;
	transition: 0.4s;
}

#gallery_wrapper p .underline:hover{
	border-bottom: 1px solid #707070;
	opacity: 0.6;
	transition: 0.4s;
}

#gallery_wrapper p:first-of-type{
	margin-bottom: 20px;
}

#gallery_wrapper p:last-of-type{
	margin-bottom: 100px;
}

#gallery_wrapper ul{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

#gallery_wrapper ul:last-of-type{
	margin-bottom: 0;
}

#gallery_wrapper li{
	width: 30%;
	box-shadow: 8px 8px 10px #ddd;
	margin-bottom: 6%;
	transition: 0.4s;
}

#gallery_wrapper li:hover{
	cursor: pointer;
	opacity: 0.7;
	transition: 0.4s;
}



/*--------------------

contactページ

----------------------*/
#contact_wrapper{
	max-width: 800px;
	padding: 60px 20px 200px;
	margin: 0 auto;
}

#contact_wrapper .section-title{
	font-size: 2.25rem;
	text-align: center;
	margin-bottom: 60px;
}

#contact_wrapper p{
	text-align: center;
}

#contact-form{
	max-width: 560px;
	padding: 80px 0 0;
	margin: 0 auto;
}

#contact-form dt {
  width: 100%;
	font-weight: 400;
	font-size: 0.875rem;
	margin-bottom: 5px;
}

#contact-form dd {
  width: 100%;
	font-size: 0.875rem;
	margin-bottom: 30px;
}

#contact-form dd:nth-of-type(2){
	margin-bottom: 40px;
}

#contact-form dd input,
#contact-form dd textarea {
  width: 100%;
	background-color: #fff;
  border: 1px solid #707070;
  padding: 10px;
}

#contact-form dd textarea {
  height: 18rem;
	line-height: 1.4;
}

#contact-form .checkbox{
	margin-bottom: 40px;
}

#contact-form .checkbox p {
	font-size: 0.875rem;
	text-align: left;
	margin-bottom: 10px;
}

input[type="checkbox"]{
	width: 13px;
	height: 13px;
	vertical-align: -1px;
	margin-right: 5px;
}

#contact-form .checkbox .checkbox_item{
	font-size: 0.8125rem;
	display: inline-block;
	width: 100%;
	margin-bottom: 10px;
}

#contact-form .checkbox .checkbox_item:last-of-type{
	margin-bottom: 0;
}

#contact-form .sumbit-btn {
  text-align: center;
	margin-top: 50px;
}

#contact-form .sumbit-btn input {
	font-size: 0.875rem;
	color: #fff;
	padding: 18px 50px;
  background-color: #1E3743;
  border: solid 1px #1E3743;
	transition: 0.4s;
}

#contact-form .sumbit-btn input:hover{
	color: #1E3743;
	background-color: #fff;
	border: 1px solid #1E3743;
	transition: 0.4s;
}



/*--------------------

SP

----------------------*/
@media screen and (max-width: 900px){
	
	body{
		font-size: 0.8125rem;
	}
	
/*	
	.site-title{
		font-size: 1.875rem;
		letter-spacing: 0.06em;
		line-height: 0.7;
	}
	
	.site-title span{
		font-size: 0.75rem;
		letter-spacing: 0.01em
	}*/
	
	.section-title{
		font-size: 1.625rem;
		letter-spacing: 0.06em;
	}

	.more-btn a{
		font-size: 0.6875rem;
		letter-spacing: 0.13em;
		padding: 14px 28px;
	}

	
	
	/*---------------------

	header

	----------------------*/
	#header{
		height: 80px;
		padding: 0;
		margin-bottom: 20px;
	}
	
	
	#header .header_globalmenu-sns_flex {
		display: none;
	}
	
	#header .header_flex{
		justify-content: center;
		padding: 24px 0;
	}
	
	#header .logo img{
		width: 110px;
	}
	
	
	/*---------------------

	ハンバーガーメニュー

	----------------------*/
	
	#sp-nav_hamburger,#sp-nav{
		display: block ;
	}
	
	#sp-nav_hamburger{
		display : block;
		position: fixed;
		z-index : 3;
		right : 20px;
		top   : 18px;
		width : 42px;
		height: 42px;
		cursor: pointer;
		text-align: center;
	}
	
	#sp-nav_hamburger span {
		display : block;
		position: absolute;
		width   : 30px;
		height  : 2px ;
		left    : 6px;
		background : #6C6C6C;
		-webkit-transition: 0.3s ease-in-out;
		-moz-transition   : 0.3s ease-in-out;
		transition        : 0.3s ease-in-out;
	}
	
	#sp-nav_hamburger span:nth-child(1) {
  	top: 10px;
	}
	#sp-nav_hamburger span:nth-child(2) {
		top: 20px;
	}
	#sp-nav_hamburger span:nth-child(3) {
		top: 30px;
	}
	
	/* ナビが開いてる時のボタン */
	#sp-nav_hamburger.active span:nth-child(1) {
		top : 16px;
		left: 6px;
		background :#fff;
		-webkit-transform: rotate(-45deg);
		-moz-transform   : rotate(-45deg);
		transform        : rotate(-45deg);
	}

	#sp-nav_hamburger.active span:nth-child(2),
	#sp-nav_hamburger.active span:nth-child(3) {
		top: 16px;
		background :#fff;
		-webkit-transform: rotate(45deg);
		-moz-transform   : rotate(45deg);
		transform        : rotate(45deg);
	}
	
	#sp-nav {
		position: fixed;
		z-index : 2;
		top  : 0;
		left : 0;
		color: #fff;
		background: rgba(0,0,0,0.7);
		text-align: center;
		width: 100%;
		height: 100vh;
		opacity: 0;
		transition: opacity .6s ease, visibility .6s ease;
		visibility: hidden;
	}
	
	#sp-nav ul{
		margin: 50vh auto 0;
		transform: translateY(-50%);
		padding: 0;

	}

	#sp-nav ul li {
		font-size: 1.4375rem;
		letter-spacing: 0.03em;
		list-style-type: none;
		padding: 0;
		width: 100%;
		margin-bottom: 1.4em;
		transition: .4s all;
	}
	
	#sp-nav ul li:nth-of-type(6){
		margin-bottom: 1.2em;
	}

	#sp-nav ul li a{
		display: inline-block;
		color: #fff;
		text-decoration :none;
	}
	
	#sp-nav .sp-sns img{
		width: 25px;
	}
	
	#sp-nav .sp-sns{
		font-size: 0rem;
		display: flex;
		justify-content: center;
		align-items: center;
	}

	#sp-nav .sp-sns a{
		padding: 10px;
	}

	/* このクラスを、jQueryで付与・削除する */
	#sp-nav.active {
		opacity: 100;
		visibility: visible;
	}
	
	
	
	/*--------------------

	footer

	----------------------*/
	#footer{
		text-align: center;
		font-size: 0.75rem;
		background-color: #1E3743;
		padding: 12px 20px;
		color: #fff;
	}

	#footer span{
		letter-spacing: 0.04em;
	}
	

	
	/*---------------------

	Top

	----------------------*/
	/*---------------------

	about

	----------------------*/
	#about{
		padding: 70px 20px 110px;
	}

	#about .site-title{
		font-size: 1.6875rem;
		letter-spacing: 0.06em;
		line-height: 0.7;
		margin-bottom: 40px;
	}
	
	#about .site-title span{
		font-size: 0.6875rem;
		letter-spacing: 0.015em
	}

	#about p{
		display: block;
	}

	#about p:first-of-type{
		margin-bottom: 30px;
	}

	
	
	/*--------------------

	news

	----------------------*/
	#news dl {
	 flex-direction: column;
	}
	
	#news dt {
		font-size: 0.75rem;
    width: 100%;
    border-bottom: none;
		padding: 15px 15px 5px 15px;
  }
	
	#news dd {
		line-height: 1.4;
    width: 100%;
    padding-top: 0;
  }
	
	
	
	/*--------------------

	contact

	----------------------*/
	#contact{
	padding: 100px 20px 120px;
}
	
	
	
	/*--------------------

	aboutページ

	----------------------*/
	#about_about .section-title{
		font-size: 1.5rem;
		letter-spacing: 0.06em;
		margin-bottom: 50px;
	}
	
	#about_about{
	padding: 40px 20px 50px;
	text-align: center;
}
	
	#about_about .about-img{
		margin: 0 auto 90px;
	}
	
	#about_about .site-title{
		font-size: 1.625rem;
		letter-spacing: 0.06em;
		line-height: 0.7;
		margin-bottom: 30px;
	}

	#about_about .site-title span{
		font-size: 0.6875rem;
		letter-spacing: 0.015em
	}
	
	#about_exhibition{
		padding: 50px 20px 150px;
	}
	
	#about_exhibition .section-title{
		font-size: 1.125rem;
		margin-bottom: 30px;
	}
	
	#about_exhibition dl {
		flex-direction: column;
	}
	
	#about_exhibition dt {
		font-size: 0.75rem;
    width: 100%;
    border-bottom: none;
		padding: 15px 15px 5px 15px;
  }
	
	#about_exhibition dd {
    width: 100%;
    padding-top: 0;
  }
	
	
	
	/*--------------------

	newsページ

	----------------------*/
	#news_wrapper{
		padding: 40px 20px 140px;
	}
	
	#news_wrapper .section-title{
		font-size: 1.5rem;
		margin-bottom: 70px;
	}
	
	#news_wrapper .news-area{
		margin-bottom: 100px;
	}

	#news_wrapper .news-area:last-of-type{
		margin-bottom: 0;
	} 

	#news_wrapper .news-area dt{
		font-weight: 400;
		font-size: 0.8125rem;
		margin-bottom: 2px;
	}

	#news_wrapper .news-area dd{
		font-size: 0.875rem;
		line-height: 1.5;
		padding-bottom: 6px;
	}

	#news_wrapper .news-area .news-img{
		padding: 8px 0;
	}

	#news_wrapper .news-area p{
		font-size: 0.8125rem;
		line-height: 1.5;
	}

	#news_wrapper .news-area .url{
		display: inline;
	}
	
	
	
	/*--------------------

	galleryページ

	----------------------*/
	#gallery_wrapper{
		padding: 40px 20px 120px;
	}

	#gallery_wrapper .section-title{
		font-size: 1.5rem;
		margin-bottom: 46px;
	}

	#gallery_wrapper p:first-of-type{
		margin-bottom: 20px;
	}

	#gallery_wrapper p:last-of-type{
		margin-bottom: 80px;
	}
	
	
	
	/*--------------------

	contactページ

	----------------------*/
	#contact_wrapper{
		padding: 40px 20px 120px;
	}

	#contact_wrapper .section-title{
		font-size: 1.5rem;
		margin-bottom: 50px;
	}

	#contact-form{
		padding: 70px 0 0;
	}
	
	#contact-form .checkbox .checkbox_item{
	margin-bottom: 12px;
}

	#contact-form .sumbit-btn input {
		font-size: 0.6875rem;
		letter-spacing: 0.13em;
		padding: 14px 32px;
	}

	#contact-form .sumbit-btn input:hover{
		color: #1E3743;
		background-color: #fff;
		border: 1px solid #1E3743;
		transition: 0.4s;
	}
	

}