@charset UTF-8;
/*------------すべてのWebページに適用-------------*/
html{
	font-size: 16px;
}
@media screen and (max-width:768px){
	html{
		font-size:14px;
	}
}
body {
	font-family: serif;
    font-size: 1.0rem;
	display: block;
    line-height: 1.5;
	height: 100%;
    color: #000000;
    background-color: #aaa;
}
body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, form, fieldset, p, blockquote, th, td {
    margin: 0;
	padding: 0;
}
img {
    vertical-align: bottom;
}
h1 {
    font-size: 1.5rem;
	padding-top: 10px;
	font-weight: normal;
	padding-bottom: 10px;
}
h2 {
    font-size: 1.5rem;
    font-weight: bolder;
}
table {
    border-spacing: 0;
    border-collapse: collapse;
}
a {
    text-decoration: none;
	color: #000;
}
a:hover {
    color: #788d98;
    opacity: 0.5;
}
.clearfix:after {
    content:"";
    display: block;
    clear: both;
}
address {font-style: normal;}
a.btn {
	display: block;
	width: 275px;
	line-height: 45px;
    font-size: 1.0rem;
    text-align: center;
    color: #000;
    border: 1px solid #000;
	box-sizing: border-box;
}
a.btn:hover {
    text-decoration: none;
    color: #000;
	opacity: 0.8;
    background-color: #ffffff;
}
/*------------レイアウトに関する指定-------------*/
/*---headerの固定---*/
#header-nav-wrapper {
    position: fixed;
    background-color: #fff;
    z-index: 10;
    left: 0;
    top: 0;
    width: 100%;
	min-width: 980px;
}
@media screen and (max-width: 768px){
	#header-nav-wrapper {
		min-width: initial; 
	}
}
#main-wrapper {
    position: absolute;
    z-index: 0;
    left: 0;
    width: 100%;
	min-width: 980px;
}
@media screen and (max-width: 768px){
	#main-wrapper {
		min-width: initial; 
	}
}
/*---header---*/
header {
    background-color: #222;
	width: 100%;
	height: 70px;
	display: block;
	overflow: hidden;
	margin: 0 auto;
	border-bottom: 1px solid #000;
}
@media screen and (max-width: 768px){
	header  {
	height: 107px;
	}
}
.logo {
	float: left;
	margin-left: 2em;
	padding: 5px;
}
@media screen and (max-width: 768px){
	.logo {
		float: none;
		padding: 5px;
		margin-left: 0;
		text-align: center;
	}
}
.logo img {
	width: 200px;
	height: 60px;
}

/*---globalnav部分---*/
.nav-container{
	display: flex;
	justify-content: flex-end;
	padding-right: 2em;
}
@media screen and (max-width: 768px){
	.nav-container{
		width: 100%;
		height: 30px;
		padding-bottom: 7px;
		background: #fff;
		overflow-x: scroll;
		overflow-y: hidden;
		display: block;
	}
	/*スクロールバー全体*/
	::-webkit-scrollbar {
    	width: 2px;
		height: 7px;
	}
	/*スクロールバーの軌道*/
	::-webkit-scrollbar-track {
		border-radius: 10px;
		box-shadow: inset 0 0 20px rgba(35, 35, 35, 0.1);
	}
	/*スクロールバーの動く部分*/
	::-webkit-scrollbar-thumb {
		background-color: rgba(35, 35, 35, .7);
  		border-radius: 20px;
  		box-shadow:0 0 0 1px rgba(255, 255, 255, .1);
	}
}
.globalnav{
    list-style: none;
}
@media screen and (max-width: 768px){
	.nav-container .globalnav{
		width: 770px;
		height: 30px;
		margin: 0 auto 2px auto;
		display: flex;
	}
}
.globalnav li {
    float: left;
	box-sizing: border-box;
}

.globalnav li a{
	display: block;
	padding: 25px 10px;
	width: 100%;
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-size: 0.875rem;
	color: #fff;
}

