@charset "utf-8";
/* リセット
------------------------------------- */
* {
	margin:0;
	padding:0;
	box-sizing:border-box;
}

table {border-spacing:0; border-collapse:collapse;}
* html table {border-collapse:collapse;}
*:first-child+html table {border-collapse:collapse;}
caption,th {text-align:left; font-weight:normal;}
table,th,td,img {border:0;}
img,input {vertical-align:middle; outline:none;}
q:before,q:after {content:'';}
ul {list-style: none;}

hr,
legend,
caption {display:none;}

img {border:0; vertical-align:bottom;}

a:focus { outline:none;}


/* aタグ設定
------------------------------------- */
a{
    color:#FD5229;
    text-decoration: none;
    transition: 0.3s;
}

a:hover {
	opacity:0.75;
	filter: alpha(opacity=75);
	-ms-filter: "alpha(opacity=75)";
	-moz-opacity:0.75;
	-khtml-opacity: 0.75;
	zoom:1;
}

a:active {
    position: relative;
    top: 2px;
    left: 2px;
}

/* 基本設定
------------------------------------- */
body{
    width: 100%;
    height: 100%;
    color: #000;
    font-size: 16px;
    letter-spacing: 0.3px;
    font-family: "Yuji Syuku", serif;
    font-style: normal;
    font-weight: 400;
}

.hrline{
    margin: 100px auto;
    width: 100%;
    height: 32px;
    background: url("../img/hrlinePC.png") no-repeat;
    background-size: 543px 32px;
    background-position: center center;
}

/* Header
------------------------------------- */
#header{
    width: 100%;
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    align-items: center;
    padding: 20px 20px 20px 30px;
}

#header .titleNakajima{
    display: block;
    width: 403px;
    height: 109px;
    background: url("../img/titleNakajima.png") no-repeat;
    background-size: 100%;
    text-indent:100%;
	white-space:nowrap;
	overflow:hidden;
}

#header .hamburger,
#btnClose,
#overlay{
	display: none;
	width: 0;
}

#header .boxNavi{
	display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    align-items: center;
}

@media screen and (min-width: 1080px){

	#header ul.gnavi{
		font-size: 16px;
		display: flex;
		flex-flow: row wrap;
		letter-spacing: 5px;
	}

	#header ul.gnavi li:not(:last-child)::after{
		content: "｜";
		display: inline-block;
		margin-left: 4px;
	}

}

@media screen and (max-width: 1079px){
	
	#header ul.gnavi{
		font-size: 16px;
		display: flex;
		flex-flow: row wrap;
		letter-spacing: 5px;
		width: 260px;
	}

	#header ul.gnavi li:not(:last-child)::after{
		content: "｜";
		display: inline-block;
		margin-left: 4px;
	}
	
}

#header ul.lang{
    font-size: 14px;
    display: flex;
    flex-flow: column nowrap;
    letter-spacing: 2px;
	margin: 0 3vw;
}

#header ul.lang li{
    margin: 3px 0px;
    padding: 0 6px 2px 8px;
}

#header ul.lang li.cur{
    border: 1px solid #000;
}

/* スライドショー
------------------------------------- */
#slide{
    width: 100%;
    margin: 0 auto;
}

#slide .slider .slideBox{
    width: 100%;
    height: auto;
}

#slide .slider .slideBox img {
    width: 100%;
    height: auto;
}

#slide .slider .slideBox a {
	transition: 0.8s;
}

#slide .slider .slideBox a:hover {
	opacity:0.65;
	transition: 0.8s;
}

#slide .slider img.arrowL{
    position: absolute;
    width: 40px;
    height: 40px;
    z-index: 1;
    top: calc(50% - 20px);
    left: 40px;
}

#slide .slider img.arrowR{
    position: absolute;
    width: 40px;
    height: 40px;
    z-index: 1;
    top: calc(50% - 20px);
    right: 40px;
}

#slide .slider img.arrowL:hover, #slide .slider img.arrowR:hover{
    opacity:0.55;
	transition: 0.5s;
    cursor: pointer;
}

#slide .slider ul.slideDots{
    position: absolute;
    bottom: 15px;
    left: 0;
    right: 0;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-content: center;
    list-style-type: none;
}

#slide .slider ul.slideDots li{
    display: inline-block;
    margin: 0 5px;
}

#slide .slider ul.slideDots li button{
    position: relative;
    text-indent: -9999px;
    height: 12px;
    width: 12px;
    border-radius: 6px;
    border: none;
    background: #C8C9CA;
}

#slide .slider ul.slideDots li button:hover{
    opacity:0.55;
	transition: 0.5s;
    cursor: pointer;
}

#slide .slider ul.slideDots li.slick-active button{
    background: #1867F0;
}

#slide .slick-dotted.slick-slider{
    margin-bottom: 0 !important;
}

/* ポリシー
------------------------------------- */
#policy{
    width: 920px;
    text-align: center;
    margin: 120px auto 50px;
}