.globalnav li a:hover{color: #fff; opacity: 0.5;}

@media screen and (max-width: 768px){
	.nav-container .globalnav li {
  		text-align: center;
		border-left: 1px solid #fff;
		float: none;
	}
	.nav-container .globalnav li:last-child {
		border-right: 1px solid #fff;
	}
	.nav-container .globalnav li a,
	.nav-container .globalnav li a:link,
	.nav-container .globalnav li a:visited {
  		display: inline-block;
		padding: 5px;
		width: 95px;
  		height: 30px;
  		background: #222;
  		color: #fff;
		font-size: 0.75rem;
  		text-decoration: none;
	}
	.nav-container .globalnav li a:hover,
	.nav-container .globalnav li a:active {
		background: #afc6e2;
	}
}
/*---keyvisual部分---*/
main {
	width: 100%;
	margin-top: 70px;
}
@media screen and (max-width: 768px){
	main {
		margin-top: 107px;
	}
}
.keyvisual {
	width: 100%;
	padding: 200px 0;
	background-image: url(../images/keyvisual-photo01.jpg);
    background-repeat: no-repeat;
    background-position: center 0px;
    background-size: cover;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-ms-background-size: cover;
	-o-background-size: cover;
}
@media screen and (max-width: 768px){
	.keyvisual{
		padding: 200px 0;
		background-image: url(../images/keyvisual-photo.jpg);
	}
}
#content h1{
    font-size: 10rem;
	color: #000;
	font-weight: bold;
	text-shadow: 0px 0px 10px rgba(255,255,255,1);
    line-height: 1;
	text-align: center;
}
@media screen and (max-width: 768px){
		#content h1{
			font-size: 6rem;
	}
}
#content p{
	font-size: 1.5rem;
	color: #000;
	font-weight: bold;
	text-shadow: 0px 0px 10px rgba(255,255,255,1);
	line-height: 1;
	text-align: center;
}
@media screen and (max-width: 768px){
		#content p{
			font-size: 1rem;
	}
}
/*----main-contaner56----*/
#about{
	padding: 70px 0;
	background-color: #333;
}
@media screen and (max-width: 768px){
	#about {
	padding: 40px 0;
	}
}
.about-title {
    text-align: center;
    font-family: 'Playfair Display', serif;
	color: #fff;
    margin-bottom: 30px;
    background-image: url(../images/title-background.png);
    background-size: 300px 65px;
    background-repeat: no-repeat;
    background-position: center center;
}
@media screen and (max-width: 768px){
	.about-title {
	padding: 20px 0;
	}
}
#about .about-info ul{
	width: 100%;
	margin: 0 auto;
	overflow: hidden;
	list-style: none;
}
#about .about-info ul li{
	margin: 0;
	box-sizing: border-box;
}
#about li.about-text{
	float: left;
	width: 55%;
	hight: 350px;
}
@media screen and (max-width: 768px){
		#about li.about-text{
			float: none;
			width: 100%;
	}
}
#about li.image-photo{
	float: right;
	width: 45%;
}
@media screen and (max-width: 768px){
		#about li.image-photo{
			width: 100%;
			margin-right: 0;
			text-align: center
	}
}
#about li.image-photo img{
	height: 350px;
	border: 1px solid #000;
}
.about-text .catch{
	font-size: 1.5rem;
    font-family: 'Noto Serif SC', serif;
	font-weight: normal;
}
.about-text .about1{
	font-size: 1.1rem;
	color: #fff;
	font-weight: lighter;
    font-family: serif;
	text-align: left;
	line-height: 2;
	margin-left: 10%;
	margin-top: 20px;
	margin-bottom: 40px;
}
@media screen and (max-width: 768px){
	.about-text .about1{
		width: 100%;
		text-align: center;
		margin: 0 0 20px;
    	font-size: 0.87rem;
	}
}
.about-text .about2{
    font-size: 1rem;
	color: #fff;
	font-weight: lighter;
    font-family: serif;
	text-align: left;
	line-height: 2;
	margin-left: 10%;
	margin-bottom: 40px;
}
@media screen and (max-width: 768px){
	.about-text .about2{
		text-align: center;
		margin: 0 0 20px;
    	font-size: 0.87rem;
	}
}
.about-text .about3{
    font-size: 1rem;
	color: #fff;
	font-weight: lighter;
    font-family: serif;
	text-align: left;
	line-height: 2;
	margin-left: 10%;
	margin-bottom: 20px;
}
@media screen and (max-width: 768px){
	.about-text .about3{
		text-align: center;
		margin: 0 0 20px;
    	font-size: 0.87rem;
	}
}
/*----instgram----*/
#instagram {
    margin: 0 auto;
	padding: 70px 0;
    width: 100%;
	background-color: #555;
}
@media screen and (max-width: 768px){
	#instagram {
	padding: 40px 0;
	}
}
#instagram .insta h1 {
    text-align: center;
    font-family: 'Playfair Display', serif;
	margin-bottom: 30px;
    background-image: url(../images/title-background.png);
    background-size: 300px 65px;
    background-repeat: no-repeat;
    background-position: center center;
}
@media screen and (max-width: 768px){
	#instagram .insta h1{
	padding: 20px 0;
	}
}
.insta-contents {
	display: flex;
	justify-content: space-between;
	padding: 0;
	margin: 0 auto;
	width: 95%;
	list-style: none;
}
	.insta-contents li{
		width: 25%;
	}
@media screen and (max-width: 768px){
	.insta-contents{
		display: block;
		width: 100%;
		overflow: hidden;
	}
	.insta-contents li{
		float: left;
		width: 50%;
		margin-bottom: 2%;
	}
}
.sample {
	overflow: hidden;
	margin: 0 5px;
	position: relative;
}
.sample img{
	width: 100%;
	border: solid 1px #000;
	box-sizing: border-box;
	box-shadow: 0 0 20px 20px rgba(255, 255, 255, 0.1);
}
.sample .caption {
	font-size: 0.875rem;
	text-align: center;
	color: #fff;
}
.sample .mask {
	width: 100%;
	height:	100%;
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0;	/* マスクを表示しない */
	background-color:	rgba(0,0,0,0.4);
	-webkit-transition:	all 0.6s ease;
	transition:		all 0.6s ease;
}
.sample:hover .mask {
	opacity: 1;	/* マスクを表示する */
	padding-top: 5px;	/* ホバーで下にずらす */
}
#instagram .btn{
	margin: 60px auto 0;
	text-align: center;
	background-color: #888;
	color: #000;
}
@media screen and (max-width: 768px){
	#instagram .btn{
	margin: 25px auto 0;
	}
}
/*----news----*/
#news {
    margin: 0 auto;
	padding: 70px 0;
	background-color: #aaa;
    width: 100%;
}
@media screen and (max-width: 768px){
	#news{
	padding: 40px 0;
	}
}
#news {
	display:block;
}
#news h1 {
    text-align: center;
	margin-bottom: 30px;
    font-family: 'Playfair Display', serif;
    background-image: url(../images/title-background.png);
    background-size: 300px 65px;
    background-repeat: no-repeat;
    background-position: center center;
}
@media screen and (max-width: 768px){
	#news h1 {
	margin-bottom: 20px 0;
	}
}
#news .news-box {
	display: block;
	width: 95%;
    height: 250px;
	margin: 0 auto;
	padding-top: 10px;
    overflow-x: hidden;
    overflow-y: scroll;
    background-color: #aaa;
}
#news .news-box ul li p{
    width: 100%;
    font-family: 'Playfair Display', serif;
	font-size: 0.87rem;
	margin-left: 5px;
}
#news .news-box ul li{
	text-align: left;
	line-height: 60px;
	border-top: 1px solid #bbbbbb;
	border-bottom: 1px solid #bbbbbb;
	margin-top: -1px;
}
@media screen and (max-width: 768px){
	#news .news-box ul li{
	line-height: 30px;
	}
}
#news .news-box ul{
	list-style: none;
}
#news .news-box ul li .label{
	background: #777;
	padding: 4px 20px;
	font-size: 0.75rem;
	color: #fff;

	width: 50px;
}
#news .news-box ul li .date{
	padding: 0 40px;
}
@media screen and (max-width: 768px){
	#news .news-box ul li .date{
	padding: 0 20px;
	}
}
#news .news-box ul li .cardo{
	letter-spacing: 1px;
}
#news .news-table td,.news-table th{
    text-align: left;
    vertical-align: top;
    padding-left: 20px;
	padding-bottom: 10px;
    line-height: 1.5;
}
#news .news-table td{
    padding-left: 10px;
	border-bottom: 1 solid #000;
}
#news .news-table tr{
	margin-bottom: 10px;
}
/*----news&colum----*/
#news-sub {
    margin: 0 auto;
	padding: 0;
	background-color: #ddd;
	text-align:center;
	min-width: 980px;
}