#policy h1{
    font-size: 32px;
    letter-spacing: 5px;
    margin: 80px auto 30px;
}

#policy p{
    font-size: 21px;
    line-height: 1.6;
    letter-spacing: 2px;
}

/* プロフィール
------------------------------------- */
#profile{
    width: 920px;
    margin: 50px auto;
    line-height: 2.0;
}

#profile .photo{
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-around;
    align-items: center;
    margin: 20px auto 60px;
}

#profile .photo img{
    width: 366px;
    height: auto;
}

#profile .photo p{
    font-size: 48px;
    letter-spacing: 16px;
    text-align: center;
    line-height: 0.9;
}

#profile .photo p span{
    font-size: 28px;
    letter-spacing: 10px;
}

#profile dl.history{
    display: flex;
    flex-flow: row wrap;
    justify-content: flex-start;
    align-items: flex-start;
}

#profile dl.history dt{
    width: 70px;
}

#profile dl.history dd{
    width: 850px;
}

#profile p{
    margin: 30px 0;
}

#profile h2{
    font-size: 20px;
}

#profile ul.works{
    position: relative;    
}

#profile ul.works li{
    position: relative;
    left: 21px;
}

#profile ul.works li::before{
    position: absolute;
    content: "■";
    width: 18px;
    height: 18px;
    left: -18px;
}

/* 書道会
------------------------------------- */
#shodoukai{
    width: 100%;
    text-align: center;
}

#shodoukai h1{
    font-size: 48px;
    display: block;
}

#shodoukai h1 span{
    font-size: 28px;
    display: block;
}

#shodoukai .timetable{
    width: 880px;
    margin: 50px auto 20px;
    border: solid 2px #ccc;
	border-collapse: collapse;
}

#shodoukai .timetable th,
#shodoukai .timetable td{
    border: solid 1px #ccc;
    text-align: center;
    width: 110px;
}

#shodoukai .timetable th{
    padding: 15px 0;
    background: #a0a0a0;
    color: #fff;
}

#shodoukai .timetable td{
    padding: 10px 0;
}

#shodoukai ul.additional{
    font-size: 16px;
    list-style: disc;
    margin: 10px auto 60px;
}

#shodoukai .roomphoto{
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    align-items: center;
    margin-bottom: 60px;
}

#shodoukai .roomphoto img{
    width: 140px;
    height: auto;
    margin: 5px;
}

#shodoukai p.contact{
    font-size: 16px;
}

#shodoukai .googlemap{
    width: 600px;
    margin: 50px auto;
}

#shodoukai .googlemap iframe{
    width: 600px;
    height: 450px;
}

#shodoukai .googlemap a{
    display: block;
}

#shodoukai .officeNewYork{
    font-size: 16px;
    text-align: center;
}

/* Gallery
------------------------------------- */
h1.titleGallery{
    width: 464px;
    height: 207px;
    background: url("../img/titleGalleryENG.png") no-repeat;
    background-size: 100%;
    text-indent:100%;
	white-space:nowrap;
	overflow:hidden;
    margin: 40px auto;
}

h2.titleGallerySub{
    text-align: center;
    margin: 60px auto;
    font-size: 32px;
}

ul.exhibition{
    width: 1000px;
    display: flex;
    flex-flow: row wrap;
    justify-content: space-around;
    align-items: flex-start;
    margin: 40px auto;
}

ul.exhibition li{
    width: 446px;
    margin-bottom: 80px;
}

ul.exhibition li h3{
    font-size: 30px;
    letter-spacing: 5px;
}

ul.exhibition li .details{
    font-size: 18px;
    line-height: 2.0;
    text-align: left;
}

ul.exhibition li .details h4{
	font-size: 26px;
	margin-bottom: 26px;
}

ul.exhibition li img{
    width: 100%;
    height: auto;
}

ul.exhibition li p{
    width: 446px;
    text-align: center;
    font-size: 32px;
	margin-top: 15px;
}

ul.artwork{
    width: 1000px;
    display: flex;
    flex-flow: row wrap;
    justify-content: flex-start;
    align-items: flex-start;
    margin: 40px auto;
}

ul.artwork li{
    width: 220px;
    margin: 15px;
}

ul.artwork li img{
    width: 220px;
    height: 220px;
    object-fit: cover;
}

.boxModal{
    display: none;
}

.modaal-content-container img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.btnBack{
	text-align: center;
	margin: 50px auto;
	font-size: 20px;
}

/* Footer
------------------------------------- */
#footer{
    width: 100%;
    padding-bottom: 30px;
}

#footer p{
    font-size: 16px;
    text-align: center;
    margin: 0 auto;
}

#footer ul{
    width: 100%;
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    align-items: center;
}

#footer ul li{
    margin: 50px 10px;
}

#footer ul li img{
    width: 32px;
    height: 32px;
}

/* clearfix
------------------------------------- */
.clearfix:after {
	content : '';
	display : block;
	clear : both;
	height: 0;
}