@media screen and (max-width: 768px){
#news-sub{
	padding: 0px;
	min-width: initial;
	}
}
#news-sub .topimage{
	color: #fff;
	padding: 20px 0 120px;
	margin: 0 0 35px 0;
	background-image: url(../images/news-bg.jpg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-ms-background-size: cover;
	-o-background-size: cover;
}
#news-sub .news-title{
    text-align: center;
	color: #fff;
    font-family: 'Playfair Display', serif;
    background-image: url(../images/title-background.png);
    background-size: 300px 65px;
    background-repeat: no-repeat;
    background-position: center center;
}
@media screen and (max-width: 768px){
#news-sub .news-title{
	margin-bottom: 20px;
	}
}

#news-sub .news-container{
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	align-content: space-between;
	padding-bottom: 35px;
}
#news-sub .news-container::after{
  content:"";
  display: block;
  width:50%;
}
#news-sub .news-container .photos{
	width: 24%;
	margin-left: 1%;
	box-sizing: border-box;
	padding-bottom: 20px;
}

@media screen and (max-width: 768px){
#news-sub .news-container .photos{
	width: 45%;
	padding-bottom: 10px;
	}
}
#news-sub .news-container .photos img{
	border: 1px solid #000;
	width: 100%;
}
#news-sub h3{
	text-align: left;
	font-size: 0.75rem;
	font-family: sans-serif;
	color: #000;
}
#news-sub h3:before {
    content: "";
    padding-right: 10px;
    border-left: 7px solid #000;
}
#news-sub .date{
	text-align: left;
	padding-left: 17px;
	font-size: 0.75rem;
	font-style: italic;
	color: #000;
}
#news-sub .comment{
	text-align: left;
	padding-left: 17px;
	font-size: 0.75rem;
	font-family: sans-serif;
	color: #000;
}
@media screen and (max-width: 768px){
#news-sub .comment{
	width: 100%;
	margin: 0 auto;
	}
}

/*----stylist----*/
#stylist {
	text-align: center;
	margin: 0 auto;
	padding: 70px 0;
	background-color: #aaa;
	width: 100%;
}
@media screen and (max-width: 768px){
#stylist{
	padding: 40px 0;
	}
}
#stylist .stylist-title{
    font-family: 'Playfair Display', serif;
    padding: 20px 0;
	margin-bottom: 30px;
    background-image: url(../images/title-background.png);
    background-size: 300px 75px;
    background-repeat: no-repeat;
    background-position: center center;
}
@media screen and (max-width: 768px){
#stylist .stylist-title{
	margin-bottom: 20px;
	}
}
#stylist .staff-list{
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	align-content: space-between;
	list-style: none;
}
@media screen and (max-width: 768px){
	#stylist .staff-list{
		display: block;
	}
}
#stylist .list-box{
	width: 40%;
	box-sizing: border-box;
	margin-bottom: 20px;
}

#stylist .stylist-photo{
	float: left;
	width: 30%;
}
@media screen and (max-width: 768px){
	#stylist .stylist-photo{
		float: none;
		width: 100%;
	}
}
#stylist .staff-text{
	float: right;
	width: 50%;
	text-align: left;
	box-sizing: border-box;
}
@media screen and (max-width: 768px){
	#stylist .staff-text{
		float: none;
		width: 100%;
	}
}
#stylist img{
	width:49%;
	border-radius: 50%;
	border: 1px solid #333;
}
#stylist .list-box{
	width: 45%;
	overflow: hidden;
	box-sizing: border-box;
	margin-right: 1%;
}
@media screen and (max-width: 768px){
	#stylist .list-box{
		width: 80%;
		overflow: hidden;
		margin: 0 auto 20px auto;
	}
}
#stylist h3{
	margin-bottom: 16px;
	border-bottom: 5px ridge #555;
	font-size: 1.1rem;
}
#stylist p{
	font-size: 0.8rem;
	margin-bottom: 12px;
	padding-left: 6px
}
#stylist #prof{
	text-align: center;
	color: #fff;
	margin: 20px auto 0;
}
@media screen and (max-width: 768px){
	#stylist #prof{
	text-align: center;
	color: #fff;
	margin: 10px auto 20px;
	}
}
#stylist .btn{
	text-align: center;
}
#stylist #prof a{
	font-size: 1rem;
	color: #00457f;
	text-align: center;
	width: 210px;
	color: #fff;
	background-color: #555;
	border: 3px solid #333;
}
/*----salon gallary----*/
#salongallery {
    margin: 0 auto;
	padding: 80px 0 100px;
	background-color: #bbb;
	text-align:center;
	background-image: url(../images/salongallery-bg.jpg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-ms-background-size: cover;
	-o-background-size: cover;
}

#salongallery .salongallery-title{
    text-align: center;
	color: #fff;
    font-family: 'Playfair Display', serif;
    padding: 20px 0;
	margin-bottom: 70px;
    background-image: url(../images/title-background.png);
    background-size: 300px 75px;
    background-repeat: no-repeat;
    background-position: center center;
}

#salongallery .salongallery-info{
	padding: 50px;
	font-size: 1.2rem;
	color: #fff;
}
#salongallery .btn{
	margin: 30px auto 0;
	text-align: center;
    border: 1px solid #fff;
	color: #fff;
}
/*----salongallery-sub----*/
#salongallery-sub{
    margin: 0 auto;
	padding: 0;
	background-color: #444;
	text-align:center;
	min-width: 980px;
}

@media screen and (max-width: 768px){
#salongallery-sub#salongallery-sub{
	min-width: initial;
	}
}
#salongallery-sub .topimage{
	color: #fff;
	padding: 20px 0 120px;
	margin: 0 0 20px 0;
	background-image: url(../images/salongallery-sub-bg.jpg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}
#salongallery-sub .salongallery-title{
    text-align: center;
	color: #fff;
    font-family: 'Playfair Display', serif;
    background-image: url(../images/title-background.png);
    background-size: 300px 65px;
    background-repeat: no-repeat;
    background-position: center center;
}
@media screen and (max-width: 768px){
#salongallery-sub .salongallery-title{
	margin-bottom: 20px;
	}
}

#salongallery-sub .gallery-container{
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	align-content: space-between;
}
#salongallery-sub .gallery-container::after{
  content:"";
  display: block;
  width:60%;
}

#salongallery-sub .gallery-container .photos{
	width: 30%;
	box-sizing: border-box;
	padding-bottom: 20px;
}
@media screen and (max-width: 768px){
#salongallery-sub .gallery-container .photos{
	width: 90%;
	padding-bottom: 10px;
	}
}
#salongallery-sub .gallery-container .photos img{
	border: 1px solid #000;
	width: 294px;
}
#salongallery-sub .comment{
	font-size: 0.8em;
	padding: 0 20px;
	color: #fff;
}
@media screen and (max-width: 768px){
#salongallery-sub .comment{
	width: 294px;
	margin: 0 auto;
	}
}
/*----menu----*/
#menu {
	display: block;
    margin: 0 auto;
	padding: 70px 0;
	background-color: #aaa;
}
@media screen and (max-width: 768px){
	#menu {
	padding: 30px 0;
	}
}
#menu {
	overflow: hidden;
	background-image: url(../images/menu-bg.jpg);
	background-position: center center; 
	background-repeat: no-repeat;
    background-size: cover;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-ms-background-size: cover;
	-o-background-size: cover;

}
#menu h1 {
    text-align: center;
    font-family: 'Playfair Display', serif;
    margin: 20px 0;
    background-image: url(../images/title-background.png);
    background-size: 300px 65px;
    background-repeat: no-repeat;
    background-position: center center;
}
.menu-title {
    float: left;
    font-family: 'Playfair Display', serif;
    font-weight: bold;
    font-size: 1.125rem;
    padding-left: 10px
}

#menu .menuitem{
	width: 40%;
	margin: 0 auto;
}
@media screen and (max-width: 768px){
	#menu .menuitem {
	width:80%;
	}
}
#menu .menuitem span{
	font-size: 1rem;
}
#menu .menuitem td{
	padding: 5px;
	text-align: justify;
	vertical-align: top;
}
#menu #col-1{
	text-align: right;
}
#menu .menuitem td:nth-child(2){
	text-align: right;
	font-weight: bolder;
	font-style: italic;
	padding-right: 30px;
	font-size: 1.2rem;
	text-shadow: 0px 0px 20px rgba(255,255,255,1);
}
@media screen and (max-width: 768px){
	#menu .menuitem td:nth-child(2){
		padding-right: 0;
		font-size: 1.2rem;
		width: 60%;
	}
}
#menu .menuitem td:nth-child(1){
	font-style: italic;
	font-weight: bold;
	padding-left: 30px;
	font-size: 1.2rem;
	text-shadow: 0px 0px 20px rgba(255,255,255,1);
}
@media screen and (max-width: 768px){
	#menu .menuitem td:nth-child(1){
		padding-left: 0;
		font-size: 1.1rem;
		width: 40%;
	}
}
/*----営業日----*/
#opening-hour{
    margin: 0 auto;
	padding: 70px 0;
	background-color: #aaaaaa;
}
@media screen and (max-width: 768px){
	#opening-hour{
	padding: 40px 0;
	}
}
.open-close {
    margin: 0 auto;
    overflow: hidden;
	display: block;
	width: 80%;
}
@media screen and (max-width: 768px){
	.open-close {
    	margin: 0 auto 20px auto;
		width: 90%;
	}
}
.open-close h1{
    text-align: center;
    font-family: 'Playfair Display', serif;
    background-image: url(../images/title-background.png);
	margin: 20px 0;
    background-size: 300px 65px;
    background-repeat: no-repeat;
    background-position: center center;
}
.open-close p{
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-weight: bold;
}
@media screen and (max-width: 768px){
	.open-close p{
		font-size: 1rem;
	}
}
@media screen and (min-width: 768px){
	#opening-hour br{
		display: none;
	}
}
.open-close .tel-mark{
	width: 14px;
}
.holi-mark{
	padding-bottom: 0.7%;
}
.opentime {
    font-size: 1.25rem;
}

/*----カレンダー部分----*/
.calendar-left {
    float: left;
    width: 49%;
}
@media screen and (max-width: 768px){
	.calendar-left {
		float: none;
		width: 100%;
		margin-bottom: 20px;
	}
}
.calendar-right {
    float: right;
    width: 49%;
}
@media screen and (max-width: 768px){
	.calendar-right {
		float: none;
		width: 100%;
	}
}
.two-calendar{
	width: 100%;
	margin: 20px auto;
	overflow: hidden;
}
.calendar {
    table-layout: fixed;
    width: 100%;
    border-collapse: collapse;
    border: 1px solid #000000;
}
.calendar th,
.calendar td {
    padding 10px 0;
    border: 1px solid #000000;
    text-align: center;
    vertical-align: middle;
    font-size: 0.875rem;
}
.calendar th {
    background-color: #ffffff;
}
.calendar th:first-child {
    background-color: #e05557;
    color: #ffffff;
}
.calendar td:first-child {
    color: #e05557;
}
.calendar th:last-child {
    background-color: #207bcf;
    color: #ffffff;
}
.calendar td:last-child {
    color: #207bcf;
}
.calendar caption {
    margin: 0;
    padding: 0;
    font-size: 0.875rem;
    border: 4px solid #dedede;
    border-radius: 10px;
    font-weight: bold;
}
.calendar .holiday {
    background-color: #e05557;
}
.holiday-mark {
    border: 1px solid #333333;
    background-color: #e05557;
}
#opening-hour .btn{
	margin: 0 auto;
	text-align: center;
	background-color: #888;
	margin-bottom: 30px;
	color: #000;
	font-size: 1.2rem;
}
li.cap{
	padding-left:1em;
	text-indent:-1em; 
}
/*----access----*/
#access{
    margin: 0 auto;
	padding: 70px 0;
	background-color: #ccc;
}
@media screen and (max-width: 768px){
	#access{
	padding: 40px 0;
	}
}
#access h2 {
	font-size: 1.3rem;
}
.access-title {
    text-align: center;
    font-family: 'Playfair Display', serif;
    margin: 0 auto 40px ;
    background-image: url(../images/title-background.png);
    background-size: 300px 65px;
    background-repeat: no-repeat;
    background-position: center center;
}
@media screen and (max-width: 768px){
.access-title {
	margin-bottom: 20px;
	}
}
@media screen and (max-width: 768px){
	.map {
		display: none;
	}
	.smart-phone {
		width: 100%;
		margin: 0 auto;
	}
}
@media screen and (min-width: 768px){
	.smart-phone {
		display: none;
		width: 100%;
		text-align: center;
	}
		.map {
		width: 100%;
		margin: 0 auto;
	}
}
.access2 {
	display: block;
	width: 90%;
	margin: 0 auto;
}
.location-table {
    margin-bottom: 20px;
}
.location-table th { 
	width: 10%;
    height: 30px;
    border: 1px solid #000;
	font-size: 0.875rem;
}
.location-table td {
    width: 40%;
    height: 30px;
    padding-left: 20px;
    border: 1px solid #000;
	font-size: 0.875rem;
}

@media screen and (max-width: 768px){
	.location-table td{
		padding-left: 5px;
		}
}
@media screen and (min-width: 768px){
	.location-table td br{
		display: none;
		}
}
.train-table {
    margin-bottom: 20px;
}
.train th{
    width: 10%;
    height: 50px;
    border: 1px solid #000;
	font-size: 0.875rem;
}
.train td{
    width: 40%;
    padding-left: 20px;
    border: 1px solid #000;
	font-size: 0.875rem;
}

@media screen and (max-width: 768px){
	.train td{
		padding-left: 5px;
		}
}
.notetext li {
    list-style: none;
}
.note {
    font-size: 1.125rem;
	margin: 0;
}
.access h2 {
    margin-bottom: 0;
}

fotter {
	width: 100%;
	min-width: 980px;
}
@media screen and (max-width: 768px){
	fotter {
		min-width: initial; 
	}
}

.footer-contaner {
	margin: 0 auto;
	padding: 20px 0;
	width: 100%;
    text-align: center;
    color: #ffffff;
    background-color: #111;
}
footer small {
  font-size: 0.75rem;
}
/*----news&colum別シート----*/
#news-all {
    margin: 0 auto;
	padding: 0 0 20px 0;
	background-color: #ddd;
	text-align:center;
	min-width: 980px;
}

@media screen and (max-width: 768px){
#news-all{
	padding: 0px;
	min-width: initial;
	}
}
#news-all .topimage{
	color: #111;
	padding: 20px 0 20px;
}
#news-all .news-title{
    text-align: center;
	color: #111;
    font-family: 'Playfair Display', serif;
    background-image: url(../images/title-background.png);
    background-size: 300px 65px;
    background-repeat: no-repeat;
    background-position: center center;
}
@media screen and (max-width: 768px){
#news-all .news-title{
	margin-bottom: 20px;
	}
}
#news-all .news-box{
	width: 90%;
	margin: 0 auto 30px auto;
	overflow: hidden;
}
#news-all h2{
	text-align: left;
	border-bottom: 1px solid #000;
}
#news-all .news-date{
	margin: 10px 0;
	text-align: left;
	font-style: italic;
}

/*----2019.3.17------*/
#news-all #news2019317 .com{
	background-color: #fff;
	padding: 20px
}
#news-all #news2019317 p {
	line-height: 1.5;
	text-align: left;
	font-size: 0.875rem;
}

#news-all #news2019317 span{
	font-weight: bolder;
	font-size: 1.05rem;
}
#news-all #news2019317 .para {
	padding-bottom: 15px;
}

#news-all #news2019317 img{
	float: right;
	width: 35%;
	margin-left: 5%;
	margin-bottom: 20px;
	box-sizing: border-box;
	border: 1px solid #111;
}
@media screen and (max-width: 768px){
	#news-all #news2019317 img{
		float: none;
		width: 100%;
		margin: 0
	}
}
#news-all #news2019317 .news-date{
	text-align: left;
}
/*----2019.3.10------*/
#news-all #news2019310 .com{
	background-color: #fff;
	padding: 20px
}
#news-all #news2019310 p {
	line-height: 2.5;
	font-size: 0.875rem;
	text-align: center;
}
#news-all #news2019310 .news-date{
	text-align: left;
}

/*----inoue-prof----*/
#inoue-prof{
    margin: 0 auto;
	padding: 0;
	background-color: #fff;
	text-align:center;
	min-width: 980px;
}
@media screen and (max-width: 768px){
#inoue-prof {
	min-width: initial;
	}
}
#inoue-prof .inoue-prof-conteiner{
	overflow: hidden;
	width: 80%;
	margin: 0 auto;
}
#inoue-prof .inoue-prof-title{
	padding: 10px 0;
}
#inoue-prof h1{
	font-size: 2.5rem;
}

#inoue-prof .inoue-prof-text{
	float: left;
	width: 50%;
	padding: 40px 20px;
	box-sizing: border-box;
	font-weight: normal;
	font-size: 1.1rem;
	background-color: #fff;
}
@media screen and (max-width: 768px){
#inoue-prof .inoue-prof-text{
	float: none;
	width: 100%;
	padding: 0;
	}
}
#inoue-prof .inoue-prof-text p{
	line-height: 1.6;
	margin-bottom: 28px;
}
#inoue-prof .inoue-prof-text .name{
	font-style: italic;
	text-align: right;
	margin-right: 30px;
}
#inoue-prof img{
	float: right;
	width: 50%;
}
@media screen and (max-width: 768px){
#inoue-prof img{
	float: none;
	width: 100%;
	padding: 0;
	}
}